esp32-s2_dfu/demos/device/keyboard/main.c

26 lines
431 B
C
Raw Normal View History

2012-11-27 11:51:59 +01:00
#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;
}