From 85b471c257a27b5bc4b16c7dbd72aedae5ddf7e4 Mon Sep 17 00:00:00 2001 From: Andy Liu Date: Wed, 6 Dec 2023 15:42:09 +0800 Subject: [PATCH] Add Package.mmp in HttpGet Signed-off-by: Andy Liu --- Examples/ESP32ATClient/HttpGet/Package.mmp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Examples/ESP32ATClient/HttpGet/Package.mmp diff --git a/Examples/ESP32ATClient/HttpGet/Package.mmp b/Examples/ESP32ATClient/HttpGet/Package.mmp new file mode 100644 index 0000000..102d0e2 --- /dev/null +++ b/Examples/ESP32ATClient/HttpGet/Package.mmp @@ -0,0 +1,17 @@ +# This is a MadMachine project file in TOML format +# This file holds those parameters that could not be managed by SwiftPM +# Edit this file would change the behavior of the building/downloading procedure +# Those project files in the dependent libraries would be IGNORED + +# Specify the board name below +# There are "SwiftIOBoard" and "SwiftIOMicro" now +board = "SwiftIOMicro" + +# Specifiy the target triple below +# There are "thumbv7em-unknown-none-eabi" and "thumbv7em-unknown-none-eabihf" now +# If your code use significant floating-point calculation, +# plz set it to "thumbv7em-unknown-none-eabihf" +triple = "thumbv7em-unknown-none-eabi" + +# Reserved for future use +version = 1