23 lines
453 B
C
23 lines
453 B
C
#include <networkAbstractionLayer_impl.h>
|
|
#include <logger.h>
|
|
#include <utils.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
uint64_t networkSntpQuery() {
|
|
return 0;
|
|
}
|
|
|
|
|
|
int8_t networkUdpSend(char *hostname, uint16_t port, uint8_t *buf, uint16_t bufLen) {
|
|
return 0;
|
|
}
|
|
|
|
void networkImplInit() {
|
|
HAL_GPIO_WritePin(MODEM_RES_GPIO_Port, MODEM_RES_Pin, GPIO_PIN_RESET);
|
|
activeDelay(500);
|
|
HAL_GPIO_WritePin(MODEM_RES_GPIO_Port, MODEM_RES_Pin, GPIO_PIN_SET);
|
|
}
|