I have a question about clock frequencies:
For fnet:
/* System frequency in Hz. */
#ifndef FNET_CFG_CPU_CLOCK_HZ
#define FNET_CFG_CPU_CLOCK_HZ (96000000)
#endif
on the K60 tower 96000000 is specified, while a 50Mhz clock is provided (if I'm not mistaken), while in my MQX configuration I find:
#define BSP_CLOCK_SRC (50000000UL)
/* reference clock frequency - must be 2-4MHz */
#define BSP_REF_CLOCK_SRC (2000000UL)
Everyhting looks like it's working ok, but I was wondering how this difference in configuration is explained?
Should I change the fnet config to:
#define FNET_CFG_CPU_CLOCK_HZ (50000000UL)
??
Will it be slower? more stable? different somehow? I'm I missing a divider? What goes on here 
Greetings,
Jan