AP mode
Dependencies: NetworkSocketAPI WizFi310Interface mbed
Fork of WizFi310_TCP_Echo_Server_Example by
tts.h@2:8d119e9b8f5a, 2017-10-02 (annotated)
- Committer:
- maru536
- Date:
- Mon Oct 02 20:48:08 2017 +0000
- Revision:
- 2:8d119e9b8f5a
AP mode
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
maru536 | 2:8d119e9b8f5a | 1 | #pragma once |
maru536 | 2:8d119e9b8f5a | 2 | #include "TCPServer.h" |
maru536 | 2:8d119e9b8f5a | 3 | #include "WizFi310Interface.h" |
maru536 | 2:8d119e9b8f5a | 4 | #include "VS1053.h" |
maru536 | 2:8d119e9b8f5a | 5 | #include "resource.h" |
maru536 | 2:8d119e9b8f5a | 6 | |
maru536 | 2:8d119e9b8f5a | 7 | void url_encode(char *dst, const char* src ); |
maru536 | 2:8d119e9b8f5a | 8 | uint16_t strToUint16(char* str, int size); |
maru536 | 2:8d119e9b8f5a | 9 | void strcpy(unsigned char *dst, unsigned char *src); |
maru536 | 2:8d119e9b8f5a | 10 | bool extractVoiceData(TCPSocket *socket, int &content_length); |
maru536 | 2:8d119e9b8f5a | 11 | void playTTS(VS1053 *player, TCPSocket *socket, char* buf); |
maru536 | 2:8d119e9b8f5a | 12 | void playTTS(TCPSocket *socket, char* buf); |