File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
source/hic_hal/nxp/lpc4322 Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 7
7
| [ kl26z] ( kl26z.md ) | M0+ | 48 Mhz | 16 KB | 128 KB | FS |
8
8
| [ kl27z] ( kl27z.md ) | M0+ | 48 Mhz | 32 KB | 128 KB | FS |
9
9
| [ lpc11u35] ( lpc11u35.md ) | M0 | 48 Mhz | 12 KB | 64 KB | FS |
10
- | [ lpc4322] ( lpc4322.md ) | M4 | 96 MHz | 256 KB | 256 KB | HS |
10
+ | [ lpc4322] ( lpc4322.md ) | M4 | 120 MHz | 256 KB | 256 KB | HS |
11
11
| [ lpc55xx] ( lpc55xx.md ) | M33 | 150 MHz | 272 KB | 320 KB | HS |
12
12
| [ max32625] ( max32625.md ) | M4 | 96 MHz | 160 KB | 512 KB | FS |
13
13
| [ nrf52820] ( nrf52820.md ) | M4 | 64 MHz | 32 KB | 256 KB | FS |
Original file line number Diff line number Diff line change 1
1
# lpc4322 HIC
2
2
3
3
Based on LPC4322JET100E chip ([ Data Sheet] ( https://www.nxp.com/docs/en/data-sheet/LPC435X_3X_2X_1X.pdf ) ):
4
- - Cortex-M4 204 Mhz
4
+ - Cortex-M4 204 Mhz (currently run at 120 MHz)
5
5
- 512 KB Flash
6
6
- 104 KB RAM
7
7
- High-speed USB 2.0 device controller
@@ -16,7 +16,7 @@ Based on LPC4322JET100E chip ([Data Sheet](https://www.nxp.com/docs/en/data-shee
16
16
17
17
Bootloader size is 64 KB
18
18
19
- ## DAPLink default pin assignment
19
+ ## DAPLink default pin assignment
20
20
21
21
| Signal | I/O | Symbol | Pin |
22
22
| -------------| :---:| ---------| :---:|
Original file line number Diff line number Diff line change 8
8
- CORE_M4
9
9
- INTERNAL_FLASH
10
10
- DAPLINK_HIC_ID=0x97969905 # DAPLINK_HIC_ID_LPC4322
11
- - OS_CLOCK=96000000
11
+ - OS_CLOCK=120000000
12
12
includes :
13
13
- source/hic_hal/nxp/lpc4322
14
14
- source/hic_hal/nxp/lpc4322/RTE_Driver
Original file line number Diff line number Diff line change 24
24
25
25
void sdk_init (void )
26
26
{
27
- /* Set core clock to 96MHz */
28
- CGU_Init (96000000 );
27
+ /* Set core clock to 120MHz */
28
+ CGU_Init (120000000 );
29
29
/* Set up USB0 clock */
30
30
/* Disable PLL first */
31
31
CGU_EnableEntity (CGU_CLKSRC_PLL0 , DISABLE );
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ uint32_t CGU_Init(uint32_t wantedFreq)
244
244
// Setup PLL1 to 204MHz
245
245
// 0. Select IRC as BASE_M4_CLK source
246
246
CGU_EntityConnect (CGU_CLKSRC_IRC , CGU_BASE_M4 );
247
- SystemCoreClock = 96000000 ;
247
+ SystemCoreClock = 120000000 ;
248
248
// 1. Enable the crystal oscillator
249
249
CGU_SetXTALOSC (12000000 );
250
250
CGU_EnableEntity (CGU_CLKSRC_XTAL_OSC , ENABLE );
You can’t perform that action at this time.
0 commit comments