Fix cppcheck and Doxygen CI failures
All checks were successful
CI / Build firmware (push) Successful in 40s
CI / Check formatting (push) Successful in 12s
CI / Static analysis (push) Successful in 12s
CI / Build documentation (push) Successful in 14s

startup.c: mark Flash source pointer as const (cppcheck constVariablePointer).
Doxyfile: remove HTML_TIMESTAMP which was dropped in Doxygen 1.9.8+.
This commit is contained in:
Krzysztof Cieślik
2026-05-21 23:15:56 +02:00
parent ee7e5544bb
commit 7d47af12d8
2 changed files with 1 additions and 2 deletions

View File

@@ -156,7 +156,7 @@ __attribute__((section(".isr_vector"), used)) const vector_fn vectors[64] = {
void Reset_Handler(void)
{
/* copy .data initializers from Flash to RAM */
uint32_t *src = &_sidata;
const uint32_t *src = &_sidata;
uint32_t *dst = &_sdata;
// cppcheck-suppress comparePointers
while (dst < &_edata) {