-
The 32-Bit language tools consist of a compiler (pic32-gcc.exe), an assembler
(pic32-as.exe), a linker (pic32-ld.exe), and an archiver/ librarian (pic32-ar.exe). Additional tools
distributed with this release include a binary to Intel[intl] Hex converter (pic32-bin2hex.exe) and
miscellaneous binary utilities (pic32-strip.exe, pic32-strings.exe, pic32-readelf.exe, etc). In
addition, the compiler utilizes a license manager (pic32-lm.exe) as part of the time-limited MPLAB C
Compiler for PIC32 MCUs Standard Evaluation edition.
As described in the user's guides, all of the language tools are sensitive to case on the
command line, including the case of file names. In particular, the C compiler shell (pic32-gcc)
requires that C source files be named on the command-line with a lower-case .c extension. If an
upper-case .C filename extension is used, the compiler assumes that the file is a C++ file, which is
not supported. Similarly, the compiler shell passes a file with an upper-case .S filename extension
through the C preprocessor before passing it to the assembler, but it passes a file with a lower-case
.s extension directly to the assembler.
-
The MPLAB® C Compiler for PIC32 MCUs tools are written and
distributed under the GNU General Public License (GPL) which means that its source code is freely
distributed and available to the public.
The source for the tools under the GNU GPL may be downloaded separately from the
Microchip WWW web page. You may read the GNU GPL in the file named COPYING located the docs
subdirectory of your install directory. A general discussion of principles underlying the GPL may be
found at www.gnu.org/copyleft.
Support code provided for the header files, linker scripts, and runtime libraries are
proprietary code and not covered under the GPL. See the full MPLAB C Compiler for PIC32 MCUs
License Agreement for details.
-
The following PIC32MX
devices are supported:
New items for v1.10 in green.
| Part Number |
Part Number |
| PIC32MX320F032H |
- |
| PIC32MX320F064H |
- |
| PIC32MX320F128H |
PIC32MX320F128L |
| PIC32MX340F128H |
PIC32MX340F128L |
| PIC32MX340F256H |
- |
| PIC32MX340F512H |
- |
| - |
PIC32MX360F256L |
| - |
PIC32MX360F512L |
| Part Number |
Part Number |
| PIC32MX420F032H |
- |
| PIC32MX440F128H |
PIC32MX440F128L |
| PIC32MX440F256H |
- |
| PIC32MX440F512H |
- |
| - |
PIC32MX460F256L |
| - |
PIC32MX460F512L |
| Part Number |
Part Number |
| PIC32MX575F256H |
PIC32MX575F256L |
| PIC32MX575F512H |
PIC32MX575F512L |
| PIC32MX675F512H |
PIC32MX675F512L |
| PIC32MX695F512H |
PIC32MX695F512L |
| PIC32MX795F512H |
PIC32MX795F512L |
The PIC32MXGENERIC device is, as its name implies, a non-specific target that can be used
to represent a generic core device.
-
If using MPLAB IDE, be
sure to install MPLAB IDE v8.10 or later before installing these tools.
To install the MPLAB C Compiler for PIC32 MCUs tools, perform the following
steps:
- Locate the setup program on the 'MPLAB C Compiler for PIC32 MCUs' CD ROM.
- Run the setup program.
- Follow the directions on the screen. To install the standard evaluation edition, leave the
license-key field blank when prompted. To install the full standard edition, enter your full license
key.
- If the installation program indicates that it is necessary, reboot your computer to complete the
installation.
- When the installation is complete, verify that the executable directory has been correctly added
to your PATH (i.e., if you chose to install the tools in the default directory, c:\Program
Files\Microchip\MPLAB C32, then ensure that c:\Program Files\Microchip\MPLAB C32\bin has been added
to your PATH. On some systems, the default path is c:\Program Files\Microchip\MPLAB C32 Suite.).
From a Windows command prompt (cmd.exe), type: c:\>PATH
To upgrade to a full standard-edition license from a lite or standard
-evaluation edition license, follow the steps described in this
section.
-
The following documents pertain to the MPLAB C Compiler for PIC32 MCUs. They may be
installed in the compiler's doc subdirectory, but you should check Microchip's website for the latest revisions.
Additional documentation on the GNU Assembler and Linker is available on the GNU Binutils website.
-
What's New
-
Compiler licenses renamed -- The feature-limited compiler licenses have been
renamed. The academic version is now the MPLAB C Compiler for PIC32 MCUs Lite
edition. The evaluation version is now the MPLAB C Compiler for PIC32 MCUs
Standard Evaluation edition. The full version is now the MPLAB C Compiler for
PIC32 MCUs Standard edition (Part Number: SW006015). This is a
name change only. See this section for more information on the
features available for each edition.
-
Smart I/O -- This release introduces a new
-msmart-io=[0|1|2] command-line option. This feature attempts to
statically analyze format strings passed to printf, scanf, and the 'f' and 'v'
variations of these functions. Uses of non floating-point format arguments will be converted to
use an integer-only variation of the library function. For many applications, this feature can
reduce program-memory usage.
-msmart-io=0 disables this option, while -msmart-io=2 causes the compiler to
be optimistic and convert function calls with variable or unknown format arguments.
-msmart-io=1 is the safe default and will convert only when the compiler can prove that
floating-point support is not required.
-
Interrupt Context-Saving
Improvements -- New PIC32 devices introduced in this release (5XX, 6XX, 7XX) allow
us to select, via configuration fuses, which priority will use the shadow register set. (Refer to
the device datasheet to determine if your PIC32 device supports this feature.) This means that we
must specify which context-saving mechanism to use for each interrupt service routine. We specify
the mechanism as part of the IPL specifier passed in the interrupt attribute,
__attribute__((interrupt([IPLn[AUTO|SOFT|SRS]]))), where n is in the
range of 0..7, inclusive.
NOTE: An incorrect IPLn value can cause incorrect nesting
of interrupts, which could result in a stack overflow and eventually a bus-error exception. If
you experience a bus-error exception related to an interrupt, double check that your
IPLn value matches the IPL value set for the interrupt source.
Read
More...
-
IPL Specifiers
-
IPLnAUTO -- The compiler supports an
IPLnAUTO IPL specifier that uses the runtime value in SRSCTL
to determine whether it should use software or SRS context saving. The interrupt
context-saving code generated for this specifier has a slightly higher latency,
compared to IPLnSOFT or IPLnSRS, due to the
instructions required to test the SRSCTL value. Example:
void __attribute__((interrupt(IPL6AUTO), vector(1))) myISR (void))
{ /* code */ }
-
IPLnSOFT -- The compiler will use software
context saving for the IPLnSOFT specifier. Application code is
responsible for applying the correct n interrupt-source priority value to the
matching handler routine. Example:
void __attribute__((interrupt(IPL6SOFT), vector(1))) myISR (void))
{ /* code */ }
-
IPLnSRS -- The compiler will generate interrupt
prologue and epilogue code utilizing shadow-register context saving for
IPLnSRS. This IPL specifier results in the shortest interrupt
context-saving latency. However, when using IPLnSRS, you must
configure the corresponding interrupt source to use a shadow register set. On some
devices, the shadow register set is tied to IPL7. On other devices, the shadow register
set is configurable in a device configuration register (DEVCFG). Example:
void __attribute__((interrupt(IPL6SRS), vector(1))) myISR (void))
{ /* code */ }
-
single -- For single-vector interrupt mode, use
single as the IPL parameter passed to the interrupt attribute. Example:
void __attribute__((interrupt(single), vector(1))) myISR (void)) {
/* code */ }
-
Default -- The compiler defaults to selecting the IPL
value and shadow-register usage at runtime when the IPL specifier is omitted from the
interrupt() attribute. Omitting the IPL specifier results in slightly larger interrupt
context-saving latency. For mult-vector interrupt mode where the requested IPL
value may change at runtime, use this default behavior. Example:
void __attribute__((interrupt(), vector(1))) myISR (void)) { /*
code */ }
-
Updated __ISR Macro -- The IPL specifier argument to the
__ISR() macro, defined in <sys/attribs.h>, is now optional. With
the IPL specifier omitted, the compiler defaults to selecting the IPL value and
shadow-register usage at runtime.
-
Example 1
void __ISR(_CORE_SOFTWARE_0_VECTOR, IPL3SRS)
CoreSoftwareInt0Handler(void)
This example creates an interrupt handler function for the core software interrupt 0
that has an interrupt priority level of three. The compiler places a dispatch function
at the associated vector location. To reach this function, the core software interrupt
flag and enable bits must be set, and the interrupt priority should be set to a level
of three. The device configuration fuses must assign Shadow Register Set 1 to interrupt
priority level three. The compiler generates code that assumes that register context
will be saved in SRS1.
-
Example 2
void __ISR(_CORE_SOFTWARE_0_VECTOR)
CoreSoftwareInt0Handler(void)
This example creates an interrupt handler function for the core software-interrupt 0
and uses the interrupt priority level from the runtime-requested IPL value. The
compiler generates code that determines, at runtime, whether context should be saved on
the stack by software or context was already saved in a shadow register set.
-
Latency improvements -- The interrupt context saving code has also been
modified to improve latency. For instance, the HI/LO register saving code, when required,
now appears later in the ISR prologue. This helps reduce stalls when an interrupt occurs
during a DIV (divide) instruction.
-
APPIN/APPOUT Debugging Support --
New PIC32 devices being introduced in v1.10 (5XX, 6XX, 7XX) support the APPIN/APPOUT debugging
feature. This PIC32 feature allows the target application to write text or data to an MPLAB IDE
window without halting the target device. Similarly, you may use the display window to send text
or data back to the target PIC32 device. This feature requires an MPLAB REAL ICE emulator or an MPLAB ICD 3 debugger.
Read More...
- -mappio-debug -- Use this command-line option to enable the
APPIN/APPOUT debugging library functions for the ICD 3 debugger and REAL ICE emulator. This
feature allows you to use the DBPRINTF and related functions and macros. Enable this option
only when using a target PIC32 device that supports the APPIN/APPOUT feature.
-
Example Code --
#include <p32xxxx.h>
int main (void)
{
int num;
char buf[256] ={0};
DBINIT();
while(1)
{
DBPRINTF ("Hello there!\n");
DBPRINTF ("Enter a string\n");
#if defined(__APPIO_DEBUG)
DBSCANF ("%s", &buf[0]);
#elif defined(PIC32_STARTER_KIT)
DBGETS (&buf[0],128);
#endif
DBPRINTF ("Entered \"%s\"\n\n", &buf[0]);
printf ("Prints to UART2 by default or APPO when enabled\n");
}
return 0;
}
-
Stack Limit symbol in built-in linker
script -- The default linker script now provides an _SPLIM symbol that you can use
from code to help detect a stack overflow at runtime. This symbol is associated with the lowest
address of the space reserved for the stack.
Read More...
-
Example Code --
#include <stddef.h>
#define _STACK_DEBUG 1
#if (_STACK_DEBUG)
#define stackcheck() _stackcheck(__FILE__, __LINE__)
static inline __attribute__((always_inline))
ptrdiff_t _stackcheck(const char *filename, unsigned int linenum)
{
extern void _SPLIM; /* From linker script */
register void* stackptr __asm__("$sp");
/* Compare the current stack pointer with the Stack Pointer Limit symbol, _SPLIM */
if ((ptrdiff_t)stackptr <= (ptrdiff_t)&_SPLIM)
{
/* Handle stack overflow */
while(1);
}
return ((ptrdiff_t)stackptr - (ptrdiff_t)&_SPLIM);
}
#else
#define stackcheck() (void)0
#endif
unsigned char foo(unsigned char var);
volatile unsigned int testval;
int main (void)
{
unsigned char array[0x7A50];
testval = 0;
array[0] = 1;
foo (array[0]);
testval = 1;
while(1);
}
unsigned char
foo(unsigned char var)
{
stackcheck();
return var+1;
}
-
Predefined macro for Feature
Set -- The compiler predefines a macro based on the features available for the
selected device. These macros are intended to be used when writing code to take advantage of
features available on newer devices while maintaining compatibility with older devices.
Read
More...
- Examples
PIC32MX795F512L would use __PIC32_FEATURE_SET__ == 795, and
PIC32MX340F128H would use __PIC32_FEATURE_SET__ == 340.
-
Example Code --
#if ((__PIC32_FEATURE_SET__ >= 500) &&
(__PIC32_FEATURE_SET__ <= 799))
{ /* do stuff for 5XX, 6XX, 7XX families */ }
#elif ((__PIC32_FEATURE_SET__ >= 300) &&
(__PIC32_FEATURE_SET__ <= 499))
{ /* do stuff for 3XX, 4XX families */ }
#elif ((__PIC32_FEATURE_SET__ >= 800) &&
(__PIC32_FEATURE_SET__ < 1000))
{ /* do stuff for some future family */ }
#endif
- Student Edition renamed Evaluation Version -- The student edition has been
renamed the evaluation version. This release also introduces a new academic version. For more
information on the feature-limited version, see this section.
(Note that the licenses have been renamed again for the v1.10
release.)
- Improved 16- and 32-bit FFT functions in the DSP Library -- The FFT functions
have been significantly improved and optimized for the PIC32 instruction set. See the 32-bit
Language Tools Libraries document (DS51685) for more information. Please visit Microchip's website for the revision C of this document
(DS51685C).
- Binary Constants -- A sequence of binary digits preceded by 0b or 0B (the
numeral '0' followed by the letter 'b' or 'B') is taken to be a binary integer. The binary digits
consist of the numerals '0' and '1'. Note that this binary-constant syntax may not be accepted by
other C compilers.
-
Linker Memory-Usage Report -- This optional, informational report allows you to
easily determine the program- and data-memory usage of your application. It allows you to see how
much space is used by the project being linked and how much space is available on the target
device. The memory-usage report appears on stdout and in the optional map file.
- Using this feature with MPLAB IDE 8.30 and earlier -- On the linker's tab
of the project build options, select to Use Alternate Settings. Add the
--report-mem option to the Alternate Settings field. The memory-usage
report will appear in the output window after a project build. (This option will appear as a
checkbox in later MPLAB IDE releases.)
- Using this feature on the command prompt -- Add the --report-mem
option to the linker's command line. If you are calling the linker via the compilation driver,
use the driver's -Wl option to pass the --report-mem option to the linker.
The memory-usage report will appear on stdout.
-
Improved malloc implementation -- This release contains a new
malloc/free/realloc implementation based on the implementation written by Doug Lea and released
to the public domain.
- This is not the fastest, most space-conserving, most portable, or most tunable malloc ever
written. However it is among the fastest while also being among the most space-conserving,
portable and tunable. Consistent balance across these factors results in a good general-purpose
allocator.
- For a high-level description, see http://g.oswego.edu/dl/html/malloc.html
- This implementation is also provided with the Newlib C Library.
- Instruction Macros -- The p32xxxx.h include file now contains a Nop() macro
that issues a superscalar SSNOP instruction.
- gettimeofday() weak stub -- The time.h clock() and
time() functions require a user-provided gettimeofday() helper function. The
compiler's library now provides a weak stub implementation that allows the project link to complete
without error, but you should provide your own implementation appropriate for your
application.
- Microchip DSP Compatibility Wrapper functions -- This release provides new DSP
wrapper functions intended to ease the migration from the Microchip DSP library for dsPIC DSCs to
the general DSP library for PIC32 MCUs. See the 32-Bit Language Tools Libraries (DS51685C) document
for more information on these new wrapper functions.
- Updated peripheral-library documentation -- The 32-bit peripheral library
document is now distributed as a compiled help file (*.chm) rather than a PDF file.
- Support for PWP configuration bits -- The config pragma now supports enabling
the Program Write Protect bits. See the PIC32MX Config Settings help file for information
on the setting name and available values for each device.
-
-
General DSP Library -- The DSP Library supports a variety of signal processing
functions that have applicability in speech compression, echo cancellation, noise cancellation,
channel equalization, audio decoding, and many other DSP and media applications. The library is
highly optimized for the PIC32 MCU instruction set.
- The DSP Library expects Q-type fixed-point arguments and produces Q-type results. The MPLAB
C Compiler for PIC32 MCUs does not currently support converting float or double types to
Q-types.
- See the 32-Bit Language Tools Libraries (DS51685) for documentation on the DSP Library
functions.
- In the near future, a "dsPIC DSC DSP Algorithm Library" compatibility layer will be
available. This compatibility layer makes the PIC32 DSP Library backwards compatible with the
existing dsPIC DSC DSP Algorithm Library.
-
Vector attribute accepts parenthesized list of vector numbers -- The interrupt
vector attribute now accepts a parenthesized list of one or more interrupt vector numbers. This
means that you can now more easily generate multiple dispatch functions that target a single
interrupt service routine as shown in the example below.
#include <p32xxxx.h>
#include <sys/attribs.h>
void __ISR((_TIMER_1_VECTOR,_TIMER_2_VECTOR,_TIMER_3_VECTOR),ipl6) TimerISR(void);
- Interrupt service routines forced to nomips16 -- The compiler will now force
functions marked with the interrupt attribute to be nomips16. The compiler will emit a warning if
it overrides the mips16 attribute or command-line default. Previous compiler releases stopped
compilation with an error and required users to manually add the nomips16 attribute. Note that you
should use the __ISR macro from the sys/attribs.h header rather than manually specify the interrupt
attribute.
- Trigonometric function refactorization -- A few trigonometric functions have
been refactored for a smaller code-size footprint.
- Optimized math library -- The floating-point math library provided with the
compiler has been significantly optimized to take full advantage of the PIC32MCU instruction set.
The improved library provides the greatest benefit for the more complex operations, offering a
greater than 5x performance improvement over the 1.02 library for many operations and an even more
significant improvement for some operations. In addition, single-precision math library functions
are now available, giving users a choice between double- and single-precision operations. See
math.h for more information.
- Time-Limited Evaluation Version -- The new evaluation version provides
full functionality for 60 days. After the evaluation version has expired, the
compiler becomes feature limited. See this section for further
details. (Note that this license has been renamed to the "Standard Evaluation
Edition" for the v1.10 release.)
- __C32_VERSION__ predefined macro -- The C compiler defines the
constant __C32_VERSION__, giving a numeric value to the version identifier. This macro can
be used to construct applications that take advantage of new compiler features while still
remaining backward compatible with older versions. The value is based upon the major and minor
version numbers of the current release. For example, release version 1.03 will have a
__C32_VERSION__ definition of 103. This macro can be used, in conjunction with standard
preprocessor comparison statements, to conditionally include/exclude various code constructs.
-
__ISR_SINGLE__ and __ISR_SINGLE_AT_VECTOR__ convenience macros
-- The sys/attribs.h header file now provides two new macros intended to simplify the use of the
single-vector interrupt mechanism. See the sys/attribs.h header file for more information.
- The __ISR_SINGLE__ macro specifies a function as an interrupt-service routine in
single-vector mode. This will place a jump at the single-vector location to the interrupt
handler.
- The __ISR_SINGLE_AT_VECTOR__ macro places the entire single-vector interrupt
handler at the vector 0 location. The user is responsible for ensuring that the vector spacing
is set to accommodate the size of the handler.
-
Migration Issues
The following changes may affect migration from older versions of the compiler.
- Interrupt context saving
-
IPL specifier -- In prior compiler releases, the interrupt service-routine
prologue code determined the IPL value from the runtime RIPL value. This meant that the IPL
specifier value in the interrupt attribute or interrupt pragma did not have to exactly match
the actual IPL value for the interrupt source. The interrupt service routine worked
correctly, even when there was a discrepancy in the IPL value.
The interrupt prologue code generated by this release of the compiler uses the IPL value
as specified in the interrupt attribute or interrupt pragma. An incorrect IPLn value can
cause incorrect nesting of interrupts, which could result in a stack overflow and eventually
a bus-error exception. If you experience a bus-error exception related to an interrupt,
double check that your IPLn value matches the IPL value set for the interrupt source.
Some applications may require an interrupt priority that changes at runtime. In this case,
omit the IPL specifier from the interrupt attribute as shown in the examples below. e.g.
void __attribute__((interrupt(), vector(1))) myISR1 (void)) { /* code */
}
void __ISR(_CORE_SOFTWARE_0_VECTOR) CoreSoftwareInt0Handler(void) { /* code
*/ }
Currently, the interrupt pragma does not support interrupt priority levels that change at
runtime. In this case, convert the interrupt pragma to an interrupt attribute as described
above. For instance:
#pragma interrupt foo ipl3 vector 4
void foo (void) { /* code */ }
becomes
void __attribute__((interrupt(), vector(4))) foo (void) { /* code */ }
- STDIO
- BUFSIZ -- The input buffer size has been reduced from 1024 to 64 bytes.
Use the setvbuf() function to specify another buffer if your application requires a buffer of
another size.
- STDOUT_BUFSIZ -- The stdout default-buffer size has been reduced from 128
bytes to 32 bytes. Use the setvbuf() function to specify another buffer if your application
requires a buffer of another size.
- Device support
- PIC32MX4xx devices -- The UPLLIDIV configuration fuse settings were
incorrectly named DIV_7 and DIV_8 for several PIC32MX4XX devices. They are now correctly named
DIV_10 and DIV_12, respectively. Code using the older names will fail to compile. Update your
code to use the new setting names.
- Documentation
- Peripheral Library documentation now provided as a help file -- The
peripheral library documentation is now provided as a CHM file rather than a PDF file. Older
versions of the compiler installer added a link to the PDF file in MPLAB IDE's online help. To
remove this outdated link, run the uninstall facility in Windows Add/Remove Programs to
completely uninstall the compiler. Then re-run the v1.10 compiler installer.
- DSP Library
- FFT setup functions -- The FFT setup functions, mips_fft16_setup() and
mips_fft32_setup(), are now deprecated. The FFT functions now load precalculated coefficients
so these setup functions are no longer required. Please visit Microchip's website for the revision C of the 32-bit
Libraries document (DS51685C).
- Device-support files
- Device specific IRQ macro definitions -- The IRQ macro definitions, such
as _CORE_TIMER_IRQ, have moved from the ppic32mx.h header file to the device-specific
header file (e.g. proc/p32mx460f512l.h). This change should not affect most applications
because they should include the generic p32xxxx.h file.
- Peripheral Library
- Modified SYSTEMConfigXXX functions to use revised flash speed of 30 MHz. If you are
currently using a SYSTEMConfigXXX function, your application will automatically use the new
flash-speed specification.
- Examples
- Modified all plib_examples to use SYSTEMConfig() function. This function allows users to
selectively configure certain parameters only.
-
Processor Header files
- Removed Extended Mode (XM bit) in DMA controller
- Peripheral Library - See the Microchip PIC32MX Peripheral
Library compiled help (*.chm) for details
- DMA Extended mode is removed. The maximum transfer length is now 256 bytes, even for memory
copy and CRC functions.
- Symbols DMA_OPEN_NORM and DMA_OPEN_EXT used in the DmaChnOpen() call were removed. A new
symbol, DMA_OPEN_DEFAULT was added.
- A new function, DmaGetMaxTcferSize() was added, to return the maximum supported size of a
transfer, variant dependent. Right now, only 256 bytes transfer size supported.
- DmaChnSetExtTxfer() was removed, no longer relevant.
- DMA_CTL_EXT_EN was removed from the low level access routines
- SYSTEMConfig() function was added to enable user-specified configuration for a given system
frequency.
-
Documentation Updates
Library documentation updates
This section describes pending updates to the MPLAB® 32-Bit Language
Tools Libraries documentation. These changes will be incorporated into the next full revision of
the documents.
- BUFSIZ -- The BUFSIZ definition in stdio.h has been reduced to 64.
Compiler documentation updates
This section describes pending updates to the MPLAB C Compiler for PIC32
documentation. These changes will be incorporated into the next full revision of the documents.
- Binary Constants -- A sequence of binary digits preceded by 0b or
0B (the numeral '0' followed by the letter 'b' or 'B') is taken to be a binary integer. The
binary digits consist of the numerals '0' and '1'. For example, the (decimal) number 255 can be
written as 0b11111111. Like other integer constants, a binary constant may be suffixed by
the letter 'u' or 'U', to specify that it is unsigned. A binary constant may also be suffixed by the
letter 'l' or 'L', to specify that it is long. Similarly, the suffix 'll' or 'LL' denotes a long long
binary constant. Note that this binary-constant syntax may not be accepted by other C compilers.
- __VERSION__ predefined macro -- The __VERSION__ macro expands
to a string constant describing the compiler in use. Do not rely on its contents having any
particular form, but it should contain at least the release number. Use the __C32_VERSION__
macro for a numeric version number.
- Interrupt-vector macros -- Each processor-support header file (e.g.
\pic32mx\include\proc\p32mx360f512l.h) provides a macro for each interrupt-vector number. When used
in conjunction with the __ISR() macro provided by the sys\attribs.h header file, these
macros help make an interrupt service routine easier to write and maintain. Example: void __ISR
(_TIMER_1_VECTOR, ipl7) Timer1Handler (void);
-
The following issues have been resolved in this release
- C32-267:
- The '0' (zero-fill) flag for the output-format conversion specifiers (used with the printf
functions), now properly causes zero filling when used with floating-point conversions. (e.g.
printf("%010.2f",foo); )
- C32-266:
- A 'naked' attributed function containing a function call no longer causes a compiler crash when
building with optimizations enabled.
- C32-252:
- The SoftReset() peripheral library function now works correctly on devices that do not use DMA,
such as the PIC32MX320F032H.
- C32-224:
- In stdlib.h, MB_CUR_MAX is now correctly defined as 1.
- DAYHLD-10:
- The UPLLIDIV configuration fuse settings were incorrectly named DIV_7 and DIV_8 for several
PIC32MX4XX devices. They are now correctly named DIV_10 and DIV_12, respectively.
- C32-064:
- Code generated using -Os -mips16 and a very large number of common subexpressions now compiles
correctly.
- C32-232:
- Interrupt context-saving code now preserves the assembler temporary ($at) register. While the
compiler does not use this register for standard C code, the general DSP library or the optimized
math library use this register.
- Peripheral Library:
-
The peripheral-library source files listed below contain fixes and improvements. See the updated
peripheral-library documentation for further details.
- pic32mx/include/peripheral/int.h
- pic32mx/include/peripheral/incap.h
- pic32mx/include/peripheral/nvm.h
- pic32mx/include/peripheral/dma.h
- pic32mx/include/peripheral/ports.h
- pic32mx/include/peripheral/uart.h
- pic32mx/include/peripheral/i2c.h
- pic32mx/include/peripheral/outcompare.h
- pic32mx/include/peripheral/cmp.h
- pic32mx/include/peripheral/timer.h
- pic32mx/include/peripheral/reset.h
- pic32mx/include/peripheral/pcache.h
- pic32mx/include/peripheral/system.h
- pic32mx/include/peripheral/bmx.h
- pic32-libs/peripheral/nvm/source/nvm_operation_lib.c
- pic32-libs/peripheral/i2c/source/idle_i2c2_lib.c
- C32-42:
- The compiler now emits a more useful diagnostic message when multiple -mprocessor options
appear on the command line.
- No significant fixed issues for this release
- BIN32-30:
- Assertion statements in the linker scripts now correctly compare the size of an exception
vector to the vector spacing.
- C32-179:
- The gmtime() library function now links without error. In previous releases, the linker would
complain about an undefined reference to 'offtime_r'
- C32-172:
- The config pragma now defaults the DEVCFG0 MSb to zero.
- C32-171:
- The first call to getchar() now calls _mon_getc(). The previous implementation treated the
initial STDIN character as an ungetc() pushed-back character.
- C32-164:
- The device-specific header files now use '__asm__' rather than 'asm' when mapping each SFR
struct to it's symbol name. Previous versions of these files did not compile when building with the
compiler's -ansi option.
- C32-147:
- The interrupt attribute now properly accepts an uppercase IPLx value. Earlier compiler versions
could reject the uppercase IPLx with an internal error.
- C32-119:
- Removed pipeline interlock in ISR handling
- C32-141:
- Large malloc() calls no longer generate a general exception vector instead of
returning a NULL pointer.
- C32-144:
- Interrupt macro now sets nomips16
- C32-145:
- Include C startup code source is now provided in the standard distribution
- C32-151:
- IPL7 prologue code now sets incorrect bits in status register
-
The current limitations are as follows.
Compiler
No significant issues reported.
Assembler
No significant issues reported.
-
Time-Limited Standard Evaluation Edition
Feature Limitations - Microchip provides a free time-limited
Standard Evaluation edition of the MPLAB C Compiler for PIC32 MCUs. The
standard evaluation edition of the compiler provides full functionality for 60 days.
After the evaluation period has expired, the compiler becomes feature limited, and optimization
features associated with levels -O2, -O3, and -Os are disabled. In addition, MIPS16 code generation is
disabled. The compiler continues to accept the -O1 and -O0 optimization levels indefinitely.
Installing the standard evaluation edition - To install the time-limited
standard evaluation edition of the compiler, run the standard evaluation-edition installer and follow
the on-screen instructions. If the installer asks for a license key, leave the field blank and
continue.
Upgrading to a standard-edition license - For applications requiring
additional code efficiency, as well as full support via http://support.microchip.com, users are encouraged to upgrade to a
full standard-edition compiler license. For further information on upgrading to a full standard-edition
license (Part Number: SW006015), visit http://www.microchipdirect.com
or contact your preferred Microchip distributor.
Once you've obtained a standard-edition license key, run the Upgrader tool
(pic32-upgrader\upgrader.exe) as a Windows administrator. After you enter your license key and press
the Upgrade button, the license manager should then report the license upgrade status.
Lite Edition
Feature Limitations - Microchip provides a free Lite edition of
the MPLAB C Compiler for PIC32 MCUs intended for use in projects where code
efficiency is not critical. This edition of the compiler does not support optimization features
associated with levels -O2, -O3, and -Os. In addition, this edition does not support MIPS16 code
generation.
Upgrading to the standard edition or standard evaluation edition - To
take advantage of the advanced optimization and MIPS16 code generation features, you can upgrade to a
standard edition or a 60-day standard evaluation edition. To upgrade to a full or 60-day standard
evaluation edition, uninstall the lite edition using the normal Windows Add/Remove Programs feature.
Next, install the standard edition or the standard evaluation edition by running the appropriate
installer and following the on-screen instructions.
-
Microchip provides online support via our home page at:
http://www.microchip.com
Technical support is available through the web site at:
http://support.microchip.com
A forum for discussion of Microchip products and tools is available at:
http://forum.microchip.com
Microchip PIC32 documentation and product info is available at:
http://www.microchip.com/pic32
MPLAB® C Compiler for PIC32 MCUs updates and information are available
at:
http://www.microchip.com/c32