const uint8_t ROWS_PER_CHAR = 7; // ... //static const uint8_t z[ROWS_PER_CHAR] = {6, 0, 1, 2, 3, 4, 5}; void Print(Dots_Type * screen) { static uint8_t i = 0; //static uint8_t j = z; // ... //j = z; } |
const uint8_t ROWS_PER_CHAR = 7; // ... static const uint8_t z[ROWS_PER_CHAR] = {6, 0, 1, 2, 3, 4, 5}; void Print(Dots_Type * screen) { static uint8_t i = 0; static uint8_t j = z; // ... j = z; } |
#ifdef __cplusplus extern "C" { #endif void SysTick_Handler(void) { // ... Print(&screen); } #ifdef __cplusplus } #endif |
static uint8_t i = 0; [color=#f00]static uint8_t j;[/color] j= z; // ... j = z; |