Ada WB55 Client & Server Following on from the last blog posting, I now have a client and server implementation in Ada. Mine is not quite as fancy as ST's, ST's allows role reversal where the client can run on the larger board (MB1355C) and the server on the USB dongle (MB1293C). I only support server on MB1355C and client on MB1293C. Getting the code & building You will need gnat2018 or gnat2019 from AdaCore: https://www.adacore.com/download Once that's installed, you will need some library code and the STM32 dir I use: git clone https://github.com/morbos/Ada_Drivers_Library.git git clone https://github.com/morbos/embedded-runtimes.git git clone https://github.com/morbos/STM32.git mv ../embedded-runtimes Ada_Drivers_Library cd STM32/WB/WB55/cli_serv_wb55 make Once make finishes you get 2 ELF32 files in the obj/Debug dir. admin@ubuntu_1604:/tmp/STM32/WB/WB55/cli_serv_wb55$ make rm -f obj/Debug/client_wb55x (export LOADER=ROM_WB55x; gprb...