Codal target for the B-L475E-IOT01A Discovery kit for IoT node. Codal is the core set of drivers, mechanisms and types that make up the runtime for a board in Makecode.
The codal runtime provides an easy to use environment for programming the board in the C/C++ language, written by Lancaster University. It contains device drivers for all the hardware capabilities, and also a suite of runtime mechanisms to make programming the easier and more flexible. These range from control of the LED matrix display to peer-to-peer radio communication and secure Bluetooth Low Energy services.
In addition to supporting development in C/C++, the runtime is also designed specifically to support higher level languages provided by our partners that target physical computing and computer science education. It is currently used as a support library for Microsoft MakeCode
Codal-core must be implemented by third party developper to support new hardware target. This repository constain the codal implementation for the B-L475E-IOT01A Discovery kit for IoT node.
The B-L475E-IOT01A Discovery kit for IoT node allows users to develop applications with direct connection to cloud servers.
The Discovery kit enables a wide diversity of applications by exploiting low-power communication, multiway sensing and Arm® Cortex® -M4 core-based STM32L4 Series features.
The support for Arduino Uno V3 and PMOD connectivity provides unlimited expansion capabilities with a large choice of specialized add-on boards.
- 64-Mbit Quad-SPI (Macronix) Flash memory
- Bluetooth® V4.1 module (SPBTLE-RF)
- Sub-GHz (868 or 915 MHz) low-power-programmable RF module (SPSGRF-868 or SPSGRF-915)
- Wi-Fi® module Inventek ISM43362-M3G-L44 (802.11 b/g/n compliant)
- Dynamic NFC tag based on M24SR with its printed NFC antenna
- 2 digital omnidirectional microphones (MP34DT01)
- USB OTG FS
- Capacitive digital sensor for relative humidity and temperature (HTS221)
- High-performance 3-axis magnetometer (LIS3MDL)
- 3D accelerometer and 3D gyroscope (LSM6DSL)
- 3D Accelerometer (Complete)
- 3D Gyroscope (Complete)
- 260-1260 hPa absolute digital output barometer (LPS22HB)
- Time-of-Flight and gesture-detection sensor (VL53L0X)
- 2 push-buttons (user and reset)
- GPIO
- ADC 12 bits
- FAT Storage over the flash memory
- Expansion connectors:
- Arduino™ Uno V3
- PMOD
Before using this target you need to configure your platforms with some software. Codal is also a build system to simplify as much as possible the experience of novice users.
- Install
git
, ensure it is available on your platforms path. - Install the
arm-none-eabi-*
command line utilities for ARM based devices and/oravr-gcc
,avr-binutils
,avr-libc
for AVR based devices, ensure they are available on your platforms path. - Install CMake(Cross platform make), this is the entirety of the build system.
- Install
Python 2.7
(if you are unfamiliar with CMake), python scripts are used to simplify the build process. - Clone the repository https://github.com/lancaster-university/codal
- Generate or create a
codal.json
filepython build.py codal-stm32-iot-node
generates a codal.json file for our target
- In the root of this repository type
python build.py
the-c
option cleans before building. - The bin file
STM32_IOT_NODE.bin
will be placed at the location specified bycodal.json
, by default this is the root. - To test the sample program, you just copy the bin file in the mass storage of the board.
If you would like to override or define any additional configuration options (#define's
) that are used by the supporting libraries, the codal build system allows the addition of a config field in codal.json
:
{
"target": {
"name": "codal-stm32-iot-node",
"url": "https://github.com/LabAixBidouille-STM32/codal-stm32-iot-node",
"branch": "master",
"type": "git"
},
"config":{
"NUMBER_ONE":1
},
"application":"source",
"output_folder":"."
}
The above example will be translate "NUMBER_ONE":1
into: #define NUMBER_ONE 1
and force include it during compilation. You can also specify alternate application or output folders.
By default, the application present in the source
directory is the content of the samples
directory of this repository. Since you can just execute one example at the time, you need to configure your target to specify the one you want.
For example, if you want to test the BLE_TEMPERATURE_ALARM_SAMPLE
, you need to configure the corresponding #define
with the following codal.json
:
{
"target": {
"name": "codal-stm32-iot-node",
"url": "https://github.com/LabAixBidouille-STM32/codal-stm32-iot-node",
"branch": "master",
"type": "git"
},
"config":{
"BLE_TEMPERATURE_ALARM_SAMPLE":1
},
"application":"source",
"output_folder":"."
}