No description
Find a file
Karl Palsson 18df4064d3 usb-rs485: enable rs485 mode.
Tested on the f1 with a LA only, but traces look good and as expected.
future work to actually hook it up to a rs485 device.
2016-10-03 21:17:54 +00:00
libopencm3@8c74128ff6 bump core library 2016-10-03 21:15:17 +00:00
openocd oocd: use l0 for f1 instead. 2016-10-03 21:15:31 +00:00
shared f0 working (one fixme) 2016-03-04 00:43:21 +00:00
tests usb-rs485: enable rs485 mode. 2016-10-03 21:17:54 +00:00
.gitignore .gitignore generated linker scripts 2016-09-09 22:16:45 +00:00
.gitmodules add libopencm3 as submodule 2015-10-16 20:44:33 +00:00
LICENSE Initial commit 2015-10-16 20:24:12 +00:00
README.md fix markdown 2015-10-17 02:35:39 +00:00
rules.mk rules.mk: don't bother making .bins 2016-09-30 23:32:10 +00:00

Cross target tests for libopencm3

libopencm3(http://github.com/libopencm3/libopencm3) pull requests are often hard to review. It can be hard to see the impact on "user" land code, it can be hard to see how the behaviour changes from a->b.

This repository contains testing frameworks I've put together to help with cross target testing, with the aim of making them as automated as possible.

General plan is something like....

  1. make -C libopencm3 clean all -j8
  2. make -C tests/xxx clean all flash test V=1
  3. cd libopencm3
  4. git checkout proposed-new-code
  5. return to step 1

Mileage will vary.