Soldered on the short female header for i2c. Put on new style SSD1306 with the same pin order ( older/common ones had VCC/GND swapped )
Using Adafruit test code with Wire it is running well on this FRDM4236 board - using those provided mid board pins!
This cute trick easily gets rid of the long delays to make the code less boring to watch - also would be handy to wipe out debug delay()'s quickly:
Code:
#define delay(a) delayMicroseconds( a*10 )
And this one bumps the 400 KHz i2c speed to 1 MHz - where last two params are provided to specifiy optional CLK SPEED 'USE, EXIT':
Code:
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET, 1000000, 1000000);
>> This takes a subset of Adafruit SSD1306_128x64_i2c.ino draw tests from 8.8 secs to 3.9 secs