added gfx (empty test)

working on gfx module
added a few draw function
gfx still wip
added tamplate for test
This commit is contained in:
2022-06-19 19:46:17 +02:00
parent a2ded46eb3
commit d0b533daf9
4 changed files with 435 additions and 5 deletions

26
test/oled/oled_test.c Normal file
View File

@@ -0,0 +1,26 @@
#include "unity.h"
void setUp(void)
{
}
void tearDown(void)
{
}
void test_one(void)
{
TEST_FAIL();
}
int main(void)
{
UNITY_BEGIN();
RUN_TEST(test_one);
return UNITY_END();
}