Stm32-eeprom-dump is a little program for a board based on stm32f103c8t6 chip, dumping the contents of an EEPROM chip SST28SF040 connected to the board's I/O pins, through a USART interface.
First you'll need the compiler. If you're using a Debian-based Linux you can
get it by installing gcc-arm-none-eabi
package. Then you'll need the
libstammer library. Build it first, then export environment
variables pointing to it:
export CFLAGS=-ILIBSTAMMER_DIR LDFLAGS=-LLIBSTAMMER_DIR
LIBSTAMMER_DIR
above is the directory where the built libstammer is located.
After that you can build the program using make
.