Filip Jagodzinski
e98cc2077e
HAL: Serial: Update the header file doxy
...
Clarified defined/undefined behavior.
2019-10-28 13:10:51 +01:00
Przemyslaw Stekiel
7aea44f0cf
Add header files to fpga tests, update test names
2019-10-28 13:10:51 +01:00
Przemyslaw Stekiel
1bbcc8fd56
SPI: add defined behavior
2019-10-28 12:52:30 +01:00
Przemyslaw Stekiel
6cec7bbd6d
Serial: add defined behavior
2019-10-28 12:52:30 +01:00
Przemyslaw Stekiel
96b48bc241
PWM: add defined behavior
2019-10-28 12:52:30 +01:00
Przemyslaw Stekiel
b8d225e860
I2C: add defined behavior
2019-10-28 12:52:30 +01:00
Przemyslaw Stekiel
d35e8e3001
GPIO IRQ: add defined behavior
2019-10-28 12:52:30 +01:00
Przemyslaw Stekiel
d68bafe472
GPIO: add defined behavior
2019-10-28 12:52:29 +01:00
Przemyslaw Stekiel
85a2cb27a3
Analogout: add defined behavior
2019-10-28 12:52:29 +01:00
Przemyslaw Stekiel
2929895fb1
Analogin: add defined behavior
2019-10-28 12:52:29 +01:00
Martin Kojtal
6f7c1c9037
Merge pull request #11742 from fkjagodzinski/fix-reset_reason-ci_nightly
...
Fix the reset_reason host test in the CI
2019-10-28 11:53:42 +01:00
Martin Kojtal
1c5fe1c9f5
Merge pull request #11752 from mnaberez/erase-value
...
FlashIAP: Get erase value from HAL instead of hardcoding it
2019-10-28 11:21:10 +01:00
Martin Kojtal
5a5b0f620d
Merge pull request #11571 from AriParkkila/OS_THREAD_LIBSPACE_NUM
...
Allow OS_THREAD_LIBSPACE_NUM as a macro
2019-10-28 11:09:23 +01:00
Martin Kojtal
3efae200ea
Merge pull request #11743 from maciejbocianski/fpga_i2c_test_limit_ports
...
fpga i2c test: limit tested peripherals
2019-10-28 11:04:33 +01:00
Martin Kojtal
bc2162ab19
Merge pull request #11718 from desmond-blue/fix-ex-sm-fail-nrf52840
...
Handle legacy process event first on connection complete
2019-10-28 09:54:44 +01:00
Martin Kojtal
83c4a80082
Merge pull request #11710 from jamesbeyond/exp_github
...
Update examples testing scripts
2019-10-28 09:50:36 +01:00
Martin Kojtal
87a5e47b42
Merge pull request #11631 from maciejbocianski/qspi_frequency_test_fix
...
Qspi frequency test fix
2019-10-28 09:41:36 +01:00
Mirela Chirica
beeccbe52c
Cellular: Added write_hex_string to AT handler
2019-10-28 10:34:05 +02:00
Martin Kojtal
98072b24c8
Merge pull request #11748 from cydriftcloud/pr-dev/fix-spurious-link-down-up
...
Fix spurious link up/down when AP IP address range change
2019-10-28 09:28:54 +01:00
Maciej Bocianski
703348acc8
NRF52: fix i2c byte read/write implementation
...
i2c_byte_write implementation was broken.
Data sending was inside addressing block
Changed from:
i2c_byte_write
{
if (start) {
if (read_address)
start read;
esle
start write;
write byte;
}
}
to:
i2c_byte_write
{
if (start) {
// if first call after start
// address for reading or writing
if (read_address)
start read;
esle
start write;
} else {
// send data byte
write byte;
}
}
2019-10-28 08:41:12 +01:00
Mike Naberezny
6be96ba4b2
FlashIAP: Get erase value from HAL instead of hardcoding it
2019-10-26 14:11:42 -07:00
Balaji
5b9291628e
rebase mbed_lib.json to upstream/master
2019-10-25 12:39:27 -07:00
Balaji
948e989d27
fix mbed_lib.json add ,
2019-10-25 12:14:31 -07:00
Balaji
d9045b4840
index on lwip-rawsocket: 6905b1b547
Incorporate review comments from @kjbracey-arm
2019-10-25 11:00:55 -07:00
Balaji
6905b1b547
Incorporate review comments from @kjbracey-arm
2019-10-25 10:51:50 -07:00
Balaji
5168bbdcd0
Add InternetDatagram Base Class
2019-10-25 10:48:13 -07:00
Balaji
ab883350a0
Incorporate review comments from @kjbracey-arm
2019-10-25 10:48:12 -07:00
Balaji
90e188b23a
fix a style convention
2019-10-25 10:48:12 -07:00
Balaji
b91836a94d
fix astyle convention
2019-10-25 10:48:12 -07:00
Balaji
1a7288d220
fix astyle convention
2019-10-25 10:48:12 -07:00
Balaji
d92a946b78
fix astyle convention
2019-10-25 10:48:12 -07:00
Balaji
0b5dea5f99
Changes to the PR 10978 (LWIP: Add RAWIPSocket support)
2019-10-25 10:48:12 -07:00
Qinghao Shi
a211cf16a9
EXAMPLES: temporarily turn off build for NFC examples
2019-10-25 17:33:27 +01:00
Martin Kojtal
e1c3de649d
Merge pull request #11747 from miteshdedhia7/pr/fix-kvstore-statictests
...
Update the internal kvstore flash reservation size to from 7k to 65K for Cypress Devices
2019-10-25 14:42:10 +02:00
Martin Kojtal
45a63fbe3d
Merge pull request #11749 from OpenNuvoton/nuvoton_m2351_fix_platform_name
...
M2351: Change base target name 'NU_PFM_M2351_CM' to 'NU_PFM_M2351'
2019-10-25 14:30:13 +02:00
Martin Kojtal
e5a728f8c0
Merge pull request #11563 from adbridge/master
...
Simplify pull request template
2019-10-25 13:57:35 +02:00
Martin Kojtal
a44fd827c2
Merge pull request #11578 from cydriftcloud/pr-dev/ap-sta-op-sync
...
Add synchronization and switching between WhdSoftAPInterface and WhdSTAInterfaces
2019-10-25 13:36:10 +02:00
Chun-Chieh Li
ec08bf6451
M2351: Change base target name 'NU_PFM_M2351_CM' to 'NU_PFM_M2351'
...
This is to meet platform name 'NU_PFM_M2351' registered in mbed-os-tools. This tool
uses the platform name as a key to search platform related properties in targets.json.
For example, the property 'forced_reset_timeout' is critical for Greentea test.
2019-10-25 14:05:43 +08:00
Lei Zhang
d411d72196
MIDDLEWARE-2134: Fix spurious link up/down when AP IP address range changes
...
Fixed additional link down/up events in whd_wifi_link_state_change_handler by checking additional condition during the transition.
2019-10-24 18:43:07 -07:00
Sebastian Stockhammer
2e81dad1f3
Fix build
2019-10-24 14:02:12 +02:00
Sebastian Stockhammer
a77a49d6d2
Add serial_free definition
2019-10-24 13:07:37 +02:00
Filip Jagodzinski
f1f9f45378
Test: Fix the reset_reason host test in the CI
...
Use a BaseHostTestAbstract.reset() method instead of
BaseHostTestAbstract.reset_dut() for more consistent behavior with
various platforms in the CI.
In contrast to a local setup, the reset_dut() method flashes the binary
again after performing the reset in a remote setup (RaaS). This was not
intentional in reset_reason tests. Moreover, this led to a different
behavior (a different reset_reason) for different flashing methods which
are target specific.
2019-10-24 13:04:13 +02:00
Sebastian Stockhammer
1c907e6db9
Update deep sleep locks according to enabled state
2019-10-24 12:53:52 +02:00
Maciej Bocianski
bf48415dd3
fpga i2c test: limit tested peripherals
...
Due to lack of i2c_free function switching between peripherals
cause i2c tests failures on some targets.
For now limit testing to single peripheral.
2019-10-24 12:31:48 +02:00
Martin Kojtal
8637069b36
Merge pull request #11698 from kjbracey-arm/armstack
...
Clean up ARM toolchain heap+stack setup in targets
2019-10-24 11:37:11 +02:00
Martin Kojtal
58ef53aa10
Merge pull request #11734 from maciejbocianski/nxp_lpc55s69_i2c_pinmap_fix
...
nxp LPC55S69: fix i2c pin mapping
2019-10-24 11:19:10 +02:00
Martin Kojtal
19fc2b1fef
Merge pull request #11650 from OpenNuvoton/nuvoton_trng-hal-with-trng-hw
...
Nuvoton: Re-implement TRNG HAL with TRNG H/W
2019-10-24 10:30:19 +02:00
Martin Kojtal
ab931ee27c
Merge pull request #11662 from cydriftcloud/pr-dev/sta-extended-scan
...
Allow WhdAccessPoint scan results with extended parameters
2019-10-24 10:26:07 +02:00
Sebastian Stockhammer
a3107062d9
Call correct method
2019-10-24 10:24:36 +02:00
Sebastian Stockhammer
e72468c037
Handle undefined DEVICE_SERIAL_FC
2019-10-24 10:24:36 +02:00