53#include "interrupts.h"
56#define NVIC_EnableIRQ(_x) interrupt_enable(_x + 16)
57#define NVIC_DisableIRQ(_x) interrupt_disable(_x + 16)
58#ifdef MPU_CESR_VLD_MASK
59 #define disable_MPU() ( MPU->CESR &= ~MPU_CESR_VLD_MASK )
60#elif SYSMPU_CESR_VLD_MASK
61 #define disable_MPU() ( SYSMPU->CESR &= ~SYSMPU_CESR_VLD_MASK )
66static inline void usb_hw_init(
void) {
85 SIM->SCGC4 |= SIM_SCGC4_USBOTG_MASK;
#define SIM
Definition MK60D10.h:10539