Various fixes and improvements (#96)
* Global variables shared between an interrupt and the main code should be volatile See: https://www.embedded.com/electronics-blogs/beginner-s-corner/4023801/Introduction-to-the-Volatile-Keyword * There is no reason to change the active report if it has not changed * Declare local functions and variables static This both helps the compiler and the programmer
This commit is contained in:
committed by
László Monda
parent
1742437f8b
commit
e12e219b4e
@@ -11,15 +11,15 @@
|
||||
#include "peripherals/reset_button.h"
|
||||
#include "usb_report_updater.h"
|
||||
|
||||
bool IsEepromInitialized = false;
|
||||
bool IsConfigInitialized = false;
|
||||
static bool IsEepromInitialized = false;
|
||||
static bool IsConfigInitialized = false;
|
||||
|
||||
void userConfigurationReadFinished(void)
|
||||
static void userConfigurationReadFinished(void)
|
||||
{
|
||||
IsEepromInitialized = true;
|
||||
}
|
||||
|
||||
void hardwareConfigurationReadFinished(void)
|
||||
static void hardwareConfigurationReadFinished(void)
|
||||
{
|
||||
EEPROM_LaunchTransfer(EepromOperation_Read, ConfigBufferId_StagingUserConfig, userConfigurationReadFinished);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user