f326_usb0_main.#1
来自「基于F326单片机的RS232转USB程序」· #1 代码 · 共 35 行
#1
35 行
//-----------------------------------------------------------------------------
// F326_USB_Main.c
//-----------------------------------------------------------------------------
//
// This application will communicate with a PC across the USB interface.
// The device will appear to be a mouse, and will manipulate the cursor
// on screen.
//
#include "c8051F326.h"
#include "F326_USB0_Touch.h"
#include "F326_USB0_InterruptServiceRoutine.h"
#include "F326_USB0_ReportHandler.h"
//-----------------------------------------------------------------------------
// Main Routine
//-----------------------------------------------------------------------------
void main(void)
{
System_Init ();
USB0_Init ();
EA = 1;
while (1)
{
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?