1 |
/******************************************************************** |
1 |
/******************************************************************** |
2 |
FileName: main.c |
2 |
FileName: main.c |
3 |
Dependencies: See INCLUDES section |
3 |
Dependencies: See INCLUDES section |
4 |
Processor: PIC18 or PIC24 USB Microcontrollers |
4 |
Processor: PIC18 or PIC24 USB Microcontrollers |
5 |
Hardware: The code is natively intended to be used on the following |
5 |
Hardware: The code is natively intended to be used on the following |
6 |
hardware platforms: PICDEM FS USB Demo Board, |
6 |
hardware platforms: PICDEM FS USB Demo Board, |
7 |
PIC18F87J50 FS USB Plug-In Module, or |
7 |
PIC18F87J50 FS USB Plug-In Module, or |
8 |
Explorer 16 + PIC24 USB PIM. The firmware may be |
8 |
Explorer 16 + PIC24 USB PIM. The firmware may be |
9 |
modified for use on other USB platforms by editing the |
9 |
modified for use on other USB platforms by editing the |
10 |
HardwareProfile.h file. |
10 |
HardwareProfile.h file. |
11 |
Complier: Microchip C18 (for PIC18) or C30 (for PIC24) |
11 |
Complier: Microchip C18 (for PIC18) or C30 (for PIC24) |
12 |
Company: Microchip Technology, Inc. |
12 |
Company: Microchip Technology, Inc. |
13 |
|
13 |
|
14 |
Software License Agreement: |
14 |
Software License Agreement: |
15 |
|
15 |
|
16 |
The software supplied herewith by Microchip Technology Incorporated |
16 |
The software supplied herewith by Microchip Technology Incorporated |
17 |
(the Company) for its PIC® Microcontroller is intended and |
17 |
(the Company) for its PIC® Microcontroller is intended and |
18 |
supplied to you, the Companys customer, for use solely and |
18 |
supplied to you, the Companys customer, for use solely and |
19 |
exclusively on Microchip PIC Microcontroller products. The |
19 |
exclusively on Microchip PIC Microcontroller products. The |
20 |
software is owned by the Company and/or its supplier, and is |
20 |
software is owned by the Company and/or its supplier, and is |
21 |
protected under applicable copyright laws. All rights are reserved. |
21 |
protected under applicable copyright laws. All rights are reserved. |
22 |
Any use in violation of the foregoing restrictions may subject the |
22 |
Any use in violation of the foregoing restrictions may subject the |
23 |
user to criminal sanctions under applicable laws, as well as to |
23 |
user to criminal sanctions under applicable laws, as well as to |
24 |
civil liability for the breach of the terms and conditions of this |
24 |
civil liability for the breach of the terms and conditions of this |
25 |
license. |
25 |
license. |
26 |
|
26 |
|
27 |
THIS SOFTWARE IS PROVIDED IN AN AS IS CONDITION. NO WARRANTIES, |
27 |
THIS SOFTWARE IS PROVIDED IN AN AS IS CONDITION. NO WARRANTIES, |
28 |
WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED |
28 |
WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED |
29 |
TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
29 |
TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
30 |
PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. THE COMPANY SHALL NOT, |
30 |
PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. THE COMPANY SHALL NOT, |
31 |
IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL OR |
31 |
IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL OR |
32 |
CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. |
32 |
CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. |
33 |
|
33 |
|
34 |
******************************************************************** |
34 |
******************************************************************** |
35 |
File Description: |
35 |
File Description: |
36 |
|
36 |
|
37 |
Change History: |
37 |
Change History: |
38 |
Rev Date Description |
38 |
Rev Date Description |
39 |
1.0 11/19/2004 Initial release |
39 |
1.0 11/19/2004 Initial release |
40 |
2.1 02/26/2007 Updated for simplicity and to use common |
40 |
2.1 02/26/2007 Updated for simplicity and to use common |
41 |
coding style |
41 |
coding style |
42 |
********************************************************************/ |
42 |
********************************************************************/ |
43 |
|
43 |
|
44 |
/** INCLUDES *******************************************************/ |
44 |
/** INCLUDES *******************************************************/ |
45 |
#include "USB/usb.h" |
45 |
#include "USB/usb.h" |
46 |
#include "USB/usb_function_generic.h" |
46 |
#include "USB/usb_function_generic.h" |
47 |
#include "user.h" // Modifiable |
47 |
#include "user.h" // Modifiable |
48 |
#include "HardwareProfile.h" |
48 |
#include "HardwareProfile.h" |
49 |
|
49 |
|
50 |
/** CONFIGURATION **************************************************/ |
50 |
/** CONFIGURATION **************************************************/ |
51 |
#if defined(PICDEM_FS_USB) // Configuration bits for PICDEM FS USB Demo Board (based on PIC18F4550) |
51 |
#if defined(PICDEM_FS_USB) // Configuration bits for PICDEM FS USB Demo Board (based on PIC18F4550) |
52 |
#pragma config PLLDIV = 5 // (20 MHz crystal on PICDEM FS USB board) |
52 |
#pragma config PLLDIV = 5 // (20 MHz crystal on PICDEM FS USB board) |
53 |
#pragma config CPUDIV = OSC1_PLL2 |
53 |
#pragma config CPUDIV = OSC1_PLL2 |
54 |
#pragma config USBDIV = 2 // Clock source from 96MHz PLL/2 |
54 |
#pragma config USBDIV = 2 // Clock source from 96MHz PLL/2 |
55 |
#pragma config FOSC = HSPLL_HS |
55 |
#pragma config FOSC = HSPLL_HS |
56 |
#pragma config FCMEN = OFF |
56 |
#pragma config FCMEN = OFF |
57 |
#pragma config IESO = OFF |
57 |
#pragma config IESO = OFF |
58 |
#pragma config PWRT = OFF |
58 |
#pragma config PWRT = OFF |
59 |
#pragma config BOR = ON |
59 |
#pragma config BOR = ON |
60 |
#pragma config BORV = 3 |
60 |
#pragma config BORV = 3 |
61 |
#pragma config VREGEN = ON //USB Voltage Regulator |
61 |
#pragma config VREGEN = ON //USB Voltage Regulator |
62 |
#pragma config WDT = OFF |
62 |
#pragma config WDT = OFF |
63 |
#pragma config WDTPS = 32768 |
63 |
#pragma config WDTPS = 32768 |
64 |
#pragma config MCLRE = ON |
64 |
#pragma config MCLRE = ON |
65 |
#pragma config LPT1OSC = OFF |
65 |
#pragma config LPT1OSC = OFF |
66 |
#pragma config PBADEN = OFF |
66 |
#pragma config PBADEN = OFF |
67 |
// #pragma config CCP2MX = ON |
67 |
// #pragma config CCP2MX = ON |
68 |
#pragma config STVREN = ON |
68 |
#pragma config STVREN = ON |
69 |
#pragma config LVP = OFF |
69 |
#pragma config LVP = OFF |
70 |
// #pragma config ICPRT = OFF // Dedicated In-Circuit Debug/Programming |
70 |
// #pragma config ICPRT = OFF // Dedicated In-Circuit Debug/Programming |
71 |
#pragma config XINST = OFF // Extended Instruction Set |
71 |
#pragma config XINST = OFF // Extended Instruction Set |
72 |
#pragma config CP0 = OFF |
72 |
#pragma config CP0 = OFF |
73 |
#pragma config CP1 = OFF |
73 |
#pragma config CP1 = OFF |
74 |
// #pragma config CP2 = OFF |
74 |
// #pragma config CP2 = OFF |
75 |
// #pragma config CP3 = OFF |
75 |
// #pragma config CP3 = OFF |
76 |
#pragma config CPB = OFF |
76 |
#pragma config CPB = OFF |
77 |
// #pragma config CPD = OFF |
77 |
// #pragma config CPD = OFF |
78 |
#pragma config WRT0 = OFF |
78 |
#pragma config WRT0 = OFF |
79 |
#pragma config WRT1 = OFF |
79 |
#pragma config WRT1 = OFF |
80 |
// #pragma config WRT2 = OFF |
80 |
// #pragma config WRT2 = OFF |
81 |
// #pragma config WRT3 = OFF |
81 |
// #pragma config WRT3 = OFF |
82 |
#pragma config WRTB = OFF // Boot Block Write Protection |
82 |
#pragma config WRTB = OFF // Boot Block Write Protection |
83 |
#pragma config WRTC = OFF |
83 |
#pragma config WRTC = OFF |
84 |
// #pragma config WRTD = OFF |
84 |
// #pragma config WRTD = OFF |
85 |
#pragma config EBTR0 = OFF |
85 |
#pragma config EBTR0 = OFF |
86 |
#pragma config EBTR1 = OFF |
86 |
#pragma config EBTR1 = OFF |
87 |
// #pragma config EBTR2 = OFF |
87 |
// #pragma config EBTR2 = OFF |
88 |
// #pragma config EBTR3 = OFF |
88 |
// #pragma config EBTR3 = OFF |
89 |
#pragma config EBTRB = OFF |
89 |
#pragma config EBTRB = OFF |
90 |
|
90 |
|
91 |
#elif defined(PIC18F87J50_PIM) // Configuration bits for PIC18F87J50 FS USB Plug-In Module board |
91 |
#elif defined(PIC18F87J50_PIM) // Configuration bits for PIC18F87J50 FS USB Plug-In Module board |
92 |
#pragma config XINST = OFF // Extended instruction set |
92 |
#pragma config XINST = OFF // Extended instruction set |
93 |
#pragma config STVREN = ON // Stack overflow reset |
93 |
#pragma config STVREN = ON // Stack overflow reset |
94 |
#pragma config PLLDIV = 3 // (12 MHz crystal used on this board) |
94 |
#pragma config PLLDIV = 3 // (12 MHz crystal used on this board) |
95 |
#pragma config WDTEN = OFF // Watch Dog Timer (WDT) |
95 |
#pragma config WDTEN = OFF // Watch Dog Timer (WDT) |
96 |
#pragma config CP0 = OFF // Code protect |
96 |
#pragma config CP0 = OFF // Code protect |
97 |
#pragma config CPUDIV = OSC1 // OSC1 = divide by 1 mode |
97 |
#pragma config CPUDIV = OSC1 // OSC1 = divide by 1 mode |
98 |
#pragma config IESO = OFF // Internal External (clock) Switchover |
98 |
#pragma config IESO = OFF // Internal External (clock) Switchover |
99 |
#pragma config FCMEN = OFF // Fail Safe Clock Monitor |
99 |
#pragma config FCMEN = OFF // Fail Safe Clock Monitor |
100 |
#pragma config FOSC = HSPLL // Firmware must also set OSCTUNE<PLLEN> to start PLL! |
100 |
#pragma config FOSC = HSPLL // Firmware must also set OSCTUNE<PLLEN> to start PLL! |
101 |
#pragma config WDTPS = 32768 |
101 |
#pragma config WDTPS = 32768 |
102 |
// #pragma config WAIT = OFF // Commented choices are |
102 |
// #pragma config WAIT = OFF // Commented choices are |
103 |
// #pragma config BW = 16 // only available on the |
103 |
// #pragma config BW = 16 // only available on the |
104 |
// #pragma config MODE = MM // 80 pin devices in the |
104 |
// #pragma config MODE = MM // 80 pin devices in the |
105 |
// #pragma config EASHFT = OFF // family. |
105 |
// #pragma config EASHFT = OFF // family. |
106 |
#pragma config MSSPMSK = MSK5 |
106 |
#pragma config MSSPMSK = MSK5 |
107 |
// #pragma config PMPMX = DEFAULT |
107 |
// #pragma config PMPMX = DEFAULT |
108 |
// #pragma config ECCPMX = DEFAULT |
108 |
// #pragma config ECCPMX = DEFAULT |
109 |
#pragma config CCP2MX = DEFAULT |
109 |
#pragma config CCP2MX = DEFAULT |
110 |
|
110 |
|
111 |
#elif defined(PIC18F46J50_PIM) || defined(PIC18F_STARTER_KIT_1) |
111 |
#elif defined(PIC18F46J50_PIM) || defined(PIC18F_STARTER_KIT_1) |
112 |
#pragma config WDTEN = OFF //WDT disabled (enabled by SWDTEN bit) |
112 |
#pragma config WDTEN = OFF //WDT disabled (enabled by SWDTEN bit) |
113 |
#pragma config PLLDIV = 3 //Divide by 3 (12 MHz oscillator input) |
113 |
#pragma config PLLDIV = 3 //Divide by 3 (12 MHz oscillator input) |
114 |
#pragma config STVREN = ON //stack overflow/underflow reset enabled |
114 |
#pragma config STVREN = ON //stack overflow/underflow reset enabled |
115 |
#pragma config XINST = OFF //Extended instruction set disabled |
115 |
#pragma config XINST = OFF //Extended instruction set disabled |
116 |
#pragma config CPUDIV = OSC1 //No CPU system clock divide |
116 |
#pragma config CPUDIV = OSC1 //No CPU system clock divide |
117 |
#pragma config CP0 = OFF //Program memory is not code-protected |
117 |
#pragma config CP0 = OFF //Program memory is not code-protected |
118 |
#pragma config OSC = HSPLL //HS oscillator, PLL enabled, HSPLL used by USB |
118 |
#pragma config OSC = HSPLL //HS oscillator, PLL enabled, HSPLL used by USB |
119 |
#pragma config T1DIG = ON //Sec Osc clock source may be selected |
119 |
#pragma config T1DIG = ON //Sec Osc clock source may be selected |
120 |
#pragma config LPT1OSC = OFF //high power Timer1 mode |
120 |
#pragma config LPT1OSC = OFF //high power Timer1 mode |
121 |
#pragma config FCMEN = OFF //Fail-Safe Clock Monitor disabled |
121 |
#pragma config FCMEN = OFF //Fail-Safe Clock Monitor disabled |
122 |
#pragma config IESO = OFF //Two-Speed Start-up disabled |
122 |
#pragma config IESO = OFF //Two-Speed Start-up disabled |
123 |
#pragma config WDTPS = 32768 //1:32768 |
123 |
#pragma config WDTPS = 32768 //1:32768 |
124 |
#pragma config DSWDTOSC = INTOSCREF //DSWDT uses INTOSC/INTRC as clock |
124 |
#pragma config DSWDTOSC = INTOSCREF //DSWDT uses INTOSC/INTRC as clock |
125 |
#pragma config RTCOSC = T1OSCREF //RTCC uses T1OSC/T1CKI as clock |
125 |
#pragma config RTCOSC = T1OSCREF //RTCC uses T1OSC/T1CKI as clock |
126 |
#pragma config DSBOREN = OFF //Zero-Power BOR disabled in Deep Sleep |
126 |
#pragma config DSBOREN = OFF //Zero-Power BOR disabled in Deep Sleep |
127 |
#pragma config DSWDTEN = OFF //Disabled |
127 |
#pragma config DSWDTEN = OFF //Disabled |
128 |
#pragma config DSWDTPS = 8192 //1:8,192 (8.5 seconds) |
128 |
#pragma config DSWDTPS = 8192 //1:8,192 (8.5 seconds) |
129 |
#pragma config IOL1WAY = OFF //IOLOCK bit can be set and cleared |
129 |
#pragma config IOL1WAY = OFF //IOLOCK bit can be set and cleared |
130 |
#pragma config MSSP7B_EN = MSK7 //7 Bit address masking |
130 |
#pragma config MSSP7B_EN = MSK7 //7 Bit address masking |
131 |
#pragma config WPFP = PAGE_1 //Write Protect Program Flash Page 0 |
131 |
#pragma config WPFP = PAGE_1 //Write Protect Program Flash Page 0 |
132 |
#pragma config WPEND = PAGE_0 //Start protection at page 0 |
132 |
#pragma config WPEND = PAGE_0 //Start protection at page 0 |
133 |
#pragma config WPCFG = OFF //Write/Erase last page protect Disabled |
133 |
#pragma config WPCFG = OFF //Write/Erase last page protect Disabled |
134 |
#pragma config WPDIS = OFF //WPFP[5:0], WPEND, and WPCFG bits ignored |
134 |
#pragma config WPDIS = OFF //WPFP[5:0], WPEND, and WPCFG bits ignored |
135 |
|
135 |
|
136 |
#elif defined(LOW_PIN_COUNT_USB_DEVELOPMENT_KIT) |
136 |
#elif defined(LOW_PIN_COUNT_USB_DEVELOPMENT_KIT) |
137 |
// PIC18F14K50 |
137 |
// PIC18F14K50 |
138 |
#pragma config CPUDIV = NOCLKDIV |
138 |
#pragma config CPUDIV = NOCLKDIV |
139 |
#pragma config USBDIV = OFF |
139 |
#pragma config USBDIV = OFF |
140 |
#pragma config FOSC = HS |
140 |
#pragma config FOSC = HS |
141 |
#pragma config PLLEN = ON |
141 |
#pragma config PLLEN = ON |
142 |
#pragma config FCMEN = OFF |
142 |
#pragma config FCMEN = OFF |
143 |
#pragma config IESO = OFF |
143 |
#pragma config IESO = OFF |
144 |
#pragma config PWRTEN = OFF |
144 |
#pragma config PWRTEN = OFF |
145 |
#pragma config BOREN = OFF |
145 |
#pragma config BOREN = OFF |
146 |
#pragma config BORV = 30 |
146 |
#pragma config BORV = 30 |
147 |
#pragma config WDTEN = OFF |
147 |
#pragma config WDTEN = OFF |
148 |
#pragma config WDTPS = 32768 |
148 |
#pragma config WDTPS = 32768 |
149 |
#pragma config MCLRE = OFF |
149 |
#pragma config MCLRE = OFF |
150 |
#pragma config HFOFST = OFF |
150 |
#pragma config HFOFST = OFF |
151 |
#pragma config STVREN = ON |
151 |
#pragma config STVREN = ON |
152 |
#pragma config LVP = OFF |
152 |
#pragma config LVP = OFF |
153 |
#pragma config XINST = OFF |
153 |
#pragma config XINST = OFF |
154 |
#pragma config BBSIZ = OFF |
154 |
#pragma config BBSIZ = OFF |
155 |
#pragma config CP0 = OFF |
155 |
#pragma config CP0 = OFF |
156 |
#pragma config CP1 = OFF |
156 |
#pragma config CP1 = OFF |
157 |
#pragma config CPB = OFF |
157 |
#pragma config CPB = OFF |
158 |
#pragma config WRT0 = OFF |
158 |
#pragma config WRT0 = OFF |
159 |
#pragma config WRT1 = OFF |
159 |
#pragma config WRT1 = OFF |
160 |
#pragma config WRTB = OFF |
160 |
#pragma config WRTB = OFF |
161 |
#pragma config WRTC = OFF |
161 |
#pragma config WRTC = OFF |
162 |
#pragma config EBTR0 = OFF |
162 |
#pragma config EBTR0 = OFF |
163 |
#pragma config EBTR1 = OFF |
163 |
#pragma config EBTR1 = OFF |
164 |
#pragma config EBTRB = OFF |
164 |
#pragma config EBTRB = OFF |
165 |
|
165 |
|
166 |
#elif defined(EXPLORER_16) |
166 |
#elif defined(EXPLORER_16) |
167 |
#ifdef __PIC24FJ256GB110__ //Defined by MPLAB when using 24FJ256GB110 device |
167 |
#ifdef __PIC24FJ256GB110__ //Defined by MPLAB when using 24FJ256GB110 device |
168 |
_CONFIG1( JTAGEN_OFF & GCP_OFF & GWRP_OFF & COE_OFF & FWDTEN_OFF & ICS_PGx2) |
168 |
_CONFIG1( JTAGEN_OFF & GCP_OFF & GWRP_OFF & COE_OFF & FWDTEN_OFF & ICS_PGx2) |
169 |
_CONFIG2( 0xF7FF & IESO_OFF & FCKSM_CSDCMD & OSCIOFNC_ON & POSCMOD_HS & FNOSC_PRIPLL & PLLDIV_DIV2 & IOL1WAY_ON) |
169 |
_CONFIG2( 0xF7FF & IESO_OFF & FCKSM_CSDCMD & OSCIOFNC_ON & POSCMOD_HS & FNOSC_PRIPLL & PLLDIV_DIV2 & IOL1WAY_ON) |
170 |
#elif defined(__PIC24FJ64GB004__) |
170 |
#elif defined(__PIC24FJ64GB004__) |
171 |
_CONFIG1(WDTPS_PS1 & FWPSA_PR32 & WINDIS_OFF & FWDTEN_OFF & ICS_PGx1 & GWRP_OFF & GCP_OFF & JTAGEN_OFF) |
171 |
_CONFIG1(WDTPS_PS1 & FWPSA_PR32 & WINDIS_OFF & FWDTEN_OFF & ICS_PGx1 & GWRP_OFF & GCP_OFF & JTAGEN_OFF) |
172 |
_CONFIG2(POSCMOD_HS & I2C1SEL_PRI & IOL1WAY_OFF & OSCIOFNC_ON & FCKSM_CSDCMD & FNOSC_PRIPLL & PLL96MHZ_ON & PLLDIV_DIV2 & IESO_ON) |
172 |
_CONFIG2(POSCMOD_HS & I2C1SEL_PRI & IOL1WAY_OFF & OSCIOFNC_ON & FCKSM_CSDCMD & FNOSC_PRIPLL & PLL96MHZ_ON & PLLDIV_DIV2 & IESO_ON) |
173 |
_CONFIG3(WPFP_WPFP0 & SOSCSEL_SOSC & WUTSEL_LEG & WPDIS_WPDIS & WPCFG_WPCFGDIS & WPEND_WPENDMEM) |
173 |
_CONFIG3(WPFP_WPFP0 & SOSCSEL_SOSC & WUTSEL_LEG & WPDIS_WPDIS & WPCFG_WPCFGDIS & WPEND_WPENDMEM) |
174 |
_CONFIG4(DSWDTPS_DSWDTPS3 & DSWDTOSC_LPRC & RTCOSC_SOSC & DSBOREN_OFF & DSWDTEN_OFF) |
174 |
_CONFIG4(DSWDTPS_DSWDTPS3 & DSWDTOSC_LPRC & RTCOSC_SOSC & DSBOREN_OFF & DSWDTEN_OFF) |
175 |
#elif defined(__32MX460F512L__) || defined(__32MX795F512L__) |
175 |
#elif defined(__32MX460F512L__) || defined(__32MX795F512L__) |
176 |
#pragma config UPLLEN = ON // USB PLL Enabled |
176 |
#pragma config UPLLEN = ON // USB PLL Enabled |
177 |
#pragma config FPLLMUL = MUL_15 // PLL Multiplier |
177 |
#pragma config FPLLMUL = MUL_15 // PLL Multiplier |
178 |
#pragma config UPLLIDIV = DIV_2 // USB PLL Input Divider |
178 |
#pragma config UPLLIDIV = DIV_2 // USB PLL Input Divider |
179 |
#pragma config FPLLIDIV = DIV_2 // PLL Input Divider |
179 |
#pragma config FPLLIDIV = DIV_2 // PLL Input Divider |
180 |
#pragma config FPLLODIV = DIV_1 // PLL Output Divider |
180 |
#pragma config FPLLODIV = DIV_1 // PLL Output Divider |
181 |
#pragma config FPBDIV = DIV_1 // Peripheral Clock divisor |
181 |
#pragma config FPBDIV = DIV_1 // Peripheral Clock divisor |
182 |
#pragma config FWDTEN = OFF // Watchdog Timer |
182 |
#pragma config FWDTEN = OFF // Watchdog Timer |
183 |
#pragma config WDTPS = PS1 // Watchdog Timer Postscale |
183 |
#pragma config WDTPS = PS1 // Watchdog Timer Postscale |
184 |
#pragma config FCKSM = CSDCMD // Clock Switching & Fail Safe Clock Monitor |
184 |
#pragma config FCKSM = CSDCMD // Clock Switching & Fail Safe Clock Monitor |
185 |
#pragma config OSCIOFNC = OFF // CLKO Enable |
185 |
#pragma config OSCIOFNC = OFF // CLKO Enable |
186 |
#pragma config POSCMOD = HS // Primary Oscillator |
186 |
#pragma config POSCMOD = HS // Primary Oscillator |
187 |
#pragma config IESO = OFF // Internal/External Switch-over |
187 |
#pragma config IESO = OFF // Internal/External Switch-over |
188 |
#pragma config FSOSCEN = OFF // Secondary Oscillator Enable (KLO was off) |
188 |
#pragma config FSOSCEN = OFF // Secondary Oscillator Enable (KLO was off) |
189 |
#pragma config FNOSC = PRIPLL // Oscillator Selection |
189 |
#pragma config FNOSC = PRIPLL // Oscillator Selection |
190 |
#pragma config CP = OFF // Code Protect |
190 |
#pragma config CP = OFF // Code Protect |
191 |
#pragma config BWP = OFF // Boot Flash Write Protect |
191 |
#pragma config BWP = OFF // Boot Flash Write Protect |
192 |
#pragma config PWP = OFF // Program Flash Write Protect |
192 |
#pragma config PWP = OFF // Program Flash Write Protect |
193 |
#pragma config ICESEL = ICS_PGx2 // ICE/ICD Comm Channel Select |
193 |
#pragma config ICESEL = ICS_PGx2 // ICE/ICD Comm Channel Select |
194 |
#pragma config DEBUG = ON // Background Debugger Enable |
194 |
#pragma config DEBUG = ON // Background Debugger Enable |
195 |
#else |
195 |
#else |
196 |
#error No hardware board defined, see "HardwareProfile.h" and __FILE__ |
196 |
#error No hardware board defined, see "HardwareProfile.h" and __FILE__ |
197 |
#endif |
197 |
#endif |
198 |
#elif defined(PIC24F_STARTER_KIT) |
198 |
#elif defined(PIC24F_STARTER_KIT) |
199 |
_CONFIG1( JTAGEN_OFF & GCP_OFF & GWRP_OFF & COE_OFF & FWDTEN_OFF & ICS_PGx2) |
199 |
_CONFIG1( JTAGEN_OFF & GCP_OFF & GWRP_OFF & COE_OFF & FWDTEN_OFF & ICS_PGx2) |
200 |
_CONFIG2( 0xF7FF & IESO_OFF & FCKSM_CSDCMD & OSCIOFNC_ON & POSCMOD_HS & FNOSC_PRIPLL & PLLDIV_DIV3 & IOL1WAY_ON) |
200 |
_CONFIG2( 0xF7FF & IESO_OFF & FCKSM_CSDCMD & OSCIOFNC_ON & POSCMOD_HS & FNOSC_PRIPLL & PLLDIV_DIV3 & IOL1WAY_ON) |
201 |
#elif defined(PIC24FJ256DA210_DEV_BOARD) |
201 |
#elif defined(PIC24FJ256DA210_DEV_BOARD) |
202 |
//_CONFIG1(FWDTEN_OFF & ICS_PGx2 & COE_OFF & GWRP_OFF & GCP_OFF & JTAGEN_OFF) |
202 |
//_CONFIG1(FWDTEN_OFF & ICS_PGx2 & COE_OFF & GWRP_OFF & GCP_OFF & JTAGEN_OFF) |
203 |
//_CONFIG2(POSCMOD_HS & IOL1WAY_ON & OSCIOFNC_ON & FCKSM_CSDCMD & FNOSC_PRIPLL & PLL96MHZ_ON & PLLDIV_DIV2 & IESO_OFF) |
203 |
//_CONFIG2(POSCMOD_HS & IOL1WAY_ON & OSCIOFNC_ON & FCKSM_CSDCMD & FNOSC_PRIPLL & PLL96MHZ_ON & PLLDIV_DIV2 & IESO_OFF) |
204 |
#elif defined(PIC32_USB_STARTER_KIT) |
204 |
#elif defined(PIC32_USB_STARTER_KIT) |
205 |
#pragma config UPLLEN = ON // USB PLL Enabled |
205 |
#pragma config UPLLEN = ON // USB PLL Enabled |
206 |
#pragma config FPLLMUL = MUL_15 // PLL Multiplier |
206 |
#pragma config FPLLMUL = MUL_15 // PLL Multiplier |
207 |
#pragma config UPLLIDIV = DIV_2 // USB PLL Input Divider |
207 |
#pragma config UPLLIDIV = DIV_2 // USB PLL Input Divider |
208 |
#pragma config FPLLIDIV = DIV_2 // PLL Input Divider |
208 |
#pragma config FPLLIDIV = DIV_2 // PLL Input Divider |
209 |
#pragma config FPLLODIV = DIV_1 // PLL Output Divider |
209 |
#pragma config FPLLODIV = DIV_1 // PLL Output Divider |
210 |
#pragma config FPBDIV = DIV_1 // Peripheral Clock divisor |
210 |
#pragma config FPBDIV = DIV_1 // Peripheral Clock divisor |
211 |
#pragma config FWDTEN = OFF // Watchdog Timer |
211 |
#pragma config FWDTEN = OFF // Watchdog Timer |
212 |
#pragma config WDTPS = PS1 // Watchdog Timer Postscale |
212 |
#pragma config WDTPS = PS1 // Watchdog Timer Postscale |
213 |
#pragma config FCKSM = CSDCMD // Clock Switching & Fail Safe Clock Monitor |
213 |
#pragma config FCKSM = CSDCMD // Clock Switching & Fail Safe Clock Monitor |
214 |
#pragma config OSCIOFNC = OFF // CLKO Enable |
214 |
#pragma config OSCIOFNC = OFF // CLKO Enable |
215 |
#pragma config POSCMOD = HS // Primary Oscillator |
215 |
#pragma config POSCMOD = HS // Primary Oscillator |
216 |
#pragma config IESO = OFF // Internal/External Switch-over |
216 |
#pragma config IESO = OFF // Internal/External Switch-over |
217 |
#pragma config FSOSCEN = OFF // Secondary Oscillator Enable (KLO was off) |
217 |
#pragma config FSOSCEN = OFF // Secondary Oscillator Enable (KLO was off) |
218 |
#pragma config FNOSC = PRIPLL // Oscillator Selection |
218 |
#pragma config FNOSC = PRIPLL // Oscillator Selection |
219 |
#pragma config CP = OFF // Code Protect |
219 |
#pragma config CP = OFF // Code Protect |
220 |
#pragma config BWP = OFF // Boot Flash Write Protect |
220 |
#pragma config BWP = OFF // Boot Flash Write Protect |
221 |
#pragma config PWP = OFF // Program Flash Write Protect |
221 |
#pragma config PWP = OFF // Program Flash Write Protect |
222 |
#pragma config ICESEL = ICS_PGx2 // ICE/ICD Comm Channel Select |
222 |
#pragma config ICESEL = ICS_PGx2 // ICE/ICD Comm Channel Select |
223 |
#pragma config DEBUG = ON // Background Debugger Enable |
223 |
#pragma config DEBUG = ON // Background Debugger Enable |
- |
|
224 |
|
224 |
#elif defined(UBW) |
225 |
#elif defined(UBW) |
- |
|
226 |
#pragma config PLLDIV = 5 // (20 MHz input) |
- |
|
227 |
#pragma config CPUDIV = OSC1_PLL2 |
- |
|
228 |
#pragma config USBDIV = 2 // Clock source from 96MHz PLL/2 |
- |
|
229 |
#pragma config FOSC = HSPLL_HS |
- |
|
230 |
#pragma config FCMEN = OFF |
- |
|
231 |
#pragma config IESO = OFF |
- |
|
232 |
#pragma config PWRT = OFF |
- |
|
233 |
#pragma config BOR = ON |
- |
|
234 |
#pragma config BORV = 3 |
- |
|
235 |
#pragma config VREGEN = ON |
- |
|
236 |
#pragma config WDT = OFF |
- |
|
237 |
#pragma config WDTPS = 32768 |
- |
|
238 |
#pragma config MCLRE = ON |
- |
|
239 |
#pragma config LPT1OSC = OFF |
- |
|
240 |
#pragma config PBADEN = OFF |
- |
|
241 |
#pragma config CCP2MX = ON |
- |
|
242 |
#pragma config STVREN = ON |
- |
|
243 |
#pragma config LVP = OFF |
- |
|
244 |
//#pragma config ICPRT = OFF // Dedicated In-Circuit Debug/Programming |
- |
|
245 |
#pragma config XINST = OFF // Extended Instruction Set |
- |
|
246 |
#pragma config CP0 = OFF |
- |
|
247 |
#pragma config CP1 = OFF |
- |
|
248 |
#pragma config CP2 = OFF |
- |
|
249 |
//#pragma config CP3 = OFF |
- |
|
250 |
#pragma config CPB = OFF |
- |
|
251 |
#pragma config CPD = OFF |
- |
|
252 |
#pragma config WRT0 = OFF |
- |
|
253 |
#pragma config WRT1 = OFF |
- |
|
254 |
#pragma config WRT2 = OFF |
- |
|
255 |
//#pragma config WRT3 = OFF |
- |
|
256 |
#pragma config WRTB = ON // Boot Block Write Protection |
- |
|
257 |
#pragma config WRTC = OFF |
- |
|
258 |
#pragma config WRTD = OFF |
- |
|
259 |
#pragma config EBTR0 = OFF |
- |
|
260 |
#pragma config EBTR1 = OFF |
- |
|
261 |
#pragma config EBTR2 = OFF |
- |
|
262 |
//#pragma config EBTR3 = OFF |
- |
|
263 |
#pragma config EBTRB = OFF |
- |
|
264 |
|
225 |
#elif defined(UBW32) |
265 |
#elif defined(UBW32) |
226 |
#else |
266 |
#else |
227 |
#error No hardware board defined, see "HardwareProfile.h" and __FILE__ |
267 |
#error No hardware board defined, see "HardwareProfile.h" and __FILE__ |
228 |
#endif |
268 |
#endif |
229 |
|
269 |
|
230 |
|
270 |
|
231 |
|
271 |
|
232 |
/** VARIABLES ******************************************************/ |
272 |
/** VARIABLES ******************************************************/ |
233 |
#pragma udata |
273 |
#pragma udata |
234 |
|
274 |
|
235 |
/** PRIVATE PROTOTYPES *********************************************/ |
275 |
/** PRIVATE PROTOTYPES *********************************************/ |
236 |
static void InitializeSystem(void); |
276 |
static void InitializeSystem(void); |
237 |
void USBDeviceTasks(void); |
277 |
void USBDeviceTasks(void); |
238 |
void YourHighPriorityISRCode(void); |
278 |
void YourHighPriorityISRCode(void); |
239 |
void YourLowPriorityISRCode(void); |
279 |
void YourLowPriorityISRCode(void); |
240 |
|
280 |
|
241 |
|
281 |
|
242 |
/** VECTOR REMAPPING ***********************************************/ |
282 |
/** VECTOR REMAPPING ***********************************************/ |
243 |
#if defined(__18CXX) |
283 |
#if defined(__18CXX) |
244 |
//On PIC18 devices, addresses 0x00, 0x08, and 0x18 are used for |
284 |
//On PIC18 devices, addresses 0x00, 0x08, and 0x18 are used for |
245 |
//the reset, high priority interrupt, and low priority interrupt |
285 |
//the reset, high priority interrupt, and low priority interrupt |
246 |
//vectors. However, the current Microchip USB bootloader |
286 |
//vectors. However, the current Microchip USB bootloader |
247 |
//examples are intended to occupy addresses 0x00-0x7FF or |
287 |
//examples are intended to occupy addresses 0x00-0x7FF or |
248 |
//0x00-0xFFF depending on which bootloader is used. Therefore, |
288 |
//0x00-0xFFF depending on which bootloader is used. Therefore, |
249 |
//the bootloader code remaps these vectors to new locations |
289 |
//the bootloader code remaps these vectors to new locations |
250 |
//as indicated below. This remapping is only necessary if you |
290 |
//as indicated below. This remapping is only necessary if you |
251 |
//wish to program the hex file generated from this project with |
291 |
//wish to program the hex file generated from this project with |
252 |
//the USB bootloader. If no bootloader is used, edit the |
292 |
//the USB bootloader. If no bootloader is used, edit the |
253 |
//usb_config.h file and comment out the following defines: |
293 |
//usb_config.h file and comment out the following defines: |
254 |
//#define PROGRAMMABLE_WITH_USB_HID_BOOTLOADER |
294 |
//#define PROGRAMMABLE_WITH_USB_HID_BOOTLOADER |
255 |
//#define PROGRAMMABLE_WITH_USB_LEGACY_CUSTOM_CLASS_BOOTLOADER |
295 |
//#define PROGRAMMABLE_WITH_USB_LEGACY_CUSTOM_CLASS_BOOTLOADER |
256 |
|
296 |
|
257 |
#if defined(PROGRAMMABLE_WITH_USB_HID_BOOTLOADER) |
297 |
#if defined(PROGRAMMABLE_WITH_USB_HID_BOOTLOADER) |
258 |
#define REMAPPED_RESET_VECTOR_ADDRESS 0x1000 |
298 |
#define REMAPPED_RESET_VECTOR_ADDRESS 0x1000 |
259 |
#define REMAPPED_HIGH_INTERRUPT_VECTOR_ADDRESS 0x1008 |
299 |
#define REMAPPED_HIGH_INTERRUPT_VECTOR_ADDRESS 0x1008 |
260 |
#define REMAPPED_LOW_INTERRUPT_VECTOR_ADDRESS 0x1018 |
300 |
#define REMAPPED_LOW_INTERRUPT_VECTOR_ADDRESS 0x1018 |
261 |
#elif defined(PROGRAMMABLE_WITH_USB_MCHPUSB_BOOTLOADER) |
301 |
#elif defined(PROGRAMMABLE_WITH_USB_MCHPUSB_BOOTLOADER) |
262 |
#define REMAPPED_RESET_VECTOR_ADDRESS 0x800 |
302 |
#define REMAPPED_RESET_VECTOR_ADDRESS 0x800 |
263 |
#define REMAPPED_HIGH_INTERRUPT_VECTOR_ADDRESS 0x808 |
303 |
#define REMAPPED_HIGH_INTERRUPT_VECTOR_ADDRESS 0x808 |
264 |
#define REMAPPED_LOW_INTERRUPT_VECTOR_ADDRESS 0x818 |
304 |
#define REMAPPED_LOW_INTERRUPT_VECTOR_ADDRESS 0x818 |
265 |
#else |
305 |
#else |
266 |
#define REMAPPED_RESET_VECTOR_ADDRESS 0x00 |
306 |
#define REMAPPED_RESET_VECTOR_ADDRESS 0x00 |
267 |
#define REMAPPED_HIGH_INTERRUPT_VECTOR_ADDRESS 0x08 |
307 |
#define REMAPPED_HIGH_INTERRUPT_VECTOR_ADDRESS 0x08 |
268 |
#define REMAPPED_LOW_INTERRUPT_VECTOR_ADDRESS 0x18 |
308 |
#define REMAPPED_LOW_INTERRUPT_VECTOR_ADDRESS 0x18 |
269 |
#endif |
309 |
#endif |
270 |
|
310 |
|
271 |
#if defined(PROGRAMMABLE_WITH_USB_HID_BOOTLOADER)||defined(PROGRAMMABLE_WITH_USB_MCHPUSB_BOOTLOADER) |
311 |
#if defined(PROGRAMMABLE_WITH_USB_HID_BOOTLOADER)||defined(PROGRAMMABLE_WITH_USB_MCHPUSB_BOOTLOADER) |
272 |
extern void _startup (void); // See c018i.c in your C18 compiler dir |
312 |
extern void _startup (void); // See c018i.c in your C18 compiler dir |
273 |
#pragma code REMAPPED_RESET_VECTOR = REMAPPED_RESET_VECTOR_ADDRESS |
313 |
#pragma code REMAPPED_RESET_VECTOR = REMAPPED_RESET_VECTOR_ADDRESS |
274 |
void _reset (void) |
314 |
void _reset (void) |
275 |
{ |
315 |
{ |
276 |
_asm goto _startup _endasm |
316 |
_asm goto _startup _endasm |
277 |
} |
317 |
} |
278 |
#endif |
318 |
#endif |
279 |
#pragma code REMAPPED_HIGH_INTERRUPT_VECTOR = REMAPPED_HIGH_INTERRUPT_VECTOR_ADDRESS |
319 |
#pragma code REMAPPED_HIGH_INTERRUPT_VECTOR = REMAPPED_HIGH_INTERRUPT_VECTOR_ADDRESS |
280 |
void Remapped_High_ISR (void) |
320 |
void Remapped_High_ISR (void) |
281 |
{ |
321 |
{ |
282 |
_asm goto YourHighPriorityISRCode _endasm |
322 |
_asm goto YourHighPriorityISRCode _endasm |
283 |
} |
323 |
} |
284 |
#pragma code REMAPPED_LOW_INTERRUPT_VECTOR = REMAPPED_LOW_INTERRUPT_VECTOR_ADDRESS |
324 |
#pragma code REMAPPED_LOW_INTERRUPT_VECTOR = REMAPPED_LOW_INTERRUPT_VECTOR_ADDRESS |
285 |
void Remapped_Low_ISR (void) |
325 |
void Remapped_Low_ISR (void) |
286 |
{ |
326 |
{ |
287 |
_asm goto YourLowPriorityISRCode _endasm |
327 |
_asm goto YourLowPriorityISRCode _endasm |
288 |
} |
328 |
} |
289 |
|
329 |
|
290 |
#if defined(PROGRAMMABLE_WITH_USB_HID_BOOTLOADER)||defined(PROGRAMMABLE_WITH_USB_MCHPUSB_BOOTLOADER) |
330 |
#if defined(PROGRAMMABLE_WITH_USB_HID_BOOTLOADER)||defined(PROGRAMMABLE_WITH_USB_MCHPUSB_BOOTLOADER) |
291 |
//Note: If this project is built while one of the bootloaders has |
331 |
//Note: If this project is built while one of the bootloaders has |
292 |
//been defined, but then the output hex file is not programmed with |
332 |
//been defined, but then the output hex file is not programmed with |
293 |
//the bootloader, addresses 0x08 and 0x18 would end up programmed with 0xFFFF. |
333 |
//the bootloader, addresses 0x08 and 0x18 would end up programmed with 0xFFFF. |
294 |
//As a result, if an actual interrupt was enabled and occured, the PC would jump |
334 |
//As a result, if an actual interrupt was enabled and occured, the PC would jump |
295 |
//to 0x08 (or 0x18) and would begin executing "0xFFFF" (unprogrammed space). This |
335 |
//to 0x08 (or 0x18) and would begin executing "0xFFFF" (unprogrammed space). This |
296 |
//executes as nop instructions, but the PC would eventually reach the REMAPPED_RESET_VECTOR_ADDRESS |
336 |
//executes as nop instructions, but the PC would eventually reach the REMAPPED_RESET_VECTOR_ADDRESS |
297 |
//(0x1000 or 0x800, depending upon bootloader), and would execute the "goto _startup". This |
337 |
//(0x1000 or 0x800, depending upon bootloader), and would execute the "goto _startup". This |
298 |
//would effective reset the application. |
338 |
//would effective reset the application. |
299 |
|
339 |
|
300 |
//To fix this situation, we should always deliberately place a |
340 |
//To fix this situation, we should always deliberately place a |
301 |
//"goto REMAPPED_HIGH_INTERRUPT_VECTOR_ADDRESS" at address 0x08, and a |
341 |
//"goto REMAPPED_HIGH_INTERRUPT_VECTOR_ADDRESS" at address 0x08, and a |
302 |
//"goto REMAPPED_LOW_INTERRUPT_VECTOR_ADDRESS" at address 0x18. When the output |
342 |
//"goto REMAPPED_LOW_INTERRUPT_VECTOR_ADDRESS" at address 0x18. When the output |
303 |
//hex file of this project is programmed with the bootloader, these sections do not |
343 |
//hex file of this project is programmed with the bootloader, these sections do not |
304 |
//get bootloaded (as they overlap the bootloader space). If the output hex file is not |
344 |
//get bootloaded (as they overlap the bootloader space). If the output hex file is not |
305 |
//programmed using the bootloader, then the below goto instructions do get programmed, |
345 |
//programmed using the bootloader, then the below goto instructions do get programmed, |
306 |
//and the hex file still works like normal. The below section is only required to fix this |
346 |
//and the hex file still works like normal. The below section is only required to fix this |
307 |
//scenario. |
347 |
//scenario. |
308 |
#pragma code HIGH_INTERRUPT_VECTOR = 0x08 |
348 |
#pragma code HIGH_INTERRUPT_VECTOR = 0x08 |
309 |
void High_ISR (void) |
349 |
void High_ISR (void) |
310 |
{ |
350 |
{ |
311 |
_asm goto REMAPPED_HIGH_INTERRUPT_VECTOR_ADDRESS _endasm |
351 |
_asm goto REMAPPED_HIGH_INTERRUPT_VECTOR_ADDRESS _endasm |
312 |
} |
352 |
} |
313 |
#pragma code LOW_INTERRUPT_VECTOR = 0x18 |
353 |
#pragma code LOW_INTERRUPT_VECTOR = 0x18 |
314 |
void Low_ISR (void) |
354 |
void Low_ISR (void) |
315 |
{ |
355 |
{ |
316 |
_asm goto REMAPPED_LOW_INTERRUPT_VECTOR_ADDRESS _endasm |
356 |
_asm goto REMAPPED_LOW_INTERRUPT_VECTOR_ADDRESS _endasm |
317 |
} |
357 |
} |
318 |
#endif //end of "#if defined(PROGRAMMABLE_WITH_USB_HID_BOOTLOADER)||defined(PROGRAMMABLE_WITH_USB_LEGACY_CUSTOM_CLASS_BOOTLOADER)" |
358 |
#endif //end of "#if defined(PROGRAMMABLE_WITH_USB_HID_BOOTLOADER)||defined(PROGRAMMABLE_WITH_USB_LEGACY_CUSTOM_CLASS_BOOTLOADER)" |
319 |
|
359 |
|
320 |
#pragma code |
360 |
#pragma code |
321 |
|
361 |
|
322 |
|
362 |
|
323 |
//These are your actual interrupt handling routines. |
363 |
//These are your actual interrupt handling routines. |
324 |
#pragma interrupt YourHighPriorityISRCode |
364 |
#pragma interrupt YourHighPriorityISRCode |
325 |
void YourHighPriorityISRCode() |
365 |
void YourHighPriorityISRCode() |
326 |
{ |
366 |
{ |
327 |
//Check which interrupt flag caused the interrupt. |
367 |
//Check which interrupt flag caused the interrupt. |
328 |
//Service the interrupt |
368 |
//Service the interrupt |
329 |
//Clear the interrupt flag |
369 |
//Clear the interrupt flag |
330 |
//Etc. |
370 |
//Etc. |
331 |
#if defined(USB_INTERRUPT) |
371 |
#if defined(USB_INTERRUPT) |
332 |
USBDeviceTasks(); |
372 |
USBDeviceTasks(); |
333 |
#endif |
373 |
#endif |
334 |
|
374 |
|
335 |
} //This return will be a "retfie fast", since this is in a #pragma interrupt section |
375 |
} //This return will be a "retfie fast", since this is in a #pragma interrupt section |
336 |
#pragma interruptlow YourLowPriorityISRCode |
376 |
#pragma interruptlow YourLowPriorityISRCode |
337 |
void YourLowPriorityISRCode() |
377 |
void YourLowPriorityISRCode() |
338 |
{ |
378 |
{ |
339 |
//Check which interrupt flag caused the interrupt. |
379 |
//Check which interrupt flag caused the interrupt. |
340 |
//Service the interrupt |
380 |
//Service the interrupt |
341 |
//Clear the interrupt flag |
381 |
//Clear the interrupt flag |
342 |
//Etc. |
382 |
//Etc. |
343 |
|
383 |
|
344 |
} //This return will be a "retfie", since this is in a #pragma interruptlow section |
384 |
} //This return will be a "retfie", since this is in a #pragma interruptlow section |
345 |
|
385 |
|
346 |
#elif defined(__C30__) |
386 |
#elif defined(__C30__) |
347 |
#if defined(PROGRAMMABLE_WITH_USB_HID_BOOTLOADER) |
387 |
#if defined(PROGRAMMABLE_WITH_USB_HID_BOOTLOADER) |
348 |
/* |
388 |
/* |
349 |
* ISR JUMP TABLE |
389 |
* ISR JUMP TABLE |
350 |
* |
390 |
* |
351 |
* It is necessary to define jump table as a function because C30 will |
391 |
* It is necessary to define jump table as a function because C30 will |
352 |
* not store 24-bit wide values in program memory as variables. |
392 |
* not store 24-bit wide values in program memory as variables. |
353 |
* |
393 |
* |
354 |
* This function should be stored at an address where the goto instructions |
394 |
* This function should be stored at an address where the goto instructions |
355 |
* line up with the remapped vectors from the bootloader's linker script. |
395 |
* line up with the remapped vectors from the bootloader's linker script. |
356 |
* |
396 |
* |
357 |
* For more information about how to remap the interrupt vectors, |
397 |
* For more information about how to remap the interrupt vectors, |
358 |
* please refer to AN1157. An example is provided below for the T2 |
398 |
* please refer to AN1157. An example is provided below for the T2 |
359 |
* interrupt with a bootloader ending at address 0x1400 |
399 |
* interrupt with a bootloader ending at address 0x1400 |
360 |
*/ |
400 |
*/ |
361 |
// void __attribute__ ((address(0x1404))) ISRTable(){ |
401 |
// void __attribute__ ((address(0x1404))) ISRTable(){ |
362 |
// |
402 |
// |
363 |
// asm("reset"); //reset instruction to prevent runaway code |
403 |
// asm("reset"); //reset instruction to prevent runaway code |
364 |
// asm("goto %0"::"i"(&_T2Interrupt)); //T2Interrupt's address |
404 |
// asm("goto %0"::"i"(&_T2Interrupt)); //T2Interrupt's address |
365 |
// } |
405 |
// } |
366 |
#endif |
406 |
#endif |
367 |
#endif |
407 |
#endif |
368 |
|
408 |
|
369 |
|
409 |
|
370 |
|
410 |
|
371 |
|
411 |
|
372 |
/** DECLARATIONS ***************************************************/ |
412 |
/** DECLARATIONS ***************************************************/ |
373 |
#pragma code |
413 |
#pragma code |
374 |
|
414 |
|
375 |
/****************************************************************************** |
415 |
/****************************************************************************** |
376 |
* Function: void main(void) |
416 |
* Function: void main(void) |
377 |
* |
417 |
* |
378 |
* PreCondition: None |
418 |
* PreCondition: None |
379 |
* |
419 |
* |
380 |
* Input: None |
420 |
* Input: None |
381 |
* |
421 |
* |
382 |
* Output: None |
422 |
* Output: None |
383 |
* |
423 |
* |
384 |
* Side Effects: None |
424 |
* Side Effects: None |
385 |
* |
425 |
* |
386 |
* Overview: Main program entry point. |
426 |
* Overview: Main program entry point. |
387 |
* |
427 |
* |
388 |
* Note: None |
428 |
* Note: None |
389 |
*******************************************************************/ |
429 |
*******************************************************************/ |
390 |
|
430 |
|
391 |
#if defined(__18CXX) |
431 |
#if defined(__18CXX) |
392 |
void main(void) |
432 |
void main(void) |
393 |
#else |
433 |
#else |
394 |
int main(void) |
434 |
int main(void) |
395 |
#endif |
435 |
#endif |
396 |
{ |
436 |
{ |
397 |
InitializeSystem(); |
437 |
InitializeSystem(); |
398 |
|
438 |
|
399 |
#if defined(USB_INTERRUPT) |
439 |
#if defined(USB_INTERRUPT) |
400 |
USBDeviceAttach(); |
440 |
USBDeviceAttach(); |
401 |
#endif |
441 |
#endif |
402 |
|
442 |
|
403 |
while(1) |
443 |
while(1) |
404 |
{ |
444 |
{ |
405 |
#if defined(USB_POLLING) |
445 |
#if defined(USB_POLLING) |
406 |
// Check bus status and service USB interrupts. |
446 |
// Check bus status and service USB interrupts. |
407 |
USBDeviceTasks(); // Interrupt or polling method. If using polling, must call |
447 |
USBDeviceTasks(); // Interrupt or polling method. If using polling, must call |
408 |
// this function periodically. This function will take care |
448 |
// this function periodically. This function will take care |
409 |
// of processing and responding to SETUP transactions |
449 |
// of processing and responding to SETUP transactions |
410 |
// (such as during the enumeration process when you first |
450 |
// (such as during the enumeration process when you first |
411 |
// plug in). USB hosts require that USB devices should accept |
451 |
// plug in). USB hosts require that USB devices should accept |
412 |
// and process SETUP packets in a timely fashion. Therefore, |
452 |
// and process SETUP packets in a timely fashion. Therefore, |
413 |
// when using polling, this function should be called |
453 |
// when using polling, this function should be called |
414 |
// frequently (such as once about every 100 microseconds) at any |
454 |
// frequently (such as once about every 100 microseconds) at any |
415 |
// time that a SETUP packet might reasonably be expected to |
455 |
// time that a SETUP packet might reasonably be expected to |
416 |
// be sent by the host to your device. In most cases, the |
456 |
// be sent by the host to your device. In most cases, the |
417 |
// USBDeviceTasks() function does not take very long to |
457 |
// USBDeviceTasks() function does not take very long to |
418 |
// execute (~50 instruction cycles) before it returns. |
458 |
// execute (~50 instruction cycles) before it returns. |
419 |
#endif |
459 |
#endif |
420 |
|
460 |
|
421 |
|
461 |
|
422 |
// Application-specific tasks. |
462 |
// Application-specific tasks. |
423 |
// Application related code may be added here, or in the ProcessIO() function. |
463 |
// Application related code may be added here, or in the ProcessIO() function. |
424 |
ProcessIO(); |
464 |
ProcessIO(); |
425 |
}//end while |
465 |
}//end while |
426 |
}//end main |
466 |
}//end main |
427 |
|
467 |
|
428 |
|
468 |
|
429 |
/******************************************************************** |
469 |
/******************************************************************** |
430 |
* Function: static void InitializeSystem(void) |
470 |
* Function: static void InitializeSystem(void) |
431 |
* |
471 |
* |
432 |
* PreCondition: None |
472 |
* PreCondition: None |
433 |
* |
473 |
* |
434 |
* Input: None |
474 |
* Input: None |
435 |
* |
475 |
* |
436 |
* Output: None |
476 |
* Output: None |
437 |
* |
477 |
* |
438 |
* Side Effects: None |
478 |
* Side Effects: None |
439 |
* |
479 |
* |
440 |
* Overview: InitializeSystem is a centralize initialization |
480 |
* Overview: InitializeSystem is a centralize initialization |
441 |
* routine. All required USB initialization routines |
481 |
* routine. All required USB initialization routines |
442 |
* are called from here. |
482 |
* are called from here. |
443 |
* |
483 |
* |
444 |
* User application initialization routine should |
484 |
* User application initialization routine should |
445 |
* also be called from here. |
485 |
* also be called from here. |
446 |
* |
486 |
* |
447 |
* Note: None |
487 |
* Note: None |
448 |
*******************************************************************/ |
488 |
*******************************************************************/ |
449 |
static void InitializeSystem(void) |
489 |
static void InitializeSystem(void) |
450 |
{ |
490 |
{ |
451 |
#if (defined(__18CXX) & !defined(PIC18F87J50_PIM)) |
491 |
#if (defined(__18CXX) & !defined(PIC18F87J50_PIM)) |
452 |
ADCON1 |= 0x0F; // Default all pins to digital |
492 |
ADCON1 |= 0x0F; // Default all pins to digital |
453 |
#elif defined(__C30__) |
493 |
#elif defined(__C30__) |
454 |
#if defined(PIC24FJ256DA210_DEV_BOARD) |
494 |
#if defined(PIC24FJ256DA210_DEV_BOARD) |
455 |
ANSA = 0x0000; |
495 |
ANSA = 0x0000; |
456 |
ANSB = 0x0000; |
496 |
ANSB = 0x0000; |
457 |
ANSC = 0x0000; |
497 |
ANSC = 0x0000; |
458 |
ANSD = 0x0000; |
498 |
ANSD = 0x0000; |
459 |
ANSE = 0x0000; |
499 |
ANSE = 0x0000; |
460 |
ANSF = 0x0000; |
500 |
ANSF = 0x0000; |
461 |
ANSG = 0x0000; |
501 |
ANSG = 0x0000; |
462 |
#else |
502 |
#else |
463 |
AD1PCFGL = 0xFFFF; |
503 |
AD1PCFGL = 0xFFFF; |
464 |
#endif |
504 |
#endif |
465 |
#elif defined(__C32__) |
505 |
#elif defined(__C32__) |
466 |
AD1PCFG = 0xFFFF; |
506 |
AD1PCFG = 0xFFFF; |
467 |
#endif |
507 |
#endif |
468 |
|
508 |
|
469 |
#if defined(PIC18F87J50_PIM) || defined(PIC18F46J50_PIM) || defined(PIC18F_STARTER_KIT_1) |
509 |
#if defined(PIC18F87J50_PIM) || defined(PIC18F46J50_PIM) || defined(PIC18F_STARTER_KIT_1) |
470 |
//On the PIC18F87J50 Family of USB microcontrollers, the PLL will not power up and be enabled |
510 |
//On the PIC18F87J50 Family of USB microcontrollers, the PLL will not power up and be enabled |
471 |
//by default, even if a PLL enabled oscillator configuration is selected (such as HS+PLL). |
511 |
//by default, even if a PLL enabled oscillator configuration is selected (such as HS+PLL). |
472 |
//This allows the device to power up at a lower initial operating frequency, which can be |
512 |
//This allows the device to power up at a lower initial operating frequency, which can be |
473 |
//advantageous when powered from a source which is not gauranteed to be adequate for 48MHz |
513 |
//advantageous when powered from a source which is not gauranteed to be adequate for 48MHz |
474 |
//operation. On these devices, user firmware needs to manually set the OSCTUNE<PLLEN> bit to |
514 |
//operation. On these devices, user firmware needs to manually set the OSCTUNE<PLLEN> bit to |
475 |
//power up the PLL. |
515 |
//power up the PLL. |
476 |
{ |
516 |
{ |
477 |
unsigned int pll_startup_counter = 600; |
517 |
unsigned int pll_startup_counter = 600; |
478 |
OSCTUNEbits.PLLEN = 1; //Enable the PLL and wait 2+ms until the PLL locks before enabling USB module |
518 |
OSCTUNEbits.PLLEN = 1; //Enable the PLL and wait 2+ms until the PLL locks before enabling USB module |
479 |
while(pll_startup_counter--); |
519 |
while(pll_startup_counter--); |
480 |
} |
520 |
} |
481 |
//Device switches over automatically to PLL output after PLL is locked and ready. |
521 |
//Device switches over automatically to PLL output after PLL is locked and ready. |
482 |
#endif |
522 |
#endif |
483 |
|
523 |
|
484 |
#if defined(PIC18F87J50_PIM) |
524 |
#if defined(PIC18F87J50_PIM) |
485 |
//Configure all I/O pins to use digital input buffers. The PIC18F87J50 Family devices |
525 |
//Configure all I/O pins to use digital input buffers. The PIC18F87J50 Family devices |
486 |
//use the ANCONx registers to control this, which is different from other devices which |
526 |
//use the ANCONx registers to control this, which is different from other devices which |
487 |
//use the ADCON1 register for this purpose. |
527 |
//use the ADCON1 register for this purpose. |
488 |
WDTCONbits.ADSHR = 1; // Select alternate SFR location to access ANCONx registers |
528 |
WDTCONbits.ADSHR = 1; // Select alternate SFR location to access ANCONx registers |
489 |
ANCON0 = 0xFF; // Default all pins to digital |
529 |
ANCON0 = 0xFF; // Default all pins to digital |
490 |
ANCON1 = 0xFF; // Default all pins to digital |
530 |
ANCON1 = 0xFF; // Default all pins to digital |
491 |
WDTCONbits.ADSHR = 0; // Select normal SFR locations |
531 |
WDTCONbits.ADSHR = 0; // Select normal SFR locations |
492 |
#endif |
532 |
#endif |
493 |
|
533 |
|
494 |
#if defined(PIC18F46J50_PIM) || defined(PIC18F_STARTER_KIT_1) |
534 |
#if defined(PIC18F46J50_PIM) || defined(PIC18F_STARTER_KIT_1) |
495 |
//Configure all I/O pins to use digital input buffers. |
535 |
//Configure all I/O pins to use digital input buffers. |
496 |
ANCON0 = 0x7F; // all pins to digital except AN7 |
536 |
ANCON0 = 0x7F; // all pins to digital except AN7 |
497 |
ANCON1 = 0xBF; // Default all pins to digital. Bandgap on. |
537 |
ANCON1 = 0xBF; // Default all pins to digital. Bandgap on. |
498 |
#endif |
538 |
#endif |
499 |
|
539 |
|
500 |
#if defined(PIC24FJ64GB004_PIM) || defined(PIC24FJ256DA210_DEV_BOARD) |
540 |
#if defined(PIC24FJ64GB004_PIM) || defined(PIC24FJ256DA210_DEV_BOARD) |
501 |
//On the PIC24FJ64GB004 Family of USB microcontrollers, the PLL will not power up and be enabled |
541 |
//On the PIC24FJ64GB004 Family of USB microcontrollers, the PLL will not power up and be enabled |
502 |
//by default, even if a PLL enabled oscillator configuration is selected (such as HS+PLL). |
542 |
//by default, even if a PLL enabled oscillator configuration is selected (such as HS+PLL). |
503 |
//This allows the device to power up at a lower initial operating frequency, which can be |
543 |
//This allows the device to power up at a lower initial operating frequency, which can be |
504 |
//advantageous when powered from a source which is not gauranteed to be adequate for 32MHz |
544 |
//advantageous when powered from a source which is not gauranteed to be adequate for 32MHz |
505 |
//operation. On these devices, user firmware needs to manually set the CLKDIV<PLLEN> bit to |
545 |
//operation. On these devices, user firmware needs to manually set the CLKDIV<PLLEN> bit to |
506 |
//power up the PLL. |
546 |
//power up the PLL. |
507 |
{ |
547 |
{ |
508 |
unsigned int pll_startup_counter = 600; |
548 |
unsigned int pll_startup_counter = 600; |
509 |
CLKDIVbits.PLLEN = 1; |
549 |
CLKDIVbits.PLLEN = 1; |
510 |
while(pll_startup_counter--); |
550 |
while(pll_startup_counter--); |
511 |
} |
551 |
} |
512 |
|
552 |
|
513 |
//Device switches over automatically to PLL output after PLL is locked and ready. |
553 |
//Device switches over automatically to PLL output after PLL is locked and ready. |
514 |
#endif |
554 |
#endif |
515 |
|
555 |
|
516 |
|
556 |
|
517 |
// The USB specifications require that USB peripheral devices must never source |
557 |
// The USB specifications require that USB peripheral devices must never source |
518 |
// current onto the Vbus pin. Additionally, USB peripherals should not source |
558 |
// current onto the Vbus pin. Additionally, USB peripherals should not source |
519 |
// current on D+ or D- when the host/hub is not actively powering the Vbus line. |
559 |
// current on D+ or D- when the host/hub is not actively powering the Vbus line. |
520 |
// When designing a self powered (as opposed to bus powered) USB peripheral |
560 |
// When designing a self powered (as opposed to bus powered) USB peripheral |
521 |
// device, the firmware should make sure not to turn on the USB module and D+ |
561 |
// device, the firmware should make sure not to turn on the USB module and D+ |
522 |
// or D- pull up resistor unless Vbus is actively powered. Therefore, the |
562 |
// or D- pull up resistor unless Vbus is actively powered. Therefore, the |
523 |
// firmware needs some means to detect when Vbus is being powered by the host. |
563 |
// firmware needs some means to detect when Vbus is being powered by the host. |
524 |
// A 5V tolerant I/O pin can be connected to Vbus (through a resistor), and |
564 |
// A 5V tolerant I/O pin can be connected to Vbus (through a resistor), and |
525 |
// can be used to detect when Vbus is high (host actively powering), or low |
565 |
// can be used to detect when Vbus is high (host actively powering), or low |
526 |
// (host is shut down or otherwise not supplying power). The USB firmware |
566 |
// (host is shut down or otherwise not supplying power). The USB firmware |
527 |
// can then periodically poll this I/O pin to know when it is okay to turn on |
567 |
// can then periodically poll this I/O pin to know when it is okay to turn on |
528 |
// the USB module/D+/D- pull up resistor. When designing a purely bus powered |
568 |
// the USB module/D+/D- pull up resistor. When designing a purely bus powered |
529 |
// peripheral device, it is not possible to source current on D+ or D- when the |
569 |
// peripheral device, it is not possible to source current on D+ or D- when the |
530 |
// host is not actively providing power on Vbus. Therefore, implementing this |
570 |
// host is not actively providing power on Vbus. Therefore, implementing this |
531 |
// bus sense feature is optional. This firmware can be made to use this bus |
571 |
// bus sense feature is optional. This firmware can be made to use this bus |
532 |
// sense feature by making sure "USE_USB_BUS_SENSE_IO" has been defined in the |
572 |
// sense feature by making sure "USE_USB_BUS_SENSE_IO" has been defined in the |
533 |
// HardwareProfile.h file. |
573 |
// HardwareProfile.h file. |
534 |
#if defined(USE_USB_BUS_SENSE_IO) |
574 |
#if defined(USE_USB_BUS_SENSE_IO) |
535 |
tris_usb_bus_sense = INPUT_PIN; // See HardwareProfile.h |
575 |
tris_usb_bus_sense = INPUT_PIN; // See HardwareProfile.h |
536 |
#endif |
576 |
#endif |
537 |
|
577 |
|
538 |
// If the host PC sends a GetStatus (device) request, the firmware must respond |
578 |
// If the host PC sends a GetStatus (device) request, the firmware must respond |
539 |
// and let the host know if the USB peripheral device is currently bus powered |
579 |
// and let the host know if the USB peripheral device is currently bus powered |
540 |
// or self powered. See chapter 9 in the official USB specifications for details |
580 |
// or self powered. See chapter 9 in the official USB specifications for details |
541 |
// regarding this request. If the peripheral device is capable of being both |
581 |
// regarding this request. If the peripheral device is capable of being both |
542 |
// self and bus powered, it should not return a hard coded value for this request. |
582 |
// self and bus powered, it should not return a hard coded value for this request. |
543 |
// Instead, firmware should check if it is currently self or bus powered, and |
583 |
// Instead, firmware should check if it is currently self or bus powered, and |
544 |
// respond accordingly. If the hardware has been configured like demonstrated |
584 |
// respond accordingly. If the hardware has been configured like demonstrated |
545 |
// on the PICDEM FS USB Demo Board, an I/O pin can be polled to determine the |
585 |
// on the PICDEM FS USB Demo Board, an I/O pin can be polled to determine the |
546 |
// currently selected power source. On the PICDEM FS USB Demo Board, "RA2" |
586 |
// currently selected power source. On the PICDEM FS USB Demo Board, "RA2" |
547 |
// is used for this purpose. If using this feature, make sure "USE_SELF_POWER_SENSE_IO" |
587 |
// is used for this purpose. If using this feature, make sure "USE_SELF_POWER_SENSE_IO" |
548 |
// has been defined in HardwareProfile - (platform).h, and that an appropriate I/O pin |
588 |
// has been defined in HardwareProfile - (platform).h, and that an appropriate I/O pin |
549 |
// has been mapped to it. |
589 |
// has been mapped to it. |
550 |
#if defined(USE_SELF_POWER_SENSE_IO) |
590 |
#if defined(USE_SELF_POWER_SENSE_IO) |
551 |
tris_self_power = INPUT_PIN; // See HardwareProfile |
591 |
tris_self_power = INPUT_PIN; // See HardwareProfile |
552 |
#endif |
592 |
#endif |
553 |
|
593 |
|
554 |
UserInit(); |
594 |
UserInit(); |
555 |
|
595 |
|
556 |
USBDeviceInit(); //usb_device.c. Initializes USB module SFRs and firmware |
596 |
USBDeviceInit(); //usb_device.c. Initializes USB module SFRs and firmware |
557 |
//variables to known states. |
597 |
//variables to known states. |
558 |
}//end InitializeSystem |
598 |
}//end InitializeSystem |
559 |
|
599 |
|
560 |
// ****************************************************************************************************** |
600 |
// ****************************************************************************************************** |
561 |
// ************** USB Callback Functions **************************************************************** |
601 |
// ************** USB Callback Functions **************************************************************** |
562 |
// ****************************************************************************************************** |
602 |
// ****************************************************************************************************** |
563 |
// The USB firmware stack will call the callback functions USBCBxxx() in response to certain USB related |
603 |
// The USB firmware stack will call the callback functions USBCBxxx() in response to certain USB related |
564 |
// events. For example, if the host PC is powering down, it will stop sending out Start of Frame (SOF) |
604 |
// events. For example, if the host PC is powering down, it will stop sending out Start of Frame (SOF) |
565 |
// packets to your device. In response to this, all USB devices are supposed to decrease their power |
605 |
// packets to your device. In response to this, all USB devices are supposed to decrease their power |
566 |
// consumption from the USB Vbus to <2.5mA each. The USB module detects this condition (which according |
606 |
// consumption from the USB Vbus to <2.5mA each. The USB module detects this condition (which according |
567 |
// to the USB specifications is 3+ms of no bus activity/SOF packets) and then calls the USBCBSuspend() |
607 |
// to the USB specifications is 3+ms of no bus activity/SOF packets) and then calls the USBCBSuspend() |
568 |
// function. You should modify these callback functions to take appropriate actions for each of these |
608 |
// function. You should modify these callback functions to take appropriate actions for each of these |
569 |
// conditions. For example, in the USBCBSuspend(), you may wish to add code that will decrease power |
609 |
// conditions. For example, in the USBCBSuspend(), you may wish to add code that will decrease power |
570 |
// consumption from Vbus to <2.5mA (such as by clock switching, turning off LEDs, putting the |
610 |
// consumption from Vbus to <2.5mA (such as by clock switching, turning off LEDs, putting the |
571 |
// microcontroller to sleep, etc.). Then, in the USBCBWakeFromSuspend() function, you may then wish to |
611 |
// microcontroller to sleep, etc.). Then, in the USBCBWakeFromSuspend() function, you may then wish to |
572 |
// add code that undoes the power saving things done in the USBCBSuspend() function. |
612 |
// add code that undoes the power saving things done in the USBCBSuspend() function. |
573 |
|
613 |
|
574 |
// The USBCBSendResume() function is special, in that the USB stack will not automatically call this |
614 |
// The USBCBSendResume() function is special, in that the USB stack will not automatically call this |
575 |
// function. This function is meant to be called from the application firmware instead. See the |
615 |
// function. This function is meant to be called from the application firmware instead. See the |
576 |
// additional comments near the function. |
616 |
// additional comments near the function. |
577 |
|
617 |
|
578 |
/****************************************************************************** |
618 |
/****************************************************************************** |
579 |
* Function: void USBCBSuspend(void) |
619 |
* Function: void USBCBSuspend(void) |
580 |
* |
620 |
* |
581 |
* PreCondition: None |
621 |
* PreCondition: None |
582 |
* |
622 |
* |
583 |
* Input: None |
623 |
* Input: None |
584 |
* |
624 |
* |
585 |
* Output: None |
625 |
* Output: None |
586 |
* |
626 |
* |
587 |
* Side Effects: None |
627 |
* Side Effects: None |
588 |
* |
628 |
* |
589 |
* Overview: Call back that is invoked when a USB suspend is detected |
629 |
* Overview: Call back that is invoked when a USB suspend is detected |
590 |
* |
630 |
* |
591 |
* Note: None |
631 |
* Note: None |
592 |
*****************************************************************************/ |
632 |
*****************************************************************************/ |
593 |
void USBCBSuspend(void) |
633 |
void USBCBSuspend(void) |
594 |
{ |
634 |
{ |
595 |
//Example power saving code. Insert appropriate code here for the desired |
635 |
//Example power saving code. Insert appropriate code here for the desired |
596 |
//application behavior. If the microcontroller will be put to sleep, a |
636 |
//application behavior. If the microcontroller will be put to sleep, a |
597 |
//process similar to that shown below may be used: |
637 |
//process similar to that shown below may be used: |
598 |
|
638 |
|
599 |
//ConfigureIOPinsForLowPower(); |
639 |
//ConfigureIOPinsForLowPower(); |
600 |
//SaveStateOfAllInterruptEnableBits(); |
640 |
//SaveStateOfAllInterruptEnableBits(); |
601 |
//DisableAllInterruptEnableBits(); |
641 |
//DisableAllInterruptEnableBits(); |
602 |
//EnableOnlyTheInterruptsWhichWillBeUsedToWakeTheMicro(); //should enable at least USBActivityIF as a wake source |
642 |
//EnableOnlyTheInterruptsWhichWillBeUsedToWakeTheMicro(); //should enable at least USBActivityIF as a wake source |
603 |
//Sleep(); |
643 |
//Sleep(); |
604 |
//RestoreStateOfAllPreviouslySavedInterruptEnableBits(); //Preferrably, this should be done in the USBCBWakeFromSuspend() function instead. |
644 |
//RestoreStateOfAllPreviouslySavedInterruptEnableBits(); //Preferrably, this should be done in the USBCBWakeFromSuspend() function instead. |
605 |
//RestoreIOPinsToNormal(); //Preferrably, this should be done in the USBCBWakeFromSuspend() function instead. |
645 |
//RestoreIOPinsToNormal(); //Preferrably, this should be done in the USBCBWakeFromSuspend() function instead. |
606 |
|
646 |
|
607 |
//IMPORTANT NOTE: Do not clear the USBActivityIF (ACTVIF) bit here. This bit is |
647 |
//IMPORTANT NOTE: Do not clear the USBActivityIF (ACTVIF) bit here. This bit is |
608 |
//cleared inside the usb_device.c file. Clearing USBActivityIF here will cause |
648 |
//cleared inside the usb_device.c file. Clearing USBActivityIF here will cause |
609 |
//things to not work as intended. |
649 |
//things to not work as intended. |
610 |
|
650 |
|
611 |
|
651 |
|
612 |
#if defined(__C30__) |
652 |
#if defined(__C30__) |
613 |
#if 0 |
653 |
#if 0 |
614 |
U1EIR = 0xFFFF; |
654 |
U1EIR = 0xFFFF; |
615 |
U1IR = 0xFFFF; |
655 |
U1IR = 0xFFFF; |
616 |
U1OTGIR = 0xFFFF; |
656 |
U1OTGIR = 0xFFFF; |
617 |
IFS5bits.USB1IF = 0; |
657 |
IFS5bits.USB1IF = 0; |
618 |
IEC5bits.USB1IE = 1; |
658 |
IEC5bits.USB1IE = 1; |
619 |
U1OTGIEbits.ACTVIE = 1; |
659 |
U1OTGIEbits.ACTVIE = 1; |
620 |
U1OTGIRbits.ACTVIF = 1; |
660 |
U1OTGIRbits.ACTVIF = 1; |
621 |
Sleep(); |
661 |
Sleep(); |
622 |
#endif |
662 |
#endif |
623 |
#endif |
663 |
#endif |
624 |
} |
664 |
} |
625 |
|
665 |
|
626 |
|
666 |
|
627 |
/****************************************************************************** |
667 |
/****************************************************************************** |
628 |
* Function: void _USB1Interrupt(void) |
668 |
* Function: void _USB1Interrupt(void) |
629 |
* |
669 |
* |
630 |
* PreCondition: None |
670 |
* PreCondition: None |
631 |
* |
671 |
* |
632 |
* Input: None |
672 |
* Input: None |
633 |
* |
673 |
* |
634 |
* Output: None |
674 |
* Output: None |
635 |
* |
675 |
* |
636 |
* Side Effects: None |
676 |
* Side Effects: None |
637 |
* |
677 |
* |
638 |
* Overview: This function is called when the USB interrupt bit is set |
678 |
* Overview: This function is called when the USB interrupt bit is set |
639 |
* In this example the interrupt is only used when the device |
679 |
* In this example the interrupt is only used when the device |
640 |
* goes to sleep when it receives a USB suspend command |
680 |
* goes to sleep when it receives a USB suspend command |
641 |
* |
681 |
* |
642 |
* Note: None |
682 |
* Note: None |
643 |
*****************************************************************************/ |
683 |
*****************************************************************************/ |
644 |
#if 0 |
684 |
#if 0 |
645 |
void __attribute__ ((interrupt)) _USB1Interrupt(void) |
685 |
void __attribute__ ((interrupt)) _USB1Interrupt(void) |
646 |
{ |
686 |
{ |
647 |
#if !defined(self_powered) |
687 |
#if !defined(self_powered) |
648 |
if(U1OTGIRbits.ACTVIF) |
688 |
if(U1OTGIRbits.ACTVIF) |
649 |
{ |
689 |
{ |
650 |
IEC5bits.USB1IE = 0; |
690 |
IEC5bits.USB1IE = 0; |
651 |
U1OTGIEbits.ACTVIE = 0; |
691 |
U1OTGIEbits.ACTVIE = 0; |
652 |
IFS5bits.USB1IF = 0; |
692 |
IFS5bits.USB1IF = 0; |
653 |
|
693 |
|
654 |
//USBClearInterruptFlag(USBActivityIFReg,USBActivityIFBitNum); |
694 |
//USBClearInterruptFlag(USBActivityIFReg,USBActivityIFBitNum); |
655 |
USBClearInterruptFlag(USBIdleIFReg,USBIdleIFBitNum); |
695 |
USBClearInterruptFlag(USBIdleIFReg,USBIdleIFBitNum); |
656 |
//USBSuspendControl = 0; |
696 |
//USBSuspendControl = 0; |
657 |
} |
697 |
} |
658 |
#endif |
698 |
#endif |
659 |
} |
699 |
} |
660 |
#endif |
700 |
#endif |
661 |
|
701 |
|
662 |
/****************************************************************************** |
702 |
/****************************************************************************** |
663 |
* Function: void USBCBWakeFromSuspend(void) |
703 |
* Function: void USBCBWakeFromSuspend(void) |
664 |
* |
704 |
* |
665 |
* PreCondition: None |
705 |
* PreCondition: None |
666 |
* |
706 |
* |
667 |
* Input: None |
707 |
* Input: None |
668 |
* |
708 |
* |
669 |
* Output: None |
709 |
* Output: None |
670 |
* |
710 |
* |
671 |
* Side Effects: None |
711 |
* Side Effects: None |
672 |
* |
712 |
* |
673 |
* Overview: The host may put USB peripheral devices in low power |
713 |
* Overview: The host may put USB peripheral devices in low power |
674 |
* suspend mode (by "sending" 3+ms of idle). Once in suspend |
714 |
* suspend mode (by "sending" 3+ms of idle). Once in suspend |
675 |
* mode, the host may wake the device back up by sending non- |
715 |
* mode, the host may wake the device back up by sending non- |
676 |
* idle state signalling. |
716 |
* idle state signalling. |
677 |
* |
717 |
* |
678 |
* This call back is invoked when a wakeup from USB suspend |
718 |
* This call back is invoked when a wakeup from USB suspend |
679 |
* is detected. |
719 |
* is detected. |
680 |
* |
720 |
* |
681 |
* Note: None |
721 |
* Note: None |
682 |
*****************************************************************************/ |
722 |
*****************************************************************************/ |
683 |
void USBCBWakeFromSuspend(void) |
723 |
void USBCBWakeFromSuspend(void) |
684 |
{ |
724 |
{ |
685 |
// If clock switching or other power savings measures were taken when |
725 |
// If clock switching or other power savings measures were taken when |
686 |
// executing the USBCBSuspend() function, now would be a good time to |
726 |
// executing the USBCBSuspend() function, now would be a good time to |
687 |
// switch back to normal full power run mode conditions. The host allows |
727 |
// switch back to normal full power run mode conditions. The host allows |
688 |
// a few milliseconds of wakeup time, after which the device must be |
728 |
// a few milliseconds of wakeup time, after which the device must be |
689 |
// fully back to normal, and capable of receiving and processing USB |
729 |
// fully back to normal, and capable of receiving and processing USB |
690 |
// packets. In order to do this, the USB module must receive proper |
730 |
// packets. In order to do this, the USB module must receive proper |
691 |
// clocking (IE: 48MHz clock must be available to SIE for full speed USB |
731 |
// clocking (IE: 48MHz clock must be available to SIE for full speed USB |
692 |
// operation). |
732 |
// operation). |
693 |
} |
733 |
} |
694 |
|
734 |
|
695 |
/******************************************************************** |
735 |
/******************************************************************** |
696 |
* Function: void USBCB_SOF_Handler(void) |
736 |
* Function: void USBCB_SOF_Handler(void) |
697 |
* |
737 |
* |
698 |
* PreCondition: None |
738 |
* PreCondition: None |
699 |
* |
739 |
* |
700 |
* Input: None |
740 |
* Input: None |
701 |
* |
741 |
* |
702 |
* Output: None |
742 |
* Output: None |
703 |
* |
743 |
* |
704 |
* Side Effects: None |
744 |
* Side Effects: None |
705 |
* |
745 |
* |
706 |
* Overview: The USB host sends out a SOF packet to full-speed |
746 |
* Overview: The USB host sends out a SOF packet to full-speed |
707 |
* devices every 1 ms. This interrupt may be useful |
747 |
* devices every 1 ms. This interrupt may be useful |
708 |
* for isochronous pipes. End designers should |
748 |
* for isochronous pipes. End designers should |
709 |
* implement callback routine as necessary. |
749 |
* implement callback routine as necessary. |
710 |
* |
750 |
* |
711 |
* Note: None |
751 |
* Note: None |
712 |
*******************************************************************/ |
752 |
*******************************************************************/ |
713 |
void USBCB_SOF_Handler(void) |
753 |
void USBCB_SOF_Handler(void) |
714 |
{ |
754 |
{ |
715 |
// No need to clear UIRbits.SOFIF to 0 here. |
755 |
// No need to clear UIRbits.SOFIF to 0 here. |
716 |
// Callback caller is already doing that. |
756 |
// Callback caller is already doing that. |
717 |
} |
757 |
} |
718 |
|
758 |
|
719 |
/******************************************************************* |
759 |
/******************************************************************* |
720 |
* Function: void USBCBErrorHandler(void) |
760 |
* Function: void USBCBErrorHandler(void) |
721 |
* |
761 |
* |
722 |
* PreCondition: None |
762 |
* PreCondition: None |
723 |
* |
763 |
* |
724 |
* Input: None |
764 |
* Input: None |
725 |
* |
765 |
* |
726 |
* Output: None |
766 |
* Output: None |
727 |
* |
767 |
* |
728 |
* Side Effects: None |
768 |
* Side Effects: None |
729 |
* |
769 |
* |
730 |
* Overview: The purpose of this callback is mainly for |
770 |
* Overview: The purpose of this callback is mainly for |
731 |
* debugging during development. Check UEIR to see |
771 |
* debugging during development. Check UEIR to see |
732 |
* which error causes the interrupt. |
772 |
* which error causes the interrupt. |
733 |
* |
773 |
* |
734 |
* Note: None |
774 |
* Note: None |
735 |
*******************************************************************/ |
775 |
*******************************************************************/ |
736 |
void USBCBErrorHandler(void) |
776 |
void USBCBErrorHandler(void) |
737 |
{ |
777 |
{ |
738 |
// No need to clear UEIR to 0 here. |
778 |
// No need to clear UEIR to 0 here. |
739 |
// Callback caller is already doing that. |
779 |
// Callback caller is already doing that. |
740 |
|
780 |
|
741 |
// Typically, user firmware does not need to do anything special |
781 |
// Typically, user firmware does not need to do anything special |
742 |
// if a USB error occurs. For example, if the host sends an OUT |
782 |
// if a USB error occurs. For example, if the host sends an OUT |
743 |
// packet to your device, but the packet gets corrupted (ex: |
783 |
// packet to your device, but the packet gets corrupted (ex: |
744 |
// because of a bad connection, or the user unplugs the |
784 |
// because of a bad connection, or the user unplugs the |
745 |
// USB cable during the transmission) this will typically set |
785 |
// USB cable during the transmission) this will typically set |
746 |
// one or more USB error interrupt flags. Nothing specific |
786 |
// one or more USB error interrupt flags. Nothing specific |
747 |
// needs to be done however, since the SIE will automatically |
787 |
// needs to be done however, since the SIE will automatically |
748 |
// send a "NAK" packet to the host. In response to this, the |
788 |
// send a "NAK" packet to the host. In response to this, the |
749 |
// host will normally retry to send the packet again, and no |
789 |
// host will normally retry to send the packet again, and no |
750 |
// data loss occurs. The system will typically recover |
790 |
// data loss occurs. The system will typically recover |
751 |
// automatically, without the need for application firmware |
791 |
// automatically, without the need for application firmware |
752 |
// intervention. |
792 |
// intervention. |
753 |
|
793 |
|
754 |
// Nevertheless, this callback function is provided, such as |
794 |
// Nevertheless, this callback function is provided, such as |
755 |
// for debugging purposes. |
795 |
// for debugging purposes. |
756 |
} |
796 |
} |
757 |
|
797 |
|
758 |
|
798 |
|
759 |
/******************************************************************* |
799 |
/******************************************************************* |
760 |
* Function: void USBCBCheckOtherReq(void) |
800 |
* Function: void USBCBCheckOtherReq(void) |
761 |
* |
801 |
* |
762 |
* PreCondition: None |
802 |
* PreCondition: None |
763 |
* |
803 |
* |
764 |
* Input: None |
804 |
* Input: None |
765 |
* |
805 |
* |
766 |
* Output: None |
806 |
* Output: None |
767 |
* |
807 |
* |
768 |
* Side Effects: None |
808 |
* Side Effects: None |
769 |
* |
809 |
* |
770 |
* Overview: When SETUP packets arrive from the host, some |
810 |
* Overview: When SETUP packets arrive from the host, some |
771 |
* firmware must process the request and respond |
811 |
* firmware must process the request and respond |
772 |
* appropriately to fulfill the request. Some of |
812 |
* appropriately to fulfill the request. Some of |
773 |
* the SETUP packets will be for standard |
813 |
* the SETUP packets will be for standard |
774 |
* USB "chapter 9" (as in, fulfilling chapter 9 of |
814 |
* USB "chapter 9" (as in, fulfilling chapter 9 of |
775 |
* the official USB specifications) requests, while |
815 |
* the official USB specifications) requests, while |
776 |
* others may be specific to the USB device class |
816 |
* others may be specific to the USB device class |
777 |
* that is being implemented. For example, a HID |
817 |
* that is being implemented. For example, a HID |
778 |
* class device needs to be able to respond to |
818 |
* class device needs to be able to respond to |
779 |
* "GET REPORT" type of requests. This |
819 |
* "GET REPORT" type of requests. This |
780 |
* is not a standard USB chapter 9 request, and |
820 |
* is not a standard USB chapter 9 request, and |
781 |
* therefore not handled by usb_device.c. Instead |
821 |
* therefore not handled by usb_device.c. Instead |
782 |
* this request should be handled by class specific |
822 |
* this request should be handled by class specific |
783 |
* firmware, such as that contained in usb_function_hid.c. |
823 |
* firmware, such as that contained in usb_function_hid.c. |
784 |
* |
824 |
* |
785 |
* Note: None |
825 |
* Note: None |
786 |
*****************************************************************************/ |
826 |
*****************************************************************************/ |
787 |
void USBCBCheckOtherReq(void) |
827 |
void USBCBCheckOtherReq(void) |
788 |
{ |
828 |
{ |
789 |
USBCheckUBWRequest(); |
829 |
USBCheckUBWRequest(); |
790 |
}//end |
830 |
}//end |
791 |
|
831 |
|
792 |
|
832 |
|
793 |
/******************************************************************* |
833 |
/******************************************************************* |
794 |
* Function: void USBCBStdSetDscHandler(void) |
834 |
* Function: void USBCBStdSetDscHandler(void) |
795 |
* |
835 |
* |
796 |
* PreCondition: None |
836 |
* PreCondition: None |
797 |
* |
837 |
* |
798 |
* Input: None |
838 |
* Input: None |
799 |
* |
839 |
* |
800 |
* Output: None |
840 |
* Output: None |
801 |
* |
841 |
* |
802 |
* Side Effects: None |
842 |
* Side Effects: None |
803 |
* |
843 |
* |
804 |
* Overview: The USBCBStdSetDscHandler() callback function is |
844 |
* Overview: The USBCBStdSetDscHandler() callback function is |
805 |
* called when a SETUP, bRequest: SET_DESCRIPTOR request |
845 |
* called when a SETUP, bRequest: SET_DESCRIPTOR request |
806 |
* arrives. Typically SET_DESCRIPTOR requests are |
846 |
* arrives. Typically SET_DESCRIPTOR requests are |
807 |
* not used in most applications, and it is |
847 |
* not used in most applications, and it is |
808 |
* optional to support this type of request. |
848 |
* optional to support this type of request. |
809 |
* |
849 |
* |
810 |
* Note: None |
850 |
* Note: None |
811 |
*****************************************************************************/ |
851 |
*****************************************************************************/ |
812 |
void USBCBStdSetDscHandler(void) |
852 |
void USBCBStdSetDscHandler(void) |
813 |
{ |
853 |
{ |
814 |
// Must claim session ownership if supporting this request |
854 |
// Must claim session ownership if supporting this request |
815 |
}//end |
855 |
}//end |
816 |
|
856 |
|
817 |
|
857 |
|
818 |
/****************************************************************************** |
858 |
/****************************************************************************** |
819 |
* Function: void USBCBInitEP(void) |
859 |
* Function: void USBCBInitEP(void) |
820 |
* |
860 |
* |
821 |
* PreCondition: None |
861 |
* PreCondition: None |
822 |
* |
862 |
* |
823 |
* Input: None |
863 |
* Input: None |
824 |
* |
864 |
* |
825 |
* Output: None |
865 |
* Output: None |
826 |
* |
866 |
* |
827 |
* Side Effects: None |
867 |
* Side Effects: None |
828 |
* |
868 |
* |
829 |
* Overview: This function is called when the device becomes |
869 |
* Overview: This function is called when the device becomes |
830 |
* initialized, which occurs after the host sends a |
870 |
* initialized, which occurs after the host sends a |
831 |
* SET_CONFIGURATION (wValue not = 0) request. This |
871 |
* SET_CONFIGURATION (wValue not = 0) request. This |
832 |
* callback function should initialize the endpoints |
872 |
* callback function should initialize the endpoints |
833 |
* for the device's usage according to the current |
873 |
* for the device's usage according to the current |
834 |
* configuration. |
874 |
* configuration. |
835 |
* |
875 |
* |
836 |
* Note: None |
876 |
* Note: None |
837 |
*****************************************************************************/ |
877 |
*****************************************************************************/ |
838 |
void USBCBInitEP(void) |
878 |
void USBCBInitEP(void) |
839 |
{ |
879 |
{ |
840 |
} |
880 |
} |
841 |
|
881 |
|
842 |
/******************************************************************** |
882 |
/******************************************************************** |
843 |
* Function: void USBCBSendResume(void) |
883 |
* Function: void USBCBSendResume(void) |
844 |
* |
884 |
* |
845 |
* PreCondition: None |
885 |
* PreCondition: None |
846 |
* |
886 |
* |
847 |
* Input: None |
887 |
* Input: None |
848 |
* |
888 |
* |
849 |
* Output: None |
889 |
* Output: None |
850 |
* |
890 |
* |
851 |
* Side Effects: None |
891 |
* Side Effects: None |
852 |
* |
892 |
* |
853 |
* Overview: The USB specifications allow some types of USB |
893 |
* Overview: The USB specifications allow some types of USB |
854 |
* peripheral devices to wake up a host PC (such |
894 |
* peripheral devices to wake up a host PC (such |
855 |
* as if it is in a low power suspend to RAM state). |
895 |
* as if it is in a low power suspend to RAM state). |
856 |
* This can be a very useful feature in some |
896 |
* This can be a very useful feature in some |
857 |
* USB applications, such as an Infrared remote |
897 |
* USB applications, such as an Infrared remote |
858 |
* control receiver. If a user presses the "power" |
898 |
* control receiver. If a user presses the "power" |
859 |
* button on a remote control, it is nice that the |
899 |
* button on a remote control, it is nice that the |
860 |
* IR receiver can detect this signalling, and then |
900 |
* IR receiver can detect this signalling, and then |
861 |
* send a USB "command" to the PC to wake up. |
901 |
* send a USB "command" to the PC to wake up. |
862 |
* |
902 |
* |
863 |
* The USBCBSendResume() "callback" function is used |
903 |
* The USBCBSendResume() "callback" function is used |
864 |
* to send this special USB signalling which wakes |
904 |
* to send this special USB signalling which wakes |
865 |
* up the PC. This function may be called by |
905 |
* up the PC. This function may be called by |
866 |
* application firmware to wake up the PC. This |
906 |
* application firmware to wake up the PC. This |
867 |
* function should only be called when: |
907 |
* function should only be called when: |
868 |
* |
908 |
* |
869 |
* 1. The USB driver used on the host PC supports |
909 |
* 1. The USB driver used on the host PC supports |
870 |
* the remote wakeup capability. |
910 |
* the remote wakeup capability. |
871 |
* 2. The USB configuration descriptor indicates |
911 |
* 2. The USB configuration descriptor indicates |
872 |
* the device is remote wakeup capable in the |
912 |
* the device is remote wakeup capable in the |
873 |
* bmAttributes field. |
913 |
* bmAttributes field. |
874 |
* 3. The USB host PC is currently sleeping, |
914 |
* 3. The USB host PC is currently sleeping, |
875 |
* and has previously sent your device a SET |
915 |
* and has previously sent your device a SET |
876 |
* FEATURE setup packet which "armed" the |
916 |
* FEATURE setup packet which "armed" the |
877 |
* remote wakeup capability. |
917 |
* remote wakeup capability. |
878 |
* |
918 |
* |
879 |
* This callback should send a RESUME signal that |
919 |
* This callback should send a RESUME signal that |
880 |
* has the period of 1-15ms. |
920 |
* has the period of 1-15ms. |
881 |
* |
921 |
* |
882 |
* Note: Interrupt vs. Polling |
922 |
* Note: Interrupt vs. Polling |
883 |
* -Primary clock |
923 |
* -Primary clock |
884 |
* -Secondary clock ***** MAKE NOTES ABOUT THIS ******* |
924 |
* -Secondary clock ***** MAKE NOTES ABOUT THIS ******* |
885 |
* > Can switch to primary first by calling USBCBWakeFromSuspend() |
925 |
* > Can switch to primary first by calling USBCBWakeFromSuspend() |
886 |
|
926 |
|
887 |
* The modifiable section in this routine should be changed |
927 |
* The modifiable section in this routine should be changed |
888 |
* to meet the application needs. Current implementation |
928 |
* to meet the application needs. Current implementation |
889 |
* temporary blocks other functions from executing for a |
929 |
* temporary blocks other functions from executing for a |
890 |
* period of 1-13 ms depending on the core frequency. |
930 |
* period of 1-13 ms depending on the core frequency. |
891 |
* |
931 |
* |
892 |
* According to USB 2.0 specification section 7.1.7.7, |
932 |
* According to USB 2.0 specification section 7.1.7.7, |
893 |
* "The remote wakeup device must hold the resume signaling |
933 |
* "The remote wakeup device must hold the resume signaling |
894 |
* for at lest 1 ms but for no more than 15 ms." |
934 |
* for at lest 1 ms but for no more than 15 ms." |
895 |
* The idea here is to use a delay counter loop, using a |
935 |
* The idea here is to use a delay counter loop, using a |
896 |
* common value that would work over a wide range of core |
936 |
* common value that would work over a wide range of core |
897 |
* frequencies. |
937 |
* frequencies. |
898 |
* That value selected is 1800. See table below: |
938 |
* That value selected is 1800. See table below: |
899 |
* ========================================================== |
939 |
* ========================================================== |
900 |
* Core Freq(MHz) MIP RESUME Signal Period (ms) |
940 |
* Core Freq(MHz) MIP RESUME Signal Period (ms) |
901 |
* ========================================================== |
941 |
* ========================================================== |
902 |
* 48 12 1.05 |
942 |
* 48 12 1.05 |
903 |
* 4 1 12.6 |
943 |
* 4 1 12.6 |
904 |
* ========================================================== |
944 |
* ========================================================== |
905 |
* * These timing could be incorrect when using code |
945 |
* * These timing could be incorrect when using code |
906 |
* optimization or extended instruction mode, |
946 |
* optimization or extended instruction mode, |
907 |
* or when having other interrupts enabled. |
947 |
* or when having other interrupts enabled. |
908 |
* Make sure to verify using the MPLAB SIM's Stopwatch |
948 |
* Make sure to verify using the MPLAB SIM's Stopwatch |
909 |
* and verify the actual signal on an oscilloscope. |
949 |
* and verify the actual signal on an oscilloscope. |
910 |
*******************************************************************/ |
950 |
*******************************************************************/ |
911 |
void USBCBSendResume(void) |
951 |
void USBCBSendResume(void) |
912 |
{ |
952 |
{ |
913 |
static WORD delay_count; |
953 |
static WORD delay_count; |
914 |
|
954 |
|
915 |
USBResumeControl = 1; // Start RESUME signaling |
955 |
USBResumeControl = 1; // Start RESUME signaling |
916 |
|
956 |
|
917 |
delay_count = 1800U; // Set RESUME line for 1-13 ms |
957 |
delay_count = 1800U; // Set RESUME line for 1-13 ms |
918 |
do |
958 |
do |
919 |
{ |
959 |
{ |
920 |
delay_count--; |
960 |
delay_count--; |
921 |
}while(delay_count); |
961 |
}while(delay_count); |
922 |
USBResumeControl = 0; |
962 |
USBResumeControl = 0; |
923 |
} |
963 |
} |
924 |
|
964 |
|
925 |
|
965 |
|
926 |
/******************************************************************* |
966 |
/******************************************************************* |
927 |
* Function: BOOL USER_USB_CALLBACK_EVENT_HANDLER( |
967 |
* Function: BOOL USER_USB_CALLBACK_EVENT_HANDLER( |
928 |
* USB_EVENT event, void *pdata, WORD size) |
968 |
* USB_EVENT event, void *pdata, WORD size) |
929 |
* |
969 |
* |
930 |
* PreCondition: None |
970 |
* PreCondition: None |
931 |
* |
971 |
* |
932 |
* Input: USB_EVENT event - the type of event |
972 |
* Input: USB_EVENT event - the type of event |
933 |
* void *pdata - pointer to the event data |
973 |
* void *pdata - pointer to the event data |
934 |
* WORD size - size of the event data |
974 |
* WORD size - size of the event data |
935 |
* |
975 |
* |
936 |
* Output: None |
976 |
* Output: None |
937 |
* |
977 |
* |
938 |
* Side Effects: None |
978 |
* Side Effects: None |
939 |
* |
979 |
* |
940 |
* Overview: This function is called from the USB stack to |
980 |
* Overview: This function is called from the USB stack to |
941 |
* notify a user application that a USB event |
981 |
* notify a user application that a USB event |
942 |
* occured. This callback is in interrupt context |
982 |
* occured. This callback is in interrupt context |
943 |
* when the USB_INTERRUPT option is selected. |
983 |
* when the USB_INTERRUPT option is selected. |
944 |
* |
984 |
* |
945 |
* Note: None |
985 |
* Note: None |
946 |
*******************************************************************/ |
986 |
*******************************************************************/ |
947 |
BOOL USER_USB_CALLBACK_EVENT_HANDLER(USB_EVENT event, void *pdata, WORD size) |
987 |
BOOL USER_USB_CALLBACK_EVENT_HANDLER(USB_EVENT event, void *pdata, WORD size) |
948 |
{ |
988 |
{ |
949 |
switch(event) |
989 |
switch(event) |
950 |
{ |
990 |
{ |
951 |
case EVENT_CONFIGURED: |
991 |
case EVENT_CONFIGURED: |
952 |
USBCBInitEP(); |
992 |
USBCBInitEP(); |
953 |
break; |
993 |
break; |
954 |
case EVENT_SET_DESCRIPTOR: |
994 |
case EVENT_SET_DESCRIPTOR: |
955 |
USBCBStdSetDscHandler(); |
995 |
USBCBStdSetDscHandler(); |
956 |
break; |
996 |
break; |
957 |
case EVENT_EP0_REQUEST: |
997 |
case EVENT_EP0_REQUEST: |
958 |
USBCBCheckOtherReq(); |
998 |
USBCBCheckOtherReq(); |
959 |
break; |
999 |
break; |
960 |
case EVENT_SOF: |
1000 |
case EVENT_SOF: |
961 |
USBCB_SOF_Handler(); |
1001 |
USBCB_SOF_Handler(); |
962 |
break; |
1002 |
break; |
963 |
case EVENT_SUSPEND: |
1003 |
case EVENT_SUSPEND: |
964 |
USBCBSuspend(); |
1004 |
USBCBSuspend(); |
965 |
break; |
1005 |
break; |
966 |
case EVENT_RESUME: |
1006 |
case EVENT_RESUME: |
967 |
USBCBWakeFromSuspend(); |
1007 |
USBCBWakeFromSuspend(); |
968 |
break; |
1008 |
break; |
969 |
case EVENT_BUS_ERROR: |
1009 |
case EVENT_BUS_ERROR: |
970 |
USBCBErrorHandler(); |
1010 |
USBCBErrorHandler(); |
971 |
break; |
1011 |
break; |
972 |
case EVENT_TRANSFER: |
1012 |
case EVENT_TRANSFER: |
973 |
Nop(); |
1013 |
Nop(); |
974 |
break; |
1014 |
break; |
975 |
default: |
1015 |
default: |
976 |
break; |
1016 |
break; |
977 |
} |
1017 |
} |
978 |
return TRUE; |
1018 |
return TRUE; |
979 |
} |
1019 |
} |
980 |
/** EOF main.c ***************************************************************/ |
1020 |
/** EOF main.c ***************************************************************/ |