Martin Kojtal
67dd4496bf
Merge pull request #9248 from kjbracey-arm/socket_pending_atomic
...
InternetSocket: use atomics, not volatile
2019-01-21 13:35:47 +01:00
Martin Kojtal
091fe2bed4
Merge pull request #9401 from loverdeg-ep/custom-targets-option
...
tools: adds and implements a --custom-targets command line switch
2019-01-21 13:17:01 +01:00
Martin Kojtal
27cce81580
Merge pull request #9258 from jeromecoutant/PR_FLASHSKIP
...
FLASH test: skip test if test region overlaps code
2019-01-21 13:15:51 +01:00
Martin Kojtal
acd1e986f0
Merge pull request #9428 from 0xc0170/fix_exporters
...
STM32H743ZI: iar removal as not supported in v7.x
2019-01-21 13:15:30 +01:00
Martin Kojtal
8f48104842
Merge pull request #9418 from naveenkaje/build_api_spell_fix
...
tools: build_api: remove redundant initialization and fix spelling
2019-01-18 14:38:41 +01:00
Kevin Bracey
ab037c6f69
InternetSocket: better protect _callback
...
sigio callbacks can be triggered from interrupt, so changing _callback
needs critical section protection, not just a mutex.
2019-01-18 15:37:11 +02:00
Kevin Bracey
0f6a4cd0bd
InternetSocket: Use atomics, not volatile
...
Use a better tool for the job.
2019-01-18 15:37:11 +02:00
Martin Kojtal
796d1c2a64
STM32H743ZI: iar removal as not supported in v7.x
...
Fixes #9426
2019-01-18 12:09:42 +00:00
Martin Kojtal
cee814dc29
Merge pull request #9377 from offirko/offir_general_block_device_test
...
test: general_block_device fix to always erase prior the first program
2019-01-18 11:48:41 +01:00
Martin Kojtal
f48c1a9b13
Merge pull request #9344 from Pharap/fix-attach-function
...
Fix bug in templated attach function
2019-01-18 11:44:26 +01:00
Martin Kojtal
6c6ebc6b80
Merge pull request #9406 from geky/littlefs-validate-all-dirs
...
Extended mount to check all metadata-pairs
2019-01-18 11:34:38 +01:00
Martin Kojtal
40f40ac188
Merge pull request #9407 from offirko/offir_direct_access_handle_default_config
...
DirectAccess DeviceKey: add support for default storage type
2019-01-18 11:31:51 +01:00
Cruz Monrreal
46bb7540be
Merge pull request #9385 from kapi90/smsc9220_fix
...
Fixes typos in SMSC9220 Ethernet driver
2019-01-17 21:54:36 -06:00
Cruz Monrreal
309d9be347
Merge pull request #9386 from jeromecoutant/PR_SDJSON
...
SD default configuration for ST boards is already defined in TARGET_STM
2019-01-17 21:54:18 -06:00
Cruz Monrreal
ce1bb59b8f
Merge pull request #9403 from ARMmbed/AnotherButler-patch-1
...
Clarify addition to CONFIGURATION.md
2019-01-17 21:53:31 -06:00
Cruz Monrreal
c0bbc5c77f
Merge pull request #9380 from kyliuxing/master
...
UNO_91H: open hal lib source
2019-01-17 21:53:12 -06:00
Cruz Monrreal
68deb05d1b
Merge pull request #9376 from michalpasztamobica/tcpsocket_greentea
...
TCP/UDP greentea tests refactoring and cleanup
2019-01-17 21:52:40 -06:00
Cruz Monrreal
30e0d8f1f6
Merge pull request #9366 from VeijoPesonen/bugfix-esp8266_verify_rcvd_data_len
...
ESP8266: add an error check for data overflow from modem side
2019-01-17 21:52:11 -06:00
Cruz Monrreal
fd2a96e7ad
Merge pull request #9339 from costanic/fix_oob
...
Fix Out-Of-Band (OOB) data generation for BLE OOB pairing
2019-01-17 21:51:54 -06:00
Cruz Monrreal
74f572356d
Merge pull request #9335 from naveenkaje/fix_thred_mle_warning
...
thread_mle_message_handler: fix build warning
2019-01-17 21:51:37 -06:00
Cruz Monrreal
3b43a2d976
Merge pull request #9333 from offirko/offir_doxygen
...
Minor Doxygen fixes for BufferedBlockDevice and iBeacon
2019-01-17 21:51:14 -06:00
Cruz Monrreal
1afcbbfba6
Merge pull request #9316 from bentcooke/add_flash_MAX32620FTHR
...
Add FLASH support to TARGET_MAX32620C and brd targets
2019-01-17 21:50:45 -06:00
Cruz Monrreal
436d3d043d
Merge pull request #9257 from jeromecoutant/PR_FLASHIAP_TIMING
...
FLASHIAP test: skip test if test region overlaps code
2019-01-17 21:50:20 -06:00
Naveen Kaje
06dbd82d1f
tools: build_api: remove redundant initialization and fix spelling
2019-01-17 12:56:09 -06:00
Garrett
bb5ea80890
Revert duplicated implemenation of --custom-targets
2019-01-17 13:16:10 -05:00
Garrett
00a5fac0be
Add --custom-target argument to get_default_options_parser
2019-01-17 13:16:09 -05:00
Garrett
fc968e6cef
Revert get_config.py make.py test.py
2019-01-17 13:16:09 -05:00
Garrett
31615eb542
If custom_targets_directory exists use it over source_dir
2019-01-17 13:16:09 -05:00
Garrett
83d679ae38
adds --custom-targets argument anywhere extract_mcus is called
2019-01-17 13:16:09 -05:00
Christopher Haster
9d6e309432
Extended mount to check all metadata-pairs
...
The most common issue with using littlefs in mbed-os is when users
change from littlefs->FAT->littlefs (or with MBR or similar). When this
corrupts the superblock, littlefs tries to fall back to the backup
superblock. However, at this point in the time the old superblock may be
very out-of-date and pointing to an incorrect filesystem.
There's no complete solution to a malicious modification of the
filesystem (short of checking all metadata+data, a very expensive
operation), but we can at least expand our validation to all of the
metadata for the filesystem. This at least catches the common issues
with changing between different filesystems.
2019-01-17 11:02:29 -06:00
offirko
e996b7f9ce
DirectAccess DeviceKey added support for default storage type
2019-01-17 10:58:55 -06:00
Martin Kojtal
1a8844e8ed
Merge pull request #8887 from deepikabhavnani/uVision_fix
...
Adding debugger awarness with Keil MDK
2019-01-17 17:56:42 +01:00
Martin Kojtal
53bb9868ed
Merge pull request #9405 from cmonr/fix-doxy
...
Travis: Fix doxy-spellcheck job
2019-01-17 17:21:14 +01:00
Martin Kojtal
284781a565
Merge pull request #9096 from pan-/fix-enforce-size-limits
...
BLE: Enforce advertising data payload limits
2019-01-17 12:41:57 +01:00
Martin Kojtal
b59b93e828
Merge pull request #9331 from VeijoPesonen/bugfix-esp8266_udp_prevent_would_block
...
ESP8266: prevent WOULD BLOCK from TX if UDP
2019-01-17 12:41:42 +01:00
Martin Kojtal
694e45fb78
Merge pull request #9297 from bridadan/fix_os2_tests_uarm
...
uARM targets now build in correct ARM_MICRO directory
2019-01-17 12:40:21 +01:00
Martin Kojtal
a1daecb200
Merge pull request #9280 from deepikabhavnani/refactor_a
...
Sleep manager implements all the API's in platform file
2019-01-17 12:40:03 +01:00
Martin Kojtal
714fc83054
Merge pull request #9369 from u-blox/target_C030-R412M
...
Add target C030-R412M
2019-01-17 12:39:43 +01:00
Cruz Monrreal II
9ed5d049bb
Added 'retarget' to aspell ignore list
2019-01-16 23:30:24 -06:00
Cruz Monrreal II
26696c2f5b
Fixed rtc doxygen spelling errors
2019-01-16 23:30:03 -06:00
Cruz Monrreal
5dbb4b9de9
Merge pull request #8497 from kegilbert/gettimeofday_patch
...
Add get/settimeofday retargets
2019-01-16 22:07:35 -06:00
Cruz Monrreal
84f01d3217
Merge pull request #9261 from tz-arm/merge_quectel_m26
...
Initial version for Quectel M26 GSM/GPRS Module.
2019-01-16 22:07:07 -06:00
Cruz Monrreal
bfc46467d0
Merge pull request #9288 from michalpasztamobica/gemalto_crinterion_test_updates
...
Gemalto Crinterion UDP test adjustments
2019-01-16 22:06:45 -06:00
Cruz Monrreal
92a5f2f8f2
Merge pull request #9337 from tymoteuszblochmobica/removecellular
...
unittest: remove cellular driver L3IP stub
2019-01-16 22:06:27 -06:00
Cruz Monrreal
4f95298669
Merge pull request #9361 from yossi2le/yossi_fix_for_tfm
...
Removing dependency of TDBStore in SystemStorage file and moving some file location - TFM support.
2019-01-16 22:06:07 -06:00
Cruz Monrreal
d0665c8458
Merge pull request #9365 from lrusinowicz/cordio_ble_fix
...
Fix for asserion failing in BLE::callDispatcher with gcc debug profile.
2019-01-16 22:03:16 -06:00
Cruz Monrreal
97486a697c
Merge pull request #9374 from maclobdell/LPCXpresso546xx_add_qspif
...
Add QSPIF as default storage for LPCXpresso546XX
2019-01-16 22:02:53 -06:00
Amanda Butler
29b3ed9214
Clarify addition to CONFIGURATION.md
...
Rephrase for clarity.
2019-01-16 17:20:29 -06:00
Martin Kojtal
0b9587fe26
Merge pull request #9391 from cmonr/bind-pyocd-version
...
Add pyocd depencency to resolve Travis CI issue
2019-01-16 16:01:18 +01:00
Martin Kojtal
51a8c39088
Merge pull request #9245 from kjbracey-arm/lorawan_atomic_flag
...
LoRAWAN: volatile bool -> atomic_flag
2019-01-16 09:31:29 +01:00