It should be a hw problem. On one of my DISCO boards one of the LEDs is distorted. GND side of the LED is not soldered to the pad. If you are using an STM32 board you can simply try to print different messages in your therads. Here you can find an example of how to do it. Do not forget to override FileHandle* mbed::mbed_override_console(int)
as i mentioned in the reply to @JojoS it is not a hardware problem.
about the FileHandle* mbed::mbed_override_console(int) is it a thing if i use platformIO is VScode?
This override sipmply redirects the output of printf to wherever you want. My reply is a bit misleading. Any dev board should allow you to get the debug messages through a serial monitor. In the worst case you can use a ttl converter connected to one of the uarts to display the debug messages on your screen but I assumed that you do not have it. ST link allows you to do this through the programmer.
I know DAP link has also this feature but I never tried a freedom board with mbed. I recommended to try this just to double check whether your thread is working as expected. You can also try to toggle another pin if you have any instrument to verify whether it’s status is changing.
I would also recommend you to put a delay in your main thread. An infinite loop without any operation or delay keeps your MCU constantly busy. If you create more threads with simple operations but without delay you might start observing small drifts at the physical outputs.
usualy you can use simply printf(), that is redirected to a standard serial port. STM boards have a virtual COM where you can receive the messages. I don’t know if the FRDM boards have this feature also. Otherwise a serial USB converter is really helpful.
But printf needs also some more memory, so a too low stack setting gives the next problem… 2 kB stack should work.
Edit:
the board description in mbed says it has a VCOM, so simply add a printf(“hello from KL25Z”); at the begining of main or your threads.