initial commit

This commit is contained in:
Alexander Kurmis
2022-02-20 19:18:20 +03:00
commit e226faa454
88 changed files with 86787 additions and 0 deletions

18
Core/Inc/board_logic.h Normal file
View File

@@ -0,0 +1,18 @@
/*
* board_logic.h
*
*/
#ifndef BOARD_LOGIC_H_
#define BOARD_LOGIC_H_
#define MODBUS_FIRMWARE_VERSION ( /*major*/ 1 + /*minor*/ 0 * 0x100)
#define MODBUS_BOARD_TYPE (8) //Relay Module board ID
#define REL_MAIN_BIT (1u<<0)
#define REL_AUX_BIT (1u<<1)
void loop_iterate();
#endif