Mit diesem Demo-Projekt wird LAN per HTTP-Server des STM32F746-Discovery-Board getestet.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | //-------------------------------------------------------------- // File : main.c // Datum : 14.02.2016 // Version : 1.0 // Autor : UB // EMail : mc-4u(@)t-online.de // Web : www.mikrocontroller-4u.de // CPU : STM32F746 // Board : STM32F746-Discovery-Board // IDE : OpenSTM32 // GCC : 4.9 2015q2 // Module : CubeHAL // Funktion : HTTP-Webserver // // switch LED and read ADC (@PF10 = CN5/2) //-------------------------------------------------------------- #include "stm32_ub_system.h" #include "stm32_ub_http_server.h" int main(void) { // init vom System UB_System_Init(); // init HTTP-server UB_HTTP_Server_Init(); while(1) { UB_HTTP_Server_Do(); } } |
Hier der komplette OpenSTM32-Projektordner zum Download :
The project doesn’t compile!!!
Sorry no need yet!