You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
234 B
16 lines
234 B
5 years ago
|
#include "mks_wifi.h"
|
||
|
|
||
|
void mks_wifi_init(void){
|
||
|
DEBUG("Init MKS WIFI");
|
||
|
SET_INPUT_PULLUP(MKS_WIFI_IO0);
|
||
|
attachInterrupt(MKS_WIFI_IO0, mks_wifi_io0_irq, FALLING);
|
||
|
}
|
||
|
|
||
|
|
||
|
void mks_wifi_io0_irq(void){
|
||
|
|
||
|
INFO("IO0 Irq");
|
||
|
|
||
|
}
|
||
|
|