Remove uhkModuleExternalStates for the time being. Caching will be reintroduced later.

This commit is contained in:
László Monda
2017-05-31 21:48:45 +02:00
parent 3b181c1f87
commit 0bfdffa4e3
2 changed files with 0 additions and 6 deletions

View File

@@ -15,10 +15,6 @@
LedDriverPhase_Initialized,
} led_driver_phase_t;
typedef enum {
} led_driver_state_t;
// Functions:
extern void LedSlaveDriver_Init();

View File

@@ -10,7 +10,6 @@
uhk_module_state_t UhkModuleStates[UHK_MODULE_MAX_COUNT];
uhk_module_phase_t uhkModulePhase = UhkModulePhase_SendKeystatesRequestCommand;
uhk_module_state_t uhkModuleExternalStates[UHK_MODULE_MAX_COUNT];
uint8_t txBuffer[2];
uint8_t rxBuffer[KEY_STATE_BUFFER_SIZE];
@@ -26,7 +25,6 @@ void UhkModuleSlaveDriver_Init()
void UhkModuleSlaveDriver_Update(uint8_t uhkModuleId)
{
uhk_module_state_t *uhkModuleInternalState = UhkModuleStates + uhkModuleId;
//uhk_module_state_t *uhkModuleExternalState = uhkModuleExternalStates + uhkModuleId;
switch (uhkModulePhase) {
case UhkModulePhase_SendKeystatesRequestCommand: