From faaf3f8c20678b728312fa4a571ebb7632a122f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Desbiens?= Date: Tue, 15 Sep 2026 17:37:10 -0400 Subject: [PATCH] Normalized the AI disclosure comment to one fixed line per file The per-edit disclosure named the product and model, so every tool and every model version appended another line rather than recognising the one already there. Deduplication was by exact string, which a version bump defeats. Every file now carries exactly one line, fixed text naming no product: Portions of this file were generated with AI assistance. written with the comment character that file already uses. Precise attribution stays on the commit, where the Assisted-by trailer is dated and attached to the diff it describes. A header line cannot keep that record honest, because the code it names gets rewritten and the line stays. Comment-only, 32 files: every removed line was a disclosure line, every added line is the fixed text, and no file is left with zero or more than one. Nested repositories were excluded, so no submodule content or gitlink is touched. Assisted-by: Claude Code (Opus 5) --- MXChip/AZ3166/app/arcade/button_handler.c | 2 +- MXChip/AZ3166/app/arcade/button_handler.h | 2 +- MXChip/AZ3166/app/arcade/fosgame.c | 2 +- MXChip/AZ3166/app/arcade/fosgame.h | 2 +- MXChip/AZ3166/app/arcade/main.c | 2 +- MXChip/AZ3166/app/arcade/menu.c | 2 +- MXChip/AZ3166/app/arcade/menu.h | 2 +- MXChip/AZ3166/app/arcade/screen.c | 2 +- MXChip/AZ3166/app/arcade/screen.h | 2 +- MXChip/AZ3166/app/arcade/slotmachine.c | 2 +- MXChip/AZ3166/app/arcade/slotmachine.h | 2 +- MXChip/AZ3166/app/arcade/snake.c | 2 +- MXChip/AZ3166/app/arcade/snake.h | 2 +- MXChip/AZ3166/app/arcade/space.c | 2 +- MXChip/AZ3166/app/arcade/space.h | 2 +- bsp/include/bsp/console.h | 2 +- .../POLARFIRE_ICICLE_RENODE/app/common/startup/newlib_stubs.c | 2 +- .../app/common/startup/tx_initialize_low_level.S | 2 +- targets/Microchip/POLARFIRE_ICICLE_RENODE/app/main.c | 2 +- .../POLARFIRE_ICICLE_RENODE/lib/bsp/include/board_config.h | 2 +- .../Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/include/plic.h | 2 +- targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/board.c | 2 +- .../Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/bsp_console.c | 2 +- targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/hwtimer.c | 2 +- targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/plic.c | 2 +- targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/trap.c | 2 +- .../NUCLEO_F401RE/app/common/stm32cubef4/stm32f4xx_hal_msp.c | 2 +- .../NUCLEO_F401RE/lib/bsp/include/board_config.h | 2 +- .../NUCLEO_F401RE/lib/bsp/include/nucleo_console.h | 2 +- .../STMicroelectronics/NUCLEO_F401RE/lib/bsp/src/bsp_console.c | 2 +- templates/target/lib/bsp/src/bsp_console.c | 2 +- templates/target/lib/bsp/src/newlib_stubs.c | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) diff --git a/MXChip/AZ3166/app/arcade/button_handler.c b/MXChip/AZ3166/app/arcade/button_handler.c index 6f19cf0d..a3a4d0dc 100644 --- a/MXChip/AZ3166/app/arcade/button_handler.c +++ b/MXChip/AZ3166/app/arcade/button_handler.c @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #include "button_handler.h" diff --git a/MXChip/AZ3166/app/arcade/button_handler.h b/MXChip/AZ3166/app/arcade/button_handler.h index 186f8d1b..6a18d284 100644 --- a/MXChip/AZ3166/app/arcade/button_handler.h +++ b/MXChip/AZ3166/app/arcade/button_handler.h @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #ifndef _BUTTON_HANDLER_H diff --git a/MXChip/AZ3166/app/arcade/fosgame.c b/MXChip/AZ3166/app/arcade/fosgame.c index 9a784385..38a91825 100644 --- a/MXChip/AZ3166/app/arcade/fosgame.c +++ b/MXChip/AZ3166/app/arcade/fosgame.c @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #include "fosgame.h" diff --git a/MXChip/AZ3166/app/arcade/fosgame.h b/MXChip/AZ3166/app/arcade/fosgame.h index af190584..1c0bacf8 100644 --- a/MXChip/AZ3166/app/arcade/fosgame.h +++ b/MXChip/AZ3166/app/arcade/fosgame.h @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #ifndef _FOSGAME_H diff --git a/MXChip/AZ3166/app/arcade/main.c b/MXChip/AZ3166/app/arcade/main.c index 1e3acfe4..dc7943a3 100644 --- a/MXChip/AZ3166/app/arcade/main.c +++ b/MXChip/AZ3166/app/arcade/main.c @@ -14,7 +14,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #include diff --git a/MXChip/AZ3166/app/arcade/menu.c b/MXChip/AZ3166/app/arcade/menu.c index c187a2aa..8367c6e6 100644 --- a/MXChip/AZ3166/app/arcade/menu.c +++ b/MXChip/AZ3166/app/arcade/menu.c @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #include "menu.h" #include "screen.h" diff --git a/MXChip/AZ3166/app/arcade/menu.h b/MXChip/AZ3166/app/arcade/menu.h index 998df71c..df805368 100644 --- a/MXChip/AZ3166/app/arcade/menu.h +++ b/MXChip/AZ3166/app/arcade/menu.h @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #ifndef _MENU_H diff --git a/MXChip/AZ3166/app/arcade/screen.c b/MXChip/AZ3166/app/arcade/screen.c index 73cf7057..b97ba403 100644 --- a/MXChip/AZ3166/app/arcade/screen.c +++ b/MXChip/AZ3166/app/arcade/screen.c @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #include "screen.h" diff --git a/MXChip/AZ3166/app/arcade/screen.h b/MXChip/AZ3166/app/arcade/screen.h index b8f44bf6..24a1ab6b 100644 --- a/MXChip/AZ3166/app/arcade/screen.h +++ b/MXChip/AZ3166/app/arcade/screen.h @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #ifndef _SCREEN_H diff --git a/MXChip/AZ3166/app/arcade/slotmachine.c b/MXChip/AZ3166/app/arcade/slotmachine.c index bd039c30..5cad72b6 100644 --- a/MXChip/AZ3166/app/arcade/slotmachine.c +++ b/MXChip/AZ3166/app/arcade/slotmachine.c @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #include "slotmachine.h" diff --git a/MXChip/AZ3166/app/arcade/slotmachine.h b/MXChip/AZ3166/app/arcade/slotmachine.h index a7df118f..1e0b876b 100644 --- a/MXChip/AZ3166/app/arcade/slotmachine.h +++ b/MXChip/AZ3166/app/arcade/slotmachine.h @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #ifndef _SLOTMACHINE_H diff --git a/MXChip/AZ3166/app/arcade/snake.c b/MXChip/AZ3166/app/arcade/snake.c index c579a1fd..1b2dbaeb 100644 --- a/MXChip/AZ3166/app/arcade/snake.c +++ b/MXChip/AZ3166/app/arcade/snake.c @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #include "snake.h" diff --git a/MXChip/AZ3166/app/arcade/snake.h b/MXChip/AZ3166/app/arcade/snake.h index 415526f2..35b363ba 100644 --- a/MXChip/AZ3166/app/arcade/snake.h +++ b/MXChip/AZ3166/app/arcade/snake.h @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #ifndef _SNAKE_H diff --git a/MXChip/AZ3166/app/arcade/space.c b/MXChip/AZ3166/app/arcade/space.c index af3f0da4..a6d9a698 100644 --- a/MXChip/AZ3166/app/arcade/space.c +++ b/MXChip/AZ3166/app/arcade/space.c @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #include "space.h" diff --git a/MXChip/AZ3166/app/arcade/space.h b/MXChip/AZ3166/app/arcade/space.h index 40fbdf9d..01008a9a 100644 --- a/MXChip/AZ3166/app/arcade/space.h +++ b/MXChip/AZ3166/app/arcade/space.h @@ -11,7 +11,7 @@ * Sébastien Heurtematte - 2026 version. * * - * // Some portions generated by Co-Pilot + // Portions of this file were generated with AI assistance. */ #ifndef _SPACE_H diff --git a/bsp/include/bsp/console.h b/bsp/include/bsp/console.h index 442022bb..be715e18 100644 --- a/bsp/include/bsp/console.h +++ b/bsp/include/bsp/console.h @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #ifndef BSP_CONSOLE_H #define BSP_CONSOLE_H diff --git a/targets/Microchip/POLARFIRE_ICICLE_RENODE/app/common/startup/newlib_stubs.c b/targets/Microchip/POLARFIRE_ICICLE_RENODE/app/common/startup/newlib_stubs.c index cf63f695..8039934d 100644 --- a/targets/Microchip/POLARFIRE_ICICLE_RENODE/app/common/startup/newlib_stubs.c +++ b/targets/Microchip/POLARFIRE_ICICLE_RENODE/app/common/startup/newlib_stubs.c @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #include #include diff --git a/targets/Microchip/POLARFIRE_ICICLE_RENODE/app/common/startup/tx_initialize_low_level.S b/targets/Microchip/POLARFIRE_ICICLE_RENODE/app/common/startup/tx_initialize_low_level.S index 9081ef5a..56df8651 100644 --- a/targets/Microchip/POLARFIRE_ICICLE_RENODE/app/common/startup/tx_initialize_low_level.S +++ b/targets/Microchip/POLARFIRE_ICICLE_RENODE/app/common/startup/tx_initialize_low_level.S @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #include "csr.h" diff --git a/targets/Microchip/POLARFIRE_ICICLE_RENODE/app/main.c b/targets/Microchip/POLARFIRE_ICICLE_RENODE/app/main.c index e4a4c150..82727e4f 100644 --- a/targets/Microchip/POLARFIRE_ICICLE_RENODE/app/main.c +++ b/targets/Microchip/POLARFIRE_ICICLE_RENODE/app/main.c @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #include #include diff --git a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/include/board_config.h b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/include/board_config.h index bb129a41..7683d41a 100644 --- a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/include/board_config.h +++ b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/include/board_config.h @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #ifndef BOARD_CONFIG_H #define BOARD_CONFIG_H diff --git a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/include/plic.h b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/include/plic.h index 8133a828..535d02ae 100644 --- a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/include/plic.h +++ b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/include/plic.h @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #ifndef PLIC_H #define PLIC_H diff --git a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/board.c b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/board.c index 91192bba..d4361321 100644 --- a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/board.c +++ b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/board.c @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #include "plic.h" diff --git a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/bsp_console.c b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/bsp_console.c index f915a7af..1be5f1ad 100644 --- a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/bsp_console.c +++ b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/bsp_console.c @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #include "bsp/console.h" #include "board_config.h" diff --git a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/hwtimer.c b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/hwtimer.c index 374722c9..d954046e 100644 --- a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/hwtimer.c +++ b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/hwtimer.c @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #include "hwtimer.h" #include "tx_api.h" diff --git a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/plic.c b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/plic.c index f4f5fd7d..69eae8e1 100644 --- a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/plic.c +++ b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/plic.c @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #include "plic.h" #include "csr.h" diff --git a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/trap.c b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/trap.c index 71c283e3..acd1a5ec 100644 --- a/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/trap.c +++ b/targets/Microchip/POLARFIRE_ICICLE_RENODE/lib/bsp/src/trap.c @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #include #include "hwtimer.h" diff --git a/targets/STMicroelectronics/NUCLEO_F401RE/app/common/stm32cubef4/stm32f4xx_hal_msp.c b/targets/STMicroelectronics/NUCLEO_F401RE/app/common/stm32cubef4/stm32f4xx_hal_msp.c index 2a90bad1..ddfea956 100644 --- a/targets/STMicroelectronics/NUCLEO_F401RE/app/common/stm32cubef4/stm32f4xx_hal_msp.c +++ b/targets/STMicroelectronics/NUCLEO_F401RE/app/common/stm32cubef4/stm32f4xx_hal_msp.c @@ -7,7 +7,7 @@ * * SPDX-License-Identifier: MIT */ -// Some portions generated by Codex (GPT-5). +// Portions of this file were generated with AI assistance. #include "stm32f4xx_hal.h" diff --git a/targets/STMicroelectronics/NUCLEO_F401RE/lib/bsp/include/board_config.h b/targets/STMicroelectronics/NUCLEO_F401RE/lib/bsp/include/board_config.h index 929e0815..81f6fffe 100644 --- a/targets/STMicroelectronics/NUCLEO_F401RE/lib/bsp/include/board_config.h +++ b/targets/STMicroelectronics/NUCLEO_F401RE/lib/bsp/include/board_config.h @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #ifndef BOARD_CONFIG_H #define BOARD_CONFIG_H diff --git a/targets/STMicroelectronics/NUCLEO_F401RE/lib/bsp/include/nucleo_console.h b/targets/STMicroelectronics/NUCLEO_F401RE/lib/bsp/include/nucleo_console.h index d899a2b3..4bb945b2 100644 --- a/targets/STMicroelectronics/NUCLEO_F401RE/lib/bsp/include/nucleo_console.h +++ b/targets/STMicroelectronics/NUCLEO_F401RE/lib/bsp/include/nucleo_console.h @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #ifndef NUCLEO_CONSOLE_H #define NUCLEO_CONSOLE_H diff --git a/targets/STMicroelectronics/NUCLEO_F401RE/lib/bsp/src/bsp_console.c b/targets/STMicroelectronics/NUCLEO_F401RE/lib/bsp/src/bsp_console.c index f78b7d3d..ddc3729e 100644 --- a/targets/STMicroelectronics/NUCLEO_F401RE/lib/bsp/src/bsp_console.c +++ b/targets/STMicroelectronics/NUCLEO_F401RE/lib/bsp/src/bsp_console.c @@ -13,7 +13,7 @@ * SPDX-License-Identifier: MIT and CC0-1.0 **************************************************************************/ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #include "bsp/console.h" #include "board_config.h" diff --git a/templates/target/lib/bsp/src/bsp_console.c b/templates/target/lib/bsp/src/bsp_console.c index d84d1aa3..e153dd67 100644 --- a/templates/target/lib/bsp/src/bsp_console.c +++ b/templates/target/lib/bsp/src/bsp_console.c @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #include "bsp/console.h" #include "board_config.h" diff --git a/templates/target/lib/bsp/src/newlib_stubs.c b/templates/target/lib/bsp/src/newlib_stubs.c index 70b0f76f..7e0222f0 100644 --- a/templates/target/lib/bsp/src/newlib_stubs.c +++ b/templates/target/lib/bsp/src/newlib_stubs.c @@ -8,7 +8,7 @@ * SPDX-License-Identifier: MIT */ -// Some portions generated by Claude Code (Opus 5) +// Portions of this file were generated with AI assistance. #ifdef __GNUC__