Mirror with some correction

Dependencies:   mbed FastIO FastPWM USBDevice

Committer:
arnoz
Date:
Fri Oct 01 08:19:46 2021 +0000
Revision:
116:7a67265d7c19
Parent:
82:4f6209cb5c33
- Correct information regarding your last merge

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mjr 73:4e8ce0b18915 1 #include "TinyDigitalIn.h"
mjr 73:4e8ce0b18915 2
mjr 73:4e8ce0b18915 3 // Dummy port for NC (not connected) ports. This is simply a memory
mjr 73:4e8ce0b18915 4 // location that always reads as all ones. This lets us set up a pointer
mjr 73:4e8ce0b18915 5 // in the instance so that we can read it as though it were really
mjr 73:4e8ce0b18915 6 // connected to a port, but the port will always read as pulled up.
mjr 73:4e8ce0b18915 7 const uint32_t TinyDigitalIn::pdir_nc = 0xFFFFFFFF;