The problem shows the system oscillator does not initialization successfully.
In the FREEDOM BOARD / CORTEX M0+ GETTING STARTED page with below info:
ERRATA!!!
While working with a large number of Freedom boards in a course, it was observed that the InitClockRoutines would *sometimes* not work. *Some* of the crystals on the freedom boards do NOT like "HIGH_GAIN" mode. The new code is uploaded to this page but you could also change the code yourself:
pll_init(8000000, HIGH_GAIN, CRYSTAL, 4, 24, MCGOUT);
to
pll_init(8000000, LOW_POWER, CRYSTAL, 4, 24, MCGOUT);
If you could change the external crystal clock work mode to low power mode and check if it works or not?
Wish it helps.