Commit Graph

23767 Commits (012a117df73e857ba22ba6a93b50e5c41c3004cc)

Author SHA1 Message Date
d-kato 012a117df7 Changed LOOP_SCALER of "wait_ns()" 2019-04-05 12:26:27 +01:00
d-kato fe1b368415 Refactoring system clock driver 2019-04-05 12:26:27 +01:00
d-kato 306ab7a650 Removed clock mode decision of "SystemCoreClockUpdate()"
Since GPIO.PPR0 can not check clock mode, I changed it to set a fixed value for each board.
2019-04-05 12:26:27 +01:00
d-kato 65a4de1c82 Fix the value of SystemCoreClock
The OS timer of RZ/A1 uses P0 clock, so until now it has been set the value of P0 clock in SystemCoreClock.
Changed the system clock value to set to SystemCoreClock.
Changed to refer to P0 clock macro instead of SystemCoreClock in OS timer processing.
2019-04-05 12:26:27 +01:00
ccli8 5ef3e077ba Add button names BUTTON1/BUTTON2 2019-04-05 12:26:27 +01:00
Mirela Chirica 2e61afe694 Cellular: WISE-1570 needs greater receiving timeout to pass UDPSOCKET_ECHOTEST_NONBLOCK test
Reason for needing greater timeout could be this test's performance.
UDPSOCKET_ECHOTEST_BURST_NONBLOCK is implementing the receiving
differently and is passing with 1 second timeout.
2019-04-05 12:26:26 +01:00
Amir Cohen c5a0d469ff Improve general Block Device tests
Fixing all rand issues, aligning erase addresses, moving prints to debug mode.
2019-04-05 12:26:26 +01:00
Hasnain Virk 6b51397ae5 Unit test fix LoRaPHY_stub
get_rx_window_params() API is changed. To reflect that changing the
stub.
2019-04-05 12:26:26 +01:00
Hasnain Virk 1f322d23eb Ack timeout must be at least 2 seconds
While calculating ack timeout, we were ending up getting a random value
which may become less than 2 seconds. This is not allowed as per v1.0.2
specification.

To fix the issue we now take the random number from 0 to 2000 ms and
then add that to the fixed 2000 ms ack timeout value, guaranteeing a
value at least equal to 2000 ms.
2019-04-05 12:26:26 +01:00
Hasnain Virk 8e298cc98d Fixing premature RX2 abort
A bug while setting up RX start timers would result in premature closusre
of RX2 window. The 'ack_Timeout_timer' would be invoked prematurely and
at that time RX2 window may be being demodulating. This resulted in
massive instability with any test that relied on Confirmed traffic or
lower data rates.

To fix the issue, we must know the length of the RX window in
milliseconds and for this purpose we have extended the
'get_rx_window_params(...)' API. The length of the time the window
may remain open must be accounted for while setting up
'ack_timeout_timer'.
2019-04-05 12:26:26 +01:00
Oren Cohen ad79a3bd8e Define program_cycle_s for CY8CKIT_062_WIFI_BT 2019-04-05 12:26:26 +01:00
Oren Cohen be524bbb5d Define program_cycle_s for NXP LPC55S69 2019-04-05 12:26:26 +01:00
Martin Kojtal 03427b35b5 readme: remove waffle as not supported soon
Fixes #10176
2019-04-05 12:26:26 +01:00
Tymoteusz Bloch 4897ff28e5 Fixed compilation error in LWIPStack class if lwip tcp is disabled. 2019-04-05 12:26:26 +01:00
Arto Kinnunen 6b0897bc64 Nanostack 802.15.4 RF drivers update
Sync Nanostack RF drivers from master copy:
-MCR20A: v1.0.6
-S2LP: v0.0.5
2019-04-05 12:26:26 +01:00
Leszek Rusinowicz 5664a928f1 Workaround for ARMC6 Windows 7 assembler issue
On Windows 7 using --preproc option in ARMC6 assembler doesn't work
when -MD option is also specified. Compiler creates incorrect filename for
dependency file and compilation files.
To workaround this issue, this change returns to using a temporary file and
separately calling preprocessor and assembler (as in a case of ARMC5).
2019-04-05 12:26:25 +01:00
Michael Schwarcz 24a3b0cc74 LPC targets: Compile us_ticker.c only if USTICKER defined 2019-04-05 12:26:25 +01:00
Michael Schwarcz b130fae17e Add USTICKER to more targets
- LPC4088
- LPC4088_DM
- MAX32600MBED
- NCS36510
- WIZWIKI_W7500
- WIZWIKI_W7500ECO
- WIZWIKI_W7500P
2019-04-05 12:26:25 +01:00
Michael Schwarcz 83f9243362 Add USTICKER to ARCH_PRO target 2019-04-05 12:26:25 +01:00
Michael Schwarcz ca23b4397f Remove dependency on us_ticker HAL apis for non USTICKER targets
- Surround mbed_us_ticker_api.c with if DEVICE_USTICKER
- get_us_ticker_data() returns NULL for non-usticker targets.
2019-04-05 12:26:25 +01:00
itziar c4c6515ad3 Applied suggested astyle fix(es) 2019-04-05 12:26:25 +01:00
itziar 18e8671b68 Bug related to downlink sequence counter rollover 2019-04-05 12:26:25 +01:00
kegilbert ed08c8f940 Remove gnuarmeclipse from baremetal export testing
baremetal does not currently work with gnuarmeclipse
2019-04-05 12:26:25 +01:00
Kevin Gilbert 3e9e126707 Add baremetal example to testing 2019-04-05 12:26:25 +01:00
Ryan Morse 9b9125a7f1 Fixed issue with PWM not being freed when the object is destroyed 2019-04-05 12:26:24 +01:00
ccli8 b8a626c3ab Fix MBED_RAM_START/MBED_RAM_SIZE symbol generation
1. Fix MBED_RAM_START/MBED_RAM_SIZE are not generated when there are
   target.mbed_ram_start/target.mbed_ram_size overrides
2. Fix MBED_RAM_START/MBED_RAM_SIZE are duplicated.
2019-04-05 12:26:24 +01:00
Malavika Sajikumar 865a5dcf13 Renaming SDP-K1 to SDP_K1. 2019-04-05 12:26:24 +01:00
Malavika Sajikumar ad163d73e1 Disabling LPTICKER for now. Fixing a few more alignment issues. 2019-04-05 12:26:23 +01:00
Malavika Sajikumar 792d3b09d2 Updating SPDX-License-Identifier. 2019-04-05 12:26:23 +01:00
Malavika Sajikumar bb863b3109 Adding support for SDP connector pins. 2019-04-05 12:26:23 +01:00
Malavika Sajikumar 41ba2da3d6 Fixing for Travis CI test fail. 5e9e140. 2019-04-05 12:26:23 +01:00
Malavika Sajikumar 4b080876e9 Adding SPDX identifier (year 2019) to the license. 2019-04-05 12:26:23 +01:00
Malavika Sajikumar 84fe82e78e Removing commented out lines. Added SDP connector pins. 2019-04-05 12:26:23 +01:00
Malavika Sajikumar cfcefd347f Fixing alignment on the lines for SDP-K1 description. 2019-04-05 12:26:23 +01:00
Malavika Sajikumar 5b4b4386d0 Adding support for SDP-K1. 2019-04-05 12:26:22 +01:00
itayzafrir e53e8b9f94 Remove uneeded TODO comment from the code 2019-04-05 12:26:22 +01:00
itayzafrir f45801a611 Unify code style
- Use designated initializers for IPC structs
- Unify variables declaration and initialization
2019-04-05 12:26:22 +01:00
itayzafrir e2eea51eaa Unify sections titles/comments & fix typo in comment 2019-04-05 12:26:22 +01:00
itayzafrir 0bd2275c04 Set handle to PSA_NULL_HANDLE when closing IPC connection 2019-04-05 12:26:22 +01:00
itayzafrir 8bc0c45d00 Use PSA_NULL_HANDLE when testing for invalid handles 2019-04-05 12:26:21 +01:00
itayzafrir f8cdd41415 Use psa prefix for crypto.h include 2019-04-05 12:26:21 +01:00
itayzafrir 9a5839ab8f Refactor crypto service proxy 2019-04-05 12:26:21 +01:00
Cruz Monrreal II 709e36f38a Updated astyle to work with updated .astyleignore file fgrep === grep -F -F treats lines as fixed strings (aka, the '^' isn't expanded) 2019-04-05 12:26:20 +01:00
Cruz Monrreal II 423079728d Replaced './' with '^' in .astyleignore file. '^' matches start of line, which is what fgrep/grep use to properly ignore start of lines 2019-04-05 12:26:20 +01:00
jeromecoutant 3c17155119 DISCO_L496AG: Add PMOD and STMOD+ connector 2019-04-05 12:26:20 +01:00
Cruz Monrreal II 7ba2b9bc6f Added missing astyle corrections for TESTS/mbed_hal/* 2019-04-05 12:26:20 +01:00
Cruz Monrreal II c6ae213299 Added missing astyle corrections for usb/device/targets/* 2019-04-05 12:26:20 +01:00
Cruz Monrreal II bff6753fee Added './' prefix to all directories in .astyleignore This forces directory searching to not over-exclude files.
Also sorted the list, because it's nice.
2019-04-05 12:26:20 +01:00
ccli8 2ab9540b80 Remove SD component from targets.json
Nuvoton targets below don't provide SPI-bus SD on-board, identified by 'SD' in
target component list. Instead, these targets provide SD-bus SD on-board, identified
by unofficial 'NUSD', driver of which is provided outside mbed-os tree. So 'SD' must
be removed to reflect the truth.

- NUMAKER_PFM_NUC472
- NUMAKER_PFM_M487
- NUMAKER_IOT_M487
- NUMAKER_PFM_M2351
2019-04-05 12:26:20 +01:00
mudassar-ublox 4402908bbd C030_N2XX default interface 2019-04-05 12:26:20 +01:00