📄 f3xx_usb0_main.lst
字号:
C51 COMPILER V7.50 F3XX_USB0_MAIN 06/22/2006 17:45:45 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE F3XX_USB0_MAIN
OBJECT MODULE PLACED IN F3xx_USB0_Main.OBJ
COMPILER INVOKED BY: C:\Keil\C51\BIN\c51.exe F3xx_USB0_Main.c DB OE LARGE
line level source
1 //-----------------------------------------------------------------------------
2 // F3xx_USB_Main.c
3 //-----------------------------------------------------------------------------
4 // Copyright 2005 Silicon Laboratories, Inc.
5 // http://www.silabs.com
6 //
7 // Program Description:
8 //
9 // This application will communicate with a PC across the USB interface.
10 // The device will appear to be a mouse, and will manipulate the cursor
11 // on screen.
12 //
13 // How To Test: See Readme.txt
14 //
15 //
16 // FID: 3XX000035
17 // Target: C8051F32x/C8051F340
18 // Tool chain: Keil C51 7.50 / Keil EVAL C51
19 // Silicon Laboratories IDE version 2.6
20 // Command Line: See Readme.txt
21 // Project Name: F3xx_MouseExample
22 //
23 //
24 // Release 1.0
25 //
26 // Initial revision.
27 //
28
29 //-----------------------------------------------------------------------------
30 // Includes
31 //-----------------------------------------------------------------------------
32
33 #include "c8051f3xx.h"
*** WARNING C318 IN LINE 30 OF c8051f3xx.h: can't open file 'c8051f326.h'
34 #include "F3xx_USB0_InterruptServiceRoutine.h"
35 #include "F3xx_USB0_Mouse.h"
36
37 //-----------------------------------------------------------------------------
38 // Main Routine
39 //-----------------------------------------------------------------------------
40 void main(void)
41 {
42 1
43 1 System_Init ();
44 1 USB0_Init ();
45 1
46 1 EA = 1;
*** ERROR C202 IN LINE 46 OF F3XX_USB0_MAIN.C: 'EA': undefined identifier
47 1 while (1)
48 1 {
49 2 SendPacket (0);
50 2 }
51 1 }
52
C51 COMPILATION COMPLETE. 1 WARNING(S), 1 ERROR(S)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -