Jeremy Boynes
Jeremy Boynes
Define the protocol for sending SK messages using an unreliable, unordered, packet oriented transport such as UDP. Simple applications include: - sensor devices broadcasting data updates - sending updates to...
# Summary SignalK provides an open model that allows for both commercial and amateur implementations. This RFC defines how each implementation can describe its data model, without needing a central...
Based on discussion in #112, this is a proposal to describe measurements using semantic names that provide more information about what is being measured than just the raw unit. I...
# Summary Adds a BSP for the [Adafruit Feather M4 CAN Express](https://www.adafruit.com/product/4759) board. Blinky, Neopixel and USB examples have been tested on actual hardware. There was some discussion in #622...
The [SAM C20 and C21](https://www.microchip.com/en-us/products/microcontrollers-and-microprocessors/32-bit-mcus/sam-32-bit-mcus/sam-c) are 5V tolerant parts very similar (actually "drop-in" for some variants) to the SAM D20 and D21. Would it be appropriate to provide a PR...
# Summary This is a WIP, poking at generating the PAC directly from the SVD at build time. The idea here was to decouple the PACs from each other, making...
# Summary Adds support for SAM C20 and C21 devices. Added the SVD files downloaded from Atmel's site and generated the pac crates using svd2rust. Only modification made to SVD...
Rather than rely on sprintf or something like it, use a known implemenation of itoa. This replaces the file with the implementation from [ArduinoCore-samd](https://github.com/arduino/ArduinoCore-samd/blob/master/cores/arduino/itoa.c) which I hope avoids any licensing...
Have the tests use an implementation of `dtostrf` which checks for the largest buffer needed by the String class. Document the risks of that implementaton and add a TODO not...
In #208 I added pragmas to suppress deprecation warnings related to sprintf that were added in newer versions of GCC and CLang, and which caused compilation failure. These suppressions should...