Kevin Bracey
913103c34d
TLSSocketWrapper: decouple error requirements
...
* Don't pull in mbedtls_strerror() if trace is not enabled.
* Output error trace even if mbedtls_strerror() is not available.
2018-11-12 13:12:34 +02:00
Marcin Tomczyk
29b7c50e30
ONME-3852 Check that test cases disconnect at the end
2018-11-12 11:29:58 +01:00
Teppo Järvelin
3f6e088782
Cellular: Fixed backward compatibility with OnBoardCellularInterface and set default values in NetworkInterfaceDefaults.cpp.
2018-11-11 14:13:05 +02:00
Teppo Järvelin
1a047efade
Cellular: review fixes, added missing fixes from master.
2018-11-11 14:13:05 +02:00
Teppo Järvelin
467ae09bef
Cellular: Updated target SARA4_PPP to use new CellularContext class.
2018-11-11 14:13:05 +02:00
Teppo Järvelin
9fb83024ea
Changed CellularContext to inherit from CellularBase instead of NetworkInterface. \n Changed Device constructor to take Filehandle instead of eventqueue.
2018-11-11 14:13:05 +02:00
Teppo Järvelin
dbbe2ddc59
Cellular: fixed to compile even if CELLULAR_DEVICE and rx/tx are not defined.
2018-11-11 14:13:05 +02:00
Teppo Järvelin
d1ff9ed68d
Cellular: added to reset state machine is we get disconnected so application can try again.
2018-11-11 14:13:05 +02:00
Teppo Järvelin
609b0f71be
Cellular: minor doxygen fixes.
2018-11-11 14:13:05 +02:00
Teppo Järvelin
8385b19e5e
Cellular: Deleted unused class CellularConnectionFSM. Application should use CellularContext class instead.
2018-11-11 14:13:05 +02:00
Teppo Järvelin
43e08a0adf
Cellular: fixing unit test after refactor.
2018-11-11 14:12:49 +02:00
Teppo Järvelin
ad2abbe887
Cellular: major refactoring while introducing new CellularContext class.
2018-11-11 14:12:49 +02:00
Teppo Järvelin
8880538eba
Cellular: Introduced new state machine to replace old CellularConnectionFSM
...
CellularDevice class own new state machine. Now we don't have to expose state machine
which may change and so we don't have to make API changes if that happens.
EasyCellularConnection uses now CellularDevice instead of old state machine.
2018-11-11 14:11:21 +02:00
Ron Eldor
9f4e752ef3
Modify HW accelerator drivers to new error code
...
Have the HW accelearation drivers return the platform module
errors about feature unsupported, and hw acceleration failure,
because the moduel specific errors will be removed.
2018-11-11 09:59:18 +02:00
Arto Kinnunen
d879422f5e
Merge commit '77818568c6d9389ef1eb82e40ebfbbf26626c9d3' into mbedos511
...
* commit '77818568c6d9389ef1eb82e40ebfbbf26626c9d3':
Squashed 'features/nanostack/sal-stack-nanostack/' changes from ccd30a3..513a38e
2018-11-10 20:16:03 +02:00
Arto Kinnunen
77818568c6
Squashed 'features/nanostack/sal-stack-nanostack/' changes from ccd30a3..513a38e
...
513a38e Merge branch 'release_internal' into release_external
3d2f391 Use Mbed OS coding style (#1900 )
e07cfb4 re-factored thread_mcast_should_register_address. (#1887 )
426acd1 Fixed filter to not drop packets when no modification
git-subtree-dir: features/nanostack/sal-stack-nanostack
git-subtree-split: 513a38ee18ab64c065531b7503ead726bf3b5858
2018-11-10 20:16:03 +02:00
Arto Kinnunen
923ce138f5
Merge commit '661681f65c3fb61aec2e4605bef0fc075cc8cb0d' into mbedos511
...
* commit '661681f65c3fb61aec2e4605bef0fc075cc8cb0d':
Squashed 'features/frameworks/nanostack-libservice/' changes from bb56e37..1d4c358
2018-11-10 20:14:25 +02:00
Arto Kinnunen
661681f65c
Squashed 'features/frameworks/nanostack-libservice/' changes from bb56e37..1d4c358
...
1d4c358 Use Mbed OS coding style (#77 )
git-subtree-dir: features/frameworks/nanostack-libservice
git-subtree-split: 1d4c35848b1733020e0532fddd17dcadf78c79c7
2018-11-10 20:14:24 +02:00
shileiyu
627064297e
New target UNO_91H from RDA Microelectronics.
2018-11-10 18:15:26 +08:00
Cruz Monrreal
0404701b5f
Merge pull request #8694 from cmonr/rollup
...
Rollup PR: Bring small fixes into 5.10.4
2018-11-09 15:32:42 -06:00
Deepika
4e7cbd4d4c
Add library and secure application for FlashIAP change
2018-11-09 15:12:25 -06:00
Deepika
049b5f533f
Revert flash_get_value for M2351 done in PR#8589
...
`flash_get_erase_value` is added in hal/TARGET_FLASH_CMSIS_ALGO/flash_common_algo.c
duplicate copy of same function in targets/TARGET_NUVOTON/TARGET_M2351/flash_api.c
resulted in build issues with secure build
2018-11-09 14:17:49 -06:00
Jimmy Brisson
6e63acaa4e
Resources: Avoid assuming that deps have a sane name
...
### Description
The prior fix assume that the dependencies through `.lib` references
would have a "sane" name. My definition of "sane" here is that the
reference will have a path that starts with the path to the `.lib` file
and _removes_ the `.lib` suffix. The online compiler does not remove the
`.lib` suffix. Instead, it keeps it. This makes the string replacement
in the prior PR fail.
Also, this is faster, and simpler.
### Pull request type
[x] Fix
[ ] Refactor
[ ] Target update
[ ] Functionality change
[ ] Docs update
[ ] Test update
[ ] Breaking change
2018-11-09 13:15:13 -06:00
Jimmy Brisson
b99fd4058b
Resources: Use path names for ignored dirs
...
### Description
Ignored directories are collected for the sake of exporters that use
a blacklist-style approach similar to these build tools. This ignore
list will include `/filer/<gibberish>` when exported from the online
Compiler. This patch fixes that behavoir.
### Pull request type
[x] Fix
[ ] Refactor
[ ] Target update
[ ] Functionality change
[ ] Docs update
[ ] Test update
[ ] Breaking change
2018-11-09 13:11:40 -06:00
Cruz Monrreal II
6ab56d978e
Merge branch 'quote-includes-2' of ssh://github.com/moonchen/mbed-os into rollup
2018-11-09 11:40:32 -06:00
Cruz Monrreal II
f7087b33e7
Merge branch 'doxy_fix_protected' of ssh://github.com/deepikabhavnani/mbed-os into rollup
2018-11-09 11:40:31 -06:00
Cruz Monrreal II
0803c04d7d
Merge branch 'PR_LL_GPIO' of ssh://github.com/jeromecoutant/mbed into rollup
2018-11-09 11:40:29 -06:00
Cruz Monrreal II
143a976d5d
Merge branch 'stm32f407vg-flash' of ssh://github.com/productize/mbed-os into rollup
2018-11-09 11:40:28 -06:00
Cruz Monrreal
00fcdb87e6
Merge pull request #8657 from michalpasztamobica/master
...
Icetea tests - update socket command client
2018-11-09 11:23:17 -06:00
Cruz Monrreal
9d95d46d6c
Merge pull request #8591 from 0xc0170/fix_coding_style_features
...
features: fix coding style
2018-11-09 09:40:56 -06:00
Qinghao Shi
f7ff09d243
fix bug set a correct page size
2018-11-09 15:29:36 +00:00
Cruz Monrreal
44ee9a7af7
Merge pull request #8686 from cmonr/rollup
...
Rollup PR:
2018-11-09 09:14:49 -06:00
Arto Kinnunen
e1ef0e4347
Merge commit 'e6a851f0a7310462f5f65e9f7955f9fdc71b84f0' into mbedos511
...
* commit 'e6a851f0a7310462f5f65e9f7955f9fdc71b84f0':
Squashed 'features/nanostack/coap-service/' changes from bc331ca..c45afcd
2018-11-09 16:40:43 +02:00
Arto Kinnunen
e6a851f0a7
Squashed 'features/nanostack/coap-service/' changes from bc331ca..c45afcd
...
c45afcd Use Mbed OS coding style (#113 )
07e26bf Use Mbed OS coding style (#111 )
git-subtree-dir: features/nanostack/coap-service
git-subtree-split: c45afcdb44f4e95361af82afa3f27a6389ec45d6
2018-11-09 16:40:43 +02:00
Veijo Pesonen
934472be1d
esp8266 driver - don't set UART flow control if no support
2018-11-09 16:03:41 +02:00
Arto Kinnunen
9a13e9d5e8
Merge commit '1374a5e5e6775dd6db9533075f25b3112c984b22' into mbedos511
...
* commit '1374a5e5e6775dd6db9533075f25b3112c984b22':
Squashed 'features/frameworks/mbed-trace/' changes from 9eaf0d1..7a1bd34
2018-11-09 15:59:35 +02:00
Arto Kinnunen
1374a5e5e6
Squashed 'features/frameworks/mbed-trace/' changes from 9eaf0d1..7a1bd34
...
7a1bd34 Use Mbed OS coding style (#86 )
git-subtree-dir: features/frameworks/mbed-trace
git-subtree-split: 7a1bd34be547f3aa9badfbeb1c9993ff4a9e1ded
2018-11-09 15:59:35 +02:00
Arto Kinnunen
ce2ecd5e5b
Merge commit '5d162a08ffd383c97b49e35f3065fcd4638ac87c' as 'features/frameworks/mbed-client-randlib'
2018-11-09 15:52:44 +02:00
Arto Kinnunen
5d162a08ff
Squashed 'features/frameworks/mbed-client-randlib/' content from commit 3955b95
...
git-subtree-dir: features/frameworks/mbed-client-randlib
git-subtree-split: 3955b95d01e97e821039460332b453b590592342
2018-11-09 15:52:44 +02:00
Arto Kinnunen
72fc5faab0
Remove mbed-client-randlib
...
Remove mbed-client-randlib and add it later as git subtree
2018-11-09 15:48:41 +02:00
Arto Kinnunen
9e661a9846
Merge commit '623607c9da4ccd5cc1d3d75ff185b3f8d29a473b' as 'features/nanostack/sal-stack-nanostack-eventloop'
2018-11-09 15:31:56 +02:00
Arto Kinnunen
623607c9da
Squashed 'features/nanostack/sal-stack-nanostack-eventloop/' content from commit 778c4db
...
git-subtree-dir: features/nanostack/sal-stack-nanostack-eventloop
git-subtree-split: 778c4dba0f452ec87cabb0559dd1fa0f905818a1
2018-11-09 15:31:56 +02:00
Arto Kinnunen
2457efc20a
Remove sal-stack-nanostack-eventloop
2018-11-09 15:29:30 +02:00
Veijo Pesonen
8dd6a5d039
Add ESP8266 driver v1.7
2018-11-09 14:49:48 +02:00
Michal Paszta
c87c0cedca
Icetea tests - update socket command client
...
Tiny update in TCPSOCKET_ECHOTEST_BURST_SHORT was necessary, to match new object types messages.
2018-11-09 12:49:59 +01:00
Martin Kojtal
662b744c89
Merge pull request #8324 from ganesh-ramachandran/m3hq_new_target
...
Add Support for TOSHIBA TMPM3HQ
2018-11-09 09:45:52 +01:00
Cruz Monrreal
72253b7b06
Merge pull request #8573 from deepikabhavnani/flag_Crc
...
Compile time config flag MBED_CONF_SD_CRC_ENABLED for CRC in SD
2018-11-08 19:49:03 -06:00
kegilbert
b53738750f
Add guard against accepted and range definitions.
...
Minor reformat of error text on accepted value messages
2018-11-08 19:00:39 -06:00
Cruz Monrreal
dee3506fe4
Merge pull request #8676 from 0xc0170/dev_rollup
...
Rollup PR
2018-11-08 17:58:34 -06:00
Deepika
a21a4224c5
Docs update in platform folder
...
1. Remove protected member functions and protected attributes from rendering
on docs site
2. Update BusInOut doxygen
2018-11-08 17:31:11 -06:00