-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #88 from SiliconLabs/soc_cli_wifi_ble_demo
iot-pa-coex-cli_demo_wifi_ble
- Loading branch information
Showing
103 changed files
with
19,578 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
433 changes: 433 additions & 0 deletions
433
SiWx917/wlan_ble/iot-pa-coex-cli_demo_wifi_ble/SEGGER_RTT_Conf.h
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/***************************************************************************/ /** | ||
* @file app.h | ||
* @brief Top level application functions | ||
******************************************************************************* | ||
* # License | ||
* <b>Copyright 2020 Silicon Laboratories Inc. www.silabs.com</b> | ||
******************************************************************************* | ||
* | ||
* The licensor of this software is Silicon Laboratories Inc. Your use of this | ||
* software is governed by the terms of Silicon Labs Master Software License | ||
* Agreement (MSLA) available at | ||
* www.silabs.com/about-us/legal/master-software-license-agreement. This | ||
* software is distributed to you in Source Code format and is governed by the | ||
* sections of the MSLA applicable to Source Code. | ||
* | ||
******************************************************************************/ | ||
|
||
#ifndef APP_H | ||
#define APP_H | ||
|
||
/***************************************************************************/ /** | ||
* Initialize application. | ||
******************************************************************************/ | ||
void app_init(void); | ||
|
||
/***************************************************************************/ /** | ||
* App ticking function. | ||
******************************************************************************/ | ||
void app_process_action(void); | ||
|
||
#endif // APP_H |
Oops, something went wrong.