Skip to content

[mbed-os-5.15] Bring in MIMXRT1050_EVK changes from feature-wisun branch #14326

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
1167e23
MIMXRT1050: Update the drivers to SDK 2.6
mmahadevan108 Oct 23, 2019
3cfb54e
MIMXRT1050: Use __ramfunc keyword to copy functions to RAM
mmahadevan108 Nov 7, 2019
fe53fd4
MIMXRT1050: Update the device files to SDK 2.6
mmahadevan108 Oct 23, 2019
9b99e70
MIMXRT1050: Update linker scripts & startup files from SDK 2.6
mmahadevan108 Oct 24, 2019
81f9694
MIMXRT1050: Update the ENET PHY driver from SDK 2.6
mmahadevan108 Oct 24, 2019
325ac43
MIMXRT1050: Update the clock driver to SDK 2.6
mmahadevan108 Oct 24, 2019
31d0b2e
MIMXRT1050: Update the mbed_overrides file
mmahadevan108 Oct 24, 2019
2183a93
MIMXRT1050: Update the XIP file from SDK 2.6
mmahadevan108 Oct 24, 2019
60f6150
MIMXRT1050: Update the low power driver to SDK 2.6
mmahadevan108 Oct 24, 2019
835c668
MXRT1050: Do not switch 24M source to reduce latency
mmahadevan108 Dec 12, 2019
606fbf1
MIMXRT1050: Update target configuration
mmahadevan108 Oct 24, 2019
4bb42d8
MIMXRT1050: Update the ENET driver to use wait_us
mmahadevan108 Oct 24, 2019
a00e679
MXRT: Update GPIO IRQ hal driver
mmahadevan108 Oct 24, 2019
875fa4b
MXRT: Update the LPTimer driver
mmahadevan108 Oct 28, 2019
9de7c3e
MIMXRT1050: Update the usticker driver
mmahadevan108 Nov 8, 2019
1f47123
MIMXRT1050: Update UART driver
mmahadevan108 Nov 15, 2019
1138bd2
Update MXRT sleep function
mmahadevan108 Oct 30, 2019
0566f1a
MXRT1050: Formatting update
mmahadevan108 Oct 30, 2019
aa05cf8
MIMXRT1050: Add Watchdog support
mmahadevan108 Jan 22, 2020
c55096e
MXRT1050: Update Flexspi driver to move functions to RAM
mmahadevan108 Oct 28, 2019
3b89e0a
MXRT1050: Add support for Flash driver
mmahadevan108 Oct 28, 2019
6b03a08
MIMXRT1050: Reduce NOR size used by mbed-os
mmahadevan108 Jan 15, 2020
b629804
MIMXRT1050: Enable FlashIAP support
mmahadevan108 Feb 3, 2020
91a6694
MXRT1050: Add bootloader support
mmahadevan108 Feb 3, 2020
4b10afc
MIMXRT1050: Update for deep sleep latency
mmahadevan108 Feb 4, 2020
91a5aa2
targets:MIMXRT1050: Add QSPI Flash boot support
liugang-gavin Apr 2, 2020
d2d0b3b
targets:TARGET_IMX: Fix the flash init risk
liugang-gavin Apr 2, 2020
007d393
targets:TARGET_IMX: Fix the memset issue for FLASHIAP
liugang-gavin Apr 2, 2020
299abb7
targets:MIMXRT1050: Add QSPI Flash FLASHIAP support
liugang-gavin Apr 3, 2020
0a60f9b
targets:MIMXRT1050: Update link file for application
liugang-gavin Mar 29, 2020
9c7ccd2
targets:MIMXRT1050: Add LPSPI4 support
liugang-gavin Apr 8, 2020
c80b05a
targets:lpspi: Update the lpspi driver and api
Tim-Wang38 Jun 3, 2020
889d852
targets:uart: Add uart_3 support
Tim-Wang38 Jun 9, 2020
ec9c75e
targets: clock: change default core clock to 528M
Tim-Wang38 Aug 4, 2020
903e083
targets:clock: Update the coreclock value
Tim-Wang38 Aug 4, 2020
98b1f0f
targets:RT1050: Fix the low speed switch issue
Tim-Wang38 Aug 28, 2020
376b7e3
targets:RT1050: Fix the flash erase and program issue for qspi nor fl…
Tim-Wang38 Sep 8, 2020
55a1465
targets:evkbimxrt1050: Adjust the SEMC re-order rules
liugang-gavin Nov 19, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
"S5JS100": {
"base-address": "0x40EF5000",
"size": "0x80000"
},
"MIMXRT1050_EVK": {
"base-address": "0x60400000",
"size": "0x3C00000"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ void kinetis_init_eth_hardware(void)
/* pull up the ENET_INT before RESET. */
GPIO_WritePinOutput(GPIO1, 10, 1);
GPIO_WritePinOutput(GPIO1, 9, 0);
wait_ms(1);
wait_us(1 * 1000);
GPIO_WritePinOutput(GPIO1, 9, 1);
}

Expand Down
Loading