-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upload stm32-connectivity 1.4.0.4190
- Loading branch information
Showing
1,491 changed files
with
355,572 additions
and
50,696 deletions.
There are no files selected for viewing
Binary file not shown.
10 changes: 5 additions & 5 deletions
10
...es/wifi-mw-core/api_reference_manual.html → ...braries/lpa/lpa_api_reference_manual.html
100755 → 100644
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<title>Redirect to API Reference Manual main page after 0 seconds</title> | ||
<title>Redirect to LPA API Reference Manual main page after 0 seconds</title> | ||
<noscript> | ||
<meta http-equiv="refresh" content="0; URL=api_reference_manual/html/index.html"> | ||
<meta http-equiv="refresh" content="0; URL=lpa_api_reference_manual/html/index.html"> | ||
</noscript> | ||
<meta name="keywords" content="automatic redirection"> | ||
</head> | ||
<body onLoad="window.location='api_reference_manual/html/index.html' " > | ||
<body onLoad="window.location='lpa_api_reference_manual/html/index.html' " > | ||
<h2> | ||
If the automatic redirection is failing, click the following link to open <a href="api_reference_manual/html/index.html">API Reference Manual</a>. | ||
If the automatic redirection is failing, click the following link to open <a href="lpa_api_reference_manual/html/index.html">LPA API Reference Manual</a>. | ||
</h2> | ||
</body> | ||
</html> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+40.3 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/BT_Personality.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
172 changes: 172 additions & 0 deletions
172
Documentation/libraries/lpa/lpa_api_reference_manual/html/FreeRTOSConfig.h
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,172 @@ | ||
/* | ||
* FreeRTOS Kernel V10.2.0 | ||
* Copyright (C) 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
* this software and associated documentation files (the "Software"), to deal in | ||
* the Software without restriction, including without limitation the rights to | ||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
* the Software, and to permit persons to whom the Software is furnished to do so, | ||
* subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
* | ||
* http://www.FreeRTOS.org | ||
* http://aws.amazon.com/freertos | ||
* | ||
* 1 tab == 4 spaces! | ||
*/ | ||
|
||
|
||
#ifndef FREERTOS_CONFIG_H | ||
#define FREERTOS_CONFIG_H | ||
|
||
#if defined(__ICCARM__) || defined(__GNUC__) | ||
#include "cy_pdl.h" | ||
#endif | ||
|
||
/*----------------------------------------------------------- | ||
* Application specific definitions. | ||
* | ||
* These definitions should be adjusted for your particular hardware and | ||
* application requirements. | ||
* | ||
* THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE | ||
* FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE. | ||
* | ||
* See http://www.freertos.org/a00110.html | ||
*----------------------------------------------------------*/ | ||
|
||
/* Ensure stdint is only used by the compiler, and not the assembler. */ | ||
#ifdef __ICCARM__ | ||
#include <stdint.h> | ||
extern uint32_t SystemCoreClock; | ||
#endif | ||
#include <cycfg_system.h> | ||
|
||
// | ||
// TODO - define in a way that uses the linker variables | ||
// | ||
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( CY_SRAM_SIZE - 64 * 1024)) | ||
|
||
//#define configUSE_RTOS_HEAP 1 | ||
#define configUSE_DAEMON_TASK_STARTUP_HOOK 0 | ||
#define configUSE_PREEMPTION 1 | ||
#define configUSE_IDLE_HOOK 0 | ||
#define configUSE_TICK_HOOK 0 | ||
#define configCPU_CLOCK_HZ SystemCoreClock | ||
#define configTICK_RATE_HZ ( ( TickType_t ) 1000 ) | ||
#define configMAX_PRIORITIES ( 5 ) | ||
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 130 ) | ||
#define configTIMER_TASK_STACK_DEPTH ( configMINIMAL_STACK_SIZE * 2 ) | ||
#define configMAX_TASK_NAME_LEN ( 10 ) | ||
#define configUSE_TRACE_FACILITY 1 | ||
#define configUSE_16_BIT_TICKS 0 | ||
#define configIDLE_SHOULD_YIELD 1 | ||
#define configUSE_MUTEXES 1 | ||
#define configQUEUE_REGISTRY_SIZE 8 | ||
#define configCHECK_FOR_STACK_OVERFLOW 2 | ||
#define configUSE_RECURSIVE_MUTEXES 1 | ||
#define configUSE_MALLOC_FAILED_HOOK 1 | ||
#define configUSE_APPLICATION_TASK_TAG 0 | ||
#define configUSE_COUNTING_SEMAPHORES 1 | ||
#define configGENERATE_RUN_TIME_STATS 0 | ||
#define configENABLE_FPU 1 | ||
#define configENABLE_MPU 0 | ||
#define configENABLE_TRUSTZONE 0 | ||
#define configSUPPORT_DYNAMIC_ALLOCATION 1 | ||
#define configSUPPORT_STATIC_ALLOCATION 1 | ||
#define configNUM_THREAD_LOCAL_STORAGE_POINTERS 16 | ||
#define configUSE_NEWLIB_REENTRANT 0 | ||
|
||
/* Co-routine definitions. */ | ||
#define configUSE_CO_ROUTINES 0 | ||
#define configMAX_CO_ROUTINE_PRIORITIES ( 2 ) | ||
|
||
/* Software timer definitions. */ | ||
#define configUSE_TIMERS 1 | ||
#define configTIMER_TASK_PRIORITY ( 2 ) | ||
#define configTIMER_QUEUE_LENGTH 10 | ||
#define configTIMER_TASK_STACK_DEPTH ( configMINIMAL_STACK_SIZE * 2 ) | ||
|
||
/* Additional define to support event flags */ | ||
#define INCLUDE_xTimerPendFunctionCall 1 | ||
|
||
|
||
/* Set the following definitions to 1 to include the API function, or zero | ||
to exclude the API function. */ | ||
#define INCLUDE_vTaskPrioritySet 1 | ||
#define INCLUDE_uxTaskPriorityGet 1 | ||
#define INCLUDE_vTaskDelete 1 | ||
#define INCLUDE_vTaskCleanUpResources 1 | ||
#define INCLUDE_vTaskSuspend 1 | ||
#define INCLUDE_vTaskDelayUntil 1 | ||
#define INCLUDE_vTaskDelay 1 | ||
#define INCLUDE_xTaskIsTaskFinished 1 | ||
|
||
/* Cortex-M specific definitions. */ | ||
#ifdef __NVIC_PRIO_BITS | ||
/* __BVIC_PRIO_BITS will be specified when CMSIS is being used. */ | ||
#define configPRIO_BITS __NVIC_PRIO_BITS | ||
#else | ||
#define configPRIO_BITS 3 /* 15 priority levels */ | ||
#endif | ||
|
||
/* The lowest interrupt priority that can be used in a call to a "set priority" | ||
function. */ | ||
#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY 0xf | ||
|
||
/* The highest interrupt priority that can be used by any interrupt service | ||
routine that makes calls to interrupt safe FreeRTOS API functions. DO NOT CALL | ||
INTERRUPT SAFE FREERTOS API FUNCTIONS FROM ANY INTERRUPT THAT HAS A HIGHER | ||
PRIORITY THAN THIS! (higher priorities are lower numeric values. */ | ||
#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY 5 | ||
|
||
/* Interrupt priorities used by the kernel port layer itself. These are generic | ||
to all Cortex-M ports, and do not rely on any particular library functions. */ | ||
#define configKERNEL_INTERRUPT_PRIORITY ( configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) ) | ||
/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!! | ||
See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */ | ||
#define configMAX_SYSCALL_INTERRUPT_PRIORITY ( configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) ) | ||
|
||
/* Normal assert() semantics without relying on the provision of an assert.h | ||
header file. */ | ||
#define configASSERT( x ) if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ;; ); } | ||
|
||
/* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS | ||
standard names. */ | ||
#define vPortSVCHandler SVC_Handler | ||
#define xPortPendSVHandler PendSV_Handler | ||
#define xPortSysTickHandler SysTick_Handler | ||
|
||
/* Dynamic Memory Allocation Schemes */ | ||
#define HEAP_ALLOCATION_TYPE1 (1) /* heap_1.c*/ | ||
#define HEAP_ALLOCATION_TYPE2 (2) /* heap_2.c*/ | ||
#define HEAP_ALLOCATION_TYPE3 (3) /* heap_3.c*/ | ||
#define HEAP_ALLOCATION_TYPE4 (4) /* heap_4.c*/ | ||
#define HEAP_ALLOCATION_TYPE5 (5) /* heap_5.c*/ | ||
#define NO_HEAP_ALLOCATION (0) | ||
|
||
#define configHEAP_ALLOCATION_SCHEME (HEAP_ALLOCATION_TYPE3) | ||
|
||
#if (CY_CFG_PWR_SYS_IDLE_MODE == CY_CFG_PWR_MODE_SLEEP) || (CY_CFG_PWR_SYS_IDLE_MODE == CY_CFG_PWR_MODE_DEEPSLEEP) | ||
extern void vApplicationSleep( uint32_t xExpectedIdleTime ); | ||
#define portSUPPRESS_TICKS_AND_SLEEP( xIdleTime ) vApplicationSleep( xIdleTime ) | ||
#define configUSE_TICKLESS_IDLE 2 | ||
#endif | ||
|
||
/* Deep Sleep Latency Configuration */ | ||
#if CY_CFG_PWR_DEEPSLEEP_LATENCY > 0 | ||
#define configEXPECTED_IDLE_TIME_BEFORE_SLEEP CY_CFG_PWR_DEEPSLEEP_LATENCY | ||
#endif | ||
|
||
#endif /* FREERTOS_CONFIG_H */ | ||
|
Binary file added
BIN
+169 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/FreeRTOS_ARP_Disable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+145 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/FreeRTOS_ARP_Enable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+151 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/FreeRTOS_PF_ARP_ping.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+136 KB
...ntation/libraries/lpa/lpa_api_reference_manual/html/FreeRTOS_PF_ping_nowake.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+151 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/FreeRTOS_TKO_Enable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+134 KB
...ntation/libraries/lpa/lpa_api_reference_manual/html/FreeRTOS_blinky_current.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+35.9 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/HostWakeSignal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+80.9 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/PacketFiletr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+104 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/Power_Personality.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+64.8 KB
...tation/libraries/lpa/lpa_api_reference_manual/html/TCPKA_deviceConfigurator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+71.5 KB
...ation/libraries/lpa/lpa_api_reference_manual/html/TCP_Keepalive_basic_graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+83.3 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/WIFI_Personality.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+184 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/afr_arp_disable_low.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+176 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/afr_arp_enable_low.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+135 KB
...entation/libraries/lpa/lpa_api_reference_manual/html/afr_blinky_current_low.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+181 KB
...ntation/libraries/lpa/lpa_api_reference_manual/html/afr_pf_arpping_wake_low.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+178 KB
...mentation/libraries/lpa/lpa_api_reference_manual/html/afr_pf_ping_sleep_low.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+184 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/afr_tko_offload_low.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
120 changes: 120 additions & 0 deletions
120
Documentation/libraries/lpa/lpa_api_reference_manual/html/annotated.html
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,120 @@ | ||
<!-- HTML header for doxygen 1.8.13--> | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> | ||
<meta http-equiv="X-UA-Compatible" content="IE=9"/> | ||
<meta name="generator" content="Doxygen 1.8.13"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
<title>Low Power Assistant Middleware Library 4.0.0: Data Structures</title> | ||
<link href="tabs.css" rel="stylesheet" type="text/css"/> | ||
<script type="text/javascript" src="jquery.js"></script> | ||
<script type="text/javascript" src="dynsections.js"></script> | ||
<link href="navtree.css" rel="stylesheet" type="text/css"/> | ||
<script type="text/javascript" src="resize.js"></script> | ||
<script type="text/javascript" src="navtreedata.js"></script> | ||
<script type="text/javascript" src="navtree.js"></script> | ||
<script type="text/javascript"> | ||
$(document).ready(initResizable); | ||
</script> | ||
<link href="search/search.css" rel="stylesheet" type="text/css"/> | ||
<script type="text/javascript" src="search/searchdata.js"></script> | ||
<script type="text/javascript" src="search/search.js"></script> | ||
<link href="doxygen_style.css" rel="stylesheet" type="text/css" /> | ||
</head> | ||
<body> | ||
<div id="top"><!-- do not remove this div, it is closed by doxygen! --> | ||
<div id="titlearea"> | ||
<table cellspacing="0" cellpadding="0"> | ||
<tbody> | ||
<tr style="height: 56px;"> | ||
<td id="projectlogo"><a href="http://www.cypress.com/"><img alt="Logo" src="infineon_logo.png"/></a></td> | ||
<td id="projectalign" style="padding-left: 0.5em;"> | ||
<div id="projectname">Low Power Assistant Middleware Library 4.0.0</div> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
<!-- end header part --> | ||
<!-- Generated by Doxygen 1.8.13 --> | ||
<script type="text/javascript"> | ||
var searchBox = new SearchBox("searchBox", "search",false,'Search'); | ||
</script> | ||
<script type="text/javascript" src="menudata.js"></script> | ||
<script type="text/javascript" src="menu.js"></script> | ||
<script type="text/javascript"> | ||
$(function() { | ||
initMenu('',true,false,'search.php','Search'); | ||
$(document).ready(function() { init_search(); }); | ||
}); | ||
</script> | ||
<div id="main-nav"></div> | ||
</div><!-- top --> | ||
<div id="side-nav" class="ui-resizable side-nav-resizable"> | ||
<div id="nav-tree"> | ||
<div id="nav-tree-contents"> | ||
<div id="nav-sync" class="sync"></div> | ||
</div> | ||
</div> | ||
<div id="splitbar" style="-moz-user-select:none;" | ||
class="ui-resizable-handle"> | ||
</div> | ||
</div> | ||
<script type="text/javascript"> | ||
$(document).ready(function(){initNavTree('annotated.html','');}); | ||
</script> | ||
<div id="doc-content"> | ||
<!-- window showing the filter options --> | ||
<div id="MSearchSelectWindow" | ||
onmouseover="return searchBox.OnSearchSelectShow()" | ||
onmouseout="return searchBox.OnSearchSelectHide()" | ||
onkeydown="return searchBox.OnSearchSelectKey(event)"> | ||
</div> | ||
|
||
<!-- iframe showing the search results (closed by default) --> | ||
<div id="MSearchResultsWindow"> | ||
<iframe src="javascript:void(0)" frameborder="0" | ||
name="MSearchResults" id="MSearchResults"> | ||
</iframe> | ||
</div> | ||
|
||
<div class="header"> | ||
<div class="headertitle"> | ||
<div class="title">Data Structures</div> </div> | ||
</div><!--header--> | ||
<div class="contents"> | ||
<div class="textblock">Here are the data structures with brief descriptions:</div><div class="directory"> | ||
<table class="directory"> | ||
<tr id="row_0_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structarp__ol__cfg__t.html" target="_self">arp_ol_cfg_t</a></td><td class="desc">ARP Offload configuration </td></tr> | ||
<tr id="row_1_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structarp__ol__t.html" target="_self">arp_ol_t</a></td><td class="desc">ARP Offload context - this is a private structure; visible to allow for static definition </td></tr> | ||
<tr id="row_2_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structcy__pf__ethtype__cfg__t.html" target="_self">cy_pf_ethtype_cfg_t</a></td><td class="desc">Describes an ethertype filter (type CY_PF_OL_FEAT_ETHTYPE) </td></tr> | ||
<tr id="row_3_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structcy__pf__ip__cfg__t.html" target="_self">cy_pf_ip_cfg_t</a></td><td class="desc">Describes an IP type filter (type CY_PF_OL_FEAT_IPTYPE) </td></tr> | ||
<tr id="row_4_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structcy__pf__ol__cfg__t.html" target="_self">cy_pf_ol_cfg_t</a></td><td class="desc">Single union to describe all packet filters </td></tr> | ||
<tr id="row_5_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structcy__pf__pn__cfg__t.html" target="_self">cy_pf_pn_cfg_t</a></td><td class="desc">Describes a port number filter (type CY_PF_OL_FEAT_PORTNUM) </td></tr> | ||
<tr id="row_6_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structcy__pf__port__t.html" target="_self">cy_pf_port_t</a></td><td class="desc">Usually a single port is filtered but port ranges are also supported, where the range is from portnum thru portnum + range </td></tr> | ||
<tr id="row_7_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structcy__tko__ol__cfg__t.html" target="_self">cy_tko_ol_cfg_t</a></td><td class="desc">User uses configurator to set these </td></tr> | ||
<tr id="row_8_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structcy__tko__ol__connect__t.html" target="_self">cy_tko_ol_connect_t</a></td><td class="desc">User uses configurator to set these </td></tr> | ||
<tr id="row_9_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structol__desc__t.html" target="_self">ol_desc_t</a></td><td class="desc">Offload instance description table entry </td></tr> | ||
<tr id="row_10_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structol__fns.html" target="_self">ol_fns_t</a></td><td class="desc">Offload power management notification </td></tr> | ||
<tr id="row_11_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structol__info__t.html" target="_self">ol_info_t</a></td><td class="desc">Offload information </td></tr> | ||
<tr id="row_12_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structolm__t.html" target="_self">olm_t</a></td><td class="desc">Offload Manager context </td></tr> | ||
<tr id="row_13_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpf__ol__t.html" target="_self">pf_ol_t</a></td><td class="desc">Keep pointers to config space, system handle, etc </td></tr> | ||
<tr id="row_14_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structsock__seq__t.html" target="_self">sock_seq_t</a></td><td class="desc">Get TCP socket sequence number info from network stack </td></tr> | ||
<tr id="row_15_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structtko__ol__t.html" target="_self">tko_ol_t</a></td><td class="desc">Keep pointers to config space, system handle, etc </td></tr> | ||
</table> | ||
</div><!-- directory --> | ||
</div><!-- contents --> | ||
</div><!-- doc-content --> | ||
<!-- start footer part | ||
<div id="nav-path" class="navpath"> | ||
<ul> | ||
<li class="footer"> | ||
Generated for <b>Low Power Assistant Middleware Library 4.0.0</b> by <b>Cypress Semiconductor Corporation</b>. | ||
All rights reserved. | ||
</li> | ||
</ul> | ||
</div> | ||
--> | ||
</body> | ||
</html> |
Binary file added
BIN
+331 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/arp_nooffload_inv.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+296 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/arp_offload_inv.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
Binary file added
BIN
+131 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/ble_Lowpower_disable.png
Oops, something went wrong.
Binary file added
BIN
+43.3 KB
...braries/lpa/lpa_api_reference_manual/html/ble_Lowpower_disable_configurator.png
Oops, something went wrong.
Binary file added
BIN
+154 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/ble_beacon_afr.png
Oops, something went wrong.
Binary file added
BIN
+167 KB
Documentation/libraries/lpa/lpa_api_reference_manual/html/ble_beacon_anycloud.png
Oops, something went wrong.
Binary file added
BIN
+39.2 KB
...n/libraries/lpa/lpa_api_reference_manual/html/btwake_config_43012_062S2_kit.png
Oops, something went wrong.
Binary file added
BIN
+41.6 KB
...braries/lpa/lpa_api_reference_manual/html/btwake_config_4339_062S2_eval_kit.png
Oops, something went wrong.
Binary file added
BIN
+40 KB
...ion/libraries/lpa/lpa_api_reference_manual/html/btwake_config_4343W_062_kit.png
Oops, something went wrong.
Binary file added
BIN
+56.1 KB
...tion/libraries/lpa/lpa_api_reference_manual/html/btwake_config_4343_062_kit.png
Oops, something went wrong.
Binary file added
BIN
+41.6 KB
...braries/lpa/lpa_api_reference_manual/html/btwake_config_4373_062S2_eval_kit.png
Oops, something went wrong.
Oops, something went wrong.