Mikael Patel
Mikael Patel
This issue is a list of missing words (Forth94 Core). ``` ' NAME ( -- xt ) ['] NAME ( -- xt ) unloop ( -- ) */mod ( n1...
Allow the scanner to be configured to echo all characters read during the parsing of a word.
There is currently no function to get the current pin mode. A possible implementation is: ``` int pinMode(uint8_t pin) { if (pin >= NUM_DIGITAL_PINS) return (-1); uint8_t bit = digitalPinToBitMask(pin);...
Use @tparam.
Improve interface and support for device drivers. Add support for handling of the bus manager semaphore (m_busy).