PIC32MX460F512L-80I/PT Microchip Technology, PIC32MX460F512L-80I/PT Datasheet - Page 474

IC PIC MCU FLASH 512K 100-TQFP

PIC32MX460F512L-80I/PT

Manufacturer Part Number
PIC32MX460F512L-80I/PT
Description
IC PIC MCU FLASH 512K 100-TQFP
Manufacturer
Microchip Technology
Series
PIC® 32MXr

Specifications of PIC32MX460F512L-80I/PT

Program Memory Type
FLASH
Program Memory Size
512KB (512K x 8)
Package / Case
100-TFQFP
Core Processor
MIPS32® M4K™
Core Size
32-Bit
Speed
80MHz
Connectivity
I²C, IrDA, LIN, PMP, SPI, UART/USART, USB OTG
Peripherals
Brown-out Detect/Reset, DMA, POR, PWM, WDT
Number Of I /o
85
Ram Size
32K x 8
Voltage - Supply (vcc/vdd)
2.3 V ~ 3.6 V
Data Converters
A/D 16x10b
Oscillator Type
Internal
Operating Temperature
-40°C ~ 85°C
Processor Series
PIC32MX4xx
Core
MIPS
Data Bus Width
32 bit
Data Ram Size
32 KB
Interface Type
I2C , SPI , UART
Maximum Clock Frequency
80 MHz
Number Of Programmable I/os
85
Number Of Timers
5 x 16 bit, 1 x 32 bit
Operating Supply Voltage
2.3 V to 3.6 V
Maximum Operating Temperature
+ 85 C
Mounting Style
SMD/SMT
3rd Party Development Tools
52713-733, 52714-737
Development Tools By Supplier
PG164130, DV164035, DV244005, DV164005, DM320003, DM320002, MA320002
Minimum Operating Temperature
- 40 C
On-chip Adc
10 bit
Controller Family/series
PIC32
No. Of I/o's
85
Ram Memory Size
32KB
Cpu Speed
80MHz
No. Of Timers
6
Embedded Interface Type
EUART, I2C, PSP, SPI
Rohs Compliant
Yes
Lead Free Status / RoHS Status
Lead free / RoHS Compliant
For Use With
876-1000 - PIC32 BREAKOUT BOARDAC244003 - TEST BD MPLAB REAL ICE LOOPBACKDM320003 - BOARD DEMO USB PIC32 OTGAC244006 - KIT MPLAB REAL ICE TRACEAC164333 - MODULE SKT FOR PM3 100QFP
Eeprom Size
-
Lead Free Status / Rohs Status
Lead free / RoHS Compliant

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
PIC32MX460F512L-80I/PT
Manufacturer:
VISHAY
Quantity:
3 200
Part Number:
PIC32MX460F512L-80I/PT
Manufacturer:
Microchip Technology
Quantity:
10 000
Part Number:
PIC32MX460F512L-80I/PT
0
PIC32MX3XX/4XX
EXAMPLE 21-2:
21.2.3
In order to perform a write to any of the RTCC Time reg-
isters, the RTCWREN bit (RTCCON<3>) must be set.
Setting of the RTCWREN bit is only allowed once the
device level unlocking sequence has been executed.
The unlocking sequence is as follows:
1.
2.
3.
EXAMPLE 21-3:
DS61143C-page 472
// assume interrupts are disabled
// assume the DMA controller is suspended
// assume the device is locked
// can resume the DMA controller activity
// can re-enable interrupts
/*
*/
Note:
Suspend or disable all initiators that can access
the peripheral bus and interrupt the unlock
sequence. (i.e., DMA and Interrupts).
Store 0xAA996655 to the SYSKEY register.
Store 0x556699AA to the SYSKEY register.
// starting critical sequence
SYSKEY = 0xaa996655;
SYSKEY = 0x556699aa;
RTCCONSET = 0x8;
// end critical sequence
SYSKEY = 0x33333333;
The following code example will update the RTCC time and date.
// assume RTCC write is enabled i.e. RTCWREN (RTCCON<3>) =1;
unsigned long time=0x04153300;// set time to 04 hr, 15 min, 33 sec
unsigned long date=0x06102705;// set date to Friday 27 Oct 2006
// disable interrupts, critical section follows
__asm__ __volatile__ (“di”);
while((RTCCON&0x4)!=0);
RTCTIME=time;
RTCDATE=date;
// restore interrupts, critical section ended
__asm__ __volatile__ (“ei”);
// can disable the RTCC write
WRITE LOCK
To avoid accidental writes to the RTCC time values, it is recommended that the RTCWREN bit
(RTCCON<3>) is kept clear at any other time.
UPDATING THE RTCC TIME USING THE RTCSYNC WINDOW
WRITE UNLOCK SEQUENCE
// write first unlock key to SYSKEY
// write second unlock key to SYSKEY
// set RTCWREN in RTCCONSET
// perform device re-lock
// wait for not RTCSYNC
// safe to update the time
// update the date
Preliminary
implementation of the write unlock operation.
4.
5.
6.
Note that steps 2 through 4 must be followed exactly to
unlock RTCC write operations. If the sequence is not
followed exactly, the RTCWREN bit will not be set.
Refer
Set RTCWREN bit into the RTCCON register.
Perform the device relock by writing a dummy
value to the SYSKEY register.
Re-enable DMA and interrupts.
to
Example 21-3
© 2008 Microchip Technology Inc.
for
a
“C”
language

Related parts for PIC32MX460F512L-80I/PT