File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
firmware/nRF51/tag-proximity/src Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ static void flash_log_block_commit(void)
193
193
194
194
#if FLASH_LOG_COMPRESSION
195
195
196
- void flash_log_write (uint8_t flush_buf )
196
+ static void flash_log_write (uint8_t flush_buf )
197
197
{
198
198
uint8_t * my_head = buf_head ;
199
199
uint16_t chunk_size ;
@@ -312,7 +312,7 @@ void flash_log_write(uint8_t flush_buf)
312
312
313
313
#else
314
314
315
- void flash_log_write (uint8_t flush_buf )
315
+ static void flash_log_write (uint8_t flush_buf )
316
316
{
317
317
uint8_t * my_head = buf_head ;
318
318
uint16_t chunk_size ;
@@ -394,7 +394,7 @@ void flash_log_status(void)
394
394
we obtain a binary log file named after the tag ID
395
395
*/
396
396
397
- char base64_char (uint8_t b )
397
+ static char base64_char (uint8_t b )
398
398
{
399
399
if (b < 26 )
400
400
return 'A' + b ;
@@ -412,7 +412,7 @@ char base64_char(uint8_t b)
412
412
413
413
#define CHARS_PER_LINE 64
414
414
415
- void base64_dump (uint16_t len , uint8_t * data )
415
+ static void base64_dump (uint16_t len , uint8_t * data )
416
416
{
417
417
uint16_t i , j , printed_chars = 1 ;
418
418
char c [4 ];
You can’t perform that action at this time.
0 commit comments