George Beckstein
bcd8ebb645
Added custom board option to STM Pins generation script
2020-04-13 11:25:19 -04:00
Arun S
cfcfd11049
Remove ethernet interface logic for SoftAP and STA
...
Issue: The problem is that there is a race condition introduced in that the LWIP thread is relying on the
interface as it is taken down by a application thread while calling disconnect.
In disconnect api called from application context, whd_emac_wifi_link_state_changed() will refer to netif interface
structure in its callback api netif_link_irq(netif). This netif will be cleared by remove_etherent_interface().
whd_emac_wifi_link_state_changed will post message to tcpip_thread. tcpip_thread will process the message and
call the callback api netif_link_irq(netif)
Calling sequence is whd_emac_wifi_link_state_changed -> remove_etherent_interface(). Hence there is a timing issue
that netif might be cleared first before tcpip thread process the message netif_link_irq(netif)
Fix: remove_etherent_interface() will post message to tcpip thread and tcpip thread process the message delete_interface()
which will actually remove the inferface from the netif_list.
Calling sequence is whd_emac_wifi_link_state_changed() message post -> remove_etherent_interface() message post.
message processing order netif_link_irq(netif) -> delete_interface().
Since both the processing is handled in single thread, processing of message is handled sequentially.
2020-04-13 16:45:23 +05:30
Yoshihiro TSUBOI
5114eb707b
[Seeed] Removing unsupported targets for OS 6
...
Removing targets: Seeed Arch Link, Seeed Arch-RO359B, Seeed Arch BLE, Seeed Tiny BLE, Seeed Arch GPRS V2,Seeed Xadow M0
2020-04-13 18:30:32 +09:00
MarceloSalazar
73206b5b69
Fix WIO_EMW3166 target for WICED driver
2020-04-09 22:56:50 +01:00
Rajkumar Kanagaraj
c91362fa3c
Baremetal: Enable kernel_tick_count greentea test
2020-04-09 16:45:57 +01:00
Lingkai Dong
c927773115
Port Cordio LE Secure Connections check from PacketCraft
...
This change is provided by Packetcraft (which maintains the
Cordio BLE stack) to address possible Sweyntooth vulnerabilities.
2020-04-09 16:01:28 +01:00
Lingkai Dong
0402fe4efb
Port Cordio SMP control block improvements from Packetcraft
...
This change is provided by Packetcraft (which maintains the
Cordio BLE stack) to address possible Sweyntooth vulnerabilities.
2020-04-09 15:57:59 +01:00
MarceloSalazar
a15f6a43ad
General clean-up of unsupported targets
2020-04-09 15:36:21 +01:00
MarceloSalazar
4ae7b0e814
Remove VBLUNO targets
2020-04-09 15:32:41 +01:00
MarceloSalazar
8bf863c181
Remove vk_rz_a1h target
2020-04-09 15:32:41 +01:00
MarceloSalazar
e43ece13aa
Rename EMW3166 target
2020-04-09 15:32:41 +01:00
MarceloSalazar
831c475a46
Remove Silica target
2020-04-09 15:32:41 +01:00
MarceloSalazar
0aa4713429
Remove Wiznet targets
2020-04-09 15:32:41 +01:00
MarceloSalazar
1e4c707cc5
Remove ELMO target
2020-04-09 15:32:41 +01:00
MarceloSalazar
c50c940761
Remove TI targets
2020-04-09 15:32:40 +01:00
MarceloSalazar
92d8838296
Remove Atmel targets
2020-04-09 15:32:40 +01:00
MarceloSalazar
c0f7670c6f
Remove GD32_E103VB target
2020-04-09 15:32:40 +01:00
MarceloSalazar
a3f9bbb002
Remove RDA targets
2020-04-09 15:32:39 +01:00
MarceloSalazar
3ad6c4fa2b
Remove Ublox ODIN targets
2020-04-09 15:32:39 +01:00
MarceloSalazar
32fab9bc0d
Remove Realtek targets
2020-04-09 15:32:39 +01:00
MarceloSalazar
8858a87071
Remove Thundersoft targets
2020-04-09 15:32:38 +01:00
Rajkumar Kanagaraj
176c599a60
Incorported the review comment
2020-04-09 15:19:11 +01:00
Martin Kojtal
7fce7f552c
Merge pull request #12572 from rajkan01/waitapi_remove_deprecated
...
Remove mbed wait deprecated APIs
2020-04-09 14:57:46 +02:00
Martin Kojtal
71c9780dfe
Merge pull request #12387 from AGlass0fMilk/objects-extensions
...
Add Objects Extensions Configuration Parameter to HAL
2020-04-09 10:20:44 +02:00
Martin Kojtal
d089c86f09
Merge pull request #12581 from kjbracey-arm/hard_noncopy
...
Fully enforce NonCopyable
2020-04-09 10:13:37 +02:00
Martin Kojtal
149235f731
Merge pull request #12589 from u-blox/disconnect
...
Cellular: Add deativation of context associated with profile
2020-04-09 09:39:27 +02:00
Martin Kojtal
0aacbf72d1
Merge pull request #12668 from VeijoPesonen/fix_tests-integration-fs_2
...
tests-integration-fs-threaded: makes tests independent from each other
2020-04-09 09:04:56 +02:00
Sree Harsha Angara
b77a5b331c
Removed NVRAM references to CY8CKTI_064B0S2_4343W Kit
2020-04-08 11:32:27 -07:00
Sree Harsha Angara
63b93ff696
Removing ES100 references and CY8CKIT_064B0S2_4343W
2020-04-08 11:28:58 -07:00
Rajkumar Kanagaraj
d598d81221
Baremetal: Enable EventFlags greentea test
2020-04-08 18:36:26 +01:00
Rajkumar Kanagaraj
3d128e861b
- Fix the CI build issue.
...
- Incorporate the review comment.
2020-04-08 10:35:07 +01:00
Rajkumar Kanagaraj
cbb15ad9ac
ThisThread::sleep_for is asserted when the PWM test case calls this API with IRQ masked, so wait_us is used to fix this issue as PWM testes to be executed with interrupt disabled to avoid context switch.
2020-04-08 10:35:07 +01:00
Rajkumar Kanagaraj
9739b565b2
Fix the CI build issue
2020-04-08 10:35:07 +01:00
Rajkumar Kanagaraj
83be3f24a5
Remove mbed wait deprecated APIs
2020-04-08 10:35:07 +01:00
Sree Harsha Angara
118b4b3df1
Fixing clock for greentea cordio test
2020-04-07 14:43:29 -07:00
YARB(Cypress)
4f28ff0b16
Remove extraneous label to include CM0p firmware image that has been updated to be included using the component mechanism.
2020-04-07 10:42:32 -07:00
midd
0504873255
Remove an assert from get_rssi() in WhdSTAInterface.cpp which causes rssi greentea test to fail in Cypress parts. This is because the rssi GT test expect the negative test case to return 0 and not assert.
2020-04-07 10:42:17 -07:00
Taylor Heck
300820f562
Fix syntax error in uvision export tool introduced in previous commit.
2020-04-07 09:00:09 -05:00
Taylor Heck
6d382ea969
Delete now unused MTSCode.combine_bins_mts_dot function for tools.
2020-04-07 09:00:09 -05:00
Taylor Heck
8ba0a74dae
Remove MTS_MDOT_F411RE bootloader binary from tools
2020-04-07 09:00:09 -05:00
Taylor Heck
5ca347f460
Use basic STM32F411RE linker scripts, removes bootloader section.
2020-04-07 09:00:09 -05:00
Taylor Heck
94dd3f98c3
Update system_clock.c for VECT_TAB_OFFSET changes in target definition
2020-04-07 09:00:07 -05:00
Taylor Heck
be03c0d937
Remove post_binary_hook from MTS_MDOT_F411RE target definition.
2020-04-07 09:00:06 -05:00
Hugues Kamba
eca09b7c17
Fix: Return the correct std I/O device handle for Microlib in retarget code
...
Return the correct filehandle based on the mode requested. The mode is used
as the pathname is always the default one (":tt") for Microlib. The
previous implementation relied on three successive calls to open the std
I/O device handles, this was not the case.
2020-04-07 13:10:20 +01:00
cyliangtw
89077b1d8b
fulfill astyle
2020-04-07 18:32:36 +08:00
cyliangtw
fd7b160fd1
esp8266 support baud-rate switch
2020-04-07 17:27:57 +08:00
Lingkai Dong
07c25bba16
GattCharacteristic: remove deprecated APIs and helper function SecurityModeToAttSecurity
2020-04-07 10:27:16 +01:00
Lingkai Dong
70a564e7de
GattClient: remove deprecated onDataWrite
2020-04-07 10:27:16 +01:00
Lingkai Dong
1a89b7718c
BLE SecurityManager: remove legacy event callbacks and deprecated API
2020-04-07 10:27:16 +01:00
Sree Harsha Angara
3b6020c1be
Updating BSP files for CYESKIT_064B0S2_4343W
2020-04-06 17:12:23 -07:00