12c50686a9 | ||
---|---|---|
bl | ||
blup | ||
jdspy | ||
ld | ||
rejected | ||
scripts | ||
src | ||
stm32 | ||
.clang-format | ||
.gitignore | ||
.gitmodules | ||
CODE_OF_CONDUCT.md | ||
LICENSE | ||
README.md | ||
SECURITY.md | ||
build.mk | ||
power.md |
README.md
Jacdac for STM32F0xx and STM32G0xx
This repository contains firmware for Jacdac modules based on STM32F0xx and STM32G0xx chips and is part of the Jacdac Module Development Kit.
(The STM32G0xx support is still a work in progress.)
Bootloader
This repository contains both the firmware for running services (eg., accelerometer service) on a Jacdac module, and a bootloader which allows for updating the firmware using the Jacdac protocol. This update process can be performed by the user from the Jacdac website (while developing firmware you will typically use a debugger to deploy both the bootloader and the firmware).
Building
The top-level repo to build is jacdac-msr-modules. It imports as submodules this repo (jacdac-stm32x0) and jacdac-c (which contains platform-independent code implementing Jacdac services, as well as various I2C drivers).
When building your own firmware, you will need to create your own repository from jacdac-msr-modules
template.
You can do it by following this link https://github.com/microsoft/jacdac-msr-modules/generate
or using the green "Use this template" button in top-right corner at https://github.com/microsoft/jacdac-msr-modules
If you're just playing around, you can simply clone jacdac-msr-modules
.
All the instructions below use your copy of jacdac-msr-modules
as the root folder.
You typically will not need to fork jacdac-stm32x0
nor jacdac-c
.
The build instructions are here, and not in jacdac-msr-modules
, to avoid them getting stale in its various copies.
You will need a Unix-like environment to build the firmware (see below for instructions on how to get that on Windows).
- install
arm-none-eabi-gcc
(we've been using9-2019-q4-major
); please note thatgcc-arm-none-eabi
that comes with Ubuntu won't work - install
openocd
(optional when using Black Magic Probe) - install node.js (some linux distros have old versions of Node; get at least 14.5.2 from NodeSource)
- install GNU Make
- run
make
; you should get a successful build
Upon first run of make
, a Makefile.user
file will be created.
You will want to adjust the settings in there - there are comments in there that should guide you through the process.
To deploy the firmware to a module you will need a debugger interface. You have three options:
- Black Magic Probe; you can also re-program other debuggers with BMP firmware
- a CMSIS-DAP debugger; we've been using Particle Debugger
- an ST-LINK/V2 or one of its clones
You will want to set the right interface in
Makefile.user
.
Following commands can be used to deploy firmware:
make run BL=1
- deploy bootloadermake run
- deploy firmwaremake full-flash
- deploy both bootloader and firmwaremake flash-loop
- run flashing process in a loop - you can flash multiple devices in a row this way
Aliases:
make r
formake run
make l
formake flash-loop
make ff
formake full-flash
Other than the building/deployment targets, the following might be of note:
make st
- print RAM/flash stats for the current firmwaremake stf
- same, but break it up by function, not only filemake gdb
- run GDB debuggermake clean
- clean (duh!)make drop
- build all firmware images specified inDROP_TARGETS
Building on Windows
You will need a Unix-like environment to build the firmware. Luckily, you most likely already have one - it comes with Git for Windows. If you do not have Git for Windows yet, install it. Then you will need to install GNU Make:
- download GNU Make (without guile) from EzWinPorts
- open Administrator command prompt
- run
cd "\Program Files\Git\usr"
- run
bin\unzip.exe c:\Users\<you>\Downloads\make-4.3-without-guile-w32-bin.zip
replacing<you>
with your user name
Head to Start -> Git Bash. When you type make
you should now see
make: *** No targets specified and no makefile found. Stop.
.
Now install GNU Arm Embedded Toolchain
version 9-2019-q4-major
(do not use other versions for now).
Get the .exe
installer, and agree to adding the tools to your PATH
variable. If the installer fails to add to PATH
, then do so yourself, adding:
C:\Program Files (x86)\GNU Tools Arm Embedded\9 2019-q4-major\bin
You will also need to install node.js - take the Windows .msi
64 bit installer.
If you run Git Bash again (it has to be restarted to see change in PATH
), and type
arm-none-eabi-gcc --version
you should see something about 9-2019-q4-major
,
and if you type node --version
you should get its version number.
If using Black Magic Probe, connect it to your computer.
You should see two COM ports that correspond to it in Device Manager (for example COM7
and COM8
)
You will want to use the lower numbered one (for example COM7
).
If using stlink or cmsis/dap, you'll need to install openocd (TODO: this currently doesn't work):
- get 7-Zip decompressor
- get openocd
.7z
archive from GNU Toolchains - extract
bin
subfolder of that archive toC:\Program Files\Git\usr\bin
,share
toC:\Program Files\Git\usr\share
etc.
If you want to extract somewhere else, make sure to add the bin
somefolder to PATH
.
Now, follow the usual build instructions above.
Note: using WSL2 instead of the bash shell etc coming with Git is not recommended since it cannot access USB for deployment and debugging.
Adding new modules
- create a new repo from
jacdac-msr-modules
; let's say the new repo is calledjacdac-acme-corp-modules
- replace string
jacdac-msr-modules
withjacdac-acme-corp-modules
inpackage.json
- copy
targets/_example/
totargets/acme-corp/
(replaceingacme-corp
with the name of the series of modules) - edit targets/acme-corp/board.h to match your module
- you likely do not need to edit targets/acme-corp/config.mk, even if using a beefier MCU from the F03x family - they should be backward-compatible
- edit targets/acme-corp/profile/module.c
to include your module name and used services (follow comments in
module.c
); see jd_services.h for list of services - rename
module.c
to match the type of module (eg.servo.c
) - if you have several modules with non-conflicting
board.h
definitions, you can create more files undertargets/acme-corp/profile/
; otherwise you'll need to createtargets/acme-corp-2
or something similar - edit
Makefile.user
to setTRG
, eg.TRG = acme-corp servo
- run
make
; this will generate a new unique identifier and place as an argument ofFIRMWARE_IDENTIFIER
macro - make sure to never change the firmware identifier number, as that will break future firmware updates
If you copy targets/jm-*/profiles/something.c
to start your own module, remember to rename it, and
set the FIRMWARE_IDENTIFIER
to 0
(the one in targets/_examples
already has it set to 0
).
This way, the build process will generate a new firmware identifier.
Now, edit DROP_TARGETS
in Makefile
to only include your acme-corp
folder
(and in future acme-corp-v2
etc.).
You don't need to build jm-*
modules, so remove them from DROP_TARGETS
.
When you run make drop
now, you should get a .uf2
file combining firmware for all your modules.
Adding new services and drivers
This topic is covered in jacdac-c.
When adding services or drivers, you can put them in addons/
folder of your modules repo,
or submit them as PRs in jacdac-c
.
Release process
Use make bump
to create a new release.
This will ask you for a version number (providing a default that just updates the patch number),
update CHANGES.md
, create a git tag, and push it to the origin.
If the jacdac-acme-corp-modules
repo is public on github, the github action will create a new binary
file and place it under dist/fw-VERSION.uf2
, so there's nothing else to do.
If you want to build by hand, run make drop
after make bump
and copy built/fw-VERSION.uf2
to dist/fw-VERSION.uf2
in your release repo.
You should probably also copy over CHANGES.md
, so your users have some idea of what it being updated.
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.