mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-27 20:59:00 +08:00
minor mods
This commit is contained in:
parent
1a2b0f9f3c
commit
1b9e4412bb
@ -1,7 +1,5 @@
|
||||
# Baremetal web device dashboard on NUCLEO-F746ZG, built on Keil MDK
|
||||
|
||||
- Open this example with Keil uVision
|
||||
- Build it
|
||||
- Run/Debug it
|
||||
See https://mongoose.ws/tutorials/stm32/nucleo-f746zg-keil-baremetal/
|
||||
|
||||
Mongoose configuration is in mongoose_custom.h, inside Network_Library
|
||||
|
@ -49,10 +49,10 @@
|
||||
<InvalidFlash>1</InvalidFlash>
|
||||
</TargetStatus>
|
||||
<OutputDirectory>.\Objects\</OutputDirectory>
|
||||
<OutputName>firmware</OutputName>
|
||||
<OutputName>device-dashboard</OutputName>
|
||||
<CreateExecutable>1</CreateExecutable>
|
||||
<CreateLib>0</CreateLib>
|
||||
<CreateHexFile>1</CreateHexFile>
|
||||
<CreateHexFile>0</CreateHexFile>
|
||||
<DebugInformation>1</DebugInformation>
|
||||
<BrowseInformation>1</BrowseInformation>
|
||||
<ListingPath>.\Listings\</ListingPath>
|
||||
@ -337,7 +337,7 @@
|
||||
<v6Rtti>0</v6Rtti>
|
||||
<VariousControls>
|
||||
<MiscControls>-W -Wall -Wextra -Wundef -Wshadow -Wdouble-promotion -Wno-unused-parameter -Wconversion -Wno-sign-conversion -fno-common -fdata-sections</MiscControls>
|
||||
<Define></Define>
|
||||
<Define>HTTP_URL=\"http://0.0.0.0/\"</Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath></IncludePath>
|
||||
</VariousControls>
|
||||
|
@ -1,9 +1,8 @@
|
||||
# FreeRTOS + lwIP Web device dashboard on NUCLEO-F746ZG, built on Keil MDK
|
||||
|
||||
- Open this example with Keil uVision
|
||||
- Build it
|
||||
- Run/Debug it
|
||||
This example uses FreeRTOS native interface and configures lwIP to use it too
|
||||
|
||||
See https://mongoose.ws/tutorials/stm32/nucleo-f746zg-keil-freertos-lwip/
|
||||
|
||||
Mongoose configuration is in mongoose_custom.h, inside Network_Library
|
||||
|
||||
This example uses FreeRTOS native interface and configures lwIP to use it too
|
||||
|
@ -337,7 +337,7 @@
|
||||
<v6Rtti>0</v6Rtti>
|
||||
<VariousControls>
|
||||
<MiscControls>-W -Wall -Wextra -Wundef -Wshadow -Wdouble-promotion -Wno-unused-parameter -Wconversion -Wno-sign-conversion -Wno-implicit-int-conversion -Wno-format-security -fno-common -fdata-sections</MiscControls>
|
||||
<Define></Define>
|
||||
<Define>HTTP_URL=\"http://0.0.0.0/\"</Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath></IncludePath>
|
||||
</VariousControls>
|
||||
|
@ -1,7 +1,6 @@
|
||||
# FreeRTOS+ TCP Web device dashboard on NUCLEO-F746ZG, built on Keil MDK
|
||||
|
||||
- Open this example with Keil uVision
|
||||
- Build it
|
||||
- Run/Debug it
|
||||
See https://mongoose.ws/tutorials/stm32/nucleo-f746zg-keil-freertos-tcp/
|
||||
|
||||
Mongoose configuration is in mongoose_custom.h, inside Network_Library
|
||||
|
||||
|
@ -337,7 +337,7 @@
|
||||
<v6Rtti>0</v6Rtti>
|
||||
<VariousControls>
|
||||
<MiscControls>-W -Wall -Wextra -Wdouble-promotion -Wno-unused-parameter -Wconversion -Wno-sign-conversion -Wno-implicit-int-conversion -Wno-sign-compare -Wno-pragma-pack -Wno-uninitialized -fno-common -fdata-sections</MiscControls>
|
||||
<Define>STM32F7xx=1</Define>
|
||||
<Define>STM32F7xx=1 HTTP_URL=\"http://0.0.0.0/\"</Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath>.</IncludePath>
|
||||
</VariousControls>
|
||||
|
@ -1,9 +1,8 @@
|
||||
# FreeRTOS Web device dashboard on NUCLEO-F746ZG, built on Keil MDK
|
||||
|
||||
- Open this example with Keil uVision
|
||||
- Build it
|
||||
- Run/Debug it
|
||||
This example uses FreeRTOS native interface
|
||||
|
||||
See https://mongoose.ws/tutorials/stm32/nucleo-f746zg-keil-freertos/
|
||||
|
||||
Mongoose configuration is in mongoose_custom.h, inside Network_Library
|
||||
|
||||
This example uses FreeRTOS native interface
|
||||
|
@ -337,7 +337,7 @@
|
||||
<v6Rtti>0</v6Rtti>
|
||||
<VariousControls>
|
||||
<MiscControls>-W -Wall -Wextra -Wundef -Wshadow -Wdouble-promotion -Wno-unused-parameter -Wconversion -Wno-sign-conversion -Wno-implicit-int-conversion -fno-common -fdata-sections</MiscControls>
|
||||
<Define></Define>
|
||||
<Define>HTTP_URL=\"http://0.0.0.0/\"</Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath></IncludePath>
|
||||
</VariousControls>
|
||||
|
@ -1,9 +1,8 @@
|
||||
# FreeRTOS + lwIP Web device dashboard on NUCLEO-F746ZG, built on Keil MDK
|
||||
|
||||
- Open this example with Keil uVision
|
||||
- Build it
|
||||
- Run/Debug it
|
||||
This example uses CMSIS-RTOS v2 API calls and configures lwIP to use CMSIS-RTOS v2 interface with FreeRTOS
|
||||
|
||||
See https://mongoose.ws/tutorials/stm32/nucleo-f746zg-keil-cmsis2-lwip/
|
||||
|
||||
Mongoose configuration is in mongoose_custom.h, inside Network_Library
|
||||
|
||||
This example uses CMSIS-RTOS v2 API calls and configures lwIP to use CMSIS-RTOS v2 interface with FreeRTOS
|
||||
|
@ -337,7 +337,7 @@
|
||||
<v6Rtti>0</v6Rtti>
|
||||
<VariousControls>
|
||||
<MiscControls>-W -Wall -Wextra -Wundef -Wshadow -Wdouble-promotion -Wno-unused-parameter -Wconversion -Wno-sign-conversion -Wno-implicit-int-conversion -fno-common -fdata-sections</MiscControls>
|
||||
<Define></Define>
|
||||
<Define>HTTP_URL=\"http://0.0.0.0/\"</Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath></IncludePath>
|
||||
</VariousControls>
|
||||
|
@ -1,9 +1,8 @@
|
||||
# FreeRTOS Web device dashboard on NUCLEO-F746ZG, built on Keil MDK
|
||||
|
||||
- Open this example with Keil uVision
|
||||
- Build it
|
||||
- Run/Debug it
|
||||
This example uses CMSIS-RTOS v2 API calls
|
||||
|
||||
See https://mongoose.ws/tutorials/stm32/nucleo-f746zg-keil-cmsis2/
|
||||
|
||||
Mongoose configuration is in mongoose_custom.h, inside Network_Library
|
||||
|
||||
This example uses CMSIS-RTOS v2 API calls
|
||||
|
@ -337,7 +337,7 @@
|
||||
<v6Rtti>0</v6Rtti>
|
||||
<VariousControls>
|
||||
<MiscControls>-W -Wall -Wextra -Wundef -Wshadow -Wdouble-promotion -Wno-unused-parameter -Wconversion -Wno-sign-conversion -fno-common -fdata-sections</MiscControls>
|
||||
<Define></Define>
|
||||
<Define>HTTP_URL=\"http://0.0.0.0/\"</Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath></IncludePath>
|
||||
</VariousControls>
|
||||
|
@ -1,7 +1,6 @@
|
||||
# Web device dashboard on NUCLEO-F746ZG, built on Keil MDK using RTX and the MDK Plus stack
|
||||
|
||||
- Open this example with Keil uVision
|
||||
- Build it
|
||||
- Run/Debug it
|
||||
See https://mongoose.ws/tutorials/stm32/nucleo-f746zg-keil-rtx-mdk/
|
||||
|
||||
Mongoose configuration is in mongoose_custom.h, inside Network_Library
|
||||
|
||||
|
@ -337,7 +337,7 @@
|
||||
<v6Rtti>0</v6Rtti>
|
||||
<VariousControls>
|
||||
<MiscControls>-W -Wall -Wextra -Wundef -Wshadow -Wdouble-promotion -Wno-unused-parameter -Wno-macro-redefined -Wconversion -Wno-sign-conversion -fno-common -fdata-sections</MiscControls>
|
||||
<Define></Define>
|
||||
<Define>HTTP_URL=\"http://0.0.0.0/\"</Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath></IncludePath>
|
||||
</VariousControls>
|
||||
|
@ -1,7 +1,6 @@
|
||||
# RTX Web device dashboard on NUCLEO-F746ZG, built on Keil MDK
|
||||
|
||||
- Open this example with Keil uVision
|
||||
- Build it
|
||||
- Run/Debug it
|
||||
See https://mongoose.ws/tutorials/stm32/nucleo-f746zg-keil-cmsis1/
|
||||
|
||||
Mongoose configuration is in mongoose_custom.h, inside Network_Library
|
||||
|
||||
|
@ -337,7 +337,7 @@
|
||||
<v6Rtti>0</v6Rtti>
|
||||
<VariousControls>
|
||||
<MiscControls>-W -Wall -Wextra -Wundef -Wshadow -Wdouble-promotion -Wno-unused-parameter -Wno-macro-redefined -Wconversion -Wno-sign-conversion -fno-common -fdata-sections</MiscControls>
|
||||
<Define></Define>
|
||||
<Define>HTTP_URL=\"http://0.0.0.0/\"</Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath></IncludePath>
|
||||
</VariousControls>
|
||||
|
@ -1,7 +1,6 @@
|
||||
# RTX5 + lwIP Web device dashboard on NUCLEO-F746ZG, built on Keil MDK
|
||||
|
||||
- Open this example with Keil uVision
|
||||
- Build it
|
||||
- Run/Debug it
|
||||
See https://mongoose.ws/tutorials/stm32/nucleo-f746zg-keil-cmsis2-lwip/
|
||||
|
||||
Mongoose configuration is in mongoose_custom.h, inside Network_Library
|
||||
|
||||
|
@ -337,7 +337,7 @@
|
||||
<v6Rtti>0</v6Rtti>
|
||||
<VariousControls>
|
||||
<MiscControls>-W -Wall -Wextra -Wundef -Wshadow -Wdouble-promotion -Wno-unused-parameter -Wconversion -Wno-sign-conversion -Wno-implicit-int-conversion -fno-common -fdata-sections</MiscControls>
|
||||
<Define></Define>
|
||||
<Define>HTTP_URL=\"http://0.0.0.0/\"</Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath></IncludePath>
|
||||
</VariousControls>
|
||||
|
@ -1,7 +1,6 @@
|
||||
# Web device dashboard on NUCLEO-F746ZG, built on Keil MDK using RTX5 and the MDK Plus stack
|
||||
|
||||
- Open this example with Keil uVision
|
||||
- Build it
|
||||
- Run/Debug it
|
||||
See https://mongoose.ws/tutorials/stm32/nucleo-f746zg-keil-rtx5-mdk/
|
||||
|
||||
Mongoose configuration is in mongoose_custom.h, inside Network_Library
|
||||
|
||||
|
@ -337,7 +337,7 @@
|
||||
<v6Rtti>0</v6Rtti>
|
||||
<VariousControls>
|
||||
<MiscControls>-W -Wall -Wextra -Wundef -Wshadow -Wdouble-promotion -Wno-unused-parameter -Wconversion -Wno-sign-conversion -fno-common -fdata-sections</MiscControls>
|
||||
<Define></Define>
|
||||
<Define>HTTP_URL=\"http://0.0.0.0/\"</Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath></IncludePath>
|
||||
</VariousControls>
|
||||
|
@ -1,7 +1,6 @@
|
||||
# RTX5 Web device dashboard on NUCLEO-F746ZG, built on Keil MDK
|
||||
|
||||
- Open this example with Keil uVision
|
||||
- Build it
|
||||
- Run/Debug it
|
||||
See https://mongoose.ws/tutorials/stm32/nucleo-f746zg-keil-cmsis2/
|
||||
|
||||
Mongoose configuration is in mongoose_custom.h, inside Network_Library
|
||||
|
||||
|
@ -337,7 +337,7 @@
|
||||
<v6Rtti>0</v6Rtti>
|
||||
<VariousControls>
|
||||
<MiscControls>-W -Wall -Wextra -Wundef -Wshadow -Wdouble-promotion -Wno-unused-parameter -Wconversion -Wno-sign-conversion -fno-common -fdata-sections</MiscControls>
|
||||
<Define></Define>
|
||||
<Define>HTTP_URL=\"http://0.0.0.0/\"</Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath></IncludePath>
|
||||
</VariousControls>
|
||||
|
@ -9,8 +9,8 @@
|
||||
<license>License.txt</license>
|
||||
<repository type="git">https://github.com/cesanta/mongoose.git</repository>
|
||||
<releases>
|
||||
<release version="7.11.0" date="2023-07-05" tag="7.11">
|
||||
See https://github.com/cesanta/mongoose/releases/tag/7.11
|
||||
<release version="7.12.0" date="2023-10-23" tag="7.12">
|
||||
See https://github.com/cesanta/mongoose/releases/tag/7.12
|
||||
</release>
|
||||
</releases>
|
||||
|
||||
@ -29,7 +29,7 @@
|
||||
</taxonomy>
|
||||
|
||||
<components>
|
||||
<component Cclass="Network Library" Cgroup="Mongoose" Cversion="7.11.0">
|
||||
<component Cclass="Network Library" Cgroup="Mongoose" Cversion="7.12.0">
|
||||
<description>Mongoose HTTP/MQTT/Websocket Library</description>
|
||||
<files>
|
||||
<file category="header" name="Mongoose/mongoose.h"/>
|
||||
|
Loading…
Reference in New Issue
Block a user