d00616

Results 3 issues of d00616

This sketch demonstrates printing to a string using defines of inttypes.h. The PRIu8 isn't interpreted correctly. ``` void setup() { Serial.begin(115200); } void loop() { char fmtBuffer[400]; snprintf(fmtBuffer, sizeof(fmtBuffer), "hu=%hu...

help wanted

When a pin is switched to OUTPUT the GPIO_PIN_CNF_DRIVE_S0S1 profile is enabled. What is your opinion to implement mode switching via OUTPUT_S0S1, OUTPUT_H0S1, OUTPUT_H0H1, OUTPUT_D0S1.... OUTPUT_H0D1?

enhancement

The nRF5 platform comes with an hardware random number generator. I have extend the library to support this. Enhancements: - Support for nRF5 and avr platform - New README.md, replaces...