Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
how to
Как заставить printf() отображать float ( по умолчанию отключено) (en How to fix mbed printf() printing literal %f )
Столкнулся с такой проблемкой в Mbed Studio - "неправильная" работа printf("...%f", myfloat), выводило в консоль %f вместо значения переменной.
Решение: В корне проекта, рядом с main.cpp, создаем файлик mbed_app.json с таким содержимым:
{ "target_overrides": { "*": { "platform.minimal-printf-enable-floating-point": true } } }
После этого printf("blabla %f", myFloat) будет правильно отображать этот тип данных.