add network abstraction layer

This commit is contained in:
2021-02-16 10:37:09 +01:00
parent e9b60d4058
commit bfbcc309df
4 changed files with 29 additions and 4 deletions

View File

@ -13,11 +13,14 @@
#include <show.h>
#include <logger.h>
#include <eeprom.h>
#include <wizHelper.h>
#include <networkAbstractionLayer.h>
#include <config.h>
#include <counter.h>
void my_setup_1() {
schInit();
logInit();
@ -37,7 +40,7 @@ void my_setup_2() {
configInit();
wizInit();
networkInit();
counterInit();

View File

@ -0,0 +1,8 @@
#include <networkAbstractionLayer.h>
#include <wizHelper.h>
void networkInit() {
wizInit();
}