Skip to content

Commit bde41c5

Browse files
authored
Merge pull request #3 from MicrochipTech/v2017_03_06
merging in the v2017_03_06 MLA release
2 parents 62fe6a5 + 53c65c7 commit bde41c5

File tree

10 files changed

+1447
-21
lines changed

10 files changed

+1447
-21
lines changed

doc/help_mla_usb.jar

-57.2 KB
Binary file not shown.

doc/help_mla_usb.pdf

-57.2 KB
Binary file not shown.

inc/usb_hal.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ please contact [email protected]
4343
#else
4444
#include "usb_hal_pic24f.h"
4545
#endif
46+
#elif defined(__XC32__)
47+
#if defined(__PIC32MM__)
48+
#include "usb_hal_pic32mm.h"
49+
#else
50+
#error "Silicon Platform not defined"
51+
#endif
4652
#else
4753
#error "Silicon Platform not defined"
4854
#endif

inc/usb_hal_pic24f.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ please contact [email protected]
4848
//IEC0-IEC7 on PIC24FJ128GC010 Family devices
4949
//IEC0-IEC7 on PIC24FJ128GB204 Family devices
5050
//IEC0-IEC7 on PIC24FJ256GB412 Family devices
51-
#if defined(__PIC24FJ64GB004__) || defined(__PIC24FJ32GB004__) || defined(__PIC24FJ32GB004__) || defined(__PIC24FJ32GB002__) \
51+
#if defined(__PIC24FJ64GB004__) || defined(__PIC24FJ64GB002__) || defined(__PIC24FJ32GB004__) || defined(__PIC24FJ32GB002__) \
5252
|| defined(__PIC24FJ256GB110__) || defined(__PIC24FJ192GB110__) || defined(__PIC24FJ128GB110__) || defined(__PIC24FJ64GB110__) || defined(__PIC24FJ256GB108__) || defined(__PIC24FJ192GB108__) || defined(__PIC24FJ128GB108__) || defined(__PIC24FJ64GB108__) || defined(__PIC24FJ256GB106__) || defined(__PIC24FJ192GB106__) || defined(__PIC24FJ128GB106__) || defined(__PIC24FJ64GB106__)
5353

5454
#define DEVICE_SPECIFIC_IEC_REGISTER_COUNT 6 //Number of IECx registers implemented in the microcontroller (varies from device to device, make sure this is set correctly for the intended CPU)

0 commit comments

Comments
 (0)