In [cdh.h](https://github.com/CMUAbstract/tab/blob/sprint-1/c-examples/cdh-monolithic/support/cdh.h), add the function `void init_clock_hse(void);`. In [cdh.c](https://github.com/CMUAbstract/tab/blob/sprint-1/c-examples/cdh-monolithic/support/cdh.c), add the function implementation. Test the [cdh_monolithic.c](https://github.com/CMUAbstract/tab/blob/sprint-1/c-examples/cdh-monolithic/cdh_monolithic.c) program after replacing `init_clock();` with `init_clock_hse();`.
In cdh.h, add the function
void init_clock_hse(void);.In cdh.c, add the function implementation.
Test the cdh_monolithic.c program after replacing
init_clock();withinit_clock_hse();.