aboutsummaryrefslogtreecommitdiff
path: root/stm32f091/server.c
blob: de6ea5012fed3d4cc478c230a7c5a936d91537a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stm32f0xx_hal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "server.h"

void ws_server_req_incoming(uint8_t* data, size_t size) {
	// TODO: server req incoming implementation
	//
	// example +IPD command:
	// +IPD,0,15:last-records 5\n
	//
	// TODO: protocol req response parser -> (ws_esp8622_at_send(data, channel) ?)

	return;
}