Skip to content

Commit

Permalink
Merge pull request #2528 from douniwan5788/bigbuf
Browse files Browse the repository at this point in the history
refactor: change BigBuf to const
  • Loading branch information
iceman1001 authored Sep 22, 2024
2 parents 5f44f23 + ea9da49 commit 73711f7
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 73711f7

Please sign in to comment.