1*e8380792SMatthias Ringwald# BTstack port for STM32 Nucleo-L073RZ Board with an EM9304 Shield - EM9304 DVK 2*e8380792SMatthias Ringwald 3*e8380792SMatthias RingwaldThis port uses the STM32 Nucleo-L073RZ Board with EM's EM9304 Shield. 4*e8380792SMatthias Ringwald 5*e8380792SMatthias RingwaldThe STM32CubeMX tool was used to provide the HAL, initialize the device, and create a basic Makefile. The Makefile has been exteneded to compile all BTstack LE examples. 6*e8380792SMatthias RingwaldFor easy development, Ozone project files are generated as well. 7*e8380792SMatthias Ringwald 8*e8380792SMatthias Ringwald## Hardware 9*e8380792SMatthias Ringwald 10*e8380792SMatthias RingwaldIn this port, the EM9304 is conencted via the SPI1 interface and configured for 8 Mhz. [Datasheet for the EM9304](http://www.emmicroelectronic.com/sites/default/files/public/products/datasheets/9304-ds_0.pdf) 11*e8380792SMatthias Ringwald 12*e8380792SMatthias RingwaldIt assumes that the EM9304 does not contain any patches and uploads the latest Metapatch during startup. 13*e8380792SMatthias Ringwald 14*e8380792SMatthias Ringwald## Software 15*e8380792SMatthias Ringwald 16*e8380792SMatthias RingwaldTo build all examples, run make 17*e8380792SMatthias Ringwald 18*e8380792SMatthias Ringwald $ make 19*e8380792SMatthias Ringwald 20*e8380792SMatthias RingwaldAll examples and the .jedbug Ozone project files are placed in the 'build' folder. 21*e8380792SMatthias Ringwald 22*e8380792SMatthias Ringwald## Flash And Run The Examples 23*e8380792SMatthias Ringwald 24*e8380792SMatthias RingwaldThe Makefile builds different versions: 25*e8380792SMatthias Ringwald- example.elf: .elf file with all debug information 26*e8380792SMatthias Ringwald- example.bin: .bin file that can be used for flashing 27*e8380792SMatthias Ringwald 28*e8380792SMatthias RingwaldThere are different options to flash and debug the F4 Discovery board. The F4 Discovery boards comes with an on-board [ST-Link programmer and debugger](https://www.st.com/en/development-tools/st-link-v2.html). As an alternative, the ST-Link programmer can be replaced by an [SEGGER J-Link OB](https://www.segger.com/products/debug-probes/j-link/models/other-j-links/st-link-on-board/). Finally, the STM32 can be programmed with any ARM Cortex JTAG or SWD programmer via the SWD jumper. 29*e8380792SMatthias Ringwald 30*e8380792SMatthias Ringwald## Run Example Project using Ozone 31*e8380792SMatthias Ringwald 32*e8380792SMatthias RingwaldWhen using an external J-Link programmer or after installing J-Link OB on the F4 Discovery board, you can flash and debug using the cross-platform [SEGGER Ozone Debugger](https://www.segger.com/products/development-tools/ozone-j-link-debugger/). It is included in some J-Link programmers or can be used for free for evaluation usage. 33*e8380792SMatthias Ringwald 34*e8380792SMatthias RingwaldJust start Ozone and open the .jdebug file in the build folder. When compiled with "ENABLE_SEGGER_RTT", the debug output shows up in the Terminal window of Ozone. 35*e8380792SMatthias Ringwald 36*e8380792SMatthias Ringwald## Debug output 37*e8380792SMatthias Ringwald 38*e8380792SMatthias RingwaldAll debug output can be either send via SEGGER RTT or via USART2. To get the console from USART2, connect PA2 (USART2 TX) of the Discovery board to an USB-2-UART adapter and open a terminal at 115200. 39*e8380792SMatthias Ringwald 40*e8380792SMatthias RingwaldIn src/btstack_config.h resp. in example/btstack_config.h of the generated projects, additional debug information can be enabled by uncommenting ENABLE_LOG_INFO. 41*e8380792SMatthias Ringwald 42*e8380792SMatthias RingwaldAlso, the full packet log can be enabled in src/port.c by uncommenting the hci_dump_open(..) line. The console output can then be converted into .pklg files for OS X PacketLogger or WireShark by running tool/create_packet_log.py 43*e8380792SMatthias Ringwald 44*e8380792SMatthias Ringwald## GATT Database 45*e8380792SMatthias RingwaldIn BTstack, the GATT Database is defined via the .gatt file in the example folder. During the build, the .gatt file is converted into a .h file with a binary representation of the GATT Database and useful defines for the application. 46*e8380792SMatthias Ringwald 47*e8380792SMatthias Ringwald## Image 48*e8380792SMatthias Ringwald 49