Rename project to tactility (#7)

* wifi wip

* renamed project to Tactility

* renamed code files and defines

* changed prefixes to tt_

* removed wifi wip code
This commit is contained in:
Ken Van Hoeylandt
2024-01-06 12:24:38 +01:00
committed by GitHub
parent b0ffa04d78
commit 28bd80c1f1
64 changed files with 92 additions and 89 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
#include "nanobake.h"
#include "tactility.h"
#include "board_config.h"
// Apps
@@ -10,12 +10,12 @@ __attribute__((unused)) void app_main(void) {
* Auto-select a board based on the ./sdkconfig.board.* file
* that you copied to ./sdkconfig before you opened this project.
*/
.hardware = NB_BOARD_HARDWARE,
.hardware = TT_BOARD_HARDWARE,
.apps = {
&hello_world_app
},
.services = { },
};
nanobake_start(&config);
tactility_start(&config);
}