Well even the untouched hello world example is doing this to me. Its close
to 2 seconds after power comes up before I see any UART data. It's also
about the same about of time before I see my 32.768k crystal starts to
oscillate. My chips is an MKL02Z32VFK4.
All I have is a 32.768k crystal and a 3.3V regulator along with a a few
buttons and a CAN tranceiver. I can see 3.3V and reset come up right away.
This is in main()
int main(void)
{
char ch;
/* Init board hardware. */
BOARD_InitPins();
/* CAN_SHDN: 1 = SHUTDOWN / 0 = RUN */
GPIO_PinInit(GPIOB, 0U, &(gpio_pin_config_t){kGPIO_DigitalOutput,
0});
BOARD_BootClockRUN();
BOARD_InitDebugConsole();
PRINTF("UUUUUUUUUU");
while (1);
}
it takes about 800ms before PTB0 goes low (I have an external pull up on
there) and it takes about another 800ms before I see uart data.
On Thu, Jun 16, 2016 at 6:33 PM, jorge_a_vazquez <