diff --git a/.gitignore b/.gitignore
index 5f397f6e..ebb16015 100644
--- a/.gitignore
+++ b/.gitignore
@@ -68,6 +68,7 @@ address_cache
**/build/*
**/_build/*
**/out/*
+**/external/*
Obj/
Release/
libwebsockets/
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9260fdf8..00d1ce31 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,7 +13,7 @@ The git repositories are hosted at the following sites:
*
*
-## [Unreleased] - 2026-03-20
+## [Unreleased] - 2026-03-25
### Security
@@ -53,6 +53,8 @@ The git repositories are hosted at the following sites:
### Added
+* Added ports/pico for Raspberry Pi Pico port of the BACnet stack
+ supporting both BACnet/IP and BACnet MS/TP. (#1232)
* Added new functions for duplicating and copying octet string buffers.
Refactor existing OctetString Value object to enable writes to object name
description, and present-value, with functional tests to ensure
diff --git a/ports/pico/bvlc-pico.c b/ports/pico/bvlc-pico.c
index f27bd3ff..8e99e3f8 100644
--- a/ports/pico/bvlc-pico.c
+++ b/ports/pico/bvlc-pico.c
@@ -1,7 +1,7 @@
/**
* @file
- * @authors Miguel Fernandes Testimony Adams
- *
+ * @author Miguel Fernandes
+ * @author Testimony Adams
* @date 6 de Jun de 2013
* @brief BACnet Virtual Link Control for Pico
*/
diff --git a/ports/pico/bvlc-pico.h b/ports/pico/bvlc-pico.h
index 8e909f51..1d83f258 100644
--- a/ports/pico/bvlc-pico.h
+++ b/ports/pico/bvlc-pico.h
@@ -1,7 +1,7 @@
/**
* @file
- * @authors Miguel Fernandes Testimony Adams
- *
+ * @author Miguel Fernandes
+ * @author Testimony Adams
* @date 6 de Jun de 2013
* @brief BACnet Virtual Link Control for Pico
*/