-
Notifications
You must be signed in to change notification settings - Fork 0
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
base: master
Are you sure you want to change the base?
Commits on Sep 1, 2022
-
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
Configuration menu - View commit details
-
Copy full SHA for df77485 - Browse repository at this point
Copy the full SHA df77485View commit details -
M467: Fix Greentea reset_reason test failure
HRESETRF is combined reset flag. Filter it out to avoid interference with reset reason check.
Configuration menu - View commit details
-
Copy full SHA for 8da2e31 - Browse repository at this point
Copy the full SHA 8da2e31View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 0494866 - Browse repository at this point
Copy the full SHA 0494866View commit details -
Configuration menu - View commit details
-
Copy full SHA for 501aa00 - Browse repository at this point
Copy the full SHA 501aa00View commit details -
Configuration menu - View commit details
-
Copy full SHA for 877541d - Browse repository at this point
Copy the full SHA 877541dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 679c747 - Browse repository at this point
Copy the full SHA 679c747View commit details -
Configuration menu - View commit details
-
Copy full SHA for ec2c155 - Browse repository at this point
Copy the full SHA ec2c155View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 24b0feb - Browse repository at this point
Copy the full SHA 24b0febView commit details -
Configuration menu - View commit details
-
Copy full SHA for 627a0b4 - Browse repository at this point
Copy the full SHA 627a0b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9dc7cd2 - Browse repository at this point
Copy the full SHA 9dc7cd2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f01968 - Browse repository at this point
Copy the full SHA 9f01968View commit details -
Configuration menu - View commit details
-
Copy full SHA for 655ec90 - Browse repository at this point
Copy the full SHA 655ec90View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3fe95b2 - Browse repository at this point
Copy the full SHA 3fe95b2View commit details -
M467: Improve Crypto H/W wait helper routine
Add crypto_xxx_wait2 helper routine to replace crypto_xxx_wait for Crypto H/W control
Configuration menu - View commit details
-
Copy full SHA for d92d75e - Browse repository at this point
Copy the full SHA d92d75eView commit details -
M467: Seed PRNG with TRNG for SCAP
According to TRM, it is suggested PRNG be seeded by TRNG on every Crypto H/W reset.
Configuration menu - View commit details
-
Copy full SHA for 21970e3 - Browse repository at this point
Copy the full SHA 21970e3View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 88a5291 - Browse repository at this point
Copy the full SHA 88a5291View commit details -
Configuration menu - View commit details
-
Copy full SHA for a430d70 - Browse repository at this point
Copy the full SHA a430d70View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 087daea - Browse repository at this point
Copy the full SHA 087daeaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 196d106 - Browse repository at this point
Copy the full SHA 196d106View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f8b60d - Browse repository at this point
Copy the full SHA 2f8b60dView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 1dd9546 - Browse repository at this point
Copy the full SHA 1dd9546View commit details -
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"]'.
Configuration menu - View commit details
-
Copy full SHA for e8dd9f4 - Browse repository at this point
Copy the full SHA e8dd9f4View commit details
Commits on Sep 8, 2022
-
New Platform for Toshiba Added
Deepak V. Shreshti authored and Deepak V. Shreshti committedSep 8, 2022 Configuration menu - View commit details
-
Copy full SHA for 2a72a70 - Browse repository at this point
Copy the full SHA 2a72a70View commit details
Commits on Sep 9, 2022
-
Deepak V. Shreshti authored and Deepak V. Shreshti committed
Sep 9, 2022 Configuration menu - View commit details
-
Copy full SHA for c5ca907 - Browse repository at this point
Copy the full SHA c5ca907View commit details
Commits on Sep 22, 2022
-
M467: I2C: Fix potential role switch failure
Fix in i2c_do_trsn(), interrupt doesn't change back to enabled due to premature return.
Configuration menu - View commit details
-
Copy full SHA for 42cfb84 - Browse repository at this point
Copy the full SHA 42cfb84View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for a0a5086 - Browse repository at this point
Copy the full SHA a0a5086View commit details -
Configuration menu - View commit details
-
Copy full SHA for eaaec1c - Browse repository at this point
Copy the full SHA eaaec1cView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 5ba8afb - Browse repository at this point
Copy the full SHA 5ba8afbView commit details
Commits on Sep 23, 2022
-
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
Configuration menu - View commit details
-
Copy full SHA for dbc0f5b - Browse repository at this point
Copy the full SHA dbc0f5bView commit details
Commits on Sep 26, 2022
-
Merge pull request #15333 from OpenNuvoton/nuvoton_fix_i2c_role_switch
Nuvoton: I2C: Fix potential role switch failure
Configuration menu - View commit details
-
Copy full SHA for 7bb01c1 - Browse repository at this point
Copy the full SHA 7bb01c1View commit details
Commits on Sep 27, 2022
-
Merge pull request #15330 from deepak-shreshti/master
Add TMPM4NR Platform
Configuration menu - View commit details
-
Copy full SHA for e4e1c10 - Browse repository at this point
Copy the full SHA e4e1c10View commit details -
Merge pull request #15329 from YannCharbon/master
Add complete support of DHCP relay interface ID option
Configuration menu - View commit details
-
Copy full SHA for 881a901 - Browse repository at this point
Copy the full SHA 881a901View commit details
Commits on Oct 12, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 9cd4854 - Browse repository at this point
Copy the full SHA 9cd4854View commit details
Commits on Oct 19, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 733512d - Browse repository at this point
Copy the full SHA 733512dView commit details
Commits on Oct 27, 2022
-
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]>
Configuration menu - View commit details
-
Copy full SHA for fb1d9c2 - Browse repository at this point
Copy the full SHA fb1d9c2View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 53d043d - Browse repository at this point
Copy the full SHA 53d043dView commit details
Commits on Oct 28, 2022
-
Add I2C configuration to MCU_STM32H723xG in target.json as suggested by @jeromecoutant. Signed-off-by: Daniel Starke <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 540d78e - Browse repository at this point
Copy the full SHA 540d78eView commit details
Commits on Oct 31, 2022
-
Correct MAX32620 boards macro for USB library.
Ahmet Alincak authored and Ahmet Alincak committedOct 31, 2022 Configuration menu - View commit details
-
Copy full SHA for 1432f81 - Browse repository at this point
Copy the full SHA 1432f81View commit details -
Merge pull request #15341 from MaximIntegrated/update-i2c-driver
Replace MAX32660, MAX32670 I2C driver with final one in MSDK
Configuration menu - View commit details
-
Copy full SHA for f0643b1 - Browse repository at this point
Copy the full SHA f0643b1View commit details -
Merge pull request #15344 from MaximIntegrated/master
Correct MAX32620 boards macro for USB library.
Configuration menu - View commit details
-
Copy full SHA for 4f156de - Browse repository at this point
Copy the full SHA 4f156deView commit details
Commits on Nov 2, 2022
-
Merge pull request #15317 from chdelfs/master
Fix for calculating CAN timing settings for STM32
Configuration menu - View commit details
-
Copy full SHA for 102d2f8 - Browse repository at this point
Copy the full SHA 102d2f8View commit details -
Merge pull request #15337 from OpenNuvoton/nuvoton_m467_iot
Nuvoton: Support new target NUMAKER_IOT_M467
Configuration menu - View commit details
-
Copy full SHA for 90837c5 - Browse repository at this point
Copy the full SHA 90837c5View commit details
Commits on Nov 10, 2022
-
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]>
Configuration menu - View commit details
-
Copy full SHA for ffcfa2f - Browse repository at this point
Copy the full SHA ffcfa2fView commit details
Commits on Nov 16, 2022
-
Merge pull request #15343 from daniel-starke/complete-nucleo-h723zg
Add proper support for NUCLEO-H723ZG.
Configuration menu - View commit details
-
Copy full SHA for 7ab5260 - Browse repository at this point
Copy the full SHA 7ab5260View commit details
Commits on Nov 23, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 89ddd3f - Browse repository at this point
Copy the full SHA 89ddd3fView commit details
Commits on Nov 25, 2022
-
Merge pull request #15352 from OpenNuvoton/nuvoton_m2354_usbd
M2354: Support FS-USBD
Configuration menu - View commit details
-
Copy full SHA for 7d16811 - Browse repository at this point
Copy the full SHA 7d16811View commit details
Commits on Nov 28, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 0751932 - Browse repository at this point
Copy the full SHA 0751932View commit details -
Configuration menu - View commit details
-
Copy full SHA for 63fbaaf - Browse repository at this point
Copy the full SHA 63fbaafView commit details
Commits on Nov 29, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 0c2ee4f - Browse repository at this point
Copy the full SHA 0c2ee4fView commit details
Commits on Nov 30, 2022
-
New Platform for Toshiba Added
Deepak V. Shreshti authored and Deepak V. Shreshti committedNov 30, 2022 Configuration menu - View commit details
-
Copy full SHA for 92bfbcc - Browse repository at this point
Copy the full SHA 92bfbccView commit details
Commits on Dec 1, 2022
-
Resolve delimeter issues for target.json
Deepak V. Shreshti authored and Deepak V. Shreshti committedDec 1, 2022 Configuration menu - View commit details
-
Copy full SHA for e4db5d1 - Browse repository at this point
Copy the full SHA e4db5d1View commit details
Commits on Dec 4, 2022
-
Configuration menu - View commit details
-
Copy full SHA for d59c34b - Browse repository at this point
Copy the full SHA d59c34bView commit details
Commits on Dec 5, 2022
-
Merge pull request #15350 from mbed-ce/upstreamed/rethink-stm32-i2c-hal
Rethink STM32 I2C v2 HAL
Configuration menu - View commit details
-
Copy full SHA for d4df713 - Browse repository at this point
Copy the full SHA d4df713View commit details
Commits on Dec 6, 2022
-
Merge pull request #15353 from deepak-shreshti/master
Add TMPM4GR Platform
Configuration menu - View commit details
-
Copy full SHA for da7c0b7 - Browse repository at this point
Copy the full SHA da7c0b7View commit details
Commits on Dec 22, 2022
-
Signed-off-by: Martin Kojtal <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 239a210 - Browse repository at this point
Copy the full SHA 239a210View commit details
Commits on Dec 23, 2022
-
Merge pull request #15357 from 0xc0170/dev/martin.kojtal/fix-scancode…
…-error-version scancode: Limit click version to <8
Configuration menu - View commit details
-
Copy full SHA for c299c8b - Browse repository at this point
Copy the full SHA c299c8bView commit details
Commits on Jan 2, 2023
-
Targets: NXP: IMXRT: Fixed GCC_ARM lds syntax.
Signed-off-by: Yilin Sun <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 91ce405 - Browse repository at this point
Copy the full SHA 91ce405View commit details
Commits on Jan 3, 2023
-
scancode: Fix license index failure
Signed-off-by: Martin Kojtal <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8e23ea9 - Browse repository at this point
Copy the full SHA 8e23ea9View commit details -
Merge pull request #15363 from 0xc0170/fix/martin.kojtal/scancode-lic…
…ense-index scancode: Fix license index failure
Configuration menu - View commit details
-
Copy full SHA for 149d444 - Browse repository at this point
Copy the full SHA 149d444View commit details -
Configuration menu - View commit details
-
Copy full SHA for 74ca88b - Browse repository at this point
Copy the full SHA 74ca88bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 95f874a - Browse repository at this point
Copy the full SHA 95f874aView commit details -
Configuration menu - View commit details
-
Copy full SHA for f3f030e - Browse repository at this point
Copy the full SHA f3f030eView commit details -
Configuration menu - View commit details
-
Copy full SHA for aa7bf3e - Browse repository at this point
Copy the full SHA aa7bf3eView commit details -
Configuration menu - View commit details
-
Copy full SHA for d327f3f - Browse repository at this point
Copy the full SHA d327f3fView commit details
Commits on Jan 4, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c80da53 - Browse repository at this point
Copy the full SHA c80da53View commit details
Commits on Jan 5, 2023
-
Merge pull request #15368 from caoddx/fix_stm32l1_flash_size
fix STM32L1 FLASH_SIZE for cat.3 devices with DEV_ID 0x436
Configuration menu - View commit details
-
Copy full SHA for b1d5fba - Browse repository at this point
Copy the full SHA b1d5fbaView commit details -
Merge pull request #15367 from YannCharbon/wisun_fix
Fix mesh connect semaphore not releasing causing blockage
Configuration menu - View commit details
-
Copy full SHA for 751fe9d - Browse repository at this point
Copy the full SHA 751fe9dView commit details -
Merge pull request #15366 from YannCharbon/icmp_sockets
Add support of NSAPI_ICMP sockets in Nanostack
Configuration menu - View commit details
-
Copy full SHA for 06566fc - Browse repository at this point
Copy the full SHA 06566fcView commit details -
Merge pull request #15356 from jeromecoutant/PR_F103XE
STM32F1: add MCU_STM32F103xD and MCU_STM32F103xG support
Configuration menu - View commit details
-
Copy full SHA for 2e506ba - Browse repository at this point
Copy the full SHA 2e506baView commit details
Commits on Jan 6, 2023
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 4e28fbf - Browse repository at this point
Copy the full SHA 4e28fbfView commit details
Commits on Jan 10, 2023
-
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.
Configuration menu - View commit details
-
Copy full SHA for b8b638d - Browse repository at this point
Copy the full SHA b8b638dView commit details
Commits on Jan 16, 2023
-
Merge pull request #15369 from saheerb/master
test: Disable failing tests due to echo server
Configuration menu - View commit details
-
Copy full SHA for 81f40fc - Browse repository at this point
Copy the full SHA 81f40fcView commit details -
Configuration menu - View commit details
-
Copy full SHA for d76d5b8 - Browse repository at this point
Copy the full SHA d76d5b8View commit details -
Configuration menu - View commit details
-
Copy full SHA for b6de6bc - Browse repository at this point
Copy the full SHA b6de6bcView commit details -
Merge pull request #15373 from Martyx00/master
Check CAN DLC length value
Configuration menu - View commit details
-
Copy full SHA for b5c2124 - Browse repository at this point
Copy the full SHA b5c2124View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 518eb6d - Browse repository at this point
Copy the full SHA 518eb6dView commit details -
Merge pull request #15370 from YannCharbon/sockopt_interface_id
Fix socket default interface ID only being used partially
Configuration menu - View commit details
-
Copy full SHA for a852898 - Browse repository at this point
Copy the full SHA a852898View commit details
Commits on Jan 17, 2023
-
Merge pull request #15355 from imi415/imxrt_ldscript_syntax
Targets: NXP: IMXRT: Fixed GCC_ARM lds syntax.
Configuration menu - View commit details
-
Copy full SHA for 1dd0bce - Browse repository at this point
Copy the full SHA 1dd0bceView commit details
Commits on Jan 23, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8c8aa1c - Browse repository at this point
Copy the full SHA 8c8aa1cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 495506d - Browse repository at this point
Copy the full SHA 495506dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ce13cb - Browse repository at this point
Copy the full SHA 1ce13cbView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for b10783c - Browse repository at this point
Copy the full SHA b10783cView commit details
Commits on Jan 26, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0431f16 - Browse repository at this point
Copy the full SHA 0431f16View commit details -
Merge pull request #15378 from jeromecoutant/PR_F303
STM32F303xC: correct RAM size
Configuration menu - View commit details
-
Copy full SHA for 0ca0db4 - Browse repository at this point
Copy the full SHA 0ca0db4View commit details
Commits on Feb 1, 2023
-
Merge pull request #15358 from akiroz/fix-stm32-emac-rmii-pins
fix(drivers/emac): [mbed6] Remove incorrect RMII RX ER initialization
Configuration menu - View commit details
-
Copy full SHA for 5c8e60f - Browse repository at this point
Copy the full SHA 5c8e60fView commit details
Commits on Feb 21, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for e167992 - Browse repository at this point
Copy the full SHA e167992View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for fbf4ac0 - Browse repository at this point
Copy the full SHA fbf4ac0View commit details
Commits on Feb 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e55852c - Browse repository at this point
Copy the full SHA e55852cView commit details -
Merge pull request #15382 from grumpyengineer/MIMXRT1050-lpuart
Mimxrt1050 lpuart
Configuration menu - View commit details
-
Copy full SHA for e0c6c44 - Browse repository at this point
Copy the full SHA e0c6c44View commit details
Commits on Feb 23, 2023
-
Merge pull request #15383 from hallard/patch-1
fix STM I2C compiler inline issue
Configuration menu - View commit details
-
Copy full SHA for be0de13 - Browse repository at this point
Copy the full SHA be0de13View commit details -
Update MAX32670 peripheral drivers with final ones that use by SDK
Signed-off-by: Sadik.Ozer <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 195873f - Browse repository at this point
Copy the full SHA 195873fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 17dc3dc - Browse repository at this point
Copy the full SHA 17dc3dcView commit details
Commits on Feb 26, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 7c87d7c - Browse repository at this point
Copy the full SHA 7c87d7cView commit details
Commits on Mar 2, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 7fcec27 - Browse repository at this point
Copy the full SHA 7fcec27View commit details
Commits on Mar 4, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ac8204c - Browse repository at this point
Copy the full SHA ac8204cView commit details
Commits on Mar 8, 2023
-
Merge pull request #15385 from UNSW-Sunswift/master
Added extra HSE Values for STM32G431xB
Configuration menu - View commit details
-
Copy full SHA for 7e3ea68 - Browse repository at this point
Copy the full SHA 7e3ea68View commit details
Commits on Mar 9, 2023
-
M487: Remove unused variable 'u32EscapeFrame'
Remove unused variable 'u32EscapeFrame' in BSP m480_ccap.h to avoid warnings
Configuration menu - View commit details
-
Copy full SHA for e638da4 - Browse repository at this point
Copy the full SHA e638da4View commit details
Commits on Mar 15, 2023
-
Merge pull request #15388 from OpenNuvoton/nuvoton_remove_unused_vari…
…able M487: Remove unused variable 'u32EscapeFrame'
Configuration menu - View commit details
-
Copy full SHA for 5801b16 - Browse repository at this point
Copy the full SHA 5801b16View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7551315 - Browse repository at this point
Copy the full SHA 7551315View commit details
Commits on Mar 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e7fb3b8 - Browse repository at this point
Copy the full SHA e7fb3b8View commit details
Commits on Apr 5, 2023
-
force FIFO IRQ for FDCan RX on H7
jmcloud committedApr 5, 2023 Configuration menu - View commit details
-
Copy full SHA for 1bb1036 - Browse repository at this point
Copy the full SHA 1bb1036View commit details
Commits on Apr 6, 2023
-
Merge pull request #15398 from jtmyz9/STMH7-FDCAN-RX-IRQ
force FIFO IRQ for FDCan RX on H7
Configuration menu - View commit details
-
Copy full SHA for 3aab43f - Browse repository at this point
Copy the full SHA 3aab43fView commit details
Commits on Apr 11, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for 65f45cd - Browse repository at this point
Copy the full SHA 65f45cdView commit details -
Merge pull request #15392 from augustozanellato/stm32g4_hw_crc
Add hardware CRC support to STM32G4
Configuration menu - View commit details
-
Copy full SHA for ce13e1c - Browse repository at this point
Copy the full SHA ce13e1cView commit details -
jmcloud committed
Apr 11, 2023 Configuration menu - View commit details
-
Copy full SHA for fba9f98 - Browse repository at this point
Copy the full SHA fba9f98View commit details
Commits on Apr 12, 2023
-
Merge pull request #15396 from jtmyz9/target-Nucleo-h745
Target: buildable target for Nucleo-h745 board
Configuration menu - View commit details
-
Copy full SHA for 975dfcf - Browse repository at this point
Copy the full SHA 975dfcfView commit details
Commits on Apr 13, 2023
-
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.
Configuration menu - View commit details
-
Copy full SHA for d3b7a07 - Browse repository at this point
Copy the full SHA d3b7a07View commit details -
MAX32670 apply mbed required changes on peripheral drivers
Signed-off-by: Sadik.Ozer <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a50a444 - Browse repository at this point
Copy the full SHA a50a444View commit details
Commits on Apr 19, 2023
-
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.
Configuration menu - View commit details
-
Copy full SHA for 4c3928e - Browse repository at this point
Copy the full SHA 4c3928eView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 65b14f7 - Browse repository at this point
Copy the full SHA 65b14f7View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 3a46630 - Browse repository at this point
Copy the full SHA 3a46630View commit details -
Merge pull request #15399 from MaximIntegrated/dev-update_max32670_sdk
Update max32670 sdk files
Configuration menu - View commit details
-
Copy full SHA for 8628604 - Browse repository at this point
Copy the full SHA 8628604View commit details -
Merge pull request #15400 from OpenNuvoton/nuvoton_m467_can
M467: Support CAN bus
Configuration menu - View commit details
-
Copy full SHA for fe56b43 - Browse repository at this point
Copy the full SHA fe56b43View commit details -
Merge pull request #15402 from IVOES/fix-new-array-delete-mismatch
Fix 'new[]' array freed with 'delete'
Configuration menu - View commit details
-
Copy full SHA for 5db6bcc - Browse repository at this point
Copy the full SHA 5db6bccView commit details -
Merge pull request #15403 from IVOES/fix-redefined-default-parameter
Define default parameters of functions of derived class the same as t…
Configuration menu - View commit details
-
Copy full SHA for d0ca14e - Browse repository at this point
Copy the full SHA d0ca14eView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for c958d1d - Browse repository at this point
Copy the full SHA c958d1dView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 1b77cda - Browse repository at this point
Copy the full SHA 1b77cdaView commit details
Commits on Apr 20, 2023
-
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.
Configuration menu - View commit details
-
Copy full SHA for 378f2f5 - Browse repository at this point
Copy the full SHA 378f2f5View commit details
Commits on Apr 21, 2023
-
Signed-off-by: Jasper Jonker <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5f9f8f3 - Browse repository at this point
Copy the full SHA 5f9f8f3View commit details
Commits on Apr 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d2fdd6f - Browse repository at this point
Copy the full SHA d2fdd6fView commit details
Commits on Apr 26, 2023
-
Merge pull request #15401 from IVOES/fix-virtual-call-in-constructor
Avoid calling virtual functions from constructors and destructors
Configuration menu - View commit details
-
Copy full SHA for 9a82ad6 - Browse repository at this point
Copy the full SHA 9a82ad6View commit details -
Merge pull request #15404 from IVOES/fix-overrunning-write
Fix potentially overrunning write of sprintf
Configuration menu - View commit details
-
Copy full SHA for 0ea5dec - Browse repository at this point
Copy the full SHA 0ea5decView commit details -
Merge pull request #15407 from jasperjonker/fix/stm32h723
system_clock.c location for stm32h723xg
Configuration menu - View commit details
-
Copy full SHA for 00df0a3 - Browse repository at this point
Copy the full SHA 00df0a3View commit details
Commits on May 1, 2023
-
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" | ^~~~~~~~~~~~~~~~~~~~~
Configuration menu - View commit details
-
Copy full SHA for 4b07fc6 - Browse repository at this point
Copy the full SHA 4b07fc6View commit details
Commits on May 2, 2023
-
Add MAX32670 to tools/arm-pack-manager/index.json for bootloader support
Leon committedMay 2, 2023 Configuration menu - View commit details
-
Copy full SHA for be862ed - Browse repository at this point
Copy the full SHA be862edView commit details
Commits on May 3, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b22d510 - Browse repository at this point
Copy the full SHA b22d510View commit details
Commits on May 4, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 3c17881 - Browse repository at this point
Copy the full SHA 3c17881View commit details
Commits on May 5, 2023
-
Merge pull request #15416 from thirtythreeforty/fixup-usb
drivers/usb: Add missing dependency on mbed-events
Configuration menu - View commit details
-
Copy full SHA for a987273 - Browse repository at this point
Copy the full SHA a987273View commit details -
Merge pull request #15405 from IVOES/fix-stack-address-escape
Change storage-class of secret_buf to static
Configuration menu - View commit details
-
Copy full SHA for 70dced2 - Browse repository at this point
Copy the full SHA 70dced2View commit details -
Merge pull request #15412 from MultiTechSystems/update-arm-pack-manager
Add MAX32670 to tools/arm-pack-manager/index.json for bootloader support
Configuration menu - View commit details
-
Copy full SHA for 48a89f1 - Browse repository at this point
Copy the full SHA 48a89f1View commit details -
Merge pull request #15415 from wdx04/fix_exfat
fix compiling errors of FATFileSystem when exFAT was enabled
Configuration menu - View commit details
-
Copy full SHA for 952c286 - Browse repository at this point
Copy the full SHA 952c286View commit details
Commits on May 8, 2023
-
Merge pull request #15414 from wdx04/stm32h7_ospi
Add OSPI support for STM32H7
Configuration menu - View commit details
-
Copy full SHA for cc39261 - Browse repository at this point
Copy the full SHA cc39261View commit details
Commits on May 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9f0ede4 - Browse repository at this point
Copy the full SHA 9f0ede4View commit details
Commits on May 15, 2023
-
Nuvoton: Enable extending sampling time for ADC/EADC
For all Nuvoton targets, enable extending sampling time in ADC/EADC clocks on per-pin basis.
Configuration menu - View commit details
-
Copy full SHA for 91a1b59 - Browse repository at this point
Copy the full SHA 91a1b59View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3f4b177 - Browse repository at this point
Copy the full SHA 3f4b177View commit details
Commits on May 16, 2023
-
Merge pull request #15422 from OpenNuvoton/nuvoton_eadc_extend_sample…
…_time Nuvoton: Enable configurability for extending sampling time for ADC/EADC
Configuration menu - View commit details
-
Copy full SHA for 8779918 - Browse repository at this point
Copy the full SHA 8779918View commit details
Commits on May 17, 2023
-
Merge pull request #15420 from jeromecoutant/PR_U5_120
STM32U5: STM32Cube_FW_U5_V1.2.0
Configuration menu - View commit details
-
Copy full SHA for b5692fd - Browse repository at this point
Copy the full SHA b5692fdView commit details -
Update mbed hal function as per of SDK update Signed-off-by: Sadik.Ozer <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d42b9b3 - Browse repository at this point
Copy the full SHA d42b9b3View commit details
Commits on May 18, 2023
-
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.
Configuration menu - View commit details
-
Copy full SHA for 06593d3 - Browse repository at this point
Copy the full SHA 06593d3View commit details
Commits on May 22, 2023
-
Merge pull request #15406 from IVOES/fix-null-check
Fix null pointer dereferencing
Configuration menu - View commit details
-
Copy full SHA for 1768ad9 - Browse repository at this point
Copy the full SHA 1768ad9View commit details
Commits on May 25, 2023
-
Merge pull request #15421 from MaximIntegrated/dev-update_max32660_sdk
Update max32660 sdk files
Configuration menu - View commit details
-
Copy full SHA for 3a08a45 - Browse repository at this point
Copy the full SHA 3a08a45View commit details
Commits on May 30, 2023
-
Merge pull request #15423 from Jookia/RFC_ipv6fix
LWIP::get_ip_addr: Prefer IPv4 over IPv6 link local addresses
Configuration menu - View commit details
-
Copy full SHA for 95f3f93 - Browse repository at this point
Copy the full SHA 95f3f93View commit details
Commits on Jun 1, 2023
-
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).
Configuration menu - View commit details
-
Copy full SHA for 633a833 - Browse repository at this point
Copy the full SHA 633a833View commit details -
Merge pull request #15430 from ARMmbed/0xc0170-patch-scancode
scancode: version >31.2.4 contains fix for reindexing
Configuration menu - View commit details
-
Copy full SHA for 9bff970 - Browse repository at this point
Copy the full SHA 9bff970View commit details -
Do not clear interrupt flag during initialization
This causes issue for repeaded initialization while using BufferedSerial mode Signed-off-by: Sadik.Ozer <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0eac033 - Browse repository at this point
Copy the full SHA 0eac033View commit details -
MAX32660, MAX32670 UART performance improvement
Signed-off-by: Sadik.Ozer <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bdec190 - Browse repository at this point
Copy the full SHA bdec190View commit details
Commits on Jun 2, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for 8b69a94 - Browse repository at this point
Copy the full SHA 8b69a94View commit details
Commits on Jun 7, 2023
-
Merge pull request #15427 from OpenNuvoton/nuvoton_m2354_mcuboot_head…
…er_sector_boundary M2354: Fix debug failure in Mbed Studio
Configuration menu - View commit details
-
Copy full SHA for 3b07e53 - Browse repository at this point
Copy the full SHA 3b07e53View commit details -
Merge pull request #15426 from MaximIntegrated/fix_bug_uart
Fix bug uart
Configuration menu - View commit details
-
Copy full SHA for f347b89 - Browse repository at this point
Copy the full SHA f347b89View commit details
Commits on Jun 14, 2023
-
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().
Configuration menu - View commit details
-
Copy full SHA for 7e206a9 - Browse repository at this point
Copy the full SHA 7e206a9View commit details
Commits on Jun 15, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 56ca532 - Browse repository at this point
Copy the full SHA 56ca532View commit details
Commits on Jun 27, 2023
-
doc: Update README to include production usage warning
Signed-off-by: Saheer Babu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9d0f085 - Browse repository at this point
Copy the full SHA 9d0f085View commit details -
Merge pull request #15432 from saheerb/master
doc: Update README to include production usage warning
Configuration menu - View commit details
-
Copy full SHA for 0b85b72 - Browse repository at this point
Copy the full SHA 0b85b72View commit details -
doc: Provide mbed_die example for security considerations
Signed-off-by: Saheer Babu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 564eb05 - Browse repository at this point
Copy the full SHA 564eb05View commit details
Commits on Jun 30, 2023
-
Merge pull request #15433 from saheerb/master
doc: Provide mbed_die example for security considerations
Configuration menu - View commit details
-
Copy full SHA for 89c1705 - Browse repository at this point
Copy the full SHA 89c1705View commit details
Commits on Jul 3, 2023
-
Merge pull request #15431 from alrvid/patch-1
Handle negative values passed to close()
Configuration menu - View commit details
-
Copy full SHA for f9c0cd2 - Browse repository at this point
Copy the full SHA f9c0cd2View commit details
Commits on Jul 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 67d845b - Browse repository at this point
Copy the full SHA 67d845bView commit details
Commits on Jul 11, 2023
-
Merge pull request #15435 from chrJost/TCP_reset_flag
add nullpointer check in LWIP::socket_close
Configuration menu - View commit details
-
Copy full SHA for 13f43cc - Browse repository at this point
Copy the full SHA 13f43ccView commit details
Commits on Jul 13, 2023
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 5837179 - Browse repository at this point
Copy the full SHA 5837179View commit details
Commits on Aug 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 306c93d - Browse repository at this point
Copy the full SHA 306c93dView commit details
Commits on Aug 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 5558225 - Browse repository at this point
Copy the full SHA 5558225View commit details -
Configuration menu - View commit details
-
Copy full SHA for 02b5737 - Browse repository at this point
Copy the full SHA 02b5737View commit details
Commits on Aug 16, 2023
-
Merge pull request #15447 from josephduchesne/stm32g473-fdcan3-irq-crash
Fix crash when using FDCAN3 RX IRQ on STM32G473 (and others)
Configuration menu - View commit details
-
Copy full SHA for 1720397 - Browse repository at this point
Copy the full SHA 1720397View commit details -
Merge pull request #15438 from OpenNuvoton/nvt_m467_emac
connectivity: drivers: Update Nuvoton M467 EMAC DMA_IE ctl
Configuration menu - View commit details
-
Copy full SHA for 3c1f0d5 - Browse repository at this point
Copy the full SHA 3c1f0d5View commit details -
Merge pull request #15446 from mak22223/master
Add fix for STM32G4 hardfault in sleep mode
Configuration menu - View commit details
-
Copy full SHA for dba734f - Browse repository at this point
Copy the full SHA dba734fView commit details
Commits on Aug 21, 2023
-
Merge pull request #15443 from hallard/STM32Cube_FW_WL_V1.3.0
STM32WL update drivers version to CUBE V1.3.0
Configuration menu - View commit details
-
Copy full SHA for f0d9090 - Browse repository at this point
Copy the full SHA f0d9090View commit details
Commits on Aug 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9271833 - Browse repository at this point
Copy the full SHA 9271833View commit details
Commits on Aug 28, 2023
-
Merge pull request #15448 from hallard/STM32_weak_deepsleep
STM Sleep change dependency func from static to WEAK
Configuration menu - View commit details
-
Copy full SHA for 67c25e8 - Browse repository at this point
Copy the full SHA 67c25e8View commit details
Commits on Sep 7, 2023
-
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]>
Configuration menu - View commit details
-
Copy full SHA for cbe0f73 - Browse repository at this point
Copy the full SHA cbe0f73View commit details
Commits on Sep 13, 2023
-
Merge pull request #15453 from MaximIntegrated/fix-spi_glitch
Fix MAX32660, MAX32670 SPI glitch fix
Configuration menu - View commit details
-
Copy full SHA for 7049bfc - Browse repository at this point
Copy the full SHA 7049bfcView commit details -
Configuration menu - View commit details
-
Copy full SHA for ab46d51 - Browse repository at this point
Copy the full SHA ab46d51View commit details
Commits on Sep 14, 2023
-
Merge pull request #15454 from world-direct/feature/cellularevents
make cellular event queue size configurable
Configuration menu - View commit details
-
Copy full SHA for b3a5d6a - Browse repository at this point
Copy the full SHA b3a5d6aView commit details
Commits on Oct 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 738419f - Browse repository at this point
Copy the full SHA 738419fView commit details
Commits on Oct 18, 2023
-
Merge pull request #15457 from chrJost/Console_Pin_Checks
STM32: disable CONSOLE_* checks in for serial if no console available
Configuration menu - View commit details
-
Copy full SHA for 1a036c2 - Browse repository at this point
Copy the full SHA 1a036c2View commit details
Commits on Oct 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for fcda884 - Browse repository at this point
Copy the full SHA fcda884View commit details
Commits on Oct 23, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ae97837 - Browse repository at this point
Copy the full SHA ae97837View commit details
Commits on Oct 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 394cbee - Browse repository at this point
Copy the full SHA 394cbeeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 27ab6d8 - Browse repository at this point
Copy the full SHA 27ab6d8View commit details
Commits on Oct 25, 2023
-
Merge pull request #15459 from hallard/STM23WL_fix_preamble
STM32WL LoRaWAN set downlink preamble length to 8
Configuration menu - View commit details
-
Copy full SHA for 7c7d20d - Browse repository at this point
Copy the full SHA 7c7d20dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ba13f1 - Browse repository at this point
Copy the full SHA 4ba13f1View commit details
Commits on Oct 26, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 47ec87e - Browse repository at this point
Copy the full SHA 47ec87eView commit details
Commits on Oct 31, 2023
-
Merge pull request #15458 from MultiTechSystems/xdot-max32670
Add target support for XDOT_MAX32670
Configuration menu - View commit details
-
Copy full SHA for 72f27ce - Browse repository at this point
Copy the full SHA 72f27ceView commit details
Commits on Nov 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9c3c88c - Browse repository at this point
Copy the full SHA 9c3c88cView commit details
Commits on Nov 23, 2023
-
Merge pull request #15461 from pavels/master
TARGET_STM: only mask CAN rx interrupt after rx interrupt, not all CAN interrupts
Configuration menu - View commit details
-
Copy full SHA for 08c7171 - Browse repository at this point
Copy the full SHA 08c7171View commit details
Commits on Nov 24, 2023
-
Merge pull request #15464 from hallard/LoRaWAN_sleep_radio_scheduled_tx
LoRaWAN fix over consumption on scheduled tx
Configuration menu - View commit details
-
Copy full SHA for 36045bd - Browse repository at this point
Copy the full SHA 36045bdView commit details
Commits on Nov 29, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 2ebe0d5 - Browse repository at this point
Copy the full SHA 2ebe0d5View commit details
Commits on Nov 30, 2023
-
Merge pull request #15469 from cyliangtw/master
TARGET_M480: Update targets.json to enable IAR support
Configuration menu - View commit details
-
Copy full SHA for 30c2ea2 - Browse repository at this point
Copy the full SHA 30c2ea2View commit details -
Configuration menu - View commit details
-
Copy full SHA for deb09a3 - Browse repository at this point
Copy the full SHA deb09a3View commit details -
Don't overlap STM32 FDCAN RAM sections
jmcloud committedNov 30, 2023 Configuration menu - View commit details
-
Copy full SHA for 9859c60 - Browse repository at this point
Copy the full SHA 9859c60View commit details
Commits on Dec 1, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 794ee97 - Browse repository at this point
Copy the full SHA 794ee97View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1cccc7e - Browse repository at this point
Copy the full SHA 1cccc7eView commit details -
Configuration menu - View commit details
-
Copy full SHA for e2aed18 - Browse repository at this point
Copy the full SHA e2aed18View commit details
Commits on Dec 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ca616c8 - Browse repository at this point
Copy the full SHA ca616c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ecb9bd - Browse repository at this point
Copy the full SHA 0ecb9bdView commit details
Commits on Dec 8, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c30af6a - Browse repository at this point
Copy the full SHA c30af6aView commit details
Commits on Dec 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 126d767 - Browse repository at this point
Copy the full SHA 126d767View commit details
Commits on Dec 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 772c5d3 - Browse repository at this point
Copy the full SHA 772c5d3View commit details -
Merge pull request #15475 from OpenNuvoton/nvt_usbd_zlp
Nuvoton: Bug fix of Nuvoton HUSBD driver's endpoint write
Configuration menu - View commit details
-
Copy full SHA for dd99580 - Browse repository at this point
Copy the full SHA dd99580View commit details
Commits on Dec 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 6403ec7 - Browse repository at this point
Copy the full SHA 6403ec7View commit details -
Merge pull request #15472 from jtmyz9/jmcloud/STM32-use-more-than-one…
…-fifo Don't overlap STM32 FDCAN RAM sections
Configuration menu - View commit details
-
Copy full SHA for 61ab4f7 - Browse repository at this point
Copy the full SHA 61ab4f7View commit details
Commits on Dec 20, 2023
-
Merge pull request #15471 from hallard/LoRaWAN_set_antenna_gain
LoRaWAN allow to adapt antenna gain
Configuration menu - View commit details
-
Copy full SHA for baf6a30 - Browse repository at this point
Copy the full SHA baf6a30View commit details
Commits on Jan 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7f62c06 - Browse repository at this point
Copy the full SHA 7f62c06View commit details
Commits on Jan 23, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8c0bc50 - Browse repository at this point
Copy the full SHA 8c0bc50View commit details
Commits on Feb 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9385ec8 - Browse repository at this point
Copy the full SHA 9385ec8View commit details
Commits on Mar 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c7ea9c1 - Browse repository at this point
Copy the full SHA c7ea9c1View commit details
Commits on Mar 15, 2024
-
NUVOTON: EMAC: Fix undeclared function mbed_error_printf
ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
Configuration menu - View commit details
-
Copy full SHA for 4712f9d - Browse repository at this point
Copy the full SHA 4712f9dView commit details -
NUVOTON: AnalogIn: Fix undeclared function gpio_set
ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
Configuration menu - View commit details
-
Copy full SHA for 5a4a4fd - Browse repository at this point
Copy the full SHA 5a4a4fdView commit details -
NUVOTON: CAN: Fix undeclared function gpio_set
ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
Configuration menu - View commit details
-
Copy full SHA for 1be9ff0 - Browse repository at this point
Copy the full SHA 1be9ff0View commit details
Commits on Mar 18, 2024
-
NUVOTON: AnalogOut: Fix undeclared function gpio_set
ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
Configuration menu - View commit details
-
Copy full SHA for cf7a07f - Browse repository at this point
Copy the full SHA cf7a07fView commit details -
NUVOTON: SPI: Fix undeclared function gpio_set
ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
Configuration menu - View commit details
-
Copy full SHA for 4366b68 - Browse repository at this point
Copy the full SHA 4366b68View commit details -
NUVOTON: I2C: Fix undeclared function gpio_set
ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
Configuration menu - View commit details
-
Copy full SHA for 25c0491 - Browse repository at this point
Copy the full SHA 25c0491View commit details -
NUVOTON: Serial: Fix undeclared function gpio_set
ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
Configuration menu - View commit details
-
Copy full SHA for 11d9997 - Browse repository at this point
Copy the full SHA 11d9997View commit details
Commits on Mar 19, 2024
-
TFM: Fix undeclared function tfm_ns_interface_init
ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
Configuration menu - View commit details
-
Copy full SHA for 7c43c6d - Browse repository at this point
Copy the full SHA 7c43c6dView commit details
Commits on Mar 28, 2024
-
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.
Configuration menu - View commit details
-
Copy full SHA for dc49c2b - Browse repository at this point
Copy the full SHA dc49c2bView commit details
Commits on Apr 4, 2024
-
Allow custom TCXO control parameter
Allow custom TCXO control parameter
Configuration menu - View commit details
-
Copy full SHA for 61522fb - Browse repository at this point
Copy the full SHA 61522fbView commit details
Commits on Apr 5, 2024
-
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
Configuration menu - View commit details
-
Copy full SHA for 5c49f16 - Browse repository at this point
Copy the full SHA 5c49f16View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for d676084 - Browse repository at this point
Copy the full SHA d676084View commit details
Commits on Apr 12, 2024
-
Merge pull request #15484 from arunsathiya/master
ci: Use GITHUB_OUTPUT envvar instead of set-output command
Configuration menu - View commit details
-
Copy full SHA for b5f1d3f - Browse repository at this point
Copy the full SHA b5f1d3fView commit details -
Merge pull request #15501 from OpenNuvoton/tfm_fix_function_undeclare
TFM: Fix undeclared function tfm_ns_interface_init
Configuration menu - View commit details
-
Copy full SHA for 7ae592d - Browse repository at this point
Copy the full SHA 7ae592dView commit details
Commits on Apr 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7cb61d9 - Browse repository at this point
Copy the full SHA 7cb61d9View commit details
Commits on Apr 18, 2024
-
NOTE: This fix only targets CAN (M453/M487), not CAN-FD (M467). NOTE: NUC472 CAN doesn't support filter.
Configuration menu - View commit details
-
Copy full SHA for 63bdb26 - Browse repository at this point
Copy the full SHA 63bdb26View commit details -
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).
Configuration menu - View commit details
-
Copy full SHA for bfd4ceb - Browse repository at this point
Copy the full SHA bfd4cebView commit details -
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).
Configuration menu - View commit details
-
Copy full SHA for 989a694 - Browse repository at this point
Copy the full SHA 989a694View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for c1c9550 - Browse repository at this point
Copy the full SHA c1c9550View commit details
Commits on Apr 23, 2024
-
Merge pull request #15509 from OpenNuvoton/nuvoton_fix_can_interrupt
NUVOTON: CAN: Fix Rx interrupt and filter mask
Configuration menu - View commit details
-
Copy full SHA for 8502c74 - Browse repository at this point
Copy the full SHA 8502c74View commit details -
Merge pull request #15503 from hallard/nordic_rak4630
RAK4630 LoRaWAN Allow change TCXO control adding it as a parameter
Configuration menu - View commit details
-
Copy full SHA for 98853ac - Browse repository at this point
Copy the full SHA 98853acView commit details
Commits on Apr 24, 2024
-
Merge pull request #15500 from OpenNuvoton/nuvoton_fix_function_undec…
…lare NUVOTON: Fix undeclared function as error
Configuration menu - View commit details
-
Copy full SHA for 95fee2f - Browse repository at this point
Copy the full SHA 95fee2fView commit details
Commits on May 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e7db584 - Browse repository at this point
Copy the full SHA e7db584View commit details -
Merge pull request #15499 from agausmann/i2c-slave-flags
STM: Add separate flags for I2C slave transfer in progress
Configuration menu - View commit details
-
Copy full SHA for 1060154 - Browse repository at this point
Copy the full SHA 1060154View commit details -
Merge pull request #15496 from szsam/patch-1
ESP8266: Fix accessing uninitialized variable
Configuration menu - View commit details
-
Copy full SHA for 7e16b00 - Browse repository at this point
Copy the full SHA 7e16b00View commit details
Commits on May 5, 2024
-
Remove Portenta-specific system clock override as this can be done th…
…rough targets.json now
Configuration menu - View commit details
-
Copy full SHA for a5abf7c - Browse repository at this point
Copy the full SHA a5abf7cView commit details
Commits on May 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 45e9efc - Browse repository at this point
Copy the full SHA 45e9efcView commit details
Commits on May 11, 2024
-
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.
Configuration menu - View commit details
-
Copy full SHA for 9e7e22d - Browse repository at this point
Copy the full SHA 9e7e22dView commit details
Commits on May 16, 2024
-
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.
Configuration menu - View commit details
-
Copy full SHA for 5fc4abe - Browse repository at this point
Copy the full SHA 5fc4abeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 17a03ab - Browse repository at this point
Copy the full SHA 17a03abView commit details
Commits on May 21, 2024
-
Merge pull request #15512 from mattgbio/missing-delete-TDBStore
TDBStore: Add missing delete for _inc_set_handle
Configuration menu - View commit details
-
Copy full SHA for e04a55f - Browse repository at this point
Copy the full SHA e04a55fView commit details
Commits on May 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3746f5a - Browse repository at this point
Copy the full SHA 3746f5aView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 3082c28 - Browse repository at this point
Copy the full SHA 3082c28View commit details
Commits on May 27, 2024
-
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
Configuration menu - View commit details
-
Copy full SHA for 869f0d7 - Browse repository at this point
Copy the full SHA 869f0d7View commit details
Commits on Jun 8, 2024
-
Merge pull request #15515 from matkammusic/master
Correct scan parameters types
Configuration menu - View commit details
-
Copy full SHA for 5249bb9 - Browse repository at this point
Copy the full SHA 5249bb9View commit details -
Merge pull request #15514 from mattgbio/skip-initial-crc-TDBStore
TDBSTore: skip data CRC when building RAM table
Configuration menu - View commit details
-
Copy full SHA for 5cb118b - Browse repository at this point
Copy the full SHA 5cb118bView commit details -
Merge pull request #15513 from mattgbio/check-rbp-SecureStore
SecureStore: Add missing check for rollback-protection pointer before allocating memory
Configuration menu - View commit details
-
Copy full SHA for e3d2c56 - Browse repository at this point
Copy the full SHA e3d2c56View commit details -
Merge pull request #15502 from mbed-ce/upstreamed/stm32h7x-clocking-f…
…ixes Rework STM32H7x clocking configuration
Configuration menu - View commit details
-
Copy full SHA for 945c3de - Browse repository at this point
Copy the full SHA 945c3deView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 20340d7 - Browse repository at this point
Copy the full SHA 20340d7View commit details
Commits on Jul 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 46e8545 - Browse repository at this point
Copy the full SHA 46e8545View commit details
Commits on Aug 20, 2024
-
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]>
Configuration menu - View commit details
-
Copy full SHA for d83be9e - Browse repository at this point
Copy the full SHA d83be9eView commit details
Commits on Aug 26, 2024
-
Merge pull request #15523 from ARMmbed/dev/hugkam01/add-eof-notice
docs: Add End of Life for Mbed notice
Configuration menu - View commit details
-
Copy full SHA for 036ee2c - Browse repository at this point
Copy the full SHA 036ee2cView commit details
Commits on Sep 4, 2024
-
M467: Fix invoking GPIO_SET_DEBOUNCE_TIME
Fix missing gpio_base on invoking GPIO_SET_DEBOUNCE_TIME()
Configuration menu - View commit details
-
Copy full SHA for a72075b - Browse repository at this point
Copy the full SHA a72075bView commit details
Commits on Oct 8, 2024
-
Merge pull request #15524 from ccli8/nuvoton_m467_gpio_set_debounce_time
M467: Fix invoking GPIO_SET_DEBOUNCE_TIME
Configuration menu - View commit details
-
Copy full SHA for d84a97a - Browse repository at this point
Copy the full SHA d84a97aView commit details -
Merge pull request #15521 from world-direct/feature/cellspam
reduce spam on info log of cellular sockets
Configuration menu - View commit details
-
Copy full SHA for d723bf9 - Browse repository at this point
Copy the full SHA d723bf9View commit details