Add tlmConfirm to tlm_dl ota packet-structure (#2991)
[ExpressLRS.git] / src / test / test_embedded / test_main.cpp
blobf233e4946e21f020fa471c31536db4bcbbde778c
1 #define UNIT_TEST
3 #include <Arduino.h>
4 #include <unity.h>
5 #include "eeprom_tests.h"
7 // Unity setup/teardown
8 void setUp() {}
9 void tearDown() {}
11 void setup() {
12 // NOTE!!! Wait for >2 secs
13 // if board doesn't support software reset via Serial.DTR/RTS
14 delay(2000);
16 UNITY_BEGIN(); // IMPORTANT LINE!
18 RUN_TEST(test_eeprom_rw);
21 void loop() {
22 UNITY_END(); // stop unit testing