Skip to content

korewireless/Microvisor-Demo-IoT-Device

Repository files navigation

Microvisor IoT Device Demo

This repo provides a basic demonstration of a sample IoT device application. It makes use of a temperature sensor and four-digit display to periodically read and present the local temperature. It transmits the data to a mock API. A motion sensor detects double-taps, which trigger warning messages to the mock API.

The application is based on the FreeRTOS real-time operating system and which will run on the “non-secure” side of Microvisor. FreeRTOS is included as a submodule.

The ARM CMSIS-RTOS API is used an an intermediary between the application and FreeRTOS to make it easier to swap out the RTOS layer for another.

The application code files can be found in the App/ directory. The ST_Code/ directory contains required components that are not part of the Microvisor STM32U5 HAL, which this sample accesses as a submodule. The FreeRTOSConfig.h and stm32u5xx_hal_conf.h configuration files are located in the config/ directory.

Cloning the Repo

This repo makes uses of git submodules, some of which are nested within other submodules. To clone the repo, run:

git clone https://github.com/korewireless/Microvisor-Demo-IoT-Device.git

and then:

cd Microvisor-Demo-IoT-Device
git submodule update --init --recursive

Repo Updates

When the repo is updated, and you pull the changes, you should also always update dependency submodules. To do so, run:

git submodule update --remote --recursive

We recommend following this by deleting your build directory.

Requirements

You will need a Twilio account. Sign up now if you don’t have one.

The demo makes use of Beeceptor as a target for the HTTP POST requests it makes.

You will also need the following hardware:

Hardware Setup

Assemble the following circuit:

The Microvisor IOT device demo circuit

Wire Color GPIO Block GPIO Pin Number Microvisor Pin Role
Black CN12 72 N/A GND
Blue CN12 58 PF3 LIS3DH interrupt detection
Green CN12 5 PB9 I2C SDA
Yellow CN12 17 PB6 I2C SCL
Red CN11 5 N/A VDD (3V3)

The display and sensor are shown on breakout boards which include I2C pull-up resistors. If you add the display and sensor as raw components, you will need to add pull-ups on the I2C SDA and SCL lines. You only need a single pull-up on each line.

The Adafruit LIS3DH has an I2C address of 0x18, the same as the MCP98008. To avoid this clash, connect the SDO pin on the Adafruit LIS3DH board to 3V3. This changes the address to 0x19, and this is used in the sample code.

Datasheets

Software Setup

This project is written in C. At this time, we only support Ubuntu 20.0.4. Users of other operating systems should build the code under a virtual machine running Ubuntu, or with Docker.

Note Users of unsupported platforms may attempt to install the Microvisor toolchain using this guidance.

Docker

If you are running on an architecture other than x86/amd64 (such as a Mac with Apple silicon), you will need to override the platform when running docker. This is needed for the Twilio CLI apt package which is x86 only at this time:

export DOCKER_DEFAULT_PLATFORM=linux/amd64

Build the image:

docker build --build-arg UID=$(id -u) --build-arg GID=$(id -g) -t mv-iot-demo-image .

Run the build:

docker run -it --rm -v $(pwd)/:/home/mvisor/project/ \
  --env-file env.list \
  --name mv-iot-demo mv-iot-demo-image

Note You will need to have exported certain environment variables, as detailed below.

Under Docker, the demo is compiled, uploaded and deployed to your development board. It also initiates logging — hit ctrl-c to break out to the command prompt.

Libraries and Tools

Under Ubuntu, run the following:

sudo apt install gcc-arm-none-eabi binutils-arm-none-eabi \
  git curl build-essential cmake libsecret-1-dev jq openssl

Twilio CLI

Install the Twilio CLI. This is required to view streamed logs and for remote debugging. You need version 4.0.1 or above.

Note If you have already installed the Twilio CLI using npm, we recommend removing it and then reinstalling as outlined below. Remove the old version with npm remove -g twilio-cli.

wget -qO- https://twilio-cli-prod.s3.amazonaws.com/twilio_pub.asc | sudo apt-key add -
sudo touch /etc/apt/sources.list.d/twilio.list
echo 'deb https://twilio-cli-prod.s3.amazonaws.com/apt/ /' | sudo tee /etc/apt/sources.list.d/twilio.list
sudo apt update
sudo apt install -y twilio

Close your terminal window or tab, and open a new one. Now run:

twilio plugins:install @twilio/plugin-microvisor

Beeceptor Setup

  1. Visit the Beeceptor website.
  2. Enter an endpoint name and click Create Endpoint.
  3. Click Mocking Rules.
  4. Click Create New Rule.
  5. In the Mocking Rules panel:
    1. Set the Method to POST.
    2. Set the Request condition to Request path starts with.
    3. Set the path to /api/v1/data.
    4. Click Save Rule.
  6. Close the Mocking Rules by clicking the X in the top right corner of the panel.

Environment Variables

Running the Twilio CLI and the Microvisor Plugin to upload the built code to the Microvisor cloud for subsequent deployment to your Microvisor Nucleo Board uses the following Twilio credentials stored as environment variables. They should be added to your shell profile:

export TWILIO_ACCOUNT_SID=ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
export TWILIO_AUTH_TOKEN=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
export MV_DEVICE_SID=UVxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

You can get the first two from your Twilio Console account dashboard.

Enter the following command to get your target device’s SID and, if set, its unqiue name:

twilio api:microvisor:v1:devices:list

Copy the Beeceptoir API URL, e.g., https://<YOUR_ENDPOINT_NAME>.free.beeceptor.com and set it as the following environment variable. Make sure you include the path from step 5.3, above:

export MVIOT_URL=https://<YOUR_ENDPOINT_NAME>.free.beeceptor.com/api/v1/data

Build and Deploy the Application

Run:

twilio microvisor:deploy . --devicesid ${MV_DEVICE_SID} --log

This will compile, bundle and upload the code, and stage it for deployment to your device. If you encounter errors, please check your stored Twilio credentials.

The --log flag initiates log-streaming.

You’ll see these outputs:

Data sent to Beeceptor

The temp messages are sent periodically, warning messagaes only if you double-tap the LIS3DH.

View Log Output

You can start log streaming separately — for example, in a second terminal window — with this command:

twilio microvisor:deploy . --devicesid ${MV_DEVICE_SID} --log-only

For more information, run

twilio microvisor:deploy --help

UART Logging

You may log your application over UART on pin PD5 — pin 41 in bank CN11 on the Microvisor Nucleo Development Board. To use this mode, which is intended as an alternative to application logging, typically when a device is disconnected, connect a 3V3 FTDI USB-to-Serial adapter cable’s RX pin to PD5, and a GND pin to any Nucleo GND pin. Whether you do this or not, the application will continue to log via the Internet.

Remote Debugging

This release supports remote debugging, and builds are enabled for remote debugging automatically. Change the value of the line

set(ENABLE_REMOTE_DEBUGGING 1)

in the root CMakeLists.txt file to 0 to disable this.

Enabling remote debugging in the build does not initiate a GDB session — you will have to do this manually. Follow the instructions in the Microvisor documentation.

This repo contains a .gdbinit file which sets the remote target to localhost on port 8001 to match the Twilio CLI Microvisor plugin remote debugging defaults.

Remote Debugging Encryption

Remote debugging sessions are now encrypted. The file app/CMakeLists.txt generates new remote debugging keys at each build. These are placed in the /build/app directory, which is ignored for git commits. You will need to pass the path to the private key to the Twilio CLI Microvisor plugin to decrypt debugging data. The deploy script will output this path for you.

Alternatively, generate the keys manually and pass their locations to the deploy script:

twilio microvisor:deploy . --devicesid ${MV_DEVICE_SID} \
  --privatekey /path/to/private/key.pem \
  --publickey /path/to/public/key.pem

Copyright and Licensing

The sample code and Microvisor SDK is © 2024, KORE Wireless. It is licensed under the terms of the MIT License.

The SDK makes use of code © 2021, STMicroelectronics and affiliates. This code is licensed under terms described in this file.

The SDK makes use ARM CMSIS © 2004, ARM. It is licensed under the terms of the Apache 2.0 License.

FreeRTOS is © 2021, Amazon Web Services, Inc. It is licensed under the terms of the Apache 2.0 License.

About

Sample application code for Twilio Microvisor

Topics

Resources

License

Apache-2.0, Unknown licenses found

Licenses found

Apache-2.0
LICENSE
Unknown
LICENSE.md

Stars

Watchers

Forks

Languages