Commit Graph

21643 Commits (a8c9cf1322a83d45d0759a81f352c4089c98cfc5)

Author SHA1 Message Date
deepikabhavnani a8c9cf1322 Change DSP variant symbol to `E` from `D`(d-double floating point) 2019-02-08 16:50:27 +00:00
deepikabhavnani 46dbfd6199 GCC_ARM: Strip the -NS from core option before setting floating point options 2019-02-08 16:50:27 +00:00
deepikabhavnani d8d62238d2 Armc6 - Set floating point and CPU options for all core variants explicitly
Below are the options read from the toolchains/arm
armclang --target=arm-arm-none-eabi -mcpu=list
The following arguments to option 'mcpu' can be selected:
  -mcpu=cortex-m0
  -mcpu=cortex-m0plus
  -mcpu=cortex-m1
  -mcpu=cortex-m3
  -mcpu=cortex-m4
  -mcpu=cortex-m7
  -mcpu=cortex-m23
  -mcpu=cortex-m33
  ...

armlink --cpu=list
The following arguments to option 'cpu' can be selected:
 --cpu=Cortex-M0
 --cpu=Cortex-M0plus
 --cpu=Cortex-M1
 --cpu=Cortex-M1.os_extension
 --cpu=Cortex-M1.no_os_extension
 --cpu=Cortex-M4
 --cpu=Cortex-M4.no_fp
 --cpu=Cortex-M7
 --cpu=Cortex-M7.fp.sp
 --cpu=Cortex-M7.no_fp
 --cpu=Cortex-M23
 --cpu=Cortex-M33
 --cpu=Cortex-M33.no_fp
 --cpu=Cortex-M33.no_dsp
 --cpu=Cortex-M33.no_dsp.no_fp
...

armclang --target=arm-arm-none-eabi -mfpu=list
The following arguments to option 'mfpu' can be selected:
  -mfpu=fpv4-sp-d16
  -mfpu=fpv5-sp-d16
  -mfpu=fpv5-d16
...
2019-02-08 16:50:27 +00:00
deepikabhavnani 1c5eb39b05 Use core arch for setting secure/non-secure flags 2019-02-08 16:50:27 +00:00
deepikabhavnani bad1483a30 Moved util (common test folder) inside the TESTS directory
Util was common test folder, which was kept outside as we had
no mechanism to have common files for various tests in tools.
Now same can be achieved by having COMMON folder inside tests
directory
2019-02-08 16:50:27 +00:00
deepikabhavnani aa6d80d39e Moved `mbed_lib.json` outside config folder
This is to have consistency across all storage components
2019-02-08 16:50:27 +00:00
David Saada 025edb0c5f FlashIAP BD: Assert if default constructor is used w/o config change 2019-02-08 16:50:27 +00:00
Marcin Tomczyk e0bf2593ce ONME-3868, Modiefie mem-size parameter to minimal size that work with DTLS 2019-02-08 16:50:27 +00:00
David Saada 569540f8d6 NVStore: fix area calculation function
Don't allocate the sector map array in this function,
as it was buggy and redundant. Separate user config vs. automatic allocation
cases instead (which was essentially the case anyway).
In addition, fix tests to get over failures in low end boards
2019-02-08 16:50:27 +00:00
Seppo Takalo c66456a1d6 Fix TCPSOCKET_ENDPOINT_CLOSE: Cannot accept WOULD_BLOCK
This testcase uses Socket in blocking mode, and therefore
WOULD_BLOCK should not be accepted.
The logic was wrong anyway, because return value was tested
to be negative before testing with WOULD_BLOCK which is negative
as well.

Also replaced TEST_FAIL() macro with TEST_ASSERT_EQUAL() to
make the return code visible in test log.
2019-02-08 16:50:27 +00:00
Amir Cohen dd43030751 Add sd-driver example 2019-02-08 16:50:27 +00:00
jeromecoutant 8d4b54db12 STM32_gen_PeripheralPins.py v1.5
Use dedicated PinMap for each QSPI data line #9438
2019-02-08 16:50:27 +00:00
jeromecoutant 4ba8e0e754 STM32: PeripheralPins files minor update
Script version 1.4
CubeMX DB version DB.5.0.1
2019-02-08 16:50:27 +00:00
jeromecoutant 9563254658 STM32_gen_PeripheralPins.py v1.4
Minor updates:
- remove QSPI BK2
- beautifier edition
- use STM_MODE_ANALOG_ADC_CONTROL for L4 family
2019-02-08 16:50:27 +00:00
Jarno Lamsa be2eb9b6ed Set tasklet parameters before connecting
Set tasklet parameters before connecting to prevent the parameters to be set to 0.
The tasklet parameters are reset to 0 when wisun_tasklet_connect gets called,
thus those need to be set in the wisun_tasklet_configure_and_connect_to_network
before they are used. This is also done this way in other tasklets.
2019-02-08 16:50:27 +00:00
Jarno Lamsa fdd0360f3e Remove yotta-specific lines from .gitignore 2019-02-08 16:50:27 +00:00
paul-szczepanek-arm 03fda0c842 review fixes 2019-02-08 16:50:27 +00:00
paul-szczepanek-arm 77113a9f2c check scanning status first 2019-02-08 16:50:27 +00:00
paul-szczepanek-arm a0b5b60e6b scan timeout for 4.2 controllers using new API 2019-02-08 16:50:27 +00:00
Brian Daniels 3180422483 Update utest README 2019-02-08 16:50:27 +00:00
Brian Daniels cadbd3a950 Correct example given in greentea-client readme 2019-02-08 16:50:27 +00:00
Brian Daniels fa92ed4137 Remove reference to yotta and mbed-drivers in greentea-client 2019-02-08 16:50:27 +00:00
Brian Daniels 3ad5e13070 Removing references to yotta and minar within utest 2019-02-08 16:50:27 +00:00
Michal Paszta cd438a321a Prevent double attempt to connect mesh api
Socket network interface tests were failing due to DICONNECTED event
being advertised, where GLOBAL_UP was expected. It turned out that
nanostack receives two events: APPL_EVENT_CONNECT and
APPL_BACKHAUL_INTERFACE_PHY_UP. The second attempt to connect obviously
returns errors, but it also causes events to be sent out to the
application. The second attempt should not take place in case the
bootstrap is already started.

I also fixed two reports being sent with DISCONNECT status, while they
are actually something else.
2019-02-08 16:50:27 +00:00
jeromecoutant 2eec7c8562 STM32H7: 0S2 compilation 2019-02-08 16:50:27 +00:00
Fahim Alavi fad7ff9655 Fixed modem reset functionality to avoid low time to trigger module switch off 2019-02-08 16:50:27 +00:00
Veijo Pesonen 7dbce3e15a Test UDPSOCKET_SENDTO_INVALID allows NSAPI_ERROR_UNSUPPORTED 2019-02-08 16:50:27 +00:00
Veijo Pesonen dd82b6be74 ESP8266: with empty packet send returns zero if TCP, unsupported otherwise 2019-02-08 16:50:27 +00:00
Mirela Chirica 138a2774a0 Cellular: Remove makefile and mbedignore refering to obsolete cellular unit tests 2019-02-08 16:50:27 +00:00
Jimmy Brisson 675b7bd4f6 Updated spm test runner wish short import variant
Co-Authored-By: cmonr <Cruz.Monrreal@arm.com>
2019-02-08 16:50:27 +00:00
Cruz Monrreal II 59262edf82 Simplified max/min condition 2019-02-08 16:50:27 +00:00
Cruz Monrreal II 1d20646947 Enable xenail dist for only Py37 job Other jobs will follow with other PR 2019-02-08 16:50:27 +00:00
Cruz Monrreal II 300cb4ba19 Enabled Py3.{5,6,7} in Travis CI 2019-02-08 16:50:27 +00:00
Cruz Monrreal II 792d13d395 Added flag to run_cmd Popen invocation to do default decoding 2019-02-08 16:50:27 +00:00
Cruz Monrreal II 755931de72 Added None check for min in config tools 2019-02-08 16:50:27 +00:00
Cruz Monrreal II 246f6fc305 In Py3.7, a reinit of a mock variable was needed. It seems that initializing mock variables in an object isn't enough 2019-02-08 16:50:27 +00:00
Cruz Monrreal II 5469c00e81 Added encoding to version check for Py3 compat 2019-02-08 16:50:27 +00:00
Cruz Monrreal II 8e169f2a06 Increased path for spm include. Py3 tests were not running as a result 2019-02-08 16:50:27 +00:00
Cruz Monrreal II 13ad6f6694 Added universal_newlines flag to Popen in pylint.py 2019-02-08 16:50:27 +00:00
Amir Cohen b6dcf89e61 Remove COMPONENT_FLASHIAP tests
FlashIAPBlockDevice LittleFS ‘fopen’ falls on nightly tests
LittleFS test on FlashIAP is not relevant and thus removed
2019-02-08 16:50:27 +00:00
Brian Daniels 708a52116a Update all mbed test packages.
This change allows the latest releases of mbed-ls, mbed-host-tests, and
mbed-greentea. This brings new target support, features, and bug fixes.
2019-02-08 16:50:27 +00:00
Mahesh Mahadevan d1a610a33c MIMXRT1050_EVK: Add IAR support in the exporter
Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@nxp.com>
2019-02-08 16:50:27 +00:00
Michal Paszta a7ee4afcf1 Publish TLSSocket test documentation
The whole README.md had to be updated to match the internal Confluence documentation, which can now be locked. In the process I also updated any spotted mistakes in tests documentation, removed the obsolete TCPServer tests documentation and added a test which was missing from UDPSocket's main.
2019-02-08 16:50:27 +00:00
Michal Paszta 2117c7f932 Add TLSSocket greentea tests.
TLSSocket tests based on existing TCPSocket greentea tests and TLSSocket icetea tests.
2019-02-08 16:50:27 +00:00
jeromecoutant 5949fd37d1 DIRS and SEEK SD tests update for small RAM targets
Test buffer size can now be specified for each target
2019-02-08 16:50:27 +00:00
Przemyslaw Stekiel ba15236fff Fix for Issue #7308 (Deep_sleep_lock Ticker.h Issue) 2019-02-08 16:48:59 +00:00
Mahesh Mahadevan fd6b59cf29 LPC546XX, MIMXRT1050: Update to fix ARMC6 build failures
Fix for issue 9402

Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@nxp.com>
2019-02-08 16:48:59 +00:00
Volodymyr Medvid ced094f153 PSOC6.py: generate hex files with 16 bytes per row
DAPLink implementation on Cypress kits cannot handle hex files
with 64 bytes per row: refer to https://github.com/ARMmbed/DAPLink,
source/daplink/drag-n-drop/intelhex.c, hex_line_t struct, data field.
2019-02-08 16:48:59 +00:00
Brian Daniels 75d438e271 Remove unused yotta module metadata 2019-02-08 16:48:59 +00:00
Amanda Butler 0b2cedc873 Remove outdated content from README.md
Remove requested outdated content, and update TOC to reflect changes.
2019-02-08 16:48:59 +00:00