Yes, and no, and now for the politics of backwards compatibility. The Pins functions for 17 and 18 are not compatible with rev 1.7+ of the MOD54415 or any rev of the MOD54417. However, since the Pins functionality existed prior to the PCN switching over to USB, we felt it best to not silently break someone's software in future updates to the NNDK. Thus, they still point to the I2C pins for performing the Pins functions.
Instead, to read the state of pins 17 and 18, you will need to access the USB controller registers as follows:
Code: Select all
bool pin17_state = sim2.usb_otg.portsc1 & 0x00000400;
bool pin18_state = sim2.usb_otg.portsc1 & 0x00000800;
-Dan