Skip to content

Latest commit

 

History

History
159 lines (114 loc) · 4.79 KB

README.md

File metadata and controls

159 lines (114 loc) · 4.79 KB

Memfault for Quantum Leaps' QP™

This folder contains an example integration of the Memfault SDK using the QP/C port provided in ports/qp.

The demo was tested using the STM32F407 discovery board but should work for any STM32F4xx based board.

Getting Started

Make sure you have read the instructions in the README.md in the root of the SDK and performed the installation steps that are mentioned there.

Setup

  1. Go into the demo app directory:
$ cd $MEMFAULT_SDK_ROOT/examples/qp/apps/memfault_demo_app
  1. Clone the QP/C repo
$ git clone git@github.com:QuantumLeaps/qpc.git --branch v6.6.0+ qpc
  1. Apply patches to integrate Memfault SDK
$ cd qpc
$ patch include/qassert.h $MEMFAULT_SDK_ROOT/ports/qp/qassert.h.patch
$ patch src/qf_pkg.h $MEMFAULT_SDK_ROOT/ports/qp/qf_pkg.h.patch

Memfault Project Key

A Project Key will need to be baked into the demo app to enable it to communicate with Memfault's web services. Go to https://app.memfault.com/, navigate to the project you want to use and select 'Settings'. Copy the 'Project API Key' and paste it into $MEMFAULT_SDK_ROOT/examples/qp/apps/memfault_demo_app/src/main.c, replacing <YOUR PROJECT KEY HERE> with your Project Key.

Building the App

After performing the steps above, run make from the demo app directory:

$ cd $MEMFAULT_SDK_ROOT/examples/qp/apps/memfault_demo_app

$ EMBEDDED_MFLT_SDK_ROOT=$MEMFAULT_SDK_ROOT QPC_DIR=qpc make

The target is built to: $MEMFAULT_SDK_ROOT/examples/qp/apps/memfault_demo_app/build/memfault_demo_app.elf

Flashing the App

Run the st-util in one terminal:

$ st-util
st-util 1.5.1
2019-12-12T15:22:42 INFO common.c: Loading device parameters....
2019-12-12T15:22:42 INFO common.c: Device connected is: F4 device, id 0x10076413
[...]

Then flash the .elf using GDB:

$ arm-none-eabi-gdb --eval-command="target remote localhost:4242" --ex="mon reset" --ex="load" --ex="mon reset" \
  --se=$MEMFAULT_SDK_ROOT/examples/qp/apps/memfault_demo_app/build/memfault_demo_app.elf --batch
Generating /path/to/memfault-sdk/examples/qp/apps/memfault_demo_app/build/memfault_demo_app.elf

Running the App

The USART2 peripheral of the board is used as a console/shell.

Follow the instructions in the user manual (see section 6.1.3 "ST-LINK/V2-A VCP configuration") to connect the RX/TX to either the on-board or an external USB-to-serial adapter.

Then use any serial terminal program to connect to it:

$ miniterm.py --raw /dev/cu.usbserial* 115200
--- Miniterm on /dev/cu.usbserial-1420  115200,8,N,1 ---
--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H ---
Memfault QP demo app started...
mflt> help
get_core: Get coredump info
clear_core: Clear an existing coredump
print_chunk: Get next Memfault data chunk to send and print as a curl command
crash: Trigger a crash
get_device_info: Get device info
help: Lists all commands

Causing a crash

Detach the debugger now and hard-reset the board. Otherwise, if the debugger is still attached while crashing, the demo application will pause at a breakpoint instruction.

Command crash 1 will trigger a hard fault due to a bad instruction fetch at a non-existing address, 0xbadcafe:

mflt> mflt crash 1
Memfault QP demo app started...

mflt>

Upon crashing, a coredump will be written to noinit RAM. After that the demo app will restart immediately.

To check whether the coredump has been captured, try running the get_core command after the device reboots:

mflt> get_core
Has coredump with size: 584

This confirms that a coredump of 584 bytes has been captured.

Posting Memfault Data for Analysis

Uploading Symbols

Memfault needs the symbols for the firmware in order to analyze the coredump. The ELF is located at build/memfault_demo_app.elf. This .elf contains the symbols (debug information) amongst other things.

More information on creating Software Versions and uploading symbols can be found here.

Posting captured data to Memfault

The STM32F407 board does not have the capability to connect to the internet directly. Therefore, for debug purposes, the messages to push to the Memfault cloud can also be dumped from the CLI using the print_chunk command:

mflt> print_chunk
echo \
[...]
| xxd -p -r | curl -X POST https://chunks.memfault.com/api/v0/chunks/DEMOSERIAL\
 -H 'Memfault-Project-Key:<YOUR_PROJECT_KEY>\
 -H 'Content-Type:application/octet-stream' --data-binary @- -i

You can copy and paste the output into a terminal to upload the captured data to Memfault.