Hi Paul: Just looking over my still pending pull requests to see if any of them make sense... I closed a few old ones...
Some are in libraries of other users that I don't know where you pick these up.
ADC:
https://github.com/pedvide/ADC/pull/22 - If I remember correct two main issues for T3.5 and T3.6 -
a) ISR numbers for two ISRS. So you don't get ISR on 2nd one on T3.5/6
b) The tables were never updated, they were simply copy of T3.2
RadioHead:
https://github.com/PaulStoffregen/RadioHead/pull/10
a) Updated Transaction stuff
b) Added support for SPI1/SPI2 by being able to pass which one to use.
c) merged in fix/workaround for deadlock...
ILI9341_t3: Couple of Pull requests, but maybe more extensive than you want for first one:
https://github.com/PaulStoffregen/ILI9341_t3/pull/41 - merged a bunch of stuff from my ili9341_t3n library, including:
clip rectange, offsets, Opaque font support, Support for only using 1 hardware CS pin (DC), program will also work if MISO pin is not valid... But can not do reads. ...
https://github.com/PaulStoffregen/ILI9341_t3/pull/44 - Example touchpaint using the PJRC board (XPT2046) - Note: we might want to edit the actual MIN/MAX values to some standard, was simply what I found on my first one of these boards. If I remember Defragster had some different rectangle values.
Again not sure on some of these if you will want them or not.... If not, we can probably just go and close them off...
Side note: right not experimenting again with trying to build program on RPI3 (Sure is slower than Odroid...) But I am trying to get it to build using Command line over Putty (or in my case KiTTy)
Code:
pi@raspberrypi:~ $ ./arduino-1.8.1/arduino --upload --port /dev/ttyACM0 ~/arduino-1.8.1/examples/01.Basics/Blink/Blink.ino
Picked up JAVA_TOOL_OPTIONS:
Loading configuration...
Initializing packages...
Preparing boards...
Verifying...
Opening Teensy Loader...
Unable find Teensy Loader. (p) Is the Teensy Loader application running?
pi@raspberrypi:~ $
Nice thing about command line option is that you don't need X11... support to build. However Teensyloader will fail. Wonder how hard it would be to setup to either have Teensy loader know it is running in this mode and work and/or setup to use teensyloader CLI.... So when run from command line it uses the command line version.