You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

1.5 KiB

STM32WB55 boards

Board

Wireless stack update

Dongle

Just update FUS and download binary

BLE

GAP

GAP concepts: https://learn.adafruit.com/introduction-to-bluetooth-low-energy/gap

GATT

GATT concepts: https://learn.adafruit.com/introduction-to-bluetooth-low-energy/gatt

Client

ble-client-seq.puml

Backend

DEBUG config

VS Code:

"configurations": [
    {
        "name": "Python: Flask",
        "type": "python",
        "request": "launch",
        "module": "flask",
        "env": {
            "FLASK_APP": "backend/wsgi.py",
            "FLASK_ENV": "development",
            "FLASK_DEBUG": "0",
            "SECRET": "\\\x10#\xd9\x89,2|hBN\xe4\xdf\xe0\xf7W"
        },
        "args": [
            "run",
        ],
        "jinja": true
    }
]