mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
26 lines
431 B
C
26 lines
431 B
C
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include <cr_section_macros.h>
|
||
|
#include <NXP/crp.h>
|
||
|
#include "tusb.h"
|
||
|
|
||
|
// Variable to store CRP value in. Will be placed automatically
|
||
|
// by the linker when "Enable Code Read Protect" selected.
|
||
|
// See crp.h header for more information
|
||
|
__CRP const unsigned int CRP_WORD = CRP_NO_CRP ;
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
SystemInit();
|
||
|
tusb_init();
|
||
|
|
||
|
while (1)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|