Commit Graph

21838 Commits (524c99b12866f12a517f7a3880bf3a73d84179c8)

Author SHA1 Message Date
Martin Kojtal 47e477cc97
Merge pull request #9310 from juhaylinen/spifblockdevice-doc
SPIFBlockDevice docs update
2019-01-10 10:53:19 +00:00
jeromecoutant 877a3a13e1 STM32: replace missing #ifdef DEVICE_xxx 2019-01-10 11:02:52 +01:00
jeromecoutant b1a284a876 STM32: astyle check 2019-01-10 10:22:21 +01:00
jeromecoutant cc447e9b27 STM32 : typo error in QSPI 2019-01-10 10:06:17 +01:00
Michael Schwarcz dba44e6c4b tools/importer script changes 2019-01-10 10:27:19 +02:00
Cruz Monrreal 7addb8032f
Merge pull request #9274 from caixue1102/mbed-os-rda
fix MPU compilation issue
2019-01-10 00:18:29 -06:00
Cruz Monrreal cce7e8344d
Merge pull request #9311 from ARMmbed/AnotherButler-patch-1
Edit README.md
2019-01-10 00:18:09 -06:00
Cruz Monrreal cb4d4288c4
Merge pull request #9269 from heejungPark/master
SDT64B: Add TARGET_SDT64B, a bootloader file on SDT64B
2019-01-10 00:17:10 -06:00
Cruz Monrreal 9e48f755e8
Merge pull request #9260 from deepikabhavnani/flags_fix
Use mbed_error_printf instead of debug for ISR friendly prints
2019-01-10 00:15:24 -06:00
Cruz Monrreal d6c014c20d
Merge pull request #9215 from offirko/offir_bootloader_get-device-key
Direct access to device key
2019-01-10 00:14:14 -06:00
Cruz Monrreal f8d7c31a9b
Merge pull request #9188 from SenRamakri/sen_ErrorUrlEnhance
Add more information to error url to enhance error analytics
2019-01-10 00:12:46 -06:00
Cruz Monrreal b9d5dceb72
Merge pull request #9284 from VeijoPesonen/bugfix-esp8266_socket_close
ESP8266: Fixes AT-layer socket_open-functions
2019-01-09 13:47:46 -06:00
Cruz Monrreal cd03eaf9d3
Merge pull request #9290 from SeppoTakalo/esp_reset_timeout
ESP8266: Set HW reset time to 2ms
2019-01-09 13:46:45 -06:00
Cruz Monrreal a53b1746a4
Merge pull request #9293 from ARMmbed/cmonr-pyyaml-fix
Updated pyyaml due to possible vulnerability
2019-01-09 13:25:59 -06:00
Mahesh Mahadevan 59116b17a4 LPC546XX: Do not make MCU_LPC546XX target public
This is a fix for Issue:9207

Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@nxp.com>
2019-01-09 13:05:01 -06:00
Brian Daniels 9f340edbb2 uARM targets now build in correct ARM_MICRO directory
This is for OS2 testing. Previously, targets that were configured with
the option "default_toolchain": "uARM" would still build to a
TOOLCHAIN_ARM_STD directory. This fixes these targets to build into
TOOLCHAIN_ARM_MICRO.
2019-01-09 11:02:10 -06:00
kevin.ong d3dfc986b5 STM32L476VG: fix wrong pin map function on ADC channels
This issue is start on https://github.com/ARMmbed/mbed-os/pull/6931

ADC pins must need STM_PIN_ANALOG_CONTROL_BIT to call LL_GPIO_EnablePinAnalogControl
2019-01-10 00:39:18 +08:00
Veijo Pesonen 7c112b2843 [ESP8266] socket_send() returns WOULD_BLOCK if server won't accept
Driver must return NSAPI_ERROR_WOULD_BLOCK if a server won't accept
data from the modem and the modem's buffers are full. In case that
socket is closed driver returns NSAPI_ERROR_CONNECTION_LOST.
2019-01-09 16:34:25 +02:00
David Saada 5d1985019f Remove kvstore's mbed_lib.json file (not relevant any more)
In addition, use the NOT_SUPPORTED directive to skip the tests.
2019-01-09 16:25:13 +02:00
Mahesh Mahadevan 40864d45b9 Update TEST_APPS to add KW41Z for nanostack tests
Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@nxp.com>
2019-01-09 07:43:41 -06:00
Mahesh Mahadevan 585a4b6ddd Add nanostack support for KW41Z
Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@nxp.com>
2019-01-09 07:43:41 -06:00
Juha Ylinen 96877b80e6 SPIFBlockDevice docs update 2019-01-09 15:29:34 +02:00
Martin Kojtal 65729d6800
Merge pull request #9278 from boomer41/master
DeviceKey: [Security Fix] Generated ROT-key is still used when TRNG fails
2019-01-09 13:09:01 +00:00
Amir Cohen 9a5841ad00 Kvstore tests api change to run on K64F only
Change KVStore API tests to run only on K64F, these tests check the KVStore functionality without actually testing the board's storage,
Thus they should produce the same results for each device they run on.
K64F was selected for no special technical reason but only because of it being available and convenient to use.
2019-01-09 14:52:11 +02:00
Cai aedeaf98cd fix MPU compilation issue 2019-01-09 19:59:29 +08:00
Yossi Levy 423c4fbc18 The direct_access_devicekey test should not run if there is no component flashiap block device in the target 2019-01-09 13:48:25 +02:00
offirko 6592e85c13 Added utility function to help locate expected internal flash tdbstore position.
(Supporting FILESYSTEM and TDB_EXTERNAL configuration only)
2019-01-09 13:48:25 +02:00
offirko bb0d1afa9a Updated test to consider tdb_internal non default configuration as well 2019-01-09 13:48:25 +02:00
offirko 945579378e Adding low code size tool for direct access to Devicekey.
This enables application with code size restrictions to access
devicekey directly based on address in internal flash without kvconfig overhead
2019-01-09 13:48:24 +02:00
Veijo Pesonen 4a9f86565a [ESP8266] Fixes AT-layer socket_open-functions
When a socket open fails it musn't be treated as fatal error. Returning
a device error which is then handled by an application is the correct
solution
2019-01-09 13:20:52 +02:00
Amanda Butler e7384b09c3
Edit README.md
Edit file, mostly for active voice.
2019-01-09 05:08:55 -06:00
c_jin 970bc24c1c adjust directory structure for device 2019-01-09 19:03:34 +08:00
c_jin be65ebd038 add SPDX indentifier, modify 450zi.icf file and static definition in us_ticker.c 2019-01-09 19:03:33 +08:00
c_jin 04c0e4fe5c add button definitions 2019-01-09 19:03:33 +08:00
c_jin c31ecd8e40 modify the 'INITIAL_SP' for GD32F450ZI 2019-01-09 19:03:33 +08:00
c_jin 5a1108e742 Add GD32_F450ZI as new target 2019-01-09 19:03:33 +08:00
Cruz Monrreal 5da210bd41
Updated pyyaml due to possible vulnerability
Ref: https://nvd.nist.gov/vuln/detail/CVE-2017-18342
2019-01-08 12:12:42 -06:00
Seppo Takalo 8bf3ce3d68 ESP8266: Set HW reset time to 2ms 2019-01-08 18:18:46 +02:00
Martin Kojtal c27dabe765
Merge pull request #9256 from jeromecoutant/PR_FLASHEEPROM
STM32L0 & STM32L1: FLASH is EEPROM
2019-01-08 15:06:50 +00:00
Przemyslaw Stekiel ef681bf18d Add SPDX-License-Identifier and Copyright in new files 2019-01-08 15:32:08 +01:00
Przemyslaw Stekiel d97c4d5506 [TT] Support boot stack size configuration option 2019-01-08 15:32:07 +01:00
Przemyslaw Stekiel 4ee9378297 [GigaDevice] Support boot stack size configuration option 2019-01-08 15:32:07 +01:00
Przemyslaw Stekiel 888f49dade [NORDIC] Support boot stack size configuration option 2019-01-08 15:32:07 +01:00
Przemyslaw Stekiel 4a113d2e29 [ublox] Support boot stack size configuration option 2019-01-08 15:32:07 +01:00
Przemyslaw Stekiel f74f3c1fd0 [WIZNET] Support boot stack size configuration option 2019-01-08 15:32:07 +01:00
Przemyslaw Stekiel 9fe7e360b3 [TOSHIBA] Support boot stack size configuration option 2019-01-08 15:32:07 +01:00
Przemyslaw Stekiel d30a14e64f [Silicon_Labs] Support boot stack size configuration option 2019-01-08 15:32:06 +01:00
Przemyslaw Stekiel 58f6bf7292 [STM] Support boot stack size configuration option 2019-01-08 15:32:06 +01:00
Przemyslaw Stekiel 3525f6b393 [Realtek] Support boot stack size configuration option 2019-01-08 15:32:04 +01:00
Przemyslaw Stekiel 36ff05345e [RDA] Support boot stack size configuration option 2019-01-08 15:32:04 +01:00