Fix #10: Moved static and global variablöes that are 0 initialized to CCMRAM in order to make room and increase performance.
This commit is contained in:
@@ -23,12 +23,13 @@
|
||||
*/
|
||||
|
||||
#include <reflow-controller/systick.h>
|
||||
#include <helper-macros/helper-macros.h>
|
||||
#include <stm32/stm32f4xx.h>
|
||||
#include <cmsis/core_cm4.h>
|
||||
|
||||
volatile uint32_t wait_tick_ms = 0UL;
|
||||
volatile uint64_t global_tick_ms = 0ULL;
|
||||
volatile uint32_t lcd_tick_100us = 0UL;
|
||||
volatile uint32_t IN_SECTION(.ccmram) wait_tick_ms = 0UL;
|
||||
volatile uint64_t IN_SECTION(.ccmram) global_tick_ms = 0ULL;
|
||||
volatile uint32_t IN_SECTION(.ccmram) lcd_tick_100us = 0UL;
|
||||
|
||||
void systick_setup(void)
|
||||
{
|
||||
|
Reference in New Issue
Block a user