Skip to content
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

[pull] master from ARMmbed:master #173

Open
wants to merge 340 commits into
base: master
Choose a base branch
from
Open
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Sep 1, 2022

  1. Support Nuvoton target NUMAKER_IOT_M467

    1.  Based on alpha version BSP (85564a2716548e7b6d6a79a490c6d94a24cf9bcf)
    2.  Continuing above, tweak BSP:
        (1) Add EPWM_ConfigOutputChannel2() to enable below 1Hz and below 1% duty cycle for PWM output (m460_epwm.h/c).
        (2) Add dummy RTC_WaitAccessEnable() for consistency with previous ports (m460_rtc.h).
    3.  Target NuMaker-M467HJ V0.1 board temporarily
    4.  Support Arduino UNO form factor for NUMAKER_IOT_M467 target
    5.  Enable export to Keil/IAR project
        -   tools/arm_pack_manager/index.json
        -   tools/export/iar/iar_definitions.json
    ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    df77485 View commit details
    Browse the repository at this point in the history
  2. M467: Fix Greentea reset_reason test failure

    HRESETRF is combined reset flag. Filter it out to avoid interference with reset reason check.
    ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    8da2e31 View commit details
    Browse the repository at this point in the history
  3. M467: Support HyperRAM

    1.  For GCC, support multi-block .data/.bss initialization
    2.  HyperRAM is mapped to two regions: 0x0A000000 and 0x80000000
        According to default system address map, 0x0A000000 is located at 'Code' region and 0x80000000 at 'RAM' region.
        With MPU enabled on Mbed OS, 'Code' region is write-never and 'RAM' region execute-never.
        0x80000000 is chosen because 'RAM' regioin is naturally for HyperRAM.
    3.  Configurable multi-function pins for HBI
    4.  To locate code/data at external HyperRAM:
        -   Specify __attribute__((section(".text.nu.exthyperram"))) for RO/.text/readonly section type
            Invoke mbed_mpu_manager_lock_ram_execution()/mbed_mpu_manager_unlock_ram_execution() to run HyperRAM code
        -   Specify __attribute__((section(".data.nu.exthyperram"))) for RW/.data/readwrite section type
        -   Specify __attribute__((section(".bss.nu.exthyperram"))) for ZI/.bss/zeroinit section type
    5.  Add readme
    ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    0494866 View commit details
    Browse the repository at this point in the history
  4. Config for M460 EMAC

    cyliangtw authored and ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    501aa00 View commit details
    Browse the repository at this point in the history
  5. Add M460 EMAC driver

    cyliangtw authored and ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    877541d View commit details
    Browse the repository at this point in the history
  6. Adjust M460 EMAC RX/TX buffer

    cyliangtw authored and ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    679c747 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ec2c155 View commit details
    Browse the repository at this point in the history
  8. M467: Support Crypto SHA/ECC H/W

    1.  Prepare crypto common code
    2.  Support list
        -   SHA
        -   ECC
        NOTE: AES/RSA are to support in other works
        NOTE: Compared to M487, M467's SHA supports context save & restore (DMA Cascade mode) and so no software fallback is needed.
        NOTE: M467's ECC, following M487, goes partial-module replacement and it can just improve primitives e.g. point addition/doubling by 2X,
              and cannot improve high level point multiplication because MbedTLS doesn’t open it.
              To improve performance best, full-module replacement is needed.
        NOTE: Continuing above, add support for Montgomery curve
    ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    24b0feb View commit details
    Browse the repository at this point in the history
  9. M467 H/W AES self-test pass

    cyliangtw authored and ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    627a0b4 View commit details
    Browse the repository at this point in the history
  10. M467 Support crypto GCM H/W

    cyliangtw authored and ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    9dc7cd2 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    9f01968 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    655ec90 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    3fe95b2 View commit details
    Browse the repository at this point in the history
  14. M467: Improve Crypto H/W wait helper routine

    Add crypto_xxx_wait2 helper routine to replace crypto_xxx_wait for Crypto H/W control
    ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    d92d75e View commit details
    Browse the repository at this point in the history
  15. M467: Seed PRNG with TRNG for SCAP

    According to TRM, it is suggested PRNG be seeded by TRNG on every Crypto H/W reset.
    ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    21970e3 View commit details
    Browse the repository at this point in the history
  16. M467: Support Crypto RSA H/W

    1.  Crypto RSA H/W supports 1024/2048/3072/4096 key bits. Fall back to software implementation for other key bits.
    2.  For decrypt, if MBEDTLS_RSA_NO_CRT isn't defined, go CRT, or normal.
    3.  For decrypt, when blinding (f_rng != NULL), enable SCAP mode.
    4.  Recover from Crypto RSA H/W failure:
        (1) Enable timed-out wait to escape from RSA H/W trap
        (2) On RSA H/W timeout, stop this RSA H/W operation
        (3) Fall back to S/W implementation on failure
    
    NOTE: RSA 4096 key bits can fail with default mbedtls configuration MBEDTLS_MPI_MAX_SIZE.
          Enlarge MBEDTLS_MPI_MAX_SIZE to 1024 or larger if this feature is required.
    NOTE: Fixed in BSP RSA driver, for non-CRT+SCAP mode, temporary buffer for MADDR6 requires to be key length plus 128 bits.
    NOTE: Fixed in BSP RSA driver, DMA buffer must be 4-word aligned, or RSA H/W will trap.
    ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    88a5291 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    a430d70 View commit details
    Browse the repository at this point in the history
  18. M467: Support Crypto ECC H/W in full-module replacement

    1.  Replace ecp.c full-module, and other ec modules dependent on ecp.c (ecdh.c/ecdsa.c/ecjpake.c) will improve followingly.
    2.  Recover from Crypto ECC H/W failure:
        (1) Enable timed-out wait to escape from ECC H/W trap
        (2) On ECC H/W timeout, stop this ECC H/W operation
        (3) Fall back to S/W implementation on failure
    3.  Support Short Weierstrass curve
    4.  Support Montgomery curve
        Montgomery curve has the form: B y^2 = x^3 + A x^2 + x
        (1) In S/W impl, A is used as (A + 2) / 4. Figure out its original value for engine.
            https://github.com/ARMmbed/mbed-os/blob/2eb06e76208588afc6cb7580a8dd64c5429a10ce/connectivity/mbedtls/include/mbedtls/ecp.h#L219-L220
        (2) In S/W impl, B is unused. Actually, B is 1 for Curve25519/Curve448 and needs to configure to engine.
            https://github.com/ARMmbed/mbed-os/blob/2eb06e76208588afc6cb7580a8dd64c5429a10ce/connectivity/mbedtls/include/mbedtls/ecp.h#L221-L222
        (3) In S/W impl, y-coord is absent, but engine needs it. Deduce it from x-coord following:
            https://tools.ietf.org/id/draft-jivsov-ecc-compact-05.html
            https://www.rieselprime.de/ziki/Modular_square_root
        NOTE: Fix Curve448 has wrong order value
              Mbed-TLS/mbedtls#5811
    ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    087daea View commit details
    Browse the repository at this point in the history
  19. M467: Disable SCAP in RSA H/W

    This is to follow designer's resolution.
    ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    196d106 View commit details
    Browse the repository at this point in the history
  20. M467: support fullspeed usb device

    cyliangtw authored and ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    2f8b60d View commit details
    Browse the repository at this point in the history
  21. M467: Fix mbedtls_ecp_point_cmp() call with null argument

    Guard from null argument passed to mbedtls_ecp_point_cmp() in ECC H/W port
    ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    1dd9546 View commit details
    Browse the repository at this point in the history
  22. M467: Make mbedtls H/W port removable

    Some M460 chips don't support AES/SHA/ECC/RSA H/W.
    Make them removable from mbedtls H/W port through '"target.macros_remove": ["MBEDTLS_CONFIG_HW_SUPPORT"]'.
    ccli8 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    e8dd9f4 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2022

  1. Added TMPM4NR Platform

    New Platform for Toshiba Added
    Deepak V. Shreshti authored and Deepak V. Shreshti committed Sep 8, 2022
    Configuration menu
    Copy the full SHA
    2a72a70 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2022

  1. Removed UTF8 Chars

    Deepak V. Shreshti authored and Deepak V. Shreshti committed Sep 9, 2022
    Configuration menu
    Copy the full SHA
    c5ca907 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2022

  1. M467: I2C: Fix potential role switch failure

    Fix in i2c_do_trsn(), interrupt doesn't change back to enabled due to premature return.
    ccli8 committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    42cfb84 View commit details
    Browse the repository at this point in the history
  2. M467: Exclude UNO SPI pins from FPGA CI Test Shield test

    UNO D8/D9/D10/D11/D12/D13 can wire to on-board SPI flash.
    Exclude these pins from FPGA CI Test Shield test.
    ccli8 committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    a0a5086 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    eaaec1c View commit details
    Browse the repository at this point in the history
  4. M467: Support NuMaker-IoT-M467 board

    Pinout comparison between NuMaker-M467HJ and NuMaker-IoT-M467 boards:
    1.  UNO are unchanged
    2.  LEDs are unchanged
    3.  Buttons are unchanged, except button names
    4.  NuMaker-M467HJ has HBI but NuMaker-IoT-M467 does
    5.  NuMaker-M467HJ doesn't have ESP8266 but NuMaker-IoT-M467 does
    6.  SDHC are unchanged
    ccli8 committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    5ba8afb View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2022

  1. Nuvoton: I2C: Fix potential role switch failure

    Fix in i2c_do_trsn(), interrupt doesn't change back to enabled due to premature return.
    
    Fix targets:
    -   NUMAKER_PFM_NANO130
    -   NUMAKER_PFM_NUC472
    -   NUMAKER_PFM_M453
    -   NUMAKER_PFM_M487/NUMAKER_IOT_M487
    -   NUMAKER_IOT_M252
    -   NUMAKER_IOT_M263A
    -   NU_M2354
    ccli8 committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    dbc0f5b View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2022

  1. Merge pull request #15333 from OpenNuvoton/nuvoton_fix_i2c_role_switch

    Nuvoton: I2C: Fix potential role switch failure
    0xc0170 authored Sep 26, 2022
    Configuration menu
    Copy the full SHA
    7bb01c1 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2022

  1. Merge pull request #15330 from deepak-shreshti/master

    Add TMPM4NR Platform
    0xc0170 authored Sep 27, 2022
    Configuration menu
    Copy the full SHA
    e4e1c10 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15329 from YannCharbon/master

    Add complete support of DHCP relay interface ID option
    0xc0170 authored Sep 27, 2022
    Configuration menu
    Copy the full SHA
    881a901 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2022

  1. Update can_api.c

    Modified comment as discussed.
    chdelfs authored Oct 12, 2022
    Configuration menu
    Copy the full SHA
    9cd4854 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2022

  1. Configuration menu
    Copy the full SHA
    733512d View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2022

  1. Replace MAX32660, MAX32670 I2C driver with final one in MSDK

    - apply clang-format
    - Fix i2c repeated start issue
    
    Signed-off-by: Sadik.Ozer <[email protected]>
    ozersa committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    fb1d9c2 View commit details
    Browse the repository at this point in the history
  2. Add proper support for NUCLEO-H723ZG.

    - add board specific EMAC setup to connectivity/drivers/emac/TARGET_STM/TARGET_STM32H7
      - stm32h7_eth_init.c was derived from the NUCLEO-H743ZI2 code whilst comparing to the output of STM32CubeIDE
    - complete board specific code in targets/TARGET_STM/TARGET_STM32H7/TARGET_STM32H723xG
      - PeripheralPins.c and PinNames.h were created by targets/TARGET_STM/tools/STM32_gen_PeripheralPins.py
      - ST ZIO connector pins in PinNames.h have been adapted from NUCLEO-H743ZI2
      - CONSOLE_TX and CONSOLE_RX have been interchanged in PinNames.h to match the actual board layout
      - startup_stm32h723xx.S was derived from startup_stm32h743xx.S
      - stm32h723xg.ld was completely rewritten to match the actual MCU including:
        - split heap support
        - SRAM2 and SRAM4 support
        - crash dump support
        - proper use of DTCM as stack
      - system_clock.c has been changed to support the maximal main clock speed of 550 MHz
    - fix handling of HS in FS mode for the target board in targets/TARGET_STM/USBPhy_STM32.cpp
    - add board definition to targets/targets.json and correct linker setup for the chip
    
    Signed-off-by: Daniel Starke <[email protected]>
    daniel-starke committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    53d043d View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2022

  1. Fix I2C for MCU_STM32H723xG

    Add I2C configuration to MCU_STM32H723xG in target.json as suggested by @jeromecoutant.
    
    Signed-off-by: Daniel Starke <[email protected]>
    daniel-starke committed Oct 28, 2022
    Configuration menu
    Copy the full SHA
    540d78e View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2022

  1. Correct MAX32620 boards macro for USB library.

    Ahmet Alincak authored and Ahmet Alincak committed Oct 31, 2022
    Configuration menu
    Copy the full SHA
    1432f81 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15341 from MaximIntegrated/update-i2c-driver

    Replace MAX32660, MAX32670 I2C driver with final one in MSDK
    0xc0170 authored Oct 31, 2022
    Configuration menu
    Copy the full SHA
    f0643b1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #15344 from MaximIntegrated/master

    Correct MAX32620 boards macro for USB library.
    0xc0170 authored Oct 31, 2022
    Configuration menu
    Copy the full SHA
    4f156de View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2022

  1. Merge pull request #15317 from chdelfs/master

    Fix for calculating CAN timing settings for STM32
    0xc0170 authored Nov 2, 2022
    Configuration menu
    Copy the full SHA
    102d2f8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15337 from OpenNuvoton/nuvoton_m467_iot

    Nuvoton: Support new target NUMAKER_IOT_M467
    0xc0170 authored Nov 2, 2022
    Configuration menu
    Copy the full SHA
    90837c5 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2022

  1. Limit NUCLEO_H723ZG toolchain to GCC_ARM

    Limit NUCLEO_H723ZG toolchain to GCC_ARM only.
    This is the only toolchain this target has been tested with yet.
    
    Signed-off-by: Daniel Starke <[email protected]>
    daniel-starke committed Nov 10, 2022
    Configuration menu
    Copy the full SHA
    ffcfa2f View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2022

  1. Merge pull request #15343 from daniel-starke/complete-nucleo-h723zg

    Add proper support for NUCLEO-H723ZG.
    0xc0170 authored Nov 16, 2022
    Configuration menu
    Copy the full SHA
    7ab5260 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2022

  1. Configuration menu
    Copy the full SHA
    89ddd3f View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2022

  1. Merge pull request #15352 from OpenNuvoton/nuvoton_m2354_usbd

    M2354: Support FS-USBD
    0xc0170 authored Nov 25, 2022
    Configuration menu
    Copy the full SHA
    7d16811 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2022

  1. Configuration menu
    Copy the full SHA
    0751932 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    63fbaaf View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2022

  1. Configuration menu
    Copy the full SHA
    0c2ee4f View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2022

  1. Added TMPM4GR Platform

    New Platform for Toshiba Added
    Deepak V. Shreshti authored and Deepak V. Shreshti committed Nov 30, 2022
    Configuration menu
    Copy the full SHA
    92bfbcc View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2022

  1. Resolve delimeter issues for target.json

    Deepak V. Shreshti authored and Deepak V. Shreshti committed Dec 1, 2022
    Configuration menu
    Copy the full SHA
    e4db5d1 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2022

  1. Configuration menu
    Copy the full SHA
    d59c34b View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2022

  1. Merge pull request #15350 from mbed-ce/upstreamed/rethink-stm32-i2c-hal

    Rethink STM32 I2C v2 HAL
    0xc0170 authored Dec 5, 2022
    Configuration menu
    Copy the full SHA
    d4df713 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2022

  1. Merge pull request #15353 from deepak-shreshti/master

    Add TMPM4GR Platform
    0xc0170 authored Dec 6, 2022
    Configuration menu
    Copy the full SHA
    da7c0b7 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2022

  1. github: Fix click version

    Signed-off-by: Martin Kojtal <[email protected]>
    0xc0170 committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    239a210 View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2022

  1. Merge pull request #15357 from 0xc0170/dev/martin.kojtal/fix-scancode…

    …-error-version
    
    scancode: Limit click version to <8
    0xc0170 authored Dec 23, 2022
    Configuration menu
    Copy the full SHA
    c299c8b View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2023

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

    Signed-off-by: Yilin Sun <[email protected]>
    imi415 committed Jan 2, 2023
    Configuration menu
    Copy the full SHA
    91ce405 View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2023

  1. scancode: Fix license index failure

    Signed-off-by: Martin Kojtal <[email protected]>
    0xc0170 committed Jan 3, 2023
    Configuration menu
    Copy the full SHA
    8e23ea9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15363 from 0xc0170/fix/martin.kojtal/scancode-lic…

    …ense-index
    
    scancode: Fix license index failure
    0xc0170 authored Jan 3, 2023
    Configuration menu
    Copy the full SHA
    149d444 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    74ca88b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    95f874a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f3f030e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    aa7bf3e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d327f3f View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2023

  1. Configuration menu
    Copy the full SHA
    c80da53 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2023

  1. Merge pull request #15368 from caoddx/fix_stm32l1_flash_size

    fix STM32L1 FLASH_SIZE for cat.3 devices with DEV_ID 0x436
    0xc0170 authored Jan 5, 2023
    Configuration menu
    Copy the full SHA
    b1d5fba View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15367 from YannCharbon/wisun_fix

    Fix mesh connect semaphore not releasing causing blockage
    0xc0170 authored Jan 5, 2023
    Configuration menu
    Copy the full SHA
    751fe9d View commit details
    Browse the repository at this point in the history
  3. Merge pull request #15366 from YannCharbon/icmp_sockets

    Add support of NSAPI_ICMP sockets in Nanostack
    0xc0170 authored Jan 5, 2023
    Configuration menu
    Copy the full SHA
    06566fc View commit details
    Browse the repository at this point in the history
  4. Merge pull request #15356 from jeromecoutant/PR_F103XE

    STM32F1: add MCU_STM32F103xD and MCU_STM32F103xG support
    0xc0170 authored Jan 5, 2023
    Configuration menu
    Copy the full SHA
    2e506ba View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2023

  1. 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 <[email protected]>
    saheerb committed Jan 6, 2023
    Configuration menu
    Copy the full SHA
    4e28fbf View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2023

  1. 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.
    YannCharbon committed Jan 10, 2023
    Configuration menu
    Copy the full SHA
    b8b638d View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2023

  1. Merge pull request #15369 from saheerb/master

    test: Disable failing tests due to echo server
    0xc0170 authored Jan 16, 2023
    Configuration menu
    Copy the full SHA
    81f40fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d76d5b8 View commit details
    Browse the repository at this point in the history
  3. Check CAN DLC length value

    Martyx00 authored Jan 16, 2023
    Configuration menu
    Copy the full SHA
    b6de6bc View commit details
    Browse the repository at this point in the history
  4. Merge pull request #15373 from Martyx00/master

    Check CAN DLC length value
    0xc0170 authored Jan 16, 2023
    Configuration menu
    Copy the full SHA
    b5c2124 View commit details
    Browse the repository at this point in the history
  5. 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 #15361
    
    Signed-off-by: Martin Kojtal <[email protected]>
    0xc0170 committed Jan 16, 2023
    Configuration menu
    Copy the full SHA
    518eb6d View commit details
    Browse the repository at this point in the history
  6. Merge pull request #15370 from YannCharbon/sockopt_interface_id

    Fix socket default interface ID only being used partially
    0xc0170 authored Jan 16, 2023
    Configuration menu
    Copy the full SHA
    a852898 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2023

  1. Merge pull request #15355 from imi415/imxrt_ldscript_syntax

    Targets: NXP: IMXRT: Fixed GCC_ARM lds syntax.
    0xc0170 authored Jan 17, 2023
    Configuration menu
    Copy the full SHA
    1dd0bce View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2023

  1. Configuration menu
    Copy the full SHA
    8c8aa1c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    495506d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1ce13cb View commit details
    Browse the repository at this point in the history
  4. Merge pull request #15374 from 0xc0170/dev/martin.kojtal/fix-can-leng…

    …ht-message
    
    CAN: read can do only up to 8 bytes, error if more is reported
    0xc0170 authored Jan 23, 2023
    Configuration menu
    Copy the full SHA
    b10783c View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2023

  1. Configuration menu
    Copy the full SHA
    0431f16 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15378 from jeromecoutant/PR_F303

    STM32F303xC: correct RAM size
    0xc0170 authored Jan 26, 2023
    Configuration menu
    Copy the full SHA
    0ca0db4 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2023

  1. Merge pull request #15358 from akiroz/fix-stm32-emac-rmii-pins

    fix(drivers/emac): [mbed6] Remove incorrect RMII RX ER initialization
    saheerb authored Feb 1, 2023
    Configuration menu
    Copy the full SHA
    5c8e60f View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2023

  1. Change temp to uint32_t in serial_format

    Fix bug where calling set_format in MBED (which calls serial_format) causes the CTRL register to become corrupt due to saving its initial value to a uint8_t when the register is 32 bit wide
    grumpyengineer authored Feb 21, 2023
    Configuration menu
    Copy the full SHA
    e167992 View commit details
    Browse the repository at this point in the history
  2. Change temp to uint32_t in serial_format

    Fix bug where calling set_format in MBED (which calls serial_format) causes the CTRL register to become corrupt due to saving its initial value to a uint8_t when the register is 32 bit wide
    grumpyengineer authored Feb 21, 2023
    Configuration menu
    Copy the full SHA
    fbf4ac0 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2023

  1. fixed compiler inline issue

    hallard authored Feb 22, 2023
    Configuration menu
    Copy the full SHA
    e55852c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15382 from grumpyengineer/MIMXRT1050-lpuart

    Mimxrt1050 lpuart
    0xc0170 authored Feb 22, 2023
    Configuration menu
    Copy the full SHA
    e0c6c44 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2023

  1. Merge pull request #15383 from hallard/patch-1

    fix STM I2C compiler inline issue
    0xc0170 authored Feb 23, 2023
    Configuration menu
    Copy the full SHA
    be0de13 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    195873f View commit details
    Browse the repository at this point in the history
  3. Update Mbed version block

    saheerb committed Feb 23, 2023
    Configuration menu
    Copy the full SHA
    17dc3dc View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2023

  1. Configuration menu
    Copy the full SHA
    7c87d7c View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2023

  1. Configuration menu
    Copy the full SHA
    7fcec27 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2023

  1. Configuration menu
    Copy the full SHA
    ac8204c View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2023

  1. Merge pull request #15385 from UNSW-Sunswift/master

    Added extra HSE Values for STM32G431xB
    0xc0170 authored Mar 8, 2023
    Configuration menu
    Copy the full SHA
    7e3ea68 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2023

  1. M487: Remove unused variable 'u32EscapeFrame'

    Remove unused variable 'u32EscapeFrame' in BSP m480_ccap.h to avoid warnings
    ccli8 committed Mar 9, 2023
    Configuration menu
    Copy the full SHA
    e638da4 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2023

  1. Merge pull request #15388 from OpenNuvoton/nuvoton_remove_unused_vari…

    …able
    
    M487: Remove unused variable 'u32EscapeFrame'
    saheerb authored Mar 15, 2023
    Configuration menu
    Copy the full SHA
    5801b16 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7551315 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2023

  1. Configuration menu
    Copy the full SHA
    e7fb3b8 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2023

  1. force FIFO IRQ for FDCan RX on H7

    jmcloud committed Apr 5, 2023
    Configuration menu
    Copy the full SHA
    1bb1036 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2023

  1. Merge pull request #15398 from jtmyz9/STMH7-FDCAN-RX-IRQ

    force FIFO IRQ for FDCan RX on H7
    0xc0170 authored Apr 6, 2023
    Configuration menu
    Copy the full SHA
    3aab43f View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2023

  1. Merge pull request #15394 from mbed-ce/upstreamed/stm32-i2c-repeated-…

    …start-fix
    
    Fix repeated start for transactional I2C API on STM32 devices with I2C v2
    0xc0170 authored Apr 11, 2023
    Configuration menu
    Copy the full SHA
    65f45cd View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15392 from augustozanellato/stm32g4_hw_crc

    Add hardware CRC support to STM32G4
    0xc0170 authored Apr 11, 2023
    Configuration menu
    Copy the full SHA
    ce13e1c View commit details
    Browse the repository at this point in the history
  3. add support for Nucleo-H745ZI

    jmcloud committed Apr 11, 2023
    Configuration menu
    Copy the full SHA
    fba9f98 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2023

  1. Merge pull request #15396 from jtmyz9/target-Nucleo-h745

    Target: buildable target for Nucleo-h745 board
    0xc0170 authored Apr 12, 2023
    Configuration menu
    Copy the full SHA
    975dfcf View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2023

  1. 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.
    ccli8 committed Apr 13, 2023
    Configuration menu
    Copy the full SHA
    d3b7a07 View commit details
    Browse the repository at this point in the history
  2. MAX32670 apply mbed required changes on peripheral drivers

    Signed-off-by: Sadik.Ozer <[email protected]>
    ozersa committed Apr 13, 2023
    Configuration menu
    Copy the full SHA
    a50a444 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2023

  1. 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.
    szsam committed Apr 19, 2023
    Configuration menu
    Copy the full SHA
    4c3928e View commit details
    Browse the repository at this point in the history
  2. 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.
    szsam committed Apr 19, 2023
    Configuration menu
    Copy the full SHA
    65b14f7 View commit details
    Browse the repository at this point in the history
  3. Define default parameters of functions of derived class the same as t…

    …he 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.
    szsam committed Apr 19, 2023
    Configuration menu
    Copy the full SHA
    3a46630 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #15399 from MaximIntegrated/dev-update_max32670_sdk

    Update max32670 sdk files
    0xc0170 authored Apr 19, 2023
    Configuration menu
    Copy the full SHA
    8628604 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #15400 from OpenNuvoton/nuvoton_m467_can

    M467: Support CAN bus
    0xc0170 authored Apr 19, 2023
    Configuration menu
    Copy the full SHA
    fe56b43 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #15402 from IVOES/fix-new-array-delete-mismatch

    Fix 'new[]' array freed with 'delete'
    0xc0170 authored Apr 19, 2023
    Configuration menu
    Copy the full SHA
    5db6bcc View commit details
    Browse the repository at this point in the history
  7. Merge pull request #15403 from IVOES/fix-redefined-default-parameter

    Define default parameters of functions of derived class the same as t…
    0xc0170 authored Apr 19, 2023
    Configuration menu
    Copy the full SHA
    d0ca14e View commit details
    Browse the repository at this point in the history
  8. 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.
    szsam committed Apr 19, 2023
    Configuration menu
    Copy the full SHA
    c958d1d View commit details
    Browse the repository at this point in the history
  9. 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.
    szsam committed Apr 19, 2023
    Configuration menu
    Copy the full SHA
    1b77cda View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2023

  1. Fix null pointer dereferencing

    Add null check for return values of functions that are mostly (but not
    always) checked for null.
    E.g., since 98% of calls to protocol_stack_interface_info_get_by_id
    check for null, it is likely that the function can return null values in
    some cases, and omitting the check could crash the program.
    szsam committed Apr 20, 2023
    Configuration menu
    Copy the full SHA
    378f2f5 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2023

  1. Fix system_clock.c location

    Signed-off-by: Jasper Jonker <[email protected]>
    jasperjonker committed Apr 21, 2023
    Configuration menu
    Copy the full SHA
    5f9f8f3 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2023

  1. Fix variable name

    Signed-off-by: Jasper <[email protected]>
    jasperjonker committed Apr 22, 2023
    Configuration menu
    Copy the full SHA
    d2fdd6f View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2023

  1. Merge pull request #15401 from IVOES/fix-virtual-call-in-constructor

    Avoid calling virtual functions from constructors and destructors
    0xc0170 authored Apr 26, 2023
    Configuration menu
    Copy the full SHA
    9a82ad6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15404 from IVOES/fix-overrunning-write

    Fix potentially overrunning write of sprintf
    0xc0170 authored Apr 26, 2023
    Configuration menu
    Copy the full SHA
    0ea5dec View commit details
    Browse the repository at this point in the history
  3. Merge pull request #15407 from jasperjonker/fix/stm32h723

    system_clock.c location for stm32h723xg
    0xc0170 authored Apr 26, 2023
    Configuration menu
    Copy the full SHA
    00df0a3 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2023

  1. drivers/usb: Add missing dependency on mbed-events

    The compiler complained:
    
        In file included from .../mbed-os/drivers/usb/source/USBCDC_ECM.cpp:19:
        .../mbed-os/drivers/usb/include/usb/USBCDC_ECM.h:27:10: fatal error: events/EventQueue.h: No such file or directory
           27 | #include "events/EventQueue.h"
              |          ^~~~~~~~~~~~~~~~~~~~~
    thirtythreeforty committed May 1, 2023
    Configuration menu
    Copy the full SHA
    4b07fc6 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2023

  1. Configuration menu
    Copy the full SHA
    be862ed View commit details
    Browse the repository at this point in the history

Commits on May 3, 2023

  1. Add OSPI support for STM32H7

    wdx04 committed May 3, 2023
    Configuration menu
    Copy the full SHA
    b22d510 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2023

  1. Configuration menu
    Copy the full SHA
    3c17881 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2023

  1. Merge pull request #15416 from thirtythreeforty/fixup-usb

    drivers/usb: Add missing dependency on mbed-events
    0xc0170 authored May 5, 2023
    Configuration menu
    Copy the full SHA
    a987273 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15405 from IVOES/fix-stack-address-escape

    Change storage-class of secret_buf to static
    0xc0170 authored May 5, 2023
    Configuration menu
    Copy the full SHA
    70dced2 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #15412 from MultiTechSystems/update-arm-pack-manager

    Add MAX32670 to tools/arm-pack-manager/index.json for bootloader support
    0xc0170 authored May 5, 2023
    Configuration menu
    Copy the full SHA
    48a89f1 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #15415 from wdx04/fix_exfat

    fix compiling errors of FATFileSystem when exFAT was enabled
    0xc0170 authored May 5, 2023
    Configuration menu
    Copy the full SHA
    952c286 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2023

  1. Merge pull request #15414 from wdx04/stm32h7_ospi

    Add OSPI support for STM32H7
    0xc0170 authored May 8, 2023
    Configuration menu
    Copy the full SHA
    cc39261 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2023

  1. Configuration menu
    Copy the full SHA
    9f0ede4 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2023

  1. Nuvoton: Enable extending sampling time for ADC/EADC

    For all Nuvoton targets, enable extending sampling time in ADC/EADC clocks on per-pin basis.
    ccli8 committed May 15, 2023
    Configuration menu
    Copy the full SHA
    91a1b59 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3f4b177 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2023

  1. Merge pull request #15422 from OpenNuvoton/nuvoton_eadc_extend_sample…

    …_time
    
    Nuvoton: Enable configurability for extending sampling time for ADC/EADC
    0xc0170 authored May 16, 2023
    Configuration menu
    Copy the full SHA
    8779918 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2023

  1. Merge pull request #15420 from jeromecoutant/PR_U5_120

    STM32U5: STM32Cube_FW_U5_V1.2.0
    0xc0170 authored May 17, 2023
    Configuration menu
    Copy the full SHA
    b5692fd View commit details
    Browse the repository at this point in the history
  2. Apply MAX32660 delta

    Update mbed hal function as per of SDK update
    
    Signed-off-by: Sadik.Ozer <[email protected]>
    ozersa committed May 17, 2023
    Configuration menu
    Copy the full SHA
    d42b9b3 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2023

  1. LWIP::get_ip_addr: Prefer IPv4 over IPv6 link local addresses

    When IPv6 is prefered it will choose a link local address on a network
    that lacks IPv6 over a working IPv4 network, breaking networking.
    Change this behaviour to prefer a link local address only as a last
    resort.
    
    This also changes LWIP::get_ipv6_addr to not return link local
    addresses. Use get_ipv6_link_local_addr instead for this.
    Jookia committed May 18, 2023
    Configuration menu
    Copy the full SHA
    06593d3 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2023

  1. Merge pull request #15406 from IVOES/fix-null-check

    Fix null pointer dereferencing
    0xc0170 authored May 22, 2023
    Configuration menu
    Copy the full SHA
    1768ad9 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2023

  1. Merge pull request #15421 from MaximIntegrated/dev-update_max32660_sdk

    Update max32660 sdk files
    0xc0170 authored May 25, 2023
    Configuration menu
    Copy the full SHA
    3a08a45 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2023

  1. Merge pull request #15423 from Jookia/RFC_ipv6fix

    LWIP::get_ip_addr: Prefer IPv4 over IPv6 link local addresses
    0xc0170 authored May 30, 2023
    Configuration menu
    Copy the full SHA
    95f3f93 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2023

  1. scancode: version >31.2.4 contains fix for reindexing

    The workaround is not needed anymore (v32 is breaking this reindexing as they created new command to do that anyway).
    0xc0170 authored Jun 1, 2023
    Configuration menu
    Copy the full SHA
    633a833 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15430 from ARMmbed/0xc0170-patch-scancode

    scancode: version >31.2.4 contains fix for reindexing
    0xc0170 authored Jun 1, 2023
    Configuration menu
    Copy the full SHA
    9bff970 View commit details
    Browse the repository at this point in the history
  3. Do not clear interrupt flag during initialization

    This causes issue for repeaded initialization while using BufferedSerial mode
    
    Signed-off-by: Sadik.Ozer <[email protected]>
    ozersa committed Jun 1, 2023
    Configuration menu
    Copy the full SHA
    0eac033 View commit details
    Browse the repository at this point in the history
  4. MAX32660, MAX32670 UART performance improvement

    Signed-off-by: Sadik.Ozer <[email protected]>
    ozersa committed Jun 1, 2023
    Configuration menu
    Copy the full SHA
    bdec190 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2023

  1. M2354: Fix debug failure in Mbed Studio

    In Mbed Studio, debugging, based on pyOCD, requires Mbed OS application code starting on the sector boundary.
    
    Modification list:
    1.  Update TF-M import assets with MCUboot header padding to sector aligned
    2.  Following above, change header size argument (-H) in wrapper.py command line
    3.  Following below, fix min-write-size (--align) to 4 (per flash_area_align()) in wrapper.py command line
        https://docs.mcuboot.com/design.html#image-trailer
    
    Related issue:
    #15417
    ccli8 committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    8b69a94 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2023

  1. Merge pull request #15427 from OpenNuvoton/nuvoton_m2354_mcuboot_head…

    …er_sector_boundary
    
    M2354: Fix debug failure in Mbed Studio
    saheerb authored Jun 7, 2023
    Configuration menu
    Copy the full SHA
    3b07e53 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f347b89 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2023

  1. Handle negative values passed to close()

    Calling close() with negative numbers causes out-of-bounds indexing of the filehandles array. For example, this can happen if open() returns an error and the value is later passed to close().
    alrvid authored Jun 14, 2023
    Configuration menu
    Copy the full SHA
    7e206a9 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2023

  1. Moved a { to the same line as if

    Moved a { to the same line as if
    alrvid authored Jun 15, 2023
    Configuration menu
    Copy the full SHA
    56ca532 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2023

  1. doc: Update README to include production usage warning

    Signed-off-by: Saheer Babu <[email protected]>
    saheerb committed Jun 27, 2023
    Configuration menu
    Copy the full SHA
    9d0f085 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15432 from saheerb/master

    doc: Update README to include production usage warning
    0xc0170 authored Jun 27, 2023
    Configuration menu
    Copy the full SHA
    0b85b72 View commit details
    Browse the repository at this point in the history
  3. doc: Provide mbed_die example for security considerations

    Signed-off-by: Saheer Babu <[email protected]>
    saheerb committed Jun 27, 2023
    Configuration menu
    Copy the full SHA
    564eb05 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2023

  1. Merge pull request #15433 from saheerb/master

    doc: Provide mbed_die example for security considerations
    saheerb authored Jun 30, 2023
    Configuration menu
    Copy the full SHA
    89c1705 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2023

  1. Merge pull request #15431 from alrvid/patch-1

    Handle negative values passed to close()
    0xc0170 authored Jul 3, 2023
    Configuration menu
    Copy the full SHA
    f9c0cd2 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2023

  1. Configuration menu
    Copy the full SHA
    67d845b View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2023

  1. Merge pull request #15435 from chrJost/TCP_reset_flag

    add nullpointer check in LWIP::socket_close
    0xc0170 authored Jul 11, 2023
    Configuration menu
    Copy the full SHA
    13f43cc View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2023

  1. connectivity: drivers: Update Nuvoton M467 EMAC DMA_IE ctl

    In IRQ Handler, to disable some interrupt type of DMA error.
    It could avoid unexpected repeated interrupt.The masked bit of
    DMA_IE could be recovered in next EMAC IRQ event.
    
    Signed-off-by: cyliang tw <[email protected]>
    cyliangtw committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    5837179 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Configuration menu
    Copy the full SHA
    306c93d View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2023

  1. Configuration menu
    Copy the full SHA
    5558225 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    02b5737 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2023

  1. Merge pull request #15447 from josephduchesne/stm32g473-fdcan3-irq-crash

    Fix crash when using FDCAN3 RX IRQ on STM32G473 (and others)
    0xc0170 authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    1720397 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15438 from OpenNuvoton/nvt_m467_emac

    connectivity: drivers: Update Nuvoton M467 EMAC DMA_IE ctl
    0xc0170 authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    3c1f0d5 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #15446 from mak22223/master

    Add fix for STM32G4 hardfault in sleep mode
    0xc0170 authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    dba734f View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2023

  1. Merge pull request #15443 from hallard/STM32Cube_FW_WL_V1.3.0

    STM32WL update drivers version to CUBE V1.3.0
    0xc0170 authored Aug 21, 2023
    Configuration menu
    Copy the full SHA
    f0d9090 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2023

  1. Changed static to weak

    hallard committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    9271833 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2023

  1. Merge pull request #15448 from hallard/STM32_weak_deepsleep

    STM Sleep change dependency func from static to WEAK
    0xc0170 authored Aug 28, 2023
    Configuration menu
    Copy the full SHA
    67c25e8 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2023

  1. Fix: Do not disable SPI for manual drive mode during transaction setup

    It has been reported that disabling SPI module causes glitch for manual SS drive mode
    
    Signed-off-by: Sadik.Ozer <[email protected]>
    ozersa committed Sep 7, 2023
    Configuration menu
    Copy the full SHA
    cbe0f73 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2023

  1. Merge pull request #15453 from MaximIntegrated/fix-spi_glitch

    Fix MAX32660, MAX32670 SPI glitch fix
    0xc0170 authored Sep 13, 2023
    Configuration menu
    Copy the full SHA
    7049bfc View commit details
    Browse the repository at this point in the history
  2. make cellular event queue size configurable

    update unit tests
    LukasKarel committed Sep 13, 2023
    Configuration menu
    Copy the full SHA
    ab46d51 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2023

  1. Merge pull request #15454 from world-direct/feature/cellularevents

    make cellular event queue size configurable
    0xc0170 authored Sep 14, 2023
    Configuration menu
    Copy the full SHA
    b3a5d6a View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2023

  1. Configuration menu
    Copy the full SHA
    738419f View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. Merge pull request #15457 from chrJost/Console_Pin_Checks

    STM32: disable CONSOLE_* checks in for serial if no console available
    0xc0170 authored Oct 18, 2023
    Configuration menu
    Copy the full SHA
    1a036c2 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Configuration menu
    Copy the full SHA
    fcda884 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2023

  1. Configuration menu
    Copy the full SHA
    ae97837 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2023

  1. Configuration menu
    Copy the full SHA
    394cbee View commit details
    Browse the repository at this point in the history
  2. Add missing license header

    felser committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    27ab6d8 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Merge pull request #15459 from hallard/STM23WL_fix_preamble

    STM32WL LoRaWAN set downlink preamble length to 8
    0xc0170 authored Oct 25, 2023
    Configuration menu
    Copy the full SHA
    7c7d20d View commit details
    Browse the repository at this point in the history
  2. Remove commented out code

    felser committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    4ba13f1 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2023

  1. Configuration menu
    Copy the full SHA
    47ec87e View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Merge pull request #15458 from MultiTechSystems/xdot-max32670

    Add target support for XDOT_MAX32670
    0xc0170 authored Oct 31, 2023
    Configuration menu
    Copy the full SHA
    72f27ce View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2023

  1. Configuration menu
    Copy the full SHA
    9c3c88c View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2023

  1. Merge pull request #15461 from pavels/master

    TARGET_STM: only mask CAN rx interrupt after rx interrupt, not all CAN interrupts
    0xc0170 authored Nov 23, 2023
    Configuration menu
    Copy the full SHA
    08c7171 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2023

  1. Merge pull request #15464 from hallard/LoRaWAN_sleep_radio_scheduled_tx

    LoRaWAN fix over consumption on scheduled tx
    0xc0170 authored Nov 24, 2023
    Configuration menu
    Copy the full SHA
    36045bd View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2023

  1. Configuration menu
    Copy the full SHA
    2ebe0d5 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2023

  1. Merge pull request #15469 from cyliangtw/master

    TARGET_M480: Update targets.json to enable IAR support
    0xc0170 authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    30c2ea2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    deb09a3 View commit details
    Browse the repository at this point in the history
  3. Don't overlap STM32 FDCAN RAM sections

    jmcloud committed Nov 30, 2023
    Configuration menu
    Copy the full SHA
    9859c60 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

  1. Configuration menu
    Copy the full SHA
    794ee97 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1cccc7e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e2aed18 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. Configuration menu
    Copy the full SHA
    ca616c8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0ecb9bd View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2023

  1. Configuration menu
    Copy the full SHA
    c30af6a View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2023

  1. Configuration menu
    Copy the full SHA
    126d767 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Configuration menu
    Copy the full SHA
    772c5d3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15475 from OpenNuvoton/nvt_usbd_zlp

    Nuvoton: Bug fix of Nuvoton HUSBD driver's endpoint write
    0xc0170 authored Dec 14, 2023
    Configuration menu
    Copy the full SHA
    dd99580 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2023

  1. Merge pull request #15473 from cyliangtw/master

    USBCDC support ZLP
    0xc0170 authored Dec 19, 2023
    Configuration menu
    Copy the full SHA
    6403ec7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15472 from jtmyz9/jmcloud/STM32-use-more-than-one…

    …-fifo
    
    Don't overlap STM32 FDCAN RAM sections
    0xc0170 authored Dec 19, 2023
    Configuration menu
    Copy the full SHA
    61ab4f7 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2023

  1. Merge pull request #15471 from hallard/LoRaWAN_set_antenna_gain

    LoRaWAN allow to adapt antenna gain
    0xc0170 authored Dec 20, 2023
    Configuration menu
    Copy the full SHA
    baf6a30 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2024

  1. Configuration menu
    Copy the full SHA
    7f62c06 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

  1. Configuration menu
    Copy the full SHA
    8c0bc50 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. Configuration menu
    Copy the full SHA
    9385ec8 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2024

  1. Configuration menu
    Copy the full SHA
    c7ea9c1 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2024

  1. NUVOTON: EMAC: Fix undeclared function mbed_error_printf

    ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
    ccli8 committed Mar 15, 2024
    Configuration menu
    Copy the full SHA
    4712f9d View commit details
    Browse the repository at this point in the history
  2. NUVOTON: AnalogIn: Fix undeclared function gpio_set

    ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
    ccli8 committed Mar 15, 2024
    Configuration menu
    Copy the full SHA
    5a4a4fd View commit details
    Browse the repository at this point in the history
  3. NUVOTON: CAN: Fix undeclared function gpio_set

    ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
    ccli8 committed Mar 15, 2024
    Configuration menu
    Copy the full SHA
    1be9ff0 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2024

  1. NUVOTON: AnalogOut: Fix undeclared function gpio_set

    ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
    ccli8 committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    cf7a07f View commit details
    Browse the repository at this point in the history
  2. NUVOTON: SPI: Fix undeclared function gpio_set

    ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
    ccli8 committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    4366b68 View commit details
    Browse the repository at this point in the history
  3. NUVOTON: I2C: Fix undeclared function gpio_set

    ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
    ccli8 committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    25c0491 View commit details
    Browse the repository at this point in the history
  4. NUVOTON: Serial: Fix undeclared function gpio_set

    ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
    ccli8 committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    11d9997 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2024

  1. TFM: Fix undeclared function tfm_ns_interface_init

    ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
    ccli8 committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    7c43c6d View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. Add separate flags for I2C slave transfer in progress

    Fixes #15498
    
    Adds 2 boolean flags to the STM32 `i2c_s` object
    to indicate whether a transfer is in progress,
    separate from the existing "transfer pending" flags.
    
    `i2c_slave_write`, `i2c_slave_read` and their associated callbacks
    are modified to use these flags in addition to the pending flags.
    The original behavior of the pending flags is preserved.
    agausmann committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    dc49c2b View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2024

  1. Allow custom TCXO control parameter

    Allow custom TCXO control parameter
    hallard committed Apr 4, 2024
    Configuration menu
    Copy the full SHA
    61522fb View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2024

  1. Increase AT timeout to 10s in AT_CellularSMS::send_sms

    For some devices sending can be slow (as an example see SIM800, it can be up to 60s), command is being run properly but default timeout is returning an invalid error.
    See https://www.elecrow.com/wiki/images/2/20/SIM800_Series_AT_Command_Manual_V1.09.pdf
    davidalo committed Apr 5, 2024
    Configuration menu
    Copy the full SHA
    5c49f16 View commit details
    Browse the repository at this point in the history
  2. Increase AT timeout to 10s in AT_CellularSMS::get_sms

    When SMS list is big and baudrate is not fast enough, with default timeout we can suffer from timeout error while getting a sms because method is parsing the full list and this takes long.
    davidalo committed Apr 5, 2024
    Configuration menu
    Copy the full SHA
    d676084 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. Merge pull request #15484 from arunsathiya/master

    ci: Use GITHUB_OUTPUT envvar instead of set-output command
    0xc0170 authored Apr 12, 2024
    Configuration menu
    Copy the full SHA
    b5f1d3f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15501 from OpenNuvoton/tfm_fix_function_undeclare

    TFM: Fix undeclared function tfm_ns_interface_init
    0xc0170 authored Apr 12, 2024
    Configuration menu
    Copy the full SHA
    7ae592d View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. Configuration menu
    Copy the full SHA
    7cb61d9 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. NUVOTON: CAN: Fix filter mask

    NOTE: This fix only targets CAN (M453/M487), not CAN-FD (M467).
    NOTE: NUC472 CAN doesn't support filter.
    ccli8 committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    63bdb26 View commit details
    Browse the repository at this point in the history
  2. NUVOTON: CAN: Fix Rx interrupt doesn't work

    Major modifications:
    1. Handle Rx interrupt based on Message Object interrupt (CAN_IIDR=0x0001~0x0020) instead of CAN_STATUS.RxOK
    2. Also handle Tx interrupt following above for consistency
    
    Other related modifications:
    1. Fix signature type error in CAN_CLR_INT_PENDING_BIT()
    2. Add CAN_CLR_INT_PENDING_ONLY_BIT() which doesn't clear NewDat flag so that user can fetch received message in thread context
    
    NOTE: This fix only targets CAN (NUC472/M453/M487), not CAN-FD (M467).
    ccli8 committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    bfd4ceb View commit details
    Browse the repository at this point in the history
  3. NUVOTON: CAN: Fix Message Object number for Tx and recognition of Rx …

    …interrupt
    
    1.  The same Message Object number cannot use for both Tx and Rx simultaneously.
        For Tx, Message Object number 31 is reserved instead of 0.
        For Rx, Message Object numbers 0~30 are used and for filters.
    2.  NewDat bit (CAN_IsNewDataReceived()) isn't exclusive to Rx.
        Recognize Rx interrupt by Message Object number other than 31.
    
    NOTE: This fix only targets CAN (NUC472/M453/M487), not CAN-FD (M467).
    ccli8 committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    989a694 View commit details
    Browse the repository at this point in the history
  4. NUVOTON: CAN: Fix filter mask being zero

    On mask being zero, it means any match, not exact match.
    
    NOTE: This fix only targets CAN (M453/M487), not CAN-FD (M467).
    NOTE: NUC472 CAN doesn't support filter.
    ccli8 committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    c1c9550 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2024

  1. Merge pull request #15509 from OpenNuvoton/nuvoton_fix_can_interrupt

    NUVOTON: CAN: Fix Rx interrupt and filter mask
    0xc0170 authored Apr 23, 2024
    Configuration menu
    Copy the full SHA
    8502c74 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15503 from hallard/nordic_rak4630

    RAK4630 LoRaWAN Allow change TCXO control adding it as a parameter
    0xc0170 authored Apr 23, 2024
    Configuration menu
    Copy the full SHA
    98853ac View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. Merge pull request #15500 from OpenNuvoton/nuvoton_fix_function_undec…

    …lare
    
    NUVOTON: Fix undeclared function as error
    0xc0170 authored Apr 24, 2024
    Configuration menu
    Copy the full SHA
    95fee2f View commit details
    Browse the repository at this point in the history

Commits on May 3, 2024

  1. Added missing delete

    mattgbio committed May 3, 2024
    Configuration menu
    Copy the full SHA
    e7db584 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15499 from agausmann/i2c-slave-flags

    STM: Add separate flags for I2C slave transfer in progress
    0xc0170 authored May 3, 2024
    Configuration menu
    Copy the full SHA
    1060154 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #15496 from szsam/patch-1

    ESP8266: Fix accessing uninitialized variable
    0xc0170 authored May 3, 2024
    Configuration menu
    Copy the full SHA
    7e16b00 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2024

  1. Configuration menu
    Copy the full SHA
    a5abf7c View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. Configuration menu
    Copy the full SHA
    45e9efc View commit details
    Browse the repository at this point in the history

Commits on May 11, 2024

  1. Fix AT_CellularSMS::list_messages breaking in text mode when CRLF is …

    …contained in SMS payload text
    
    When parsing SMS, it can happen that we receive CRLF in the SMS payload (happened to me when receiving provider texts).
    As an example, we can receive:
    
    """
    Hello <CR><LF>
    World!
    """
    
    With previous implementation, second consume_to_stop_tag was stopping in <CR><LF> and rest of the code was failing for obvious reasons.
    With this commit we consume the full payload as bytes.
    davidalo committed May 11, 2024
    Configuration menu
    Copy the full SHA
    9e7e22d View commit details
    Browse the repository at this point in the history

Commits on May 16, 2024

  1. Added missing check for replay protection pointer before allocating n…

    …ew variable
    
    Problem: If a key with write-once flag is being set in a SecureStore without rollback-protection store (i.e. _rbp_kv == NULL), additional memory will be allocated for the variable _ih->key. The memory will not be deleted, though, as the delete in line 434 only happens if a rollback-protection store exists (i.e. _rbp_kv != NULL)
    
    Solution: Only allocate the memory if _rbp_kv != NULL
    
    Contribution is provided on behalf of BIOTRONIK.
    mattgbio committed May 16, 2024
    Configuration menu
    Copy the full SHA
    5fc4abe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    17a03ab View commit details
    Browse the repository at this point in the history

Commits on May 21, 2024

  1. Merge pull request #15512 from mattgbio/missing-delete-TDBStore

    TDBStore: Add missing delete for _inc_set_handle
    0xc0170 authored May 21, 2024
    Configuration menu
    Copy the full SHA
    e04a55f View commit details
    Browse the repository at this point in the history

Commits on May 22, 2024

  1. Configuration menu
    Copy the full SHA
    3746f5a View commit details
    Browse the repository at this point in the history
  2. skip CRC when initializing TDBStore

    Problem: The build_ram_table() function of TDBStore loops over every entry, calculates the checksum and compares them to the stored checksum in the entry header to ensure integrity. For larger TDBStores (e.g. 8 MiB or more) in external single-SPI flash devices this check can take very long, thus rendering it unusable in some cases.
    
    Solution: The suggested solution skips the time consuming CRC of the data. After reading the key and calculating its CRC, it sets next_offset to the beginning of the next entry, thereby skipping the data. While this skips the integrity check, it significantly reduces the initial building of the RAM table.
    
    The data CRC can be enabled or disabled with a compiler flag.
    
    Contribution is provided on behalf of BIOTRONIK.
    mattgbio committed May 22, 2024
    Configuration menu
    Copy the full SHA
    3082c28 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. Merge pull request #15493 from macronix/macronix_qspi_driver

    Add configurable status register number in mbed_lib.json for QSPIBlockDevice driver to support different Flash EPN
    0xc0170 authored May 27, 2024
    Configuration menu
    Copy the full SHA
    869f0d7 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2024

  1. Merge pull request #15515 from matkammusic/master

    Correct scan parameters types
    0xc0170 authored Jun 8, 2024
    Configuration menu
    Copy the full SHA
    5249bb9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15514 from mattgbio/skip-initial-crc-TDBStore

    TDBSTore: skip data CRC when building RAM table
    0xc0170 authored Jun 8, 2024
    Configuration menu
    Copy the full SHA
    5cb118b View commit details
    Browse the repository at this point in the history
  3. Merge pull request #15513 from mattgbio/check-rbp-SecureStore

    SecureStore: Add missing check for rollback-protection pointer before allocating memory
    0xc0170 authored Jun 8, 2024
    Configuration menu
    Copy the full SHA
    e3d2c56 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #15502 from mbed-ce/upstreamed/stm32h7x-clocking-f…

    …ixes
    
    Rework STM32H7x clocking configuration
    0xc0170 authored Jun 8, 2024
    Configuration menu
    Copy the full SHA
    945c3de View commit details
    Browse the repository at this point in the history
  5. Merge pull request #15477 from davidalo/fix-sms

    SMS: Increase timeout for send and get. Fix text SMS parsing when CRLF is contained in the text.
    0xc0170 authored Jun 8, 2024
    Configuration menu
    Copy the full SHA
    20340d7 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. Configuration menu
    Copy the full SHA
    46e8545 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2024

  1. docs: Add End of Life for Mbed notice

    * The Mbed platform and OS will reach end of life in July 2026,
      when the Mbed website will be archived and it will no longer
      be possible to build projects in our online tools.
    * The device software - Mbed OS - is open source and will remain
      publicly available, but is no longer actively maintained by Arm
    * The Mbed TLS project is unaffected by this announcement and
      continues to be supported as part of the TrustedFirmware
      community project.
    
    Signed-off-by: Hugues KAMBA MPIANA <[email protected]>
    hugueskamba committed Aug 20, 2024
    Configuration menu
    Copy the full SHA
    d83be9e View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2024

  1. Merge pull request #15523 from ARMmbed/dev/hugkam01/add-eof-notice

    docs: Add End of Life for Mbed notice
    0xc0170 authored Aug 26, 2024
    Configuration menu
    Copy the full SHA
    036ee2c View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2024

  1. M467: Fix invoking GPIO_SET_DEBOUNCE_TIME

    Fix missing gpio_base on invoking GPIO_SET_DEBOUNCE_TIME()
    ccli8 committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    a72075b View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. Merge pull request #15524 from ccli8/nuvoton_m467_gpio_set_debounce_time

    M467: Fix invoking GPIO_SET_DEBOUNCE_TIME
    0xc0170 authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    d84a97a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15521 from world-direct/feature/cellspam

    reduce spam on info log of cellular sockets
    0xc0170 authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    d723bf9 View commit details
    Browse the repository at this point in the history