Import revision 9 from svn
authorEbersold Andre <aebersol@LAPTOP-DEDE.localdomain>
Tue, 21 Dec 2021 18:45:51 +0000 (19:45 +0100)
committerEbersold Andre <aebersol@LAPTOP-DEDE.localdomain>
Tue, 21 Dec 2021 18:45:51 +0000 (19:45 +0100)
commit8e3174be21bd9100a249b118c74629b84d080fb9
tree126dc7c159ace504239a3f822023f872f884b50a
Import revision 9 from svn
113 files changed:
Application/CMakeLists.txt [new file with mode: 0644]
Application/DCMotor/328p_DCMotor.cpp [new file with mode: 0644]
Application/DCMotor/32u4_DCMotor.cpp [new file with mode: 0644]
Application/DCMotor/CMakeLists.txt [new file with mode: 0644]
Application/DCMotor/DCM_InterruptActivity.cpp [new file with mode: 0644]
Application/DCMotor/DCM_InterruptActivity.h [new file with mode: 0644]
Application/DCMotor/DCMotor.cpp [new file with mode: 0644]
Application/DCMotor/DCMotor.h [new file with mode: 0644]
Application/DCMotor/Led0.cpp [new file with mode: 0644]
Application/DCMotor/Led0.h [new file with mode: 0644]
Application/DCMotor/MotorHandler.cpp [new file with mode: 0644]
Application/DCMotor/MotorHandler.h [new file with mode: 0644]
Application/DCMotor/main.cpp [new file with mode: 0644]
Application/ICommandHandler.h [new file with mode: 0644]
Application/ITask.h [new file with mode: 0644]
Application/Led0/CMakeLists.txt [new file with mode: 0644]
Application/Led0/Led0.cpp [new file with mode: 0644]
Application/Led0/Led0.h [new file with mode: 0644]
Application/Led0/main.cpp [new file with mode: 0644]
Application/PowerSwitch/CMakeLists.txt [new file with mode: 0644]
Application/PowerSwitch/Led0.cpp [new file with mode: 0644]
Application/PowerSwitch/Led0.h [new file with mode: 0644]
Application/PowerSwitch/PowerswitchHandler.cpp [new file with mode: 0644]
Application/PowerSwitch/PowerswitchHandler.h [new file with mode: 0644]
Application/PowerSwitch/Switch.cpp [new file with mode: 0644]
Application/PowerSwitch/Switch.h [new file with mode: 0644]
Application/PowerSwitch/main.cpp [new file with mode: 0644]
Application/Scheduler/Scheduler.h [new file with mode: 0644]
Application/ShutterCtrl/CMakeLists.txt [new file with mode: 0644]
Application/ShutterCtrl/Led0.cpp [new file with mode: 0644]
Application/ShutterCtrl/Led0.h [new file with mode: 0644]
Application/ShutterCtrl/ShutterHandler.cpp [new file with mode: 0644]
Application/ShutterCtrl/ShutterHandler.h [new file with mode: 0644]
Application/ShutterCtrl/TouchScrHandler.cpp [new file with mode: 0644]
Application/ShutterCtrl/TouchScrHandler.h [new file with mode: 0644]
Application/ShutterCtrl/main.cpp [new file with mode: 0644]
CMakeLists.txt [new file with mode: 0644]
Communication/CMakeLists.txt [new file with mode: 0644]
Communication/CommunicationHandler.cpp [new file with mode: 0644]
Communication/CommunicationHandler.h [new file with mode: 0644]
Communication/ICommunication.h [new file with mode: 0644]
Communication/ModbusSerial/ModbusSerial.h [new file with mode: 0644]
HAL/AVR/328p_Pwm.cpp [new file with mode: 0644]
HAL/AVR/328p_Timer0.cpp [new file with mode: 0644]
HAL/AVR/32u4_Pwm.cpp [new file with mode: 0644]
HAL/AVR/32u4_Timer0.cpp [new file with mode: 0644]
HAL/AVR/AvrAdc.cpp [new file with mode: 0644]
HAL/AVR/AvrAdc.h [new file with mode: 0644]
HAL/AVR/AvrEeprom.cpp [new file with mode: 0644]
HAL/AVR/AvrEeprom.h [new file with mode: 0644]
HAL/AVR/AvrInterrupt.h [new file with mode: 0644]
HAL/AVR/AvrPwm.cpp [new file with mode: 0644]
HAL/AVR/AvrPwm.h [new file with mode: 0644]
HAL/AVR/AvrSpi.cpp [new file with mode: 0644]
HAL/AVR/AvrSpi.h [new file with mode: 0644]
HAL/AVR/AvrTimer0.cpp [new file with mode: 0644]
HAL/AVR/AvrTimer0.h [new file with mode: 0644]
HAL/AVR/AvrTimer1.cpp [new file with mode: 0644]
HAL/AVR/AvrTimer1.h [new file with mode: 0644]
HAL/AVR/AvrTimer3.cpp [new file with mode: 0644]
HAL/AVR/AvrTimer3.h [new file with mode: 0644]
HAL/AVR/AvrUart.cpp [new file with mode: 0644]
HAL/AVR/AvrUart.h [new file with mode: 0644]
HAL/AVR/CMakeLists.txt [new file with mode: 0644]
HAL/Abstract/IAdc.h [new file with mode: 0644]
HAL/Abstract/IEeprom.h [new file with mode: 0644]
HAL/Abstract/IInterruptActivity.h [new file with mode: 0644]
HAL/Abstract/IIo.h [new file with mode: 0644]
HAL/Abstract/IProtocolLayer2.h [new file with mode: 0644]
HAL/Abstract/IPwm.h [new file with mode: 0644]
HAL/Abstract/ISPI.h [new file with mode: 0644]
HAL/Abstract/ISwitch.h [new file with mode: 0644]
HAL/Abstract/ITimer.h [new file with mode: 0644]
HAL/Abstract/IUart.h [new file with mode: 0644]
HAL/CMakeLists.txt [new file with mode: 0644]
HAL/Drivers/CMakeLists.txt [new file with mode: 0644]
HAL/Drivers/Eeprom.h [new file with mode: 0644]
HAL/Drivers/Ili9341.cpp [new file with mode: 0644]
HAL/Drivers/Ili9341.h [new file with mode: 0644]
HAL/Drivers/NetString.cpp [new file with mode: 0644]
HAL/Drivers/NetString.h [new file with mode: 0644]
HAL/Drivers/Rs485.h [new file with mode: 0644]
HAL/Drivers/XPT2046_Touchscreen.cpp [new file with mode: 0644]
HAL/Drivers/XPT2046_Touchscreen.h [new file with mode: 0644]
HAL/Drivers/glcdfont.c [new file with mode: 0644]
Metadata/CMakeLists.txt [new file with mode: 0644]
Metadata/DCMotorParamIds.h [new file with mode: 0644]
Metadata/DCMotorParameterTable.cpp [new file with mode: 0644]
Metadata/DCMotorParameterTable.h [new file with mode: 0644]
Metadata/Metadata.h [new file with mode: 0644]
Metadata/PowerswitchParamIds.h [new file with mode: 0644]
Metadata/PowerswitchParameterTable.cpp [new file with mode: 0644]
Metadata/PowerswitchParameterTable.h [new file with mode: 0644]
Metadata/ShutterCtrlParamIds.h [new file with mode: 0644]
Metadata/ShutterCtrlParameterTable.cpp [new file with mode: 0644]
Metadata/ShutterCtrlParameterTable.h [new file with mode: 0644]
Platform/CMakeLists.txt [new file with mode: 0644]
Platform/DCMotorParameterHandler.cpp [new file with mode: 0644]
Platform/DCMotorParameterHandler.h [new file with mode: 0644]
Platform/ErrorHandler.h [new file with mode: 0644]
Platform/Errors.h [new file with mode: 0644]
Platform/IErrorHandler.h [new file with mode: 0644]
Platform/IParameterHandler.h [new file with mode: 0644]
Platform/PersistentStorage.cpp [new file with mode: 0644]
Platform/PersistentStorage.h [new file with mode: 0644]
Platform/PowerswitchParameterHandler.cpp [new file with mode: 0644]
Platform/PowerswitchParameterHandler.h [new file with mode: 0644]
Platform/ShutterCtrlParameterHandler.cpp [new file with mode: 0644]
Platform/ShutterCtrlParameterHandler.h [new file with mode: 0644]
README [new file with mode: 0644]
Utils/StdTypes.h [new file with mode: 0644]
rules/gcc-avr-common.cmake [new file with mode: 0644]
rules/gcc-avr-generic.cmake [new file with mode: 0644]