add network abstraction layer
This commit is contained in:
@ -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();
|
||||
|
||||
|
8
cube/User/Src/networkAbstractionLayer.c
Normal file
8
cube/User/Src/networkAbstractionLayer.c
Normal file
@ -0,0 +1,8 @@
|
||||
#include <networkAbstractionLayer.h>
|
||||
|
||||
#include <wizHelper.h>
|
||||
|
||||
|
||||
void networkInit() {
|
||||
wizInit();
|
||||
}
|
Reference in New Issue
Block a user