#ifndef __CONFIG_H
#define __CONFIG_H

#include <stdio.h>
#include <math.h>

#define SYSCLK_FREQUENCY_HZ 84000000
#define SYSTICK_FREQUENCY_HZ 10000
#define MICROSECONDS_PER_SECOND 1000000
#define CYCLE_COUNTER_PER_MICROSECONDS 84
#define PWM_PERIOD 512


#endif