Synchronize upstream changes - May 2023 edition (#160)
* fix STM32L1 FLASH_SIZE for cat.3 devices with DEV_ID 0x436

* Fix mesh connect semaphore not releasing causing blockage

* Add support of NSAPI_ICMP sockets in Nanostack

* STM32F1: add MCU_STM32F103xD support

* STM32F1: add MCU_STM32F103xG support

* test: Disable failing tests due to echo server

Some tests are failing as echo.mbedcloudtesting.com is not serving TLS
requests anymore.

Signed-off-by: Saheer Babu <saheer.babu@arm.com>

* Check CAN DLC length value

* Fix default interface ID only being used partially

If user sets the default interface ID for a socket (e.g. using setsockopt
with SOCKET_INTERFACE_SELECT), the default interface should take over
other interface selection mechanisms as a interface is bound to the socket.
This applies for both IPv6 local and global scopes for unicast messages
but not for multicast messages as these are bound to a multicast interface
using SOCKET_IPV6_MULTICAST_IF socket option.

* Targets: NXP: IMXRT: Fixed GCC_ARM lds syntax.

Signed-off-by: Yilin Sun <imi415@imi.moe>

* CAN: read only up to 8 bytes

If HAL implementation writes more than 8 bytes of data, error immediately.
CANMessage defines only 8 bytes of data, lenght cannot be > 8.

This fixes https://github.com/ARMmbed/mbed-os/issues/15361

Signed-off-by: Martin Kojtal <martin.kojtal@arm.com>

* STM32F303xC: add RAM_CCM in GCC linker script

* fix(drivers/emac): Remove incorrect RMII RX ER initialization

* fix(drivers/emac): Add missing SPDX indetifier to ST driver files

* fixed compiler inline issue

* Update Mbed version block

* removed HSE speed limitation for STM32G431RB

* Added HSE range validation for STM32g431xB

* added support for 4, 8 and 16MHz

* M487: Remove unused variable 'u32EscapeFrame'

Remove unused variable 'u32EscapeFrame' in BSP m480_ccap.h to avoid warnings

* force FIFO IRQ for FDCan RX on H7

* Add hardware CRC support to STM32G4

* add support for Nucleo-H745ZI

* Update MAX32670 peripheral drivers with final ones that use by SDK

Signed-off-by: Sadik.Ozer <sadik.ozer@analog.com>

* MAX32670 apply mbed required changes on peripheral drivers

Signed-off-by: Sadik.Ozer <sadik.ozer@analog.com>

* M467: Support CAN bus

1.  Update BSP CANFD driver
2.  Notes for implementation
    (1) Each CANFD instance supports two IRQ lines. Use only line 0. Line 1 is not used.
    (2) For Rx disabling multiple filter handles,
        1)  Map all filter handles to filter handle 0
        2)  Use Rx FIFO 0 for filter handle 0
    (3) For Rx enabling multiple filter handles,
        1)  Use Rx FIFO 0 for filter handle 0
        2)  Use Rx FIFO 1 for filter handle through first invoking can_filter()
        3)  Use dedicated Rx Buffer for other filter handles
        NOTE: H/W supports mask on Rx FIFO 0/1 but not on dedicated Rx Buffer.
    (4) For Tx, use only dedicated Tx Buffer. BSP CANFD driver doesn't support Tx FIFO/Queue.
    (5) Support no CAN FD.

* Fix 'new[]' array freed with 'delete'

The array _scratch_buf is allocated using new[] in line 761 of
mbed-os/storage/kvstore/securestore/source/SecureStore.cpp.
But it was freed using delete.

* Define default parameters of functions of derived class the same as the base class

The member function bringup() of class ThreadInterface redefines
parameter stack's default value to IPV6_STACK from the inherited default value
DEFAULT_STACK (in Interface).
The default value will be resolved statically, not by dispatch, so this
can cause confusion.
Similar arguments apply to LoWPANNDInterface and WisunInterface.

* Avoid calling virtual functions from constructors and destructors

Virtual functions are resolved statically (not dynamically) in
constructors and destructors for the same class. The call should be made
explicitly static by qualifying it using the scope resolution operator.

* Fix potentially overrunning write of sprintf

Format string "%d" requires 12 bytes (including the null terminator).
Also, use snprintf instead of sprintf to prevent buffer overflow.

* Fix system_clock.c location

Signed-off-by: Jasper Jonker <jasper.jonker@wingtra.com>

* Fix variable name

Signed-off-by: Jasper <jasper.jonker@wingtra.com>

* Change storage-class of secret_buf to static

Storing the address of a local variable (`secret_buf`)
in non-local memory (`prf_ptr->secret`) can cause a
dangling pointer bug if the address is used after the function returns.

* fix compiling errors of FATFileSystem when exFAT was enabled

* Add OSPI support for STM32H7

* Nuvoton: Enable extending sampling time for ADC/EADC

For all Nuvoton targets, enable extending sampling time in ADC/EADC clocks on per-pin basis.

---------

Signed-off-by: Saheer Babu <saheer.babu@arm.com>
Signed-off-by: Yilin Sun <imi415@imi.moe>
Signed-off-by: Martin Kojtal <martin.kojtal@arm.com>
Signed-off-by: Sadik.Ozer <sadik.ozer@analog.com>
Signed-off-by: Jasper Jonker <jasper.jonker@wingtra.com>
Signed-off-by: Jasper <jasper.jonker@wingtra.com>
Co-authored-by: caodd <caodd1993@qq.com>
Co-authored-by: YannCharbon <yann.charbon@ik.me>
Co-authored-by: Jerome Coutant <jerome.coutant@st.com>
Co-authored-by: Saheer Babu <saheer.babu@arm.com>
Co-authored-by: Martyx00 <martin.petran@protonmail.com>
Co-authored-by: Yilin Sun <imi415@imi.moe>
Co-authored-by: Martin Kojtal <martin.kojtal@arm.com>
Co-authored-by: akiroz <akiroz.vectis@gmail.com>
Co-authored-by: Charles <hallard04@free.fr>
Co-authored-by: Leonard Chiang <leochiang2002@gmail.com>
Co-authored-by: Chun-Chieh Li <ccli8@nuvoton.com>
Co-authored-by: jmcloud <jmcloud@tesla.com>
Co-authored-by: Augusto Zanellato <augusto.zanellato@gmail.com>
Co-authored-by: Sadik.Ozer <sadik.ozer@analog.com>
Co-authored-by: Mingjie Shen <shen497@purdue.edu>
Co-authored-by: Jasper Jonker <jasper.jonker@wingtra.com>
Co-authored-by: wdx04 <wdx04@outlook.com>
ls
1 parent 6e2e7b9 commit 3f7d67c64ca5557e3b3f1998b16a2d95ccf576db
@Jamie Smith Jamie Smith authored on 17 May
GitHub committed on 17 May
Showing 196 changed files
View
connectivity/drivers/cellular/GEMALTO/CINTERION/GEMALTO_CINTERION_CellularStack.cpp
Too large (Show diff)
View
connectivity/drivers/emac/TARGET_STM/TARGET_STM32F2/TARGET_NUCLEO_F207ZG/stm32f2_eth_init.c
Too large (Show diff)
View
connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_ARCH_MAX/stm32f4_eth_init.c
Too large (Show diff)
View
connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_NUCLEO_F429ZI/stm32f4_eth_init.c
Too large (Show diff)
View
connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_NUCLEO_F439ZI/stm32f4_eth_init.c
Too large (Show diff)
View
connectivity/drivers/emac/TARGET_STM/TARGET_STM32F7/TARGET_DISCO_F746NG/stm32f7_eth_init.c
Too large (Show diff)
View
connectivity/drivers/emac/TARGET_STM/TARGET_STM32F7/TARGET_DISCO_F769NI/stm32f7_eth_init.c
Too large (Show diff)
View
connectivity/drivers/emac/TARGET_STM/TARGET_STM32F7/TARGET_NUCLEO_F746ZG/stm32f7_eth_init.c
Too large (Show diff)
View
connectivity/drivers/emac/TARGET_STM/TARGET_STM32F7/TARGET_NUCLEO_F756ZG/stm32f7_eth_init.c
Too large (Show diff)
View
connectivity/drivers/emac/TARGET_STM/TARGET_STM32F7/TARGET_NUCLEO_F767ZI/stm32f7_eth_init.c
Too large (Show diff)
View
connectivity/nanostack/include/nanostack-interface/Nanostack.h
Too large (Show diff)
View
connectivity/nanostack/mbed-mesh-api/source/LoWPANNDInterface.cpp
Too large (Show diff)
View
connectivity/nanostack/mbed-mesh-api/source/MeshInterfaceNanostack.cpp
Too large (Show diff)
View
connectivity/nanostack/mbed-mesh-api/source/ThreadInterface.cpp
Too large (Show diff)
View
connectivity/nanostack/mbed-mesh-api/source/WisunInterface.cpp
Too large (Show diff)
View
connectivity/nanostack/sal-stack-nanostack/source/Core/ns_socket.c
Too large (Show diff)
View
connectivity/nanostack/sal-stack-nanostack/source/Security/TLS/tls_lib.c
Too large (Show diff)
View
connectivity/nanostack/source/Nanostack.cpp
Too large (Show diff)
View
connectivity/netsocket/source/TLSSocketWrapper.cpp
Too large (Show diff)
View
connectivity/netsocket/tests/TESTS/netsocket/tls/main.cpp
Too large (Show diff)
View
drivers/source/CAN.cpp
Too large (Show diff)
View
drivers/source/SPI.cpp
Too large (Show diff)
View
platform/include/platform/mbed_version.h
Too large (Show diff)
View
storage/filesystem/fat/ChaN/ff.cpp
Too large (Show diff)
View
storage/filesystem/source/Dir.cpp
Too large (Show diff)
View
storage/filesystem/source/File.cpp
Too large (Show diff)
View
storage/kvstore/securestore/source/SecureStore.cpp
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/CMakeLists.txt
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/aes_key_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/aes_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/aeskeys_regs.h 0 → 100644
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/crc_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/dma_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/ecc_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/emcc_regs.h 100644 → 0
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/fcr_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/flc_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/gcfr_regs.h 100644 → 0
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/gcr_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/gpio_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/i2c_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/i2s_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/icc_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/max32670.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/mcr_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/pwrseq_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/rtc_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/sir_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/spi_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/system_max32670.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/tmr_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/trng_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/uart_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Include/wdt_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/CMSIS/Device/Maxim/MAX32670/Source/system_max32670.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/crc.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/dma.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/flc.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/gpio.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/i2s.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/icc.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/lp.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/mxc_aes.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/mxc_assert.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/mxc_delay.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/mxc_device.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/mxc_errors.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/mxc_i2c.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/mxc_lock.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/mxc_pins.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/mxc_spi.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/mxc_sys.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/rtc.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/tmr.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/trng.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/uart.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Include/MAX32670/wdt.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/AES/aes_key_revb_regs.h 100644 → 0
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/AES/aes_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/AES/aes_revb.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/AES/aes_revb.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/AES/aes_revb_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/AES/aeskeys_revb_regs.h 0 → 100644
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/CRC/crc_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/CRC/crc_reva.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/CRC/crc_reva.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/CRC/crc_reva_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/DMA/dma_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/DMA/dma_reva.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/DMA/dma_reva.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/DMA/dma_reva_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/FLC/flc_common.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/FLC/flc_common.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/FLC/flc_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/FLC/flc_reva.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/FLC/flc_reva.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/FLC/flc_reva_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/FLC/flc_revb.c 100644 → 0
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/FLC/flc_revb.h 100644 → 0
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/FLC/flc_revb_regs.h 100644 → 0
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/GPIO/gpio_common.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/GPIO/gpio_common.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/GPIO/gpio_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/GPIO/gpio_reva.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/GPIO/gpio_reva.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/GPIO/gpio_reva_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/I2C/i2c_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/I2C/i2c_reva.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/I2C/i2c_reva.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/I2C/i2c_reva_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/I2S/i2s_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/I2S/i2s_reva.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/I2S/i2s_reva.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/I2S/i2s_reva_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/ICC/icc_common.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/ICC/icc_common.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/ICC/icc_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/ICC/icc_reva.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/ICC/icc_reva.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/ICC/icc_reva_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/LP/lp_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/RTC/rtc_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/RTC/rtc_reva.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/RTC/rtc_reva.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/RTC/rtc_reva_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/SPI/spi_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/SPI/spi_reva.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/SPI/spi_reva.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/SPI/spi_reva_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/SYS/mxc_assert.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/SYS/mxc_delay.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/SYS/mxc_lock.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/SYS/pins_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/SYS/sys_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/TMR/tmr_common.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/TMR/tmr_common.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/TMR/tmr_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/TMR/tmr_revb.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/TMR/tmr_revb.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/TMR/tmr_revb_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/TRNG/trng_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/TRNG/trng_revb.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/TRNG/trng_revb.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/TRNG/trng_revb_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/UART/uart_common.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/UART/uart_common.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/UART/uart_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/UART/uart_revb.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/UART/uart_revb.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/UART/uart_revb_regs.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/WDT/wdt_common.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/WDT/wdt_me15.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/WDT/wdt_revb.c
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/WDT/wdt_revb.h
Too large (Show diff)
View
targets/TARGET_Maxim/TARGET_MAX32670/Libraries/PeriphDrivers/Source/WDT/wdt_revb_regs.h
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_M2354/analogin_api.c
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_M251/analogin_api.c
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_M261/analogin_api.c
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_M451/analogin_api.c
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_M460/CMakeLists.txt
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_M460/README.md
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_M460/analogin_api.c
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_M460/can_api.c 0 → 100644
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_M460/device/StdDriver/inc/m460_canfd.h
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_M460/device/StdDriver/src/m460_canfd.c
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_M460/objects.h
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_M480/analogin_api.c
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_M480/device/StdDriver/inc/m480_ccap.h
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_NANO100/analogin_api.c
Too large (Show diff)
View
targets/TARGET_NUVOTON/TARGET_NUC472/analogin_api.c
Too large (Show diff)
View
targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1170/device/TOOLCHAIN_GCC_ARM/MIMXRT1170xxxxx.ld
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xD/TOOLCHAIN_ARM/startup_stm32f103xe.S 0 → 100644
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xD/TOOLCHAIN_ARM/stm32f103xd.sct 0 → 100644
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xD/TOOLCHAIN_IAR/startup_stm32f103xe.S 0 → 100644
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xD/TOOLCHAIN_IAR/stm32f103xd.icf 0 → 100644
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xG/TOOLCHAIN_ARM/startup_stm32f103xg.S 0 → 100644
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xG/TOOLCHAIN_ARM/stm32f103xg.sct 0 → 100644
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xG/TOOLCHAIN_IAR/startup_stm32f103xg.S 0 → 100644
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xG/TOOLCHAIN_IAR/stm32f103xg.icf 0 → 100644
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32F1/pin_device.h
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xC/TOOLCHAIN_GCC_ARM/STM32F303XC.ld
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32G4/TARGET_STM32G431xB/system_clock.c
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32G4/objects.h
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32H7/TARGET_STM32H723xG/CMakeLists.txt
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32H7/TARGET_STM32H723xG/TARGET_NUCLEO_H723ZG/CMakeLists.txt
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32H7/TARGET_STM32H723xG/cmsis_nvic.h
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32H7/TARGET_STM32H745xI/TARGET_NUCLEO_H745ZI_Q/CMakeLists.txt 0 → 100644
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32H7/TARGET_STM32H745xI/TARGET_NUCLEO_H745ZI_Q/PeripheralPins.c 0 → 100644
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32H7/TARGET_STM32H745xI/TARGET_NUCLEO_H745ZI_Q/PinNames.h 0 → 100644
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32H7/TARGET_STM32H745xI/system_clock.c
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32H7/objects.h
Too large (Show diff)
View
targets/TARGET_STM/TARGET_STM32L1/STM32Cube_FW/STM32L1xx_HAL_Driver/stm32l1xx_hal_flash.h
Too large (Show diff)
View
targets/TARGET_STM/can_api.c
Too large (Show diff)
View
targets/TARGET_STM/i2c_api.c
Too large (Show diff)
View
targets/TARGET_STM/ospi_api.c
Too large (Show diff)
View
targets/targets.json
Too large (Show diff)