Skip to content

Commit

Permalink
refactor: change BigBuf to const
Browse files Browse the repository at this point in the history
  • Loading branch information
douniwan5788 committed Sep 21, 2024
1 parent 9f3e94c commit ea9da49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion armsrc/BigBuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ extern uint32_t _stack_start[], __bss_end__[];
// BigBuf is the large multi-purpose buffer, typically used to hold A/D samples or traces.
// Also used to hold various smaller buffers and the Mifare Emulator Memory.
// We know that bss is aligned to 4 bytes.
static uint8_t *BigBuf = (uint8_t *)__bss_end__;
static uint8_t *const BigBuf = (uint8_t *)__bss_end__;

/* BigBuf memory layout:
Pointer to highest available memory: s_bigbuf_hi
Expand Down

0 comments on commit ea9da49

Please sign in to comment.