diff --git a/_c_o_p_y_r_i_g_h_t.html b/_c_o_p_y_r_i_g_h_t.html index ec319a0..fb2d84c 100644 --- a/_c_o_p_y_r_i_g_h_t.html +++ b/_c_o_p_y_r_i_g_h_t.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Copyright +RZV Flexible Software Package Documentation: Copyright @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
RZV Flexible Software Package Documentation +  Release v2.0.0
-
- +
+ +
+ - - - - -
+ +
+ +   + + + +
@@ -74,6 +78,53 @@ + + + + + +
+ + +
+ +
+
+
Copyright

Copyright [2020-2023] Renesas Electronics Corporation and/or its affiliates. All Rights Reserved.

-

This software and documentation are supplied by Renesas Electronics Corporation and/or its affiliates. and may only be used with products of Renesas Electronics Corp. and its affiliates ("Renesas"). No other uses are authorized. Renesas products are sold pursuant to Renesas terms and conditions of sale. Purchasers are solely responsible for the selection and use of Renesas products and Renesas assumes no liability. No license, express or implied, to any intellectual property right is granted by Renesas. This software is protected under all applicable laws, including copyright laws. Renesas reserves the right to change or discontinue this software and/or this documentation. THE SOFTWARE AND DOCUMENTATION IS DELIVERED TO YOU "AS IS," AND RENESAS MAKES NO REPRESENTATIONS OR WARRANTIES, AND TO THE FULLEST EXTENT PERMISSIBLE UNDER APPLICABLE LAW, DISCLAIMS ALL WARRANTIES, WHETHER EXPLICITLY OR IMPLICITLY, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT, WITH RESPECT TO THE SOFTWARE OR DOCUMENTATION. RENESAS SHALL HAVE NO LIABILITY ARISING OUT OF ANY SECURITY VULNERABILITY OR BREACH. TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT WILL RENESAS BE LIABLE TO YOU IN CONNECTION WITH THE SOFTWARE OR DOCUMENTATION (OR ANY PERSON OR ENTITY CLAIMING RIGHTS DERIVED FROM YOU) FOR ANY LOSS, DAMAGES, OR CLAIMS WHATSOEVER, INCLUDING, WITHOUT LIMITATION, ANY DIRECT, CONSEQUENTIAL, SPECIAL, INDIRECT, PUNITIVE, OR INCIDENTAL DAMAGES; ANY LOST PROFITS, OTHER ECONOMIC DAMAGE, PROPERTY DAMAGE, OR PERSONAL INJURY; AND EVEN IF RENESAS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS.

+

This software and documentation are supplied by Renesas Electronics America Inc. and may only be used with products of Renesas Electronics Corp. and its affiliates ("Renesas"). No other uses are authorized. Renesas products are sold pursuant to Renesas terms and conditions of sale. Purchasers are solely responsible for the selection and use of Renesas products and Renesas assumes no liability. No license, express or implied, to any intellectual property right is granted by Renesas. This software is protected under all applicable laws, including copyright laws. Renesas reserves the right to change or discontinue this software and/or this documentation. THE SOFTWARE AND DOCUMENTATION IS DELIVERED TO YOU "AS IS," AND RENESAS MAKES NO REPRESENTATIONS OR WARRANTIES, AND TO THE FULLEST EXTENT PERMISSIBLE UNDER APPLICABLE LAW, DISCLAIMS ALL WARRANTIES, WHETHER EXPLICITLY OR IMPLICITLY, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT, WITH RESPECT TO THE SOFTWARE OR DOCUMENTATION. RENESAS SHALL HAVE NO LIABILITY ARISING OUT OF ANY SECURITY VULNERABILITY OR BREACH. TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT WILL RENESAS BE LIABLE TO YOU IN CONNECTION WITH THE SOFTWARE OR DOCUMENTATION (OR ANY PERSON OR ENTITY CLAIMING RIGHTS DERIVED FROM YOU) FOR ANY LOSS, DAMAGES, OR CLAIMS WHATSOEVER, INCLUDING, WITHOUT LIMITATION, ANY DIRECT, CONSEQUENTIAL, SPECIAL, INDIRECT, PUNITIVE, OR INCIDENTAL DAMAGES; ANY LOST PROFITS, OTHER ECONOMIC DAMAGE, PROPERTY DAMAGE, OR PERSONAL INJURY; AND EVEN IF RENESAS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS.

diff --git a/_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html b/_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html index 6abdd38..acda389 100644 --- a/_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html +++ b/_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: FSP Architecture +RZV Flexible Software Package Documentation: FSP Architecture @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
RZV Flexible Software Package Documentation +  Release v2.0.0
-
- +
+ +
+ - - - - -
+ +
+ +   + + + +
@@ -74,6 +78,53 @@ + + + + + +
+ + +
+ +
+
+
FSP Architecture
@@ -99,39 +167,6 @@
  • Doxygen
  • Weak Symbols
  • Memory Allocation
  • -
  • FSP Terms
  • - - -
  • FSP Modules
  • -
  • FSP Stacks
  • -
  • FSP Interfaces -
  • -
  • FSP Instances -
  • -
  • FSP API Standards -
  • -
  • FSP Build Time Configurations
  • -
  • FSP File Structure
  • -
  • FSP Architecture in Practice
  • @@ -150,172 +185,14 @@

    Weak symbols are used occasionally in the FSP. They are used to ensure that a project builds even when the user has not defined an optional function.

    Memory Allocation

    -

    Dynamic memory allocation through use of the malloc() and free() functions are not used in FSP modules; all memory required by FSP modules is allocated in the application and passed to the module in a pointer. Exceptions are considered only for ports of 3rd party code that require dynamic memory.

    -

    -FSP Terms

    - - - - - - - - - - - - - - - - - - - -
    Term Description Reference
    BSP Short for Board Support Package. In the FSP the BSP provides just enough foundation to allow other FSP modules to work together without issue. MPU Board Support Package
    Module Modules can be peripheral drivers, purely software, or anything in between. Each module consists of a folder with source code, documentation, and anything else that the customer needs to use the code effectively. Modules are independent units, but they may depend on other modules. Applications can be built by combining multiple modules to provide the user with the features they need. FSP Modules
    Driver A driver is a specific kind of module that directly modifies registers on the MPU. -
    Interface An interface contains API definitions that can be shared by modules with similar features. Interfaces are definitions only and do not add to code size. FSP Interfaces
    Stacks The FSP architecture is designed such that modules work together to form a stack. A stack consists of a top level module and all its dependencies. FSP Stacks
    Module Instance Single and independent instantiation of a module. An application may require two GPT timers. Each of these timers is a module instance of the r_gpt module. -
    Application Code that is owned and maintained by the user. Application code may be based on sample application code provided by Renesas, but it is the responsibility of the user to maintain as necessary. -
    Callback Function This term refers to a function that is called when an event occurs. As an example, suppose the user would like to be notified every second based on the RTC. As part of the RTC configuration, a callback function can be supplied that will be jumped to during each RTC interrupt. When a single callback services multiple events, the arguments contain the triggering event. Callback functions for interrupts should be kept short and handled carefully because when they are called the MPU is still inside of an interrupt, delaying any pending interrupts. -
    -

    -FSP Modules

    -

    Modules are the core building block of FSP. Modules can do many different things, but all modules share the basic concept of providing functionality upwards and requiring functionality from below.

    -
    -figure-fsp-module.svg -
    -Modules
    -

    The amount of functionality provided by a module is determined based on functional use cases. Common functionality required by multiple modules is often placed into a self-contained submodule so it can be reused. Code size, speed and complexity are also considered when defining a module.

    -

    The simplest FSP application consists of one module with the Board Support Package (BSP) and the user application on top.

    -
    -figure-fsp-application-single-module.svg -
    -Module with application
    -

    The Board Support Package (BSP) is the foundation for FSP modules, providing functionality to determine the MPU used as well as configuring clocks, interrupts and pins. For the sake of clarity, the BSP will be omitted from further diagrams.

    -

    -FSP Stacks

    -

    When modules are layered atop one another, an FSP stack is formed. The stacking process is performed by matching what one module provides with what another module requires.

    -

    -FSP Interfaces

    -

    At the architecture level, interfaces are the way that modules provide common features. This commonality allows modules that adhere to the same interface to be used interchangeably. Interfaces can be thought of as a contract between two modules - the modules agree to work together using the information that was established in the contract.

    -

    Interfaces aim to provide support for the common features that most users would expect. This means that some of the advanced features of a peripheral (such as IIC) might not be available in the interface. In most cases these features are still available through interface extensions.

    -

    In FSP design, interfaces are defined in header files. All interface header files are located in the folder rzv/fsp/inc/api and end with *_api.h. Interface extensions are defined in header files in the folder rzv/fsp/inc/instances. The following sections detail what makes up an interface.

    -

    -FSP Interface Enumerations

    -

    Whenever possible, interfaces use typed enumerations for function parameters and structure members.

    -
    typedef enum e_i2c_master_addr_mode
    {
    I2C_MASTER_ADDR_MODE_7BIT = 1, ///< Use 7-bit addressing mode
    I2C_MASTER_ADDR_MODE_10BIT = 2, ///< Use 10-bit addressing mode
    } i2c_master_addr_mode_t;

    -

    Enumerations remove uncertainty when deciding what values are available for a parameter. FSP enumeration options follow a strict naming convention where the name of the type is prefixed on the available options. Combining the naming convention with the autocomplete feature available in e2 studio (Ctrl + Space) provides the benefits of rapid coding while maintaining high readability.

    -

    -FSP Interface Callback Functions

    -

    Callback functions allow modules to asynchronously alert the user application when an event has occurred, such as when a byte has been received over a UART channel or an IRQ pin is toggled. FSP driver modules define and handle the interrupt service routines for RZ MPU peripherals to ensure any required hardware procedures are implemented. The interrupt service routines in FSP modules then call the user-defined callbacks to allow the application to respond.

    -

    Callback functions must be defined in the user application. They always return void and take a structure for their one parameter. The structure is defined in the interface for the module and is named <interface>_callback_args_t. The contents of the structure may vary depending on the interface, but two members are common: event and p_context.

    -

    The event member is an enumeration defined in the interface used by the application to determine why the callback was called. Using the UART example, the callback could be triggered for many different reasons, including when a byte is received, all bytes have been transmitted, or a framing error has occurred. The event member allows the application to determine which of these three events has occurred and handle it appropriately.

    -

    The p_context member is used for providing user-specified data to the callback function. In many cases a callback function is shared between multiple channels or module instances; when the callback occurs, the code handling the callback needs context information so that it can determine which module instance the callback is for. For example, if the callback wanted to make an FSP API call in the callback, then at a minimum the callback will need a reference to the relevant control structure. To make this easy, the user can provide a pointer to the control structure as the p_context. When the callback occurs, the control structure is passed in the p_context element of the callback structure.

    -

    When a module is not directly used in the user application (that is, it is not the top layer of the stack), its callback function will be handled by the module above. For example, if a module requires a UART interface module the upper layer module will control and use the UART's callback function. In this case the user would not need to create a callback function for the UART module in their application code.

    -

    -FSP Interface Data Structures

    -

    At a minimum, all FSP interfaces include three data structures: a configuration structure, an API structure, and an instance structure.

    -

    -FSP Interface Configuration Structure

    -

    The configuration structure is used for the initial configuration of a module during the <MODULE>_Open() call. The structure consists of members such as channel number, bitrate, and operating mode.

    -

    The configuration structure is used purely as an input into the module. It may be stored and referenced by the module, so the configuration structure and anything it references must persist as long as the module is open.

    -

    The configuration structure is allocated for each module instance in files generated by the RZ Configuration editor.

    -

    When FSP stacks are used, it is also important to understand that configuration structures only have members that apply to the current interface. If multiple layers in the same stack define the same configuration parameters then it becomes difficult to know where to modify the option. For example, the baud rate for a UART is only defined in the UART module instance. Any modules that use the UART interface rely on the baud rate being provided in the UART module instance and do not offer it in their own configuration structures.

    -

    -FSP Interface API Structure

    -

    All interfaces include an API structure which contains function pointers for all the supported interface functions.

    -

    -FSP Interface Instance Structure

    -

    Every FSP interface also has an instance structure. The instance structure encapsulates everything required to use the module:

    -
      -
    • A pointer to the instance API structure (FSP Instance API)
    • -
    • A pointer to the configuration structure
    • -
    • A pointer to the control structure
    • -
    -

    The instance structure is not required at the application layer. It is used to connect modules to their dependencies (other than the BSP).

    -

    Instance structures have a standardized name of <interface>_instance_t.

    -

    An example from the Transfer Interface is shown below.

    -
    typedef struct st_transfer_instance
    {
    transfer_ctrl_t * p_ctrl; ///< Pointer to the control structure for this instance
    transfer_cfg_t const * p_cfg; ///< Pointer to the configuration structure for this instance
    transfer_api_t const * p_api; ///< Pointer to the API structure for this instance
    } transfer_instance_t;

    -

    Note that when an instance structure variable is declared, the API is the only thing that is instance specific, not module instance specific. This is because all module instances of the same module share the same underlying module source code.

    -

    -FSP Instances

    -

    While interfaces dictate the features that are provided, instances actually implement those features. Each instance is tied to a specific interface. Instances use the enumerations, data structures, and API prototypes from the interface. This allows an application that uses an interface to swap out the instance when needed.

    -

    In FSP design, instances consist of the interface extension and API defined in the instance header file located in the folder rzv/fsp/inc/instances and the module source rzv/fsp/src/<module>.

    -

    -FSP Instance Control Structure

    -

    The control structure is used as a unique identifier for the module instance and contains memory required by the module. Elements in the control structure are owned by the module and must not be modified by the application. The user allocates storage for a control structure, often as a global variable, then sends a pointer to it into the <MODULE>_Open() call for a module. At this point, the module initializes the structure as needed. The user must then send in a pointer to the control structure for all subsequent module calls.

    -

    -FSP Interface Extensions

    -

    In some cases, instances require more information than is provided in the interface. This situation can occur in the following cases:

    -
      -
    • An instance offers extra features that are not common to most instances of the interface. An example of this is the start source selection of the GPT (General PWM Timer (r_gpt)). The GPT can be configured to start based on hardware events such as a falling edge on a trigger pin. This feature is not common to all timers, so it is included in the GPT instance.
    • -
    • An interface must be very generic out of necessity. As an interface becomes more generic, the number of possible instances increases. An example of an interface that must be generic is a block media interface that abstracts functions required by a file system. Possible instances include SD card, SPI Flash, SDRAM, USB, and many more.
    • -
    -

    The p_extend member provides this extension function.

    -

    Use of interface extensions is not always necessary. Some instances do not offer an extension since all functionality is provided in the interface. In these cases the p_extend member can be set to NULL. The documentation for each instance indicates whether an interface extension is available and whether it is mandatory or optional.

    -

    -FSP Extended Configuration Structure

    -

    When extended configuration is required it can be supplied through the p_extend parameter of the interface configuration structure.

    -

    The extended configuration structure is part of the instance, but it is also still considered to be part of the configuration structure. All usage notes about the configuration structure described in FSP Interface Configuration Structure apply to the extended configuration structure as well.

    -

    The extended configuration structure and all typed structures and enumerations required to define it make up the interface extension.

    -

    -FSP Instance API

    -

    Each instance includes a constant global variable tying the interface API functions to the functions provided by the module. The name of this structure is standardized as g_<interface>_on_<instance>.

    -

    Examples include g_spi_on_rspi. This structure is available to be used through an extern in the instance header file (r_rspi.h respectively).

    -

    -FSP API Standards

    -

    -FSP Function Names

    -

    FSP functions start with the uppercase module name (<MODULE>). All modules have <MODULE>_Open() and <MODULE>_Close() functions. The <MODULE>_Open() function must be called before any of the other functions. The only exception is the <MODULE>_VersionGet() function which is not dependent upon any user provided information.

    -

    Other functions that will commonly be found are <MODULE>_Read(), <MODULE>_Write(), <MODULE>_InfoGet(), and <MODULE>_StatusGet(). The <MODULE>_StatusGet() function provides a status that could change asynchronously, while <MODULE>_InfoGet() provides information that cannot change after open or can only be updated by API calls. Example function names include:

    - -

    -Use of const in API parameters

    -

    The const qualifier is used with API parameters whenever possible.

    -

    The const qualifier after the pointer star for both p_ctrl and p_cfg ensures the FSP function does not modify the input pointer addresses. While not fool-proof by any means this does provide some extra checking inside the FSP code to ensure that arguments that should not be altered are treated as such.

    -

    -FSP Version Information

    -

    All instances supply a <MODULE>_VersionGet() function which fills in a structure of type fsp_version_t. This structure is made up of two version numbers: one for the interface (the API) and one for the underlying instance that is currently being used.

    -
    typedef union st_fsp_version
    {
    /** Version id */
    uint32_t version_id;
    /** Code version parameters */
    struct
    {
    uint8_t code_version_minor; ///< Code minor version
    uint8_t code_version_major; ///< Code major version
    uint8_t api_version_minor; ///< API minor version
    uint8_t api_version_major; ///< API major version
    };
    } fsp_version_t;

    -

    The API version ideally never changes, and only rarely if it does. A change to the API may require users to go back and modify their code. The code version (the version of the current instance) may be updated more frequently due to bug fixes, enhancements, and additional features. Changes to the code version typically do not require changes to user code.

    -

    -FSP Build Time Configurations

    -

    All modules have a build-time configuration header file. Most configuration options are supplied at run time, though options that are rarely used or apply to all instances of a module may be moved to build time. The advantage of using a build-time configuration option is to potentially reduce code size reduction by removing an unused feature.

    -

    All modules have a build time option to enable or disable parameter checking for the module. FSP modules check function arguments for validity when possible, though this feature is disabled by default to reduce code size. Enabling it can help catch parameter errors during development and debugging. By default, each module's parameter checking configuration inherits the BSP parameter checking setting (set on the BSP tab of the RZ Configuration editor). Leaving each module's parameter checking configuration set to Default (BSP) allows parameter checking to be enabled or disabled globally in all FSP code through the parameter checking setting on the BSP tab.

    -

    If an error condition can reasonably be avoided it is only checked in a section of code that can be disabled by disabling parameter checking. Most FSP APIs can only return FSP_SUCCESS if parameter checking is disabled. An example of an error that cannot be reasonably avoided is the "bus busy" error that occurs when another master is using an I2C bus. This type of error can be returned even if parameter checking is disabled.

    -

    -FSP File Structure

    -

    The high-level file structure of an FSP project is shown below.

    -
    rzv_gen
    rzv
    +---fsp
    +---inc
    | +---api
    | \---instances
    \---src
    +---bsp
    \---r_module
    rzv_cfg
    +---fsp_cfg
    +---bsp
    +---driver

    Directly underneath the base rzv folder the folders are split into the source and include folders. Include folders are kept separate from the source for easy browsing and easy setup of include paths.

    -

    The rzv_gen folder contains code generated by the RZ Configuration editor. This includes global variables for the control structure and configuration structure for each module.

    -

    The rzv_cfg folder is where configuration header files are stored for each module. See FSP Build Time Configurations for information on what is provided in these header files.

    -

    -FSP Architecture in Practice

    -

    -FSP Connecting Layers

    -

    FSP modules are meant to be both reusable and stackable. It is important to remember that modules are not dependent upon other modules, but upon other interfaces. The user is then free to fulfill the interface using the instance that best fits their needs.

    -
    -figure-fsp-interface-dependency-connection.svg -
    -Connecting layers
    -

    In the image above interface Y is a dependency of interface X and has its own dependency on interface Z. Interface X only has a dependency on interface Y. Interface X has no knowledge of interface Z. This is a requirement for ensuring that layers can easily be swapped out.

    -

    -Using FSP Modules in an Application

    -

    The typical use of an FSP module involves generating required module data then using the API in the application.

    -

    -Create a Module Instance in the RZ Configuration Editor

    -

    The RZ Configuration editor (available both in the Renesas e2 studio IDE as well as through the standalone RZ Smart Configurator) provides a graphical user interface for setting the parameters of the interface and instance configuration structures. It also automatically includes those structures (once they are configured in the GUI) in application-specific header files that can be included in application code.

    -

    The RZ Configuration editor allocates storage for the control structures, all required configuration structures, and the instance structure in generated files in the rzv_gen folder. Use the Properties window to set the values for the members of the configuration structures as needed. Refer to the Configuration section of the module usage notes for documentation about the configuration options.

    -

    If the interface has a callback function option then the application must declare and define the function. The return value is always of type void and the parameter to the function is a typed structure of name <interface>_callback_args_t. Once the function has been defined, assign its name to the p_callback member of the configuration structure. Callback function names can be assigned through the Properties window for the selected module.

    -

    -Use the Instance API in the Application

    -

    Call the module's <MODULE>_Open() function. Pass pointers to the generated control structure and configuration structure. The names of these structures are based on the 'Name' field provided in the configuration editor. The control structure is <Name>_ctrl and the configuration structure is <Name>_cfg. An example <MODULE>_Open() call for an r_gtm module instance named g_timer is:

    -
    R_GTM_Open(&g_timer_ctrl, &g_timer_cfg);

    Refer to the module usage notes for example code to help get started with any particular module.

    +

    Dynamic memory allocation through use of the malloc() and free() functions are not used in FSP modules; all memory required by FSP modules is allocated in the application and passed to the module in a pointer. Exceptions are considered only for ports of 3rd party code that require dynamic memory.

    diff --git a/_s_t_a_r_t__d_e_v.html b/_s_t_a_r_t__d_e_v.html index 6f2065d..6557c9b 100644 --- a/_s_t_a_r_t__d_e_v.html +++ b/_s_t_a_r_t__d_e_v.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Starting Development +RZV Flexible Software Package Documentation: Starting Development @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Starting Development
    -

    For details on Starting Development Introduction, please refer to Getting Started with RZ/V Flexible Software Package.

    +

    For details on Starting Development Introduction, please refer to Getting Started with RZ/V Flexible Software Package.

    diff --git a/dir_01f24db1d7d4ea241747e1b911bb4dd3.html b/dir_01f24db1d7d4ea241747e1b911bb4dd3.html new file mode 100644 index 0000000..6218de5 --- /dev/null +++ b/dir_01f24db1d7d4ea241747e1b911bb4dd3.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_adc_e Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_adc_e Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_03abf86de595688a96ebcecf32269b5f.html b/dir_03abf86de595688a96ebcecf32269b5f.html new file mode 100644 index 0000000..7e2f50e --- /dev/null +++ b/dir_03abf86de595688a96ebcecf32269b5f.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_sci_b_uart Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_sci_b_uart Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_04f94465d5457f41e4a6e56a324a6d8b.html b/dir_04f94465d5457f41e4a6e56a324a6d8b.html deleted file mode 100644 index a90df3a..0000000 --- a/dir_04f94465d5457f41e4a6e56a324a6d8b.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: RENESAS Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    RENESAS Directory Reference
    -
    -
    - - -

    -Directories

    -
    -
    - - - - - diff --git a/dir_06ac2fea5addf50fea2bb5e0e4a58a75.html b/dir_06ac2fea5addf50fea2bb5e0e4a58a75.html new file mode 100644 index 0000000..11ec4c1 --- /dev/null +++ b/dir_06ac2fea5addf50fea2bb5e0e4a58a75.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_scif_uart Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_scif_uart Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_0bca81d02a8d413d81c3bba6f6d5b729.html b/dir_0bca81d02a8d413d81c3bba6f6d5b729.html new file mode 100644 index 0000000..0c9a01b --- /dev/null +++ b/dir_0bca81d02a8d413d81c3bba6f6d5b729.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_riic_slave Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_riic_slave Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_0edde9f151722bbc5470635a9286ba8c.html b/dir_0edde9f151722bbc5470635a9286ba8c.html deleted file mode 100644 index 8a1b83a..0000000 --- a/dir_0edde9f151722bbc5470635a9286ba8c.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: rm_hs300x Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    rm_hs300x Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_19049811589ddbe445201d9ddb319c45.html b/dir_19049811589ddbe445201d9ddb319c45.html new file mode 100644 index 0000000..8eeadc4 --- /dev/null +++ b/dir_19049811589ddbe445201d9ddb319c45.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: rm_hs300x Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    rm_hs300x Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_1a53df904a3eb9c132546606de19ec73.html b/dir_1a53df904a3eb9c132546606de19ec73.html new file mode 100644 index 0000000..7023321 --- /dev/null +++ b/dir_1a53df904a3eb9c132546606de19ec73.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_mhu_b_ns Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_mhu_b_ns Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_1a839f4466bd08ffdfbe48b06fef0e38.html b/dir_1a839f4466bd08ffdfbe48b06fef0e38.html deleted file mode 100644 index 606bdd2..0000000 --- a/dir_1a839f4466bd08ffdfbe48b06fef0e38.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: r_poeg Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    r_poeg Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_1eee8f71abc824ae97ebae32f445d596.html b/dir_1eee8f71abc824ae97ebae32f445d596.html new file mode 100644 index 0000000..b0df06a --- /dev/null +++ b/dir_1eee8f71abc824ae97ebae32f445d596.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: cr Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    cr Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_2097d2b4ea739b7a15f96a5ca3d2e39e.html b/dir_2097d2b4ea739b7a15f96a5ca3d2e39e.html deleted file mode 100644 index bac06a1..0000000 --- a/dir_2097d2b4ea739b7a15f96a5ca3d2e39e.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: rm_ob1203 Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    rm_ob1203 Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_2200382642ddd0cbc664f82c3840b7ff.html b/dir_2200382642ddd0cbc664f82c3840b7ff.html new file mode 100644 index 0000000..d6d5ee5 --- /dev/null +++ b/dir_2200382642ddd0cbc664f82c3840b7ff.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_ioport Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_ioport Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_23ac1d8469413529e7df8fcb3e481aa8.html b/dir_23ac1d8469413529e7df8fcb3e481aa8.html new file mode 100644 index 0000000..4cb0a5c --- /dev/null +++ b/dir_23ac1d8469413529e7df8fcb3e481aa8.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_crc Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_crc Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_2892cb52525ef56515225730a2933cd3.html b/dir_2892cb52525ef56515225730a2933cd3.html new file mode 100644 index 0000000..58e20ca --- /dev/null +++ b/dir_2892cb52525ef56515225730a2933cd3.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: cr Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    cr Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_29a94bdcf0005ac32417a5f44c112273.html b/dir_29a94bdcf0005ac32417a5f44c112273.html new file mode 100644 index 0000000..a915ba9 --- /dev/null +++ b/dir_29a94bdcf0005ac32417a5f44c112273.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_pdm Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_pdm Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_2e22a597bc0833eaa06a97be427cd48e.html b/dir_2e22a597bc0833eaa06a97be427cd48e.html new file mode 100644 index 0000000..c711a9e --- /dev/null +++ b/dir_2e22a597bc0833eaa06a97be427cd48e.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_mhu_s Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_mhu_s Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_337da3cf9568b3b9339f7ed6fa9fbdb0.html b/dir_337da3cf9568b3b9339f7ed6fa9fbdb0.html new file mode 100644 index 0000000..12c87e6 --- /dev/null +++ b/dir_337da3cf9568b3b9339f7ed6fa9fbdb0.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_mhu_b_ns_swint_get Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_mhu_b_ns_swint_get Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_3c95c913ded53f65bc2ec8aaf733bc76.html b/dir_3c95c913ded53f65bc2ec8aaf733bc76.html new file mode 100644 index 0000000..3846e38 --- /dev/null +++ b/dir_3c95c913ded53f65bc2ec8aaf733bc76.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_dmac_b Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_dmac_b Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_3de899628a0708c50724d194226d6a81.html b/dir_3de899628a0708c50724d194226d6a81.html deleted file mode 100644 index 704380e..0000000 --- a/dir_3de899628a0708c50724d194226d6a81.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: all Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    all Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_3f794d2e5bd3201a5f002e4d86c28183.html b/dir_3f794d2e5bd3201a5f002e4d86c28183.html new file mode 100644 index 0000000..8588ede --- /dev/null +++ b/dir_3f794d2e5bd3201a5f002e4d86c28183.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: cmsis Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    cmsis Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_3fac1e106d8f109b52f03b7d8e4175eb.html b/dir_3fac1e106d8f109b52f03b7d8e4175eb.html new file mode 100644 index 0000000..bed981b --- /dev/null +++ b/dir_3fac1e106d8f109b52f03b7d8e4175eb.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_rtc Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_rtc Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_406a9318124dcf58ba3000884a6a076c.html b/dir_406a9318124dcf58ba3000884a6a076c.html new file mode 100644 index 0000000..007a1c7 --- /dev/null +++ b/dir_406a9318124dcf58ba3000884a6a076c.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: cr Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    cr Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_4649475c838924ea1249ce991ec56d6c.html b/dir_4649475c838924ea1249ce991ec56d6c.html deleted file mode 100644 index d9c21af..0000000 --- a/dir_4649475c838924ea1249ce991ec56d6c.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: cmsis Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    cmsis Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_469e4aa5561df8213e758630b89e443b.html b/dir_469e4aa5561df8213e758630b89e443b.html new file mode 100644 index 0000000..c44671c --- /dev/null +++ b/dir_469e4aa5561df8213e758630b89e443b.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_xspi_qspi Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_xspi_qspi Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_483823e5dc78d78f7ac10fcc376d9b6f.html b/dir_483823e5dc78d78f7ac10fcc376d9b6f.html new file mode 100644 index 0000000..0d96ab4 --- /dev/null +++ b/dir_483823e5dc78d78f7ac10fcc376d9b6f.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: api Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    api Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_48918c3dc11ebb4528be82093fb518ab.html b/dir_48918c3dc11ebb4528be82093fb518ab.html deleted file mode 100644 index 8abd794..0000000 --- a/dir_48918c3dc11ebb4528be82093fb518ab.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: r_canfd Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    r_canfd Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_4a05fc25b811b75a627e4aa898b00050.html b/dir_4a05fc25b811b75a627e4aa898b00050.html new file mode 100644 index 0000000..21b5de9 --- /dev/null +++ b/dir_4a05fc25b811b75a627e4aa898b00050.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: rzv2l Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    rzv2l Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_4dd5fb48473fba94003c71622260a76d.html b/dir_4dd5fb48473fba94003c71622260a76d.html new file mode 100644 index 0000000..1aedcb0 --- /dev/null +++ b/dir_4dd5fb48473fba94003c71622260a76d.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_mtu3 Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_mtu3 Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_4eb7b9faae1fa744374d303083a1b876.html b/dir_4eb7b9faae1fa744374d303083a1b876.html new file mode 100644 index 0000000..030f54b --- /dev/null +++ b/dir_4eb7b9faae1fa744374d303083a1b876.html @@ -0,0 +1,182 @@ + + + + + + + +RZV Flexible Software Package Documentation: fsp Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    fsp Directory Reference
    +
    +
    + + + + +

    +Directories

    directory  src
     
    +
    +
    + + + + + diff --git a/dir_4f423975143c22c943a603082e569636.html b/dir_4f423975143c22c943a603082e569636.html new file mode 100644 index 0000000..11b0665 --- /dev/null +++ b/dir_4f423975143c22c943a603082e569636.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_rspi Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_rspi Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_506fc0d6bfe4d6909e6b9a4fa515ad12.html b/dir_506fc0d6bfe4d6909e6b9a4fa515ad12.html new file mode 100644 index 0000000..0a06f1f --- /dev/null +++ b/dir_506fc0d6bfe4d6909e6b9a4fa515ad12.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_gpt Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_gpt Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_56317b3b133800f8abbbf2dd41b9e9e4.html b/dir_56317b3b133800f8abbbf2dd41b9e9e4.html new file mode 100644 index 0000000..3067129 --- /dev/null +++ b/dir_56317b3b133800f8abbbf2dd41b9e9e4.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: rm_comms_i2c Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    rm_comms_i2c Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_5a3952749d7934c40d363d4e65d1bec8.html b/dir_5a3952749d7934c40d363d4e65d1bec8.html deleted file mode 100644 index 5efa635..0000000 --- a/dir_5a3952749d7934c40d363d4e65d1bec8.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: r_mhu_s Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    r_mhu_s Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_5b18513a00f80aa7a4d41cc9fe6bec47.html b/dir_5b18513a00f80aa7a4d41cc9fe6bec47.html new file mode 100644 index 0000000..e45d483 --- /dev/null +++ b/dir_5b18513a00f80aa7a4d41cc9fe6bec47.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: cm Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    cm Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_5b7db61249b791a6eec6ae711c4f84c3.html b/dir_5b7db61249b791a6eec6ae711c4f84c3.html deleted file mode 100644 index 8feb222..0000000 --- a/dir_5b7db61249b791a6eec6ae711c4f84c3.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: r_riic_master Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    r_riic_master Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_65abee7086f32fb43e2ed8c426b0f62d.html b/dir_65abee7086f32fb43e2ed8c426b0f62d.html new file mode 100644 index 0000000..a73fcd0 --- /dev/null +++ b/dir_65abee7086f32fb43e2ed8c426b0f62d.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: cr Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    cr Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_65b7de0ad4dfa8da03c34cade352fcba.html b/dir_65b7de0ad4dfa8da03c34cade352fcba.html new file mode 100644 index 0000000..917c2e7 --- /dev/null +++ b/dir_65b7de0ad4dfa8da03c34cade352fcba.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: rm_hs400x Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    rm_hs400x Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_6acfc8a0ee900d9304c36b1cacec6158.html b/dir_6acfc8a0ee900d9304c36b1cacec6158.html deleted file mode 100644 index 4654bd9..0000000 --- a/dir_6acfc8a0ee900d9304c36b1cacec6158.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: r_ioport Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    r_ioport Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_6daff789fc35d9e4ef40d8c73da32214.html b/dir_6daff789fc35d9e4ef40d8c73da32214.html deleted file mode 100644 index 17322ee..0000000 --- a/dir_6daff789fc35d9e4ef40d8c73da32214.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: rm_zmod4xxx Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    rm_zmod4xxx Directory Reference
    -
    -
    - - - - - -

    -Files

    file  zmod4xxx_types.h
     zmod4xxx types
     
    -
    -
    - - - - - diff --git a/dir_769816f170e40fca4c582b9234ebee59.html b/dir_769816f170e40fca4c582b9234ebee59.html new file mode 100644 index 0000000..9544f5f --- /dev/null +++ b/dir_769816f170e40fca4c582b9234ebee59.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: cm Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    cm Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_7a895108b49b4cf9cd6ac607ee524dda.html b/dir_7a895108b49b4cf9cd6ac607ee524dda.html deleted file mode 100644 index c462f6b..0000000 --- a/dir_7a895108b49b4cf9cd6ac607ee524dda.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: r_gtm Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    r_gtm Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_7aaf60cd61d7f13d58ecdf6a2deb5113.html b/dir_7aaf60cd61d7f13d58ecdf6a2deb5113.html new file mode 100644 index 0000000..2b56530 --- /dev/null +++ b/dir_7aaf60cd61d7f13d58ecdf6a2deb5113.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_sci_b_i2c Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_sci_b_i2c Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_813a46afb0fa3ee9aed6d48fde336c3d.html b/dir_813a46afb0fa3ee9aed6d48fde336c3d.html new file mode 100644 index 0000000..fbb4634 --- /dev/null +++ b/dir_813a46afb0fa3ee9aed6d48fde336c3d.html @@ -0,0 +1,180 @@ + + + + + + + +RZV Flexible Software Package Documentation: all Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    all Directory Reference
    +
    +
    + + +

    +Directories

    +
    +
    + + + + + diff --git a/dir_81e84f1cd58835c6789b6cb4fcf92d34.html b/dir_81e84f1cd58835c6789b6cb4fcf92d34.html new file mode 100644 index 0000000..cdfcd8e --- /dev/null +++ b/dir_81e84f1cd58835c6789b6cb4fcf92d34.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_canfd Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_canfd Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_83e4541b619ef2fa5814e306a2a825b6.html b/dir_83e4541b619ef2fa5814e306a2a825b6.html deleted file mode 100644 index 1b7171c..0000000 --- a/dir_83e4541b619ef2fa5814e306a2a825b6.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: bsp Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    bsp Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_8434d18d4de492725cdeb19e512e6e83.html b/dir_8434d18d4de492725cdeb19e512e6e83.html new file mode 100644 index 0000000..5154adc --- /dev/null +++ b/dir_8434d18d4de492725cdeb19e512e6e83.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_mhu_b_s Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_mhu_b_s Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_84590a0e0fd6b102517f2d219ec84a25.html b/dir_84590a0e0fd6b102517f2d219ec84a25.html new file mode 100644 index 0000000..864ff92 --- /dev/null +++ b/dir_84590a0e0fd6b102517f2d219ec84a25.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_mhu_ns Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_mhu_ns Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_84c7fb9f0dcc21548e48474f264aea02.html b/dir_84c7fb9f0dcc21548e48474f264aea02.html new file mode 100644 index 0000000..86c6cb4 --- /dev/null +++ b/dir_84c7fb9f0dcc21548e48474f264aea02.html @@ -0,0 +1,180 @@ + + + + + + + +RZV Flexible Software Package Documentation: mcu Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    mcu Directory Reference
    +
    +
    + + +

    +Directories

    +
    +
    + + + + + diff --git a/dir_89384a216fee8402f882a34b3fdb2acb.html b/dir_89384a216fee8402f882a34b3fdb2acb.html deleted file mode 100644 index 66c78a2..0000000 --- a/dir_89384a216fee8402f882a34b3fdb2acb.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: r_mhu_ns_swint_get Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    r_mhu_ns_swint_get Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_8b56fa245c3b375c5a36e72fea0a493e.html b/dir_8b56fa245c3b375c5a36e72fea0a493e.html deleted file mode 100644 index 74896c4..0000000 --- a/dir_8b56fa245c3b375c5a36e72fea0a493e.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: api Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    api Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_8e0a1cb449ce952f905502a270fa53d9.html b/dir_8e0a1cb449ce952f905502a270fa53d9.html deleted file mode 100644 index 3a181a8..0000000 --- a/dir_8e0a1cb449ce952f905502a270fa53d9.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: inc Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    inc Directory Reference
    -
    -
    - - -

    -Directories

    -
    -
    - - - - - diff --git a/dir_95eeafea5658a8126e4bc90eb700647f.html b/dir_95eeafea5658a8126e4bc90eb700647f.html new file mode 100644 index 0000000..cbb22ef --- /dev/null +++ b/dir_95eeafea5658a8126e4bc90eb700647f.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: rzv Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    rzv Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_9987635c3b8027ec324c2b7cec6b5dba.html b/dir_9987635c3b8027ec324c2b7cec6b5dba.html deleted file mode 100644 index 113a6d0..0000000 --- a/dir_9987635c3b8027ec324c2b7cec6b5dba.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: r_mhu_ns_swint_set Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    r_mhu_ns_swint_set Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_9b5fc4a971a2b3c3618363181bb71215.html b/dir_9b5fc4a971a2b3c3618363181bb71215.html deleted file mode 100644 index 311f0a0..0000000 --- a/dir_9b5fc4a971a2b3c3618363181bb71215.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: r_mhu_ns Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    r_mhu_ns Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_9cbdcb69bcc54f3441d7a76e98f4e6ec.html b/dir_9cbdcb69bcc54f3441d7a76e98f4e6ec.html new file mode 100644 index 0000000..7e8ec78 --- /dev/null +++ b/dir_9cbdcb69bcc54f3441d7a76e98f4e6ec.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_riic_master Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_riic_master Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_9d02bc9cacf4d0d36635f3578490aeb2.html b/dir_9d02bc9cacf4d0d36635f3578490aeb2.html deleted file mode 100644 index 3321c60..0000000 --- a/dir_9d02bc9cacf4d0d36635f3578490aeb2.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: Source Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    Source Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_9d0f4eda9809e1b4226dcabb06a7c394.html b/dir_9d0f4eda9809e1b4226dcabb06a7c394.html new file mode 100644 index 0000000..07b2c48 --- /dev/null +++ b/dir_9d0f4eda9809e1b4226dcabb06a7c394.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_intc_irq Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_intc_irq Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_9d98a930a89b8b1d2a23c7a61715f686.html b/dir_9d98a930a89b8b1d2a23c7a61715f686.html new file mode 100644 index 0000000..36ae9f3 --- /dev/null +++ b/dir_9d98a930a89b8b1d2a23c7a61715f686.html @@ -0,0 +1,180 @@ + + + + + + + +RZV Flexible Software Package Documentation: rm_freertos_port Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    rm_freertos_port Directory Reference
    +
    +
    + + +

    +Directories

    +
    +
    + + + + + diff --git a/dir_a08e3dca3559ee45a5c2783e6ada2cb6.html b/dir_a08e3dca3559ee45a5c2783e6ada2cb6.html new file mode 100644 index 0000000..0028b68 --- /dev/null +++ b/dir_a08e3dca3559ee45a5c2783e6ada2cb6.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: Device Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    Device Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_a1c548b6b7f27ec431e466dd72ac2e4a.html b/dir_a1c548b6b7f27ec431e466dd72ac2e4a.html new file mode 100644 index 0000000..9f11682 --- /dev/null +++ b/dir_a1c548b6b7f27ec431e466dd72ac2e4a.html @@ -0,0 +1,183 @@ + + + + + + + +RZV Flexible Software Package Documentation: rm_zmod4xxx Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    rm_zmod4xxx Directory Reference
    +
    +
    + + + + + +

    +Files

    file  zmod4xxx_types.h
     zmod4xxx types
     
    +
    +
    + + + + + diff --git a/dir_a9dcbc47691334a943a8b36097e212ff.html b/dir_a9dcbc47691334a943a8b36097e212ff.html new file mode 100644 index 0000000..f5fb354 --- /dev/null +++ b/dir_a9dcbc47691334a943a8b36097e212ff.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: cm Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    cm Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_b0f4fc8947372f83a507030e303b9b5d.html b/dir_b0f4fc8947372f83a507030e303b9b5d.html new file mode 100644 index 0000000..d7cefb9 --- /dev/null +++ b/dir_b0f4fc8947372f83a507030e303b9b5d.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_mhu_ns_swint_get Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_mhu_ns_swint_get Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_b175141b3157e4e76d1d8c13e5f81d54.html b/dir_b175141b3157e4e76d1d8c13e5f81d54.html new file mode 100644 index 0000000..f03526f --- /dev/null +++ b/dir_b175141b3157e4e76d1d8c13e5f81d54.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_i3c_b Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_i3c_b Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_b18d2d13694890cc5ac49a5be67e3b2d.html b/dir_b18d2d13694890cc5ac49a5be67e3b2d.html deleted file mode 100644 index a8fe076..0000000 --- a/dir_b18d2d13694890cc5ac49a5be67e3b2d.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: ra Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    ra Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_b32d02788e476b2047e9f26cb7f54c6f.html b/dir_b32d02788e476b2047e9f26cb7f54c6f.html new file mode 100644 index 0000000..8092480 --- /dev/null +++ b/dir_b32d02788e476b2047e9f26cb7f54c6f.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_cmtw Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_cmtw Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_b3a5220b68a679d0c6e1bce5d2ea348d.html b/dir_b3a5220b68a679d0c6e1bce5d2ea348d.html new file mode 100644 index 0000000..46e559e --- /dev/null +++ b/dir_b3a5220b68a679d0c6e1bce5d2ea348d.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: cm Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    cm Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_bb773130bf7ead96f0e6429387444e5f.html b/dir_bb773130bf7ead96f0e6429387444e5f.html deleted file mode 100644 index 0e1aa84..0000000 --- a/dir_bb773130bf7ead96f0e6429387444e5f.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: instances Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    instances Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_bda8a4a8757c7c5eaeda7d4324296620.html b/dir_bda8a4a8757c7c5eaeda7d4324296620.html deleted file mode 100644 index a5445c3..0000000 --- a/dir_bda8a4a8757c7c5eaeda7d4324296620.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: r_scif_uart Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    r_scif_uart Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_c02315add6d91c831f3d7736ea2baca2.html b/dir_c02315add6d91c831f3d7736ea2baca2.html new file mode 100644 index 0000000..599e1b3 --- /dev/null +++ b/dir_c02315add6d91c831f3d7736ea2baca2.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_mhu_b_ns_swint_set Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_mhu_b_ns_swint_set Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_c07aef40f5f8766cef366b745f697cf2.html b/dir_c07aef40f5f8766cef366b745f697cf2.html deleted file mode 100644 index 452faa5..0000000 --- a/dir_c07aef40f5f8766cef366b745f697cf2.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: r_intc_irq Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    r_intc_irq Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_c1aace300fc6c6a37bc9134377416667.html b/dir_c1aace300fc6c6a37bc9134377416667.html deleted file mode 100644 index 499c8bf..0000000 --- a/dir_c1aace300fc6c6a37bc9134377416667.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: rm_freertos_port Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    rm_freertos_port Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_c92f5981e4081ab670b7cf44e26cd071.html b/dir_c92f5981e4081ab670b7cf44e26cd071.html new file mode 100644 index 0000000..26a5685 --- /dev/null +++ b/dir_c92f5981e4081ab670b7cf44e26cd071.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_adc_c Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_adc_c Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_c9a48a8ffc8939cc2e72642a5dfc12b7.html b/dir_c9a48a8ffc8939cc2e72642a5dfc12b7.html deleted file mode 100644 index 321820d..0000000 --- a/dir_c9a48a8ffc8939cc2e72642a5dfc12b7.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: r_gpt Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    r_gpt Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_cba4067f3409c5ce51366552fdcb4b3b.html b/dir_cba4067f3409c5ce51366552fdcb4b3b.html deleted file mode 100644 index ad74b76..0000000 --- a/dir_cba4067f3409c5ce51366552fdcb4b3b.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: rm_comms_i2c Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    rm_comms_i2c Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_cc90537d9d9120754144c336f41d5945.html b/dir_cc90537d9d9120754144c336f41d5945.html deleted file mode 100644 index a623a65..0000000 --- a/dir_cc90537d9d9120754144c336f41d5945.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: src Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    src Directory Reference
    -
    -
    - - - - -

    -Directories

    directory  bsp
     
    -
    -
    - - - - - diff --git a/dir_cf7d9df530ee616b052384318f58ac5c.html b/dir_cf7d9df530ee616b052384318f58ac5c.html new file mode 100644 index 0000000..25bdcc9 --- /dev/null +++ b/dir_cf7d9df530ee616b052384318f58ac5c.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_spi_b Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_spi_b Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_cfc262de757c4fafb59972058df00cca.html b/dir_cfc262de757c4fafb59972058df00cca.html new file mode 100644 index 0000000..9724c54 --- /dev/null +++ b/dir_cfc262de757c4fafb59972058df00cca.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_poeg Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_poeg Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_d137f863f3aa52a94b0bb7ac2444b202.html b/dir_d137f863f3aa52a94b0bb7ac2444b202.html new file mode 100644 index 0000000..923d960 --- /dev/null +++ b/dir_d137f863f3aa52a94b0bb7ac2444b202.html @@ -0,0 +1,180 @@ + + + + + + + +RZV Flexible Software Package Documentation: rzv2h Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    rzv2h Directory Reference
    +
    +
    + + +

    +Directories

    +
    +
    + + + + + diff --git a/dir_d4306888134857e945f05609158a0847.html b/dir_d4306888134857e945f05609158a0847.html new file mode 100644 index 0000000..9594ca8 --- /dev/null +++ b/dir_d4306888134857e945f05609158a0847.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_intc_tint Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_intc_tint Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_d561306dc9ffd9cb02c45da37d4ad0c8.html b/dir_d561306dc9ffd9cb02c45da37d4ad0c8.html new file mode 100644 index 0000000..64eb184 --- /dev/null +++ b/dir_d561306dc9ffd9cb02c45da37d4ad0c8.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: bsp Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    bsp Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_d71e6481d15bd93e41670a57fe245af4.html b/dir_d71e6481d15bd93e41670a57fe245af4.html deleted file mode 100644 index 403c610..0000000 --- a/dir_d71e6481d15bd93e41670a57fe245af4.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: fsp Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    fsp Directory Reference
    -
    -
    - - - - -

    -Directories

    directory  src
     
    -
    -
    - - - - - diff --git a/dir_d7ea9c102fe6d15e49fec494e76bb151.html b/dir_d7ea9c102fe6d15e49fec494e76bb151.html deleted file mode 100644 index 475ccc8..0000000 --- a/dir_d7ea9c102fe6d15e49fec494e76bb151.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: mcu Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    mcu Directory Reference
    -
    -
    - - -

    -Directories

    -
    -
    - - - - - diff --git a/dir_db5a5c24fd005ae605b89cd757b18e53.html b/dir_db5a5c24fd005ae605b89cd757b18e53.html new file mode 100644 index 0000000..4d7f336 --- /dev/null +++ b/dir_db5a5c24fd005ae605b89cd757b18e53.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_tsu_b Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_tsu_b Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_e0a869f431b6ce5473c65d6d660a25bf.html b/dir_e0a869f431b6ce5473c65d6d660a25bf.html new file mode 100644 index 0000000..4593a45 --- /dev/null +++ b/dir_e0a869f431b6ce5473c65d6d660a25bf.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: instances Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    instances Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_e2d8933e8b7100ea875a576a60cf83e5.html b/dir_e2d8933e8b7100ea875a576a60cf83e5.html deleted file mode 100644 index 8dab47b..0000000 --- a/dir_e2d8933e8b7100ea875a576a60cf83e5.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: rzv2l Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    rzv2l Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_e5ca85ea1ccd07fa77fb7d7e0afba852.html b/dir_e5ca85ea1ccd07fa77fb7d7e0afba852.html new file mode 100644 index 0000000..0f3826d --- /dev/null +++ b/dir_e5ca85ea1ccd07fa77fb7d7e0afba852.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_mhu_ns_swint_set Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_mhu_ns_swint_set Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_e78364d727f48d053dd661e77157bdd2.html b/dir_e78364d727f48d053dd661e77157bdd2.html new file mode 100644 index 0000000..5cfcdd4 --- /dev/null +++ b/dir_e78364d727f48d053dd661e77157bdd2.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_wdt Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_wdt Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_e97f6630d2e378a043db5877972b5388.html b/dir_e97f6630d2e378a043db5877972b5388.html new file mode 100644 index 0000000..67a5836 --- /dev/null +++ b/dir_e97f6630d2e378a043db5877972b5388.html @@ -0,0 +1,180 @@ + + + + + + + +RZV Flexible Software Package Documentation: Source Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    Source Directory Reference
    +
    +
    + + +

    +Directories

    +
    +
    + + + + + diff --git a/dir_eaee7091e5d22fe78f0323925da6e7d1.html b/dir_eaee7091e5d22fe78f0323925da6e7d1.html new file mode 100644 index 0000000..2599156 --- /dev/null +++ b/dir_eaee7091e5d22fe78f0323925da6e7d1.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_gtm Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_gtm Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_eb65a6deadbac0d81f62867562dbf7fc.html b/dir_eb65a6deadbac0d81f62867562dbf7fc.html new file mode 100644 index 0000000..a8eb2d4 --- /dev/null +++ b/dir_eb65a6deadbac0d81f62867562dbf7fc.html @@ -0,0 +1,184 @@ + + + + + + + +RZV Flexible Software Package Documentation: src Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    src Directory Reference
    +
    +
    + + + + + + +

    +Directories

    directory  bsp
     
    directory  rm_freertos_port
     
    +
    +
    + + + + + diff --git a/dir_ebf288d3691a06a7949a425df255d99f.html b/dir_ebf288d3691a06a7949a425df255d99f.html deleted file mode 100644 index 1ee5bde..0000000 --- a/dir_ebf288d3691a06a7949a425df255d99f.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: rm_hs400x Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    rm_hs400x Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_ee0097b7fe886da56342dc3e35d00ea9.html b/dir_ee0097b7fe886da56342dc3e35d00ea9.html new file mode 100644 index 0000000..ce7b8a2 --- /dev/null +++ b/dir_ee0097b7fe886da56342dc3e35d00ea9.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: RENESAS Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    RENESAS Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_ee34ef3bec5b53edb5b7b10745165ef3.html b/dir_ee34ef3bec5b53edb5b7b10745165ef3.html deleted file mode 100644 index 93fb99b..0000000 --- a/dir_ee34ef3bec5b53edb5b7b10745165ef3.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: Device Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    Device Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/dir_ef127bf948e71f51410c3749fe1f2ea1.html b/dir_ef127bf948e71f51410c3749fe1f2ea1.html new file mode 100644 index 0000000..dd8be24 --- /dev/null +++ b/dir_ef127bf948e71f51410c3749fe1f2ea1.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_intc_nmi Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_intc_nmi Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_f2f0e3675ce1e9a82b93eda44a42fb28.html b/dir_f2f0e3675ce1e9a82b93eda44a42fb28.html new file mode 100644 index 0000000..5e48ad1 --- /dev/null +++ b/dir_f2f0e3675ce1e9a82b93eda44a42fb28.html @@ -0,0 +1,176 @@ + + + + + + + +RZV Flexible Software Package Documentation: r_elc Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    r_elc Directory Reference
    +
    +
    +
    +
    + + + + + diff --git a/dir_f5e136908169532a193d9a3b7213f49a.html b/dir_f5e136908169532a193d9a3b7213f49a.html new file mode 100644 index 0000000..05249a4 --- /dev/null +++ b/dir_f5e136908169532a193d9a3b7213f49a.html @@ -0,0 +1,180 @@ + + + + + + + +RZV Flexible Software Package Documentation: inc Directory Reference + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +
    inc Directory Reference
    +
    +
    + + +

    +Directories

    +
    +
    + + + + + diff --git a/dir_fecba2434f782efefb87fdd6800345e3.html b/dir_fecba2434f782efefb87fdd6800345e3.html deleted file mode 100644 index 1c8d61d..0000000 --- a/dir_fecba2434f782efefb87fdd6800345e3.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: r_rspi Directory Reference - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    r_rspi Directory Reference
    -
    -
    -
    -
    - - - - - diff --git a/figure-fsp-application-single-module.svg b/figure-fsp-application-single-module.svg deleted file mode 100644 index 1a5b12f..0000000 --- a/figure-fsp-application-single-module.svg +++ /dev/null @@ -1,2 +0,0 @@ - -
    FSP Module
    [Not supported by viewer]
    Application
    [Not supported by viewer]
    BSP
    [Not supported by viewer]
    \ No newline at end of file diff --git a/figure-fsp-interface-dependency-connection.svg b/figure-fsp-interface-dependency-connection.svg deleted file mode 100644 index da78119..0000000 --- a/figure-fsp-interface-dependency-connection.svg +++ /dev/null @@ -1,2 +0,0 @@ - -
    Interface: Y
    FSP Module 2
    Dependency: Z
    [Not supported by viewer]
    Interface: Z
    FSP Module 3
    Dependency: None
    [Not supported by viewer]
    Interface: X
    FSP Module 1
    Dependency: Y
    [Not supported by viewer]
    \ No newline at end of file diff --git a/figure-fsp-module.svg b/figure-fsp-module.svg deleted file mode 100644 index 0adae69..0000000 --- a/figure-fsp-module.svg +++ /dev/null @@ -1,2 +0,0 @@ - -
    Module
    [Not supported by viewer]
    Requires
    [Not supported by viewer]
    Provides
    [Not supported by viewer]
    \ No newline at end of file diff --git a/group___a_d_c___a_p_i.html b/group___a_d_c___a_p_i.html new file mode 100644 index 0000000..edf6d6b --- /dev/null +++ b/group___a_d_c___a_p_i.html @@ -0,0 +1,1242 @@ + + + + + + + +RZV Flexible Software Package Documentation: ADC Interface + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    ADC Interface
    +
    +
    +

    Detailed Description

    +

    Interface for A/D Converters.

    +

    +Summary

    +

    The ADC interface provides standard ADC functionality including one-shot mode (single scan), continuous scan and group scan. It also allows configuration of hardware and software triggers for starting scans. After each conversion an interrupt can be triggered, and if a callback function is provided, the call back is invoked with the appropriate event information.

    +

    Implemented by:

    +

    Analog to Digital Converter (r_adc_c) Analog to Digital Converter (r_adc_e) Temperature Sensor Unit (r_tsu_b)

    + + + + + + + + + + + + + + +

    +Data Structures

    struct  adc_status_t
     
    struct  adc_callback_args_t
     
    struct  adc_info_t
     
    struct  adc_cfg_t
     
    struct  adc_api_t
     
    struct  adc_instance_t
     
    + + + +

    +Typedefs

    typedef void adc_ctrl_t
     
    + + + + + + + + + + + + + + + + + + + +

    +Enumerations

    enum  adc_mode_t
     
    enum  adc_resolution_t
     
    enum  adc_alignment_t
     
    enum  adc_trigger_t
     
    enum  adc_event_t
     
    enum  adc_channel_t
     
    enum  adc_group_id_t
     
    enum  adc_group_mask_t
     
    enum  adc_state_t
     
    +

    Data Structure Documentation

    + +

    ◆ adc_status_t

    + +
    +
    + + + + +
    struct adc_status_t
    +
    +

    ADC status.

    +
    + + + + +
    Data Fields
    +adc_state_t +state +Current state.
    + +
    +
    + +

    ◆ adc_callback_args_t

    + +
    +
    + + + + +
    struct adc_callback_args_t
    +
    +

    ADC callback arguments definitions

    +
    + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +uint16_t +unit +ADC device in use.
    +adc_event_t +event +ADC callback event.
    +void const * +p_context +Placeholder for user data.
    +adc_channel_t +channel +Channel of conversion result. Only valid for r_adc ADC_EVENT_CONVERSION_COMPLETE.
    +uint64_t +channel_mask +Channel mask for conversion result. Only valid for r_adc_b.
    +adc_group_mask_t +group_mask +Group Mask.
    + +
    +
    + +

    ◆ adc_info_t

    + +
    +
    + + + + +
    struct adc_info_t
    +
    +

    ADC Information Structure for Transfer Interface

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +__I void * +p_address +The address to start reading the data from.
    +uint32_t +length +The total number of transfers to read.
    +transfer_size_t +transfer_size +The size of each transfer.
    +elc_peripheral_t +elc_peripheral +Name of the peripheral in the ELC list.
    +elc_event_t +elc_event +Name of the ELC event for the peripheral.
    +uint32_t +calibration_data +Temperature sensor calibration data (0xFFFFFFFF if unsupported) for reference voltage.
    +int16_t +slope_microvolts +Temperature sensor slope in microvolts/degrees C.
    +bool +calibration_ongoing +Calibration is in progress.
    +volatile const void * +p_address +The address to start reading the data from.
    +uint32_t +calibration_data1 +Temperature sensor calibration data1.
    +uint32_t +calibration_data2 +Temperature sensor calibration data2.
    + +
    +
    + +

    ◆ adc_cfg_t

    + +
    +
    + + + + +
    struct adc_cfg_t
    +
    +

    ADC general configuration

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    +uint16_t unit
     ADC unit to be used.
     
    +adc_mode_t mode
     ADC operation mode.
     
    +adc_resolution_t resolution
     ADC resolution.
     
    +adc_alignment_t alignment
     Specify left or right alignment; ignored if addition used.
     
    +adc_trigger_t trigger
     Default and Group A trigger source.
     
    +IRQn_Type scan_end_irq
     Scan end IRQ number.
     
    +IRQn_Type scan_end_b_irq
     Scan end group B IRQ number.
     
    +IRQn_Type scan_end_c_irq
     Scan end group C IRQ number.
     
    +uint8_t scan_end_ipl
     Scan end interrupt priority.
     
    +uint8_t scan_end_b_ipl
     Scan end group B interrupt priority.
     
    +uint8_t scan_end_c_ipl
     Scan end group C interrupt priority.
     
    +void(* p_callback )(adc_callback_args_t *p_args)
     Callback function; set to NULL for none.
     
    +void const * p_context
     Placeholder for user data. Passed to the user callback in adc_callback_args_t.
     
    +void const * p_extend
     Extension parameter for hardware specific settings.
     
    + +
    +
    + +

    ◆ adc_api_t

    + +
    +
    + + + + +
    struct adc_api_t
    +
    +

    ADC functions implemented at the HAL layer will follow this API.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    fsp_err_t(* open )(adc_ctrl_t *const p_ctrl, adc_cfg_t const *const p_cfg)
     
    fsp_err_t(* scanCfg )(adc_ctrl_t *const p_ctrl, void const *const p_extend)
     
    fsp_err_t(* scanStart )(adc_ctrl_t *const p_ctrl)
     
    fsp_err_t(* scanGroupStart )(adc_ctrl_t *p_ctrl, adc_group_mask_t group_mask)
     
    fsp_err_t(* scanStop )(adc_ctrl_t *const p_ctrl)
     
    fsp_err_t(* scanStatusGet )(adc_ctrl_t *const p_ctrl, adc_status_t *p_status)
     
    fsp_err_t(* read )(adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, uint16_t *const p_data)
     
    fsp_err_t(* read32 )(adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, uint32_t *const p_data)
     
    fsp_err_t(* calibrate )(adc_ctrl_t *const p_ctrl, void const *p_extend)
     
    fsp_err_t(* offsetSet )(adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, int32_t const offset)
     
    fsp_err_t(* callbackSet )(adc_ctrl_t *const p_api_ctrl, void(*p_callback)(adc_callback_args_t *), void const *const p_context, adc_callback_args_t *const p_callback_memory)
     
    fsp_err_t(* close )(adc_ctrl_t *const p_ctrl)
     
    fsp_err_t(* infoGet )(adc_ctrl_t *const p_ctrl, adc_info_t *const p_adc_info)
     
    +

    Field Documentation

    + +

    ◆ open

    + +
    +
    + + + + +
    fsp_err_t(* adc_api_t::open) (adc_ctrl_t *const p_ctrl, adc_cfg_t const *const p_cfg)
    +
    +

    Initialize ADC Unit; apply power, set the operational mode, trigger sources, interrupt priority, and configurations common to all channels and sensors.

    Implemented as
    +
    +
    Precondition
    Configure peripheral clocks, ADC pins and IRQs prior to calling this function.
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control handle structure
    [in]p_cfgPointer to configuration structure
    +
    +
    + +
    +
    + +

    ◆ scanCfg

    + +
    +
    + + + + +
    fsp_err_t(* adc_api_t::scanCfg) (adc_ctrl_t *const p_ctrl, void const *const p_extend)
    +
    +

    Configure the scan including the channels, groups, and scan triggers to be used for the unit that was initialized in the open call. Some configurations are not supported for all implementations. See implementation for details.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control handle structure
    [in]p_extendSee implementation for details
    +
    +
    + +
    +
    + +

    ◆ scanStart

    + +
    +
    + + + + +
    fsp_err_t(* adc_api_t::scanStart) (adc_ctrl_t *const p_ctrl)
    +
    +

    Start the scan (in case of a software trigger), or enable the hardware trigger.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to control handle structure
    +
    +
    + +
    +
    + +

    ◆ scanGroupStart

    + +
    +
    + + + + +
    fsp_err_t(* adc_api_t::scanGroupStart) (adc_ctrl_t *p_ctrl, adc_group_mask_t group_mask)
    +
    +

    Start the scan group (in case of a software trigger), or enable the hardware trigger.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control handle structure
    [in]group_maskMask of groups to start
    +
    +
    + +
    +
    + +

    ◆ scanStop

    + +
    +
    + + + + +
    fsp_err_t(* adc_api_t::scanStop) (adc_ctrl_t *const p_ctrl)
    +
    +

    Stop the ADC scan (in case of a software trigger), or disable the hardware trigger.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to control handle structure
    +
    +
    + +
    +
    + +

    ◆ scanStatusGet

    + +
    +
    + + + + +
    fsp_err_t(* adc_api_t::scanStatusGet) (adc_ctrl_t *const p_ctrl, adc_status_t *p_status)
    +
    +

    Check scan status.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control handle structure
    [out]p_statusPointer to store current status in
    +
    +
    + +
    +
    + +

    ◆ read

    + +
    +
    + + + + +
    fsp_err_t(* adc_api_t::read) (adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, uint16_t *const p_data)
    +
    +

    Read ADC conversion result.

    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlPointer to control handle structure
    [in]reg_idADC channel to read (see enumeration adc_channel_t)
    [in]p_dataPointer to variable to load value into.
    +
    +
    + +
    +
    + +

    ◆ read32

    + +
    +
    + + + + +
    fsp_err_t(* adc_api_t::read32) (adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, uint32_t *const p_data)
    +
    +

    Read ADC conversion result into a 32-bit word.

    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlPointer to control handle structure
    [in]reg_idADC channel to read (see enumeration adc_channel_t)
    [in]p_dataPointer to variable to load value into.
    +
    +
    + +
    +
    + +

    ◆ calibrate

    + +
    +
    + + + + +
    fsp_err_t(* adc_api_t::calibrate) (adc_ctrl_t *const p_ctrl, void const *p_extend)
    +
    +

    Calibrate ADC or associated PGA (programmable gain amplifier). The driver may require implementation specific arguments to the p_extend input. Not supported for all implementations. See implementation for details.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control handle structure
    [in]p_extendPointer to implementation specific arguments
    +
    +
    + +
    +
    + +

    ◆ offsetSet

    + +
    +
    + + + + +
    fsp_err_t(* adc_api_t::offsetSet) (adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, int32_t const offset)
    +
    +

    Set offset for input PGA configured for differential input. Not supported for all implementations. See implementation for details.

    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlPointer to control handle structure
    [in]reg_idADC channel to read (see enumeration adc_channel_t)
    [in]offsetSee implementation for details.
    +
    +
    + +
    +
    + +

    ◆ callbackSet

    + +
    +
    + + + + +
    fsp_err_t(* adc_api_t::callbackSet) (adc_ctrl_t *const p_api_ctrl, void(*p_callback)(adc_callback_args_t *), void const *const p_context, adc_callback_args_t *const p_callback_memory)
    +
    +

    Specify callback function and optional context pointer and working memory pointer.

    Implemented as
    +
    +
    Parameters
    + + + + + +
    [in]p_ctrlPointer to the ADC control block.
    [in]p_callbackCallback function
    [in]p_contextPointer to send to callback function
    [in]p_working_memoryPointer to volatile memory where callback structure can be allocated. Callback arguments allocated here are only valid during the callback.
    +
    +
    + +
    +
    + +

    ◆ close

    + +
    +
    + + + + +
    fsp_err_t(* adc_api_t::close) (adc_ctrl_t *const p_ctrl)
    +
    +

    Close the specified ADC unit by ending any scan in progress, disabling interrupts, and removing power to the specified A/D unit.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to control handle structure
    +
    +
    + +
    +
    + +

    ◆ infoGet

    + +
    +
    + + + + +
    fsp_err_t(* adc_api_t::infoGet) (adc_ctrl_t *const p_ctrl, adc_info_t *const p_adc_info)
    +
    +

    Return the ADC data register address of the first (lowest number) channel and the total number of bytes to be read in order for the DTC/DMAC to read the conversion results of all configured channels. Return the temperature sensor calibration and slope data.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control handle structure
    [out]p_adc_infoPointer to ADC information structure
    +
    +
    + +
    +
    + +
    +
    + +

    ◆ adc_instance_t

    + +
    +
    + + + + +
    struct adc_instance_t
    +
    +

    This structure encompasses everything that is needed to use an instance of this interface.

    +
    + + + + + + + + + + + + + +
    Data Fields
    +adc_ctrl_t * +p_ctrl +Pointer to the control structure for this instance.
    +adc_cfg_t const * +p_cfg +Pointer to the configuration structure for this instance.
    +void const * +p_channel_cfg +Pointer to the channel configuration structure for this instance.
    +adc_api_t const * +p_api +Pointer to the API structure for this instance.
    + +
    +
    +

    Typedef Documentation

    + +

    ◆ adc_ctrl_t

    + +
    +
    + + + + +
    typedef void adc_ctrl_t
    +
    +

    ADC control block. Allocate using driver instance control structure from driver instance header file.

    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ adc_mode_t

    + +
    +
    + + + + +
    enum adc_mode_t
    +
    +

    ADC operation mode definitions

    + + + + +
    Enumerator
    ADC_MODE_SINGLE_SCAN 

    Single scan - one or more channels.

    +
    ADC_MODE_GROUP_SCAN 

    Two trigger sources to trigger scan for two groups which contain one or more channels.

    +
    ADC_MODE_CONTINUOUS_SCAN 

    Continuous scan - one or more channels.

    +
    + +
    +
    + +

    ◆ adc_resolution_t

    + +
    +
    + + + + +
    enum adc_resolution_t
    +
    +

    ADC data resolution definitions

    + + + + + + + +
    Enumerator
    ADC_RESOLUTION_12_BIT 

    12 bit resolution

    +
    ADC_RESOLUTION_10_BIT 

    10 bit resolution

    +
    ADC_RESOLUTION_8_BIT 

    8 bit resolution

    +
    ADC_RESOLUTION_14_BIT 

    14 bit resolution

    +
    ADC_RESOLUTION_16_BIT 

    16 bit resolution

    +
    ADC_RESOLUTION_24_BIT 

    24 bit resolution

    +
    + +
    +
    + +

    ◆ adc_alignment_t

    + +
    +
    + + + + +
    enum adc_alignment_t
    +
    +

    ADC data alignment definitions

    + + + +
    Enumerator
    ADC_ALIGNMENT_RIGHT 

    Data alignment right.

    +
    ADC_ALIGNMENT_LEFT 

    Data alignment left.

    +
    + +
    +
    + +

    ◆ adc_trigger_t

    + +
    +
    + + + + +
    enum adc_trigger_t
    +
    +

    ADC trigger mode definitions

    + + + + +
    Enumerator
    ADC_TRIGGER_SOFTWARE 

    Software trigger; not for group modes.

    +
    ADC_TRIGGER_SYNC_ELC 

    Synchronous trigger via ELC.

    +
    ADC_TRIGGER_ASYNC_EXTERNAL 

    External asynchronous trigger; not for group modes.

    +
    + +
    +
    + +

    ◆ adc_event_t

    + +
    +
    + + + + +
    enum adc_event_t
    +
    +

    ADC callback event definitions

    + + + + + + + + + + + + + + +
    Enumerator
    ADC_EVENT_SCAN_COMPLETE 

    Normal/Group A scan complete.

    +
    ADC_EVENT_SCAN_COMPLETE_GROUP_B 

    Group B scan complete.

    +
    ADC_EVENT_SCAN_COMPLETE_GROUP_C 

    Group C scan complete.

    +
    ADC_EVENT_CALIBRATION_COMPLETE 

    Calibration complete.

    +
    ADC_EVENT_CONVERSION_COMPLETE 

    Conversion complete.

    +
    ADC_EVENT_CALIBRATION_REQUEST 

    Calibration requested.

    +
    ADC_EVENT_CONVERSION_ERROR 

    Scan error.

    +
    ADC_EVENT_OVERFLOW 

    Overflow occurred.

    +
    ADC_EVENT_LIMIT_CLIP 

    Limiter clipping occurred.

    +
    ADC_EVENT_FIFO_READ_REQUEST 

    FIFO read requested.

    +
    ADC_EVENT_FIFO_OVERFLOW 

    FIFO overflow occurred.

    +
    ADC_EVENT_WINDOW_COMPARE_A 

    Window A comparison condition met.

    +
    ADC_EVENT_WINDOW_COMPARE_B 

    Window B comparison condition met.

    +
    + +
    +
    + +

    ◆ adc_channel_t

    + +
    +
    + + + + +
    enum adc_channel_t
    +
    +

    ADC channels

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Enumerator
    ADC_CHANNEL_0 

    ADC channel 0.

    +
    ADC_CHANNEL_1 

    ADC channel 1.

    +
    ADC_CHANNEL_2 

    ADC channel 2.

    +
    ADC_CHANNEL_3 

    ADC channel 3.

    +
    ADC_CHANNEL_4 

    ADC channel 4.

    +
    ADC_CHANNEL_5 

    ADC channel 5.

    +
    ADC_CHANNEL_6 

    ADC channel 6.

    +
    ADC_CHANNEL_7 

    ADC channel 7.

    +
    ADC_CHANNEL_8 

    ADC channel 8.

    +
    ADC_CHANNEL_9 

    ADC channel 9.

    +
    ADC_CHANNEL_10 

    ADC channel 10.

    +
    ADC_CHANNEL_11 

    ADC channel 11.

    +
    ADC_CHANNEL_12 

    ADC channel 12.

    +
    ADC_CHANNEL_13 

    ADC channel 13.

    +
    ADC_CHANNEL_14 

    ADC channel 14.

    +
    ADC_CHANNEL_15 

    ADC channel 15.

    +
    ADC_CHANNEL_16 

    ADC channel 16.

    +
    ADC_CHANNEL_17 

    ADC channel 17.

    +
    ADC_CHANNEL_18 

    ADC channel 18.

    +
    ADC_CHANNEL_19 

    ADC channel 19.

    +
    ADC_CHANNEL_20 

    ADC channel 20.

    +
    ADC_CHANNEL_21 

    ADC channel 21.

    +
    ADC_CHANNEL_22 

    ADC channel 22.

    +
    ADC_CHANNEL_23 

    ADC channel 23.

    +
    ADC_CHANNEL_24 

    ADC channel 24.

    +
    ADC_CHANNEL_25 

    ADC channel 25.

    +
    ADC_CHANNEL_26 

    ADC channel 26.

    +
    ADC_CHANNEL_27 

    ADC channel 27.

    +
    ADC_CHANNEL_28 

    ADC channel 28.

    +
    ADC_CHANNEL_DUPLEX_A 

    Data duplexing register A.

    +
    ADC_CHANNEL_DUPLEX_B 

    Data duplexing register B.

    +
    ADC_CHANNEL_DUPLEX 

    Data duplexing register.

    +
    ADC_CHANNEL_TEMPERATURE 

    Temperature sensor output.

    +
    ADC_CHANNEL_VOLT 

    Internal reference voltage.

    +
    + +
    +
    + +

    ◆ adc_group_id_t

    + +
    +
    + + + + +
    enum adc_group_id_t
    +
    + + + + + + + + + + +
    Enumerator
    ADC_GROUP_ID_0 

    Group ID 0.

    +
    ADC_GROUP_ID_1 

    Group ID 1.

    +
    ADC_GROUP_ID_2 

    Group ID 2.

    +
    ADC_GROUP_ID_3 

    Group ID 3.

    +
    ADC_GROUP_ID_4 

    Group ID 4.

    +
    ADC_GROUP_ID_5 

    Group ID 5.

    +
    ADC_GROUP_ID_6 

    Group ID 6.

    +
    ADC_GROUP_ID_7 

    Group ID 7.

    +
    ADC_GROUP_ID_8 

    Group ID 8.

    +
    + +
    +
    + +

    ◆ adc_group_mask_t

    + +
    +
    + + + + +
    enum adc_group_mask_t
    +
    + + + + + + + + + + + + +
    Enumerator
    ADC_GROUP_MASK_NONE 

    Group Mask Unknown or None.

    +
    ADC_GROUP_MASK_0 

    Group Mask 0.

    +
    ADC_GROUP_MASK_1 

    Group Mask 1.

    +
    ADC_GROUP_MASK_2 

    Group Mask 2.

    +
    ADC_GROUP_MASK_3 

    Group Mask 3.

    +
    ADC_GROUP_MASK_4 

    Group Mask 4.

    +
    ADC_GROUP_MASK_5 

    Group Mask 5.

    +
    ADC_GROUP_MASK_6 

    Group Mask 6.

    +
    ADC_GROUP_MASK_7 

    Group Mask 7.

    +
    ADC_GROUP_MASK_8 

    Group Mask 8.

    +
    ADC_GROUP_MASK_ALL 

    All Groups.

    +
    + +
    +
    + +

    ◆ adc_state_t

    + +
    +
    + + + + +
    enum adc_state_t
    +
    +

    ADC states.

    + + + + +
    Enumerator
    ADC_STATE_IDLE 

    ADC is idle.

    +
    ADC_STATE_SCAN_IN_PROGRESS 

    ADC scan in progress.

    +
    ADC_STATE_CALIBRATION_IN_PROGRESS 

    ADC calibration in progress - Not used by all ADC instances.

    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___a_d_c___a_p_i.js b/group___a_d_c___a_p_i.js new file mode 100644 index 0000000..926b3c5 --- /dev/null +++ b/group___a_d_c___a_p_i.js @@ -0,0 +1,167 @@ +var group___a_d_c___a_p_i = +[ + [ "adc_status_t", "group___a_d_c___a_p_i.html#structadc__status__t", [ + [ "state", "group___a_d_c___a_p_i.html#a276869569116678c7838ef506fceb77b", null ] + ] ], + [ "adc_callback_args_t", "group___a_d_c___a_p_i.html#structadc__callback__args__t", [ + [ "unit", "group___a_d_c___a_p_i.html#a3756c0cebdc1c304d48db67a5bcd16a6", null ], + [ "event", "group___a_d_c___a_p_i.html#a7b1ea18a97eee3565ef6cfb084222453", null ], + [ "p_context", "group___a_d_c___a_p_i.html#a68c6287d395bac7964e20441638c69ac", null ], + [ "channel", "group___a_d_c___a_p_i.html#a1e9351a3cb3ab91b4953b29cac73f5cc", null ], + [ "channel_mask", "group___a_d_c___a_p_i.html#a50ca40e036fb0058265aca9e500911c0", null ], + [ "group_mask", "group___a_d_c___a_p_i.html#a2e4f7b7ce1a5858b39f7a85ad16ab655", null ] + ] ], + [ "adc_info_t", "group___a_d_c___a_p_i.html#structadc__info__t", [ + [ "p_address", "group___a_d_c___a_p_i.html#aae60e54e2e18efa5e341cf0669476681", null ], + [ "length", "group___a_d_c___a_p_i.html#a3f8dd9f7ffefcbc0180fc7252c0482c9", null ], + [ "transfer_size", "group___a_d_c___a_p_i.html#a85b0300314b3d3c1b37db311b92ade6b", null ], + [ "elc_peripheral", "group___a_d_c___a_p_i.html#a391a11955d9d3b8d84ca87bbfe72df86", null ], + [ "elc_event", "group___a_d_c___a_p_i.html#a06d242e573821f38b3a7543dd9eb5548", null ], + [ "calibration_data", "group___a_d_c___a_p_i.html#a5869042d58165926402aa499eefb68f2", null ], + [ "slope_microvolts", "group___a_d_c___a_p_i.html#abaf272ea2350e486390dc250ae8f9af3", null ], + [ "calibration_ongoing", "group___a_d_c___a_p_i.html#a0ffb4b8f70b79eef55805cedcbde013b", null ], + [ "p_address", "group___a_d_c___a_p_i.html#a90f47e90b6be16f8705cbfc9789120be", null ], + [ "calibration_data1", "group___a_d_c___a_p_i.html#a366d981b2bfa6c2ade3a3f8f8c00ff70", null ], + [ "calibration_data2", "group___a_d_c___a_p_i.html#afec4154b488a160a33ceebca6affc94e", null ] + ] ], + [ "adc_cfg_t", "group___a_d_c___a_p_i.html#structadc__cfg__t", [ + [ "unit", "group___a_d_c___a_p_i.html#a5da30f972881cd9d64f3a7add1ccd522", null ], + [ "mode", "group___a_d_c___a_p_i.html#a035d5a1d93fe00c7683afbc4e5a59729", null ], + [ "resolution", "group___a_d_c___a_p_i.html#a6926363295e23a6121e91095b9f6e28d", null ], + [ "alignment", "group___a_d_c___a_p_i.html#aa36a14783685f411c4c0a7904a3de8eb", null ], + [ "trigger", "group___a_d_c___a_p_i.html#aa1ffab52d024ec83ada3d3b5763ed2b3", null ], + [ "scan_end_irq", "group___a_d_c___a_p_i.html#ad4835aef4411a9e3f3f68bf0a79c18f1", null ], + [ "scan_end_b_irq", "group___a_d_c___a_p_i.html#aba6e98fa10321ce7c1b6a7173b0b0d8b", null ], + [ "scan_end_c_irq", "group___a_d_c___a_p_i.html#a6ac6c18163aca50f9dc288ac08f2edee", null ], + [ "scan_end_ipl", "group___a_d_c___a_p_i.html#aa41f2d4a44ef47bfa9c33777cc7ff35a", null ], + [ "scan_end_b_ipl", "group___a_d_c___a_p_i.html#ab82e85d4750158ef07146b6c8145e347", null ], + [ "scan_end_c_ipl", "group___a_d_c___a_p_i.html#ab5e230f8dd33c81d381547b0eec041af", null ], + [ "p_callback", "group___a_d_c___a_p_i.html#a0e6dc3fd369994f549bf634f482fa4ae", null ], + [ "p_context", "group___a_d_c___a_p_i.html#a3f426d9b4992a45674c0e8ead528202b", null ], + [ "p_extend", "group___a_d_c___a_p_i.html#a5463ef8731c3b8a0094fbfff74c73449", null ] + ] ], + [ "adc_api_t", "group___a_d_c___a_p_i.html#structadc__api__t", [ + [ "open", "group___a_d_c___a_p_i.html#afa184c06541e3fd9f90fc12ed775f468", null ], + [ "scanCfg", "group___a_d_c___a_p_i.html#a44289d7822720544751eb22e3d7d38ea", null ], + [ "scanStart", "group___a_d_c___a_p_i.html#a2f9e091ca57ca2c58262f66ab5c341c9", null ], + [ "scanGroupStart", "group___a_d_c___a_p_i.html#aeae126b8a09e1ec34e8e3afb4a3344ff", null ], + [ "scanStop", "group___a_d_c___a_p_i.html#a90346240a89666209a78bdcb020278bd", null ], + [ "scanStatusGet", "group___a_d_c___a_p_i.html#ae54bb53ea323ac24a3b63769e0196a57", null ], + [ "read", "group___a_d_c___a_p_i.html#a9a540c52a5052a12b3b879d78543efd5", null ], + [ "read32", "group___a_d_c___a_p_i.html#a81338d39975b7fe87d5e06c55a8c5dc5", null ], + [ "calibrate", "group___a_d_c___a_p_i.html#a1020d90e58d3bf86cee2f46a62e62fc4", null ], + [ "offsetSet", "group___a_d_c___a_p_i.html#a305b2c2466cd88fdddf6134db542dc7e", null ], + [ "callbackSet", "group___a_d_c___a_p_i.html#a8d081aba32f84d62e7d48389b1d10b3e", null ], + [ "close", "group___a_d_c___a_p_i.html#a83cce8ff1af572c11ef31442f2679124", null ], + [ "infoGet", "group___a_d_c___a_p_i.html#acc68017ee284386b5d13c027bc10bf87", null ] + ] ], + [ "adc_instance_t", "group___a_d_c___a_p_i.html#structadc__instance__t", [ + [ "p_ctrl", "group___a_d_c___a_p_i.html#aa536102e4b637a09aa6c6744d8598c8f", null ], + [ "p_cfg", "group___a_d_c___a_p_i.html#a68d06edf3f5b759698d3ce981e773ef0", null ], + [ "p_channel_cfg", "group___a_d_c___a_p_i.html#a4356f10e7c706f14370fed8599c6d4d0", null ], + [ "p_api", "group___a_d_c___a_p_i.html#a0d5d2d55cc37383172efd4d4c1e0171f", null ] + ] ], + [ "adc_ctrl_t", "group___a_d_c___a_p_i.html#gaff9488cd90102a90e5c5cbd45394d426", null ], + [ "adc_mode_t", "group___a_d_c___a_p_i.html#ga760a8dafdcddcfadfea0aa3e01159164", [ + [ "ADC_MODE_SINGLE_SCAN", "group___a_d_c___a_p_i.html#gga760a8dafdcddcfadfea0aa3e01159164a1ac4130959b24d8426fd8f59326a5630", null ], + [ "ADC_MODE_GROUP_SCAN", "group___a_d_c___a_p_i.html#gga760a8dafdcddcfadfea0aa3e01159164a39fdd1c003301890e59b5188a6cc6658", null ], + [ "ADC_MODE_CONTINUOUS_SCAN", "group___a_d_c___a_p_i.html#gga760a8dafdcddcfadfea0aa3e01159164adb8344d57ee438ee90c65b79ff4f3e12", null ] + ] ], + [ "adc_resolution_t", "group___a_d_c___a_p_i.html#gaf88bfcbfc4a19c82f8bb423218d13cda", [ + [ "ADC_RESOLUTION_12_BIT", "group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaab35c4dcc6cda85146a9ffd339c5de1c4", null ], + [ "ADC_RESOLUTION_10_BIT", "group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaa24283bc621bcaa68a73c8eab142030b8", null ], + [ "ADC_RESOLUTION_8_BIT", "group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaa8ebd681650d751af22a7849be9ab8bc1", null ], + [ "ADC_RESOLUTION_14_BIT", "group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaa814e543d0745170516a09fb6de621ca8", null ], + [ "ADC_RESOLUTION_16_BIT", "group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaac28428ad60debb0ae5bfd0540c90f33c", null ], + [ "ADC_RESOLUTION_24_BIT", "group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaaebcd8848d34004d66f084b9f80a07d24", null ] + ] ], + [ "adc_alignment_t", "group___a_d_c___a_p_i.html#gaab0104c9c876400deb5772a77c1c5d76", [ + [ "ADC_ALIGNMENT_RIGHT", "group___a_d_c___a_p_i.html#ggaab0104c9c876400deb5772a77c1c5d76ae70affd23c02c0bc52dc0fe55c9c4879", null ], + [ "ADC_ALIGNMENT_LEFT", "group___a_d_c___a_p_i.html#ggaab0104c9c876400deb5772a77c1c5d76a7c98a604f4c957ba7151784fa3cd61a7", null ] + ] ], + [ "adc_trigger_t", "group___a_d_c___a_p_i.html#ga1ac380ffe2ebef256338616747d330e3", [ + [ "ADC_TRIGGER_SOFTWARE", "group___a_d_c___a_p_i.html#gga1ac380ffe2ebef256338616747d330e3a627b041b2095033f96a9a97dc474d26a", null ], + [ "ADC_TRIGGER_SYNC_ELC", "group___a_d_c___a_p_i.html#gga1ac380ffe2ebef256338616747d330e3a2a4fc2c9166f5013e45f534136a15990", null ], + [ "ADC_TRIGGER_ASYNC_EXTERNAL", "group___a_d_c___a_p_i.html#gga1ac380ffe2ebef256338616747d330e3a63f9a00e836c78964fa67c434a6718bc", null ] + ] ], + [ "adc_event_t", "group___a_d_c___a_p_i.html#gae2177d6e5bf43e3749cc60f835456847", [ + [ "ADC_EVENT_SCAN_COMPLETE", "group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a32297df4b82ea56a5536bb03fe907e64", null ], + [ "ADC_EVENT_SCAN_COMPLETE_GROUP_B", "group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a8f67ee666423bc068d379ae85da36252", null ], + [ "ADC_EVENT_SCAN_COMPLETE_GROUP_C", "group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ab7538351ad7e4ed3d866212b0e3b3099", null ], + [ "ADC_EVENT_CALIBRATION_COMPLETE", "group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ae8d9c9c99ceb10f095bb4449fd2706b1", null ], + [ "ADC_EVENT_CONVERSION_COMPLETE", "group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847aa3091bf90a88f96ed9b5a6ab499680bb", null ], + [ "ADC_EVENT_CALIBRATION_REQUEST", "group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ae30b20571a57953009f49eb5cbc2866a", null ], + [ "ADC_EVENT_CONVERSION_ERROR", "group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a4d62358854590ae9bed21fc8c8c96e09", null ], + [ "ADC_EVENT_OVERFLOW", "group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a214f2bd1b932acbaacba970b138f23d2", null ], + [ "ADC_EVENT_LIMIT_CLIP", "group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ac42d84c9087c3228125a5a2ae90f958f", null ], + [ "ADC_EVENT_FIFO_READ_REQUEST", "group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a227823940dfc7793973e6716ec17742e", null ], + [ "ADC_EVENT_FIFO_OVERFLOW", "group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a0df21824c256f4cb9689cb1d6a3dd91a", null ], + [ "ADC_EVENT_WINDOW_COMPARE_A", "group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a0194955f4f59f8d6952adc058539632b", null ], + [ "ADC_EVENT_WINDOW_COMPARE_B", "group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ab32572630797968579adeed03f19bcd3", null ] + ] ], + [ "adc_channel_t", "group___a_d_c___a_p_i.html#gaafc4060027875f8fe46242b0656d7814", [ + [ "ADC_CHANNEL_0", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a69dddf5b6edfe54ac25b653d8f62d104", null ], + [ "ADC_CHANNEL_1", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a203b48944d019f4fda969a6fc2a9e492", null ], + [ "ADC_CHANNEL_2", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ab5ff3c915ec02ae6ac3980a1312a4815", null ], + [ "ADC_CHANNEL_3", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a6ca054f67bee5197eec92a0379cffb6e", null ], + [ "ADC_CHANNEL_4", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a358c6f5e7243a7ed09640253d83d2131", null ], + [ "ADC_CHANNEL_5", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814add27743e52a0719102130818d31d545a", null ], + [ "ADC_CHANNEL_6", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814acf3be71bfeb9d342e6d845db91782b79", null ], + [ "ADC_CHANNEL_7", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ad6ef86ca1b448f220905d771f258586a", null ], + [ "ADC_CHANNEL_8", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a2875a590dc7e8502581ff68a075ce019", null ], + [ "ADC_CHANNEL_9", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a0e198353a76bf512e4dcc8224710d6b0", null ], + [ "ADC_CHANNEL_10", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a9db3195dade30ed8b254187c22616898", null ], + [ "ADC_CHANNEL_11", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814af6193eda0e4807c9d560aac13e302093", null ], + [ "ADC_CHANNEL_12", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a42838efffa3e21e6b970eee65de86e40", null ], + [ "ADC_CHANNEL_13", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa2718519e5964f136de3e5234e36264c", null ], + [ "ADC_CHANNEL_14", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a7f3900d4031a3f01889fbe4179d8cade", null ], + [ "ADC_CHANNEL_15", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814afa75046e6f6f23ed8e6573c7bc8563d2", null ], + [ "ADC_CHANNEL_16", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a61914b17568b94ef0651ee10e79e6892", null ], + [ "ADC_CHANNEL_17", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a22aa8198d9a4012a012ddd838adf256c", null ], + [ "ADC_CHANNEL_18", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ae47fe79b66fda5fcb9f02d6a648c8dc9", null ], + [ "ADC_CHANNEL_19", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a514ca4fdb7e9862d3d9ebe1d4e926349", null ], + [ "ADC_CHANNEL_20", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814afdcbeb5840bd281a4a2ec3f1f64ed52b", null ], + [ "ADC_CHANNEL_21", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814afaf1207b06cd7dc48c7f10ed6c95fb4a", null ], + [ "ADC_CHANNEL_22", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa5b37816645da11ff633a7e2d539da12", null ], + [ "ADC_CHANNEL_23", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a9009b78e30e87985cbfb40296a0bab16", null ], + [ "ADC_CHANNEL_24", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a7ae985a21367ea6d7488517948fc625d", null ], + [ "ADC_CHANNEL_25", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a31855ff8fefcff144e9dc4911466ce52", null ], + [ "ADC_CHANNEL_26", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa9c18e09bdb5cdf44c8c89ecdd7770d3", null ], + [ "ADC_CHANNEL_27", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ad002942933ed78124a50b3276f9d88cc", null ], + [ "ADC_CHANNEL_28", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a558a69bc271b849d3c3a2cca05ebbba0", null ], + [ "ADC_CHANNEL_DUPLEX_A", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aadc3763b403f4b9ab667602137a9de57", null ], + [ "ADC_CHANNEL_DUPLEX_B", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa66d57680818caebf7be4d68f8c505be", null ], + [ "ADC_CHANNEL_DUPLEX", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a2602b0a06ce1ce485d0812de6f6f4091", null ], + [ "ADC_CHANNEL_TEMPERATURE", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aff4cf0b5a9bfd1fc634f6b097e34fe73", null ], + [ "ADC_CHANNEL_VOLT", "group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a511e70765f3a63d0dea47ea585329641", null ] + ] ], + [ "adc_group_id_t", "group___a_d_c___a_p_i.html#ga625267e574e3f26d9d55918652e91176", [ + [ "ADC_GROUP_ID_0", "group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176af4886d3826fb26d4bbdfaeb2195a5ddc", null ], + [ "ADC_GROUP_ID_1", "group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a5affde6af0ba379220ade2c4ca8a027e", null ], + [ "ADC_GROUP_ID_2", "group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a3bbc61292808df4caf5c0991e7b9f73c", null ], + [ "ADC_GROUP_ID_3", "group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a10bc5348770837fad29ae361a75ede8e", null ], + [ "ADC_GROUP_ID_4", "group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a0dc20198ed1fcd90b6b5cee6da08677f", null ], + [ "ADC_GROUP_ID_5", "group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a4ce5371decbc45bfe70580f4d8717e39", null ], + [ "ADC_GROUP_ID_6", "group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176acc7f6d39b3a21eb846e58e1a8ce4142d", null ], + [ "ADC_GROUP_ID_7", "group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a21f524469d82b63154be5f2f1f9dd95d", null ], + [ "ADC_GROUP_ID_8", "group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a095b0310fe37230c34f3d1b4d48d4e42", null ] + ] ], + [ "adc_group_mask_t", "group___a_d_c___a_p_i.html#gaee17c30275c1c9376cc485a62ea121eb", [ + [ "ADC_GROUP_MASK_NONE", "group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba6cc9000330017d217de6ca0e3eb70af5", null ], + [ "ADC_GROUP_MASK_0", "group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebaeedbedf9fc1fc6055524220d6e0af60d", null ], + [ "ADC_GROUP_MASK_1", "group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebaf727cf72c6c097e87f3e02209f1c2f1f", null ], + [ "ADC_GROUP_MASK_2", "group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba434af3ad0c8079644a51035acd8fd835", null ], + [ "ADC_GROUP_MASK_3", "group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba584a4fb88b98b8689d5a64e104fcbc6b", null ], + [ "ADC_GROUP_MASK_4", "group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba8a271a13324d7b13e732aeef6b5ef0dc", null ], + [ "ADC_GROUP_MASK_5", "group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba298a89e90d290117e69acb7569409a8a", null ], + [ "ADC_GROUP_MASK_6", "group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebadd19ea2551df6c56813bf9d9dfa3d218", null ], + [ "ADC_GROUP_MASK_7", "group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba0b145ee64281e271a0c2b075484b175a", null ], + [ "ADC_GROUP_MASK_8", "group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebaad618fc3cf12d1bb5575659bb56ffb84", null ], + [ "ADC_GROUP_MASK_ALL", "group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebafcbf5a874521ebcfb98323c2a7990847", null ] + ] ], + [ "adc_state_t", "group___a_d_c___a_p_i.html#ga2783ab2e29809bf0a50bc66c6fa8d3c6", [ + [ "ADC_STATE_IDLE", "group___a_d_c___a_p_i.html#gga2783ab2e29809bf0a50bc66c6fa8d3c6a618306d7336575e80aa3d79865a52c2d", null ], + [ "ADC_STATE_SCAN_IN_PROGRESS", "group___a_d_c___a_p_i.html#gga2783ab2e29809bf0a50bc66c6fa8d3c6abe1c11b191e48669cc5129aca45800d7", null ], + [ "ADC_STATE_CALIBRATION_IN_PROGRESS", "group___a_d_c___a_p_i.html#gga2783ab2e29809bf0a50bc66c6fa8d3c6a4766863227ec2104751a15e3eb148d86", null ] + ] ] +]; \ No newline at end of file diff --git a/group___a_d_c___c.html b/group___a_d_c___c.html new file mode 100644 index 0000000..0cb9fd0 --- /dev/null +++ b/group___a_d_c___c.html @@ -0,0 +1,1348 @@ + + + + + + + +RZV Flexible Software Package Documentation: Analog to Digital Converter (r_adc_c) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Analog to Digital Converter (r_adc_c)
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_ADC_C_Open (adc_ctrl_t *p_ctrl, adc_cfg_t const *const p_cfg)
     
    fsp_err_t R_ADC_C_ScanCfg (adc_ctrl_t *p_ctrl, void const *const p_channel_cfg)
     
    fsp_err_t R_ADC_C_InfoGet (adc_ctrl_t *p_ctrl, adc_info_t *p_adc_info)
     
    fsp_err_t R_ADC_C_ScanStart (adc_ctrl_t *p_ctrl)
     
    fsp_err_t R_ADC_C_ScanGroupStart (adc_ctrl_t *p_ctrl, adc_group_mask_t group_id)
     
    fsp_err_t R_ADC_C_ScanStop (adc_ctrl_t *p_ctrl)
     
    fsp_err_t R_ADC_C_StatusGet (adc_ctrl_t *p_ctrl, adc_status_t *p_status)
     
    fsp_err_t R_ADC_C_Read (adc_ctrl_t *p_ctrl, adc_channel_t const reg_id, uint16_t *const p_data)
     
    fsp_err_t R_ADC_C_Read32 (adc_ctrl_t *p_ctrl, adc_channel_t const reg_id, uint32_t *const p_data)
     
    fsp_err_t R_ADC_C_SampleStateCountSet (adc_ctrl_t *p_ctrl, uint16_t num_states)
     
    fsp_err_t R_ADC_C_Close (adc_ctrl_t *p_ctrl)
     
    fsp_err_t R_ADC_C_OffsetSet (adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, int32_t offset)
     
    fsp_err_t R_ADC_C_Calibrate (adc_ctrl_t *const p_ctrl, void const *p_extend)
     
    fsp_err_t R_ADC_C_CallbackSet (adc_ctrl_t *const p_api_ctrl, void(*p_callback)(adc_callback_args_t *), void const *const p_context, adc_callback_args_t *const p_callback_memory)
     
    +

    Detailed Description

    +

    Driver for the ADC peripheral on RZ MPUs. This module implements the ADC Interface.

    +

    +Overview

    +

    +Features

    +

    The ADC_C module supports the following features:

    +
      +
    • 12 bit resolution depending on the MPU
    • +
    • Supports selection of multiple analog input channels *1
    • +
    • Configurable scan start trigger:
        +
      • Software scan triggers
      • +
      • Hardware scan triggers
          +
        • Asynchronous trigger using an external pin (ADC_TRG)
        • +
        • Synchronous trigger using the multi-function timer pulse unit 3 (MTU3a)
        • +
        • PWM timer (GPT) as the activation source
        • +
        • In hardware trigger mode, the available trigger input modes are auto mode and step mode
        • +
        +
      • +
      • External scan triggers from the ADTRGn port pins
      • +
      +
    • +
    • Configurable operating mode:
        +
      • Select mode to convert the specified single analog input channel
      • +
      • Scan mode to convert the analog inputs of arbitrarily selected channels in ascending order of channel number
      • +
      • 1-buffer mode or 4-buffer mode can be specified for storing the A/D conversion result
      • +
      +
    • +
    • Configurable conversion mode:
        +
      • Single mode to proceed A/D conversion only once
      • +
      • Repeat mode to repeatedly proceed A/D conversion *2
      • +
      +
    • +
    • Optional callback when scan completes
    • +
    • An A/D conversion end interrupt (INTAD) can be generated on completion of A/D conversion
    • +
    +

    *1 The channel configuration of module is shown below.

    + + + + +
    RZ/V2L
    Channels 0 to 7
    +

    *2 Repeat mode is valid only in hardware trigger mode and step mode.

    +

    +Configuration

    +

    Build Time Configurations for r_adc_c

    +The following build time configurations are defined in fsp_cfg/r_adc_c_cfg.h:
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    +

    Configurations for Analog > ADC (r_adc_c)

    +This module can be added to the Stacks tab via New Stack > Analog > ADC (r_adc_c).
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    General > NameName must be a valid C symbolg_adc0 Module name
    General > Trigger mode
      +
    • +Software trigger mode
    • +
    • +Hardware trigger mode
    • +
    +
    Software trigger mode Select trigger mode.
    General > Operating mode
      +
    • +Scan mode
    • +
    • +Select mode
    • +
    +
    Scan mode Select the operating mode.
    General > Conversion mode
      +
    • +Single mode
    • +
    • +Repeat mode
    • +
    +
    Single mode Select the conversion mode.
    General > Buffer mode
      +
    • +1-buffer mode
    • +
    • +4-buffer mode
    • +
    +
    1-buffer mode Select the buffer mode.4-buffer mode is prohibited in scan mode.
    General > Analog input channelMCU Specific OptionsSpecify the analog input channel.Multiple selection is prohibited in select mode.
    General > Sampling timeManual Entry100 Set the sampling time.(unit:ADIVCLK cycle)
    General > Number of stages of the AD external trigger pin filter
      +
    • +Disabled
    • +
    • +4 stages
    • +
    • +8 stages
    • +
    • +12 stages
    • +
    • +16 stages
    • +
    +
    Disabled Select the number of stages of the AD external trigger pin filter.The signal to be filtered is ADC_ADCLK(TSUϕ) (80 MHz).
    Hardware trigger mode > Hardware trigger sourceMCU Specific OptionsSelect hardware trigger source.
    Hardware trigger mode > Valid edge of the trigger source (Only when ADC_TRG is selected)
      +
    • +Falling edge
    • +
    • +Rising edge
    • +
    • +Both edges
    • +
    +
    Falling edge Select the valid edge of the trigger.
    Hardware trigger mode > Trigger input mode
      +
    • +Auto mode
    • +
    • +Step mode
    • +
    +
    Auto mode Selects the trigger input mode.
    Interrupts > CallbackName must be a valid C symbolNULL A user callback function can be provided here. If this callback function is provided, it is called from the interrupt service routine (ISR)
    Interrupts > Conversion end interrupt Enable
      +
    • +Disabled
    • +
    • +Enabled
    • +
    +
    Disabled Enable or disable the conversion end interrupt.
    Interrupts > Conversion end Interrupt PriorityValue must be between 0 and 25512 Select the interrupt priority for Conversion end.
    +

    +

    +Clock Configuration

    +

    The ADC_C peripheral uses the clocks(ADC_ADCLK) shown in the table below as its clock sources.

    + + + + +
    RZ/V2L
    Clock Source 80MHz
    +

    +Pin Configuration

    +

    The ADC_CHx pins are analog input channels that can be used with the ADC.

    +

    ADC_TRG can be used to start scans with an external trigger. When external triggers are used, ADC scans begin on the falling edge of the ADTRG pin.

    +

    +Usage Notes

    +

    ADC Conversion Modes

    +

    Single mode and repeat mode are available.

    +

    Single-scan Mode

    +

    In single scan mode, one or more specified channels are scanned once per trigger.

    +

    Repeat-scan Mode

    +

    In repeat scan mode, a single trigger is required to start the scan. Scans continue until R_ADC_C_ScanStop() is called.

    Note
    To help ensure a responsive system, developers should consider system clock speed, ADCLK speed, and callback processing time. In particular, using a scan-end callback with a high scan rate relative to core clocks (for example, in continuous scan mode) result in constant or high-frequency interrupts and cannot recommended. Therefore, repeat mode is valid only in hardware trigger mode and step mode. For the hardware trigger source, set a timer with a cycle that takes the above into consideration.
    +

    ADC Trigger Modes

    +

    Software trigger mode and hardware trigger mode are the two types of trigger modes in which the trigger is the timing for starting the A/D conversion processing.

    +

    Software-trigger Mode

    +

    In software trigger mode, A/D conversion is started for the input of the analog input pins. The hardware trigger is invalid when software trigger mode is set.

    +

    Hardware-trigger Mode

    +

    There are two triggers in hardware trigger mode: asynchronous trigger using the ADC_TRG pin as the activation source and synchronous trigger using the multi-function timer pulse unit 3 (MTU3a) or general purpose PWM timer (GPT) as the activation source. In hardware trigger mode, the available trigger input modes are auto mode and step mode. In auto mode, when a hardware trigger is input once, A/D conversion is repeated automatically for the conversion count in accordance with the specified conversion settings. In step mode, A/D conversion proceeds every time a hardware trigger is input. For example, if select mode, single mode, and 4- buffer mode are selected, conversion finishes when a hardware trigger has been input four times.

    +

    ADC Operating Modes

    +

    There are two operating modes: select mode and scan mode. The select mode has 1-buffer mode and 4-buffer mode as sub-modes.

    +

    Select Mode

    +

    A/D conversion proceeds for the analog input specified. The A/D conversion results are stored in the A/D conversion result registers corresponding to the analog inputs. In select mode, 1-buffer mode or 4-buffer mode can be used as the method for storing the A/D conversion results. Only one channel is selectable for A/D conversion in select mode.

    +

    In 1-buffer mode, A/D conversion proceeds only once for the analog input specified. This mode is usable for reading the result of a single conversion.

    +

    In 4-buffer mode, A/D conversion proceeds four times for the analog input specified and the conversion results are stored A/D conversion result registers. For the correspondence between the analog inputs and A/D conversion result registers in 4-Buffer mode, refer to the reference section "Table Correspondence between Analog Inputs and A/D Conversion Result Registers in 4-Buffer Mode" of the user's manual. This mode is usable for obtaining the average of the A/D conversion results.

    +

    Scan Mode

    +

    A/D conversion proceeds for the analog inputs of channels selected, in ascending order of channel number. The A/D conversion results are stored in the A/D conversion result registers corresponding to the analog inputs. This mode is usable for constantly monitoring multiple analog signals. In scan mode, only 1-buffer mode can be specified.

    +

    When Interrupts Are Not Enabled

    +

    If interrupts are not enabled, the R_ADC_C_StatusGet API can be used to poll the ADC to determine when the scan has completed. The read API function is used to access the converted ADC result.

    +

    Sample-State Count Setting

    +

    The application program can modify the setting of the sample-state count for analog channels by calling the R_ADC_C_SampleStateCountSet() API function. To modify the sample-state count, set the number of states when calling the R_ADC_C_SampleStateCountSet() API function. The valid sample states for module are shown below.

    + + + + +
    RZ/V2L
    Sample State 6 to 2800
    +

    +Examples

    +

    Basic Example

    +

    This is a basic example of minimal use of the ADC in an application.

    +
    /* A channel configuration is generated by the Configuration editor based on the options selected. If additional
    * configurations are desired additional adc_c_channel_cfg_t elements can be defined and passed to R_ADC_C_ScanCfg. */
    const adc_c_channel_cfg_t g_adc0_channel_cfg =
    {
    };
    void adc_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_ADC_C_Open(&g_adc0_ctrl, &g_adc0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Enable channels. */
    err = R_ADC_C_ScanCfg(&g_adc0_ctrl, &g_adc0_channel_cfg);
    assert(FSP_SUCCESS == err);
    /* In software trigger mode, start a scan by calling R_ADC_C_ScanStart(). In other modes, enable external
    * triggers by calling R_ADC_C_ScanStart(). */
    (void) R_ADC_C_ScanStart(&g_adc0_ctrl);
    /* Wait for conversion to complete. */
    adc_status_t status;
    {
    (void) R_ADC_C_StatusGet(&g_adc0_ctrl, &status);
    }
    /* Read converted data. */
    uint16_t channel1_conversion_result;
    err = R_ADC_C_Read(&g_adc0_ctrl, ADC_CHANNEL_1, &channel1_conversion_result);
    assert(FSP_SUCCESS == err);
    }

    Repeat Mode Example

    +

    This example shows how to perform repeated AD conversions using GPT.

    +
    const adc_c_extended_cfg_t g_adc0_cfg_extend =
    {
    .trigger_source = ADC_C_ACTIVE_TRIGGER_ADTRGA0,
    .trigger_edge = ADC_C_TRIGGER_EDGE_FALLING,
    .input_mode = ADC_C_INPUT_MODE_STEP,
    .operating_mode = ADC_C_OPERATING_MODE_SELECT,
    .buffer_mode = ADC_C_BUFFER_MODE_1,
    .sampling_time = 100,
    .external_trigger_filter = ADC_C_FILTER_STAGE_SETTING_DISABLE,
    };
    const adc_cfg_t g_adc0_cfg =
    {
    .p_callback = adc_callback,
    .p_context = NULL,
    .p_extend = &g_adc0_cfg_extend,
    .scan_end_irq = ADC_INTAD_IRQn,
    .scan_end_ipl = 12,
    };
    const adc_c_channel_cfg_t g_adc0_channel_cfg =
    {
    };
    /* Instance structure to use this module. */
    const adc_instance_t g_adc1 =
    {
    .p_ctrl = &g_adc0_ctrl,
    .p_cfg = &g_adc0_cfg,
    .p_channel_cfg = &g_adc0_channel_cfg,
    .p_api = &g_adc_on_adc_c
    };
    void adc_callback (adc_callback_args_t * const p_unused)
    {
    (void) p_unused;
    uint16_t channel1_conversion_result;
    /* Read converted data. */
    R_ADC_C_Read(&g_adc0_ctrl, ADC_CHANNEL_1, &channel_conversion_result);
    assert(FSP_SUCCESS == err);
    }
    void adc_repeatmode_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_ADC_C_Open(&g_adc0_ctrl, &g_adc0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Enable channels. */
    err = R_ADC_C_ScanCfg(&g_adc0_ctrl, &g_adc0_channel_cfg);
    assert(FSP_SUCCESS == err);
    /* Set the user callback. */
    R_ADC_C_CallbackSet(g_adc0.p_ctrl, adc_callback, NULL, NULL);
    assert(FSP_SUCCESS == err);
    /* Open GPT timer with following configurations
    * (1) Set the mode to "Periodic".
    * (2) Determine the period of the timer considering the system clock speed, ADCLK speed, and callback processing time.
    * (3) Enable A/D Converter Start Request A during up-counting.
    * (4) Set the compare match value that generates a A/D Converter Start Request A.
    * (5) Enable extra features.
    */
    R_GPT_Open(&g_timer0_ctrl, &g_timer0_cfg);
    assert(FSP_SUCCESS == err);
    R_GPT_Start(&g_timer0_ctrl);
    assert(FSP_SUCCESS == err);
    /* Scan the data with ADC channels*/
    err = R_ADC_C_ScanStart(&g_adc0_ctrl);
    assert(FSP_SUCCESS == err);
    while (1)
    ;
    }

    This example shows how to perform repeated AD conversions using MTU3a.

    +
    const adc_c_extended_cfg_t g_adc0_cfg_extend =
    {
    .trigger_source = ADC_C_ACTIVE_TRIGGER_TRGA0N,
    .trigger_edge = ADC_C_TRIGGER_EDGE_FALLING,
    .input_mode = ADC_C_INPUT_MODE_STEP,
    .operating_mode = ADC_C_OPERATING_MODE_SELECT,
    .buffer_mode = ADC_C_BUFFER_MODE_1,
    .sampling_time = 100,
    .external_trigger_filter = ADC_C_FILTER_STAGE_SETTING_DISABLE,
    };
    const adc_cfg_t g_adc0_cfg =
    {
    .p_callback = adc_callback,
    .p_context = NULL,
    .p_extend = &g_adc0_cfg_extend,
    .scan_end_irq = ADC_INTAD_IRQn,
    .scan_end_ipl = 12,
    };
    const adc_c_channel_cfg_t g_adc0_channel_cfg =
    {
    };
    /* Instance structure to use this module. */
    const adc_instance_t g_adc1 =
    {
    .p_ctrl = &g_adc0_ctrl,
    .p_cfg = &g_adc0_cfg,
    .p_channel_cfg = &g_adc0_channel_cfg,
    .p_api = &g_adc_on_adc_c
    };
    void adc_callback (adc_callback_args_t * const p_unused)
    {
    (void) p_unused;
    uint16_t channel1_conversion_result;
    /* Read converted data. */
    R_ADC_C_Read(&g_adc0_ctrl, ADC_CHANNEL_1, &channel_conversion_result);
    assert(FSP_SUCCESS == err);
    }
    void adc_repeatmode_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_ADC_C_Open(&g_adc0_ctrl, &g_adc0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Enable channels. */
    err = R_ADC_C_ScanCfg(&g_adc0_ctrl, &g_adc0_channel_cfg);
    assert(FSP_SUCCESS == err);
    /* Set the user callback. */
    R_ADC_C_CallbackSet(g_adc0.p_ctrl, adc_callback, NULL, NULL);
    assert(FSP_SUCCESS == err);
    /* Open MTU3a timer with following configurations
    * (1) Set the mode to "Periodic".
    * (2) Determine the period of the timer considering the system clock speed, ADCLK speed, and callback processing time.
    * (3) Enable A/D Converter Activation by TGRA Input Capture/Compare Match Enable.
    */
    R_MTU3_Open(&g_timer0_ctrl, &g_timer0_cfg);
    assert(FSP_SUCCESS == err);
    R_MTU3_Start(&g_timer0_ctrl);
    assert(FSP_SUCCESS == err);
    /* Scan the data with ADC channels*/
    err = R_ADC_C_ScanStart(&g_adc0_ctrl);
    assert(FSP_SUCCESS == err);
    while (1)
    ;
    }
    + + + + + + + +

    +Data Structures

    struct  adc_c_extended_cfg_t
     
    struct  adc_c_channel_cfg_t
     
    struct  adc_c_instance_ctrl_t
     
    + + + + + + + + + + + + + + + + + + + +

    +Enumerations

    enum  adc_c_mask_t
     
    enum  adc_c_trigger_mode_t
     
    enum  adc_c_active_trigger_t
     
    enum  adc_c_trigger_edge_t
     
    enum  adc_c_input_mode_t
     
    enum  adc_c_operating_mode_t
     
    enum  adc_c_buffer_mode_t
     
    enum  adc_c_filter_stage_setting_t
     
    enum  adc_c_interrupt_channel_setting_t
     
    +

    Data Structure Documentation

    + +

    ◆ adc_c_extended_cfg_t

    + +
    +
    + + + + +
    struct adc_c_extended_cfg_t
    +
    +

    Extended configuration structure for ADC.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +adc_c_trigger_mode_t +trigger_mode +Trigger mode.
    +adc_c_active_trigger_t +trigger_source +Hardware trigger source.
    +adc_c_trigger_edge_t +trigger_edge +Valid edge of the trigger source.
    +adc_c_input_mode_t +input_mode +Trigger input mode.
    +adc_c_operating_mode_t +operating_mode +Operating mode.
    +adc_c_buffer_mode_t +buffer_mode +Buffer mode.
    +uint16_t +sampling_time +Sampling period. (6~2800)
    +adc_c_filter_stage_setting_t +external_trigger_filter +AD external trigger pin filter.
    + +
    +
    + +

    ◆ adc_c_channel_cfg_t

    + +
    +
    + + + + +
    struct adc_c_channel_cfg_t
    +
    +

    ADC channel(s) configuration

    +
    + + + + + + + +
    Data Fields
    +uint32_t +scan_mask +Channels/bits: bit 0 is ch0; bit 1 is ch1.
    +adc_c_interrupt_channel_setting_t +interrupt_setting +Interrupt setting.
    + +
    +
    + +

    ◆ adc_c_instance_ctrl_t

    + +
    +
    + + + + +
    struct adc_c_instance_ctrl_t
    +
    +

    ADC instance control block. DO NOT INITIALIZE. Initialized in adc_api_t::open().

    +
    +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ adc_c_mask_t

    + +
    +
    + + + + +
    enum adc_c_mask_t
    +
    +

    For ADC Scan configuration adc_channel_cfg_t::scan_mask. Use bitwise OR to combine these masks for desired channels.

    + + + + + + + + + + + +
    Enumerator
    ADC_C_MASK_OFF 

    No channels selected.

    +
    ADC_C_MASK_CHANNEL_0 

    Channel 0 mask.

    +
    ADC_C_MASK_CHANNEL_1 

    Channel 1 mask.

    +
    ADC_C_MASK_CHANNEL_2 

    Channel 2 mask.

    +
    ADC_C_MASK_CHANNEL_3 

    Channel 3 mask.

    +
    ADC_C_MASK_CHANNEL_4 

    Channel 4 mask.

    +
    ADC_C_MASK_CHANNEL_5 

    Channel 5 mask.

    +
    ADC_C_MASK_CHANNEL_6 

    Channel 6 mask.

    +
    ADC_C_MASK_CHANNEL_7 

    Channel 7 mask.

    +
    ADC_C_MASK_CHANNEL_8 

    Channel 8 mask (Temperature sensor channel mask)

    +
    + +
    +
    + +

    ◆ adc_c_trigger_mode_t

    + +
    +
    + + + + +
    enum adc_c_trigger_mode_t
    +
    +

    ADC trigger mode select

    + + + +
    Enumerator
    ADC_C_TRIGGER_MODE_SOFTWARE 

    Software trigger mode.

    +
    ADC_C_TRIGGER_MODE_HARDWARE 

    Hardware trigger mode.

    +
    + +
    +
    + +

    ◆ adc_c_active_trigger_t

    + +
    +
    + + + + +
    enum adc_c_active_trigger_t
    +
    +

    ADC hardware trigger source select

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Enumerator
    ADC_C_ACTIVE_TRIGGER_EXTERNAL 

    External trigger input.

    +
    ADC_C_ACTIVE_TRIGGER_TRGA0N 

    Compare match with or input capture to MTU0.TGRA.

    +
    ADC_C_ACTIVE_TRIGGER_TRGA1N 

    Compare match with or input capture to MTU1.TGRA.

    +
    ADC_C_ACTIVE_TRIGGER_TRGA2N 

    Compare match with or input capture to MTU2.TGRA.

    +
    ADC_C_ACTIVE_TRIGGER_TRGA3N 

    Compare match with or input capture to MTU3.TGRA.

    +
    ADC_C_ACTIVE_TRIGGER_TRGA4N 

    Compare match with or input capture to MTU4.TGRA.

    +
    ADC_C_ACTIVE_TRIGGER_TRGA6N 

    Compare match with or input capture to MTU6.TGRA.

    +
    ADC_C_ACTIVE_TRIGGER_TRGA7N 

    Compare match with or input capture to MTU7.TGRA.

    +
    ADC_C_ACTIVE_TRIGGER_TRG0N 

    Compare match with MTU0.TGRE.

    +
    ADC_C_ACTIVE_TRIGGER_TRG4AN 

    Compare match between MTU4.TADCORA and MTU4.TCNT.

    +
    ADC_C_ACTIVE_TRIGGER_TRG4BN 

    Compare match between MTU4.TADCORB and MTU4.TCNT.

    +
    ADC_C_ACTIVE_TRIGGER_TRG4AN_BN 

    Compare match between MTU4.TADCORA and MTU4.TCNT, or between MTU4.TADCORB and MTU4.TCNT.

    +
    ADC_C_ACTIVE_TRIGGER_TRG4ABN 

    Compare match between MTU4.TADCORA and MTU4.TCNT, and between MTU4.TADCORB and MTU4.TCNT (when interrupt skipping function 2 is in use)

    +
    ADC_C_ACTIVE_TRIGGER_TRG7AN 

    Compare match between MTU7.TADCORA and MTU7.TCNT.

    +
    ADC_C_ACTIVE_TRIGGER_TRG7BN 

    Compare match between MTU7.TADCORB and MTU7.TCNT.

    +
    ADC_C_ACTIVE_TRIGGER_TRG7AN_BN 

    Compare match between MTU7.TADCORA and MTU7.TCNT, or between MTU7.TADCORB and MTU7.TCNT.

    +
    ADC_C_ACTIVE_TRIGGER_TRG7ABN 

    Compare match between MTU7.TADCORA and MTU7.TCNT, and between MTU7.TADCORB and MTU7.TCNT.

    +
    ADC_C_ACTIVE_TRIGGER_ADTRGA0 

    Compare match with GPT0.GTADTRA.

    +
    ADC_C_ACTIVE_TRIGGER_ADTRGB0 

    Compare match with GPT0.GTADTRB.

    +
    ADC_C_ACTIVE_TRIGGER_ADTRGA1 

    Compare match with GPT1.GTADTRA.

    +
    ADC_C_ACTIVE_TRIGGER_ADTRGB1 

    Compare match with GPT1.GTADTRB.

    +
    ADC_C_ACTIVE_TRIGGER_ADTRGA2 

    Compare match with GPT2.GTADTRA.

    +
    ADC_C_ACTIVE_TRIGGER_ADTRGB2 

    Compare match with GPT2.GTADTRB.

    +
    ADC_C_ACTIVE_TRIGGER_ADTRGA3 

    Compare match with GPT3.GTADTRA.

    +
    ADC_C_ACTIVE_TRIGGER_ADTRGB3 

    Compare match with GPT3.GTADTRB.

    +
    ADC_C_ACTIVE_TRIGGER_ADTRGA0_B0 

    Compare match with GPT0.GTADTRA or GPT0.GTADTRB.

    +
    ADC_C_ACTIVE_TRIGGER_ADTRGA1_B1 

    Compare match with GPT1.GTADTRA or GPT1.GTADTRB.

    +
    ADC_C_ACTIVE_TRIGGER_ADTRGA2_B2 

    Compare match with GPT2.GTADTRA or GPT2.GTADTRB.

    +
    ADC_C_ACTIVE_TRIGGER_ADTRGA3_B3 

    Compare match with GPT3.GTADTRA or GPT3.GTADTRB.

    +
    + +
    +
    + +

    ◆ adc_c_trigger_edge_t

    + +
    +
    + + + + +
    enum adc_c_trigger_edge_t
    +
    +

    valid edge of the trigger select

    + + + + +
    Enumerator
    ADC_C_TRIGGER_EDGE_FALLING 

    Falling edge.

    +
    ADC_C_TRIGGER_EDGE_RISING 

    Rising edge.

    +
    ADC_C_TRIGGER_EDGE_BOTH 

    Both edges.

    +
    + +
    +
    + +

    ◆ adc_c_input_mode_t

    + +
    +
    + + + + +
    enum adc_c_input_mode_t
    +
    +

    ADC trigger input mode select

    + + + +
    Enumerator
    ADC_C_INPUT_MODE_AUTO 

    Auto mode.

    +
    ADC_C_INPUT_MODE_STEP 

    Step mode.

    +
    + +
    +
    + +

    ◆ adc_c_operating_mode_t

    + +
    +
    + + + + +
    enum adc_c_operating_mode_t
    +
    +

    ADC operating mode select

    + + + +
    Enumerator
    ADC_C_OPERATING_MODE_SCAN 

    Scan mode.

    +
    ADC_C_OPERATING_MODE_SELECT 

    Select mode.

    +
    + +
    +
    + +

    ◆ adc_c_buffer_mode_t

    + +
    +
    + + + + +
    enum adc_c_buffer_mode_t
    +
    +

    ADC buffer mode select

    + + + +
    Enumerator
    ADC_C_BUFFER_MODE_1 

    1-buffer mode

    +
    ADC_C_BUFFER_MODE_4 

    4-buffer mode

    +
    + +
    +
    + +

    ◆ adc_c_filter_stage_setting_t

    + +
    +
    +

    Select the number of stages of the AD external trigger pin filter.

    + + + + + + +
    Enumerator
    ADC_C_FILTER_STAGE_SETTING_DISABLE 

    Filter is disabled.

    +
    ADC_C_FILTER_STAGE_SETTING_4 

    12.5 ns (80 MHz) x 4 stages

    +
    ADC_C_FILTER_STAGE_SETTING_8 

    12.5 ns (80 MHz) x 8 stages

    +
    ADC_C_FILTER_STAGE_SETTING_12 

    12.5 ns (80 MHz) x 12 stages

    +
    ADC_C_FILTER_STAGE_SETTING_16 

    12.5 ns (80 MHz) x 16 stages

    +
    + +
    +
    + +

    ◆ adc_c_interrupt_channel_setting_t

    + +
    +
    +

    Enable or disable the conversion end interrupt of channel

    + + + +
    Enumerator
    ADC_C_INTERRUPT_CHANNEL_SETTING_DISABLE 

    Interrupt output is disabled.

    +
    ADC_C_INTERRUPT_CHANNEL_SETTING_ENABLE 

    Interrupt output is enabled.

    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_ADC_C_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_C_Open (adc_ctrl_tp_ctrl,
    adc_cfg_t const *const p_cfg 
    )
    +
    +

    Initializes the ADC module and applies configurations.

    +
    Return values
    + + + + + +
    FSP_SUCCESSModule is ready for use.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_ALREADY_OPENThe instance control structure has already been opened.
    FSP_ERR_IRQ_BSP_DISABLEDA callback is provided, but the interrupt is not enabled.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_C_ScanCfg()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_C_ScanCfg (adc_ctrl_tp_ctrl,
    void const *const p_channel_cfg 
    )
    +
    +

    Configures the ADC_C scan parameters. Channel specific settings are set in this function. Pass a pointer to adc_c_channel_cfg_t to p_channel_cfg.

    +
    Return values
    + + + + +
    FSP_SUCCESSChannel specific settings applied.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_C_InfoGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_C_InfoGet (adc_ctrl_tp_ctrl,
    adc_info_tp_adc_info 
    )
    +
    +

    Returns the address of the lowest number configured channel and the total number of bytes to be read in order to read the results of the configured channels. If no channels are configured, then a length of 0 is returned.

    +
    Return values
    + + + + +
    FSP_SUCCESSInformation stored in p_adc_info.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_C_ScanStart()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_ADC_C_ScanStart (adc_ctrl_tp_ctrl)
    +
    +

    Start A/D conversion.

    +
    Precondition
    Call R_ADC_C_ScanCfg after R_ADC_C_Open before starting a scan.
    +
    Return values
    + + + + + + +
    FSP_SUCCESSScan started (software trigger) or hardware triggers enabled.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    FSP_ERR_NOT_INITIALIZEDUnit is not initialized.
    FSP_ERR_IN_USEAnother scan is still in progress (software trigger).
    +
    +
    + +
    +
    + +

    ◆ R_ADC_C_ScanGroupStart()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_C_ScanGroupStart (adc_ctrl_tp_ctrl,
    adc_group_mask_t group_id 
    )
    +
    +

    adc_api_t::scanGroupStart is not supported. Use scanStart instead.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDFunction not supported in this implementation.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_C_ScanStop()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_ADC_C_ScanStop (adc_ctrl_tp_ctrl)
    +
    +

    Stop A/D conversion.

    +
    Return values
    + + + + + +
    FSP_SUCCESSScan stopped (software trigger) or hardware triggers disabled.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    FSP_ERR_NOT_INITIALIZEDUnit is not initialized.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_C_StatusGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_C_StatusGet (adc_ctrl_tp_ctrl,
    adc_status_tp_status 
    )
    +
    +

    Get current ADC_C status and store it in provided pointer p_status.

    +
    Return values
    + + + + +
    FSP_SUCCESSModule status stored in the provided pointer p_status
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_C_Read()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_C_Read (adc_ctrl_tp_ctrl,
    adc_channel_t const reg_id,
    uint16_t *const p_data 
    )
    +
    +

    Reads conversion results from a single channel or sensor.

    +
    Return values
    + + + + + +
    FSP_SUCCESSData read into provided p_data.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    FSP_ERR_NOT_INITIALIZEDUnit is not initialized.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_C_Read32()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_C_Read32 (adc_ctrl_tp_ctrl,
    adc_channel_t const reg_id,
    uint32_t *const p_data 
    )
    +
    +

    Reads conversion results from a single channel or sensor register into a 32-bit result.

    +
    Return values
    + + + + + +
    FSP_SUCCESSData read into provided p_data.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    FSP_ERR_NOT_INITIALIZEDUnit is not initialized.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_C_SampleStateCountSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_C_SampleStateCountSet (adc_ctrl_tp_ctrl,
    uint16_t num_states 
    )
    +
    +

    Sets the sample state count for individual channels. This only needs to be set for special use cases. Normally, use the default values out of reset.

    +
    Note
    The sample states for the temperature and voltage sensor are set in R_ADC_C_ScanCfg.
    +
    Return values
    + + + + + + +
    FSP_SUCCESSSample state count updated.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_INITIALIZEDUnit is not initialized.
    FSP_ERR_NOT_OPENUnit is not open.
    FSP_ERR_IN_USEA/D conversion ongoing.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_C_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_ADC_C_Close (adc_ctrl_tp_ctrl)
    +
    +

    This function ends any scan in progress, disables interrupts, and removes power to the A/D peripheral.

    +
    Return values
    + + + + +
    FSP_SUCCESSModule closed.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_C_OffsetSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_C_OffsetSet (adc_ctrl_t *const p_ctrl,
    adc_channel_t const reg_id,
    int32_t offset 
    )
    +
    +

    adc_api_t::offsetSet is not supported.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDFunction not supported in this implementation.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_C_Calibrate()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_C_Calibrate (adc_ctrl_t *const p_ctrl,
    void const * p_extend 
    )
    +
    +

    adc_api_t::calibrate is not supported.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDCalibration not supported on this MCU.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_C_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_C_CallbackSet (adc_ctrl_t *const p_api_ctrl,
    void(*)(adc_callback_args_t *) p_callback,
    void const *const p_context,
    adc_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback and has option of providing memory for callback structure. Implements adc_api_t::callbackSet

    +
    Return values
    + + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___a_d_c___c.js b/group___a_d_c___c.js new file mode 100644 index 0000000..5988d5f --- /dev/null +++ b/group___a_d_c___c.js @@ -0,0 +1,107 @@ +var group___a_d_c___c = +[ + [ "adc_c_extended_cfg_t", "group___a_d_c___c.html#structadc__c__extended__cfg__t", [ + [ "trigger_mode", "group___a_d_c___c.html#a8b7c376994f8e824a958c1d1d0f8b302", null ], + [ "trigger_source", "group___a_d_c___c.html#a46131143e44246e03f3a6ca768512a05", null ], + [ "trigger_edge", "group___a_d_c___c.html#a7eb4fc71a82fcf1ecd7574070c4243e3", null ], + [ "input_mode", "group___a_d_c___c.html#adc8e8849121eeb6991ae00b028a8a4b5", null ], + [ "operating_mode", "group___a_d_c___c.html#a81f2c8156907fdc5b0055cd8443f3f25", null ], + [ "buffer_mode", "group___a_d_c___c.html#a8ccf8c0714c173bc9e9d536df5df56f9", null ], + [ "sampling_time", "group___a_d_c___c.html#af94b7b8c31dab35dcb7bf1bfe1670d6d", null ], + [ "external_trigger_filter", "group___a_d_c___c.html#a9f46b83d1e4e113f06b392ca92eda623", null ] + ] ], + [ "adc_c_channel_cfg_t", "group___a_d_c___c.html#structadc__c__channel__cfg__t", [ + [ "scan_mask", "group___a_d_c___c.html#a1124a6766edf4954d95d01d6d8e46548", null ], + [ "interrupt_setting", "group___a_d_c___c.html#ac0f2be271c165544bd8c8502f5d4739c", null ] + ] ], + [ "adc_c_instance_ctrl_t", "group___a_d_c___c.html#structadc__c__instance__ctrl__t", null ], + [ "adc_c_mask_t", "group___a_d_c___c.html#ga2f01cf47970d9f474abd9f8b68a36abf", [ + [ "ADC_C_MASK_OFF", "group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa79ec471da64631d27a588d73ef193efe", null ], + [ "ADC_C_MASK_CHANNEL_0", "group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa526b225d2249c0e6b598d0cb15d23baf", null ], + [ "ADC_C_MASK_CHANNEL_1", "group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaa6022698b4c9597d629c54a2b24c35c1", null ], + [ "ADC_C_MASK_CHANNEL_2", "group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaed4a79299f7d28f3332bf8f311bbad01", null ], + [ "ADC_C_MASK_CHANNEL_3", "group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfad5324a7d55619eeb7c59ebc1d410e3f2", null ], + [ "ADC_C_MASK_CHANNEL_4", "group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaaa22536b05ed63aca9faf6123faeb56b", null ], + [ "ADC_C_MASK_CHANNEL_5", "group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa3ee0541dd2c83923941c6d60f9cc06fb", null ], + [ "ADC_C_MASK_CHANNEL_6", "group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa6a92d5b950930e683faec6d0f27a14fd", null ], + [ "ADC_C_MASK_CHANNEL_7", "group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaf0025fb0928e54bb073bbfba22c27670", null ], + [ "ADC_C_MASK_CHANNEL_8", "group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfae30eb419b469cf9b915ca07da7335fc9", null ] + ] ], + [ "adc_c_trigger_mode_t", "group___a_d_c___c.html#ga63b54f9f14640dd93668df6b63fa5208", [ + [ "ADC_C_TRIGGER_MODE_SOFTWARE", "group___a_d_c___c.html#gga63b54f9f14640dd93668df6b63fa5208a96075d0fcdc8e5e9fe36ffed03f611e4", null ], + [ "ADC_C_TRIGGER_MODE_HARDWARE", "group___a_d_c___c.html#gga63b54f9f14640dd93668df6b63fa5208a7fa4ed8065306ec04e54e7feda2e1dbc", null ] + ] ], + [ "adc_c_active_trigger_t", "group___a_d_c___c.html#ga7491e0c2eab4266fd44d7f92a3c69324", [ + [ "ADC_C_ACTIVE_TRIGGER_EXTERNAL", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324ae5fb7188a5493c2087429cf22d4cd2f4", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRGA0N", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a38fcc2885633e438bc40bd92a2b84dca", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRGA1N", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324abf1cba1bc639bd489c1434a8811f73d2", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRGA2N", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a44ab6a715d5c6b4962ee09cd97b9738c", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRGA3N", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324abca8fe161c59c71c347623b294e66974", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRGA4N", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a558ad6214f6a2921415737991d2092d1", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRGA6N", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a105e8fb8e9ac187017ea47c68e8053fa", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRGA7N", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a843cb5544350c5c93a91b9c5f68e1e73", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRG0N", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324af54943db6ac19bc3469392b7dd1bf193", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRG4AN", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a60b1a080cb97f8c36886c8d8313f82b9", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRG4BN", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aa329f8ae24c1e72627aec16e56add4a8", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRG4AN_BN", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a3e9a5e2d5a289cd86dc466fb491976cf", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRG4ABN", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a2bdbc28656119e798974fb9c2c6a4e63", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRG7AN", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a6a3e1e29efd6b0726b986a61d26fbb9c", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRG7BN", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aa6f5ef5945ac95eb9850812798d478c3", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRG7AN_BN", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a3966e7fc0d3839758c715ad9a5581587", null ], + [ "ADC_C_ACTIVE_TRIGGER_TRG7ABN", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a0187bd6ce59d816a9c14d48a7ed745f7", null ], + [ "ADC_C_ACTIVE_TRIGGER_ADTRGA0", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324af3c255cbb8e850ba514039dadc6bf92a", null ], + [ "ADC_C_ACTIVE_TRIGGER_ADTRGB0", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324abf5e08f2640ebc195c73e47c8e65643f", null ], + [ "ADC_C_ACTIVE_TRIGGER_ADTRGA1", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a656f9dceef714b697245a7f5bff691c3", null ], + [ "ADC_C_ACTIVE_TRIGGER_ADTRGB1", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aa27f6fb1909ccf43a35c88409bfb906e", null ], + [ "ADC_C_ACTIVE_TRIGGER_ADTRGA2", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a05fe5bc9f3a1fb82348c6bfd772224be", null ], + [ "ADC_C_ACTIVE_TRIGGER_ADTRGB2", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a74a5af0cf4d4a397f09877b9fe6f9324", null ], + [ "ADC_C_ACTIVE_TRIGGER_ADTRGA3", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a5109da7296762f3d8a619d31a51ea5a3", null ], + [ "ADC_C_ACTIVE_TRIGGER_ADTRGB3", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a336c6d7ff3ca435273e8c40ad4c6ea03", null ], + [ "ADC_C_ACTIVE_TRIGGER_ADTRGA0_B0", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a077311023b7c7723482d4c5c7d370be1", null ], + [ "ADC_C_ACTIVE_TRIGGER_ADTRGA1_B1", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aad2f3ddd5eb3347f71232e5bb3b561d1", null ], + [ "ADC_C_ACTIVE_TRIGGER_ADTRGA2_B2", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aad43bb4fbe4b2c0936b28843970e03a8", null ], + [ "ADC_C_ACTIVE_TRIGGER_ADTRGA3_B3", "group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a3dec3d6634fe8fa6337ea9a60025d722", null ] + ] ], + [ "adc_c_trigger_edge_t", "group___a_d_c___c.html#gaddac3354631a273d32f50f65b271de49", [ + [ "ADC_C_TRIGGER_EDGE_FALLING", "group___a_d_c___c.html#ggaddac3354631a273d32f50f65b271de49a3d564c924b8980dfce73223e9447f870", null ], + [ "ADC_C_TRIGGER_EDGE_RISING", "group___a_d_c___c.html#ggaddac3354631a273d32f50f65b271de49ae5220b5deefd335b667937754602a1c1", null ], + [ "ADC_C_TRIGGER_EDGE_BOTH", "group___a_d_c___c.html#ggaddac3354631a273d32f50f65b271de49ac22d5d31e0596d826fbff03b476f0166", null ] + ] ], + [ "adc_c_input_mode_t", "group___a_d_c___c.html#ga50e12110f82b457bdd59bd0dbc0d0d89", [ + [ "ADC_C_INPUT_MODE_AUTO", "group___a_d_c___c.html#gga50e12110f82b457bdd59bd0dbc0d0d89a3b4fe16ae64b00c994f7273547ab9048", null ], + [ "ADC_C_INPUT_MODE_STEP", "group___a_d_c___c.html#gga50e12110f82b457bdd59bd0dbc0d0d89adbdd34fbb2bc27ddafe211baae444392", null ] + ] ], + [ "adc_c_operating_mode_t", "group___a_d_c___c.html#ga1f6acb79f1626e0bd35e6f90752a015c", [ + [ "ADC_C_OPERATING_MODE_SCAN", "group___a_d_c___c.html#gga1f6acb79f1626e0bd35e6f90752a015ca63cedcfd78a812f8f284c2c256d60579", null ], + [ "ADC_C_OPERATING_MODE_SELECT", "group___a_d_c___c.html#gga1f6acb79f1626e0bd35e6f90752a015caa84e18043bb7ffa605aeedc5fd6c22f9", null ] + ] ], + [ "adc_c_buffer_mode_t", "group___a_d_c___c.html#gaa825c3919bb78f2b06cfb42e726f507b", [ + [ "ADC_C_BUFFER_MODE_1", "group___a_d_c___c.html#ggaa825c3919bb78f2b06cfb42e726f507bacd2e2ea3702a77919d90e1620f8ecea9", null ], + [ "ADC_C_BUFFER_MODE_4", "group___a_d_c___c.html#ggaa825c3919bb78f2b06cfb42e726f507baa23674fef20210a76d33298be9253183", null ] + ] ], + [ "adc_c_filter_stage_setting_t", "group___a_d_c___c.html#ga034ccf534ec5fed75f8c33ad29c8e3be", [ + [ "ADC_C_FILTER_STAGE_SETTING_DISABLE", "group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3bea0cea22fe02a308fa8dcb8622af5be267", null ], + [ "ADC_C_FILTER_STAGE_SETTING_4", "group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3bea58499b9e7e17eae5511957f130890953", null ], + [ "ADC_C_FILTER_STAGE_SETTING_8", "group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3beaff4e1eb7b74d3c422f01aafae1b9117f", null ], + [ "ADC_C_FILTER_STAGE_SETTING_12", "group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3beaf0ee05127742344df84853d642f4d0e9", null ], + [ "ADC_C_FILTER_STAGE_SETTING_16", "group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3bea45fc2724e94b772f7c82f16c108b876f", null ] + ] ], + [ "adc_c_interrupt_channel_setting_t", "group___a_d_c___c.html#gab74afcc80bd6ce8980feeadb9352449e", [ + [ "ADC_C_INTERRUPT_CHANNEL_SETTING_DISABLE", "group___a_d_c___c.html#ggab74afcc80bd6ce8980feeadb9352449ea06c8e5e55d072c7d8f0825b701dd27ab", null ], + [ "ADC_C_INTERRUPT_CHANNEL_SETTING_ENABLE", "group___a_d_c___c.html#ggab74afcc80bd6ce8980feeadb9352449ea85786ffac329aa37580a8c071e1ebf13", null ] + ] ], + [ "R_ADC_C_Open", "group___a_d_c___c.html#ga52f7eee41184b0a91cfa9e73b1833122", null ], + [ "R_ADC_C_ScanCfg", "group___a_d_c___c.html#ga5f0ecdfeeb82907f1d20e68284fe8861", null ], + [ "R_ADC_C_InfoGet", "group___a_d_c___c.html#ga71b8dbb9de7e428dbdc0bdd56c2331a4", null ], + [ "R_ADC_C_ScanStart", "group___a_d_c___c.html#ga11e9ba160e344dc72ab9e862f7ce70db", null ], + [ "R_ADC_C_ScanGroupStart", "group___a_d_c___c.html#ga2a5b64c160eb0b849ea5043bde9188cb", null ], + [ "R_ADC_C_ScanStop", "group___a_d_c___c.html#gad2ba1ea2171aafa77a4ea3de325ad11c", null ], + [ "R_ADC_C_StatusGet", "group___a_d_c___c.html#ga1d98d3b28202140cc37796dd60fde5e3", null ], + [ "R_ADC_C_Read", "group___a_d_c___c.html#ga0971485949f985d827aeaa69feff4f5a", null ], + [ "R_ADC_C_Read32", "group___a_d_c___c.html#gad95fbc1b2b5d7ced0f332c6cab3be5a0", null ], + [ "R_ADC_C_SampleStateCountSet", "group___a_d_c___c.html#ga002b131506372adc9b7117ac980dd077", null ], + [ "R_ADC_C_Close", "group___a_d_c___c.html#ga51e75a0613a836dda17e8dff336fa5b9", null ], + [ "R_ADC_C_OffsetSet", "group___a_d_c___c.html#ga1a6bcd25e5366666a3f25062e4b9d615", null ], + [ "R_ADC_C_Calibrate", "group___a_d_c___c.html#ga5cbf5113221d2cdbf11f36eb8b7ea21a", null ], + [ "R_ADC_C_CallbackSet", "group___a_d_c___c.html#ga1644c43f8469049a20a1c183682b2eda", null ] +]; \ No newline at end of file diff --git a/group___a_d_c___e.html b/group___a_d_c___e.html new file mode 100644 index 0000000..14f4ede --- /dev/null +++ b/group___a_d_c___e.html @@ -0,0 +1,1707 @@ + + + + + + + +RZV Flexible Software Package Documentation: Analog to Digital Converter (r_adc_e) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Analog to Digital Converter (r_adc_e)
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_ADC_E_Open (adc_ctrl_t *p_ctrl, adc_cfg_t const *const p_cfg)
     
    fsp_err_t R_ADC_E_ScanCfg (adc_ctrl_t *p_ctrl, void const *const p_channel_cfg)
     
    fsp_err_t R_ADC_E_InfoGet (adc_ctrl_t *p_ctrl, adc_info_t *p_adc_info)
     
    fsp_err_t R_ADC_E_ScanStart (adc_ctrl_t *p_ctrl)
     
    fsp_err_t R_ADC_E_ScanGroupStart (adc_ctrl_t *p_ctrl, adc_group_mask_t group_id)
     
    fsp_err_t R_ADC_E_ScanStop (adc_ctrl_t *p_ctrl)
     
    fsp_err_t R_ADC_E_StatusGet (adc_ctrl_t *p_ctrl, adc_status_t *p_status)
     
    fsp_err_t R_ADC_E_Read (adc_ctrl_t *p_ctrl, adc_channel_t const reg_id, uint16_t *const p_data)
     
    fsp_err_t R_ADC_E_Read32 (adc_ctrl_t *p_ctrl, adc_channel_t const reg_id, uint32_t *const p_data)
     
    fsp_err_t R_ADC_E_Close (adc_ctrl_t *p_ctrl)
     
    fsp_err_t R_ADC_E_OffsetSet (adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, int32_t offset)
     
    fsp_err_t R_ADC_E_Calibrate (adc_ctrl_t *const p_ctrl, void const *p_extend)
     
    fsp_err_t R_ADC_E_CallbackSet (adc_ctrl_t *const p_api_ctrl, void(*p_callback)(adc_callback_args_t *), void const *const p_context, adc_callback_args_t *const p_callback_memory)
     
    +

    Detailed Description

    +

    Driver for the and ADC12 peripherals on RZ microprocessor. This module implements the ADC Interface.

    +

    +Overview

    +

    +Features

    +

    The ADC_E module supports the following features:

    +
      +
    • 8 or 12 bit maximum resolution depending on the RZ MPUs
    • +
    • Configure scans to include:
        +
      • Multiple analog channels
      • +
      +
    • +
    • Configurable scan start trigger:
        +
      • Software scan triggers
      • +
      • Hardware scan triggers (Trigger by the General-Purpose Timer (GPT) and event link controller (ELC))
      • +
      • External scan triggers from the ADTRGn port pins
      • +
      +
    • +
    • Configurable scan mode:
        +
      • Single scan mode, where each trigger starts a single scan
      • +
      • Continuous scan mode, where all channels are scanned continuously
      • +
      • Group scan mode, where channels are grouped into group A and group B and group C.
      • +
      +
    • +
    • Supports adding and averaging converted samples
    • +
    • Optional callback when scan completes
    • +
    • Supports reading converted data
    • +
    • Double-trigger support
    • +
    • Compare function support
    • +
    +

    +Configuration

    +

    Build Time Configurations for r_adc_e

    +The following build time configurations are defined in fsp_cfg/r_adc_e_cfg.h:
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    +

    Configurations for Analog > ADC Driver on r_adc_e

    +This module can be added to the Stacks tab via New Stack > Analog > ADC Driver on r_adc_e.
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    General > NameName must be a valid C symbolg_adc0 Module name
    General > UnitUnit must be a non-negative integer0 Specifies the ADC Unit to be used.
    General > Resolution
      +
    • +12-Bit
    • +
    • +8-Bit
    • +
    +
    12-Bit Specifies the conversion resolution for this unit.
    General > Clear after read
      +
    • +Off
    • +
    • +On
    • +
    +
    On Specifies if the result register will be automatically cleared after the conversion result is read.
    General > Mode
      +
    • +Single Scan
    • +
    • +Continuous Scan
    • +
    • +Group Scan
    • +
    +
    Single Scan Specifies the mode that this ADC unit is used in.
    General > Double-trigger
      +
    • +Disabled
    • +
    • +Enabled
    • +
    • +Enabled (extended mode)
    • +
    +
    Disabled When enabled, the scan-end interrupt for Group A is only thrown on every second scan. Extended double-trigger mode (single-scan only) triggers on both ELC events, allowing (for example) a scan on two different timer compare match values.
    +
    +In group mode Group B is unaffected.
    +
    +
    Input > Start Trigger > Group ARefer to the RZV Configuration tool for available options.software A/D Conversion Start Trigger Select for Group A.
    Input > Start Trigger > Group BRefer to the RZV Configuration tool for available options.Disabled A/D Conversion Start Trigger Select for Group B.
    Input > Start Trigger > Group C Enabled
      +
    • +Disabled
    • +
    • +Enabled
    • +
    +
    Disabled Set to true to enable Group C, false to disable Group C.
    Input > Start Trigger > Group CRefer to the RZV Configuration tool for available options.Disabled A/D Conversion Start Trigger Select for Group C.
    Input > Start Trigger > ELC EventMCU Specific OptionsSelect ELC event.
    Input > Window Compare > Window A > Enable
      +
    • +Disabled
    • +
    • +Enabled
    • +
    +
    Disabled Enable or disable comparison with Window A.
    Input > Window Compare > Window A > Channels to compare
      +
    • +Channel 0
    • +
    • +Channel 1
    • +
    • +Channel 2
    • +
    • +Channel 3
    • +
    • +Channel 4
    • +
    • +Channel 5
    • +
    • +Channel 6
    • +
    • +Channel 7
    • +
    +
    Select channels to be compared to Window A.
    Input > Window Compare > Window A > Channel comparison mode (channel availability varies by MCU and unit)
      +
    • +Channel 0
    • +
    • +Channel 1
    • +
    • +Channel 2
    • +
    • +Channel 3
    • +
    • +Channel 4
    • +
    • +Channel 5
    • +
    • +Channel 6
    • +
    • +Channel 7
    • +
    +
    Checking a box sets the comparison mode for that channel to Greater Than or Inside Window depending on whether Window Mode is disabled or enabled (respectively). If left unchecked the comparison mode will likewise be Less Than or Outside Window (respectively).
    Input > Window Compare > Window A > Lower ReferenceMust be a positive 16-bit integer.0 Set the lower comparison value.
    Input > Window Compare > Window A > Upper ReferenceMust be a positive 16-bit integer.0 Set the upper comparison value.
    Input > Window Compare > Window B > Enable
      +
    • +Disabled
    • +
    • +Enabled
    • +
    +
    Disabled Enable or disable comparison with Window B.
    Input > Window Compare > Window B > Channel to compare (channel availability varies by MCU and unit)
      +
    • +Channel 0
    • +
    • +Channel 1
    • +
    • +Channel 2
    • +
    • +Channel 3
    • +
    • +Channel 4
    • +
    • +Channel 5
    • +
    • +Channel 6
    • +
    • +Channel 7
    • +
    +
    Channel 0 Select a channel to be compared to Window B.
    Input > Window Compare > Window B > Comparison mode
      +
    • +Less Than or Outside Window
    • +
    • +Greater Than or Inside Window
    • +
    +
    module.driver.adc_e.compare.window_b.mode Select the comparison mode for Window B. For each option, the first condition applies when Window Mode is disabled and the second option applies when Window Mode is enabled.
    Input > Window Compare > Window B > Lower ReferenceMust be a positive 16-bit integer.0 Set the lower comparison value.
    Input > Window Compare > Window B > Upper ReferenceMust be a positive 16-bit integer.0 Set the upper comparison value.
    Input > Window Compare > Window Mode
      +
    • +Disabled
    • +
    • +Enabled
    • +
    +
    Disabled When disabled, ADC values will be compared only with the lower reference on each comparator. When enabled, both the lower and upper reference values will be used to create a comparison window.
    Input > Window Compare > Event Output
      +
    • +OR
    • +
    • +XOR
    • +
    • +AND
    • +
    +
    OR Select how comparison results should be composited for event output.
    Input > Channel Scan Mask
      +
    • +Channel 0
    • +
    • +Channel 1
    • +
    • +Channel 2
    • +
    • +Channel 3
    • +
    • +Channel 4
    • +
    • +Channel 5
    • +
    • +Channel 6
    • +
    • +Channel 7
    • +
    +
    In Normal mode of operation, this bitmask field specifies the channels that are enabled in that ADC unit. In group mode, this field specifies which channels belong to group A.
    Input > Group B Scan Mask
      +
    • +Channel 0
    • +
    • +Channel 1
    • +
    • +Channel 2
    • +
    • +Channel 3
    • +
    • +Channel 4
    • +
    • +Channel 5
    • +
    • +Channel 6
    • +
    • +Channel 7
    • +
    +
    In group mode, this field specifies which channels belong to group B.
    Input > Group C Scan Mask
      +
    • +Channel 0
    • +
    • +Channel 1
    • +
    • +Channel 2
    • +
    • +Channel 3
    • +
    • +Channel 4
    • +
    • +Channel 5
    • +
    • +Channel 6
    • +
    • +Channel 7
    • +
    +
    In group mode, this field specifies which channels belong to group C.
    Input > Addition/Averaging Mask (channel availability varies by MCU and unit)
      +
    • +Channel 0
    • +
    • +Channel 1
    • +
    • +Channel 2
    • +
    • +Channel 3
    • +
    • +Channel 4
    • +
    • +Channel 5
    • +
    • +Channel 6
    • +
    • +Channel 7
    • +
    +
    Select channels to include in the Addition/Averaging Mask
    Input > Add/Average Count
      +
    • +Disabled
    • +
    • +Add 2 samples
    • +
    • +Add 3 samples
    • +
    • +Add 4 samples
    • +
    • +Add 16 samples
    • +
    • +Average 2 samples
    • +
    • +Average 4 samples
    • +
    +
    Disabled Specifies if addition or averaging needs to be done for any of the channels in this unit.
    Input > Group Priority (Valid only in Group Scan Mode)
      +
    • +Group A ignored and does not interrupt Group B and Group C
    • +
    • +Group B and Group C restart at next trigger
    • +
    • +Group B and Group C restart immediately and scans from the head of the channel
    • +
    • +Group B and Group C restart immediately and scans
    • +
    • +Group B and Group C restart and scans continuously from the head of the channel
    • +
    • +Group B and Group C restart immediately and scans continuously from the head of the channel
    • +
    • +Group B and Group C restart immediately and scans continuously
    • +
    +
    Group A ignored and does not interrupt Group B and Group C Determines whether an ongoing group B scan can be interrupted by a group A trigger, whether it should abort on a group A trigger, or if it should pause to allow group A scan and restart immediately after group A scan is complete.
    Interrupts > CallbackName must be a valid C symbolNULL A user callback function. If this callback function is provided, it is called from the interrupt service routine (ISR) each time the ADC scan completes.
    Interrupts > Scan End Interrupt EnableMCU Specific OptionsEnable or disable Scan End interrupt.
    Interrupts > Scan End Interrupt PriorityValue must be an integer between 0 and 25512 Select scan end interrupt priority.
    Interrupts > Scan End Group B Interrupt EnableMCU Specific OptionsEnable or disable Scan End Group B interrupt.
    Interrupts > Scan End Group B Interrupt PriorityValue must be an integer between 0 and 25512 Select group B scan end interrupt priority.
    Interrupts > Scan End Group C Interrupt EnableMCU Specific OptionsEnable or disable Scan End Group C interrupt.
    Interrupts > Scan End Group C Interrupt PriorityValue must be an integer between 0 and 25512 Select group C scan end interrupt priority.
    Interrupts > Window Compare A Interrupt EnableMCU Specific OptionsEnable or disable Window Compare A interrupt.
    Interrupts > Window Compare A Interrupt PriorityValue must be an integer between 0 and 25512 Select group C scan end interrupt priority.
    Interrupts > Window Compare B Interrupt EnableMCU Specific OptionsEnable or disable Window Compare B interrupt.
    Interrupts > Window Compare B Interrupt PriorityValue must be an integer between 0 and 25512 Select group C scan end interrupt priority.
    ELC > Output Event Signal
      +
    • +Group A
    • +
    • +Group B
    • +
    • +Group A or B or C
    • +
    • +Group C
    • +
    +
    Group A A/D Event Link Control.
    +

    +

    +Clock Configuration

    +

    A/D conversion clock ADC_0_ADCLK is 50MHz, 40MHz, 20MHz, 10MHz or 5MHz.

    Note
    Though the GPT or ELC can be selected as an internal trigger generation module to start A/D conversion, set the ELC as a trigger module when ADC_m_PCLK (m = 0 to 2) = 40 MHz.
    +

    +Pin Configuration

    +

    The ANxxx pins are analog input channels that can be used with the ADC.

    +

    +Usage Notes

    +

    +ADC Operational Modes

    +

    The driver supports three operation modes: single-scan, continuous-scan, and group-scan modes. In each mode, analog channels are converted in ascending order of channel number, followed by scans of the voltage sensor if they are included in the mask of channels to scan.

    +

    Single-scan Mode

    +

    In single scan mode, one or more specified channels are scanned once per trigger.

    +

    Continuous-scan Mode

    +

    In continuous scan mode, a single trigger is required to start the scan. Scans continue until R_ADC_E_ScanStop() is called.

    +
    Note
    On RZ MPUs, the AD conversion sampling time is not long enough to meet the ADC interrupt processing time. Particularly in continuous scan mode, it is not possible to obtain the results of the ADC conversion at the time of each scan is complete, so it is advisable to configure the system considering that only the conversion results available at the time of the scan end callback can be retrieved. To maintain system responsiveness and effectiveness, avoiding high-frequency scan settings relative to core clocks is recommended to prevent excessive interrupts.
    +

    Group-scan Mode

    +

    Group-scan mode allows the application to allocate channels to one of two groups (A and B and C). Conversion begins when the specified ELC start trigger for that group is received.

    +

    The priority of group priority operations is group A > group B > group C. In group priority operation, if the scan start of group B is accepted during the scan of group C, the scan of group C is interrupted and the scan of group B is started. If the scan start of group A is accepted during the scan of group C, the scan of group A is started. The scan of Group C is interrupted and the scan of Group A is started. Similarly, if the scan start of Group A is accepted during the scan of Group B, the scan of Group B is interrupted and the scan of Group A is started.

    +

    Double-triggering

    +

    When double-triggering is enabled a single channel is selected to be scanned twice before an interrupt is thrown. The first scan result when using double-triggering is always saved to the selected channel's data register. The second result is saved to the data duplexing register (ADC_CHANNEL_DUPLEX).

    +

    Double-triggering uses Group A; only one channel can be selected when enabled. No other scanning is possible on Group A while double-trigger mode is selected.

    +

    When extended double-triggering is enabled both ADC input events are routed to Group A. The interrupt is still thrown after every two scans regardless of the triggering event(s). While the first and second scan are saved to the selected ADC data register and the ADC duplexing register as before, scans associated with event A and B are additionally copied into duplexing register A and B, respectively (ADC_CHANNEL_DUPLEX_A and ADC_CHANNEL_DUPLEX_B).

    +

    Usage Notes for ADC12

    +

    +Examples

    +

    Basic Example

    +

    This is a basic example of minimal use of the ADC in an application.

    +
    /* A channel configuration is generated by the FSP Configuration editor based on the options selected. If additional
    * configurations are desired additional adc_channel_cfg_t elements can be defined and passed to R_ADC_E_ScanCfg. */
    const adc_channel_cfg_t g_adc0_channel_cfg =
    {
    .scan_mask_group_b = 0,
    .priority_group_a = (adc_e_group_a_t) 0,
    .add_mask = 0,
    .sample_hold_mask = 0,
    .sample_hold_states = 0,
    };
    void adc_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_ADC_E_Open(&g_adc0_ctrl, &g_adc0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    /* Enable channels. */
    err = R_ADC_E_ScanCfg(&g_adc0_ctrl, &g_adc0_channel_cfg);
    handle_error(err);
    /* In software trigger mode, start a scan by calling R_ADC_E_ScanStart(). In other modes, enable external
    * triggers by calling R_ADC_E_ScanStart(). */
    (void) R_ADC_E_ScanStart(&g_adc0_ctrl);
    /* Wait for conversion to complete. */
    adc_status_t status;
    {
    (void) R_ADC_E_StatusGet(&g_adc0_ctrl, &status);
    }
    /* Read converted data. */
    uint16_t channel1_conversion_result;
    err = R_ADC_E_Read(&g_adc0_ctrl, ADC_CHANNEL_1, &channel1_conversion_result);
    handle_error(err);
    }

    Double-Trigger Example

    +

    This example demonstrates reading data from a double-trigger scan. A flag is used to wait for a callback event. Two scans must occur before the callback is called. These results are read via R_ADC_E_Read using the selected channel enum value as well as ADC_CHANNEL_DUPLEX.

    +
    volatile bool scan_complete_flag = false;
    void adc_e_callback (adc_callback_args_t * p_args)
    {
    scan_complete_flag = true;
    }
    void adc_e_double_trigger_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initialize the module. */
    err = R_ADC_E_Open(&g_adc0_ctrl, &g_adc0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    /* Enable double-trigger channel. */
    err = R_ADC_E_ScanCfg(&g_adc0_ctrl, &g_adc0_channel_cfg);
    handle_error(err);
    /* Enable scan triggering from ELC events. */
    (void) R_ADC_E_ScanStart(&g_adc0_ctrl);
    /* Wait for conversion to complete. Two scans must be triggered before a callback occurs. */
    scan_complete_flag = false;
    while (!scan_complete_flag)
    {
    /* Wait for callback to set flag. */
    }
    /* Read converted data from both scans. */
    uint16_t channel1_conversion_result_0;
    uint16_t channel1_conversion_result_1;
    err = R_ADC_E_Read(&g_adc0_ctrl, ADC_CHANNEL_1, &channel1_conversion_result_0);
    handle_error(err);
    err = R_ADC_E_Read(&g_adc0_ctrl, ADC_CHANNEL_DUPLEX, &channel1_conversion_result_1);
    handle_error(err);
    }

    Window Compare Example

    +

    This example shows how to configure the window compare function at runtime as well as how to handle events and obtain comparison results through a callback.

    +
    adc_e_window_cfg_t g_adc0_window_cfg =
    {
    /* Enable Window A and Window B; enable Window mode */
    (adc_e_compare_cfg_t) (ADC_E_COMPARE_CFG_A_ENABLE | ADC_E_COMPARE_CFG_B_ENABLE | ADC_E_COMPARE_CFG_WINDOW_ENABLE),
    /* Compare scan values from Channels 0 and 1 */
    /* Set Channel 1 condition to be inside the window instead of outside */
    .compare_mode_mask = ADC_E_MASK_CHANNEL_1,
    /* Set reference voltage levels for Window A */
    .compare_ref_low = ADC_SCAN_MAX / 3,
    .compare_ref_high = ADC_SCAN_MAX * 2 / 3,
    /* Configure Window B to compare Channel 2 (inside window) */
    .compare_b_channel = ADC_E_WINDOW_B_CHANNEL_2,
    .compare_b_mode = ADC_E_WINDOW_B_MODE_GREATER_THAN_OR_INSIDE,
    /* Set reference voltage levels for Window B */
    .compare_b_ref_low = ADC_SCAN_MAX / 4,
    .compare_b_ref_high = ADC_SCAN_MAX * 3 / 4,
    };
    void adc_e_window_callback (adc_callback_args_t * p_args)
    {
    {
    /* Get channel that met the comparison criteria */
    adc_channel_t channel = p_args->channel;
    /* Process event here */
    }
    else if (ADC_EVENT_WINDOW_COMPARE_B == p_args->event)
    {
    /* Process Window B events here */
    }
    else
    {
    /* ... */
    }
    }
    void adc_e_window_compare_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Open the ADC module */
    err = R_ADC_E_Open(&g_adc0_ctrl, &g_adc0_cfg);
    assert(FSP_SUCCESS == err);
    /* Set the window compare configuration in the channel config */
    g_adc0_channel_runtime_cfg.p_window_cfg = &g_adc0_window_cfg;
    /* The window compare function is configured as part of the scan configuration */
    err = R_ADC_E_ScanCfg(&g_adc0_ctrl, &g_adc0_channel_runtime_cfg);
    assert(FSP_SUCCESS == err);
    /* Main program loop - scan the ADC every second */
    while (1)
    {
    /* Start a scan */
    err = R_ADC_E_ScanStart(&g_adc0_ctrl);
    assert(FSP_SUCCESS == err);
    /* Delay; any compare events will be handled by the callback */
    }
    }
    + + + + + + + + + +

    +Data Structures

    struct  adc_e_extended_cfg_t
     
    struct  adc_e_window_cfg_t
     
    struct  adc_e_channel_cfg_t
     
    struct  adc_e_instance_ctrl_t
     
    + + + + + + + + + + + + + + + + + + + + + +

    +Enumerations

    enum  adc_e_mask_t
     
    enum  adc_e_add_t
     
    enum  adc_e_clear_t
     
    enum  adc_e_grpa_t
     
    enum  adc_e_active_trigger_t
     
    enum  adc_e_double_trigger_t
     
    enum  adc_e_compare_cfg_t
     
    enum  adc_e_window_b_channel_t
     
    enum  adc_e_window_b_mode_t
     
    enum  adc_e_elc_t
     
    +

    Data Structure Documentation

    + +

    ◆ adc_e_extended_cfg_t

    + +
    +
    + + + + +
    struct adc_e_extended_cfg_t
    +
    +

    Extended configuration structure for ADC.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +adc_e_add_t +add_average_count +Add or average samples.
    +adc_e_clear_t +clearing +Clear after read.
    +adc_trigger_t +trigger_group_b +Group B trigger source; valid only for group mode.
    +adc_e_double_trigger_t +double_trigger_mode +Double-trigger mode setting.
    +adc_e_active_trigger_t +adc_start_trigger_a +A/D Conversion Start Trigger Group A.
    +adc_e_active_trigger_t +adc_start_trigger_b +A/D Conversion Start Trigger Group B.
    +bool +adc_start_trigger_c_enabled +Set to true to enable Group C, false to disable Group C.
    +adc_e_active_trigger_t +adc_start_trigger_c +A/D Conversion Start Trigger Group C.
    +adc_e_elc_t +adc_elc_ctrl +A/D Event Link Control.
    +IRQn_Type +window_a_irq +IRQ number for Window Compare A interrupts.
    +IRQn_Type +window_b_irq +IRQ number for Window Compare B interrupts.
    +uint8_t +window_a_ipl +Priority for Window Compare A interrupts.
    +uint8_t +window_b_ipl +Priority for Window Compare B interrupts.
    + +
    +
    + +

    ◆ adc_e_window_cfg_t

    + +
    +
    + + + + +
    struct adc_e_window_cfg_t
    +
    +

    ADC Window Compare configuration

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +uint32_t +compare_mask +Channel mask to compare with Window A.
    +uint32_t +compare_mode_mask +Per-channel condition mask for Window A.
    +adc_e_compare_cfg_t +compare_cfg +Window Compare configuration.
    +uint16_t +compare_ref_low +Window A lower reference value.
    +uint16_t +compare_ref_high +Window A upper reference value.
    +uint16_t +compare_b_ref_low +Window B lower reference value.
    +uint16_t +compare_b_ref_high +Window A upper reference value.
    +adc_e_window_b_channel_t +compare_b_channel +Window B channel.
    +adc_e_window_b_mode_t +compare_b_mode +Window B condition setting.
    + +
    +
    + +

    ◆ adc_e_channel_cfg_t

    + +
    +
    + + + + +
    struct adc_e_channel_cfg_t
    +
    +

    ADC channel(s) configuration

    +
    + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +uint32_t +scan_mask +Channels/bits: bit 0 is ch0; bit 15 is ch15.
    +uint32_t +scan_mask_group_b +Valid for group modes.
    +uint32_t +scan_mask_group_c +Valid for group modes.
    +uint32_t +add_mask +Valid if add enabled in Open().
    +adc_e_window_cfg_t * +p_window_cfg +Pointer to Window Compare configuration.
    +adc_e_grpa_t +priority_group_a +Valid for group modes.
    + +
    +
    + +

    ◆ adc_e_instance_ctrl_t

    + +
    +
    + + + + +
    struct adc_e_instance_ctrl_t
    +
    +

    ADC instance control block. DO NOT INITIALIZE. Initialized in adc_api_t::open().

    +
    +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ adc_e_mask_t

    + +
    +
    + + + + +
    enum adc_e_mask_t
    +
    +

    For ADC Scan configuration adc_channel_cfg_t::scan_mask, adc_channel_cfg_t::scan_mask_group_b, adc_channel_cfg_t::add_mask and adc_channel_cfg_t::sample_hold_mask. Use bitwise OR to combine these masks for desired channels and sensors.

    + + + + + + + + + + +
    Enumerator
    ADC_E_MASK_OFF 

    No channels selected.

    +
    ADC_E_MASK_CHANNEL_0 

    Channel 0 mask.

    +
    ADC_E_MASK_CHANNEL_1 

    Channel 1 mask.

    +
    ADC_E_MASK_CHANNEL_2 

    Channel 2 mask.

    +
    ADC_E_MASK_CHANNEL_3 

    Channel 3 mask.

    +
    ADC_E_MASK_CHANNEL_4 

    Channel 4 mask.

    +
    ADC_E_MASK_CHANNEL_5 

    Channel 5 mask.

    +
    ADC_E_MASK_CHANNEL_6 

    Channel 6 mask.

    +
    ADC_E_MASK_CHANNEL_7 

    Channel 7 mask.

    +
    + +
    +
    + +

    ◆ adc_e_add_t

    + +
    +
    + + + + +
    enum adc_e_add_t
    +
    +

    ADC data sample addition and averaging options

    + + + + + + + + +
    Enumerator
    ADC_E_ADD_OFF 

    Addition turned off for channels/sensors.

    +
    ADC_E_ADD_TWO 

    Add two samples.

    +
    ADC_E_ADD_THREE 

    Add three samples.

    +
    ADC_E_ADD_FOUR 

    Add four samples.

    +
    ADC_E_ADD_SIXTEEN 

    Add sixteen samples.

    +
    ADC_E_ADD_AVERAGE_TWO 

    Average two samples.

    +
    ADC_E_ADD_AVERAGE_FOUR 

    Average four samples.

    +
    + +
    +
    + +

    ◆ adc_e_clear_t

    + +
    +
    + + + + +
    enum adc_e_clear_t
    +
    +

    ADC clear after read definitions

    + + + +
    Enumerator
    ADC_E_CLEAR_AFTER_READ_OFF 

    Clear after read off.

    +
    ADC_E_CLEAR_AFTER_READ_ON 

    Clear after read on.

    +
    + +
    +
    + +

    ◆ adc_e_grpa_t

    + +
    +
    + + + + +
    enum adc_e_grpa_t
    +
    +

    ADC action for group A interrupts group B scan. This enumeration is used to specify the priority between Group A and B in group mode.

    + + + + + + + + +
    Enumerator
    ADC_E_GRPA_PRIORITY_OFF 

    Group A ignored and does not interrupt Group B and Group C.

    +
    ADC_E_GRPA_GRPB_GRPC_WAIT_TRIG 

    Group B and Group C restart at next trigger.

    +
    ADC_E_GRPA_GRPB_GRPC_TOP_RESTART_SCAN 

    Group B and Group C restart immediately and scans from the head of the channel.

    +
    ADC_E_GRPA_GRPB_GRPC_RESTART_SCAN 

    Group B and Group C restart immediately and scans.

    +
    ADC_E_GRPA_GRPB_GRPC_TOP_CONT_SCAN 

    Group B and Group C restart and scans continuously from the head of the channel.

    +
    ADC_E_GRPA_GRPB_GRPC_RESTART_TOP_CONT_SCAN 

    Group B and Group C restart immediately and scans continuously from the head of the channel.

    +
    ADC_E_GRPA_GRPB_GRPC_RESTART_CONT_SCAN 

    Group B and Group C restart immediately and scans continuously.

    +
    + +
    +
    + +

    ◆ adc_e_active_trigger_t

    + +
    +
    + + + + +
    enum adc_e_active_trigger_t
    +
    +

    Defines the registers settings for the ADC trigger.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Enumerator
    ADC_E_ACTIVE_TRIGGER_EXTERNAL 

    Input pin for the trigger.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA0N 

    Compare match with GPT00.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB0N 

    Compare match with GPT00.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA1N 

    Compare match with GPT01.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB1N 

    Compare match with GPT01.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA2N 

    Compare match with GPT02.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB2N 

    Compare match with GPT02.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA3N 

    Compare match with GPT03.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB3N 

    Compare match with GPT03.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA4N 

    Compare match with GPT04.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB4N 

    Compare match with GPT04.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA5N 

    Compare match with GPT05.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB5N 

    Compare match with GPT05.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA6N 

    Compare match with GPT06.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB6N 

    Compare match with GPT06.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA7N 

    Compare match with GPT07.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB7N 

    Compare match with GPT07.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA8N 

    Compare match with GPT08.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB8N 

    Compare match with GPT08.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA9N 

    Compare match with GPT09.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB9N 

    Compare match with GPT09.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA10N 

    Compare match with GPT10.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB10N 

    Compare match with GPT10.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA11N 

    Compare match with GPT11.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB11N 

    Compare match with GPT11.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA12N 

    Compare match with GPT12.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB12N 

    Compare match with GPT12.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA13N 

    Compare match with GPT13.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB13N 

    Compare match with GPT13.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA14N 

    Compare match with GPT14.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB14N 

    Compare match with GPT14.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA15N 

    Compare match with GPT15.GTADTRA.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRB15N 

    Compare match with GPT15.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA0N_B0N 

    Compare match with GPT00.GTADTRA or Compare match with GPT00.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA1N_B1N 

    Compare match with GPT01.GTADTRA or Compare match with GPT01.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA2N_B2N 

    Compare match with GPT02.GTADTRA or Compare match with GPT02.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA3N_B3N 

    Compare match with GPT03.GTADTRA or Compare match with GPT03.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA4N_B4N 

    Compare match with GPT04.GTADTRA or Compare match with GPT04.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA5N_B5N 

    Compare match with GPT05.GTADTRA or Compare match with GPT05.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA6N_B6N 

    Compare match with GPT06.GTADTRA or Compare match with GPT06.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA7N_B7N 

    Compare match with GPT07.GTADTRA or Compare match with GPT07.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA8N_B8N 

    Compare match with GPT08.GTADTRA or Compare match with GPT08.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA9N_B9N 

    Compare match with GPT09.GTADTRA or Compare match with GPT09.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA10N_B10N 

    Compare match with GPT10.GTADTRA or Compare match with GPT10.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA11N_B11N 

    Compare match with GPT11.GTADTRA or Compare match with GPT11.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA12N_B12N 

    Compare match with GPT12.GTADTRA or Compare match with GPT12.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA13N_B13N 

    Compare match with GPT13.GTADTRA or Compare match with GPT13.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA14N_B14N 

    Compare match with GPT14.GTADTRA or Compare match with GPT14.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_GTADTRA15N_B15N 

    Compare match with GPT15.GTADTRA or Compare match with GPT15.GTADTRB.

    +
    ADC_E_ACTIVE_TRIGGER_ELCTRG0 

    ELC trigger.

    +
    ADC_E_ACTIVE_TRIGGER_DISABLED 

    Trigger source de-selection state.

    +
    + +
    +
    + +

    ◆ adc_e_double_trigger_t

    + +
    +
    + + + + +
    enum adc_e_double_trigger_t
    +
    +

    ADC double-trigger mode definitions

    + + + + +
    Enumerator
    ADC_E_DOUBLE_TRIGGER_DISABLED 

    Double-triggering disabled.

    +
    ADC_E_DOUBLE_TRIGGER_ENABLED 

    Double-triggering enabled.

    +
    ADC_E_DOUBLE_TRIGGER_ENABLED_EXTENDED 

    Double-triggering enabled on both ADC ELC events.

    +
    + +
    +
    + +

    ◆ adc_e_compare_cfg_t

    + +
    +
    + + + + +
    enum adc_e_compare_cfg_t
    +
    +

    ADC comparison settings

    + +
    +
    + +

    ◆ adc_e_window_b_channel_t

    + +
    +
    + + + + +
    enum adc_e_window_b_channel_t
    +
    +

    ADC Window B channel

    + +
    +
    + +

    ◆ adc_e_window_b_mode_t

    + +
    +
    + + + + +
    enum adc_e_window_b_mode_t
    +
    +

    ADC Window B comparison mode

    + +
    +
    + +

    ◆ adc_e_elc_t

    + +
    +
    + + + + +
    enum adc_e_elc_t
    +
    +

    AD event link control definitions.

    + + + + + +
    Enumerator
    ADC_E_ELC_GROUP_A_SCAN 

    At the end of a group_a scan GCELC = 0b, ELCC[1:0] = 00b.

    +
    ADC_E_ELC_GROUP_B_SCAN 

    At the end of a group_b scan GCELC = 0b, ELCC[1:0] = 01b.

    +
    ADC_E_ELC_GROUP_A_B_C_SCAN 

    At the end of a group_abc scan GCELC = 0b, ELCC[1:0] = 1xb.

    +
    ADC_E_ELC_GROUP_C_SCAN 

    At the end of a group_c scan GCELC = 1b, ELCC[1:0] = 00b.

    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_ADC_E_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_E_Open (adc_ctrl_tp_ctrl,
    adc_cfg_t const *const p_cfg 
    )
    +
    +

    Sets the operational mode, trigger sources, interrupt priority, and configurations for the peripheral as a whole. If interrupt is enabled, the function registers a callback function pointer for notifying the user whenever a scan has completed.

    +
    Return values
    + + + + + + + +
    FSP_SUCCESSModule is ready for use.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_ALREADY_OPENThe instance control structure has already been opened.
    FSP_ERR_IRQ_BSP_DISABLEDA callback is provided, but the interrupt is not enabled.
    FSP_ERR_IP_CHANNEL_NOT_PRESENTThe requested unit does not exist on this MCU.
    FSP_ERR_INVALID_HW_CONDITIONThe ADC clock must be at least 1 MHz
    +
    +
    + +
    +
    + +

    ◆ R_ADC_E_ScanCfg()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_E_ScanCfg (adc_ctrl_tp_ctrl,
    void const *const p_channel_cfg 
    )
    +
    +

    Configures the ADC scan parameters. Channel specific settings are set in this function. Pass a pointer to adc_e_channel_cfg_t to p_channel_cfg.

    +
    Return values
    + + + + +
    FSP_SUCCESSChannel specific settings applied.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_E_InfoGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_E_InfoGet (adc_ctrl_tp_ctrl,
    adc_info_tp_adc_info 
    )
    +
    +

    Returns the address of the lowest number configured channel and the total number of bytes to be read in order to read the results of the configured channels. If no channels are configured, then a length of 0 is returned.

    +
    Note
    In group mode, information is returned for group A only. Calculating information for group B is not currently supported.
    +
    Return values
    + + + + +
    FSP_SUCCESSInformation stored in p_adc_info.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_E_ScanStart()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_ADC_E_ScanStart (adc_ctrl_tp_ctrl)
    +
    +

    Starts a software scan or enables the hardware trigger for a scan depending on how the triggers were configured in the R_ADC_E_Open call. If the unit was configured for ELC or external hardware triggering, then this function allows the trigger signal to get to the ADC unit. The function is not able to control the generation of the trigger itself. If the unit was configured for software triggering, then this function starts the software triggered scan.

    +
    Precondition
    Call R_ADC_E_ScanCfg after R_ADC_E_Open before starting a scan.
    +
    Return values
    + + + + + + +
    FSP_SUCCESSScan started (software trigger) or hardware triggers enabled.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENADC_E is not open.
    FSP_ERR_NOT_INITIALIZEDADC_E is not initialized.
    FSP_ERR_IN_USEAnother scan is still in progress (software trigger).
    +
    +
    + +
    +
    + +

    ◆ R_ADC_E_ScanGroupStart()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_E_ScanGroupStart (adc_ctrl_tp_ctrl,
    adc_group_mask_t group_id 
    )
    +
    +

    adc_api_t::scanStart is not supported on the ADCH. Use scanStart instead.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDFunction not supported in this implementation.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_E_ScanStop()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_ADC_E_ScanStop (adc_ctrl_tp_ctrl)
    +
    +

    Stops the software scan or disables the unit from being triggered by the hardware trigger (ELC or external) based on what type of trigger the unit was configured for in the R_ADC_E_Open function. Stopping a hardware triggered scan via this function does not abort an ongoing scan, but prevents the next scan from occurring. Stopping a software triggered scan aborts an ongoing scan.

    +
    Return values
    + + + + + +
    FSP_SUCCESSScan stopped (software trigger) or hardware triggers disabled.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    FSP_ERR_NOT_INITIALIZEDUnit is not initialized.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_E_StatusGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_E_StatusGet (adc_ctrl_tp_ctrl,
    adc_status_tp_status 
    )
    +
    +

    Provides the status of any scan process that was started, including scans started by ELC or external triggers.

    +
    Return values
    + + + + +
    FSP_SUCCESSModule status stored in the provided pointer p_status
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_E_Read()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_E_Read (adc_ctrl_tp_ctrl,
    adc_channel_t const reg_id,
    uint16_t *const p_data 
    )
    +
    +

    Reads conversion results from a single channel or sensor.

    +
    Return values
    + + + + + +
    FSP_SUCCESSData read into provided p_data.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    FSP_ERR_NOT_INITIALIZEDUnit is not initialized.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_E_Read32()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_E_Read32 (adc_ctrl_tp_ctrl,
    adc_channel_t const reg_id,
    uint32_t *const p_data 
    )
    +
    +

    Reads conversion results from a single channel or sensor register into a 32-bit result.

    +
    Return values
    + + + + + +
    FSP_SUCCESSData read into provided p_data.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    FSP_ERR_NOT_INITIALIZEDUnit is not initialized.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_E_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_ADC_E_Close (adc_ctrl_tp_ctrl)
    +
    +

    This function ends any scan in progress, disables interrupts, and removes power to the A/D peripheral.

    +
    Return values
    + + + + +
    FSP_SUCCESSModule closed.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_E_OffsetSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_E_OffsetSet (adc_ctrl_t *const p_ctrl,
    adc_channel_t const reg_id,
    int32_t offset 
    )
    +
    +

    adc_api_t::offsetSet is not supported on the ADC.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDFunction not supported in this implementation.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_E_Calibrate()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_E_Calibrate (adc_ctrl_t *const p_ctrl,
    void const * p_extend 
    )
    +
    +

    adc_api_t::calibrate is not supported on the ADC.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDFunction not supported in this implementation.
    +
    +
    + +
    +
    + +

    ◆ R_ADC_E_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ADC_E_CallbackSet (adc_ctrl_t *const p_api_ctrl,
    void(*)(adc_callback_args_t *) p_callback,
    void const *const p_context,
    adc_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback and has option of providing memory for callback structure. Implements adc_api_t::callbackSet

    +
    Return values
    + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___a_d_c___e.js b/group___a_d_c___e.js new file mode 100644 index 0000000..9c0d9d4 --- /dev/null +++ b/group___a_d_c___e.js @@ -0,0 +1,151 @@ +var group___a_d_c___e = +[ + [ "adc_e_extended_cfg_t", "group___a_d_c___e.html#structadc__e__extended__cfg__t", [ + [ "add_average_count", "group___a_d_c___e.html#a4736acec261319aba40517a3be0c5182", null ], + [ "clearing", "group___a_d_c___e.html#aec17abb4a74dbf2f86694f27b5b96cd9", null ], + [ "trigger_group_b", "group___a_d_c___e.html#aef801f1c817a80fe191ccaf67f425ebe", null ], + [ "double_trigger_mode", "group___a_d_c___e.html#a9fb46ca6ae270967f11502395de49e07", null ], + [ "adc_start_trigger_a", "group___a_d_c___e.html#a642af1b42820cb4369fe31638fda33ce", null ], + [ "adc_start_trigger_b", "group___a_d_c___e.html#a84260f8c568691040fbb5c0a31e3b1f3", null ], + [ "adc_start_trigger_c_enabled", "group___a_d_c___e.html#a85b7d0f9f9a95aeaaca2550b57dbf352", null ], + [ "adc_start_trigger_c", "group___a_d_c___e.html#a3b26e887178253580e298519f7f520e9", null ], + [ "adc_elc_ctrl", "group___a_d_c___e.html#a2001b0e3ee79d759d058d8ed20435133", null ], + [ "window_a_irq", "group___a_d_c___e.html#a1dc98d81c9cfb1b1eb10db8ef7c638fe", null ], + [ "window_b_irq", "group___a_d_c___e.html#a0b20ef241f551191d580f929c32c8c7a", null ], + [ "window_a_ipl", "group___a_d_c___e.html#a51c9f7b4d98b8fe863268a2af3da0d59", null ], + [ "window_b_ipl", "group___a_d_c___e.html#a3c4857e589eda67d890287c4cbf8cbe6", null ] + ] ], + [ "adc_e_window_cfg_t", "group___a_d_c___e.html#structadc__e__window__cfg__t", [ + [ "compare_mask", "group___a_d_c___e.html#ad1de0a6834ea185e7db99c38886c4fc6", null ], + [ "compare_mode_mask", "group___a_d_c___e.html#a4356be4b57def3aafa8b6fe95866dd1d", null ], + [ "compare_cfg", "group___a_d_c___e.html#a25be89b9a53299121d6cc6e6c1572a01", null ], + [ "compare_ref_low", "group___a_d_c___e.html#a97b0e510305931084fd702330874f861", null ], + [ "compare_ref_high", "group___a_d_c___e.html#af918f90028f93af577340c7310bb17b1", null ], + [ "compare_b_ref_low", "group___a_d_c___e.html#ae8ee1fc70ecc64d4dafcc3498e0c5458", null ], + [ "compare_b_ref_high", "group___a_d_c___e.html#a042144a8278f131dc71decdf379d953f", null ], + [ "compare_b_channel", "group___a_d_c___e.html#aa55fa691b0ddcda47c101f93e1ef7a91", null ], + [ "compare_b_mode", "group___a_d_c___e.html#aa3bddc5993e3dda400ba4204565e30c9", null ] + ] ], + [ "adc_e_channel_cfg_t", "group___a_d_c___e.html#structadc__e__channel__cfg__t", [ + [ "scan_mask", "group___a_d_c___e.html#af8597107fafe5604cb585525909755e3", null ], + [ "scan_mask_group_b", "group___a_d_c___e.html#a511e34c7b68581d758834dbb70202595", null ], + [ "scan_mask_group_c", "group___a_d_c___e.html#aefe48cc53f1703d427fbef6177a008b9", null ], + [ "add_mask", "group___a_d_c___e.html#a7f0c336facf23a64f292eda3c287b402", null ], + [ "p_window_cfg", "group___a_d_c___e.html#a2e6ad852231e189d342c3845fe03562a", null ], + [ "priority_group_a", "group___a_d_c___e.html#a88a1a95d7b36e46463b0efdfc37620e3", null ] + ] ], + [ "adc_e_instance_ctrl_t", "group___a_d_c___e.html#structadc__e__instance__ctrl__t", null ], + [ "adc_e_mask_t", "group___a_d_c___e.html#ga04662c7da4042227d066baa5b109090b", [ + [ "ADC_E_MASK_OFF", "group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090bab138f4d7f28ddb62f69104fcf4f0c0cc", null ], + [ "ADC_E_MASK_CHANNEL_0", "group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090baecaf6f7008e94a40b5a5c3f1f3961392", null ], + [ "ADC_E_MASK_CHANNEL_1", "group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba2b9c1663e5009446b538d2eb5e9f02e3", null ], + [ "ADC_E_MASK_CHANNEL_2", "group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090baad56d2d61a689b0d664177fa6e024b7a", null ], + [ "ADC_E_MASK_CHANNEL_3", "group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba8c387adca9c3324765fda24f66b46aa1", null ], + [ "ADC_E_MASK_CHANNEL_4", "group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090baaa6c0c0b4952290fdb21abca0a006076", null ], + [ "ADC_E_MASK_CHANNEL_5", "group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090bafb09eb3f26f0227861ef0d5c7c82a2e7", null ], + [ "ADC_E_MASK_CHANNEL_6", "group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba9d92286744ee3853f98595513297c3c1", null ], + [ "ADC_E_MASK_CHANNEL_7", "group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba9ac287179e8ac16a2a512f6532172940", null ] + ] ], + [ "adc_e_add_t", "group___a_d_c___e.html#gab0e11d4b95e596d916dc4eb65e22d4d3", [ + [ "ADC_E_ADD_OFF", "group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3ab352925f95e9869bd239f31df58168b2", null ], + [ "ADC_E_ADD_TWO", "group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3ad2dd39b24e9646d5807104257b69cc3d", null ], + [ "ADC_E_ADD_THREE", "group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a27eeeb12c5a0d9a0b1009520131be315", null ], + [ "ADC_E_ADD_FOUR", "group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a4036c2cdaa57bf8599e36eb21d0a78a1", null ], + [ "ADC_E_ADD_SIXTEEN", "group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a8f16edf862670199e9a68347ece4840c", null ], + [ "ADC_E_ADD_AVERAGE_TWO", "group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3adf05c281263ac034b85ee28759a22b09", null ], + [ "ADC_E_ADD_AVERAGE_FOUR", "group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a44670148ec252d460b93341446298d65", null ] + ] ], + [ "adc_e_clear_t", "group___a_d_c___e.html#ga422cf88cc9da3ba156d8714d12ab76ce", [ + [ "ADC_E_CLEAR_AFTER_READ_OFF", "group___a_d_c___e.html#gga422cf88cc9da3ba156d8714d12ab76cea669d6e0019644b0499020a2cc9cbb6f6", null ], + [ "ADC_E_CLEAR_AFTER_READ_ON", "group___a_d_c___e.html#gga422cf88cc9da3ba156d8714d12ab76ceab705431542744d64ac830f66defa61d0", null ] + ] ], + [ "adc_e_grpa_t", "group___a_d_c___e.html#gaecc60f4098d74dddf3a8e98aa65e43af", [ + [ "ADC_E_GRPA_PRIORITY_OFF", "group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa4bc3e3609dc57526346083b466e065ee", null ], + [ "ADC_E_GRPA_GRPB_GRPC_WAIT_TRIG", "group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa94e2ddc531f07eb9c834a363f903b31e", null ], + [ "ADC_E_GRPA_GRPB_GRPC_TOP_RESTART_SCAN", "group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afaf26242454336838e0df3880b319ab436", null ], + [ "ADC_E_GRPA_GRPB_GRPC_RESTART_SCAN", "group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afac9d1cff44911bca45ae969e50ab63ff8", null ], + [ "ADC_E_GRPA_GRPB_GRPC_TOP_CONT_SCAN", "group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa2b861d5fc5c79f234750c1ccd015dd82", null ], + [ "ADC_E_GRPA_GRPB_GRPC_RESTART_TOP_CONT_SCAN", "group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa27bb19af29f2a9b6790f28d4749f0658", null ], + [ "ADC_E_GRPA_GRPB_GRPC_RESTART_CONT_SCAN", "group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afac49f6eae45a6a5db0bce4b0a53b0a5ab", null ] + ] ], + [ "adc_e_active_trigger_t", "group___a_d_c___e.html#gae49c0a7e6cc3e0a75850e2529e2f557f", [ + [ "ADC_E_ACTIVE_TRIGGER_EXTERNAL", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6a63b6c2445f9c3f512a74456c0c5f44", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA0N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa4c426f6a8605e9e919fbb77e0b01920e", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB0N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa448af995c6515a9a4e86f04c46e8ada7", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA1N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9902642a17e4068b11f05666619ace88", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB1N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fafb7c42eaa57827783bb2eef236f31c00", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA2N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa695ee73260f9b9f31d86d6ac565720d", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB2N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faae2c129cfe845f45768c8e2021d14343", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA3N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fabd1c0ab8049d40a082f9d6cc460eae9d", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB3N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa574e696333924728cae8e361f78f29f", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA4N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fab97a0c9ee7c73c5e134a0e51411929a3", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB4N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa293d75611b1da95391d9b6af22cd68b0", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA5N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fac5a7fe7f78684f5e2e58c7c1c6ef73c3", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB5N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faff0811af228d90a5fe900fa96028078e", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA6N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa5a16fcb8681d0cf1e741a9b307e88847", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB6N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa53fb29d181177973f0f9faa327a0424", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA7N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa378bf8e67b6b93ec9880b0dda5a49cf1", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB7N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9a63067d741002399d546646cf9ea13d", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA8N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faf8d4132591c78893ad583429c32ac4e8", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB8N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa5df525e46011f8befd1d42b25775206e", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA9N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6f493cf9c678ef4a1d368bb63bc6f2e0", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB9N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9b6442c9b1add0999304ae38d9dbf368", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA10N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faaca5902231d50599b6034a6ff45a5143", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB10N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faae587f46b153bbf2e99864de3797cdef", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA11N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9f1b97c0b0b5f733c16aac91cd6a1a5d", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB11N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa2c4758623e3a2aad4209c63491ca898", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA12N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa31fdff2f29081b257445d6ba6d2a74e6", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB12N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9eff0146776bc2fd811f148a504234da", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA13N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa3bceacf3e88dccada7241e842a82665d", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB13N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fab20a730f226f3e7fbcf6921adf5bb5bc", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA14N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa727a862780e0fef71d313c712d46ed94", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB14N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faf889da8954112cedca0f84bbb5a603c9", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA15N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa8e90c5409cf4bccaf56eb5694907e35f", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRB15N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6163627f725cdbfdad6ebcc2e6b31846", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA0N_B0N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa8096ea25dd100d856524b905fc388603", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA1N_B1N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa215583c964e85bacdc90056b67ab9589", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA2N_B2N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fac1ce41a1b9c81fd268303ceae19f1b33", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA3N_B3N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa106f24545d7f52d7e2e0ec800848bf56", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA4N_B4N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fad04c5806b31c04576c04c05466ecb7fd", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA5N_B5N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa2fb982d751259b10f0d892e87cf34a94", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA6N_B6N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fabbbd1ff618da6a0f205ac2b1e63e64b5", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA7N_B7N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa28c50276ed742ce0db678377e18687e5", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA8N_B8N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa5e524a4c78dec3eff0b12583fa1079ea", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA9N_B9N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fad91a9db8f7c795e2d11b825125758495", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA10N_B10N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fac4ad89f15ce5582effbff589f28dd335", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA11N_B11N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa374edc9decb2c4cddcf99deca385a67c", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA12N_B12N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa09082c6edf97f871bc12b2b61c718f6", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA13N_B13N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6ec9fbdf997ccc7090fbbfdd85e2b3da", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA14N_B14N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faf121c0c74e2ab94d451fbff265037e16", null ], + [ "ADC_E_ACTIVE_TRIGGER_GTADTRA15N_B15N", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa790de35506dc40dd6e2395b561d33c38", null ], + [ "ADC_E_ACTIVE_TRIGGER_ELCTRG0", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa28e3a1a968ca839641207e0eaac50ad2", null ], + [ "ADC_E_ACTIVE_TRIGGER_DISABLED", "group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa2b4b59316fb8fefb58e73185e11e8d63", null ] + ] ], + [ "adc_e_double_trigger_t", "group___a_d_c___e.html#gac0b5736dc0689efc4adc399542f3071c", [ + [ "ADC_E_DOUBLE_TRIGGER_DISABLED", "group___a_d_c___e.html#ggac0b5736dc0689efc4adc399542f3071ca865382fe418d7ab432b18c196f7ae8f1", null ], + [ "ADC_E_DOUBLE_TRIGGER_ENABLED", "group___a_d_c___e.html#ggac0b5736dc0689efc4adc399542f3071caa05d4613945e60b38cd50a7ab720c2fc", null ], + [ "ADC_E_DOUBLE_TRIGGER_ENABLED_EXTENDED", "group___a_d_c___e.html#ggac0b5736dc0689efc4adc399542f3071cad3f6769a1a87595c24fe45ca41394de2", null ] + ] ], + [ "adc_e_compare_cfg_t", "group___a_d_c___e.html#ga4134f7cacd8b7ef6961cf6016097fb8b", null ], + [ "adc_e_window_b_channel_t", "group___a_d_c___e.html#ga48312e85efd2f501384dd2df0b8f0288", null ], + [ "adc_e_window_b_mode_t", "group___a_d_c___e.html#ga647576a53ba70232efbd36994a8cd98c", null ], + [ "adc_e_elc_t", "group___a_d_c___e.html#gaa7e9c8ba1296fac868aa6decfa2225b4", [ + [ "ADC_E_ELC_GROUP_A_SCAN", "group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4a189d0a824d5db27f10917dbe522a78b7", null ], + [ "ADC_E_ELC_GROUP_B_SCAN", "group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4a4e40d19905cc52d4ee598eae53ab2fe6", null ], + [ "ADC_E_ELC_GROUP_A_B_C_SCAN", "group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4aad16e88624cce006078aaec2f455fc4e", null ], + [ "ADC_E_ELC_GROUP_C_SCAN", "group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4a1c4f07380c5b0a7df77e5d1f5f59845b", null ] + ] ], + [ "R_ADC_E_Open", "group___a_d_c___e.html#ga1f1da31e1c595123236987ef670a2cbc", null ], + [ "R_ADC_E_ScanCfg", "group___a_d_c___e.html#ga30f9dd58525ca2a59080a79222fbaf28", null ], + [ "R_ADC_E_InfoGet", "group___a_d_c___e.html#gabaf26ddcab6a7151b670a3b62f1e87fa", null ], + [ "R_ADC_E_ScanStart", "group___a_d_c___e.html#ga646be994090e719609305eaa76b1df52", null ], + [ "R_ADC_E_ScanGroupStart", "group___a_d_c___e.html#gacf047cf112ab4235c12408eedb1328dc", null ], + [ "R_ADC_E_ScanStop", "group___a_d_c___e.html#gaea1afc188601253968598bb4b19a682a", null ], + [ "R_ADC_E_StatusGet", "group___a_d_c___e.html#ga722dc99ac11774e87c083e66fce79127", null ], + [ "R_ADC_E_Read", "group___a_d_c___e.html#ga1768d1f5986545eb95ab8273559eaee5", null ], + [ "R_ADC_E_Read32", "group___a_d_c___e.html#ga0384d4b99b0e7b5dfb5d0ddf8ed6be83", null ], + [ "R_ADC_E_Close", "group___a_d_c___e.html#ga1e0b524d58f582130181a3772222886a", null ], + [ "R_ADC_E_OffsetSet", "group___a_d_c___e.html#ga70abfa718ea4f6fd5d14acbaf8730cbf", null ], + [ "R_ADC_E_Calibrate", "group___a_d_c___e.html#ga60b7cc39514b62e1b0ea3eabaa7c27de", null ], + [ "R_ADC_E_CallbackSet", "group___a_d_c___e.html#gaab99f6d8921a70ed3609a0d3ddabd09a", null ] +]; \ No newline at end of file diff --git a/group___b_s_p___i_o.html b/group___b_s_p___i_o.html index f9940b8..43a0cd4 100644 --- a/group___b_s_p___i_o.html +++ b/group___b_s_p___i_o.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: BSP I/O access +RZV Flexible Software Package Documentation: BSP I/O access @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Functions | @@ -108,6 +176,26 @@   __STATIC_INLINE void R_BSP_PinAccessDisable (void)   +__STATIC_INLINE void R_BSP_OENAccessEnable (void) +  +__STATIC_INLINE void R_BSP_OENAccessDisable (void) +  +__STATIC_INLINE void R_BSP_EthernetModeCfg (bsp_ethernet_channel_t channel, bsp_ethernet_mode_t mode) +  +__STATIC_INLINE void R_BSP_SDVoltageModeCfg (bsp_sd_channel_t channel, bsp_sd_voltage_t voltage) +  +__STATIC_INLINE void R_BSP_QSPIVoltageModeCfg (bsp_qspi_voltage_t voltage) +  +__STATIC_INLINE void R_BSP_XSPIVoltageModeCfg (bsp_xspi_voltage_t voltage) +  +__STATIC_INLINE void R_BSP_EthernetVoltageModeCfg (bsp_ethernet_channel_t channel, bsp_ethernet_voltage_t voltage) +  +__STATIC_INLINE void R_BSP_I3CControlCfg (bsp_i3c_voltage_t voltage, bsp_i3c_mode_t mode) +  +__STATIC_INLINE void R_BSP_BypassModeCfg (bsp_bypass_oscillator_t oscillator, bsp_bypass_mode_t mode, bsp_bypass_freq_range_t freq_range) +  +__STATIC_INLINE void R_BSP_XSPIOutputEnableCfg (void) + 

    Detailed Description

    This module provides basic read/write access to port pins.

    @@ -122,6 +210,30 @@   enum  bsp_io_port_pin_t   +enum  bsp_sd_channel_t +  +enum  bsp_ethernet_channel_t +  +enum  bsp_sd_voltage_t +  +enum  bsp_qspi_voltage_t +  +enum  bsp_xspi_voltage_t +  +enum  bsp_ethernet_voltage_t +  +enum  bsp_i3c_voltage_t +  +enum  bsp_ethernet_mode_t +  +enum  bsp_i3c_mode_t +  +enum  bsp_bypass_oscillator_t +  +enum  bsp_bypass_mode_t +  +enum  bsp_bypass_freq_range_t

    Enumeration Type Documentation

    @@ -183,103 +295,103 @@

    Superset list of all possible IO ports.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Enumerator
    BSP_IO_PORT_00 

    IO port 0.

    +
    Enumerator
    BSP_IO_PORT_00 

    IO port 0.

    BSP_IO_PORT_01 

    IO port 1.

    +
    BSP_IO_PORT_01 

    IO port 1.

    BSP_IO_PORT_02 

    IO port 2.

    +
    BSP_IO_PORT_02 

    IO port 2.

    BSP_IO_PORT_03 

    IO port 3.

    +
    BSP_IO_PORT_03 

    IO port 3.

    BSP_IO_PORT_04 

    IO port 4.

    +
    BSP_IO_PORT_04 

    IO port 4.

    BSP_IO_PORT_05 

    IO port 5.

    +
    BSP_IO_PORT_05 

    IO port 5.

    BSP_IO_PORT_06 

    IO port 6.

    +
    BSP_IO_PORT_06 

    IO port 6.

    BSP_IO_PORT_07 

    IO port 7.

    +
    BSP_IO_PORT_07 

    IO port 7.

    BSP_IO_PORT_08 

    IO port 8.

    +
    BSP_IO_PORT_08 

    IO port 8.

    BSP_IO_PORT_09 

    IO port 9.

    +
    BSP_IO_PORT_09 

    IO port 9.

    BSP_IO_PORT_10 

    IO port 10.

    +
    BSP_IO_PORT_10 

    IO port 10.

    BSP_IO_PORT_11 

    IO port 11.

    +
    BSP_IO_PORT_11 

    IO port 11.

    BSP_IO_PORT_12 

    IO port 12.

    +
    BSP_IO_PORT_12 

    IO port 12.

    BSP_IO_PORT_13 

    IO port 13.

    +
    BSP_IO_PORT_13 

    IO port 13.

    BSP_IO_PORT_14 

    IO port 14.

    +
    BSP_IO_PORT_14 

    IO port 14.

    BSP_IO_PORT_15 

    IO port 15.

    +
    BSP_IO_PORT_15 

    IO port 15.

    BSP_IO_PORT_16 

    IO port 16.

    +
    BSP_IO_PORT_16 

    IO port 16.

    BSP_IO_PORT_17 

    IO port 17.

    +
    BSP_IO_PORT_17 

    IO port 17.

    BSP_IO_PORT_18 

    IO port 18.

    +
    BSP_IO_PORT_18 

    IO port 18.

    BSP_IO_PORT_19 

    IO port 19.

    +
    BSP_IO_PORT_19 

    IO port 19.

    BSP_IO_PORT_20 

    IO port 20.

    +
    BSP_IO_PORT_20 

    IO port 20.

    BSP_IO_PORT_21 

    IO port 21.

    +
    BSP_IO_PORT_21 

    IO port 21.

    BSP_IO_PORT_22 

    IO port 22.

    +
    BSP_IO_PORT_22 

    IO port 22.

    BSP_IO_PORT_23 

    IO port 23.

    +
    BSP_IO_PORT_23 

    IO port 23.

    BSP_IO_PORT_24 

    IO port 24.

    +
    BSP_IO_PORT_24 

    IO port 24.

    BSP_IO_PORT_25 

    IO port 25.

    +
    BSP_IO_PORT_25 

    IO port 25.

    BSP_IO_PORT_26 

    IO port 26.

    +
    BSP_IO_PORT_26 

    IO port 26.

    BSP_IO_PORT_27 

    IO port 27.

    +
    BSP_IO_PORT_27 

    IO port 27.

    BSP_IO_PORT_28 

    IO port 28.

    +
    BSP_IO_PORT_28 

    IO port 28.

    BSP_IO_PORT_29 

    IO port 29.

    +
    BSP_IO_PORT_29 

    IO port 29.

    BSP_IO_PORT_30 

    IO port 30.

    +
    BSP_IO_PORT_30 

    IO port 30.

    BSP_IO_PORT_31 

    IO port 31.

    +
    BSP_IO_PORT_31 

    IO port 31.

    BSP_IO_PORT_32 

    IO port 32.

    +
    BSP_IO_PORT_32 

    IO port 32.

    BSP_IO_PORT_33 

    IO port 33.

    +
    BSP_IO_PORT_33 

    IO port 33.

    BSP_IO_PORT_34 

    IO port 34.

    +
    BSP_IO_PORT_34 

    IO port 34.

    BSP_IO_PORT_35 

    IO port 35.

    +
    BSP_IO_PORT_35 

    IO port 35.

    BSP_IO_PORT_36 

    IO port 36.

    +
    BSP_IO_PORT_36 

    IO port 36.

    BSP_IO_PORT_37 

    IO port 37.

    +
    BSP_IO_PORT_37 

    IO port 37.

    BSP_IO_PORT_38 

    IO port 38.

    +
    BSP_IO_PORT_38 

    IO port 38.

    BSP_IO_PORT_39 

    IO port 39.

    +
    BSP_IO_PORT_39 

    IO port 39.

    BSP_IO_PORT_40 

    IO port 40.

    +
    BSP_IO_PORT_40 

    IO port 40.

    BSP_IO_PORT_41 

    IO port 41.

    +
    BSP_IO_PORT_41 

    IO port 41.

    BSP_IO_PORT_42 

    IO port 42.

    +
    BSP_IO_PORT_42 

    IO port 42.

    BSP_IO_PORT_43 

    IO port 43.

    +
    BSP_IO_PORT_43 

    IO port 43.

    BSP_IO_PORT_44 

    IO port 44.

    +
    BSP_IO_PORT_44 

    IO port 44.

    BSP_IO_PORT_45 

    IO port 45.

    +
    BSP_IO_PORT_45 

    IO port 45.

    BSP_IO_PORT_46 

    IO port 46.

    +
    BSP_IO_PORT_46 

    IO port 46.

    BSP_IO_PORT_47 

    IO port 47.

    +
    BSP_IO_PORT_47 

    IO port 47.

    BSP_IO_PORT_48 

    IO port 48.

    +
    BSP_IO_PORT_48 

    IO port 48.

    @@ -298,335 +410,599 @@

    Superset list of all possible IO port pins.

    - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + +
    Enumerator
    BSP_IO_PORT_00_PIN_00 

    IO port 0 pin 0.

    +
    Enumerator
    BSP_IO_PORT_00_PIN_00 

    IO port 0 pin 0.

    +
    BSP_IO_PORT_00_PIN_01 

    IO port 0 pin 1.

    +
    BSP_IO_PORT_01_PIN_00 

    IO port 1 pin 0.

    +
    BSP_IO_PORT_01_PIN_01 

    IO port 1 pin 1.

    +
    BSP_IO_PORT_02_PIN_00 

    IO port 2 pin 0.

    +
    BSP_IO_PORT_02_PIN_01 

    IO port 2 pin 1.

    +
    BSP_IO_PORT_03_PIN_00 

    IO port 3 pin 0.

    +
    BSP_IO_PORT_03_PIN_01 

    IO port 3 pin 1.

    +
    BSP_IO_PORT_04_PIN_00 

    IO port 4 pin 0.

    +
    BSP_IO_PORT_04_PIN_01 

    IO port 4 pin 1.

    +
    BSP_IO_PORT_05_PIN_00 

    IO port 5 pin 0.

    +
    BSP_IO_PORT_05_PIN_01 

    IO port 5 pin 1.

    +
    BSP_IO_PORT_05_PIN_02 

    IO port 5 pin 2.

    +
    BSP_IO_PORT_06_PIN_00 

    IO port 6 pin 0.

    +
    BSP_IO_PORT_06_PIN_01 

    IO port 6 pin 1.

    +
    BSP_IO_PORT_07_PIN_00 

    IO port 7 pin 0.

    BSP_IO_PORT_00_PIN_01 

    IO port 0 pin 1.

    +
    BSP_IO_PORT_07_PIN_01 

    IO port 7 pin 1.

    BSP_IO_PORT_01_PIN_00 

    IO port 1 pin 0.

    +
    BSP_IO_PORT_07_PIN_02 

    IO port 7 pin 2.

    BSP_IO_PORT_01_PIN_01 

    IO port 1 pin 1.

    +
    BSP_IO_PORT_08_PIN_00 

    IO port 8 pin 0.

    BSP_IO_PORT_02_PIN_00 

    IO port 2 pin 0.

    +
    BSP_IO_PORT_08_PIN_01 

    IO port 8 pin 1.

    BSP_IO_PORT_02_PIN_01 

    IO port 2 pin 1.

    +
    BSP_IO_PORT_08_PIN_02 

    IO port 8 pin 2.

    BSP_IO_PORT_03_PIN_00 

    IO port 3 pin 0.

    +
    BSP_IO_PORT_09_PIN_00 

    IO port 9 pin 0.

    BSP_IO_PORT_03_PIN_01 

    IO port 3 pin 1.

    +
    BSP_IO_PORT_09_PIN_01 

    IO port 9 pin 1.

    BSP_IO_PORT_04_PIN_00 

    IO port 4 pin 0.

    +
    BSP_IO_PORT_10_PIN_00 

    IO port 10 pin 0.

    BSP_IO_PORT_04_PIN_01 

    IO port 4 pin 1.

    +
    BSP_IO_PORT_10_PIN_01 

    IO port 10 pin 1.

    BSP_IO_PORT_05_PIN_00 

    IO port 5 pin 0.

    +
    BSP_IO_PORT_11_PIN_00 

    IO port 11 pin 0.

    BSP_IO_PORT_05_PIN_01 

    IO port 5 pin 1.

    +
    BSP_IO_PORT_11_PIN_01 

    IO port 11 pin 1.

    BSP_IO_PORT_05_PIN_02 

    IO port 5 pin 2.

    +
    BSP_IO_PORT_12_PIN_00 

    IO port 12 pin 0.

    BSP_IO_PORT_06_PIN_00 

    IO port 6 pin 0.

    +
    BSP_IO_PORT_12_PIN_01 

    IO port 12 pin 1.

    BSP_IO_PORT_06_PIN_01 

    IO port 6 pin 1.

    +
    BSP_IO_PORT_13_PIN_00 

    IO port 13 pin 0.

    BSP_IO_PORT_07_PIN_00 

    IO port 7 pin 0.

    +
    BSP_IO_PORT_13_PIN_01 

    IO port 13 pin 1.

    BSP_IO_PORT_07_PIN_01 

    IO port 7 pin 1.

    +
    BSP_IO_PORT_13_PIN_02 

    IO port 13 pin 2.

    BSP_IO_PORT_07_PIN_02 

    IO port 7 pin 2.

    +
    BSP_IO_PORT_14_PIN_00 

    IO port 14 pin 0.

    BSP_IO_PORT_08_PIN_00 

    IO port 8 pin 0.

    +
    BSP_IO_PORT_14_PIN_01 

    IO port 14 pin 1.

    BSP_IO_PORT_08_PIN_01 

    IO port 8 pin 1.

    +
    BSP_IO_PORT_15_PIN_00 

    IO port 15 pin 0.

    BSP_IO_PORT_08_PIN_02 

    IO port 8 pin 2.

    +
    BSP_IO_PORT_15_PIN_01 

    IO port 15 pin 1.

    BSP_IO_PORT_09_PIN_00 

    IO port 9 pin 0.

    +
    BSP_IO_PORT_16_PIN_00 

    IO port 16 pin 0.

    BSP_IO_PORT_09_PIN_01 

    IO port 9 pin 1.

    +
    BSP_IO_PORT_16_PIN_01 

    IO port 16 pin 1.

    BSP_IO_PORT_10_PIN_00 

    IO port 10 pin 0.

    +
    BSP_IO_PORT_17_PIN_00 

    IO port 17 pin 0.

    BSP_IO_PORT_10_PIN_01 

    IO port 10 pin 1.

    +
    BSP_IO_PORT_17_PIN_01 

    IO port 17 pin 1.

    BSP_IO_PORT_11_PIN_00 

    IO port 11 pin 0.

    +
    BSP_IO_PORT_17_PIN_02 

    IO port 17 pin 2.

    BSP_IO_PORT_11_PIN_01 

    IO port 11 pin 1.

    +
    BSP_IO_PORT_18_PIN_00 

    IO port 18 pin 0.

    BSP_IO_PORT_12_PIN_00 

    IO port 12 pin 0.

    +
    BSP_IO_PORT_18_PIN_01 

    IO port 18 pin 1.

    BSP_IO_PORT_12_PIN_01 

    IO port 12 pin 1.

    +
    BSP_IO_PORT_19_PIN_00 

    IO port 19 pin 0.

    BSP_IO_PORT_13_PIN_00 

    IO port 13 pin 0.

    +
    BSP_IO_PORT_19_PIN_01 

    IO port 19 pin 1.

    BSP_IO_PORT_13_PIN_01 

    IO port 13 pin 1.

    +
    BSP_IO_PORT_20_PIN_00 

    IO port 20 pin 0.

    BSP_IO_PORT_13_PIN_02 

    IO port 13 pin 2.

    +
    BSP_IO_PORT_20_PIN_01 

    IO port 20 pin 1.

    BSP_IO_PORT_14_PIN_00 

    IO port 14 pin 0.

    +
    BSP_IO_PORT_20_PIN_02 

    IO port 20 pin 2.

    BSP_IO_PORT_14_PIN_01 

    IO port 14 pin 1.

    +
    BSP_IO_PORT_21_PIN_00 

    IO port 21 pin 0.

    BSP_IO_PORT_15_PIN_00 

    IO port 15 pin 0.

    +
    BSP_IO_PORT_21_PIN_01 

    IO port 21 pin 1.

    BSP_IO_PORT_15_PIN_01 

    IO port 15 pin 1.

    +
    BSP_IO_PORT_22_PIN_00 

    IO port 22 pin 0.

    BSP_IO_PORT_16_PIN_00 

    IO port 16 pin 0.

    +
    BSP_IO_PORT_22_PIN_01 

    IO port 22 pin 1.

    BSP_IO_PORT_16_PIN_01 

    IO port 16 pin 1.

    +
    BSP_IO_PORT_23_PIN_00 

    IO port 23 pin 0.

    BSP_IO_PORT_17_PIN_00 

    IO port 17 pin 0.

    +
    BSP_IO_PORT_23_PIN_01 

    IO port 23 pin 1.

    BSP_IO_PORT_17_PIN_01 

    IO port 17 pin 1.

    +
    BSP_IO_PORT_24_PIN_00 

    IO port 24 pin 0.

    BSP_IO_PORT_17_PIN_02 

    IO port 17 pin 2.

    +
    BSP_IO_PORT_24_PIN_01 

    IO port 24 pin 1.

    BSP_IO_PORT_18_PIN_00 

    IO port 18 pin 0.

    +
    BSP_IO_PORT_25_PIN_00 

    IO port 25 pin 0.

    BSP_IO_PORT_18_PIN_01 

    IO port 18 pin 1.

    +
    BSP_IO_PORT_25_PIN_01 

    IO port 25 pin 1.

    BSP_IO_PORT_19_PIN_00 

    IO port 19 pin 0.

    +
    BSP_IO_PORT_26_PIN_00 

    IO port 26 pin 0.

    BSP_IO_PORT_19_PIN_01 

    IO port 19 pin 1.

    +
    BSP_IO_PORT_26_PIN_01 

    IO port 26 pin 1.

    BSP_IO_PORT_20_PIN_00 

    IO port 20 pin 0.

    +
    BSP_IO_PORT_27_PIN_00 

    IO port 27 pin 0.

    BSP_IO_PORT_20_PIN_01 

    IO port 20 pin 1.

    +
    BSP_IO_PORT_27_PIN_01 

    IO port 27 pin 1.

    BSP_IO_PORT_20_PIN_02 

    IO port 20 pin 2.

    +
    BSP_IO_PORT_28_PIN_00 

    IO port 28 pin 0.

    BSP_IO_PORT_21_PIN_00 

    IO port 21 pin 0.

    +
    BSP_IO_PORT_28_PIN_01 

    IO port 28 pin 1.

    BSP_IO_PORT_21_PIN_01 

    IO port 21 pin 1.

    +
    BSP_IO_PORT_29_PIN_00 

    IO port 29 pin 0.

    BSP_IO_PORT_22_PIN_00 

    IO port 22 pin 0.

    +
    BSP_IO_PORT_29_PIN_01 

    IO port 29 pin 1.

    BSP_IO_PORT_22_PIN_01 

    IO port 22 pin 1.

    +
    BSP_IO_PORT_30_PIN_00 

    IO port 30 pin 0.

    BSP_IO_PORT_23_PIN_00 

    IO port 23 pin 0.

    +
    BSP_IO_PORT_30_PIN_01 

    IO port 30 pin 1.

    BSP_IO_PORT_23_PIN_01 

    IO port 23 pin 1.

    +
    BSP_IO_PORT_31_PIN_00 

    IO port 31 pin 0.

    BSP_IO_PORT_24_PIN_00 

    IO port 24 pin 0.

    +
    BSP_IO_PORT_31_PIN_01 

    IO port 31 pin 1.

    BSP_IO_PORT_24_PIN_01 

    IO port 24 pin 1.

    +
    BSP_IO_PORT_32_PIN_00 

    IO port 32 pin 0.

    BSP_IO_PORT_25_PIN_00 

    IO port 25 pin 0.

    +
    BSP_IO_PORT_32_PIN_01 

    IO port 32 pin 1.

    BSP_IO_PORT_25_PIN_01 

    IO port 25 pin 1.

    +
    BSP_IO_PORT_33_PIN_00 

    IO port 33 pin 0.

    BSP_IO_PORT_26_PIN_00 

    IO port 26 pin 0.

    +
    BSP_IO_PORT_33_PIN_01 

    IO port 33 pin 1.

    BSP_IO_PORT_26_PIN_01 

    IO port 26 pin 1.

    +
    BSP_IO_PORT_34_PIN_00 

    IO port 34 pin 0.

    BSP_IO_PORT_27_PIN_00 

    IO port 27 pin 0.

    +
    BSP_IO_PORT_34_PIN_01 

    IO port 34 pin 1.

    BSP_IO_PORT_27_PIN_01 

    IO port 27 pin 1.

    +
    BSP_IO_PORT_35_PIN_00 

    IO port 35 pin 0.

    BSP_IO_PORT_28_PIN_00 

    IO port 28 pin 0.

    +
    BSP_IO_PORT_35_PIN_01 

    IO port 35 pin 1.

    BSP_IO_PORT_28_PIN_01 

    IO port 28 pin 1.

    +
    BSP_IO_PORT_36_PIN_00 

    IO port 36 pin 0.

    BSP_IO_PORT_29_PIN_00 

    IO port 29 pin 0.

    +
    BSP_IO_PORT_36_PIN_01 

    IO port 36 pin 1.

    BSP_IO_PORT_29_PIN_01 

    IO port 29 pin 1.

    +
    BSP_IO_PORT_37_PIN_00 

    IO port 37 pin 0.

    BSP_IO_PORT_30_PIN_00 

    IO port 30 pin 0.

    +
    BSP_IO_PORT_37_PIN_01 

    IO port 37 pin 1.

    BSP_IO_PORT_30_PIN_01 

    IO port 30 pin 1.

    +
    BSP_IO_PORT_37_PIN_02 

    IO port 37 pin 2.

    BSP_IO_PORT_31_PIN_00 

    IO port 31 pin 0.

    +
    BSP_IO_PORT_38_PIN_00 

    IO port 38 pin 0.

    BSP_IO_PORT_31_PIN_01 

    IO port 31 pin 1.

    +
    BSP_IO_PORT_38_PIN_01 

    IO port 38 pin 1.

    BSP_IO_PORT_32_PIN_00 

    IO port 32 pin 0.

    +
    BSP_IO_PORT_39_PIN_00 

    IO port 39 pin 0.

    BSP_IO_PORT_32_PIN_01 

    IO port 32 pin 1.

    +
    BSP_IO_PORT_39_PIN_01 

    IO port 39 pin 1.

    BSP_IO_PORT_33_PIN_00 

    IO port 33 pin 0.

    +
    BSP_IO_PORT_39_PIN_02 

    IO port 39 pin 2.

    BSP_IO_PORT_33_PIN_01 

    IO port 33 pin 1.

    +
    BSP_IO_PORT_40_PIN_00 

    IO port 40 pin 0.

    BSP_IO_PORT_34_PIN_00 

    IO port 34 pin 0.

    +
    BSP_IO_PORT_40_PIN_01 

    IO port 40 pin 1.

    BSP_IO_PORT_34_PIN_01 

    IO port 34 pin 1.

    +
    BSP_IO_PORT_40_PIN_02 

    IO port 40 pin 2.

    BSP_IO_PORT_35_PIN_00 

    IO port 35 pin 0.

    +
    BSP_IO_PORT_41_PIN_00 

    IO port 41 pin 0.

    BSP_IO_PORT_35_PIN_01 

    IO port 35 pin 1.

    +
    BSP_IO_PORT_41_PIN_01 

    IO port 41 pin 1.

    BSP_IO_PORT_36_PIN_00 

    IO port 36 pin 0.

    +
    BSP_IO_PORT_42_PIN_00 

    IO port 42 pin 0.

    BSP_IO_PORT_36_PIN_01 

    IO port 36 pin 1.

    +
    BSP_IO_PORT_42_PIN_01 

    IO port 42 pin 1.

    BSP_IO_PORT_37_PIN_00 

    IO port 37 pin 0.

    +
    BSP_IO_PORT_42_PIN_02 

    IO port 42 pin 2.

    BSP_IO_PORT_37_PIN_01 

    IO port 37 pin 1.

    +
    BSP_IO_PORT_42_PIN_03 

    IO port 42 pin 3.

    BSP_IO_PORT_37_PIN_02 

    IO port 37 pin 2.

    +
    BSP_IO_PORT_42_PIN_04 

    IO port 42 pin 4.

    BSP_IO_PORT_38_PIN_00 

    IO port 38 pin 0.

    +
    BSP_IO_PORT_43_PIN_00 

    IO port 43 pin 0.

    BSP_IO_PORT_38_PIN_01 

    IO port 38 pin 1.

    +
    BSP_IO_PORT_43_PIN_01 

    IO port 43 pin 1.

    BSP_IO_PORT_39_PIN_00 

    IO port 39 pin 0.

    +
    BSP_IO_PORT_43_PIN_02 

    IO port 43 pin 2.

    BSP_IO_PORT_39_PIN_01 

    IO port 39 pin 1.

    +
    BSP_IO_PORT_43_PIN_03 

    IO port 43 pin 3.

    BSP_IO_PORT_39_PIN_02 

    IO port 39 pin 2.

    +
    BSP_IO_PORT_44_PIN_00 

    IO port 44 pin 0.

    BSP_IO_PORT_40_PIN_00 

    IO port 40 pin 0.

    +
    BSP_IO_PORT_44_PIN_01 

    IO port 44 pin 1.

    BSP_IO_PORT_40_PIN_01 

    IO port 40 pin 1.

    +
    BSP_IO_PORT_44_PIN_02 

    IO port 44 pin 2.

    BSP_IO_PORT_40_PIN_02 

    IO port 40 pin 2.

    +
    BSP_IO_PORT_44_PIN_03 

    IO port 44 pin 3.

    BSP_IO_PORT_41_PIN_00 

    IO port 41 pin 0.

    +
    BSP_IO_PORT_45_PIN_00 

    IO port 45 pin 0.

    BSP_IO_PORT_41_PIN_01 

    IO port 41 pin 1.

    +
    BSP_IO_PORT_45_PIN_01 

    IO port 45 pin 1.

    BSP_IO_PORT_42_PIN_00 

    IO port 42 pin 0.

    +
    BSP_IO_PORT_45_PIN_02 

    IO port 45 pin 2.

    BSP_IO_PORT_42_PIN_01 

    IO port 42 pin 1.

    +
    BSP_IO_PORT_45_PIN_03 

    IO port 45 pin 3.

    BSP_IO_PORT_42_PIN_02 

    IO port 42 pin 2.

    +
    BSP_IO_PORT_46_PIN_00 

    IO port 46 pin 0.

    BSP_IO_PORT_42_PIN_03 

    IO port 42 pin 3.

    +
    BSP_IO_PORT_46_PIN_01 

    IO port 46 pin 1.

    BSP_IO_PORT_42_PIN_04 

    IO port 42 pin 4.

    +
    BSP_IO_PORT_46_PIN_02 

    IO port 46 pin 2.

    BSP_IO_PORT_43_PIN_00 

    IO port 43 pin 0.

    +
    BSP_IO_PORT_46_PIN_03 

    IO port 46 pin 3.

    BSP_IO_PORT_43_PIN_01 

    IO port 43 pin 1.

    +
    BSP_IO_PORT_47_PIN_00 

    IO port 47 pin 0.

    BSP_IO_PORT_43_PIN_02 

    IO port 43 pin 2.

    +
    BSP_IO_PORT_47_PIN_01 

    IO port 47 pin 1.

    BSP_IO_PORT_43_PIN_03 

    IO port 43 pin 3.

    +
    BSP_IO_PORT_47_PIN_02 

    IO port 47 pin 2.

    BSP_IO_PORT_44_PIN_00 

    IO port 44 pin 0.

    +
    BSP_IO_PORT_47_PIN_03 

    IO port 47 pin 3.

    BSP_IO_PORT_44_PIN_01 

    IO port 44 pin 1.

    +
    BSP_IO_PORT_48_PIN_00 

    IO port 48 pin 0.

    BSP_IO_PORT_44_PIN_02 

    IO port 44 pin 2.

    +
    BSP_IO_PORT_48_PIN_01 

    IO port 48 pin 1.

    BSP_IO_PORT_44_PIN_03 

    IO port 44 pin 3.

    +
    BSP_IO_PORT_48_PIN_02 

    IO port 48 pin 2.

    BSP_IO_PORT_45_PIN_00 

    IO port 45 pin 0.

    +
    BSP_IO_PORT_48_PIN_03 

    IO port 48 pin 3.

    BSP_IO_PORT_45_PIN_01 

    IO port 45 pin 1.

    +
    BSP_IO_PORT_48_PIN_04 

    IO port 48 pin 4.

    BSP_IO_PORT_45_PIN_02 

    IO port 45 pin 2.

    +
    BSP_IO_NMI 

    NMI.

    BSP_IO_PORT_45_PIN_03 

    IO port 45 pin 3.

    +
    BSP_IO_TMS_SWDIO 

    TMS_SWDIO.

    BSP_IO_PORT_46_PIN_00 

    IO port 46 pin 0.

    +
    BSP_IO_TDO 

    TDO.

    BSP_IO_PORT_46_PIN_01 

    IO port 46 pin 1.

    +
    BSP_IO_AUDIO_CLK1 

    AUDIO_CLK1.

    BSP_IO_PORT_46_PIN_02 

    IO port 46 pin 2.

    +
    BSP_IO_AUDIO_CLK2 

    AUDIO_CLK2.

    BSP_IO_PORT_46_PIN_03 

    IO port 46 pin 3.

    +
    BSP_IO_SD0_CLK 

    SD0_CLK.

    BSP_IO_PORT_47_PIN_00 

    IO port 47 pin 0.

    +
    BSP_IO_SD0_CMD 

    SD0_CMD.

    BSP_IO_PORT_47_PIN_01 

    IO port 47 pin 1.

    +
    BSP_IO_SD0_RST_N 

    SD0_RST_N.

    BSP_IO_PORT_47_PIN_02 

    IO port 47 pin 2.

    +
    BSP_IO_SD0_DATA0 

    SD0_DATA0.

    BSP_IO_PORT_47_PIN_03 

    IO port 47 pin 3.

    +
    BSP_IO_SD0_DATA1 

    SD0_DATA1.

    BSP_IO_PORT_48_PIN_00 

    IO port 48 pin 0.

    +
    BSP_IO_SD0_DATA2 

    SD0_DATA2.

    BSP_IO_PORT_48_PIN_01 

    IO port 48 pin 1.

    +
    BSP_IO_SD0_DATA3 

    SD0_DATA3.

    BSP_IO_PORT_48_PIN_02 

    IO port 48 pin 2.

    +
    BSP_IO_SD0_DATA4 

    SD0_DATA4.

    BSP_IO_PORT_48_PIN_03 

    IO port 48 pin 3.

    +
    BSP_IO_SD0_DATA5 

    SD0_DATA5.

    BSP_IO_PORT_48_PIN_04 

    IO port 48 pin 4.

    +
    BSP_IO_SD0_DATA6 

    SD0_DATA6.

    BSP_IO_NMI 

    NMI.

    +
    BSP_IO_SD0_DATA7 

    SD0_DATA7.

    BSP_IO_TMS_SWDIO 

    TMS_SWDIO.

    +
    BSP_IO_SD1_CLK 

    SD1_CLK.

    BSP_IO_TDO 

    TDO.

    +
    BSP_IO_SD1_CMD 

    SD1_CMD.

    BSP_IO_AUDIO_CLK1 

    AUDIO_CLK1.

    +
    BSP_IO_SD1_DATA0 

    SD1_DATA0.

    BSP_IO_AUDIO_CLK2 

    AUDIO_CLK2.

    +
    BSP_IO_SD1_DATA1 

    SD1_DATA1.

    BSP_IO_SD0_CLK 

    CD0_CLK.

    +
    BSP_IO_SD1_DATA2 

    SD1_DATA2.

    BSP_IO_SD0_CMD 

    CD0_CMD.

    +
    BSP_IO_SD1_DATA3 

    SD1_DATA3.

    BSP_IO_SD0_RST_N 

    CD0_RST_N.

    +
    BSP_IO_QSPI0_SPCLK 

    QSPI0_SPCLK.

    BSP_IO_SD0_DATA0 

    SD0_DATA0.

    +
    BSP_IO_QSPI0_IO0 

    QSPI0_IO0.

    BSP_IO_SD0_DATA1 

    SD0_DATA1.

    +
    BSP_IO_QSPI0_IO1 

    QSPI0_IO1.

    BSP_IO_SD0_DATA2 

    SD0_DATA2.

    +
    BSP_IO_QSPI0_IO2 

    QSPI0_IO2.

    BSP_IO_SD0_DATA3 

    SD0_DATA3.

    +
    BSP_IO_QSPI0_IO3 

    QSPI0_IO3.

    BSP_IO_SD0_DATA4 

    SD0_DATA4.

    +
    BSP_IO_QSPI0_SSL 

    QSPI0_SSL.

    BSP_IO_SD0_DATA5 

    SD0_DATA5.

    +
    BSP_IO_QSPI1_SPCLK 

    QSPI1_SPCLK.

    BSP_IO_SD0_DATA6 

    SD0_DATA6.

    +
    BSP_IO_QSPI1_IO0 

    QSPI1_IO0.

    BSP_IO_SD0_DATA7 

    SD0_DATA7.

    +
    BSP_IO_QSPI1_IO1 

    QSPI1_IO1.

    BSP_IO_SD1_CLK 

    SD1_CLK.

    +
    BSP_IO_QSPI1_IO2 

    QSPI1_IO2.

    +
    BSP_IO_QSPI1_IO3 

    QSPI1_IO3.

    +
    BSP_IO_QSPI1_SSL 

    QSPI1_SSL.

    +
    BSP_IO_QSPI_RESET_N 

    QSPI_RESET_N.

    +
    BSP_IO_QSPI_WP_N 

    QSPI_WP_N.

    +
    BSP_IO_QSPI_INT_N 

    QSPI_INT_N.

    +
    BSP_IO_WDTOVF_PERROUT_N 

    WDTOVF_PERROUT_N.

    +
    BSP_IO_RIIC0_SDA 

    RIIC0_SDA.

    +
    BSP_IO_RIIC0_SCL 

    RIIC0_SCL.

    +
    BSP_IO_RIIC1_SDA 

    RIIC1_SDA.

    +
    BSP_IO_RIIC1_SCL 

    RIIC1_SCL.

    +
    + +

    +
    + +

    ◆ bsp_sd_channel_t

    + +
    +
    + + + + +
    enum bsp_sd_channel_t
    +
    +

    Superset of SD channels.

    + + - -
    Enumerator
    BSP_SD_CHANNEL_0 

    Used to select SD channel 0.

    BSP_IO_SD1_CMD 

    SD1_CMD.

    +
    BSP_SD_CHANNEL_1 

    Used to select SD channel 1.

    BSP_IO_SD1_DATA0 

    SD1_DATA0.

    +
    + +
    +
    + +

    ◆ bsp_ethernet_channel_t

    + +
    +
    + + + + +
    enum bsp_ethernet_channel_t
    +
    +

    Superset of Ethernet channels.

    + + - -
    Enumerator
    BSP_ETHERNET_CHANNEL_0 

    Used to select Ethernet channel 0.

    BSP_IO_SD1_DATA1 

    SD1_DATA1.

    +
    BSP_ETHERNET_CHANNEL_1 

    Used to select Ethernet channel 1.

    BSP_IO_SD1_DATA2 

    SD1_DATA2.

    +
    + +
    +
    + +

    ◆ bsp_sd_voltage_t

    + +
    +
    + + + + +
    enum bsp_sd_voltage_t
    +
    +

    Superset of SD voltages.

    + + - -
    Enumerator
    BSP_SD_VOLTAGE_33 

    SD voltage set to 3.3V.

    BSP_IO_SD1_DATA3 

    SD1_DATA3.

    +
    BSP_SD_VOLTAGE_18 

    SD voltage set to 1.8V.

    BSP_IO_QSPI0_SPCLK 

    QSPI0_SPCLK.

    +
    + +
    +
    + +

    ◆ bsp_qspi_voltage_t

    + +
    +
    + + + + +
    enum bsp_qspi_voltage_t
    +
    +

    Superset of QSPI voltages.

    + + - -
    Enumerator
    BSP_QSPI_VOLTAGE_33 

    QSPI voltage set to 3.3V.

    BSP_IO_QSPI0_IO0 

    QSPI0_IO0.

    +
    BSP_QSPI_VOLTAGE_18 

    QSPI voltage set to 1.8V.

    BSP_IO_QSPI0_IO1 

    QSPI0_IO1.

    +
    + +
    +
    + +

    ◆ bsp_xspi_voltage_t

    + +
    +
    + + + + +
    enum bsp_xspi_voltage_t
    +
    +

    Superset of XSPI voltages.

    + + - - -
    Enumerator
    BSP_XSPI_VOLTAGE_33 

    XSPI voltage set to 3.3V.

    BSP_IO_QSPI0_IO2 

    QSPI0_IO2.

    +
    BSP_XSPI_VOLTAGE_18 

    XSPI voltage set to 1.8V.

    BSP_IO_QSPI0_IO3 

    QSPI0_IO3.

    +
    BSP_XSPI_VOLTAGE_25 

    XSPI voltage set to 2.5V.

    BSP_IO_QSPI0_SSL 

    QSPI0_SSL.

    +
    + +
    +
    + +

    ◆ bsp_ethernet_voltage_t

    + +
    +
    + + + + +
    enum bsp_ethernet_voltage_t
    +
    +

    Superset of Ethernet voltages.

    + + - - -
    Enumerator
    BSP_ETHERNET_VOLTAGE_33 

    Ethernet voltage set to 3.3V.

    BSP_IO_QSPI1_SPCLK 

    QSPI1_SPCLK.

    +
    BSP_ETHERNET_VOLTAGE_18 

    Ethernet voltage set to 1.8V.

    BSP_IO_QSPI1_IO0 

    QSPI1_IO0.

    +
    BSP_ETHERNET_VOLTAGE_25 

    Ethernet voltage set to 2.5V.

    BSP_IO_QSPI1_IO1 

    QSPI1_IO1.

    +
    + +
    +
    + +

    ◆ bsp_i3c_voltage_t

    + +
    +
    + + + + +
    enum bsp_i3c_voltage_t
    +
    +

    Superset of I3C voltages.

    + + - -
    Enumerator
    BSP_I3C_VOLTAGE_18 

    I3C voltage set to 1.8V.

    BSP_IO_QSPI1_IO2 

    QSPI1_IO2.

    +
    BSP_I3C_VOLTAGE_12 

    I3C voltage set to 1.2V.

    BSP_IO_QSPI1_IO3 

    QSPI1_IO3.

    +
    + +
    +
    + +

    ◆ bsp_ethernet_mode_t

    + +
    +
    + + + + +
    enum bsp_ethernet_mode_t
    +
    +

    Superset of Ethernet PHY modes.

    + + - -
    Enumerator
    BSP_ETHERNET_MODE_RMII 

    Ethernet PHY mode set to RMII.

    BSP_IO_QSPI1_SSL 

    QSPI1_SSL.

    +
    BSP_ETHERNET_MODE_MII 

    Ethernet PHY mode set to MII.

    BSP_IO_QSPI_RESET_N 

    QSPI_RESET_N.

    +
    + +
    +
    + +

    ◆ bsp_i3c_mode_t

    + +
    +
    + + + + +
    enum bsp_i3c_mode_t
    +
    +

    Superset of Standby modes for I3C.

    + + - -
    Enumerator
    BSP_I3C_MODE_STB 

    Standby mode set to Standby mode.

    BSP_IO_QSPI_WP_N 

    QSPI_WP_N.

    +
    BSP_I3C_MODE_NOR 

    Standby mode set to Normal mode.

    BSP_IO_QSPI_INT_N 

    QSPI_INT_N.

    +
    + +
    +
    + +

    ◆ bsp_bypass_oscillator_t

    + +
    +
    + + + + +
    enum bsp_bypass_oscillator_t
    +
    +

    Superset of oscillator for bypass mode.

    + + - - -
    Enumerator
    BSP_BYPASS_OSCILLATOR_RTC 

    Oscillator set to RTC.

    BSP_IO_WDTOVF_PERROUT_N 

    WDTOVF_PERROUT_N.

    +
    BSP_BYPASS_OSCILLATOR_AUDIO 

    Oscillator set to Audio.

    BSP_IO_RIIC0_SDA 

    RIIC0_SDA.

    +
    BSP_BYPASS_OSCILLATOR_EMCLK 

    Oscillator set to EMCLK.

    BSP_IO_RIIC0_SCL 

    RIIC0_SCL.

    +
    + +
    +
    + +

    ◆ bsp_bypass_mode_t

    + +
    +
    + + + + +
    enum bsp_bypass_mode_t
    +
    +

    Superset of bypass modes.

    + + - - +
    Enumerator
    BSP_BYPASS_MODE_CRYSTAL_OSC 

    Bypass mode set to Crystal oscillator.

    BSP_IO_RIIC1_SDA 

    RIIC1_SDA.

    +
    BSP_BYPASS_MODE_EXTERNAL_CLK 

    Bypass mode set to External clock receive.

    BSP_IO_RIIC1_SCL 

    RIIC1_SCL.

    +
    BSP_BYPASS_MODE_POWER_DOWN 

    Bypass mode set to Power-down.

    +
    + +
    +
    + +

    ◆ bsp_bypass_freq_range_t

    + +
    +
    + + + + +
    enum bsp_bypass_freq_range_t
    +
    +

    Superset of frequency range for bypass mode.

    + + + + +
    Enumerator
    BSP_BYPASS_FREQ_RANGE_1MHZ 

    Frequency range set to 32KHz to 1MHz.

    +
    BSP_BYPASS_FREQ_RANGE_12MHZ 

    Frequency range set to 1.1MHz to 12MHz.

    +
    BSP_BYPASS_FREQ_RANGE_24MHZ 

    Frequency range set to 12.1MHz to 24MHz.

    +
    BSP_BYPASS_FREQ_RANGE_48MHZ 

    Frequency range set to 24.1MHz to 48MHz.

    @@ -736,6 +1112,252 @@

    Disable access to the PFS registers. Uses a reference counter to protect against interrupts that could occur via multiple threads or an ISR re-entering this code.

    +

    +
    + +

    ◆ R_BSP_OENAccessEnable()

    + +
    +
    + + + + + + + + +
    __STATIC_INLINE void R_BSP_OENAccessEnable (void )
    +
    +

    Enable access to the OEN registers.

    + +
    +
    + +

    ◆ R_BSP_OENAccessDisable()

    + +
    +
    + + + + + + + + +
    __STATIC_INLINE void R_BSP_OENAccessDisable (void )
    +
    +

    Disable access to the OEN registers.

    + +
    +
    + +

    ◆ R_BSP_EthernetModeCfg()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    __STATIC_INLINE void R_BSP_EthernetModeCfg (bsp_ethernet_channel_t channel,
    bsp_ethernet_mode_t mode 
    )
    +
    +

    Configures Ethernet channel PHY mode.

    + +
    +
    + +

    ◆ R_BSP_SDVoltageModeCfg()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    __STATIC_INLINE void R_BSP_SDVoltageModeCfg (bsp_sd_channel_t channel,
    bsp_sd_voltage_t voltage 
    )
    +
    +

    Configures SD channel voltage mode.

    + +
    +
    + +

    ◆ R_BSP_QSPIVoltageModeCfg()

    + +
    +
    + + + + + + + + +
    __STATIC_INLINE void R_BSP_QSPIVoltageModeCfg (bsp_qspi_voltage_t voltage)
    +
    +

    Configures QSPI channel voltage mode.

    + +
    +
    + +

    ◆ R_BSP_XSPIVoltageModeCfg()

    + +
    +
    + + + + + + + + +
    __STATIC_INLINE void R_BSP_XSPIVoltageModeCfg (bsp_xspi_voltage_t voltage)
    +
    +

    Configures XSPI channel voltage mode.

    + +
    +
    + +

    ◆ R_BSP_EthernetVoltageModeCfg()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    __STATIC_INLINE void R_BSP_EthernetVoltageModeCfg (bsp_ethernet_channel_t channel,
    bsp_ethernet_voltage_t voltage 
    )
    +
    +

    Configures Ethernet channel voltage mode.

    + +
    +
    + +

    ◆ R_BSP_I3CControlCfg()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    __STATIC_INLINE void R_BSP_I3CControlCfg (bsp_i3c_voltage_t voltage,
    bsp_i3c_mode_t mode 
    )
    +
    +

    Configures I3C control.

    + +
    +
    + +

    ◆ R_BSP_BypassModeCfg()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    __STATIC_INLINE void R_BSP_BypassModeCfg (bsp_bypass_oscillator_t oscillator,
    bsp_bypass_mode_t mode,
    bsp_bypass_freq_range_t freq_range 
    )
    +
    +

    Configures bypass mode for RTC, Audio and EMCLK oscillator.

    + +
    +
    + +

    ◆ R_BSP_XSPIOutputEnableCfg()

    + +
    +
    + + + + + + + + +
    __STATIC_INLINE void R_BSP_XSPIOutputEnableCfg (void )
    +
    +

    Configures XSPI output Enable.

    +
    @@ -744,7 +1366,7 @@

      - +

    diff --git a/group___b_s_p___i_o.js b/group___b_s_p___i_o.js index 54e6fb6..0c540cf 100644 --- a/group___b_s_p___i_o.js +++ b/group___b_s_p___i_o.js @@ -11,225 +11,289 @@ var group___b_s_p___i_o = [ "BSP_IO_DIRECTION_OUTPUT_WITH_INPUT_ENABLE", "group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78ba682fd05ca96b45840c4cd5d9fd35e405", null ] ] ], [ "bsp_io_port_t", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46e", [ - [ "BSP_IO_PORT_00", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea11fccb10e338ed526b52e66f3b0e6f92", null ], - [ "BSP_IO_PORT_01", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea1465c0a3f756e587525c11d00e3883f9", null ], - [ "BSP_IO_PORT_02", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4944568317a214298b34be9bc3f26e48", null ], - [ "BSP_IO_PORT_03", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea97a779742ba7c411dfa7edb66e9569e7", null ], - [ "BSP_IO_PORT_04", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea8807e320a0f7ce2bbc6b61cf25a0b072", null ], - [ "BSP_IO_PORT_05", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea20eb52e6abf9b112dc5af6931984dec1", null ], - [ "BSP_IO_PORT_06", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea35098d51c380e353369db8e0881952a6", null ], - [ "BSP_IO_PORT_07", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eab007ee52e771b0d17a8e54fa3fb6e93b", null ], - [ "BSP_IO_PORT_08", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea3f042a23f398537b95fd88334a3b4d9e", null ], - [ "BSP_IO_PORT_09", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea584e14f51456fd94e7c7f0a9ed66b2bf", null ], - [ "BSP_IO_PORT_10", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea0a6ffd6c20eaaa32409b9ca0dee293e8", null ], - [ "BSP_IO_PORT_11", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eabf85020df009d581e4fadb6e8a1dbddb", null ], - [ "BSP_IO_PORT_12", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea78ad7bb48a9750a3ba08672b6baeef7e", null ], - [ "BSP_IO_PORT_13", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eae0f99efe8ef380f164802966936f7847", null ], - [ "BSP_IO_PORT_14", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea775af46386b8ac7e29159624b9224295", null ], - [ "BSP_IO_PORT_15", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea397323ae563e9bd7c503dc1c675fa395", null ], - [ "BSP_IO_PORT_16", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea002722322e8a845391a87dcc7eb9cc45", null ], - [ "BSP_IO_PORT_17", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ead05a1353527cf2773715624fabd00a00", null ], - [ "BSP_IO_PORT_18", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eae6713d42094e3ab520aabae92ebd40bc", null ], - [ "BSP_IO_PORT_19", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea175a84c2aa70454b4e6d4ab1c1bf09a6", null ], - [ "BSP_IO_PORT_20", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eabb06fb72ab7089198e72a6fea4a109e2", null ], - [ "BSP_IO_PORT_21", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea26ec6accacb5dbb180a419780a88afe0", null ], - [ "BSP_IO_PORT_22", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea2873610326361727fdadf7c95b1eb66f", null ], - [ "BSP_IO_PORT_23", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4a80f7746adba5117728d74884967ff0", null ], - [ "BSP_IO_PORT_24", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea40a254bc0f42f443d78c717bed44a682", null ], - [ "BSP_IO_PORT_25", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea5f6e2b131b2f5b5dbd759533379d6105", null ], - [ "BSP_IO_PORT_26", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eabc16d0f819ca9bb6eb8638e9b5e6c99e", null ], - [ "BSP_IO_PORT_27", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea566070ed168bf63dc412bdaf12d939e3", null ], - [ "BSP_IO_PORT_28", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea2657a0bb753f5a81301eda96ca631aa6", null ], - [ "BSP_IO_PORT_29", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4ea757a862c98494a0aaad6369a1f990", null ], - [ "BSP_IO_PORT_30", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea7faeb64a7250a38ddbc971bc030b07cb", null ], - [ "BSP_IO_PORT_31", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4c75f0f2e7ca9e74a85f3b382e830b69", null ], - [ "BSP_IO_PORT_32", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eab5a70226eac6e8cdcdbf5d248637a917", null ], - [ "BSP_IO_PORT_33", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea6bf1e63d623c3adb59409fcc5c540be7", null ], - [ "BSP_IO_PORT_34", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4654504be6ba72162f37014a9d73037c", null ], - [ "BSP_IO_PORT_35", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eaf9d2db9d60f629faac9184c294f65984", null ], - [ "BSP_IO_PORT_36", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea322678e3244fafb07badc6d529c62995", null ], - [ "BSP_IO_PORT_37", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea6d0ed5fd6b8112e4fe087bd4211e9cf8", null ], - [ "BSP_IO_PORT_38", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eacee8ac33d0115b3997767c64527115ab", null ], - [ "BSP_IO_PORT_39", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea994e790d360e9af8b4c681e3ce0bec74", null ], - [ "BSP_IO_PORT_40", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea5e76257ac865ad0481c5ed353a4212c9", null ], - [ "BSP_IO_PORT_41", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea58562456ff71481a2de2866016b017f2", null ], - [ "BSP_IO_PORT_42", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea16bc2ebb264e5d30df602590dd0d4736", null ], - [ "BSP_IO_PORT_43", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ead099a4e210a23e9a0370fd9a4cb13f3f", null ], - [ "BSP_IO_PORT_44", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea21028efff67589ec637595607faf5c60", null ], - [ "BSP_IO_PORT_45", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea0650c44272c455fb11576525fe44580f", null ], - [ "BSP_IO_PORT_46", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea8e4609c67698b2386ef7db4443b90bbb", null ], - [ "BSP_IO_PORT_47", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ead500583b0bed23efc4b23cfaf604dfdb", null ], - [ "BSP_IO_PORT_48", "group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea41155aec80e8d3232eee7e5bd8576425", null ] + [ "BSP_IO_PORT_00", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea11fccb10e338ed526b52e66f3b0e6f92", null ], + [ "BSP_IO_PORT_01", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea1465c0a3f756e587525c11d00e3883f9", null ], + [ "BSP_IO_PORT_02", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4944568317a214298b34be9bc3f26e48", null ], + [ "BSP_IO_PORT_03", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea97a779742ba7c411dfa7edb66e9569e7", null ], + [ "BSP_IO_PORT_04", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea8807e320a0f7ce2bbc6b61cf25a0b072", null ], + [ "BSP_IO_PORT_05", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea20eb52e6abf9b112dc5af6931984dec1", null ], + [ "BSP_IO_PORT_06", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea35098d51c380e353369db8e0881952a6", null ], + [ "BSP_IO_PORT_07", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eab007ee52e771b0d17a8e54fa3fb6e93b", null ], + [ "BSP_IO_PORT_08", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea3f042a23f398537b95fd88334a3b4d9e", null ], + [ "BSP_IO_PORT_09", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea584e14f51456fd94e7c7f0a9ed66b2bf", null ], + [ "BSP_IO_PORT_10", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea0a6ffd6c20eaaa32409b9ca0dee293e8", null ], + [ "BSP_IO_PORT_11", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eabf85020df009d581e4fadb6e8a1dbddb", null ], + [ "BSP_IO_PORT_12", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea78ad7bb48a9750a3ba08672b6baeef7e", null ], + [ "BSP_IO_PORT_13", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eae0f99efe8ef380f164802966936f7847", null ], + [ "BSP_IO_PORT_14", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea775af46386b8ac7e29159624b9224295", null ], + [ "BSP_IO_PORT_15", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea397323ae563e9bd7c503dc1c675fa395", null ], + [ "BSP_IO_PORT_16", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea002722322e8a845391a87dcc7eb9cc45", null ], + [ "BSP_IO_PORT_17", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ead05a1353527cf2773715624fabd00a00", null ], + [ "BSP_IO_PORT_18", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eae6713d42094e3ab520aabae92ebd40bc", null ], + [ "BSP_IO_PORT_19", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea175a84c2aa70454b4e6d4ab1c1bf09a6", null ], + [ "BSP_IO_PORT_20", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eabb06fb72ab7089198e72a6fea4a109e2", null ], + [ "BSP_IO_PORT_21", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea26ec6accacb5dbb180a419780a88afe0", null ], + [ "BSP_IO_PORT_22", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea2873610326361727fdadf7c95b1eb66f", null ], + [ "BSP_IO_PORT_23", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4a80f7746adba5117728d74884967ff0", null ], + [ "BSP_IO_PORT_24", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea40a254bc0f42f443d78c717bed44a682", null ], + [ "BSP_IO_PORT_25", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea5f6e2b131b2f5b5dbd759533379d6105", null ], + [ "BSP_IO_PORT_26", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eabc16d0f819ca9bb6eb8638e9b5e6c99e", null ], + [ "BSP_IO_PORT_27", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea566070ed168bf63dc412bdaf12d939e3", null ], + [ "BSP_IO_PORT_28", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea2657a0bb753f5a81301eda96ca631aa6", null ], + [ "BSP_IO_PORT_29", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4ea757a862c98494a0aaad6369a1f990", null ], + [ "BSP_IO_PORT_30", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea7faeb64a7250a38ddbc971bc030b07cb", null ], + [ "BSP_IO_PORT_31", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4c75f0f2e7ca9e74a85f3b382e830b69", null ], + [ "BSP_IO_PORT_32", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eab5a70226eac6e8cdcdbf5d248637a917", null ], + [ "BSP_IO_PORT_33", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea6bf1e63d623c3adb59409fcc5c540be7", null ], + [ "BSP_IO_PORT_34", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4654504be6ba72162f37014a9d73037c", null ], + [ "BSP_IO_PORT_35", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eaf9d2db9d60f629faac9184c294f65984", null ], + [ "BSP_IO_PORT_36", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea322678e3244fafb07badc6d529c62995", null ], + [ "BSP_IO_PORT_37", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea6d0ed5fd6b8112e4fe087bd4211e9cf8", null ], + [ "BSP_IO_PORT_38", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eacee8ac33d0115b3997767c64527115ab", null ], + [ "BSP_IO_PORT_39", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea994e790d360e9af8b4c681e3ce0bec74", null ], + [ "BSP_IO_PORT_40", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea5e76257ac865ad0481c5ed353a4212c9", null ], + [ "BSP_IO_PORT_41", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea58562456ff71481a2de2866016b017f2", null ], + [ "BSP_IO_PORT_42", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea16bc2ebb264e5d30df602590dd0d4736", null ], + [ "BSP_IO_PORT_43", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ead099a4e210a23e9a0370fd9a4cb13f3f", null ], + [ "BSP_IO_PORT_44", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea21028efff67589ec637595607faf5c60", null ], + [ "BSP_IO_PORT_45", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea0650c44272c455fb11576525fe44580f", null ], + [ "BSP_IO_PORT_46", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea8e4609c67698b2386ef7db4443b90bbb", null ], + [ "BSP_IO_PORT_47", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ead500583b0bed23efc4b23cfaf604dfdb", null ], + [ "BSP_IO_PORT_48", "group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea41155aec80e8d3232eee7e5bd8576425", null ] ] ], [ "bsp_io_port_pin_t", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80a", [ - [ "BSP_IO_PORT_00_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa62ce6a7aef8164ea6bce7a9209b2506f", null ], - [ "BSP_IO_PORT_00_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa9068c73f5a59c1a55f6e57bd406edf6c", null ], - [ "BSP_IO_PORT_01_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0ae62012d023d55c6d1141e1f09d09d8", null ], - [ "BSP_IO_PORT_01_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa30e6ff3f5eca3d04bec3d714e474f3df", null ], - [ "BSP_IO_PORT_02_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa635ed7a090bf9052c6cfc6c225335c9a", null ], - [ "BSP_IO_PORT_02_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaea414f512f3b2c84888d93d506fbe172", null ], - [ "BSP_IO_PORT_03_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa939175dd8a48d965dd7c667764cc1fd5", null ], - [ "BSP_IO_PORT_03_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac76bc2a911b588e27633978b1fe3f3f4", null ], - [ "BSP_IO_PORT_04_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa52d01ece7c8204d5780ce72179f09c76", null ], - [ "BSP_IO_PORT_04_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaeb156edee3b3c89b68b51df1f396a61f", null ], - [ "BSP_IO_PORT_05_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaceb466e44e04e3b0ab04a7f10003a8be", null ], - [ "BSP_IO_PORT_05_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aacf43fded0d1c0e1888ec9ae765ddf5f2", null ], - [ "BSP_IO_PORT_05_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaab1bcef9f45fb16232cc5913697eed32", null ], - [ "BSP_IO_PORT_06_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae9d15e574de9e35f7e1197c95d05dad9", null ], - [ "BSP_IO_PORT_06_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa95398234ddf9c5235901f089d4e81662", null ], - [ "BSP_IO_PORT_07_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6569ae616e2c7ec066f05618be44d35a", null ], - [ "BSP_IO_PORT_07_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae3e273b0a415a41e1f4e3ae91817c186", null ], - [ "BSP_IO_PORT_07_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa88e147f4775b65d5c96a282684a408c8", null ], - [ "BSP_IO_PORT_08_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad47cbb33ca5c9f12ee8dca084e3062d3", null ], - [ "BSP_IO_PORT_08_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaaedcbffa95e268f197778af394a4bf35", null ], - [ "BSP_IO_PORT_08_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6c298d5d898981f883b4b01f90e5c996", null ], - [ "BSP_IO_PORT_09_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadb3e4e605bcb1d788367185e4058982f", null ], - [ "BSP_IO_PORT_09_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf9970a4d1a41e6482fad460393a196a1", null ], - [ "BSP_IO_PORT_10_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8ef0f2b6cc6de032c23c371dafc6004f", null ], - [ "BSP_IO_PORT_10_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0623a8fae8511929239804f47b76dbab", null ], - [ "BSP_IO_PORT_11_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa125041643933f0bc07f32f14887bdf9c", null ], - [ "BSP_IO_PORT_11_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab951cf766f9cd671ae093a141bc0c49a", null ], - [ "BSP_IO_PORT_12_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabaaa47451e1390c478c5b2a1725e6496", null ], - [ "BSP_IO_PORT_12_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa41f8c9cb94f726c7030df2052fd79774", null ], - [ "BSP_IO_PORT_13_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0ed7d51f576b741e15330313031c2216", null ], - [ "BSP_IO_PORT_13_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2014abe37005233fad759d8de134796a", null ], - [ "BSP_IO_PORT_13_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad24ad8bbfa5f6d10db6ff8dc75eadef5", null ], - [ "BSP_IO_PORT_14_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad20c513c1e1b64b683255e3b3b34b09a", null ], - [ "BSP_IO_PORT_14_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7bf44c9d323051836f7cbdc7e9da06de", null ], - [ "BSP_IO_PORT_15_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa23d463236f6411d0c90196dabcc9c5cf", null ], - [ "BSP_IO_PORT_15_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa191310dd2b5e6a16244b452a76983735", null ], - [ "BSP_IO_PORT_16_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae35842723dba01d6ced15e6349ad2d8e", null ], - [ "BSP_IO_PORT_16_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa922ad01a7323cb74f484964dc5d66697", null ], - [ "BSP_IO_PORT_17_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaae0e1e9e69f942b9db5e95ff83323ad4", null ], - [ "BSP_IO_PORT_17_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa9e537caa46d62591f1a698b30897ee2", null ], - [ "BSP_IO_PORT_17_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa16ff4369ccc2eb0e6447af953bc94500", null ], - [ "BSP_IO_PORT_18_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa3c395ad7ae5d1d25edc8ba2a536d0525", null ], - [ "BSP_IO_PORT_18_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac2479bdb7c292438a9d7c3dd4f48a16a", null ], - [ "BSP_IO_PORT_19_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadab728bf7f83ae6d642836403d5d2dc1", null ], - [ "BSP_IO_PORT_19_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa1628f1c03dc3bfe49f118a6bb2400c53", null ], - [ "BSP_IO_PORT_20_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa53d05b3cda0c467bb7f5ed5999f2ab8f", null ], - [ "BSP_IO_PORT_20_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaaf1af3c7ee0c71fde7bfd1cd49949123", null ], - [ "BSP_IO_PORT_20_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac47b0fc7594eb9f9b3b8b8ad31b464ec", null ], - [ "BSP_IO_PORT_21_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa26c218a01d621d492389ce4f74597f55", null ], - [ "BSP_IO_PORT_21_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5dfe885cc0ee6d129a7759c8ffecfd7e", null ], - [ "BSP_IO_PORT_22_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5c7fa78ba5a0152298956fda6cf85c5e", null ], - [ "BSP_IO_PORT_22_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa9ddc4ada31ca968e9b166cd11b440143", null ], - [ "BSP_IO_PORT_23_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab4d640dac1a6dff63f33c79ee1e20c9e", null ], - [ "BSP_IO_PORT_23_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa98b1d268ef5f45e6751c0a99139acc5c", null ], - [ "BSP_IO_PORT_24_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa40b055b032c42ad42b0d1878a4a52d73", null ], - [ "BSP_IO_PORT_24_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa39f4c9b8a1bfe125213595ecc0b45df0", null ], - [ "BSP_IO_PORT_25_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa49e414efa6d0d02c604aac05bb9778db", null ], - [ "BSP_IO_PORT_25_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf117a1aa77a1a547745adf145d8dc77e", null ], - [ "BSP_IO_PORT_26_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf4eff0573f5c549da8c41d0b38166e66", null ], - [ "BSP_IO_PORT_26_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2a3374a2fd5198a534ee4a728349e13f", null ], - [ "BSP_IO_PORT_27_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa1787bfc47089bd96d33fff7bad1153d1", null ], - [ "BSP_IO_PORT_27_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa4a41ab4915afe1b7a374411fe9eb196e", null ], - [ "BSP_IO_PORT_28_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa614cf023157b36d3e2162e11318abc31", null ], - [ "BSP_IO_PORT_28_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf8c5571fbe78f2c5e6a767c13aec041c", null ], - [ "BSP_IO_PORT_29_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa57ff3c85ce33930afe04e3802c55227f", null ], - [ "BSP_IO_PORT_29_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2f376ba6a57ea3ac2d60a499a0f57c46", null ], - [ "BSP_IO_PORT_30_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2df8908dd4850253d394bc3b7e685a75", null ], - [ "BSP_IO_PORT_30_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaaee42cef11c4a58e9e5aa68fd382299b", null ], - [ "BSP_IO_PORT_31_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadc72aebfb0e4a967a56c0e6b9d00ef18", null ], - [ "BSP_IO_PORT_31_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabc8eb75642cdbdaac75d88a34278250b", null ], - [ "BSP_IO_PORT_32_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac53d38f374d54699a1622468faedc544", null ], - [ "BSP_IO_PORT_32_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac17f65dbf85a6c6e746f1bf21aa934db", null ], - [ "BSP_IO_PORT_33_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad9a5407f94f35c91c7d98c0c91ffd975", null ], - [ "BSP_IO_PORT_33_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa62d85ff211777b182617b334c8f7e7b0", null ], - [ "BSP_IO_PORT_34_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab5b1771adf3821c23b1c4cfbeea5b4f5", null ], - [ "BSP_IO_PORT_34_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae8415d4c07fce74af51a792896f3777e", null ], - [ "BSP_IO_PORT_35_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0f2b7d0278bf5dcbe1a9d7b9cefd0c15", null ], - [ "BSP_IO_PORT_35_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa25fdf456c4b05c5e15f51d615c3fa673", null ], - [ "BSP_IO_PORT_36_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadd39c324258c968a575e24a4fa7ff354", null ], - [ "BSP_IO_PORT_36_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8d452d6083512df8aa8bcef4815ad8b8", null ], - [ "BSP_IO_PORT_37_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5f9f37be21799183925449eda63b433", null ], - [ "BSP_IO_PORT_37_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2fae9399a986654ad829fd957a0b5129", null ], - [ "BSP_IO_PORT_37_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa59817ac0e653810d530b8bb4a74305d6", null ], - [ "BSP_IO_PORT_38_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaba0a89ecb1ad6357f0ca6ca8067ff000", null ], - [ "BSP_IO_PORT_38_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa9406041975509fcccff7d7dd93e786f3", null ], - [ "BSP_IO_PORT_39_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0cd29a6c518b2c8e67932c1e8d6a62d4", null ], - [ "BSP_IO_PORT_39_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa4f0e2180e0a141f1ef73934fa9c340d0", null ], - [ "BSP_IO_PORT_39_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf0ecf908b8d4ce84a33b69ca4fdabca4", null ], - [ "BSP_IO_PORT_40_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2d28483ae8cdc5474deca88e6bfe1dee", null ], - [ "BSP_IO_PORT_40_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa63642ca9b2805ff92be0aa0bf7a66a9a", null ], - [ "BSP_IO_PORT_40_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6f5ee1365a8b7fc827fd3ceb3a4a8cb7", null ], - [ "BSP_IO_PORT_41_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab20b0a224aa92ffab0e0405e33c7e61c", null ], - [ "BSP_IO_PORT_41_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa72604af4694f399a0eca581ec5b897b8", null ], - [ "BSP_IO_PORT_42_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa51d3b48ed479b2ee3a46dc996d04b435", null ], - [ "BSP_IO_PORT_42_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aacaf9e71dadad94b9b321585c69de0cd1", null ], - [ "BSP_IO_PORT_42_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa7c6e61f76d6c3cc9a9dfd2f091bb0b3", null ], - [ "BSP_IO_PORT_42_PIN_03", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaeffcc1d1f99236ae009d76eab5e0913d", null ], - [ "BSP_IO_PORT_42_PIN_04", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa4f69d60a8685d441c35495d9d7dd09b8", null ], - [ "BSP_IO_PORT_43_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa829088e17268397d6ddb14182a380e51", null ], - [ "BSP_IO_PORT_43_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2c579ae3361bf6dfb4191b4da60910fe", null ], - [ "BSP_IO_PORT_43_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa252a1fcd0f46a31afcf798e301bdba16", null ], - [ "BSP_IO_PORT_43_PIN_03", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa37a5927be9bc40f6df0f64adc84d6006", null ], - [ "BSP_IO_PORT_44_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae4d19f207d3548baf4e742bfca68ae46", null ], - [ "BSP_IO_PORT_44_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae3f2fd01c62e1ae8522ed5137ad07e5e", null ], - [ "BSP_IO_PORT_44_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa73f9c0b7f80c8385d77008b1e785eb88", null ], - [ "BSP_IO_PORT_44_PIN_03", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaff015065db131ce31c3e483ab8e9bb38", null ], - [ "BSP_IO_PORT_45_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac300c1ff8aaf37d2d3c840341888909a", null ], - [ "BSP_IO_PORT_45_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa52b16585d757e097a7ff851e74748973", null ], - [ "BSP_IO_PORT_45_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabfeca2fc1cd38d80e5e31eb3c5032b83", null ], - [ "BSP_IO_PORT_45_PIN_03", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5d15277bbd25881faf865b00f8c46c1", null ], - [ "BSP_IO_PORT_46_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5e49717d4d34dea314976288c20c6ee", null ], - [ "BSP_IO_PORT_46_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa430a0d48fb4e6fc1f5a358a5c1b17d8f", null ], - [ "BSP_IO_PORT_46_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2818abb4ea0fa720d53bf0a0ba923870", null ], - [ "BSP_IO_PORT_46_PIN_03", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa03dceeb58f56dc9a21b5bfa3176ab217", null ], - [ "BSP_IO_PORT_47_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafc63a732535ea65c522c06582757d4bb", null ], - [ "BSP_IO_PORT_47_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa01a4990336c06cef1fea22c9ff2bfb2d", null ], - [ "BSP_IO_PORT_47_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf98bbb6311738366fe772c4a0e320824", null ], - [ "BSP_IO_PORT_47_PIN_03", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafbb3e071ee0dcccf61805c9bebb7befa", null ], - [ "BSP_IO_PORT_48_PIN_00", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa57c5991f29df32eb1f4cd1c82082725b", null ], - [ "BSP_IO_PORT_48_PIN_01", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa841054432251d0c7343d32144cee6789", null ], - [ "BSP_IO_PORT_48_PIN_02", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa38e1abc8d5cae949e3f1e82f9f107cc3", null ], - [ "BSP_IO_PORT_48_PIN_03", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5f53758d43bb074b01e3cba77cbb5cde", null ], - [ "BSP_IO_PORT_48_PIN_04", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa60d189d33295043480ca9e91989fb126", null ], - [ "BSP_IO_NMI", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa3bf300bb3aa746665b49bc8200bd7963", null ], - [ "BSP_IO_TMS_SWDIO", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafd917ebff207c1b9456898a143d10c38", null ], - [ "BSP_IO_TDO", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae97fc09171edc1a3c841cab7a1020fb2", null ], - [ "BSP_IO_AUDIO_CLK1", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5116644c1d06c3af3240908b62f1a1e1", null ], - [ "BSP_IO_AUDIO_CLK2", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa456bca4a2c1ee49955d22b162753d000", null ], - [ "BSP_IO_SD0_CLK", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabccd7e7760466f8c666ae02e8d84267e", null ], - [ "BSP_IO_SD0_CMD", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0ef28251d02b2be71736cd6709324cf7", null ], - [ "BSP_IO_SD0_RST_N", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa8daf070713048cb35f873e0490068df", null ], - [ "BSP_IO_SD0_DATA0", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa03979860d2850a4790a85a7012fff5b4", null ], - [ "BSP_IO_SD0_DATA1", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5590555e0fa70d287a8a215b9a703de7", null ], - [ "BSP_IO_SD0_DATA2", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa73326eeb5a58de9766418893bcc1a284", null ], - [ "BSP_IO_SD0_DATA3", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf2cf666df832a706dfdd973aac8406d8", null ], - [ "BSP_IO_SD0_DATA4", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa876a99deff86f8d09f1d96112a1b2dc3", null ], - [ "BSP_IO_SD0_DATA5", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aade0f69819cb635c9127516bcb86f5886", null ], - [ "BSP_IO_SD0_DATA6", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa3afa25e16d31202f5367150ce88e768e", null ], - [ "BSP_IO_SD0_DATA7", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5e1dcfb012ca07ec05c7a5da14ad055", null ], - [ "BSP_IO_SD1_CLK", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad2f6c4dec46159cddb6d967a551c7c2a", null ], - [ "BSP_IO_SD1_CMD", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa405fdd3dc66955a4858cc69a19016933", null ], - [ "BSP_IO_SD1_DATA0", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafbc2d3122913859d09d249bf264d4136", null ], - [ "BSP_IO_SD1_DATA1", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa67d5209707eab3f61c4eb9bbbd1ce73f", null ], - [ "BSP_IO_SD1_DATA2", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaeaedf55bf5c303fdb8fd62b7df65f2e4", null ], - [ "BSP_IO_SD1_DATA3", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae758bfc092956cb39f9013b921753657", null ], - [ "BSP_IO_QSPI0_SPCLK", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaef51c0ad05848a82f97fa49a29f66f37", null ], - [ "BSP_IO_QSPI0_IO0", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6d353753e9a3f1ec95967f7e7fb630f5", null ], - [ "BSP_IO_QSPI0_IO1", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7127f17a3754e1842aafd8c5b5d2062a", null ], - [ "BSP_IO_QSPI0_IO2", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabcc1e97ac8b56e357b24ec536ddb4269", null ], - [ "BSP_IO_QSPI0_IO3", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa62438f5462fd98d683368b464b18e4c", null ], - [ "BSP_IO_QSPI0_SSL", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab0e97936a0410619b613d3e8ac4b0de1", null ], - [ "BSP_IO_QSPI1_SPCLK", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8b11501a458d5b7a82e5bdc80cb9252a", null ], - [ "BSP_IO_QSPI1_IO0", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5394e222d99a1ca17622c3d1c8a5c94d", null ], - [ "BSP_IO_QSPI1_IO1", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7a1d5c0e646b87a381b9f1a829e2909b", null ], - [ "BSP_IO_QSPI1_IO2", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa65598f991476837f7822ce44244e349e", null ], - [ "BSP_IO_QSPI1_IO3", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa1e9673eef7a96cf9f46b8f75421075dd", null ], - [ "BSP_IO_QSPI1_SSL", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa7c30f479d99f883ee4b4fa27b6ae4f5", null ], - [ "BSP_IO_QSPI_RESET_N", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8248388efb79c97a26893bb2de4c8d5b", null ], - [ "BSP_IO_QSPI_WP_N", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab466c8da8ed341f72fdc9e4059d9025c", null ], - [ "BSP_IO_QSPI_INT_N", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa12bccfc806539758e2b3a47e6ea93ca9", null ], - [ "BSP_IO_WDTOVF_PERROUT_N", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7901524777e247b132a543d19b8ddd4f", null ], - [ "BSP_IO_RIIC0_SDA", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaba9b7c124ac20c50a71563d64a068fc9", null ], - [ "BSP_IO_RIIC0_SCL", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad77d8a140615854897936e80b31f0670", null ], - [ "BSP_IO_RIIC1_SDA", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6828c5428be0bd1a3a5b79e111871411", null ], - [ "BSP_IO_RIIC1_SCL", "group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8c0b73a965fe066d0d58a4fb513d84dc", null ] + [ "BSP_IO_PORT_00_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa62ce6a7aef8164ea6bce7a9209b2506f", null ], + [ "BSP_IO_PORT_00_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa9068c73f5a59c1a55f6e57bd406edf6c", null ], + [ "BSP_IO_PORT_01_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0ae62012d023d55c6d1141e1f09d09d8", null ], + [ "BSP_IO_PORT_01_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa30e6ff3f5eca3d04bec3d714e474f3df", null ], + [ "BSP_IO_PORT_02_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa635ed7a090bf9052c6cfc6c225335c9a", null ], + [ "BSP_IO_PORT_02_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaea414f512f3b2c84888d93d506fbe172", null ], + [ "BSP_IO_PORT_03_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa939175dd8a48d965dd7c667764cc1fd5", null ], + [ "BSP_IO_PORT_03_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac76bc2a911b588e27633978b1fe3f3f4", null ], + [ "BSP_IO_PORT_04_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa52d01ece7c8204d5780ce72179f09c76", null ], + [ "BSP_IO_PORT_04_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaeb156edee3b3c89b68b51df1f396a61f", null ], + [ "BSP_IO_PORT_05_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaceb466e44e04e3b0ab04a7f10003a8be", null ], + [ "BSP_IO_PORT_05_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aacf43fded0d1c0e1888ec9ae765ddf5f2", null ], + [ "BSP_IO_PORT_05_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaab1bcef9f45fb16232cc5913697eed32", null ], + [ "BSP_IO_PORT_06_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae9d15e574de9e35f7e1197c95d05dad9", null ], + [ "BSP_IO_PORT_06_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa95398234ddf9c5235901f089d4e81662", null ], + [ "BSP_IO_PORT_07_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6569ae616e2c7ec066f05618be44d35a", null ], + [ "BSP_IO_PORT_07_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae3e273b0a415a41e1f4e3ae91817c186", null ], + [ "BSP_IO_PORT_07_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa88e147f4775b65d5c96a282684a408c8", null ], + [ "BSP_IO_PORT_08_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad47cbb33ca5c9f12ee8dca084e3062d3", null ], + [ "BSP_IO_PORT_08_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaaedcbffa95e268f197778af394a4bf35", null ], + [ "BSP_IO_PORT_08_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6c298d5d898981f883b4b01f90e5c996", null ], + [ "BSP_IO_PORT_09_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadb3e4e605bcb1d788367185e4058982f", null ], + [ "BSP_IO_PORT_09_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf9970a4d1a41e6482fad460393a196a1", null ], + [ "BSP_IO_PORT_10_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8ef0f2b6cc6de032c23c371dafc6004f", null ], + [ "BSP_IO_PORT_10_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0623a8fae8511929239804f47b76dbab", null ], + [ "BSP_IO_PORT_11_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa125041643933f0bc07f32f14887bdf9c", null ], + [ "BSP_IO_PORT_11_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab951cf766f9cd671ae093a141bc0c49a", null ], + [ "BSP_IO_PORT_12_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabaaa47451e1390c478c5b2a1725e6496", null ], + [ "BSP_IO_PORT_12_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa41f8c9cb94f726c7030df2052fd79774", null ], + [ "BSP_IO_PORT_13_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0ed7d51f576b741e15330313031c2216", null ], + [ "BSP_IO_PORT_13_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2014abe37005233fad759d8de134796a", null ], + [ "BSP_IO_PORT_13_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad24ad8bbfa5f6d10db6ff8dc75eadef5", null ], + [ "BSP_IO_PORT_14_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad20c513c1e1b64b683255e3b3b34b09a", null ], + [ "BSP_IO_PORT_14_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7bf44c9d323051836f7cbdc7e9da06de", null ], + [ "BSP_IO_PORT_15_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa23d463236f6411d0c90196dabcc9c5cf", null ], + [ "BSP_IO_PORT_15_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa191310dd2b5e6a16244b452a76983735", null ], + [ "BSP_IO_PORT_16_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae35842723dba01d6ced15e6349ad2d8e", null ], + [ "BSP_IO_PORT_16_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa922ad01a7323cb74f484964dc5d66697", null ], + [ "BSP_IO_PORT_17_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaae0e1e9e69f942b9db5e95ff83323ad4", null ], + [ "BSP_IO_PORT_17_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa9e537caa46d62591f1a698b30897ee2", null ], + [ "BSP_IO_PORT_17_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa16ff4369ccc2eb0e6447af953bc94500", null ], + [ "BSP_IO_PORT_18_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa3c395ad7ae5d1d25edc8ba2a536d0525", null ], + [ "BSP_IO_PORT_18_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac2479bdb7c292438a9d7c3dd4f48a16a", null ], + [ "BSP_IO_PORT_19_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadab728bf7f83ae6d642836403d5d2dc1", null ], + [ "BSP_IO_PORT_19_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa1628f1c03dc3bfe49f118a6bb2400c53", null ], + [ "BSP_IO_PORT_20_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa53d05b3cda0c467bb7f5ed5999f2ab8f", null ], + [ "BSP_IO_PORT_20_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaaf1af3c7ee0c71fde7bfd1cd49949123", null ], + [ "BSP_IO_PORT_20_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac47b0fc7594eb9f9b3b8b8ad31b464ec", null ], + [ "BSP_IO_PORT_21_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa26c218a01d621d492389ce4f74597f55", null ], + [ "BSP_IO_PORT_21_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5dfe885cc0ee6d129a7759c8ffecfd7e", null ], + [ "BSP_IO_PORT_22_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5c7fa78ba5a0152298956fda6cf85c5e", null ], + [ "BSP_IO_PORT_22_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa9ddc4ada31ca968e9b166cd11b440143", null ], + [ "BSP_IO_PORT_23_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab4d640dac1a6dff63f33c79ee1e20c9e", null ], + [ "BSP_IO_PORT_23_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa98b1d268ef5f45e6751c0a99139acc5c", null ], + [ "BSP_IO_PORT_24_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa40b055b032c42ad42b0d1878a4a52d73", null ], + [ "BSP_IO_PORT_24_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa39f4c9b8a1bfe125213595ecc0b45df0", null ], + [ "BSP_IO_PORT_25_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa49e414efa6d0d02c604aac05bb9778db", null ], + [ "BSP_IO_PORT_25_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf117a1aa77a1a547745adf145d8dc77e", null ], + [ "BSP_IO_PORT_26_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf4eff0573f5c549da8c41d0b38166e66", null ], + [ "BSP_IO_PORT_26_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2a3374a2fd5198a534ee4a728349e13f", null ], + [ "BSP_IO_PORT_27_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa1787bfc47089bd96d33fff7bad1153d1", null ], + [ "BSP_IO_PORT_27_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa4a41ab4915afe1b7a374411fe9eb196e", null ], + [ "BSP_IO_PORT_28_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa614cf023157b36d3e2162e11318abc31", null ], + [ "BSP_IO_PORT_28_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf8c5571fbe78f2c5e6a767c13aec041c", null ], + [ "BSP_IO_PORT_29_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa57ff3c85ce33930afe04e3802c55227f", null ], + [ "BSP_IO_PORT_29_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2f376ba6a57ea3ac2d60a499a0f57c46", null ], + [ "BSP_IO_PORT_30_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2df8908dd4850253d394bc3b7e685a75", null ], + [ "BSP_IO_PORT_30_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaaee42cef11c4a58e9e5aa68fd382299b", null ], + [ "BSP_IO_PORT_31_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadc72aebfb0e4a967a56c0e6b9d00ef18", null ], + [ "BSP_IO_PORT_31_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabc8eb75642cdbdaac75d88a34278250b", null ], + [ "BSP_IO_PORT_32_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac53d38f374d54699a1622468faedc544", null ], + [ "BSP_IO_PORT_32_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac17f65dbf85a6c6e746f1bf21aa934db", null ], + [ "BSP_IO_PORT_33_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad9a5407f94f35c91c7d98c0c91ffd975", null ], + [ "BSP_IO_PORT_33_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa62d85ff211777b182617b334c8f7e7b0", null ], + [ "BSP_IO_PORT_34_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab5b1771adf3821c23b1c4cfbeea5b4f5", null ], + [ "BSP_IO_PORT_34_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae8415d4c07fce74af51a792896f3777e", null ], + [ "BSP_IO_PORT_35_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0f2b7d0278bf5dcbe1a9d7b9cefd0c15", null ], + [ "BSP_IO_PORT_35_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa25fdf456c4b05c5e15f51d615c3fa673", null ], + [ "BSP_IO_PORT_36_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadd39c324258c968a575e24a4fa7ff354", null ], + [ "BSP_IO_PORT_36_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8d452d6083512df8aa8bcef4815ad8b8", null ], + [ "BSP_IO_PORT_37_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5f9f37be21799183925449eda63b433", null ], + [ "BSP_IO_PORT_37_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2fae9399a986654ad829fd957a0b5129", null ], + [ "BSP_IO_PORT_37_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa59817ac0e653810d530b8bb4a74305d6", null ], + [ "BSP_IO_PORT_38_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaba0a89ecb1ad6357f0ca6ca8067ff000", null ], + [ "BSP_IO_PORT_38_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa9406041975509fcccff7d7dd93e786f3", null ], + [ "BSP_IO_PORT_39_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0cd29a6c518b2c8e67932c1e8d6a62d4", null ], + [ "BSP_IO_PORT_39_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa4f0e2180e0a141f1ef73934fa9c340d0", null ], + [ "BSP_IO_PORT_39_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf0ecf908b8d4ce84a33b69ca4fdabca4", null ], + [ "BSP_IO_PORT_40_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2d28483ae8cdc5474deca88e6bfe1dee", null ], + [ "BSP_IO_PORT_40_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa63642ca9b2805ff92be0aa0bf7a66a9a", null ], + [ "BSP_IO_PORT_40_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6f5ee1365a8b7fc827fd3ceb3a4a8cb7", null ], + [ "BSP_IO_PORT_41_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab20b0a224aa92ffab0e0405e33c7e61c", null ], + [ "BSP_IO_PORT_41_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa72604af4694f399a0eca581ec5b897b8", null ], + [ "BSP_IO_PORT_42_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa51d3b48ed479b2ee3a46dc996d04b435", null ], + [ "BSP_IO_PORT_42_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aacaf9e71dadad94b9b321585c69de0cd1", null ], + [ "BSP_IO_PORT_42_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa7c6e61f76d6c3cc9a9dfd2f091bb0b3", null ], + [ "BSP_IO_PORT_42_PIN_03", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaeffcc1d1f99236ae009d76eab5e0913d", null ], + [ "BSP_IO_PORT_42_PIN_04", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa4f69d60a8685d441c35495d9d7dd09b8", null ], + [ "BSP_IO_PORT_43_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa829088e17268397d6ddb14182a380e51", null ], + [ "BSP_IO_PORT_43_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2c579ae3361bf6dfb4191b4da60910fe", null ], + [ "BSP_IO_PORT_43_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa252a1fcd0f46a31afcf798e301bdba16", null ], + [ "BSP_IO_PORT_43_PIN_03", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa37a5927be9bc40f6df0f64adc84d6006", null ], + [ "BSP_IO_PORT_44_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae4d19f207d3548baf4e742bfca68ae46", null ], + [ "BSP_IO_PORT_44_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae3f2fd01c62e1ae8522ed5137ad07e5e", null ], + [ "BSP_IO_PORT_44_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa73f9c0b7f80c8385d77008b1e785eb88", null ], + [ "BSP_IO_PORT_44_PIN_03", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaff015065db131ce31c3e483ab8e9bb38", null ], + [ "BSP_IO_PORT_45_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac300c1ff8aaf37d2d3c840341888909a", null ], + [ "BSP_IO_PORT_45_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa52b16585d757e097a7ff851e74748973", null ], + [ "BSP_IO_PORT_45_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabfeca2fc1cd38d80e5e31eb3c5032b83", null ], + [ "BSP_IO_PORT_45_PIN_03", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5d15277bbd25881faf865b00f8c46c1", null ], + [ "BSP_IO_PORT_46_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5e49717d4d34dea314976288c20c6ee", null ], + [ "BSP_IO_PORT_46_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa430a0d48fb4e6fc1f5a358a5c1b17d8f", null ], + [ "BSP_IO_PORT_46_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2818abb4ea0fa720d53bf0a0ba923870", null ], + [ "BSP_IO_PORT_46_PIN_03", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa03dceeb58f56dc9a21b5bfa3176ab217", null ], + [ "BSP_IO_PORT_47_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafc63a732535ea65c522c06582757d4bb", null ], + [ "BSP_IO_PORT_47_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa01a4990336c06cef1fea22c9ff2bfb2d", null ], + [ "BSP_IO_PORT_47_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf98bbb6311738366fe772c4a0e320824", null ], + [ "BSP_IO_PORT_47_PIN_03", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafbb3e071ee0dcccf61805c9bebb7befa", null ], + [ "BSP_IO_PORT_48_PIN_00", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa57c5991f29df32eb1f4cd1c82082725b", null ], + [ "BSP_IO_PORT_48_PIN_01", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa841054432251d0c7343d32144cee6789", null ], + [ "BSP_IO_PORT_48_PIN_02", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa38e1abc8d5cae949e3f1e82f9f107cc3", null ], + [ "BSP_IO_PORT_48_PIN_03", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5f53758d43bb074b01e3cba77cbb5cde", null ], + [ "BSP_IO_PORT_48_PIN_04", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa60d189d33295043480ca9e91989fb126", null ], + [ "BSP_IO_NMI", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa3bf300bb3aa746665b49bc8200bd7963", null ], + [ "BSP_IO_TMS_SWDIO", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafd917ebff207c1b9456898a143d10c38", null ], + [ "BSP_IO_TDO", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae97fc09171edc1a3c841cab7a1020fb2", null ], + [ "BSP_IO_AUDIO_CLK1", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5116644c1d06c3af3240908b62f1a1e1", null ], + [ "BSP_IO_AUDIO_CLK2", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa456bca4a2c1ee49955d22b162753d000", null ], + [ "BSP_IO_SD0_CLK", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabccd7e7760466f8c666ae02e8d84267e", null ], + [ "BSP_IO_SD0_CMD", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0ef28251d02b2be71736cd6709324cf7", null ], + [ "BSP_IO_SD0_RST_N", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa8daf070713048cb35f873e0490068df", null ], + [ "BSP_IO_SD0_DATA0", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa03979860d2850a4790a85a7012fff5b4", null ], + [ "BSP_IO_SD0_DATA1", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5590555e0fa70d287a8a215b9a703de7", null ], + [ "BSP_IO_SD0_DATA2", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa73326eeb5a58de9766418893bcc1a284", null ], + [ "BSP_IO_SD0_DATA3", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf2cf666df832a706dfdd973aac8406d8", null ], + [ "BSP_IO_SD0_DATA4", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa876a99deff86f8d09f1d96112a1b2dc3", null ], + [ "BSP_IO_SD0_DATA5", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aade0f69819cb635c9127516bcb86f5886", null ], + [ "BSP_IO_SD0_DATA6", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa3afa25e16d31202f5367150ce88e768e", null ], + [ "BSP_IO_SD0_DATA7", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5e1dcfb012ca07ec05c7a5da14ad055", null ], + [ "BSP_IO_SD1_CLK", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad2f6c4dec46159cddb6d967a551c7c2a", null ], + [ "BSP_IO_SD1_CMD", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa405fdd3dc66955a4858cc69a19016933", null ], + [ "BSP_IO_SD1_DATA0", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafbc2d3122913859d09d249bf264d4136", null ], + [ "BSP_IO_SD1_DATA1", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa67d5209707eab3f61c4eb9bbbd1ce73f", null ], + [ "BSP_IO_SD1_DATA2", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaeaedf55bf5c303fdb8fd62b7df65f2e4", null ], + [ "BSP_IO_SD1_DATA3", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae758bfc092956cb39f9013b921753657", null ], + [ "BSP_IO_QSPI0_SPCLK", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaef51c0ad05848a82f97fa49a29f66f37", null ], + [ "BSP_IO_QSPI0_IO0", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6d353753e9a3f1ec95967f7e7fb630f5", null ], + [ "BSP_IO_QSPI0_IO1", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7127f17a3754e1842aafd8c5b5d2062a", null ], + [ "BSP_IO_QSPI0_IO2", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabcc1e97ac8b56e357b24ec536ddb4269", null ], + [ "BSP_IO_QSPI0_IO3", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa62438f5462fd98d683368b464b18e4c", null ], + [ "BSP_IO_QSPI0_SSL", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab0e97936a0410619b613d3e8ac4b0de1", null ], + [ "BSP_IO_QSPI1_SPCLK", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8b11501a458d5b7a82e5bdc80cb9252a", null ], + [ "BSP_IO_QSPI1_IO0", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5394e222d99a1ca17622c3d1c8a5c94d", null ], + [ "BSP_IO_QSPI1_IO1", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7a1d5c0e646b87a381b9f1a829e2909b", null ], + [ "BSP_IO_QSPI1_IO2", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa65598f991476837f7822ce44244e349e", null ], + [ "BSP_IO_QSPI1_IO3", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa1e9673eef7a96cf9f46b8f75421075dd", null ], + [ "BSP_IO_QSPI1_SSL", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa7c30f479d99f883ee4b4fa27b6ae4f5", null ], + [ "BSP_IO_QSPI_RESET_N", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8248388efb79c97a26893bb2de4c8d5b", null ], + [ "BSP_IO_QSPI_WP_N", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab466c8da8ed341f72fdc9e4059d9025c", null ], + [ "BSP_IO_QSPI_INT_N", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa12bccfc806539758e2b3a47e6ea93ca9", null ], + [ "BSP_IO_WDTOVF_PERROUT_N", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7901524777e247b132a543d19b8ddd4f", null ], + [ "BSP_IO_RIIC0_SDA", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaba9b7c124ac20c50a71563d64a068fc9", null ], + [ "BSP_IO_RIIC0_SCL", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad77d8a140615854897936e80b31f0670", null ], + [ "BSP_IO_RIIC1_SDA", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6828c5428be0bd1a3a5b79e111871411", null ], + [ "BSP_IO_RIIC1_SCL", "group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8c0b73a965fe066d0d58a4fb513d84dc", null ] + ] ], + [ "bsp_sd_channel_t", "group___b_s_p___i_o.html#gad0c359892ab6323f72558fb6f0efbb39", [ + [ "BSP_SD_CHANNEL_0", "group___b_s_p___i_o.html#ggad0c359892ab6323f72558fb6f0efbb39a78721ea751aeb12179ca343858f91c7b", null ], + [ "BSP_SD_CHANNEL_1", "group___b_s_p___i_o.html#ggad0c359892ab6323f72558fb6f0efbb39a982209b33546c7b97b98e0e182fee582", null ] + ] ], + [ "bsp_ethernet_channel_t", "group___b_s_p___i_o.html#ga7a9217abd402bee215bab2874db8dbcd", [ + [ "BSP_ETHERNET_CHANNEL_0", "group___b_s_p___i_o.html#gga7a9217abd402bee215bab2874db8dbcdadf0b3becd8ccf61e2336c87d51ebdb92", null ], + [ "BSP_ETHERNET_CHANNEL_1", "group___b_s_p___i_o.html#gga7a9217abd402bee215bab2874db8dbcdac1123d8c4918b71283ddd440f9f6b679", null ] + ] ], + [ "bsp_sd_voltage_t", "group___b_s_p___i_o.html#ga5909e53671d51b521963bb4a9c5bb961", [ + [ "BSP_SD_VOLTAGE_33", "group___b_s_p___i_o.html#gga5909e53671d51b521963bb4a9c5bb961a9a5b3ea4f1555314b07a3bf5567d96b5", null ], + [ "BSP_SD_VOLTAGE_18", "group___b_s_p___i_o.html#gga5909e53671d51b521963bb4a9c5bb961ad6d758c60ce16e34187d1c3ea956c983", null ] + ] ], + [ "bsp_qspi_voltage_t", "group___b_s_p___i_o.html#gac10820a16ee9dcbe7fbbd21ad81eee9f", [ + [ "BSP_QSPI_VOLTAGE_33", "group___b_s_p___i_o.html#ggac10820a16ee9dcbe7fbbd21ad81eee9fa87d2f4e20a62d305f5a9cd99e28093b1", null ], + [ "BSP_QSPI_VOLTAGE_18", "group___b_s_p___i_o.html#ggac10820a16ee9dcbe7fbbd21ad81eee9fa7b2e7dbd3b7011e86d86d71652eb843a", null ] + ] ], + [ "bsp_xspi_voltage_t", "group___b_s_p___i_o.html#gaca40cd8c80dc5bf04d65d3d5db9e3d7c", [ + [ "BSP_XSPI_VOLTAGE_33", "group___b_s_p___i_o.html#ggaca40cd8c80dc5bf04d65d3d5db9e3d7ca731b6ae8493cc93ec326574439aa983d", null ], + [ "BSP_XSPI_VOLTAGE_18", "group___b_s_p___i_o.html#ggaca40cd8c80dc5bf04d65d3d5db9e3d7caf71bc73917bb7416833e3dca8a41a1b0", null ], + [ "BSP_XSPI_VOLTAGE_25", "group___b_s_p___i_o.html#ggaca40cd8c80dc5bf04d65d3d5db9e3d7ca37e1061cff55bbab7d5ddae4071322dd", null ] + ] ], + [ "bsp_ethernet_voltage_t", "group___b_s_p___i_o.html#ga0eaa3fb56a6c45bb8725d7ccc3c7c67e", [ + [ "BSP_ETHERNET_VOLTAGE_33", "group___b_s_p___i_o.html#gga0eaa3fb56a6c45bb8725d7ccc3c7c67ea74ec767baac2681f30afba30a09b80f5", null ], + [ "BSP_ETHERNET_VOLTAGE_18", "group___b_s_p___i_o.html#gga0eaa3fb56a6c45bb8725d7ccc3c7c67ea188654c0888f5e6daa99f0f456128ce4", null ], + [ "BSP_ETHERNET_VOLTAGE_25", "group___b_s_p___i_o.html#gga0eaa3fb56a6c45bb8725d7ccc3c7c67eaaadd11c1476569d301871c45eae8d9eb", null ] + ] ], + [ "bsp_i3c_voltage_t", "group___b_s_p___i_o.html#gac4cc2c33eed8a21f90fac99d323a2b85", [ + [ "BSP_I3C_VOLTAGE_18", "group___b_s_p___i_o.html#ggac4cc2c33eed8a21f90fac99d323a2b85a00b60308d9f46162d50bb8014fe345d0", null ], + [ "BSP_I3C_VOLTAGE_12", "group___b_s_p___i_o.html#ggac4cc2c33eed8a21f90fac99d323a2b85a341c63122ad909d8ea4a615bdb3a9f8d", null ] + ] ], + [ "bsp_ethernet_mode_t", "group___b_s_p___i_o.html#ga96797df60510eb9bc4a73613de51fae5", [ + [ "BSP_ETHERNET_MODE_RMII", "group___b_s_p___i_o.html#gga96797df60510eb9bc4a73613de51fae5a2a654e5a38c212f306093f5e60218a22", null ], + [ "BSP_ETHERNET_MODE_MII", "group___b_s_p___i_o.html#gga96797df60510eb9bc4a73613de51fae5a96490fa59d311791525aa664edd21abd", null ] + ] ], + [ "bsp_i3c_mode_t", "group___b_s_p___i_o.html#gaf63bd80b976004bd5ed7fd251fcdf1b4", [ + [ "BSP_I3C_MODE_STB", "group___b_s_p___i_o.html#ggaf63bd80b976004bd5ed7fd251fcdf1b4a7bfb9e2a71ee2dcc6910de37e977ccc8", null ], + [ "BSP_I3C_MODE_NOR", "group___b_s_p___i_o.html#ggaf63bd80b976004bd5ed7fd251fcdf1b4a36240372d534ab9cbe23287aa4020805", null ] + ] ], + [ "bsp_bypass_oscillator_t", "group___b_s_p___i_o.html#ga78e68e2247154764cd7d387d3b191095", [ + [ "BSP_BYPASS_OSCILLATOR_RTC", "group___b_s_p___i_o.html#gga78e68e2247154764cd7d387d3b191095a32152264d3d4ea0b5e8f3e4bb36346a8", null ], + [ "BSP_BYPASS_OSCILLATOR_AUDIO", "group___b_s_p___i_o.html#gga78e68e2247154764cd7d387d3b191095a4e41231154d741945cb439385369bdf3", null ], + [ "BSP_BYPASS_OSCILLATOR_EMCLK", "group___b_s_p___i_o.html#gga78e68e2247154764cd7d387d3b191095a9305c0e423f1fbafdd0e0e19e08bdbae", null ] + ] ], + [ "bsp_bypass_mode_t", "group___b_s_p___i_o.html#ga65987c1da1d49f85463de102d5d24c2e", [ + [ "BSP_BYPASS_MODE_CRYSTAL_OSC", "group___b_s_p___i_o.html#gga65987c1da1d49f85463de102d5d24c2eafc7271d2760ab1dcd2e368e2eb7f9a7a", null ], + [ "BSP_BYPASS_MODE_EXTERNAL_CLK", "group___b_s_p___i_o.html#gga65987c1da1d49f85463de102d5d24c2eaf8967b77658e57030b8e3b5611049e09", null ], + [ "BSP_BYPASS_MODE_POWER_DOWN", "group___b_s_p___i_o.html#gga65987c1da1d49f85463de102d5d24c2ea018ff64d40ae82d9f9014b637ba79869", null ] + ] ], + [ "bsp_bypass_freq_range_t", "group___b_s_p___i_o.html#gabb6374b9eb754bff909bb9b0d25a04fb", [ + [ "BSP_BYPASS_FREQ_RANGE_1MHZ", "group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fbaf7dda67eeadcf51f16aff39c09f7614b", null ], + [ "BSP_BYPASS_FREQ_RANGE_12MHZ", "group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fbad943f5284b3332ff337bc791ab36ffd4", null ], + [ "BSP_BYPASS_FREQ_RANGE_24MHZ", "group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fba0b0d404e8b95a60f5f6f8ce3f3b71ff4", null ], + [ "BSP_BYPASS_FREQ_RANGE_48MHZ", "group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fba13b74446c67d06c3feffa96cd34a6dc3", null ] ] ], [ "R_BSP_PinRead", "group___b_s_p___i_o.html#ga6764c3fac52569cadd44b83a6d3f432d", null ], [ "R_BSP_PinWrite", "group___b_s_p___i_o.html#ga33cef14f93543bcb3531b4f2e377c5c4", null ], [ "R_BSP_PinAccessEnable", "group___b_s_p___i_o.html#ga0ad2123f7a5152cf108883163581f11b", null ], - [ "R_BSP_PinAccessDisable", "group___b_s_p___i_o.html#gab5aab592b5fbbfa18d542c0812850b98", null ] + [ "R_BSP_PinAccessDisable", "group___b_s_p___i_o.html#gab5aab592b5fbbfa18d542c0812850b98", null ], + [ "R_BSP_OENAccessEnable", "group___b_s_p___i_o.html#ga1366a1a0609b52482af37acf4b1354b8", null ], + [ "R_BSP_OENAccessDisable", "group___b_s_p___i_o.html#ga9d18d53cf22913ba5379a9b2b78f8af9", null ], + [ "R_BSP_EthernetModeCfg", "group___b_s_p___i_o.html#ga12a7886e4da364860e1bd6236cdba973", null ], + [ "R_BSP_SDVoltageModeCfg", "group___b_s_p___i_o.html#ga583ef49050efabf390c97e6e4633e173", null ], + [ "R_BSP_QSPIVoltageModeCfg", "group___b_s_p___i_o.html#ga273b018bc22b835afd630e6b46a3cc4e", null ], + [ "R_BSP_XSPIVoltageModeCfg", "group___b_s_p___i_o.html#ga59bb3fd83a257bd92926ea266faa9fd8", null ], + [ "R_BSP_EthernetVoltageModeCfg", "group___b_s_p___i_o.html#gaee8fdb90b591063571f73dc23d4306b4", null ], + [ "R_BSP_I3CControlCfg", "group___b_s_p___i_o.html#gaea02bfef9058ac480e59f4175124c4da", null ], + [ "R_BSP_BypassModeCfg", "group___b_s_p___i_o.html#gaa07b15ea5255e2d6ad2a8fb9231adcda", null ], + [ "R_BSP_XSPIOutputEnableCfg", "group___b_s_p___i_o.html#ga3c75c9c53842401896a9feb2e969c5b0", null ] ]; \ No newline at end of file diff --git a/group___b_s_p___m_c_u.html b/group___b_s_p___m_c_u.html index 492fb70..5ec79ea 100644 --- a/group___b_s_p___m_c_u.html +++ b/group___b_s_p___m_c_u.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: MPU Board Support Package +RZV Flexible Software Package Documentation: MPU Board Support Package @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + + + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Functions | @@ -127,25 +195,27 @@   void SystemInit_S (void)   - __attribute__ ((optimize("-O1"))) -  + __attribute__ ((naked)) +  uint32_t R_FSP_SystemClockHzGet (fsp_priv_clock_t clock)   +fsp_err_t R_BSP_ClockSelectorSet (fsp_priv_clock_selector_t selector, uint32_t clock_sel) +  +fsp_err_t R_BSP_ClockDividerSet (fsp_priv_clock_divider_t divider, uint32_t clock_div) +  fsp_err_t R_BSP_VersionGet (fsp_version_t *p_version)   -__STATIC_INLINE IRQn_Type R_FSP_CurrentIrqGet (void) -  -__STATIC_INLINE bsp_unique_id_t const * R_BSP_UniqueIdGet () -  void R_BSP_SoftwareDelay (uint32_t delay, bsp_delay_units_t units)   fsp_err_t R_BSP_GroupIrqWrite (bsp_grp_irq_t irq, void(*p_callback)(bsp_grp_irq_t irq))   -void R_BSP_NonSecureEnter (void) -  +__STATIC_INLINE IRQn_Type R_FSP_CurrentIrqGet (void) +  +__STATIC_INLINE bsp_unique_id_t const * R_BSP_UniqueIdGet () + 

    Detailed Description

    -

    The BSP is responsible for getting the MPU from reset to the user's application. Before reaching the user's application, the BSP sets up the stacks, heap, interrupts and C runtime environment.

    +

    The BSP is responsible for getting the MCU from reset to the user's application. Before reaching the user's application, the BSP sets up the stacks, heap, clocks, interrupts, C runtime environment, and stack monitor.

    Overview

    @@ -184,8 +258,12 @@

    BSP Features

    BSP Clock Configuration

    -

    RZ/V FSP does not support setting clock frequency. This FSP assumes that the clock frequency is set on the main core side. By entering the information set in the main core into the Clocks tab of the Configuration editor, it is possible to refer this information from the program.

    -

    +

    All system clocks are set up during BSP initialization based on the settings in bsp_clock_cfg.h. These settings are derived from clock configuration information provided from the Configuration editor Clocks tab.

    +
      +
    • Clock configuration is performed prior to initializing the C runtime environment to speed up the startup process.
    • +
    • The BSP implements the required delays to allow the selected clock to stabilize.
    • +
    • The BSP will configure the CMSIS SystemCoreClock variable after clock initialization with the current system clock frequency.
    • +

    System Interrupts

    As RZ MPUs are based on the Cortex-M ARM architecture, the NVIC Nested Vectored Interrupt Controller (NVIC) handles exceptions and interrupt configuration, prioritization and interrupt masking. In the ARM architecture, the NVIC handles exceptions. Some exceptions are known as System Exceptions. System exceptions are statically located at the "top" of the vector table and occupy vector numbers 1 to 15. Vector zero is reserved for the MSP Main Stack Pointer (MSP). The remaining 15 system exceptions are shown below:

    @@ -216,7 +294,8 @@

    RZ MPU supports 480 interrupts by NVIC, and any factor can be registered in the vector table from the Interrupts tab of the Configuration editor.

    BSP Weak Symbols

    -

    The weak attribute causes the declaration to be emitted as a weak symbol rather than a global. A weak symbol is one that can be overridden by an accompanying strong reference with the same name. When the BSP declares a function as weak, user code can define the same function and it will be used in place of the BSP function.

    +

    You might wonder how the BSP is able to place ISR addresses in the NVIC table without the user having explicitly defined one. All that is required by the BSP is that the interrupt event be given a priority.

    +

    This is accomplished through the use of the 'weak' attribute. The weak attribute causes the declaration to be emitted as a weak symbol rather than a global. A weak symbol is one that can be overridden by an accompanying strong reference with the same name. When the BSP declares a function as weak, user code can define the same function and it will be used in place of the BSP function. By defining all possible interrupt sources as weak, the vector table can be built at compile time and any user declarations (strong references) will be used at runtime.

    Weak symbols are supported for ELF targets and also for a.out targets when using the GNU assembler and linker.

    Note that in CMSIS system.c, there is also a weak definition (and a function body) for the Warm Start callback function R_BSP_WarmStart(). Because this function is defined in the same file as the weak declaration, it will be called as the 'default' implementation. The function may be overridden by the user by copying the body into their user application and modifying it as necessary. The linker identifies this as the 'strong' reference and uses it.

    @@ -229,7 +308,7 @@

    This BSP configuration allows the user to skip the FSP C runtime initialization code by setting the "C Runtime Initialization" to "Disabled" on the BSP tab of the Configuration editor. Disabling this option is useful in cases where a non-standard linker script is being used or other modifications to the runtime initialization are desired. If this macro is disabled, the user must use the 'Post Clock Init' event from the warm start (described above) to run their own runtime initialization code.

    Heap Allocation

    -

    The relatively low amount of on-chip SRAM available and lack of memory protection in an MPU means that heap use must be very carefully controlled to avoid memory leaks, overruns and attempted overallocation. Further, many RTOSes provide their own dynamic memory allocation system. For these reasons the default heap size is set at 0 bytes, effectively disabling dynamic memory. If it is required for an application setting a positive value to the "Heap size (bytes)" option in the RZ/V2L Common configurations on the BSP tab will allocate a heap.

    +

    The relatively low amount of on-chip SRAM available and lack of memory protection in an MPU means that heap use must be very carefully controlled to avoid memory leaks, overruns and attempted overallocation. Further, many RTOSes provide their own dynamic memory allocation system. For these reasons the default heap size is set at 0 bytes, effectively disabling dynamic memory. If it is required for an application setting a positive value to the "Heap size (bytes)" option in the Common configurations on the BSP tab will allocate a heap.

    Note
    When using printf/sprintf (and other variants) to output floating point numbers a heap is required. A minimum size of 0x1000 (4096) bytes is recommended when starting development in this case.

    Error Logging

    @@ -243,7 +322,7 @@

    Software Delay

    Implements a blocking software delay. A delay can be specified in microseconds, milliseconds or seconds. The delay is implemented based on the system clock rate.

    -
    /* Delay at least 1 second. Depending on the number of wait states required for the region of memory
    * that the software_delay_loop has been linked in this could take longer. The default value of
    * BSP_DELAY_LOOP_CYCLES is 100. One loop running time of software_delay_loop can be modified by redefining this
    * macro. BSP_DELAY_UNITS_SECONDS, BSP_DELAY_UNITS_MILLISECONDS, and BSP_DELAY_UNITS_MICROSECONDS can all be used
    * with R_BSP_SoftwareDelay. */

    +
    /* Delay at least 1 second. Depending on the number of wait states required for the region of memory
    * that the software_delay_loop has been linked in this could take longer. The default is 4 cycles per loop.
    * This can be modified by redefining DELAY_LOOP_CYCLES. BSP_DELAY_UNITS_SECONDS, BSP_DELAY_UNITS_MILLISECONDS,
    * and BSP_DELAY_UNITS_MICROSECONDS can all be used with R_BSP_SoftwareDelay. */

    Critical Section Macros

    Implements a critical section. Some MPUs (MPUs with the BASEPRI register) support allowing high priority interrupts to execute during critical sections. On these MPUs, interrupts with priority less than or equal to BSP_CFG_IRQ_MASK_LEVEL_FOR_CRITICAL_SECTION are not serviced in critical sections. Interrupts with higher priority than BSP_CFG_IRQ_MASK_LEVEL_FOR_CRITICAL_SECTION still execute in critical sections.

    FSP_CRITICAL_SECTION_DEFINE;
    /* Store the current interrupt posture. */
    /* Interrupts cannot run in this section unless their priority is less than BSP_CFG_IRQ_MASK_LEVEL_FOR_CRITICAL_SECTION. */
    /* Restore saved interrupt posture. */

    @@ -320,14 +399,105 @@

    Enabled Select if the C runtime initialization in the BSP is to be used. If disabled, use the BSP_WARM_START_POST_CLOCK event to run user defined equivalent.

    +

    +Secure state of CR8 cores (RZ/V2H)

    +

    The default setting for bus access from the Cortex-R8 core is Non-Secure access.

    +

    If you want to change to secure and privileged access, change the setting value of the SYS_MSTACCCTL2 register in src/cr8_start.c to 0x00999999.

    +

    src/cr8_start.c

    + +

    Modules

     RZV2H
     
     RZV2L
     
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -348,120 +518,195 @@

    - - - -

    Macros

    #define R_BSP_MODULE_START(ip, ch)
     
    #define R_BSP_MODULE_STOP(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_GTM(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_GTM(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_GPT(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_GPT(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_CANFD(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_CANFD(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_ADC(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_ADC(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_MHU(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_MHU(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_POEG(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_POEG(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_RIIC(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_RIIC(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_SCI(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_SCI(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_RSPI(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_RSPI(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_TSU(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_TSU(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_SCIF(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_SCIF(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_DMAC(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_DMAC(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_WDT(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_WDT(ip, ch)
     
    #define R_BSP_MODULE_START_FSP_IP_MTU3(ip, ch)
     
    #define R_BSP_MODULE_STOP_FSP_IP_MTU3(ip, ch)
     
    #define R_BSP_MSTP_START(ip, channel)
     
    #define R_BSP_MSTP_STOP(ip, channel)
     
    #define BSP_IRQ_DISABLED
     
    #define FSP_RETURN(err)
     
    #define FSP_ERROR_LOG(err)
     
    #define FSP_ASSERT(a)
     
    #define FSP_ERROR_RETURN(a, err)
     
    #define FSP_CRITICAL_SECTION_ENTER
     
    #define FSP_CRITICAL_SECTION_EXIT
     
    #define FSP_INVALID_VECTOR
     
    #define BSP_CFG_HANDLE_UNRECOVERABLE_ERROR(x)
     
    #define BSP_STACK_ALIGNMENT
     
    #define BSP_IRQ_DISABLED
     
    #define FSP_RETURN(err)
     
    #define BSP_STACK_ALIGNMENT
     
    #define R_BSP_MSTPSTART(ip, ch)
     
    #define R_BSP_MSTPSTOP(ip, ch)
     
    - - + + + +

    Enumerations

    enum  fsp_ip_t
     
    enum  bsp_warm_start_event_t
     
    enum  bsp_delay_units_t
     
    enum  bsp_grp_irq_t
     
    enum  bsp_warm_start_event_t
     
    enum  bsp_warm_start_event_t
     
    + + + + +

    Variables

    uint32_t SystemCoreClock
     
    uint32_t SystemCoreClock
     
    const fsp_version_t g_bsp_version
     Default initialization function. More...
     
    const fsp_version_t g_bsp_version
     Default initialization function. More...
     

    Macro Definition Documentation

    - -

    ◆ BSP_IRQ_DISABLED

    + +

    ◆ R_BSP_MODULE_START

    - + + + + + + + + + + + + + + +
    #define BSP_IRQ_DISABLED#define R_BSP_MODULE_START( ip,
     ch 
    )
    -

    Used to signify that an interrupt factor is not available.

    +

    Cancels the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be started
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    - -

    ◆ FSP_RETURN

    + +

    ◆ R_BSP_MODULE_STOP

    - + - + + + + + + + + + + +
    #define FSP_RETURN#define R_BSP_MODULE_STOP (  err)ip,
     ch 
    )
    -

    Macro to log and return error without an assertion.

    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    - -

    ◆ FSP_ERROR_LOG

    + +

    ◆ R_BSP_MODULE_START_FSP_IP_GTM

    - + - + + + + + + + + + + +
    #define FSP_ERROR_LOG#define R_BSP_MODULE_START_FSP_IP_GTM (  err)ip,
     ch 
    )
    -

    This function is called before returning an error code. To stop on a runtime error, define fsp_error_log in user code and do required debugging (breakpoints, stack dump, etc) in this function.

    +

    Cancel the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    - -

    ◆ FSP_ASSERT

    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_GTM

    - + - + + + + + + + + + + +
    #define FSP_ASSERT#define R_BSP_MODULE_STOP_FSP_IP_GTM (  a)ip,
     ch 
    )
    -

    Default assertion calls FSP_ERROR_RETURN if condition "a" is false. Used to identify incorrect use of API's in FSP functions.

    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    - -

    ◆ FSP_ERROR_RETURN

    + +

    ◆ R_BSP_MODULE_START_FSP_IP_GPT

    - + - + - + @@ -470,158 +715,1346 @@

    -

    All FSP error codes are returned using this macro. Calls FSP_ERROR_LOG function if condition "a" is false. Used to identify runtime errors in FSP functions.

    +

    Cancel the module stop state.

    +
    Parameters
    +

    #define FSP_ERROR_RETURN#define R_BSP_MODULE_START_FSP_IP_GPT (  a, ip,
     err ch 
    + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    + +
    - -

    ◆ FSP_CRITICAL_SECTION_ENTER

    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_GPT

    - + + + + + + + + + + + + + + +
    #define FSP_CRITICAL_SECTION_ENTER#define R_BSP_MODULE_STOP_FSP_IP_GPT( ip,
     ch 
    )
    -

    This macro temporarily saves the current interrupt state and disables interrupts.

    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    - -

    ◆ FSP_CRITICAL_SECTION_EXIT

    + +

    ◆ R_BSP_MODULE_START_FSP_IP_CANFD

    - + + + + + + + + + + + + + + +
    #define FSP_CRITICAL_SECTION_EXIT#define R_BSP_MODULE_START_FSP_IP_CANFD( ip,
     ch 
    )
    -

    This macro restores the previously saved interrupt state, reenabling interrupts.

    +

    Cancel the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    - -

    ◆ FSP_INVALID_VECTOR

    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_CANFD

    - + + + + + + + + + + + + + + +
    #define FSP_INVALID_VECTOR#define R_BSP_MODULE_STOP_FSP_IP_CANFD( ip,
     ch 
    )
    -

    Used to signify that the requested IRQ vector is not defined in this system.

    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    - -

    ◆ BSP_CFG_HANDLE_UNRECOVERABLE_ERROR

    + +

    ◆ R_BSP_MODULE_START_FSP_IP_ADC

    - + - + + + + + + + + + + +
    #define BSP_CFG_HANDLE_UNRECOVERABLE_ERROR#define R_BSP_MODULE_START_FSP_IP_ADC (  x)ip,
     ch 
    )
    -

    In the event of an unrecoverable error the BSP will by default call the __BKPT() intrinsic function which will alert the user of the error. The user can override this default behavior by defining their own BSP_CFG_HANDLE_UNRECOVERABLE_ERROR macro.

    +

    Cancel the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    - -

    ◆ BSP_STACK_ALIGNMENT

    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_ADC

    - + + + + + + + + + + + + + + + + +
    #define BSP_STACK_ALIGNMENT#define R_BSP_MODULE_STOP_FSP_IP_ADC( ip,
     ch 
    )
    +
    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_START_FSP_IP_MHU

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_START_FSP_IP_MHU( ip,
     ch 
    )
    +
    +

    Cancel the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_MHU

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_STOP_FSP_IP_MHU( ip,
     ch 
    )
    +
    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_START_FSP_IP_POEG

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_START_FSP_IP_POEG( ip,
     ch 
    )
    +
    +

    Cancel the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_POEG

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_STOP_FSP_IP_POEG( ip,
     ch 
    )
    +
    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_START_FSP_IP_RIIC

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_START_FSP_IP_RIIC( ip,
     ch 
    )
    +
    +

    Cancel the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_RIIC

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_STOP_FSP_IP_RIIC( ip,
     ch 
    )
    +
    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_START_FSP_IP_SCI

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_START_FSP_IP_SCI( ip,
     ch 
    )
    +
    +

    Cancel the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_SCI

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_STOP_FSP_IP_SCI( ip,
     ch 
    )
    +
    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_START_FSP_IP_RSPI

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_START_FSP_IP_RSPI( ip,
     ch 
    )
    +
    +

    Cancel the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_RSPI

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_STOP_FSP_IP_RSPI( ip,
     ch 
    )
    +
    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_START_FSP_IP_TSU

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_START_FSP_IP_TSU( ip,
     ch 
    )
    +
    +

    Cancel the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_TSU

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_STOP_FSP_IP_TSU( ip,
     ch 
    )
    +
    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_START_FSP_IP_SCIF

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_START_FSP_IP_SCIF( ip,
     ch 
    )
    +
    +

    Cancel the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_SCIF

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_STOP_FSP_IP_SCIF( ip,
     ch 
    )
    +
    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_START_FSP_IP_DMAC

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_START_FSP_IP_DMAC( ip,
     ch 
    )
    +
    +

    Cancel the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_DMAC

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_STOP_FSP_IP_DMAC( ip,
     ch 
    )
    +
    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_START_FSP_IP_WDT

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_START_FSP_IP_WDT( ip,
     ch 
    )
    +
    +

    Cancel the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_WDT

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_STOP_FSP_IP_WDT( ip,
     ch 
    )
    +
    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_START_FSP_IP_MTU3

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_START_FSP_IP_MTU3( ip,
     ch 
    )
    +
    +

    Cancel the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MODULE_STOP_FSP_IP_MTU3

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MODULE_STOP_FSP_IP_MTU3( ip,
     ch 
    )
    +
    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped
    chThe channel. Use channel 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MSTP_START

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MSTP_START( ip,
     channel 
    )
    +
    +

    Cancels the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be started.
    channelThe channel. Use ch 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ R_BSP_MSTP_STOP

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define R_BSP_MSTP_STOP( ip,
     channel 
    )
    +
    +

    Enables the module stop state.

    +
    Parameters
    + + + +
    ipfsp_ip_t enum value for the module to be stopped.
    channelThe channel. Use ch 0 for modules without channels.
    +
    +
    + +
    +
    + +

    ◆ BSP_IRQ_DISABLED [1/2]

    + +
    +
    + + + + +
    #define BSP_IRQ_DISABLED
    +
    +

    Used to signify that an interrupt factor is not available.

    + +
    +
    + +

    ◆ FSP_RETURN [1/2]

    + +
    +
    + + + + + + + + +
    #define FSP_RETURN( err)
    +
    +

    Macro to log and return error without an assertion.

    + +
    +
    + +

    ◆ FSP_ERROR_LOG [1/2]

    + +
    +
    + + + + + + + + +
    #define FSP_ERROR_LOG( err)
    +
    +

    This function is called before returning an error code. To stop on a runtime error, define fsp_error_log in user code and do required debugging (breakpoints, stack dump, etc) in this function.

    + +
    +
    + +

    ◆ FSP_ASSERT [1/2]

    + +
    +
    + + + + + + + + +
    #define FSP_ASSERT( a)
    +
    +

    Default assertion calls FSP_ERROR_RETURN if condition "a" is false. Used to identify incorrect use of API's in FSP functions.

    + +
    +
    + +

    ◆ FSP_ERROR_RETURN [1/2]

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define FSP_ERROR_RETURN( a,
     err 
    )
    +
    +

    All FSP error codes are returned using this macro. Calls FSP_ERROR_LOG function if condition "a" is false. Used to identify runtime errors in FSP functions.

    + +
    +
    + +

    ◆ FSP_CRITICAL_SECTION_ENTER [1/2]

    + +
    +
    + + + + +
    #define FSP_CRITICAL_SECTION_ENTER
    +
    +

    This macro temporarily saves the current interrupt state and disables interrupts.

    + +
    +
    + +

    ◆ FSP_CRITICAL_SECTION_EXIT [1/2]

    + +
    +
    + + + + +
    #define FSP_CRITICAL_SECTION_EXIT
    +
    +

    This macro restores the previously saved interrupt state, reenabling interrupts.

    + +
    +
    + +

    ◆ FSP_INVALID_VECTOR [1/2]

    + +
    +
    + + + + +
    #define FSP_INVALID_VECTOR
    +
    +

    Used to signify that the requested IRQ vector is not defined in this system.

    + +
    +
    + +

    ◆ BSP_CFG_HANDLE_UNRECOVERABLE_ERROR [1/2]

    + +
    +
    + + + + + + + + +
    #define BSP_CFG_HANDLE_UNRECOVERABLE_ERROR( x)
    +
    +

    In the event of an unrecoverable error the BSP will by default call the __BKPT() intrinsic function which will alert the user of the error. The user can override this default behavior by defining their own BSP_CFG_HANDLE_UNRECOVERABLE_ERROR macro.

    + +
    +
    + +

    ◆ BSP_STACK_ALIGNMENT [1/2]

    + +
    +
    + + + + +
    #define BSP_STACK_ALIGNMENT
    +
    +

    Stacks (and heap) must be sized and aligned to an integer multiple of this number.

    + +
    +
    + +

    ◆ BSP_IRQ_DISABLED [2/2]

    + +
    +
    + + + + +
    #define BSP_IRQ_DISABLED
    +
    +

    Used to signify that an interrupt factor is not available.

    + +
    +
    + +

    ◆ FSP_RETURN [2/2]

    + +
    +
    + + + + + + + + +
    #define FSP_RETURN( err)
    +
    +

    Macro to log and return error without an assertion.

    + +
    +
    + +

    ◆ FSP_ERROR_LOG [2/2]

    + +
    +
    + + + + + + + + +
    #define FSP_ERROR_LOG( err)
    +
    +

    This function is called before returning an error code. To stop on a runtime error, define fsp_error_log in user code and do required debugging (breakpoints, stack dump, etc) in this function.

    + +
    +
    + +

    ◆ FSP_ASSERT [2/2]

    + +
    +
    + + + + + + + + +
    #define FSP_ASSERT( a)
    +
    +

    Default assertion calls FSP_ERROR_RETURN if condition "a" is false. Used to identify incorrect use of API's in FSP functions.

    + +
    +
    + +

    ◆ FSP_ERROR_RETURN [2/2]

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    #define FSP_ERROR_RETURN( a,
     err 
    )
    +
    +

    All FSP error codes are returned using this macro. Calls FSP_ERROR_LOG function if condition "a" is false. Used to identify runtime errors in FSP functions.

    + +
    +
    + +

    ◆ FSP_CRITICAL_SECTION_ENTER [2/2]

    + +
    +
    + + + + +
    #define FSP_CRITICAL_SECTION_ENTER
    +
    +

    This macro temporarily saves the current interrupt state and disables interrupts.

    + +
    +
    + +

    ◆ FSP_CRITICAL_SECTION_EXIT [2/2]

    + +
    +
    + + + + +
    #define FSP_CRITICAL_SECTION_EXIT
    +
    +

    This macro restores the previously saved interrupt state, reenabling interrupts.

    + +
    +
    + +

    ◆ FSP_INVALID_VECTOR [2/2]

    + +
    +
    + + +
    #define FSP_INVALID_VECTOR
    -

    Stacks (and heap) must be sized and aligned to an integer multiple of this number.

    +

    Used to signify that the requested IRQ vector is not defined in this system.

    - -

    ◆ R_BSP_MSTPSTART

    + +

    ◆ BSP_CFG_HANDLE_UNRECOVERABLE_ERROR [2/2]

    - + - - - - - - - - - + - -
    #define R_BSP_MSTPSTART#define BSP_CFG_HANDLE_UNRECOVERABLE_ERROR (  ip,
     ch 
    x) )
    -

    Cancels the module stop state.

    -
    Parameters
    - - - -
    ipbsp_mstp_ip_t enum value for the module to be started
    chThe channel. Use ch 0 for modules without channels.
    -
    -
    +

    In the event of an unrecoverable error the BSP will by default call the __BKPT() intrinsic function which will alert the user of the error. The user can override this default behavior by defining their own BSP_CFG_HANDLE_UNRECOVERABLE_ERROR macro.

    - -

    ◆ R_BSP_MSTPSTOP

    + +

    ◆ BSP_STACK_ALIGNMENT [2/2]

    - - - - - - - - - - - - - - - +
    #define R_BSP_MSTPSTOP( ip,
     ch 
    )#define BSP_STACK_ALIGNMENT
    -

    Enables the module stop state.

    -
    Parameters
    - - - -
    ipbsp_mstp_ip_t enum value for the module to be stopped
    chThe channel. Use ch 0 for modules without channels.
    -
    -
    +

    Stacks (and heap) must be sized and aligned to an integer multiple of this number.

    @@ -637,96 +2070,181 @@

    -

    Following IPs are available. Used for module standby release / transition, clock ON / OFF, and reset assert / negate.

    +

    Available modules.

    - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - + + + + + + +
    Enumerator
    FSP_IP_GTM 

    General Timer.

    +
    Enumerator
    FSP_IP_GTM 

    General Timer.

    +
    FSP_IP_GPT 

    General PWM Timer.

    +
    FSP_IP_POEG 

    Port Output Enable for GPT.

    +
    FSP_IP_PORT 

    I/O Ports.

    +
    FSP_IP_IM33 

    IM33 (Interrupt controller)

    +
    FSP_IP_SCIF 

    Serial Communications Interface with FIFO.

    +
    FSP_IP_RIIC 

    I2C Bus Interface.

    +
    FSP_IP_RSPI 

    Renesas Serial Peripheral Interface.

    +
    FSP_IP_MHU 

    Message Handling Unit.

    +
    FSP_IP_DMAC 

    Direct Memory Access Controller.

    +
    FSP_IP_SSI 

    Serial Sound Interface.

    +
    FSP_IP_CANFD 

    CANFD Interface (RS-CANFD)

    +
    FSP_IP_SCI 

    Serial Communications Interface.

    +
    FSP_IP_MTU3 

    Multi-Function Timer Pulse Unit 3.

    +
    FSP_IP_GTM 

    General Timer.

    +
    FSP_IP_GPT 

    General PWM Timer.

    +
    FSP_IP_POEG 

    Port Output Enable for GPT.

    +
    FSP_IP_PORT 

    I/O Ports.

    +
    FSP_IP_IM33 

    IM33 (Interrupt controller)

    FSP_IP_GPT 

    General PWM Timer.

    +
    FSP_IP_SCIF 

    Serial Communications Interface with FIFO.

    FSP_IP_POEG 

    Port Output Enable for GPT.

    +
    FSP_IP_RIIC 

    I2C Bus Interface.

    FSP_IP_PORT 

    I/O Ports.

    +
    FSP_IP_RSPI 

    Renesas Serial Peripheral Interface.

    FSP_IP_IM33 

    IM33 (Interrupt controller)

    +
    FSP_IP_MHU 

    Message Handling Unit.

    FSP_IP_SCIF 

    Serial Communications Interface with FIFO.

    +
    FSP_IP_DMAC 

    Direct Memory Access Controller.

    FSP_IP_RIIC 

    I2C Bus Interface.

    +
    FSP_IP_DMAC_s 

    Direct Memory Access Controller.

    FSP_IP_RSPI 

    Renesas Serial Peripheral Interface.

    +
    FSP_IP_SSI 

    Serial Sound Interface.

    FSP_IP_MHU 

    Message Handling Unit.

    +
    FSP_IP_CANFD 

    CANFD Interface (RS-CANFD)

    FSP_IP_DMAC 

    Direct Memory Access Controller.

    +
    FSP_IP_ADC 

    A/D Converter.

    FSP_IP_SSI 

    Serial Sound Interface.

    +
    FSP_IP_TSU 

    Thermal Sensor Unit.

    FSP_IP_CANFD 

    CANFD Interface (RS-CANFD)

    +
    FSP_IP_WDT 

    Watchdog Timer.

    +
    FSP_IP_SCI 

    Serial Communications Interface.

    +
    FSP_IP_CMTW 

    Compare Match Timer W.

    +
    FSP_IP_XSPI 

    Expanded Serial Peripheral Interface.

    +
    FSP_IP_CRC 

    Cyclic redundancy check (CRC) operation units.

    +
    FSP_IP_I3C 

    I3C Bus Interface.

    +
    FSP_IP_RTC 

    Realtime Clock.

    +
    FSP_IP_SYC 

    System counter.

    - -

    ◆ bsp_warm_start_event_t

    + +

    ◆ bsp_delay_units_t

    -

    Different warm start entry locations in the BSP.

    +

    Available delay units for R_BSP_SoftwareDelay(). These are ultimately used to calculate a total # of microseconds

    - - -
    Enumerator
    BSP_WARM_START_RESET 

    Called almost immediately after reset. No C runtime environment, clocks, or IRQs.

    +
    Enumerator
    BSP_DELAY_UNITS_SECONDS 

    Requested delay amount is in seconds.

    BSP_WARM_START_POST_CLOCK 

    Called after clock initialization. No C runtime environment or IRQs.

    +
    BSP_DELAY_UNITS_MILLISECONDS 

    Requested delay amount is in milliseconds.

    BSP_WARM_START_POST_C 

    Called after clocks and C runtime environment have been set up.

    +
    BSP_DELAY_UNITS_MICROSECONDS 

    Requested delay amount is in microseconds.

    - -

    ◆ bsp_delay_units_t

    + +

    ◆ bsp_grp_irq_t

    -

    Available delay units for R_BSP_SoftwareDelay(). These are ultimately used to calculate a total # of microseconds

    +

    Which interrupts can have callbacks registered.

    - -
    Enumerator
    BSP_DELAY_UNITS_SECONDS 

    Requested delay amount is in seconds.

    +
    Enumerator
    BSP_GRP_IRQ_UNSUPPORTED 

    NMI Group IRQ are not supported in this device.

    BSP_DELAY_UNITS_MILLISECONDS 

    Requested delay amount is in milliseconds.

    +
    + +
    +
    + +

    ◆ bsp_warm_start_event_t [1/2]

    + +
    +
    + + + + +
    enum bsp_warm_start_event_t
    +
    +

    Different warm start entry locations in the BSP.

    + + - + + + +
    Enumerator
    BSP_WARM_START_RESET 

    Called almost immediately after reset. No C runtime environment, clocks, or IRQs.

    BSP_DELAY_UNITS_MICROSECONDS 

    Requested delay amount is in microseconds.

    +
    BSP_WARM_START_POST_CLOCK 

    Called after clock initialization. No C runtime environment or IRQs.

    +
    BSP_WARM_START_POST_C 

    Called after clocks and C runtime environment have been set up.

    +
    BSP_WARM_START_RESET 

    Called almost immediately after reset. No C runtime environment, clocks, or IRQs.

    +
    BSP_WARM_START_POST_CLOCK 

    Called after clock initialization. No C runtime environment or IRQs.

    +
    BSP_WARM_START_POST_C 

    Called after clocks and C runtime environment have been set up.

    - -

    ◆ bsp_grp_irq_t

    + +

    ◆ bsp_warm_start_event_t [2/2]

    -

    Which interrupts can have callbacks registered.

    +

    Different warm start entry locations in the BSP.

    - + + + + +
    Enumerator
    BSP_GRP_IRQ_UNSUPPORTED 

    NMI Group IRQ are not supported in this device.

    +
    Enumerator
    BSP_WARM_START_RESET 

    Called almost immediately after reset. No C runtime environment, clocks, or IRQs.

    +
    BSP_WARM_START_POST_CLOCK 

    Called after clock initialization. No C runtime environment or IRQs.

    +
    BSP_WARM_START_POST_C 

    Called after clocks and C runtime environment have been set up.

    +
    BSP_WARM_START_RESET 

    Called almost immediately after reset. No C runtime environment, clocks, or IRQs.

    +
    BSP_WARM_START_POST_CLOCK 

    Called after clock initialization. No C runtime environment or IRQs.

    +
    BSP_WARM_START_POST_C 

    Called after clocks and C runtime environment have been set up.

    @@ -958,8 +2476,7 @@

    Initialize security features for TrustZone.

    -

    This function initializes ARM security register for secure projects.

    -
    Note
    IDAU settings must be configured to match project settings.
    +

    This function initializes security register for secure projects.

    @@ -982,8 +2499,8 @@

    -

    ◆ __attribute__()

    + +

    ◆ __attribute__()

    @@ -1032,74 +2550,125 @@

    -

    ◆ R_BSP_VersionGet()

    + +

    ◆ R_BSP_ClockSelectorSet()

    - + - - + + + + + + + + + + + +
    fsp_err_t R_BSP_VersionGet fsp_err_t R_BSP_ClockSelectorSet (fsp_version_tp_version)fsp_priv_clock_selector_t selector,
    uint32_t clock_sel 
    )
    -

    Get the BSP version based on compile time macros.

    +

    Set a clock selector.

    Parameters
    - + +
    [out]p_versionMemory address to return version information to.
    [in]selectorElement number of the array that defines the clock selector.
    [in]clock_selValue to set in Mux Control register.
    Return values
    - - + + +
    FSP_SUCCESSVersion information stored.
    FSP_ERR_ASSERTIONThe parameter p_version is NULL.
    FSP_SUCCESSSelector configuration changes completed.
    FSP_ERR_INVALID_ARGUMENTUndefined selector specified.
    FSP_ERR_PLL_SRC_INACTIVEClock source PLL is reset state.
    +
    Note
    This function assumes that a source clock is supplied. If the source clock is not supplied, the selector setting process cannot be completed successfully.
    - -

    ◆ R_FSP_CurrentIrqGet()

    + +

    ◆ R_BSP_ClockDividerSet()

    - + - - + + + + + + + + + + + +
    __STATIC_INLINE IRQn_Type R_FSP_CurrentIrqGet fsp_err_t R_BSP_ClockDividerSet (void )fsp_priv_clock_divider_t divider,
    uint32_t clock_div 
    )
    -

    Return active interrupt vector number value

    -
    Returns
    Active interrupt vector number value
    +

    Set a clock division ratio.

    +
    Parameters
    + + + +
    [in]dividerElement number of the array that defines the clock divider.
    [in]clock_divValue to set in Gear Control register.
    +
    +
    +
    Return values
    + + + + +
    FSP_SUCCESSDivider configuration changes completed.
    FSP_ERR_INVALID_ARGUMENTUndefined divider specified.
    FSP_ERR_PLL_SRC_INACTIVEClock source PLL is reset state.
    +
    +
    +
    Note
    This function assumes that a source clock is supplied. If the source clock is not supplied, the divider setting process cannot be completed successfully.
    - -

    ◆ R_BSP_UniqueIdGet()

    + +

    ◆ R_BSP_VersionGet()

    - + - + +
    __STATIC_INLINE bsp_unique_id_t const* R_BSP_UniqueIdGet fsp_err_t R_BSP_VersionGet ()fsp_version_tp_version)
    -

    Get unique ID is not supported in this device.

    -
    Returns
    A pointer to the unique identifier structure
    +

    Get the BSP version based on compile time macros.

    +
    Parameters
    + + +
    [out]p_versionMemory address to return version information to.
    +
    +
    +
    Return values
    + + + +
    FSP_SUCCESSVersion information stored.
    FSP_ERR_ASSERTIONThe parameter p_version is NULL.
    +
    +
    @@ -1129,7 +2698,7 @@

    Delay for at least the specified duration in units and return. This function shouldn't be used to generate an accurate delay time. A running time of the function is depending on the region of memory where the function is excuted on and a frequency of the CPU clock.

    -

    The funcion calls bsp_prv_software_delay_loop() which loops over the requested delay time. One loop time through bsp_prv_software_delay_loop() takes roughly 500ns. This value is based on the actual measured time in the condition that a frequency of the CPU clock is 200MHz and the code is excuted on DDR3L-1333 DRAM(133MHz). One loop running time of software_delay_loop() can be modified by redefining BSP_DELAY_LOOP_CYCLES.

    +

    The funcion calls bsp_prv_software_delay_loop() which loops over the requested delay time. One loop time through bsp_prv_software_delay_loop() takes roughly 500ns. This value is based on the actual measured time in the condition that a frequency of the CPU clock is 200MHz and the code is excuted on DDR3L-1333 DRAM(133MHz). One loop running time of software_delay_loop() can be modified by redefining BSP_FEATURE_BSP_DELAY_LOOP_CYCLES.

    Parameters
    @@ -1188,14 +2757,14 @@

    -

    ◆ R_BSP_NonSecureEnter()

    + +

    ◆ R_FSP_CurrentIrqGet()

    [in]delayThe number of 'units' to delay.
    - + @@ -1203,15 +2772,48 @@

    -

    Enter the non-secure code environment.

    -

    This function configures the non-secure MSP and vector table then jumps to the non-secure project's Reset_Handler.

    -
    Note
    This function (and therefore the non-secure code) should not return.
    +

    Return active interrupt vector number value

    +
    Returns
    Active interrupt vector number value
    + + + +
    +

    ◆ R_BSP_UniqueIdGet()

    + +
    +
    +

    void R_BSP_NonSecureEnter __STATIC_INLINE IRQn_Type R_FSP_CurrentIrqGet ( void  )
    + + + + + + +
    __STATIC_INLINE bsp_unique_id_t const * R_BSP_UniqueIdGet ()
    +

    +

    Get unique ID is not supported in this device.

    +
    Returns
    A pointer to the unique identifier structure

    Variable Documentation

    -

    ◆ SystemCoreClock

    +

    ◆ SystemCoreClock [1/2]

    + +
    +
    + + + + +
    uint32_t SystemCoreClock
    +
    +

    System Clock Frequency (Core Clock)

    + +
    +
    + +

    ◆ SystemCoreClock [2/2]

    @@ -1226,7 +2828,24 @@

    -

    ◆ g_bsp_version

    +

    ◆ g_bsp_version [1/2]

    + +
    +
    + + + + +
    const fsp_version_t g_bsp_version
    +
    + +

    Default initialization function.

    +

    Version data structure used by error logger macro.

    + +
    +
    + +

    ◆ g_bsp_version [2/2]

    diff --git a/group___b_s_p___m_c_u.js b/group___b_s_p___m_c_u.js index 1b03a76..661377f 100644 --- a/group___b_s_p___m_c_u.js +++ b/group___b_s_p___m_c_u.js @@ -1,6 +1,49 @@ var group___b_s_p___m_c_u = [ + [ "RZV2H", "group___b_s_p___m_c_u___r_z_v2_h.html", "group___b_s_p___m_c_u___r_z_v2_h" ], [ "RZV2L", "group___b_s_p___m_c_u___r_z_v2_l.html", null ], + [ "R_BSP_MODULE_START", "group___b_s_p___m_c_u.html#ga6c36d1d91a0e4e4a8373b2075f682145", null ], + [ "R_BSP_MODULE_STOP", "group___b_s_p___m_c_u.html#ga3cbe4efd62cee1db0288da2045d21319", null ], + [ "R_BSP_MODULE_START_FSP_IP_GTM", "group___b_s_p___m_c_u.html#ga6c82e0b49d6583b7cb16bc15026ecfff", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_GTM", "group___b_s_p___m_c_u.html#ga3de23334bfd3a83d11de893a68d8e03f", null ], + [ "R_BSP_MODULE_START_FSP_IP_GPT", "group___b_s_p___m_c_u.html#gae601568d46eef4eb5d36dffe9773412e", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_GPT", "group___b_s_p___m_c_u.html#gae18fecd6a1f359727e18613fc19420f6", null ], + [ "R_BSP_MODULE_START_FSP_IP_CANFD", "group___b_s_p___m_c_u.html#ga436fdb330cf3ddb8918bdc21ace3d7df", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_CANFD", "group___b_s_p___m_c_u.html#gae7636d5d0d2d310a45dc83b7a580ff2e", null ], + [ "R_BSP_MODULE_START_FSP_IP_ADC", "group___b_s_p___m_c_u.html#gaa36ef60e30f86593d24e7e25c6d026f1", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_ADC", "group___b_s_p___m_c_u.html#gad629661332b7063f9af17336dc879078", null ], + [ "R_BSP_MODULE_START_FSP_IP_MHU", "group___b_s_p___m_c_u.html#ga054640ac1e1672fbe931e334358fcf0c", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_MHU", "group___b_s_p___m_c_u.html#ga357da2217bfe606d9c18d5c36ab45df6", null ], + [ "R_BSP_MODULE_START_FSP_IP_POEG", "group___b_s_p___m_c_u.html#ga22d14eac2a0c6e915d5e46fcdb19ebd1", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_POEG", "group___b_s_p___m_c_u.html#ga077b44c9ad717bbb1ef2304599995397", null ], + [ "R_BSP_MODULE_START_FSP_IP_RIIC", "group___b_s_p___m_c_u.html#ga8d17b9855a7a617558dd4edd05ccc72a", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_RIIC", "group___b_s_p___m_c_u.html#ga50ee7397627ca4c3f0858d6cb9696d90", null ], + [ "R_BSP_MODULE_START_FSP_IP_SCI", "group___b_s_p___m_c_u.html#ga19696083f874c068c503afc369b343c5", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_SCI", "group___b_s_p___m_c_u.html#gaa638ec6a3ddaef0fb36cf8cc36510fb2", null ], + [ "R_BSP_MODULE_START_FSP_IP_RSPI", "group___b_s_p___m_c_u.html#ga6197c46ef462451012619c6c95a04322", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_RSPI", "group___b_s_p___m_c_u.html#ga86b4ea9d1a1c90ec107f408cddc889cd", null ], + [ "R_BSP_MODULE_START_FSP_IP_TSU", "group___b_s_p___m_c_u.html#ga862122b7dfd27bc54da4f2e3b80b25d2", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_TSU", "group___b_s_p___m_c_u.html#gae90c804167db296853dc17af83649fe4", null ], + [ "R_BSP_MODULE_START_FSP_IP_SCIF", "group___b_s_p___m_c_u.html#gae7fdc2a01ee790e00cb199366aecb023", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_SCIF", "group___b_s_p___m_c_u.html#gaf942d58c6fc1e4c35940f38daa8a5027", null ], + [ "R_BSP_MODULE_START_FSP_IP_DMAC", "group___b_s_p___m_c_u.html#ga31421c06dc6abf9bf8fdc5e2317eb011", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_DMAC", "group___b_s_p___m_c_u.html#ga3b2dc069b8a84fc43d0f495a785bcdd0", null ], + [ "R_BSP_MODULE_START_FSP_IP_WDT", "group___b_s_p___m_c_u.html#ga06a1c99445f01a3287e05cddacbe2e69", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_WDT", "group___b_s_p___m_c_u.html#ga65c99544cc40603a2259ca9403f0f42c", null ], + [ "R_BSP_MODULE_START_FSP_IP_MTU3", "group___b_s_p___m_c_u.html#ga006a2ccfdf5e149ab69755b3aceb5379", null ], + [ "R_BSP_MODULE_STOP_FSP_IP_MTU3", "group___b_s_p___m_c_u.html#ga42dc365010b8db945264f8a51c8851ae", null ], + [ "R_BSP_MSTP_START", "group___b_s_p___m_c_u.html#ga0b8dc4e44bb023105461f1563d302eea", null ], + [ "R_BSP_MSTP_STOP", "group___b_s_p___m_c_u.html#ga4b9ba26ad9063f200e6b8e3a7c33959c", null ], + [ "BSP_IRQ_DISABLED", "group___b_s_p___m_c_u.html#gae685ec20bc3579295878f1586478b54c", null ], + [ "FSP_RETURN", "group___b_s_p___m_c_u.html#ga8c791e904efc648fb8b69b56d7dd37ba", null ], + [ "FSP_ERROR_LOG", "group___b_s_p___m_c_u.html#ga960f46c44b67ba8ad5377cfc8e4e6a75", null ], + [ "FSP_ASSERT", "group___b_s_p___m_c_u.html#gaa4fa8ae9390afa996af2dabee6552732", null ], + [ "FSP_ERROR_RETURN", "group___b_s_p___m_c_u.html#ga577e9b015e1b0794934fa4f2b229e52f", null ], + [ "FSP_CRITICAL_SECTION_ENTER", "group___b_s_p___m_c_u.html#gaddc2260c1ce320f3aa1f1cb05b9a5620", null ], + [ "FSP_CRITICAL_SECTION_EXIT", "group___b_s_p___m_c_u.html#ga23338e06b1e1537017ef4f3f94cda354", null ], + [ "FSP_INVALID_VECTOR", "group___b_s_p___m_c_u.html#ga4e36b09bee515ff1b813e7ba0412e60d", null ], + [ "BSP_CFG_HANDLE_UNRECOVERABLE_ERROR", "group___b_s_p___m_c_u.html#ga4f65c534e6da6ae5733380827f882898", null ], + [ "BSP_STACK_ALIGNMENT", "group___b_s_p___m_c_u.html#gadecec24d538312129b60def6152f5992", null ], [ "BSP_IRQ_DISABLED", "group___b_s_p___m_c_u.html#gae685ec20bc3579295878f1586478b54c", null ], [ "FSP_RETURN", "group___b_s_p___m_c_u.html#ga8c791e904efc648fb8b69b56d7dd37ba", null ], [ "FSP_ERROR_LOG", "group___b_s_p___m_c_u.html#ga960f46c44b67ba8ad5377cfc8e4e6a75", null ], @@ -11,26 +54,44 @@ var group___b_s_p___m_c_u = [ "FSP_INVALID_VECTOR", "group___b_s_p___m_c_u.html#ga4e36b09bee515ff1b813e7ba0412e60d", null ], [ "BSP_CFG_HANDLE_UNRECOVERABLE_ERROR", "group___b_s_p___m_c_u.html#ga4f65c534e6da6ae5733380827f882898", null ], [ "BSP_STACK_ALIGNMENT", "group___b_s_p___m_c_u.html#gadecec24d538312129b60def6152f5992", null ], - [ "R_BSP_MSTPSTART", "group___b_s_p___m_c_u.html#ga7f0f0fcc055b280ef901734d5481214d", null ], - [ "R_BSP_MSTPSTOP", "group___b_s_p___m_c_u.html#gad743b8c468bec4c2d15645c4e4b45f1f", null ], [ "fsp_ip_t", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950", [ - [ "FSP_IP_GTM", "group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950afe554013bd2f3cbbd8462cea8eeee4ca", null ], - [ "FSP_IP_GPT", "group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a83fe18962b058df65adb9ce089719ebb", null ], - [ "FSP_IP_POEG", "group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950acfc9bb8ff007a7b82cf4fd845dfce053", null ], - [ "FSP_IP_PORT", "group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a3403f62d1f8cc29a868e5da9a86a46f7", null ], - [ "FSP_IP_IM33", "group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a4704af5ed32cbd6532fd28a44d0d028e", null ], - [ "FSP_IP_SCIF", "group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a837b8847e248ed296512f20813008cd5", null ], - [ "FSP_IP_RIIC", "group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a17e007a04505fb7a7614067e3d5e7447", null ], - [ "FSP_IP_RSPI", "group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950acbce1d6d73ea0d9a18c42b2389c69888", null ], - [ "FSP_IP_MHU", "group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950abfff39a6b8ca24d18832ad7153cc0880", null ], - [ "FSP_IP_DMAC", "group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a494addfd4ceb1fabb0bea0893b444641", null ], - [ "FSP_IP_SSI", "group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a372bbc7267801454ac9a1bf3677ef60c", null ], - [ "FSP_IP_CANFD", "group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950aacbead3e070986a6c40c32d2485d5c4e", null ] - ] ], - [ "bsp_warm_start_event_t", "group___b_s_p___m_c_u.html#ga6fe6dc3c0813eeae8665430a31c005b4", [ - [ "BSP_WARM_START_RESET", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2", null ], - [ "BSP_WARM_START_POST_CLOCK", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7", null ], - [ "BSP_WARM_START_POST_C", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811", null ] + [ "FSP_IP_GTM", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950afe554013bd2f3cbbd8462cea8eeee4ca", null ], + [ "FSP_IP_GPT", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a83fe18962b058df65adb9ce089719ebb", null ], + [ "FSP_IP_POEG", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acfc9bb8ff007a7b82cf4fd845dfce053", null ], + [ "FSP_IP_PORT", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a3403f62d1f8cc29a868e5da9a86a46f7", null ], + [ "FSP_IP_IM33", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a4704af5ed32cbd6532fd28a44d0d028e", null ], + [ "FSP_IP_SCIF", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a837b8847e248ed296512f20813008cd5", null ], + [ "FSP_IP_RIIC", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a17e007a04505fb7a7614067e3d5e7447", null ], + [ "FSP_IP_RSPI", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acbce1d6d73ea0d9a18c42b2389c69888", null ], + [ "FSP_IP_MHU", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950abfff39a6b8ca24d18832ad7153cc0880", null ], + [ "FSP_IP_DMAC", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a494addfd4ceb1fabb0bea0893b444641", null ], + [ "FSP_IP_SSI", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a372bbc7267801454ac9a1bf3677ef60c", null ], + [ "FSP_IP_CANFD", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950aacbead3e070986a6c40c32d2485d5c4e", null ], + [ "FSP_IP_SCI", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ad8802ee74d9cafca9a1c4d5faea8e253", null ], + [ "FSP_IP_MTU3", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a7e7705b2505050da600c075db4723581", null ], + [ "FSP_IP_GTM", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950afe554013bd2f3cbbd8462cea8eeee4ca", null ], + [ "FSP_IP_GPT", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a83fe18962b058df65adb9ce089719ebb", null ], + [ "FSP_IP_POEG", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acfc9bb8ff007a7b82cf4fd845dfce053", null ], + [ "FSP_IP_PORT", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a3403f62d1f8cc29a868e5da9a86a46f7", null ], + [ "FSP_IP_IM33", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a4704af5ed32cbd6532fd28a44d0d028e", null ], + [ "FSP_IP_SCIF", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a837b8847e248ed296512f20813008cd5", null ], + [ "FSP_IP_RIIC", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a17e007a04505fb7a7614067e3d5e7447", null ], + [ "FSP_IP_RSPI", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acbce1d6d73ea0d9a18c42b2389c69888", null ], + [ "FSP_IP_MHU", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950abfff39a6b8ca24d18832ad7153cc0880", null ], + [ "FSP_IP_DMAC", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a494addfd4ceb1fabb0bea0893b444641", null ], + [ "FSP_IP_DMAC_s", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950adf8c428fc9e6594881035cfc67a66373", null ], + [ "FSP_IP_SSI", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a372bbc7267801454ac9a1bf3677ef60c", null ], + [ "FSP_IP_CANFD", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950aacbead3e070986a6c40c32d2485d5c4e", null ], + [ "FSP_IP_ADC", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ac49bfca1e1ccf88f53586fc28bd54250", null ], + [ "FSP_IP_TSU", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a55e1c8e5259f5bc822c320abb058142b", null ], + [ "FSP_IP_WDT", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a9b738d0f557574bb4d659abc2dc0fbf8", null ], + [ "FSP_IP_SCI", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ad8802ee74d9cafca9a1c4d5faea8e253", null ], + [ "FSP_IP_CMTW", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a41268ed3e6b973a85d0dcabaf5d1abf2", null ], + [ "FSP_IP_XSPI", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a8e412d35ce1643636ba6bc355914c5e0", null ], + [ "FSP_IP_CRC", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a66f3b5b31f294d50f964990b205cb92b", null ], + [ "FSP_IP_I3C", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950aaff0832d2687261b54f54189c224db06", null ], + [ "FSP_IP_RTC", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ae2e4b37d45024125cbb660f1b3a3090e", null ], + [ "FSP_IP_SYC", "group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a308404027f3f10d27b8cb240dec71244", null ] ] ], [ "bsp_delay_units_t", "group___b_s_p___m_c_u.html#gafd98e2a6f080d6a52a3ef72e3d731b2b", [ [ "BSP_DELAY_UNITS_SECONDS", "group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2bacc709da08ef4acc99bf6e2e84946be5d", null ], @@ -40,6 +101,22 @@ var group___b_s_p___m_c_u = [ "bsp_grp_irq_t", "group___b_s_p___m_c_u.html#ga72e70676360e6a4d753a8d235e6b93a2", [ [ "BSP_GRP_IRQ_UNSUPPORTED", "group___b_s_p___m_c_u.html#gga72e70676360e6a4d753a8d235e6b93a2a7478d3bbfdc1220e125de34635c0f47a", null ] ] ], + [ "bsp_warm_start_event_t", "group___b_s_p___m_c_u.html#ga6fe6dc3c0813eeae8665430a31c005b4", [ + [ "BSP_WARM_START_RESET", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2", null ], + [ "BSP_WARM_START_POST_CLOCK", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7", null ], + [ "BSP_WARM_START_POST_C", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811", null ], + [ "BSP_WARM_START_RESET", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2", null ], + [ "BSP_WARM_START_POST_CLOCK", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7", null ], + [ "BSP_WARM_START_POST_C", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811", null ] + ] ], + [ "bsp_warm_start_event_t", "group___b_s_p___m_c_u.html#ga6fe6dc3c0813eeae8665430a31c005b4", [ + [ "BSP_WARM_START_RESET", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2", null ], + [ "BSP_WARM_START_POST_CLOCK", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7", null ], + [ "BSP_WARM_START_POST_C", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811", null ], + [ "BSP_WARM_START_RESET", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2", null ], + [ "BSP_WARM_START_POST_CLOCK", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7", null ], + [ "BSP_WARM_START_POST_C", "group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811", null ] + ] ], [ "R_FSP_VersionGet", "group___b_s_p___m_c_u.html#gaf3ee66233fc75acfcc21a97d7a767aa1", null ], [ "Reset_Handler_NS", "group___b_s_p___m_c_u.html#ga49c8711ce69459021327e37557a1a9f1", null ], [ "Default_Handler", "group___b_s_p___m_c_u.html#ga4e0c522c1bb26af24accaf20e6b87d12", null ], @@ -52,14 +129,17 @@ var group___b_s_p___m_c_u = [ "R_BSP_WarmStart", "group___b_s_p___m_c_u.html#ga662624feaff3850ffbe7fb118ab140d7", null ], [ "R_BSP_SecurityInit", "group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f", null ], [ "SystemInit_S", "group___b_s_p___m_c_u.html#ga5cd95eba95dc2c1bad0bf05398c9779c", null ], - [ "__attribute__", "group___b_s_p___m_c_u.html#ga1300de3839c776da2d29a95c154e0c7a", null ], + [ "__attribute__", "group___b_s_p___m_c_u.html#ga2804a023941a956288c32ad08b2cf59e", null ], [ "R_FSP_SystemClockHzGet", "group___b_s_p___m_c_u.html#ga992632ae2e45c2f962855fe4bbe98a63", null ], + [ "R_BSP_ClockSelectorSet", "group___b_s_p___m_c_u.html#ga6a8598c7564c37b201a19003d188de7f", null ], + [ "R_BSP_ClockDividerSet", "group___b_s_p___m_c_u.html#gac27f5c8e3abd9d557b79ff1bdde2f932", null ], [ "R_BSP_VersionGet", "group___b_s_p___m_c_u.html#gade0e6b9fc5ca580d5bf6c8ae2a6af8d9", null ], - [ "R_FSP_CurrentIrqGet", "group___b_s_p___m_c_u.html#ga50cae0c65c54074c32d30eb4108d9a09", null ], - [ "R_BSP_UniqueIdGet", "group___b_s_p___m_c_u.html#gadee5f5e0c5fa723426f73d7d5a07f9b2", null ], [ "R_BSP_SoftwareDelay", "group___b_s_p___m_c_u.html#gaf3219448adfd1531cf69f68697ab184b", null ], [ "R_BSP_GroupIrqWrite", "group___b_s_p___m_c_u.html#gaed27ea47f0c85a1af9bb515600d5e2ba", null ], - [ "R_BSP_NonSecureEnter", "group___b_s_p___m_c_u.html#gae05dfbdf57eb8b0bea46f555a2845d7b", null ], + [ "R_FSP_CurrentIrqGet", "group___b_s_p___m_c_u.html#ga50cae0c65c54074c32d30eb4108d9a09", null ], + [ "R_BSP_UniqueIdGet", "group___b_s_p___m_c_u.html#ga1273625a09a1d570dea0c5189f6b5fe8", null ], + [ "SystemCoreClock", "group___b_s_p___m_c_u.html#gaa3cd3e43291e81e795d642b79b6088e6", null ], [ "SystemCoreClock", "group___b_s_p___m_c_u.html#gaa3cd3e43291e81e795d642b79b6088e6", null ], + [ "g_bsp_version", "group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8", null ], [ "g_bsp_version", "group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8", null ] ]; \ No newline at end of file diff --git a/group___b_s_p___m_c_u___r_z_v2_h.html b/group___b_s_p___m_c_u___r_z_v2_h.html new file mode 100644 index 0000000..dd4c5d7 --- /dev/null +++ b/group___b_s_p___m_c_u___r_z_v2_h.html @@ -0,0 +1,207 @@ + + + + + + + +RZV Flexible Software Package Documentation: RZV2H + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +

    Detailed Description

    +

    Build Time Configurations for rzv2h_fsp

    +The following build time configurations are defined in fsp_cfg/bsp/bsp_mcu_family_cfg.h:
    +

    + + +
    ConfigurationOptionsDefaultDescription
    +

    + + + + +

    +Enumerations

    enum  elc_event_t
     
    +

    Enumeration Type Documentation

    + +

    ◆ elc_event_t

    + +
    +
    + + + + +
    enum elc_event_t
    +
    +

    Sources of event signals to be linked to other peripherals or the CPU

    Note
    This list may change based on based on the device.
    + +
    +
    +
    +
    + + + + + diff --git a/group___b_s_p___m_c_u___r_z_v2_h.js b/group___b_s_p___m_c_u___r_z_v2_h.js new file mode 100644 index 0000000..cc25835 --- /dev/null +++ b/group___b_s_p___m_c_u___r_z_v2_h.js @@ -0,0 +1,4 @@ +var group___b_s_p___m_c_u___r_z_v2_h = +[ + [ "elc_event_t", "group___b_s_p___m_c_u___r_z_v2_h.html#gaebe723200f2a7f181f08324128b9d7b5", null ] +]; \ No newline at end of file diff --git a/group___b_s_p___m_c_u___r_z_v2_l.html b/group___b_s_p___m_c_u___r_z_v2_l.html index 298f89e..3c5c3dc 100644 --- a/group___b_s_p___m_c_u___r_z_v2_l.html +++ b/group___b_s_p___m_c_u___r_z_v2_l.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: RZV2L +RZV Flexible Software Package Documentation: RZV2L @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    +

    Detailed Description

    Build Time Configurations for rzv2l_fsp

    The following build time configurations are defined in fsp_cfg/bsp/bsp_mcu_family_cfg.h:

    @@ -107,7 +176,7 @@ diff --git a/group___c_a_n___a_p_i.html b/group___c_a_n___a_p_i.html index 410292f..c81fe04 100644 --- a/group___c_a_n___a_p_i.html +++ b/group___c_a_n___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: CAN Interface +RZV Flexible Software Package Documentation: CAN Interface @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Data Structures | @@ -115,14 +183,14 @@

    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    + + - - @@ -145,18 +213,64 @@

    - - - - - - - -

    Data Structures

    struct  can_info_t
     
    struct  can_bit_timing_cfg_t
     
    struct  can_frame_t
     
    struct  can_callback_args_t
     
    struct  can_mailbox_t
     
    struct  can_cfg_t
     
    struct  can_api_t
     
    enum  can_id_mode_t
     
    enum  can_global_id_mode_t
     
    enum  can_frame_type_t
     
    enum  can_message_mode_t
     
    enum  can_clock_source_t
     
    enum  can_mailbox_send_receive_t
     

    Data Structure Documentation

    + +

    ◆ can_info_t

    + +
    +
    + + + + +
    struct can_info_t
    +
    +

    CAN status info

    +
    + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +uint32_t +status +Useful information from the CAN status register.
    +uint32_t +rx_mb_status +RX Message Buffer New Data flags.
    +uint32_t +rx_fifo_status +RX FIFO Empty flags.
    +uint8_t +error_count_transmit +Transmit error count.
    +uint8_t +error_count_receive +Receive error count.
    +uint32_t +error_code +Error code, cleared after reading.
    + +
    +

    ◆ can_bit_timing_cfg_t

    @@ -226,18 +340,18 @@

    ` Standard or Extended ID (IDE). -uint8_t - -data_length_code - -CAN Data Length Code (DLC). - can_frame_type_t type Frame type (RTR). +uint8_t + +data_length_code + +CAN Data Length Code (DLC). + uint32_t options @@ -292,12 +406,6 @@

    -can_frame_t * - -p_frame - - - void const * p_context @@ -311,48 +419,6 @@

    -

    ◆ can_mailbox_t

    - -
    -
    - - - - -
    struct can_mailbox_t
    -
    -

    CAN Mailbox

    -
    - - - - - - - - - - - - - -
    Data Fields
    -uint32_t -mailbox_id -Mailbox ID.
    -can_id_mode_t -id_mode -Standard or Extended ID. Only used in Mixed ID mode.
    -can_mailbox_send_receive_t -mailbox_type -Receive or Transmit mailbox type.
    -can_frame_type_t -frame_type -Frame type for receive mailbox.
    -
    @@ -397,30 +463,14 @@

    ◆ IRQn_Type error_irq  Error IRQ number.
      - -IRQn_Type mailbox_rx_irq - Receive IRQ number.
    -  - -IRQn_Type mailbox_tx_irq - Transmit IRQ number.
    -  - -can_mailbox_tp_mailbox - Pointer to mailboxes.
    -  - -can_global_id_mode_t id_mode - Standard or Extended ID mode.
    -  - -uint32_t mailbox_count - Number of mailboxes.
    -  - -can_message_mode_t message_mode - Overwrite message or overrun.
    -  + +IRQn_Type rx_irq + Receive IRQ number.
    +  + +IRQn_Type tx_irq + Transmit IRQ number.

    @@ -449,12 +499,10 @@

    ◆   fsp_err_t(* modeTransition )(can_ctrl_t *const p_api_ctrl, can_operation_mode_t operation_mode, can_test_mode_t test_mode)   -fsp_err_t(* infoGet )(can_ctrl_t *const p_ctrl, can_info_t *const p_info) +fsp_err_t(* infoGet )(can_ctrl_t *const p_ctrl, can_info_t *const p_info)   fsp_err_t(* callbackSet )(can_ctrl_t *const p_api_ctrl, void(*p_callback)(can_callback_args_t *), void const *const p_context, can_callback_args_t *const p_callback_memory)   -fsp_err_t(* versionGet )(fsp_version_t *const p_version) - 

    Field Documentation

    @@ -469,13 +517,14 @@

    Open function for CAN device

    Implemented as
    Parameters
    - +
    [in,out]p_ctrlPointer to the CAN control block. Must be declared by user. Value set here.
    [in]can_cfg_tPointer to CAN configuration structure. All elements of this structure must be set by user.
    [in]p_cfgPointer to CAN configuration structure. All elements of this structure must be set by user.
    @@ -494,6 +543,7 @@

    Write function for CAN device

    Implemented as
    @@ -546,6 +596,7 @@

    Close function for CAN device

    Implemented as
    @@ -570,6 +621,7 @@

    Mode Transition function for CAN device

    Implemented as
    @@ -591,11 +643,12 @@

    - +
    fsp_err_t(* can_api_t::infoGet) (can_ctrl_t *const p_ctrl, can_info_t *const p_info)fsp_err_t(* can_api_t::infoGet) (can_ctrl_t *const p_ctrl, can_info_t *const p_info)

    Get CAN channel info.

    Implemented as
    @@ -621,6 +674,7 @@

    Specify callback function and optional context pointer and working memory pointer.

    Implemented as
    @@ -634,30 +688,6 @@

    -

    ◆ versionGet

    - -
    -
    - - - - -
    fsp_err_t(* can_api_t::versionGet) (fsp_version_t *const p_version)
    -
    -

    Version get function for CAN device

    Implemented as
      -
    • R_CANFD_VersionGet()
    • -
    -
    -
    Parameters
    - - -
    [in]p_versionPointer to the memory to store the version information
    -
    -
    -
    @@ -755,6 +785,10 @@

    CAN_EVENT_ERR_GLOBAL 

    Global error has occurred.

    +CAN_EVENT_TX_FIFO_EMPTY 

    Transmit FIFO is empty.

    + +CAN_EVENT_FIFO_MESSAGE_LOST 

    Receive FIFO overrun.

    +

    @@ -830,29 +864,6 @@

    -

    ◆ can_global_id_mode_t

    - -
    -
    - - - - -
    enum can_global_id_mode_t
    -
    -

    Global CAN ID mode settings

    - - - - -
    Enumerator
    CAN_GLOBAL_ID_MODE_STANDARD 

    Standard IDs of 11 bits used.

    -
    CAN_GLOBAL_ID_MODE_EXTENDED 

    Extended IDs of 29 bits used.

    -
    CAN_GLOBAL_ID_MODE_MIXED 

    Both Standard and Extended IDs used.

    -
    -
    @@ -874,69 +885,6 @@

    -

    ◆ can_message_mode_t

    - -
    -
    - - - - -
    enum can_message_mode_t
    -
    -

    CAN Message Modes

    - - - -
    Enumerator
    CAN_MESSAGE_MODE_OVERWRITE 

    Receive data will be overwritten if not read before the next frame.

    -
    CAN_MESSAGE_MODE_OVERRUN 

    Receive data will be retained until it is read.

    -
    - -
    -
    - -

    ◆ can_clock_source_t

    - -
    -
    - - - - -
    enum can_clock_source_t
    -
    -

    CAN Source Clock

    - - - -
    Enumerator
    CAN_CLOCK_SOURCE_PCLKB 

    PCLKB is the source of the CAN Clock.

    -
    CAN_CLOCK_SOURCE_CANMCLK 

    CANMCLK is the source of the CAN Clock.

    -
    - -
    -
    - -

    ◆ can_mailbox_send_receive_t

    - -
    -
    - - - - -
    enum can_mailbox_send_receive_t
    -
    -

    CAN Mailbox type

    - - - -
    Enumerator
    CAN_MAILBOX_RECEIVE 

    Mailbox is for receiving.

    -
    CAN_MAILBOX_TRANSMIT 

    Mailbox is for sending.

    -
    -

    @@ -945,7 +893,7 @@

      - +

    diff --git a/group___c_a_n___a_p_i.js b/group___c_a_n___a_p_i.js index 38262e7..09487a0 100644 --- a/group___c_a_n___a_p_i.js +++ b/group___c_a_n___a_p_i.js @@ -1,5 +1,13 @@ var group___c_a_n___a_p_i = [ + [ "can_info_t", "group___c_a_n___a_p_i.html#structcan__info__t", [ + [ "status", "group___c_a_n___a_p_i.html#aec9d4439f59b61933c2205e4d3ea9210", null ], + [ "rx_mb_status", "group___c_a_n___a_p_i.html#ade07c155f14547df76ac44249e0d0feb", null ], + [ "rx_fifo_status", "group___c_a_n___a_p_i.html#a7cd7ac782cdb433247cc0f28f2755f81", null ], + [ "error_count_transmit", "group___c_a_n___a_p_i.html#ada0fe3e8eb824d0ebb36332f98e3c771", null ], + [ "error_count_receive", "group___c_a_n___a_p_i.html#a59787b23ec15fa38f51d167e10389081", null ], + [ "error_code", "group___c_a_n___a_p_i.html#a1ea2aaf80adb9f24fdee9828cae02e05", null ] + ] ], [ "can_bit_timing_cfg_t", "group___c_a_n___a_p_i.html#structcan__bit__timing__cfg__t", [ [ "baud_rate_prescaler", "group___c_a_n___a_p_i.html#a33ae62d869abaf989823b7bb1563de41", null ], [ "time_segment_1", "group___c_a_n___a_p_i.html#aafe4728b44b6abbb0f5d540e16d0be40", null ], @@ -9,8 +17,8 @@ var group___c_a_n___a_p_i = [ "can_frame_t", "group___c_a_n___a_p_i.html#structcan__frame__t", [ [ "id", "group___c_a_n___a_p_i.html#a49d4261f37f08f5a11cc3fc12c56cdc3", null ], [ "id_mode", "group___c_a_n___a_p_i.html#a4144eba26f77850571fca0498bec60ef", null ], - [ "data_length_code", "group___c_a_n___a_p_i.html#af58b9f3fe19ed69e0a635cd271c68404", null ], [ "type", "group___c_a_n___a_p_i.html#a79046fddb934fd7ea0d0cc70b8d7f26d", null ], + [ "data_length_code", "group___c_a_n___a_p_i.html#af58b9f3fe19ed69e0a635cd271c68404", null ], [ "options", "group___c_a_n___a_p_i.html#a27833816de50e1ad5b16b42856653ad8", null ], [ "data", "group___c_a_n___a_p_i.html#ad70086e98bfe0871e3f73d1f253138db", null ] ] ], @@ -21,12 +29,6 @@ var group___c_a_n___a_p_i = [ "p_context", "group___c_a_n___a_p_i.html#a663ed64c927057ab0ac45d02505dc758", null ], [ "frame", "group___c_a_n___a_p_i.html#aa8706fd62e652e6582d3c9eb155fb610", null ] ] ], - [ "can_mailbox_t", "group___c_a_n___a_p_i.html#structcan__mailbox__t", [ - [ "mailbox_id", "group___c_a_n___a_p_i.html#aa0c1d24b5896560908adb0ac9761aa28", null ], - [ "id_mode", "group___c_a_n___a_p_i.html#a9d3924b6ba4efb4c978a04d0e9a4fbc6", null ], - [ "mailbox_type", "group___c_a_n___a_p_i.html#aa6a30551456873fb921b933bd3ddbe23", null ], - [ "frame_type", "group___c_a_n___a_p_i.html#af01f0306a9ad2e430154d9d6a4e3404f", null ] - ] ], [ "can_cfg_t", "group___c_a_n___a_p_i.html#structcan__cfg__t", [ [ "channel", "group___c_a_n___a_p_i.html#a12f266c39b851a037b4d30ae5661e46b", null ], [ "p_bit_timing", "group___c_a_n___a_p_i.html#a751918f74effc746b381a75c971af879", null ], @@ -35,12 +37,8 @@ var group___c_a_n___a_p_i = [ "p_extend", "group___c_a_n___a_p_i.html#a0715ca299b94eea0ef2843b99e0d32e5", null ], [ "ipl", "group___c_a_n___a_p_i.html#a31ab501a9df967965b8085592b4d2ba1", null ], [ "error_irq", "group___c_a_n___a_p_i.html#ac958a7179da3a9f365a3bf55707fac6d", null ], - [ "mailbox_rx_irq", "group___c_a_n___a_p_i.html#a70c47efed0012e4512b7d7eca31e3e58", null ], - [ "mailbox_tx_irq", "group___c_a_n___a_p_i.html#afe91f3dd74163cacafbfb96ab2104df0", null ], - [ "p_mailbox", "group___c_a_n___a_p_i.html#a564584ef9e48317f93f432a0b86b9af8", null ], - [ "id_mode", "group___c_a_n___a_p_i.html#a34bf75f61795800b3df706b240fd7907", null ], - [ "mailbox_count", "group___c_a_n___a_p_i.html#a66e92277959e9e01a6ce2105dcdcbae6", null ], - [ "message_mode", "group___c_a_n___a_p_i.html#a0cb83f81e41146d1e688f88a69231d38", null ] + [ "rx_irq", "group___c_a_n___a_p_i.html#a88ba0583ec46ae65985a733c38975c38", null ], + [ "tx_irq", "group___c_a_n___a_p_i.html#ac495ac44fdee552f013eea5ba0e86b06", null ] ] ], [ "can_api_t", "group___c_a_n___a_p_i.html#structcan__api__t", [ [ "open", "group___c_a_n___a_p_i.html#a44ef1a1a3726114b30f228c54b0d44ce", null ], @@ -49,8 +47,7 @@ var group___c_a_n___a_p_i = [ "close", "group___c_a_n___a_p_i.html#a32ec8d31d80a709bae881f2e28d36d6c", null ], [ "modeTransition", "group___c_a_n___a_p_i.html#afb37a7735c6ac61a151a083b2d25153b", null ], [ "infoGet", "group___c_a_n___a_p_i.html#aba27908c89442250d365d4a44304e3c1", null ], - [ "callbackSet", "group___c_a_n___a_p_i.html#a0eeb3995e651ce4b77e8860ab50597a9", null ], - [ "versionGet", "group___c_a_n___a_p_i.html#aa3a9393d2130549479111743b1750b41", null ] + [ "callbackSet", "group___c_a_n___a_p_i.html#a0eeb3995e651ce4b77e8860ab50597a9", null ] ] ], [ "can_instance_t", "group___c_a_n___a_p_i.html#structcan__instance__t", [ [ "p_ctrl", "group___c_a_n___a_p_i.html#ae4d4d032f3e4f0688879027286ae4dbe", null ], @@ -69,7 +66,9 @@ var group___c_a_n___a_p_i = [ "CAN_EVENT_TX_ABORTED", "group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba973c55ab2a29a1554f488fedf29fea8a", null ], [ "CAN_EVENT_RX_COMPLETE", "group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbaa0bc5e15cee037a1d102b517ef63e161", null ], [ "CAN_EVENT_TX_COMPLETE", "group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbac169b4940b7cb76562efd7439fc76949", null ], - [ "CAN_EVENT_ERR_GLOBAL", "group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba8adaa142ed94841f5f282232ce414333", null ] + [ "CAN_EVENT_ERR_GLOBAL", "group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba8adaa142ed94841f5f282232ce414333", null ], + [ "CAN_EVENT_TX_FIFO_EMPTY", "group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba838c3a494516ccd0326bc1dad93e35d8", null ], + [ "CAN_EVENT_FIFO_MESSAGE_LOST", "group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4b9bfbf96c82d53ce3dd47e9a3237359", null ] ] ], [ "can_operation_mode_t", "group___c_a_n___a_p_i.html#gac29bd7d00b06d7457ae786471c296ba7", [ [ "CAN_OPERATION_MODE_NORMAL", "group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7abde5d9e8f5711b6fe8374671c96e6f72", null ], @@ -88,25 +87,8 @@ var group___c_a_n___a_p_i = [ "CAN_ID_MODE_STANDARD", "group___c_a_n___a_p_i.html#ggabc98e244722dcea05b5ce91bdb4c70c8a5d29b837d94d14fb99868c2d0a5220b0", null ], [ "CAN_ID_MODE_EXTENDED", "group___c_a_n___a_p_i.html#ggabc98e244722dcea05b5ce91bdb4c70c8abc5a87ed8edf218a6b44e4cceb48c0cb", null ] ] ], - [ "can_global_id_mode_t", "group___c_a_n___a_p_i.html#gab798132b937282be9589b6ed177ea999", [ - [ "CAN_GLOBAL_ID_MODE_STANDARD", "group___c_a_n___a_p_i.html#ggab798132b937282be9589b6ed177ea999af93ba7d9a4356ffa8c9b49f26c4f1b3d", null ], - [ "CAN_GLOBAL_ID_MODE_EXTENDED", "group___c_a_n___a_p_i.html#ggab798132b937282be9589b6ed177ea999a7dc9d3f494129db1c953915d1b781faa", null ], - [ "CAN_GLOBAL_ID_MODE_MIXED", "group___c_a_n___a_p_i.html#ggab798132b937282be9589b6ed177ea999aabdf871d5bbaf279c8dcf743ca64b488", null ] - ] ], [ "can_frame_type_t", "group___c_a_n___a_p_i.html#gad3ffe1ae0429fcd1053a969d96c47610", [ [ "CAN_FRAME_TYPE_DATA", "group___c_a_n___a_p_i.html#ggad3ffe1ae0429fcd1053a969d96c47610a1da44b52c2731b02cf02ca55eec08899", null ], [ "CAN_FRAME_TYPE_REMOTE", "group___c_a_n___a_p_i.html#ggad3ffe1ae0429fcd1053a969d96c47610a10c7ad0f4e083496ad3a3032fc533920", null ] - ] ], - [ "can_message_mode_t", "group___c_a_n___a_p_i.html#ga42c6d0b24e77b50c47ec54bafcac7604", [ - [ "CAN_MESSAGE_MODE_OVERWRITE", "group___c_a_n___a_p_i.html#gga42c6d0b24e77b50c47ec54bafcac7604ad8aab020d2b6d64777a0be580f44ddb4", null ], - [ "CAN_MESSAGE_MODE_OVERRUN", "group___c_a_n___a_p_i.html#gga42c6d0b24e77b50c47ec54bafcac7604af25ce6de3b35f5abe47186351372b8b7", null ] - ] ], - [ "can_clock_source_t", "group___c_a_n___a_p_i.html#ga5bf3c71a3b53b409e9ee682c69189a39", [ - [ "CAN_CLOCK_SOURCE_PCLKB", "group___c_a_n___a_p_i.html#gga5bf3c71a3b53b409e9ee682c69189a39a7c0cedacb23a57e50692191f61915cbd", null ], - [ "CAN_CLOCK_SOURCE_CANMCLK", "group___c_a_n___a_p_i.html#gga5bf3c71a3b53b409e9ee682c69189a39a5c90a69c9ba1a8116b6ec45ff238e117", null ] - ] ], - [ "can_mailbox_send_receive_t", "group___c_a_n___a_p_i.html#ga99db0880f7c03215e00781d3e57db3a3", [ - [ "CAN_MAILBOX_RECEIVE", "group___c_a_n___a_p_i.html#gga99db0880f7c03215e00781d3e57db3a3a5f4004ddfe179e388be8bb240527450e", null ], - [ "CAN_MAILBOX_TRANSMIT", "group___c_a_n___a_p_i.html#gga99db0880f7c03215e00781d3e57db3a3a1c100296f7b9384c8e09b55fd611242d", null ] ] ] ]; \ No newline at end of file diff --git a/group___c_a_n_f_d.html b/group___c_a_n_f_d.html index e58bad8..2afac19 100644 --- a/group___c_a_n_f_d.html +++ b/group___c_a_n_f_d.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Controller Area Network - Flexible Data (r_canfd) +RZV Flexible Software Package Documentation: Controller Area Network - Flexible Data (r_canfd) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + + + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    Controller Area Network - Flexible Data (r_canfd)
    +
    Controller Area Network - Flexible Data (r_canfd)
    @@ -111,7 +179,7 @@ - + @@ -127,18 +195,18 @@

    Common Features

    • Compatibility
      • Send and receive Classical CAN and CAN-FD frames on the same channel
      • -
      • Bitrate up to 1 Mbps with FD data phase speeds up to 4 Mbps
      • +
      • Bitrate up to 1 Mbps with FD data phase speeds up to 4-8 Mbps
      • Supports both ISO 11898-1
    • Buffers
        -
      • 32 global receive Message Buffers (RX MBs)
      • +
      • 32-96 global receive Message Buffers (RX MBs)
      • 8 global receive FIFOs (RX FIFOs)
      • -
      • 16 transmit Message Buffers (TX MBs) per channel
      • +
      • 16-32 transmit Message Buffers (TX MBs) per channel
    • Filtering
        -
      • Up to 128 filter rules across both channels
      • +
      • Up to 128-256 filter rules across both channels
      • Each filter rule can be individually configured to accept messages based on:
        • ID
        • Standard or Extended ID (IDE bit)
        • @@ -180,35 +248,35 @@

          Common Features

          Per-MPU Specifications

     
    fsp_err_t R_CANFD_ModeTransition (can_ctrl_t *const p_api_ctrl, can_operation_mode_t operation_mode, can_test_mode_t test_mode)
     
    fsp_err_t R_CANFD_InfoGet (can_ctrl_t *const p_api_ctrl, can_info_t *const p_info)
    fsp_err_t R_CANFD_InfoGet (can_ctrl_t *const p_api_ctrl, can_info_t *const p_info)
     
    fsp_err_t R_CANFD_CallbackSet (can_ctrl_t *const p_api_ctrl, void(*p_callback)(can_callback_args_t *), void const *const p_context, can_callback_args_t *const p_callback_memory)
     
    - + - + - + - + - + - + - + - + - + - +
    RZ/V2L
    RZ/V2L RZ/V2H
    Channels 2
    Channels 2 6
    Max nominal bitrate 1 Mbps
    Max nominal bitrate 1 Mbps 1 Mbps
    Max data bitrate 4 Mbps
    Max data bitrate 4 Mbps 8 Mbps
    Filter rules 128
    Filter rules 128 256
    TX message buffers 16/ch
    TX message buffers 16/ch 32/ch
    RX message buffers 32
    RX message buffers 32 96
    RX FIFOs 8
    RX FIFOs 8 8
    RX Buffer RAM 4864 bytes
    RX Buffer RAM 4864 bytes 14,592 bytes
    Standards ISO
    Standards ISO ISO
    Note
    Each message buffer comprises 12 header bytes plus data length (8-64 bytes). The above buffer RAM values therefore correspond to the following capacities: - + - + - +
    RZ/V2L
    RZ/V2L RZ/V2H
    Max 64-byte storage 64 messages
    Max 64-byte storage 64 messages 192 messages
    Max 8-byte storage 243 messages
    Max 8-byte storage 243 messages 729 messages
    -
    +

    Configuration

    Build Time Configurations for r_canfd

    @@ -217,57 +285,21 @@

    ConfigurationOptionsDefaultDescription -Global Error Interrupt > PriorityValue must be an integer between 0 and 25513 This interrupt is fired for each of the error sources selected below. +Global Error Interrupt > PriorityValue must be an integer between 0 and 25512 This interrupt is fired for each of the error sources selected below. -Global Error Interrupt > Sources
      -
    • -DLC Check
    • -
    • -Message Lost
    • -
    • -FD Payload Overflow
    • -
    -0U Select which errors should trigger an interrupt. +Global Error Interrupt > SourcesMCU Specific OptionsSelect which errors should trigger an interrupt. -Global Error Interrupt > Callback Channel
      -
    • -Channel 0
    • -
    • -Channel 1
    • -
    -Channel 1 Specify which channel callback should be called to handle global errors. When starting the driver this channel must be opened first. +Global Error Interrupt > Callback ChannelMCU Specific OptionsSpecify which channel callback should be called to handle global errors. When starting the driver this channel must be opened first. -Flexible Data (FD) > Protocol Exceptions
      -
    • -Enabled (ISO 11898-1)
    • -
    • -Disabled
    • -
    -Enabled (ISO 11898-1) Select whether to enter the protocol exception handling state when a RES bit is sampled recessive as defined in ISO 11898-1. +Flexible Data (FD) > Protocol ExceptionsMCU Specific OptionsSelect whether to enter the protocol exception handling state when a RES bit is sampled recessive as defined in ISO 11898-1. -Flexible Data (FD) > Payload Overflow
      -
    • -Reject
    • -
    • -Truncate
    • -
    -Reject Configure whether received messages larger than the destination buffer should be truncated or rejected. +Flexible Data (FD) > Payload OverflowMCU Specific OptionsConfigure whether received messages larger than the destination buffer should be truncated or rejected. -Reception > Message Buffers > Number of BuffersRX Message Buffer number must be an integer between 0 and 32.0 Number of message buffers available for reception.
    +Reception > Message Buffers > Number of BuffersManual Entry0 Number of message buffers available for reception.

    As there is no interrupt for message buffer reception it is recommended to use RX FIFOs instead. Set this value to 0 to disable RX Message Buffers. -Reception > Message Buffers > Payload Size
      -
    • -8 bytes
    • -
    • -12 bytes
    • -
    • -16 bytes
    • -
    • -20 bytes
    • -
    -8 bytes Payload size for all RX Message Buffers. +Reception > Message Buffers > Payload SizeMCU Specific OptionsPayload size for all RX Message Buffers. Reception > FIFOs > FIFO 0 > Enable
    • @@ -277,13 +309,13 @@

    Enabled Enable or disable RX FIFO 0. -Reception > FIFOs > FIFO 0 > Interrupt ModeMPU Specific OptionsSet the interrupt mode for RX FIFO 0. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. +Reception > FIFOs > FIFO 0 > Interrupt ModeMCU Specific OptionsSet the interrupt mode for RX FIFO 0. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. -Reception > FIFOs > FIFO 0 > Interrupt ThresholdMPU Specific OptionsSet the interrupt threshold value for RX FIFO 0. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. +Reception > FIFOs > FIFO 0 > Interrupt ThresholdMCU Specific OptionsSet the interrupt threshold value for RX FIFO 0. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. -Reception > FIFOs > FIFO 0 > Payload SizeMPU Specific OptionsSelect the message payload size for RX FIFO 0. +Reception > FIFOs > FIFO 0 > Payload SizeMCU Specific OptionsSelect the message payload size for RX FIFO 0. -Reception > FIFOs > FIFO 0 > DepthMPU Specific OptionsSelect the number of stages for RX FIFO 0. +Reception > FIFOs > FIFO 0 > DepthMCU Specific OptionsSelect the number of stages for RX FIFO 0. Reception > FIFOs > FIFO 1 > Enable
    • @@ -293,13 +325,13 @@

    Disabled Enable or disable RX FIFO 1. -Reception > FIFOs > FIFO 1 > Interrupt ModeMPU Specific OptionsSet the interrupt mode for RX FIFO 1. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. +Reception > FIFOs > FIFO 1 > Interrupt ModeMCU Specific OptionsSet the interrupt mode for RX FIFO 1. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. -Reception > FIFOs > FIFO 1 > Interrupt ThresholdMPU Specific OptionsSet the interrupt threshold value for RX FIFO 1. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. +Reception > FIFOs > FIFO 1 > Interrupt ThresholdMCU Specific OptionsSet the interrupt threshold value for RX FIFO 1. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. -Reception > FIFOs > FIFO 1 > Payload SizeMPU Specific OptionsSelect the message payload size for RX FIFO 1. +Reception > FIFOs > FIFO 1 > Payload SizeMCU Specific OptionsSelect the message payload size for RX FIFO 1. -Reception > FIFOs > FIFO 1 > DepthMPU Specific OptionsSelect the number of stages for RX FIFO 1. +Reception > FIFOs > FIFO 1 > DepthMCU Specific OptionsSelect the number of stages for RX FIFO 1. Reception > FIFOs > FIFO 2 > Enable
    • @@ -309,13 +341,13 @@

    Disabled Enable or disable RX FIFO 2. -Reception > FIFOs > FIFO 2 > Interrupt ModeMPU Specific OptionsSet the interrupt mode for RX FIFO 2. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. +Reception > FIFOs > FIFO 2 > Interrupt ModeMCU Specific OptionsSet the interrupt mode for RX FIFO 2. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. -Reception > FIFOs > FIFO 2 > Interrupt ThresholdMPU Specific OptionsSet the interrupt threshold value for RX FIFO 2. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. +Reception > FIFOs > FIFO 2 > Interrupt ThresholdMCU Specific OptionsSet the interrupt threshold value for RX FIFO 2. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. -Reception > FIFOs > FIFO 2 > Payload SizeMPU Specific OptionsSelect the message payload size for RX FIFO 2. +Reception > FIFOs > FIFO 2 > Payload SizeMCU Specific OptionsSelect the message payload size for RX FIFO 2. -Reception > FIFOs > FIFO 2 > DepthMPU Specific OptionsSelect the number of stages for RX FIFO 2. +Reception > FIFOs > FIFO 2 > DepthMCU Specific OptionsSelect the number of stages for RX FIFO 2. Reception > FIFOs > FIFO 3 > Enable
    • @@ -325,13 +357,13 @@

    Disabled Enable or disable RX FIFO 3. -Reception > FIFOs > FIFO 3 > Interrupt ModeMPU Specific OptionsSet the interrupt mode for RX FIFO 3. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. +Reception > FIFOs > FIFO 3 > Interrupt ModeMCU Specific OptionsSet the interrupt mode for RX FIFO 3. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. -Reception > FIFOs > FIFO 3 > Interrupt ThresholdMPU Specific OptionsSet the interrupt threshold value for RX FIFO 3. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. +Reception > FIFOs > FIFO 3 > Interrupt ThresholdMCU Specific OptionsSet the interrupt threshold value for RX FIFO 3. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. -Reception > FIFOs > FIFO 3 > Payload SizeMPU Specific OptionsSelect the message payload size for RX FIFO 3. +Reception > FIFOs > FIFO 3 > Payload SizeMCU Specific OptionsSelect the message payload size for RX FIFO 3. -Reception > FIFOs > FIFO 3 > DepthMPU Specific OptionsSelect the number of stages for RX FIFO 3. +Reception > FIFOs > FIFO 3 > DepthMCU Specific OptionsSelect the number of stages for RX FIFO 3. Reception > FIFOs > FIFO 4 > Enable
    • @@ -341,13 +373,13 @@

    Disabled Enable or disable RX FIFO 4. -Reception > FIFOs > FIFO 4 > Interrupt ModeMPU Specific OptionsSet the interrupt mode for RX FIFO 4. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. +Reception > FIFOs > FIFO 4 > Interrupt ModeMCU Specific OptionsSet the interrupt mode for RX FIFO 4. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. -Reception > FIFOs > FIFO 4 > Interrupt ThresholdMPU Specific OptionsSet the interrupt threshold value for RX FIFO 4. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. +Reception > FIFOs > FIFO 4 > Interrupt ThresholdMCU Specific OptionsSet the interrupt threshold value for RX FIFO 4. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. -Reception > FIFOs > FIFO 4 > Payload SizeMPU Specific OptionsSelect the message payload size for RX FIFO 4. +Reception > FIFOs > FIFO 4 > Payload SizeMCU Specific OptionsSelect the message payload size for RX FIFO 4. -Reception > FIFOs > FIFO 4 > DepthMPU Specific OptionsSelect the number of stages for RX FIFO 4. +Reception > FIFOs > FIFO 4 > DepthMCU Specific OptionsSelect the number of stages for RX FIFO 4. Reception > FIFOs > FIFO 5 > Enable
    • @@ -357,13 +389,13 @@

    Disabled Enable or disable RX FIFO 5. -Reception > FIFOs > FIFO 5 > Interrupt ModeMPU Specific OptionsSet the interrupt mode for RX FIFO 5. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. +Reception > FIFOs > FIFO 5 > Interrupt ModeMCU Specific OptionsSet the interrupt mode for RX FIFO 5. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. -Reception > FIFOs > FIFO 5 > Interrupt ThresholdMPU Specific OptionsSet the interrupt threshold value for RX FIFO 5. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. +Reception > FIFOs > FIFO 5 > Interrupt ThresholdMCU Specific OptionsSet the interrupt threshold value for RX FIFO 5. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. -Reception > FIFOs > FIFO 5 > Payload SizeMPU Specific OptionsSelect the message payload size for RX FIFO 5. +Reception > FIFOs > FIFO 5 > Payload SizeMCU Specific OptionsSelect the message payload size for RX FIFO 5. -Reception > FIFOs > FIFO 5 > DepthMPU Specific OptionsSelect the number of stages for RX FIFO 5. +Reception > FIFOs > FIFO 5 > DepthMCU Specific OptionsSelect the number of stages for RX FIFO 5. Reception > FIFOs > FIFO 6 > Enable
    • @@ -373,13 +405,13 @@

    Disabled Enable or disable RX FIFO 6. -Reception > FIFOs > FIFO 6 > Interrupt ModeMPU Specific OptionsSet the interrupt mode for RX FIFO 6. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. +Reception > FIFOs > FIFO 6 > Interrupt ModeMCU Specific OptionsSet the interrupt mode for RX FIFO 6. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. -Reception > FIFOs > FIFO 6 > Interrupt ThresholdMPU Specific OptionsSet the interrupt threshold value for RX FIFO 6. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. +Reception > FIFOs > FIFO 6 > Interrupt ThresholdMCU Specific OptionsSet the interrupt threshold value for RX FIFO 6. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. -Reception > FIFOs > FIFO 6 > Payload SizeMPU Specific OptionsSelect the message payload size for RX FIFO 6. +Reception > FIFOs > FIFO 6 > Payload SizeMCU Specific OptionsSelect the message payload size for RX FIFO 6. -Reception > FIFOs > FIFO 6 > DepthMPU Specific OptionsSelect the number of stages for RX FIFO 6. +Reception > FIFOs > FIFO 6 > DepthMCU Specific OptionsSelect the number of stages for RX FIFO 6. Reception > FIFOs > FIFO 7 > Enable
    • @@ -389,19 +421,27 @@

    Disabled Enable or disable RX FIFO 7. -Reception > FIFOs > FIFO 7 > Interrupt ModeMPU Specific OptionsSet the interrupt mode for RX FIFO 7. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. +Reception > FIFOs > FIFO 7 > Interrupt ModeMCU Specific OptionsSet the interrupt mode for RX FIFO 7. Threshold mode will only fire an interrupt each time an incoming message crosses the threshold value set below. + +Reception > FIFOs > FIFO 7 > Interrupt ThresholdMCU Specific OptionsSet the interrupt threshold value for RX FIFO 7. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. -Reception > FIFOs > FIFO 7 > Interrupt ThresholdMPU Specific OptionsSet the interrupt threshold value for RX FIFO 7. This setting is only applicable when the Interrupt Mode is set to 'At Threshold Value'. +Reception > FIFOs > FIFO 7 > Payload SizeMCU Specific OptionsSelect the message payload size for RX FIFO 7. -Reception > FIFOs > FIFO 7 > Payload SizeMPU Specific OptionsSelect the message payload size for RX FIFO 7. +Reception > FIFOs > FIFO 7 > DepthMCU Specific OptionsSelect the number of stages for RX FIFO 7. -Reception > FIFOs > FIFO 7 > DepthMPU Specific OptionsSelect the number of stages for RX FIFO 7. +Reception > FIFOs > Interrupt PriorityValue must be an integer between 0 and 25512 This priority level will apply to all FIFO interrupts globally. -Reception > FIFOs > Interrupt PriorityValue must be an integer between 0 and 25513 This priority level will apply to all FIFO interrupts globally. +Reception > Acceptance Filtering > Channel 0 Rule CountValue must be a non-negative integer64 Number of acceptance filter list rules dedicated to Channel 0. -Reception > Acceptance Filtering > Channel 0 Rule CountThe number of AFL rules must be an integer between 0 and 128.64 Number of acceptance filter list rules dedicated to Channel 0. +Reception > Acceptance Filtering > Channel 1 Rule CountValue must be a non-negative integer64 Number of acceptance filter list rules dedicated to Channel 1. -Reception > Acceptance Filtering > Channel 1 Rule CountThe number of AFL rules must be an integer between 0 and 128.64 Number of acceptance filter list rules dedicated to Channel 1. +Reception > Acceptance Filtering > Channel 2 Rule CountValue must be a non-negative integer0 Number of acceptance filter list rules dedicated to Channel 2. + +Reception > Acceptance Filtering > Channel 3 Rule CountValue must be a non-negative integer0 Number of acceptance filter list rules dedicated to Channel 3. + +Reception > Acceptance Filtering > Channel 4 Rule CountValue must be a non-negative integer0 Number of acceptance filter list rules dedicated to Channel 4. + +Reception > Acceptance Filtering > Channel 5 Rule CountValue must be a non-negative integer0 Number of acceptance filter list rules dedicated to Channel 5. Parameter Checking
    • @@ -413,65 +453,45 @@

    Default (BSP) If selected code for parameter checking is included in the build. -Transmission Priority
      -
    • -Message ID
    • -
    • -Buffer Number
    • -
    -Buffer Number Select how messages should be prioritized for transmission. In either case, lower numbers indicate higher priority. +Transmission PriorityMCU Specific OptionsSelect how messages should be prioritized for transmission. In either case, lower numbers indicate higher priority. -DLC Check
      -
    • -Disabled
    • -
    • -Enabled
    • -
    • -Enabled w/truncate
    • -
    -config.driver.canfd.dlc_check.disabled When enabled received messages will be rejected if their DLC field is less than the value configured in the associated AFL rule. If 'Enabled w/truncate' is selected and a message passes the DLC check the DLC field is set to the value in the associated AFL rule and any excess data is discarded. +DLC CheckMCU Specific OptionsWhen enabled received messages will be rejected if their DLC field is less than the value configured in the associated AFL rule. If 'Enabled w/truncate' is selected and a message passes the DLC check the DLC field is set to the value in the associated AFL rule and any excess data is discarded. -Clock Source
      -
    • -P0CLK/2
    • -
    • -CAN_CLK
    • -
    -P0CLK/2 Select the CANFD clock source. +Clock SourceMCU Specific OptionsSelect the CANFD clock source. -

    Configurations for Driver > Connectivity > CANFD Driver on r_canfd

    -This module can be added to the Stacks tab via New Stack > Driver > Connectivity > CANFD Driver on r_canfd.
    +

    Configurations for Connectivity > CANFD Driver on r_canfd

    +This module can be added to the Stacks tab via New Stack > Connectivity > CANFD Driver on r_canfd.

    - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +
    ConfigurationOptionsDefaultDescription
    General > NameName must be a valid C symbolg_canfd0 Module name.
    General > ChannelChannel should be 0 or 10 Specify the CAN channel to use.
    General > ChannelValue must be a non-negative integer0 Specify the CAN channel to use.
    Bitrate > Automatic > Clock source frequency (Set 0 if P0CLK use)Must be a valid integer.0 Input clock source frequency.
    Bitrate > Automatic > Clock source frequency (Set 0 if PCLK use)Must be a valid integer.0 Input clock source frequency.
    Bitrate > Automatic > Nominal Rate (bps)Must be a valid integer with a maximum of 1MHz.500000 Specify nominal bitrate in bits per second.
    Bitrate > Automatic > Data Rate (bps)Must be a valid integer with a maximum of 4MHz.2000000 Specify data bitrate in bits per second.
    Bitrate > Automatic > Data Rate (bps)Must be a valid integer greater than 0.2000000 Specify data bitrate in bits per second.
    Bitrate > Automatic > Sample Point (%)Must be a valid integer between 60 and 99.75 Specify desired sample point.
    Bitrate > Manual > Nominal > Prescaler (divisor)Value must be a non-negative integer between 1 and 1024.2 Specify clock divisor for nominal bitrate.
    Bitrate > Manual > Nominal > Prescaler (divisor)Manual Entry1 Specify clock divisor for nominal bitrate.
    Bitrate > Manual > Nominal > Time Segment 1 (Tq)Value must be a non-negative integer between 4 and 128.37 Select the Time Segment 1 value. Check module usage notes for how to calculate this value.
    Bitrate > Manual > Nominal > Time Segment 1 (Tq)Manual Entry29 Select the Time Segment 1 value. Check module usage notes for how to calculate this value.
    Bitrate > Manual > Nominal > Time Segment 2 (Tq)Value must be a non-negative integer between 2 and 32.12 Select the Time Segment 2 value. Check module usage notes for how to calculate this value.
    Bitrate > Manual > Nominal > Time Segment 2 (Tq)Manual Entry10 Select the Time Segment 2 value. Check module usage notes for how to calculate this value.
    Bitrate > Manual > Nominal > Sync Jump Width (Tq)Value must be a non-negative integer between 1 and 32.4 Select the Synchronization Jump Width value. Check module usage notes for how to calculate this value.
    Bitrate > Manual > Nominal > Sync Jump Width (Tq)Manual Entry4 Select the Synchronization Jump Width value. Check module usage notes for how to calculate this value.
    Bitrate > Manual > Data > Prescaler (divisor)Value must be a non-negative integer between 1 and 256.2 Specify clock divisor for data bitrate.
    Bitrate > Manual > Data > Prescaler (divisor)Manual Entry1 Specify clock divisor for data bitrate.
    Bitrate > Manual > Data > Time Segment 1 (Tq)Value must be a non-negative integer between 2 and 16.9 Select the Time Segment 1 value. Check module usage notes for how to calculate this value.
    Bitrate > Manual > Data > Time Segment 1 (Tq)Manual Entry12 Select the Time Segment 1 value. Check module usage notes for how to calculate this value.
    Bitrate > Manual > Data > Time Segment 2 (Tq)Value must be a non-negative integer between 2 and 8.3 Select the Time Segment 2 value. Check module usage notes for how to calculate this value.
    Bitrate > Manual > Data > Time Segment 2 (Tq)Manual Entry4 Select the Time Segment 2 value. Check module usage notes for how to calculate this value.
    Bitrate > Manual > Data > Sync Jump Width (Tq)Value must be a non-negative integer between 1 and 8.1 Select the Synchronization Jump Width value. Check module usage notes for how to calculate this value.
    Bitrate > Manual > Data > Sync Jump Width (Tq)Manual Entry1 Select the Synchronization Jump Width value. Check module usage notes for how to calculate this value.
    Bitrate > Manual > Use manual settings
    • @@ -491,57 +511,45 @@

      Configurations for Driver > Connectivity > CANFD Driver on r_canfd

    Interrupts > CallbackName must be a valid C symbolcanfd0_callback A user callback function. If this callback function is provided, it is called from the interrupt service routine (ISR) each time any interrupt occurs.
    Interrupts > Channel Interrupt Priority LevelValue must be an integer between 0 and 25513 Channel Error/Transmit interrupt priority.
    Interrupts > Channel Interrupt Priority LevelValue must be an integer between 0 and 25512 Channel Error/Transmit interrupt priority.
    Transmit InterruptsRefer to the Configuration tool for available options.0ULL Select which TX Message Buffers should trigger an interrupt when transmission is complete.
    Transmit InterruptsMCU Specific OptionsSelect which TX Message Buffers should trigger an interrupt when transmission is complete.
    Channel Error Interrupts
      -
    • -Error Warning
    • -
    • -Error Passive
    • -
    • -Bus-Off Entry
    • -
    • -Bus-Off Recovery
    • -
    • -Overload
    • -
    -
    0U Select which channel error interrupt sources to enable.
    Channel Error InterruptsMCU Specific OptionsSelect which channel error interrupt sources to enable.
    TX Buffer Merge Mode
      -
    • -Disable (Transmit Payloads 20bytes or less)
    • -
    • -Enable (Transmit payloads over 20bytes at TX MB0,3)
    • -
    -
    Disable (Transmit Payloads 20bytes or less) When enabled the CANFD module set Transmit buffer merge mode enable. TX MB0,3 are able to transmit payload with a length of more than 20 bytes.
    TX Buffer Merge ModeMCU Specific OptionsWhen enabled the CANFD module set Transmit buffer merge mode enable. TX MB0,3 are able to transmit payload with a length of more than 20 bytes.
    Filter List ArrayName must be a valid C symbolp_canfd0_afl Acceptance Filter List (AFL) rule array symbol name.

    Clock Configuration

    -

    The CANFD peripheral uses either P0/2 clock or CAN_CLK which is an externally input clock as its clock source. The RZ Configuration editor will attempt to get as close as possible to the supplied bitrate with the configured clock source. To achieve an exact bitrate the CANFD source clock or divisor may need to be adjusted to meet the criteria in the formula below:

    +

    The CANFD peripheral uses the clocks shown in the table below as its clock sources.

    + + + + + +
    RZ/V2L RZ/V2H
    Clock Source P0 clock/2 or External CANFD Clock*1 CANFD_0_pclk
    +

    *1: Externally input clock to the CAN_CLK pin

    +

    To achieve an exact bitrate the CANFD source clock or divisor may need to be adjusted to meet the criteria in the formula below:

    bitrate = canfd_clock_hz / ((time_segment_1 + time_segment_2 + 1) * prescalar)

    For CANFD, the possible values for each element are as follows:

    - + - + - + - +
    Element Min Max (Nominal) Max (Data)
    Bitrate - 1 Mbps 4 Mbps
    Bitrate - 1 Mbps 4-8 Mbps*1
    Time Segment 1 2* Tq 128 Tq 16 Tq
    Time Segment 1 2 Tq 128 Tq 16-32 Tq*2
    Time Segment 2 2 Tq 32 Tq 8 Tq
    Time Segment 2 2 Tq 32 Tq 8-16 Tq*3
    Sync Jump Width 1 Tq Time Segment 2 Time Segment 2
    Sync Jump Width 2 Tq (Nominal) / 1 Tq (Data)*2 Time Segment 2 Time Segment 2
    Prescalar 1 1024 256
    -
      -
    • 4 Tq for Nominal.
    • -
    -

    In the Stacks tab of the CANFD on the RZ Configuration editor, you can choose whether to use the P0/2 clock or the CAN_CLK in the Clock Source option.

    +

    *1: RZ/V2L supports up to 4 Mbps; RZ/V2H supports up to 8 Mbps. *2: RZ/V2L supports up to 16 Tq; RZ/V2H supports up to 32 Tq. *3: RZ/V2L supports up to 8 Tq; RZ/V2H supports up to 16 Tq.

    +
    Note
    RZ/V FSP does not support changing the frequency of the peripheral clock used in CANFD.

    Pin Configuration

    CANFD channels each control two pins: CRX (receive) and CTX (transmit).

    @@ -554,7 +562,7 @@

    TX Message Buffers

    TX MBs are used for transmission only. Refer to the hardware manual for your device for information on which TX MBs are available.

    Note
    The CANFD peripheral continually scans TX MBs for new data. Depending on the provided clock it may be possible to write to multiple TX MBs before transmission begins. In this case, messages will be sent in the priority specified by the Transmission Priority option in the RZ Configuration editor.

    RX Message Buffers

    -

    RX MBs are for reception only and may only hold one message at a time. 32 total RX MBs are available and are shared across all channels.

    +

    RX MBs are for reception only and may only hold one message at a time. 32-96 total RX MBs are available and are shared across all channels.

    No interrupts are provided for RX MBs. Use R_CANFD_InfoGet and R_CANFD_Read to poll and read them, respectively.

    RX FIFOs

    RX FIFOs provide interrupt-driven queue functionality for receiving messages and are shared across all channels. All FIFOs have the following capabilities:

    @@ -758,7 +766,7 @@

    AFL rules list. -uint16_t +uint64_t txmb_txi_enable @@ -882,6 +890,18 @@

    CANFD_ERROR_GLOBAL_PAYLOAD_OVERFLOW 

    FD Payload Overflow.

    +CANFD_ERROR_GLOBAL_TXQ_OVERWRITE 

    TX Queue Message Overwrite.

    + +CANFD_ERROR_GLOBAL_TXQ_MESSAGE_LOST 

    TX Queue Message Lost.

    + +CANFD_ERROR_GLOBAL_CH0_SCAN_FAIL 

    Channel 0 RX Scan Failure.

    + +CANFD_ERROR_GLOBAL_CH1_SCAN_FAIL 

    Channel 1 RX Scan Failure.

    + +CANFD_ERROR_GLOBAL_CH0_ECC 

    Channel 0 ECC Error.

    + +CANFD_ERROR_GLOBAL_CH1_ECC 

    Channel 1 ECC Error.

    +

    @@ -1106,7 +1126,8 @@

    FSP_ERR_CAN_TRANSMIT_NOT_READYTransmit in progress, cannot write data at this time. FSP_ERR_INVALID_ARGUMENTData length or buffer number invalid. FSP_ERR_INVALID_MODEAn FD option was set on a non-FD frame. - FSP_ERR_ASSERTIONNull pointer presented + FSP_ERR_ASSERTIONOne or more pointer arguments is NULL. + FSP_ERR_UNSUPPORTEDFD is not supported on this MPU. @@ -1218,7 +1239,7 @@

    - can_info_t *const  + can_info_t *const  p_info  @@ -1296,7 +1317,7 @@

      - +

    diff --git a/group___c_a_n_f_d.js b/group___c_a_n_f_d.js index 5086985..ba202de 100644 --- a/group___c_a_n_f_d.js +++ b/group___c_a_n_f_d.js @@ -11,7 +11,7 @@ var group___c_a_n_f_d = ] ], [ "canfd_extended_cfg_t", "group___c_a_n_f_d.html#structcanfd__extended__cfg__t", [ [ "p_afl", "group___c_a_n_f_d.html#a3bcb58bb257835c3618f28751aad29a5", null ], - [ "txmb_txi_enable", "group___c_a_n_f_d.html#a1a95c697fe49bba12e5ddb7e21b04572", null ], + [ "txmb_txi_enable", "group___c_a_n_f_d.html#ab3421077c295a40773c6cad2fb638176", null ], [ "error_interrupts", "group___c_a_n_f_d.html#a0c05dacb48970397676e54a01c81d0e1", null ], [ "p_data_timing", "group___c_a_n_f_d.html#a924d2187cf551c85ded2b148e26bbfd9", null ], [ "delay_compensation", "group___c_a_n_f_d.html#a3b38e8d28731a86eb521db8a5c5ae85e", null ], @@ -47,7 +47,13 @@ var group___c_a_n_f_d = [ "CANFD_ERROR_CHANNEL_ACK_DELIMITER", "group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a5c4e3bece7c60441a51d3899e73a158f", null ], [ "CANFD_ERROR_GLOBAL_DLC", "group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ac1b7da9fdca7a6fa3c9b9ba33371f4a8", null ], [ "CANFD_ERROR_GLOBAL_MESSAGE_LOST", "group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abee1888c27382c7121781db44c31bc2b", null ], - [ "CANFD_ERROR_GLOBAL_PAYLOAD_OVERFLOW", "group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a5d38f69b80c5a2ca136cc2372885dd15", null ] + [ "CANFD_ERROR_GLOBAL_PAYLOAD_OVERFLOW", "group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a5d38f69b80c5a2ca136cc2372885dd15", null ], + [ "CANFD_ERROR_GLOBAL_TXQ_OVERWRITE", "group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4aabb74eb7c63e572823fdc251ee430510", null ], + [ "CANFD_ERROR_GLOBAL_TXQ_MESSAGE_LOST", "group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a46568698565919a0a2f47cb8f3641799", null ], + [ "CANFD_ERROR_GLOBAL_CH0_SCAN_FAIL", "group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a12b3e818b05c74a2e138ea58893151af", null ], + [ "CANFD_ERROR_GLOBAL_CH1_SCAN_FAIL", "group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abad26cd9692b98e885b8f80eea26c9d9", null ], + [ "CANFD_ERROR_GLOBAL_CH0_ECC", "group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4acc2641aa9a3f9543af9d27313ba09001", null ], + [ "CANFD_ERROR_GLOBAL_CH1_ECC", "group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a632b3d6e96c5d7f468dfd4c0b33b1f86", null ] ] ], [ "canfd_tx_mb_t", "group___c_a_n_f_d.html#gaa7408bbf08466fb0f6025a8dfd93c714", null ], [ "canfd_rx_buffer_t", "group___c_a_n_f_d.html#gacccf33f0942180054dd71c26c512844d", null ], diff --git a/group___c_m_t_w.html b/group___c_m_t_w.html new file mode 100644 index 0000000..fb5b0e3 --- /dev/null +++ b/group___c_m_t_w.html @@ -0,0 +1,1234 @@ + + + + + + + +RZV Flexible Software Package Documentation: Compare Match Timer W (r_cmtw) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Compare Match Timer W (r_cmtw)
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_CMTW_Close (timer_ctrl_t *const p_ctrl)
     
    fsp_err_t R_CMTW_PeriodSet (timer_ctrl_t *const p_ctrl, uint32_t const period_counts)
     
    fsp_err_t R_CMTW_DutyCycleSet (timer_ctrl_t *const p_ctrl, uint32_t const duty_cycle_counts, uint32_t const pin)
     
    fsp_err_t R_CMTW_Reset (timer_ctrl_t *const p_ctrl)
     
    fsp_err_t R_CMTW_Start (timer_ctrl_t *const p_ctrl)
     
    fsp_err_t R_CMTW_Enable (timer_ctrl_t *const p_ctrl)
     
    fsp_err_t R_CMTW_Disable (timer_ctrl_t *const p_ctrl)
     
    fsp_err_t R_CMTW_InfoGet (timer_ctrl_t *const p_ctrl, timer_info_t *const p_info)
     
    fsp_err_t R_CMTW_StatusGet (timer_ctrl_t *const p_ctrl, timer_status_t *const p_status)
     
    fsp_err_t R_CMTW_Stop (timer_ctrl_t *const p_ctrl)
     
    fsp_err_t R_CMTW_Open (timer_ctrl_t *const p_ctrl, timer_cfg_t const *const p_cfg)
     
    fsp_err_t R_CMTW_OutputEnable (timer_ctrl_t *const p_ctrl, cmtw_io_pin_t pin)
     
    fsp_err_t R_CMTW_OutputDisable (timer_ctrl_t *const p_ctrl, cmtw_io_pin_t pin)
     
    fsp_err_t R_CMTW_CallbackSet (timer_ctrl_t *const p_api_ctrl, void(*p_callback)(timer_callback_args_t *), void const *const p_context, timer_callback_args_t *const p_callback_memory)
     
    +

    Detailed Description

    +

    Driver for the CMTW peripheral on RZ MPUs. This module implements the Timer Interface.

    +

    +Overview

    +

    +Features

    +

    The CMTW module has the following features:

      +
    • Supports periodic mode and one-shot mode.
    • +
    • Supports Input capture function, Output compare function, and Compare match function.
    • +
    • Signal can be output to a pin.
    • +
    • Configurable period (counts per timer cycle).
    • +
    • Supports runtime reconfiguration of period.
    • +
    • APIs are provided to start, stop, and reset the counter.
    • +
    • APIs are provided to get the current period, source clock frequency, and count direction.
    • +
    • APIs are provided to get the current timer status and counter value.
    • +
    +

    +Configuration

    +

    Build Time Configurations for r_cmtw

    +The following build time configurations are defined in fsp_cfg/r_cmtw_cfg.h:
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    +

    Configurations for Timers > Timer Driver on r_cmtw

    +This module can be added to the Stacks tab via New Stack > Timers > Timer Driver on r_cmtw.
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    General > NameName must be a valid C symbolg_timer0 Module name.
    General > ChannelChannel number does not exist0 Physical hardware channel.
    General > Mode
      +
    • +Periodic
    • +
    • +One-Shot
    • +
    +
    Periodic Mode selection. Note: One-shot mode is implemented in software. ISR's must be enabled for one shot even if callback is unused.
    General > PeriodValue must be non-negative0x10000 Specify the timer period based on the selected unit.
    General > Period Unit
      +
    • +Raw Counts
    • +
    • +Nanoseconds
    • +
    • +Microseconds
    • +
    • +Milliseconds
    • +
    • +Seconds
    • +
    • +Hertz
    • +
    • +Kilohertz
    • +
    +
    Raw Counts Unit of the period specified above
    General > Counter Size
      +
    • +32-bit
    • +
    • +16-bit
    • +
    +
    32-bit Size of the timer counter
    General > Counter Clear Source
      +
    • +Compare Match
    • +
    • +Disabled
    • +
    • +Input Capture0
    • +
    • +Input Capture1
    • +
    • +Output Compare0
    • +
    • +Output Compare1
    • +
    +
    Compare Match Select the Counter Clear Source.
    Output > TOC0 Output
      +
    • +Disabled
    • +
    • +Start Level Low and Toggle Output
    • +
    • +Start Level High and Toggle Output
    • +
    +
    Disabled Configure TOC0 output.
    Output > TOC1 Output
      +
    • +Disabled
    • +
    • +Start Level Low and Toggle Output
    • +
    • +Start Level High and Toggle Output
    • +
    +
    Disabled Configure TOC1 output.
    Output > TOC0 Output Enable
      +
    • +Output Disable
    • +
    • +Output Enable
    • +
    +
    Output Disable Configure TOC0 output enable.
    Output > TOC1 Output Enable
      +
    • +Output Disable
    • +
    • +Output Enable
    • +
    +
    Output Disable Configure TOC1 output enable.
    Input > TIC0 Capture Trigger
      +
    • +Rising Edge
    • +
    • +Falling Edge
    • +
    • +Both Edge
    • +
    +
    Rising Edge Select the trigger edge.
    Input > TIC1 Capture Trigger
      +
    • +Rising Edge
    • +
    • +Falling Edge
    • +
    • +Both Edge
    • +
    +
    Rising Edge Select the trigger edge.
    Input > TIC0 Input Enable
      +
    • +Input Disable
    • +
    • +Input Enable
    • +
    +
    Input Disable Configure TIC0 output enable.
    Input > TIC1 Input Enable
      +
    • +Input Disable
    • +
    • +Input Enable
    • +
    +
    Input Disable Configure TIC1 output enable.
    Interrupts > CallbackName must be a valid C symbolNULL A user callback function. If this callback function is provided, it is called from the interrupt service routine (ISR) each time the timer period elapses.
    Interrupts > Compare Match Interrupt EnableMCU Specific OptionsCompare match interrupt enanble.
    Interrupts > Compare Match Interrupt PriorityValue must be an integer between 0 and 2555 Compare match interrupt priority.
    Interrupts > Input Capture 0 Interrupt EnableMCU Specific OptionsInput capture 0 interrupt enanble.
    Interrupts > Input Capture 0 Interrupt PriorityValue must be an integer between 0 and 2555 Input capture 0 interrupt priority.
    Interrupts > Input Capture 1 Interrupt EnableMCU Specific OptionsInput capture 1 interrupt enanble.
    Interrupts > Input Capture 1 Interrupt PriorityValue must be an integer between 0 and 2555 Input capture 1 interrupt priority.
    Interrupts > Output Compare 0 Interrupt EnableMCU Specific OptionsOutput capture 0 interrupt enanble.
    Interrupts > Output Compare 0 Interrupt PriorityValue must be an integer between 0 and 2555 Output capture 0 interrupt priority.
    Interrupts > Output Compare 1 Interrupt EnableMCU Specific OptionsOutput capture 1 interrupt enanble.
    Interrupts > Output Compare 1 Interrupt PriorityValue must be an integer between 0 and 2555 Output capture 1 interrupt priority.
    +

    +

    +Clock Configuration

    +

    The CMTW clock is based on the PLLCM33 and PLLCLN. You can set the clock frequency using the Clocks tab of the FSP Configuration editor or by using the CGC Interface at run-time.

    +

    +Pin Configuration

    +

    This module can use the TOC0 and TOC1 pins as output pins for output compare or one-shot signals.

    +

    For input capture, the input signal must be applied to the TIC0 or TIC1 pin.

    +

    +Timer Period

    +

    The FSP Configuration editor will automatically calculate the period count value and source clock divider based on the selected period time, units, and clock speed.

    + + + + + + + +
    Channel Clock source Maximum period (counts)
    CMTW0-CMTW3 PLLCM33 clock 0x100000000
    CMTW4-CMTW7 PLLCLN clock 0x100000000
    +
    Note
    Because the period interrupt occurs when the counter overflows, setting the period register to 0 results in an effective period of 1 count. For this reason all user-provided raw count values reflect the actual number of period counts (not the raw register values).
    +

    +Usage Notes

    +

    One-Shot Mode

    +

    The CMTW timer does not support one-shot mode natively. One-shot mode is achieved by stopping the timer in the interrupt service routine before the callback is called. If the interrupt is not serviced before the timer period expires again, the timer generates more than one event. The callback is only called once in this case, but multiple events may be generated if the timer is linked to the DMAC.

    +

    One-Shot Mode Output

    +

    Examples of one-shot signals that can be generated by this module are shown below:

    +
    +r_gpt_one_shot_output.svg +
    +GPT One-Shot Output
    +

    Output Compare

    +

    The TOC0 or TOC1 pin toggles each time the timer expires in output compare mode.

    +

    Examples of periodic signals that can be generated by this module are shown below:

    +
    +r_gpt_periodic_output.svg +
    +GPT Periodic Output
    +

    +Examples

    +

    CMTW Basic Example

    +

    This is a basic example of minimal use of the CMTW in an application.

    +
    void cmtw_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_CMTW_Open(&g_timer0_ctrl, &g_timer0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    __asm volatile ("cpsie i");
    __asm volatile ("isb");
    /* Start the timer. */
    (void) R_CMTW_Start(&g_timer0_ctrl);
    }

    CMTW Callback Example

    +

    This is an example of a timer callback.

    +
    /* Example callback called when timer expires. */
    void timer_callback (timer_callback_args_t * p_args)
    {
    if (TIMER_EVENT_CYCLE_END == p_args->event)
    {
    /* Add application code to be called periodically here. */
    }
    }

    CMTW Free Running Counter Example

    +

    To use the CMTW as a free running counter, select periodic mode and set the the Period to 0xFFFF (16-bit counter) or 0xFFFFFFFF (32-bit counter).

    +
    void cmtw_counter_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_CMTW_Open(&g_timer0_ctrl, &g_timer0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    /* Start the timer. */
    (void) R_CMTW_Start(&g_timer0_ctrl);
    /* (Optional) Stop the timer. */
    (void) R_CMTW_Stop(&g_timer0_ctrl);
    /* Read the current counter value. Counter value is in status.counter. */
    (void) R_CMTW_StatusGet(&g_timer0_ctrl, &status);
    }

    CMTW Input Capture Example

    +

    This is an example of using the CMTW to capture pulse width or pulse period measurements.

    +
    /* Example callback called when a capture occurs. */
    uint64_t g_captured_time = 0U;
    uint32_t g_capture_overflows = 0U;
    void timer_capture_callback (timer_callback_args_t * p_args)
    {
    if (TIMER_EVENT_CAPTURE_A == p_args->event)
    {
    /* (Optional) Get the current period if not known. */
    (void) R_CMTW_InfoGet(&g_timer0_ctrl, &info);
    uint32_t period = info.period_counts;
    /* Process capture from CMTWm_TIC0/CMTWm_TIC1. */
    g_captured_time = ((uint64_t) period * g_capture_overflows) + p_args->capture;
    g_capture_overflows = 0U;
    }
    if (TIMER_EVENT_CYCLE_END == p_args->event)
    {
    /* An overflow occurred during capture. This must be accounted for at the application layer. */
    g_capture_overflows++;
    }
    }
    void cmtw_capture_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_CMTW_Open(&g_timer0_ctrl, &g_timer0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    __asm volatile ("cpsie i");
    __asm volatile ("isb");
    /* Enable captures. Captured values arrive in the interrupt. */
    (void) R_CMTW_Enable(&g_timer0_ctrl);
    /* (Optional) Disable captures. */
    (void) R_CMTW_Disable(&g_timer0_ctrl);
    }

    CMTW Period Update Example

    +

    This an example of updating the period.

    +
    #define CMTW_EXAMPLE_MSEC_PER_SEC (1000)
    #define CMTW_EXAMPLE_DESIRED_PERIOD_MSEC (20)
    /* This example shows how to calculate a new period value at runtime. */
    void cmtw_period_calculation_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_CMTW_Open(&g_timer0_ctrl, &g_timer0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    /* Start the timer. */
    (void) R_CMTW_Start(&g_timer0_ctrl);
    /* Get the source clock frequency (in Hz). There are several ways to do this in FSP:
    * - Use the R_CMTW_InfoGet function (it accounts for the clock source and divider).
    * - Calculate the current PCLKL frequency using R_FSP_SystemClockHzGet(FSP_PRIV_CLOCK_PCLKL) and right shift
    * by timer_cfg_t::source_div.
    *
    * This example uses the last option (R_FSP_SystemClockHzGet).
    */
    uint32_t timer_freq_hz = R_FSP_SystemClockHzGet(BSP_FEATURE_CMTW_SOURCE_CLOCK) >> g_timer0_cfg.source_div;
    /* Calculate the desired period based on the current clock. Note that this calculation could overflow if the
    * desired period is larger than UINT32_MAX / pclkl_freq_hz. A cast to uint64_t is used to prevent this. */
    uint32_t period_counts =
    (uint32_t) (((uint64_t) timer_freq_hz * CMTW_EXAMPLE_DESIRED_PERIOD_MSEC) / CMTW_EXAMPLE_MSEC_PER_SEC);
    /* Set the calculated period. This will return an error if parameter checking is enabled and the calculated
    * period is larger than UINT16_MAX when the count value is 16-bit wide. */
    err = R_CMTW_PeriodSet(&g_timer0_ctrl, period_counts);
    handle_error(err);
    }
    + + + + + +

    +Data Structures

    struct  cmtw_instance_ctrl_t
     
    struct  cmtw_extended_cfg_t
     
    + + + + + + + + + + + + + +

    +Enumerations

    enum  cmtw_source_edge_t
     
    enum  cmtw_output_pin_t
     
    enum  cmtw_clear_source_t
     
    enum  cmtw_io_pin_t
     
    enum  cmtw_output_control_t
     
    enum  cmtw_input_control_t
     
    +

    Data Structure Documentation

    + +

    ◆ cmtw_instance_ctrl_t

    + +
    +
    + + + + +
    struct cmtw_instance_ctrl_t
    +
    +

    Channel control block. DO NOT INITIALIZE. Initialization occurs when timer_api_t::open is called.

    +
    +
    +
    + +

    ◆ cmtw_extended_cfg_t

    + +
    +
    + + + + +
    struct cmtw_extended_cfg_t
    +
    +

    Optional CMTW extension data structure.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +cmtw_output_pin_t +toc0 +Configure TOC0 pin.
    +cmtw_output_pin_t +toc1 +Configure TOC1 pin.
    +cmtw_output_control_t +toc0_control +OutputCompare0 enable setting.
    +cmtw_output_control_t +toc1_control +OutputCompare1 enable setting.
    +cmtw_source_edge_t +capture_ic0_source +Event sources that trigger capture of TIC0.
    +cmtw_source_edge_t +capture_ic1_source +Event sources that trigger capture of TIC1.
    +cmtw_input_control_t +ic0_control +InputCapture0 enable setting.
    +cmtw_input_control_t +ic1_control +InputCapture1 enable setting.
    +cmtw_clear_source_t +clear_source +Counter clear source.
    +timer_variant_t +counter_size +Timer counter size.
    +uint8_t +capture_ic0_ipl +InputCapture 0 interrupt priority.
    +uint8_t +capture_ic1_ipl +InputCapture 1 interrupt priority.
    +IRQn_Type +capture_ic0_irq +InputCapture 0 interrupt.
    +IRQn_Type +capture_ic1_irq +InputCapture 1 interrupt.
    +uint8_t +compare_oc0_ipl +OutputCompare 0 interrupt priority.
    +uint8_t +compare_oc1_ipl +OutputCompare 1 interrupt priority.
    +IRQn_Type +compare_oc0_irq +OutputCompare 0 interrupt.
    +IRQn_Type +compare_oc1_irq +OutputCompare 1 interrupt.
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ cmtw_source_edge_t

    + +
    +
    + + + + +
    enum cmtw_source_edge_t
    +
    +

    Trigger edge for Input capture function.

    + + + + +
    Enumerator
    CMTW_SOURCE_EDGE_RISING 

    Input capture trigger on rising edge.

    +
    CMTW_SOURCE_EDGE_FALLING 

    Input capture trigger on falling edge.

    +
    CMTW_SOURCE_EDGE_BOTH 

    Input capture trigger on both edge.

    +
    + +
    +
    + +

    ◆ cmtw_output_pin_t

    + +
    +
    + + + + +
    enum cmtw_output_pin_t
    +
    +

    Level of CMTW pin

    + + + + +
    Enumerator
    CMTW_OUTPUT_PIN_RETAIN 

    Retain output value.

    +
    CMTW_OUTPUT_PIN_START_LEVEL_LOW 

    Pin level low.

    +
    CMTW_OUTPUT_PIN_START_LEVEL_HIGH 

    Pin level high.

    +
    + +
    +
    + +

    ◆ cmtw_clear_source_t

    + +
    +
    + + + + +
    enum cmtw_clear_source_t
    +
    +

    Clear source of CMWCNT

    + + + + + + + +
    Enumerator
    CMTW_CLEAR_SOURCE_COMPARE_MATCH_CMWCOR 

    Counter is cleared by CMWCOR compare match.

    +
    CMTW_CLEAR_SOURCE_DISABLED 

    Counter is not cleared.

    +
    CMTW_CLEAR_SOURCE_INPUT_CAPTURE_CMWICR0 

    Counter is cleared by CMWICR0 input capture.

    +
    CMTW_CLEAR_SOURCE_INPUT_CAPTURE_CMWICR1 

    Counter is cleared by CMWICR1 input capture.

    +
    CMTW_CLEAR_SOURCE_COMPARE_MATCH_CMWOCR0 

    Counter is cleared by CMWOCR0 output compare.

    +
    CMTW_CLEAR_SOURCE_COMPARE_MATCH_CMWOCR1 

    Counter is cleared by CMWOCR1 output compare.

    +
    + +
    +
    + +

    ◆ cmtw_io_pin_t

    + +
    +
    + + + + +
    enum cmtw_io_pin_t
    +
    +

    Output pins, used to select

    + + + + +
    Enumerator
    CMTW_IO_PIN_TOC0 

    TOC0.

    +
    CMTW_IO_PIN_TOC1 

    TOC1.

    +
    CMTW_IO_PIN_TOC0_AND_TOC1 

    TOC0 and TOC1.

    +
    + +
    +
    + +

    ◆ cmtw_output_control_t

    + +
    +
    + + + + +
    enum cmtw_output_control_t
    +
    + + + +
    Enumerator
    CMTW_OUTPUT_CONTROL_DISABLED 

    OutputCompare disabled.

    +
    CMTW_OUTPUT_CONTROL_ENABLED 

    OutputCompare enabled.

    +
    + +
    +
    + +

    ◆ cmtw_input_control_t

    + +
    +
    + + + + +
    enum cmtw_input_control_t
    +
    + + + +
    Enumerator
    CMTW_INPUT_CONTROL_DISABLED 

    InputCapture disabled.

    +
    CMTW_INPUT_CONTROL_ENABLED 

    InputCapture enabled.

    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_CMTW_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_CMTW_Close (timer_ctrl_t *const p_ctrl)
    +
    +

    Stops counter, disables interrupts, disables output pins, and clears internal driver data. Implements timer_api_t::close.

    +
    Return values
    + + + + +
    FSP_SUCCESSTimer closed.
    FSP_ERR_ASSERTIONp_ctrl is NULL.
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CMTW_PeriodSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_CMTW_PeriodSet (timer_ctrl_t *const p_ctrl,
    uint32_t const period_counts 
    )
    +
    +

    Updates period. The new period is updated immediately. Implements timer_api_t::periodSet.

    +
    Warning
    Stop the timer before calling this function if one-shot output is used.
    +

    Example:

    /* Get the source clock frequency (in Hz). There are several ways to do this in FSP:
    * - Use the R_CMTW_InfoGet function (it accounts for the clock source and divider).
    * - Calculate the current PCLKL frequency using R_FSP_SystemClockHzGet(FSP_PRIV_CLOCK_PCLKL) and right shift
    * by timer_cfg_t::source_div.
    *
    * This example uses the last option (R_FSP_SystemClockHzGet).
    */
    uint32_t timer_freq_hz = R_FSP_SystemClockHzGet(BSP_FEATURE_CMTW_SOURCE_CLOCK) >> g_timer0_cfg.source_div;
    /* Calculate the desired period based on the current clock. Note that this calculation could overflow if the
    * desired period is larger than UINT32_MAX / pclkl_freq_hz. A cast to uint64_t is used to prevent this. */
    uint32_t period_counts =
    (uint32_t) (((uint64_t) timer_freq_hz * CMTW_EXAMPLE_DESIRED_PERIOD_MSEC) / CMTW_EXAMPLE_MSEC_PER_SEC);
    /* Set the calculated period. This will return an error if parameter checking is enabled and the calculated
    * period is larger than UINT16_MAX when the count value is 16-bit wide. */
    err = R_CMTW_PeriodSet(&g_timer0_ctrl, period_counts);
    handle_error(err);
    Return values
    + + + + +
    FSP_SUCCESSPeriod value updated.
    FSP_ERR_ASSERTIONA required pointer was NULL, or the period was not in the valid range of 1 to 0xFFFF in 16bit counter or 1 to 0xFFFFFFFF in 32bit counter.
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CMTW_DutyCycleSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_CMTW_DutyCycleSet (timer_ctrl_t *const p_ctrl,
    uint32_t const duty_cycle_counts,
    uint32_t const pin 
    )
    +
    +

    Updates duty cycle. If the timer is counting, the new duty cycle is reflected after the next counter underflow. Implements timer_api_t::dutyCycleSet.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDCMTW duty cycle set is not supported.
    +
    +
    + +
    +
    + +

    ◆ R_CMTW_Reset()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_CMTW_Reset (timer_ctrl_t *const p_ctrl)
    +
    +

    Resets the counter value to 0. Implements timer_api_t::reset.

    +
    Return values
    + + + + +
    FSP_SUCCESSCounter reset.
    FSP_ERR_ASSERTIONp_ctrl is NULL
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CMTW_Start()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_CMTW_Start (timer_ctrl_t *const p_ctrl)
    +
    +

    Starts timer. Implements timer_api_t::start.

    +

    Example:

    /* Start the timer. */
    (void) R_CMTW_Start(&g_timer0_ctrl);
    Return values
    + + + + +
    FSP_SUCCESSTimer started.
    FSP_ERR_ASSERTIONp_ctrl is null.
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CMTW_Enable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_CMTW_Enable (timer_ctrl_t *const p_ctrl)
    +
    +

    Enables external event triggers that start, stop, clear, or capture the counter. Implements timer_api_t::enable.

    +

    Example:

    /* Enable captures. Captured values arrive in the interrupt. */
    (void) R_CMTW_Enable(&g_timer0_ctrl);
    Return values
    + + + + +
    FSP_SUCCESSExternal events successfully enabled.
    FSP_ERR_ASSERTIONp_ctrl was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CMTW_Disable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_CMTW_Disable (timer_ctrl_t *const p_ctrl)
    +
    +

    Disables external event triggers that start, stop, clear, or capture the counter. Implements timer_api_t::disable.

    +

    Example:

    /* (Optional) Disable captures. */
    (void) R_CMTW_Disable(&g_timer0_ctrl);
    Return values
    + + + + +
    FSP_SUCCESSExternal events successfully disabled.
    FSP_ERR_ASSERTIONp_ctrl was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CMTW_InfoGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_CMTW_InfoGet (timer_ctrl_t *const p_ctrl,
    timer_info_t *const p_info 
    )
    +
    +

    Gets timer information and store it in provided pointer p_info. Implements timer_api_t::infoGet.

    +

    Example:

    /* (Optional) Get the current period if not known. */
    (void) R_CMTW_InfoGet(&g_timer0_ctrl, &info);
    uint32_t period = info.period_counts;
    Return values
    + + + + +
    FSP_SUCCESSPeriod, count direction, and frequency stored in p_info.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CMTW_StatusGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_CMTW_StatusGet (timer_ctrl_t *const p_ctrl,
    timer_status_t *const p_status 
    )
    +
    +

    Retrieves the current state and counter value stores them in p_status. Implements timer_api_t::statusGet.

    +

    Example:

    /* Read the current counter value. Counter value is in status.counter. */
    (void) R_CMTW_StatusGet(&g_timer0_ctrl, &status);
    Return values
    + + + + +
    FSP_SUCCESSCurrent status and counter value provided in p_status.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CMTW_Stop()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_CMTW_Stop (timer_ctrl_t *const p_ctrl)
    +
    +

    Stops the timer. Implements timer_api_t::stop.

    +

    Example:

    /* (Optional) Stop the timer. */
    (void) R_CMTW_Stop(&g_timer0_ctrl);
    Return values
    + + + + +
    FSP_SUCCESSTimer stopped.
    FSP_ERR_ASSERTIONp_ctrl was NULL.
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CMTW_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_CMTW_Open (timer_ctrl_t *const p_ctrl,
    timer_cfg_t const *const p_cfg 
    )
    +
    +

    Initializes the CMTW module instance. Implements timer_api_t::open.

    +

    The CMTW hardware does not support one-shot functionality natively. The one-shot feature is therefore implemented in the CMTW HAL layer. For a timer configured as a one-shot timer, the timer is stopped upon the first timer expiration.

    +

    The CMTW implementation of the general timer can accept an optional cmtw_extended_cfg_t extension parameter.

    +

    Example:

    /* Initializes the module. */
    err = R_CMTW_Open(&g_timer0_ctrl, &g_timer0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    __asm volatile ("cpsie i");
    __asm volatile ("isb");
    Return values
    + + + + + + +
    FSP_SUCCESSInitialization was successful and timer has started.
    FSP_ERR_ASSERTIONA required input pointer is NULL or the period is not in the valid range of 1 to 0xFFFF in 16bit counter or 1 to 0xFFFFFFFF in 32bit counter.
    FSP_ERR_ALREADY_OPENR_CMTW_Open has already been called for this p_ctrl.
    FSP_ERR_IRQ_BSP_DISABLEDA required interrupt has not been enabled in the vector table.
    FSP_ERR_IP_CHANNEL_NOT_PRESENTRequested channel number is not available on CMTW.
    +
    +
    + +
    +
    + +

    ◆ R_CMTW_OutputEnable()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_CMTW_OutputEnable (timer_ctrl_t *const p_ctrl,
    cmtw_io_pin_t pin 
    )
    +
    +

    Enable output for TOC0 and/or TOC1.

    +
    Return values
    + + + + +
    FSP_SUCCESSOutput is enabled.
    FSP_ERR_ASSERTIONp_ctrl or p_status was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CMTW_OutputDisable()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_CMTW_OutputDisable (timer_ctrl_t *const p_ctrl,
    cmtw_io_pin_t pin 
    )
    +
    +

    Disable output for TOC0 and/or TOC1.

    +
    Return values
    + + + + +
    FSP_SUCCESSOutput is disabled.
    FSP_ERR_ASSERTIONp_ctrl or p_status was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CMTW_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_CMTW_CallbackSet (timer_ctrl_t *const p_api_ctrl,
    void(*)(timer_callback_args_t *) p_callback,
    void const *const p_context,
    timer_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback with the option to provide memory for the callback argument structure. Implements timer_api_t::callbackSet.

    +
    Return values
    + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___c_m_t_w.js b/group___c_m_t_w.js new file mode 100644 index 0000000..8adec88 --- /dev/null +++ b/group___c_m_t_w.js @@ -0,0 +1,69 @@ +var group___c_m_t_w = +[ + [ "cmtw_instance_ctrl_t", "group___c_m_t_w.html#structcmtw__instance__ctrl__t", null ], + [ "cmtw_extended_cfg_t", "group___c_m_t_w.html#structcmtw__extended__cfg__t", [ + [ "toc0", "group___c_m_t_w.html#af9073998c0c28e05a8f12da3eddf30ed", null ], + [ "toc1", "group___c_m_t_w.html#ac2924a866fbfae428b2d6feb8edde25f", null ], + [ "toc0_control", "group___c_m_t_w.html#a1734ae8129ed557f34e735fc4a0488b6", null ], + [ "toc1_control", "group___c_m_t_w.html#a77d38169188404361f4dbb3f6c792655", null ], + [ "capture_ic0_source", "group___c_m_t_w.html#a1844763704e5a3427c31651cdd536751", null ], + [ "capture_ic1_source", "group___c_m_t_w.html#ae4c3df19de12bbe9ba4c36f78dd6be78", null ], + [ "ic0_control", "group___c_m_t_w.html#a9b7a216779c89527ce522c447d65dcb4", null ], + [ "ic1_control", "group___c_m_t_w.html#acffcc4d2d31fd8b21b8cada853629afa", null ], + [ "clear_source", "group___c_m_t_w.html#a54ef905d95c6fb3e06eb0eb04e8856d3", null ], + [ "counter_size", "group___c_m_t_w.html#a7c6f42e3fb0d459fa5ca352450144dd1", null ], + [ "capture_ic0_ipl", "group___c_m_t_w.html#a933229c6416b5aad6494477e36d38b47", null ], + [ "capture_ic1_ipl", "group___c_m_t_w.html#aa87d2050e778f2be4cec1eedf08cad19", null ], + [ "capture_ic0_irq", "group___c_m_t_w.html#a894b3a66e1ef230347ba974268d67354", null ], + [ "capture_ic1_irq", "group___c_m_t_w.html#a3a0c098d3426a1478a29e44aeca8a882", null ], + [ "compare_oc0_ipl", "group___c_m_t_w.html#a33d09d1a1606e992bc2c088911604059", null ], + [ "compare_oc1_ipl", "group___c_m_t_w.html#a320a41da7945c9c63d38b84e665c276a", null ], + [ "compare_oc0_irq", "group___c_m_t_w.html#a79ee13b79b31f931ffe1f9d73aa6eb0e", null ], + [ "compare_oc1_irq", "group___c_m_t_w.html#aab0750f8c5088df9c26d7e827d08db67", null ] + ] ], + [ "cmtw_source_edge_t", "group___c_m_t_w.html#ga7bf1b1875884b0e1c847a3b54c440763", [ + [ "CMTW_SOURCE_EDGE_RISING", "group___c_m_t_w.html#gga7bf1b1875884b0e1c847a3b54c440763a70169e2f2026cef455de71078bf2250c", null ], + [ "CMTW_SOURCE_EDGE_FALLING", "group___c_m_t_w.html#gga7bf1b1875884b0e1c847a3b54c440763abd14459296fab9fec238c00996728beb", null ], + [ "CMTW_SOURCE_EDGE_BOTH", "group___c_m_t_w.html#gga7bf1b1875884b0e1c847a3b54c440763a6f1ff1a299555fef86ec60c3e4f2d28c", null ] + ] ], + [ "cmtw_output_pin_t", "group___c_m_t_w.html#ga46ea17c23eab6d920c84290eb5769f6b", [ + [ "CMTW_OUTPUT_PIN_RETAIN", "group___c_m_t_w.html#gga46ea17c23eab6d920c84290eb5769f6ba5d4a192f5904e23a4aacfa1675613806", null ], + [ "CMTW_OUTPUT_PIN_START_LEVEL_LOW", "group___c_m_t_w.html#gga46ea17c23eab6d920c84290eb5769f6ba0f66391fe40f9d325a877e7f7a93bfde", null ], + [ "CMTW_OUTPUT_PIN_START_LEVEL_HIGH", "group___c_m_t_w.html#gga46ea17c23eab6d920c84290eb5769f6bad4b944e10a406b9159fa59d5a666a284", null ] + ] ], + [ "cmtw_clear_source_t", "group___c_m_t_w.html#gab8cb04d74fe011e5742d07cddb9a8447", [ + [ "CMTW_CLEAR_SOURCE_COMPARE_MATCH_CMWCOR", "group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a29bae60b7e43072850cb4c44dffc3b1d", null ], + [ "CMTW_CLEAR_SOURCE_DISABLED", "group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a7b1981140600ccabecbec2cce85ea30f", null ], + [ "CMTW_CLEAR_SOURCE_INPUT_CAPTURE_CMWICR0", "group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a283a72ceb7ff6900d1d4d5184097ea34", null ], + [ "CMTW_CLEAR_SOURCE_INPUT_CAPTURE_CMWICR1", "group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447adc588629f6353dc88c3661d3d3eeb57b", null ], + [ "CMTW_CLEAR_SOURCE_COMPARE_MATCH_CMWOCR0", "group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a017587b5ab692912de7865167cb32be8", null ], + [ "CMTW_CLEAR_SOURCE_COMPARE_MATCH_CMWOCR1", "group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a30c9445b77896f4583ee052861df0be0", null ] + ] ], + [ "cmtw_io_pin_t", "group___c_m_t_w.html#gaf5f1958607aa6c7f52f4e47195e3a61f", [ + [ "CMTW_IO_PIN_TOC0", "group___c_m_t_w.html#ggaf5f1958607aa6c7f52f4e47195e3a61fac8abb25fd9d25d55bcdebb8780553f1d", null ], + [ "CMTW_IO_PIN_TOC1", "group___c_m_t_w.html#ggaf5f1958607aa6c7f52f4e47195e3a61fa7cb7514798b0fde43e9d028d7718f4f4", null ], + [ "CMTW_IO_PIN_TOC0_AND_TOC1", "group___c_m_t_w.html#ggaf5f1958607aa6c7f52f4e47195e3a61fa7031caa0b57b3e17a531d44ef8e7fa0f", null ] + ] ], + [ "cmtw_output_control_t", "group___c_m_t_w.html#ga0d3145595cde1b2a26d8812cbb1aac5c", [ + [ "CMTW_OUTPUT_CONTROL_DISABLED", "group___c_m_t_w.html#gga0d3145595cde1b2a26d8812cbb1aac5ca1c9cd650977b70a3211d7a190085b0c5", null ], + [ "CMTW_OUTPUT_CONTROL_ENABLED", "group___c_m_t_w.html#gga0d3145595cde1b2a26d8812cbb1aac5ca89b0a65698f2c9dad74c7ba53ba9de5d", null ] + ] ], + [ "cmtw_input_control_t", "group___c_m_t_w.html#gaa69aac2c20f895bd57f0d4dfa9da9c84", [ + [ "CMTW_INPUT_CONTROL_DISABLED", "group___c_m_t_w.html#ggaa69aac2c20f895bd57f0d4dfa9da9c84aef9e4feabd4045f976f8b85a535a1e6e", null ], + [ "CMTW_INPUT_CONTROL_ENABLED", "group___c_m_t_w.html#ggaa69aac2c20f895bd57f0d4dfa9da9c84a47a43fe08c66afb2854454bde1e0a235", null ] + ] ], + [ "R_CMTW_Close", "group___c_m_t_w.html#gac59c2dfa9436df60eb01971c996875aa", null ], + [ "R_CMTW_PeriodSet", "group___c_m_t_w.html#gaa50bb9ff96b3f0e38459a7e3e65c0a18", null ], + [ "R_CMTW_DutyCycleSet", "group___c_m_t_w.html#ga928fd6d8249fe9c66e870849a6975ca9", null ], + [ "R_CMTW_Reset", "group___c_m_t_w.html#ga10851764cdad9c5c580e146501bc4352", null ], + [ "R_CMTW_Start", "group___c_m_t_w.html#ga874d0098275f48ec3c84e8587d262fce", null ], + [ "R_CMTW_Enable", "group___c_m_t_w.html#gadba23fc3303d81ce926ba6ebe9245e6a", null ], + [ "R_CMTW_Disable", "group___c_m_t_w.html#ga414c89c292c18a33619337489cd43787", null ], + [ "R_CMTW_InfoGet", "group___c_m_t_w.html#gae56c5935864ef5ef23eeae25a95ab079", null ], + [ "R_CMTW_StatusGet", "group___c_m_t_w.html#gacbdfc3716f8d5bd47edaa801eb50d1b7", null ], + [ "R_CMTW_Stop", "group___c_m_t_w.html#ga842bb3b9c5c12cdfff41dd8595defc70", null ], + [ "R_CMTW_Open", "group___c_m_t_w.html#ga7b086a5e535460e7855000cc6141b22e", null ], + [ "R_CMTW_OutputEnable", "group___c_m_t_w.html#ga78987d5578215cbf098221602bbbc193", null ], + [ "R_CMTW_OutputDisable", "group___c_m_t_w.html#gadd9a734062792a507971568dac4c3013", null ], + [ "R_CMTW_CallbackSet", "group___c_m_t_w.html#gabc760f97e8a609485ae6194571d41127", null ] +]; \ No newline at end of file diff --git a/group___c_r_c.html b/group___c_r_c.html new file mode 100644 index 0000000..cddae15 --- /dev/null +++ b/group___c_r_c.html @@ -0,0 +1,555 @@ + + + + + + + +RZV Flexible Software Package Documentation: CRC (r_crc) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    CRC (r_crc)
    +
    +
    + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_CRC_Open (crc_ctrl_t *const p_ctrl, crc_cfg_t const *const p_cfg)
     
    fsp_err_t R_CRC_Close (crc_ctrl_t *const p_ctrl)
     
    fsp_err_t R_CRC_Calculate (crc_ctrl_t *const p_ctrl, crc_input_t *const p_crc_input, uint32_t *calculatedValue)
     
    fsp_err_t R_CRC_CalculatedValueGet (crc_ctrl_t *const p_ctrl, uint32_t *calculatedValue)
     
    fsp_err_t R_CRC_SnoopEnable (crc_ctrl_t *const p_ctrl, uint32_t crc_seed)
     
    fsp_err_t R_CRC_SnoopDisable (crc_ctrl_t *const p_ctrl)
     
    +

    Detailed Description

    +

    Driver for the CRC peripheral on RZ MPUs. This module implements the CRC Interface.

    +

    +Overview

    +

    The CRC module provides a API to calculate 8, 16 and 32-bit CRC values on a block of data in memory or a stream of data over a Serial Communication Interface (SCI) channel using industry-standard polynomials.

    +

    +Features

    +
      +
    • CRC module supports the following 8 and 16 bit CRC polynomials which operates on 8-bit data in parallel
        +
      • X^8+X^2+X+1 (CRC-8)
      • +
      • X^16+X^15+X^2+1 (CRC-16)
      • +
      • X^16+X^12+X^5+1 (CRC-CCITT)
      • +
      +
    • +
    • CRC module supports the following 32 bit CRC polynomials which operates on 32-bit data in parallel
        +
      • X^32+X^26+X^23+X^22+X^16+X^12+X^11+X^10+X^8+X^7+X^5+X^4+X^2+X+ 1 (CRC-32)
      • +
      • X^32+ X^28+ X^27+ X^26+ X^25+ X^23+ X^22+ X^20+ X^19+ X^18+X^14+X^13+X^11+X^10+X^9+X^8+X^6+1 (CRC-32C)
      • +
      +
    • +
    • CRC module can calculate CRC with LSB first or MSB first bit order.
    • +
    +

    +

    +Configuration

    +

    Build Time Configurations for r_crc

    +The following build time configurations are defined in fsp_cfg/r_crc_cfg.h:
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    +

    Configurations for Monitoring > CRC (r_crc)

    +This module can be added to the Stacks tab via New Stack > Monitoring > CRC (r_crc). Non-secure callable guard functions can be generated for this module by right clicking the module in the RA Configuration tool and checking the "Non-secure Callable" box.
    +

    + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    NameName must be a valid C symbolg_crc0 Module name.
    CRC Polynomial
      +
    • +CRC-8
    • +
    • +CRC-16
    • +
    • +CRC-CCITT
    • +
    • +CRC-32
    • +
    • +CRC-32C
    • +
    +
    CRC-32C Select the CRC polynomial.
    Bit Order
      +
    • +LSB
    • +
    • +MSB
    • +
    +
    MSB Select the CRC bit order.
    Snoop AddressMCU Specific OptionsSelect the communication module register address CRC snoop
    +

    +

    +Clock Configuration

    +

    There is no clock configuration for the CRC module.

    +

    +Pin Configuration

    +

    This module does not use I/O pins.

    +

    +Usage Notes

    +

    CRC Snoop

    +

    The CRC snoop function monitors reads from and writes to a specified I/O register address and performs CRC calculation on the data read from and written to the register address automatically. Instead of calling R_CRC_Calculate on a block of data, R_CRC_SnoopEnable is called to start monitoring reads/writes and R_CRC_CalculatedValueGet is used to obtain the current CRC.

    +
    Note
    Snoop mode is available for transmit/receive operations on SPI_B or SCI_B only.
    +

    +

    +Limitations

    +

    When using CRC32 polynomial functions the CRC module produces the same results as popular online CRC32 calculators, but it is important to remember a few important points.

      +
    • Online CRC32 calculators allow the input to be any number of bytes. The FSP CRC32 API function uses 32-bit words. This means the online calculations must be 'padded' to end on a 32-bit boundary.
    • +
    • Online CRC32 calculators usually invert the output prior to presenting it as a result. It is up to the application program to include this step if needed.
    • +
    • The seed value of 0xFFFFFFFF needs to be used by both the online calculator and the R_CRC module API (CRC32 polynomials)
    • +
    • Make sure the bit orientation of the R_CRC CRC32 is set for LSB and that you have CRC32 selected and not CRC32C.
    • +
    • Some online CRC tools XOR the final result with 0xFFFFFFFF.
    • +
    +

    +Examples

    +

    Basic Example

    +

    This is a basic example of minimal use of the CRC module in an application.

    +
    void crc_example ()
    {
    uint32_t length;
    uint32_t uint8_calculated_value;
    length = sizeof(g_data_8bit) / sizeof(g_data_8bit[0]);
    crc_input_t example_input =
    {
    .p_input_buffer = g_data_8bit,
    .num_bytes = length,
    .crc_seed = 0,
    };
    /* Open CRC module with 8 bit polynomial */
    R_CRC_Open(&crc_ctrl, &g_crc_test_cfg);
    /* 8-bit CRC calculation */
    R_CRC_Calculate(&crc_ctrl, &example_input, &uint8_calculated_value);
    }

    Snoop Example

    +

    This example demonstrates CRC snoop operation.

    +
    void crc_snoop_example ()
    {
    /* Open CRC module with 8 bit polynomial */
    R_CRC_Open(&crc_ctrl, &g_crc_test_cfg);
    /* Open SCI Driver */
    /* Configure Snoop address and enable snoop mode */
    R_CRC_SnoopEnable(&crc_ctrl, 0);
    /* Perfrom SCI read/Write operation depending on the SCI snoop address configure */
    /* Read CRC value */
    R_CRC_CalculatedValueGet(&crc_ctrl, &g_crc_buff);
    }
    + + + + + +

    +Data Structures

    struct  crc_extended_cfg_t
     
    struct  crc_instance_ctrl_t
     
    +

    Data Structure Documentation

    + +

    ◆ crc_extended_cfg_t

    + +
    +
    + + + + +
    struct crc_extended_cfg_t
    +
    +

    Driver extend config structure.

    +
    +
    +
    + +

    ◆ crc_instance_ctrl_t

    + +
    +
    + + + + +
    struct crc_instance_ctrl_t
    +
    +

    Driver instance control structure.

    +
    +
    +
    +

    Function Documentation

    + +

    ◆ R_CRC_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_CRC_Open (crc_ctrl_t *const p_ctrl,
    crc_cfg_t const *const p_cfg 
    )
    +
    +

    Open the CRC driver module

    +

    Implements crc_api_t::open

    +

    Open the CRC driver module and initialize the driver control block according to the passed-in configuration structure.

    +
    Return values
    + + + + +
    FSP_SUCCESSConfiguration was successful.
    FSP_ERR_ASSERTIONp_ctrl or p_cfg is NULL.
    FSP_ERR_ALREADY_OPENModule already open
    +
    +
    + +
    +
    + +

    ◆ R_CRC_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_CRC_Close (crc_ctrl_t *const p_ctrl)
    +
    +

    Close the CRC module driver.

    +

    Implements crc_api_t::close

    +
    Return values
    + + + + +
    FSP_SUCCESSConfiguration was successful.
    FSP_ERR_ASSERTIONp_ctrl is NULL.
    FSP_ERR_NOT_OPENThe driver is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CRC_Calculate()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_CRC_Calculate (crc_ctrl_t *const p_ctrl,
    crc_input_t *const p_crc_input,
    uint32_t * calculatedValue 
    )
    +
    +

    Perform a CRC calculation on a block of 8-bit/32-bit (for 32-bit polynomial) data.

    +

    Implements crc_api_t::calculate

    +

    This function performs a CRC calculation on an array of 8-bit/32-bit (for 32-bit polynomial) values and returns an 8-bit/32-bit (for 32-bit polynomial) calculated value

    +
    Return values
    + + + + + +
    FSP_SUCCESSCalculation successful.
    FSP_ERR_ASSERTIONEither p_ctrl, inputBuffer, or calculatedValue is NULL.
    FSP_ERR_INVALID_ARGUMENTlength value is NULL.
    FSP_ERR_NOT_OPENThe driver is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CRC_CalculatedValueGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_CRC_CalculatedValueGet (crc_ctrl_t *const p_ctrl,
    uint32_t * calculatedValue 
    )
    +
    +

    Return the current calculated value.

    +

    Implements crc_api_t::crcResultGet

    +

    CRC calculation operates on a running value. This function returns the current calculated value.

    +
    Return values
    + + + + +
    FSP_SUCCESSReturn of calculated value successful.
    FSP_ERR_ASSERTIONEither p_ctrl or calculatedValue is NULL.
    FSP_ERR_NOT_OPENThe driver is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_CRC_SnoopEnable()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_CRC_SnoopEnable (crc_ctrl_t *const p_ctrl,
    uint32_t crc_seed 
    )
    +
    +

    Configure the snoop channel and set the CRC seed.

    +

    Implements crc_api_t::snoopEnable

    +

    The CRC calculator can operate on reads and writes over any of the first ten SCI channels. For example, if set to channel 0, transmit, every byte written out SCI channel 0 is also sent to the CRC calculator as if the value was explicitly written directly to the CRC calculator.

    +
    Return values
    + + + + + +
    FSP_SUCCESSSnoop configured successfully.
    FSP_ERR_ASSERTIONPointer to control stucture is NULL
    FSP_ERR_NOT_OPENThe driver is not opened.
    FSP_ERR_UNSUPPORTEDSNOOP operation is not supported.
    +
    +
    + +
    +
    + +

    ◆ R_CRC_SnoopDisable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_CRC_SnoopDisable (crc_ctrl_t *const p_ctrl)
    +
    +

    Disable snooping.

    +

    Implements crc_api_t::snoopDisable

    +
    Return values
    + + + + + +
    FSP_SUCCESSSnoop disabled.
    FSP_ERR_ASSERTIONp_ctrl is NULL.
    FSP_ERR_NOT_OPENThe driver is not opened.
    FSP_ERR_UNSUPPORTEDSNOOP operation is not supported.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___c_r_c.js b/group___c_r_c.js new file mode 100644 index 0000000..4630eb5 --- /dev/null +++ b/group___c_r_c.js @@ -0,0 +1,11 @@ +var group___c_r_c = +[ + [ "crc_extended_cfg_t", "group___c_r_c.html#structcrc__extended__cfg__t", null ], + [ "crc_instance_ctrl_t", "group___c_r_c.html#structcrc__instance__ctrl__t", null ], + [ "R_CRC_Open", "group___c_r_c.html#gae4cc2bba5d6aeaadd9f4d43948fca5ac", null ], + [ "R_CRC_Close", "group___c_r_c.html#gab1ba556ab77f9f3d32ed5a448ebc7f9c", null ], + [ "R_CRC_Calculate", "group___c_r_c.html#ga89b0be959ce83ac6ca053329b1fddb75", null ], + [ "R_CRC_CalculatedValueGet", "group___c_r_c.html#ga5bb7766a9c3217d2da7b77ea203b8c74", null ], + [ "R_CRC_SnoopEnable", "group___c_r_c.html#ga606b389497fa4cba30b0d8f9a658331f", null ], + [ "R_CRC_SnoopDisable", "group___c_r_c.html#ga5bda4df2557aeaaf312b23fb31568f20", null ] +]; \ No newline at end of file diff --git a/group___c_r_c___a_p_i.html b/group___c_r_c___a_p_i.html new file mode 100644 index 0000000..91aaff1 --- /dev/null +++ b/group___c_r_c___a_p_i.html @@ -0,0 +1,588 @@ + + + + + + + +RZV Flexible Software Package Documentation: CRC Interface + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    CRC Interface
    +
    +
    +

    Detailed Description

    +

    Interface for cyclic redundancy checking.

    +

    +Summary

    +

    The CRC (Cyclic Redundancy Check) calculator generates CRC codes using five different polynomials including 8 bit, 16 bit, and 32 bit variations. Calculation can be performed by sending data to the block using the CPU or by snooping on read or write activity on one of SCI channels.

    +

    Implemented by:

    + + + + + + + + + + +

    +Data Structures

    struct  crc_input_t
     
    struct  crc_cfg_t
     
    struct  crc_api_t
     
    struct  crc_instance_t
     
    + + + +

    +Typedefs

    typedef void crc_ctrl_t
     
    + + + + + + + +

    +Enumerations

    enum  crc_polynomial_t
     
    enum  crc_bit_order_t
     
    enum  crc_snoop_direction_t
     
    +

    Data Structure Documentation

    + +

    ◆ crc_input_t

    + +
    +
    + + + + +
    struct crc_input_t
    +
    +

    Structure for CRC inputs

    +
    +
    +
    + +

    ◆ crc_cfg_t

    + +
    +
    + + + + +
    struct crc_cfg_t
    +
    +

    User configuration structure, used in open function

    +
    + + + + + + + + + + + + + + + + +
    Data Fields
    +uint8_t +channel +Channel number.
    +crc_polynomial_t +polynomial +CRC Generating Polynomial Switching (GPS)
    +crc_bit_order_t +bit_order +CRC Calculation Switching (LMS)
    +uint32_t +snoop_address +Register Snoop Address (CRCSA)
    +void const * +p_extend +CRC Hardware Dependent Configuration.
    + +
    +
    + +

    ◆ crc_api_t

    + +
    +
    + + + + +
    struct crc_api_t
    +
    +

    CRC driver structure. General CRC functions implemented at the HAL layer will follow this API.

    +
    + + + + + + + + + + + + + +

    Data Fields

    fsp_err_t(* open )(crc_ctrl_t *const p_ctrl, crc_cfg_t const *const p_cfg)
     
    fsp_err_t(* close )(crc_ctrl_t *const p_ctrl)
     
    fsp_err_t(* crcResultGet )(crc_ctrl_t *const p_ctrl, uint32_t *crc_result)
     
    fsp_err_t(* snoopEnable )(crc_ctrl_t *const p_ctrl, uint32_t crc_seed)
     
    fsp_err_t(* snoopDisable )(crc_ctrl_t *const p_ctrl)
     
    fsp_err_t(* calculate )(crc_ctrl_t *const p_ctrl, crc_input_t *const p_crc_input, uint32_t *p_crc_result)
     
    +

    Field Documentation

    + +

    ◆ open

    + +
    +
    + + + + +
    fsp_err_t(* crc_api_t::open) (crc_ctrl_t *const p_ctrl, crc_cfg_t const *const p_cfg)
    +
    +

    Open the CRC driver module.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to CRC device handle.
    [in]p_cfgPointer to a configuration structure.
    +
    +
    + +
    +
    + +

    ◆ close

    + +
    +
    + + + + +
    fsp_err_t(* crc_api_t::close) (crc_ctrl_t *const p_ctrl)
    +
    +

    Close the CRC module driver

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to CRC device handle
    +
    +
    +
    Return values
    + + +
    FSP_SUCCESSConfiguration was successful.
    +
    +
    + +
    +
    + +

    ◆ crcResultGet

    + +
    +
    + + + + +
    fsp_err_t(* crc_api_t::crcResultGet) (crc_ctrl_t *const p_ctrl, uint32_t *crc_result)
    +
    +

    Return the current calculated value.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to CRC device handle.
    [out]crc_resultThe calculated value from the last CRC calculation.
    +
    +
    + +
    +
    + +

    ◆ snoopEnable

    + +
    +
    + + + + +
    fsp_err_t(* crc_api_t::snoopEnable) (crc_ctrl_t *const p_ctrl, uint32_t crc_seed)
    +
    +

    Configure and Enable snooping.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to CRC device handle.
    [in]crc_seedCRC seed.
    +
    +
    + +
    +
    + +

    ◆ snoopDisable

    + +
    +
    + + + + +
    fsp_err_t(* crc_api_t::snoopDisable) (crc_ctrl_t *const p_ctrl)
    +
    +

    Disable snooping.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to CRC device handle.
    +
    +
    + +
    +
    + +

    ◆ calculate

    + +
    +
    + + + + +
    fsp_err_t(* crc_api_t::calculate) (crc_ctrl_t *const p_ctrl, crc_input_t *const p_crc_input, uint32_t *p_crc_result)
    +
    +

    Perform a CRC calculation on a block of data.

    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlPointer to CRC device handle.
    [in]p_crc_inputA pointer to structure for CRC inputs
    [out]crc_resultThe calculated value of the CRC calculation.
    +
    +
    + +
    +
    + +
    +
    + +

    ◆ crc_instance_t

    + +
    +
    + + + + +
    struct crc_instance_t
    +
    +

    This structure encompasses everything that is needed to use an instance of this interface.

    +
    + + + + + + + + + + +
    Data Fields
    +crc_ctrl_t * +p_ctrl +Pointer to the control structure for this instance.
    +crc_cfg_t const * +p_cfg +Pointer to the configuration structure for this instance.
    +crc_api_t const * +p_api +Pointer to the API structure for this instance.
    + +
    +
    +

    Typedef Documentation

    + +

    ◆ crc_ctrl_t

    + +
    +
    + + + + +
    typedef void crc_ctrl_t
    +
    +

    CRC control block. Allocate an instance specific control block to pass into the CRC API calls.

    Implemented as
    +
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ crc_polynomial_t

    + +
    +
    + + + + +
    enum crc_polynomial_t
    +
    +

    CRC Generating Polynomial Switching (GPS).

    + + + + + + +
    Enumerator
    CRC_POLYNOMIAL_CRC_8 

    8-bit CRC-8 (X^8 + X^2 + X + 1)

    +
    CRC_POLYNOMIAL_CRC_16 

    16-bit CRC-16 (X^16 + X^15 + X^2 + 1)

    +
    CRC_POLYNOMIAL_CRC_CCITT 

    16-bit CRC-CCITT (X^16 + X^12 + X^5 + 1)

    +
    CRC_POLYNOMIAL_CRC_32 

    32-bit CRC-32 (X^32 + X^26 + X^23 + X^22 + X^16 + X^12 + X^11 + X^10 + X^8 + X^7 + X^5 + X^4 + X^2 + X + 1)

    +
    CRC_POLYNOMIAL_CRC_32C 

    32-bit CRC-32C (X^32 + X^28 + X^27 + X^26 + X^25 + X^23 + X^22 + X^20 + X^19 + X^18 + X^14 + X^13 + X^11 + X^10 + X^9 + X^8 + X^6 + 1)

    +
    + +
    +
    + +

    ◆ crc_bit_order_t

    + +
    +
    + + + + +
    enum crc_bit_order_t
    +
    +

    CRC Calculation Switching (LMS)

    + + + +
    Enumerator
    CRC_BIT_ORDER_LMS_LSB 

    Generates CRC for LSB first communication.

    +
    CRC_BIT_ORDER_LMS_MSB 

    Generates CRC for MSB first communication.

    +
    + +
    +
    + +

    ◆ crc_snoop_direction_t

    + +
    +
    + + + + +
    enum crc_snoop_direction_t
    +
    +

    Snoop-On-Write/Read Switch (CRCSWR)

    + + + +
    Enumerator
    CRC_SNOOP_DIRECTION_RECEIVE 

    Snoop-on-read.

    +
    CRC_SNOOP_DIRECTION_TRANSMIT 

    Snoop-on-write.

    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___c_r_c___a_p_i.js b/group___c_r_c___a_p_i.js new file mode 100644 index 0000000..163ce68 --- /dev/null +++ b/group___c_r_c___a_p_i.js @@ -0,0 +1,40 @@ +var group___c_r_c___a_p_i = +[ + [ "crc_input_t", "group___c_r_c___a_p_i.html#structcrc__input__t", null ], + [ "crc_cfg_t", "group___c_r_c___a_p_i.html#structcrc__cfg__t", [ + [ "channel", "group___c_r_c___a_p_i.html#a93f724f6e008179d16750067ce740f91", null ], + [ "polynomial", "group___c_r_c___a_p_i.html#a77a51a5aaddd34da23595f1b522cab3d", null ], + [ "bit_order", "group___c_r_c___a_p_i.html#a1647f8768f919a79d36f7dba45ff0bb4", null ], + [ "snoop_address", "group___c_r_c___a_p_i.html#af1f280c0dc14a01fa8c8a3aa1f76feeb", null ], + [ "p_extend", "group___c_r_c___a_p_i.html#aa38d898bb2b40f121ce3ec1b54bf921f", null ] + ] ], + [ "crc_api_t", "group___c_r_c___a_p_i.html#structcrc__api__t", [ + [ "open", "group___c_r_c___a_p_i.html#ad1c70317b3a73fc3cb102e6c673111be", null ], + [ "close", "group___c_r_c___a_p_i.html#a7783105d71a3cf701d7928cba9585e6d", null ], + [ "crcResultGet", "group___c_r_c___a_p_i.html#a0c748a9f3b2eb21585c97e3493f285ac", null ], + [ "snoopEnable", "group___c_r_c___a_p_i.html#a4d4efcfb06b59c92801320f31e8f2eb7", null ], + [ "snoopDisable", "group___c_r_c___a_p_i.html#ab171c85217e275bda7426309bd832b02", null ], + [ "calculate", "group___c_r_c___a_p_i.html#ababb93aa2ede5ba3d5750bd3203ce7e3", null ] + ] ], + [ "crc_instance_t", "group___c_r_c___a_p_i.html#structcrc__instance__t", [ + [ "p_ctrl", "group___c_r_c___a_p_i.html#a43ca783a75a91815659195f46717b4ca", null ], + [ "p_cfg", "group___c_r_c___a_p_i.html#aba878011b00301dd2d99582eda689dcd", null ], + [ "p_api", "group___c_r_c___a_p_i.html#afbbb090a3e9cfa08f51cdd89a3389fac", null ] + ] ], + [ "crc_ctrl_t", "group___c_r_c___a_p_i.html#ga4c9c5ebe6bb4522f76618993434459e0", null ], + [ "crc_polynomial_t", "group___c_r_c___a_p_i.html#ga7daa8fa0df9f42a98afcf766a63d931d", [ + [ "CRC_POLYNOMIAL_CRC_8", "group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da3743dfb69b7a6127e74de34390f3a55c", null ], + [ "CRC_POLYNOMIAL_CRC_16", "group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da6b5637781ae91033928a2e082c823465", null ], + [ "CRC_POLYNOMIAL_CRC_CCITT", "group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da5f95f86fa3c29357706b0eb54223ef62", null ], + [ "CRC_POLYNOMIAL_CRC_32", "group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931dac9c97ab1a8814206b952a35066a861c2", null ], + [ "CRC_POLYNOMIAL_CRC_32C", "group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da8854edee82722360b9adbfbfda3843b1", null ] + ] ], + [ "crc_bit_order_t", "group___c_r_c___a_p_i.html#ga5d770a90efa92855a81b5ae47b50db70", [ + [ "CRC_BIT_ORDER_LMS_LSB", "group___c_r_c___a_p_i.html#gga5d770a90efa92855a81b5ae47b50db70a938646e39c9f235ae7a23c19e03f6d53", null ], + [ "CRC_BIT_ORDER_LMS_MSB", "group___c_r_c___a_p_i.html#gga5d770a90efa92855a81b5ae47b50db70a929efb1d3d263f589cf6a6c650d5e393", null ] + ] ], + [ "crc_snoop_direction_t", "group___c_r_c___a_p_i.html#gad26e18afbb5663c0bcb91d62d418e2e3", [ + [ "CRC_SNOOP_DIRECTION_RECEIVE", "group___c_r_c___a_p_i.html#ggad26e18afbb5663c0bcb91d62d418e2e3af13bda1509e0658baf48a48eb9f1c03c", null ], + [ "CRC_SNOOP_DIRECTION_TRANSMIT", "group___c_r_c___a_p_i.html#ggad26e18afbb5663c0bcb91d62d418e2e3a961727790a4640f4be3e6229068c6c62", null ] + ] ] +]; \ No newline at end of file diff --git a/group___d_m_a_c___b.html b/group___d_m_a_c___b.html new file mode 100644 index 0000000..e13632c --- /dev/null +++ b/group___d_m_a_c___b.html @@ -0,0 +1,1298 @@ + + + + + + + +RZV Flexible Software Package Documentation: Direct Memory Access Controller (r_dmac_b) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Direct Memory Access Controller (r_dmac_b)
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_DMAC_B_Open (transfer_ctrl_t *const p_api_ctrl, transfer_cfg_t const *const p_cfg)
     
    fsp_err_t R_DMAC_B_Reconfigure (transfer_ctrl_t *const p_api_ctrl, transfer_info_t *p_info)
     
    fsp_err_t R_DMAC_B_Reset (transfer_ctrl_t *const p_api_ctrl, void const *volatile p_src, void *volatile p_dest, uint16_t const num_transfers)
     
    fsp_err_t R_DMAC_B_SoftwareStart (transfer_ctrl_t *const p_api_ctrl, transfer_start_mode_t mode)
     
    fsp_err_t R_DMAC_B_SoftwareStop (transfer_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_DMAC_B_Enable (transfer_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_DMAC_B_Disable (transfer_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_DMAC_B_InfoGet (transfer_ctrl_t *const p_api_ctrl, transfer_properties_t *const p_info)
     
    fsp_err_t R_DMAC_B_Close (transfer_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_DMAC_B_Reload (transfer_ctrl_t *const p_api_ctrl, void const *p_src, void *p_dest, uint32_t const num_transfers)
     
    +

    Detailed Description

    +

    Driver for the DMAC peripheral on RZ MPUs. This module implements the Transfer Interface.

    +

    +Overview

    +

    The Direct Memory Access Controller (DMAC) transfers data from one memory location to another without using the CPU.

    +

    +Features

    +
      +
    • Supports multiple transfer modes
        +
      • Normal transfer
      • +
      • Block transfer
      • +
      +
    • +
    • Support Register mode
    • +
    • Supports Next0 Register set and Next1 Register set
    • +
    • Address increment, fixed
    • +
    • Triggered by peripheral module events
        +
      • See "Table 14.3" in "14.5.2 DMA Transfer Requests" in the User's manual.
      • +
      +
    • +
    • Supports 1, 2, 4, 8, 16, 32, 64, 128 byte data units
    • +
    • Configurable DMA transfer activation request source, detection method of DMA request signal and DACK output mode
    • +
    • Configurable DMA transfer interval
    • +
    • Configurable DMAC channel priority
    • +
    +

    +Configuration

    +

    Build Time Configurations for r_dmac_b

    +The following build time configurations are defined in fsp_cfg/r_dmac_b_cfg.h:
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    +

    Configurations for Transfer > Transfer Driver on r_dmac_b

    +This module can be added to the Stacks tab via New Stack > Transfer > Transfer Driver on r_dmac_b.
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    NameName must be a valid C symbolg_transfer0 Module name.
    UnitMCU Specific OptionsSpecify the hardware unit.
    ChannelMust be a valid integer between 0 and 15.0 Specify the hardware channel.
    Mode
      +
    • +Normal
    • +
    • +Block
    • +
    +
    Normal Select the transfer mode.
    Source Data Size
      +
    • +1 Byte
    • +
    • +2 Bytes
    • +
    • +4 Bytes
    • +
    • +8 Bytes
    • +
    • +16 Bytes
    • +
    • +32 Bytes
    • +
    • +64 Bytes
    • +
    • +128 Bytes
    • +
    +
    2 Bytes Select the source data size.
    Destination Data Size
      +
    • +1 Byte
    • +
    • +2 Bytes
    • +
    • +4 Bytes
    • +
    • +8 Bytes
    • +
    • +16 Bytes
    • +
    • +32 Bytes
    • +
    • +64 Bytes
    • +
    • +128 Bytes
    • +
    +
    2 Bytes Select the destination data size.
    Destination Address Mode
      +
    • +Fixed
    • +
    • +Incremented
    • +
    +
    Fixed Select the address mode for the destination.
    Source Address Mode
      +
    • +Fixed
    • +
    • +Incremented
    • +
    +
    Fixed Select the address mode for the source.
    Activation SourceMCU Specific OptionsSelect the DMAC transfer start event.
    DMA Activation Request Source Select
      +
    • +Requested by a transfer source module
    • +
    • +Requested by a transfer destination module
    • +
    +
    Requested by a transfer source module DMA Activation Request Source Select.
    DACK Output modeMCU Specific OptionsSelect DACK output mode.
    External DACK Output Pin SelectMCU Specific OptionsSelect DACK output signal.
    External TEND Output Pin SelectMCU Specific OptionsSelect TEND output signal.
    External DREQ Detection ModeMCU Specific OptionsExternal DREQ detection mode select.(This cannot be set on devices that do not have an external DREQ terminal)
    DMAC ModeRegister ModeRegister Mode Select DMAC Mode.
    CallbackName must be a valid C symbolNULL A user callback that is called at the end of the transfer.
    ContextManual EntryNULL Pointer to the context structure passed through the callback argument.
    Transfer End Interrupt EnableMCU Specific OptionsEnable the transfer end interrupt.
    Transfer End Interrupt PriorityValue must be an integer between 0 and 25512 Select the transfer end interrupt priority.
    Transfer IntervalValue must be a non-negative integer0 Transfer interval
    Channel Priority
      +
    • +Fixed
    • +
    • +Round Robin
    • +
    +
    module.driver.transfer_on_dmac_b.channel_priority.fixed Channel Priority
    Transfer Continuation
      +
    • +DMA transfer only once
    • +
    • +Transfer with Setting 1 and Setting 2 alternately
    • +
    +
    DMA transfer only once When Next0 Register Set Transfer completes, Next1 Register Set Transfer occurs
    Setting 1 Destination AddressManual EntryNULL Specify the transfer destination address.
    Setting 1 Source AddressManual EntryNULL Specify the transfer source address.
    Setting 1 Total Number of Transfer BytesValue must be a non-negative integer1 Specify the total number of transfer bytes.
    Setting 2 Destination AddressManual EntryNULL Specify the transfer destination address.(Use only when Transfer with Setting 1 and Setting 2 horizontally is selected in Transfer Continuatuion.)
    Setting 2 Source AddressManual EntryNULL Specify the transfer source address.(Use only when Transfer with Setting 1 and Setting 2 horizontally is selected in Transfer Continuatuion.)
    Setting 2 Total Number of Transfer BytesValue must be a non-negative integer1 Specify the total number of transfer bytes.(Use only when Transfer with Setting 1 and Setting 2 horizontally is selected in Transfer Continuatuion.)
    +

    +
    Warning
    "DMA Activation Request Source Select", "Low Detection Enable", "High Detection Enable", and "DACK output" must be set according to the DMAC transfer source. For details, see 'DMA Transfer Request Detection Operation Setting Table' of User's Manual.
    +

    +Clock Configuration

    +

    The DMAC peripheral module uses ICLK as the clock source. The ICLK frequency is set by using the Clocks tab of the FSP Configuration editor prior to a build, or by using the CGC module at run-time.

    +

    +Pin Configuration

    +

    This module does not use I/O pins.

    +

    +Usage Notes

    +

    Transfer Modes

    +

    The DMAC Module supports two modes of operation.

    +
      +
    • Normal Mode - In normal mode, a single data unit is forwarded each time a configured peripheral module event is received by the DMAC channel. The data unit can be 1 byte, 2 bytes, 4 bytes, 8 bytes, 16 bytes, 32 bytes, 64 bytes, or 128 bytes. The source and destination addresses can be fixed or incremented. The 32-bit counter decrements on every transfer. When the counter reaches 0, the peripheral module event no longer triggers the transfer and you can interrupt the CPU to signal that all transfers have finished.
    • +
    • Block Mode - In block mode, the amount of data units transfered by each interrupt. For one DMA request, performs transfers until a DMA transfer completes. When the counter reaches 0, transfers will no longer be triggered by the peripheral module event and the CPU can be interrupted to signal that all transfers have finished.
    • +
    +

    Limitations

    +

    This driver only supports the transfer by non-secure access. Also, DMA transfer cannot be performed to the slave area for which the security level has been set.

    +

    It is not supported DMA transfer to DDR-SDRAM area (0x8000_0000 to 0x9FFF_FFFF) in the current driver version of RZ/V2H . Therefore, do not specify addresses in this area as source or destination addresses.

    +

    If CPU has built-in cache memory, the transfer source and destination should be placed to the area where the cache memory is set to disabled.

    +

    The execution of the Reload function must be completed during the transfer of Next0 or Next1. If the total number of bytes transferred is small, the next transfer may start before the function execution completes. In this case, continuous operation of DMAC transfer is not guaranteed, so when using the Reload function, it is recommended to set the number of bytes to be transferred a little longer, taking into account the bus clock frequency and interrupt processing time.

    +

    +Examples

    +

    Basic Example

    +

    This is a basic example of minimal use of the DMAC in an application.

    +
    void dmac_minimal_example (void)
    {
    /* Open the transfer instance with initial configuration. */
    fsp_err_t err = R_DMAC_B_Open(&g_transfer_ctrl, &g_transfer_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Enable the DMAC to handle incoming transfer requests. */
    err = R_DMAC_B_Enable(&g_transfer_ctrl);
    assert(FSP_SUCCESS == err);
    }
    + + + + + + + + + + + +

    +Data Structures

    struct  dmac_b_callback_args_t
     
    struct  dmac_b_register_set_setting_t
     
    struct  dmac_b_instance_ctrl_t
     
    struct  dmac_b_extended_cfg_t
     
    struct  dmac_b_extended_info_t
     
    + + + + + +

    +Macros

    #define DMAC_B_MAX_NORMAL_TRANSFER_LENGTH
     
    #define DMAC_B_MAX_BLOCK_TRANSFER_LENGTH
     
    + + + + + + + + + + + + + + + + + + + +

    +Enumerations

    enum  dmac_b_event_t
     
    enum  dmac_b_transfer_size_t
     
    enum  dmac_b_ack_mode_t
     
    enum  dmac_b_external_detection_t
     
    enum  dmac_b_internal_detection_t
     
    enum  dmac_b_request_direction_t
     
    enum  dmac_b_continuous_setting_t
     
    enum  dmac_b_channel_scheduling_t
     
    enum  dmac_b_mode_select_t
     
    +

    Data Structure Documentation

    + +

    ◆ dmac_b_callback_args_t

    + +
    +
    + + + + +
    struct dmac_b_callback_args_t
    +
    +

    Callback function parameter data.

    +
    + + + + + + + +
    Data Fields
    +dmac_b_event_t +event +Event code.
    +void const * +p_context +Placeholder for user data. Set in r_transfer_t::open function in transfer_cfg_t.
    + +
    +
    + +

    ◆ dmac_b_register_set_setting_t

    + +
    +
    + + + + +
    struct dmac_b_register_set_setting_t
    +
    +

    Register set settings.

    +
    + + + + + + + + + + +
    Data Fields
    +void const * +p_src +Source pointer.
    +void * +p_dest +Destination pointer.
    +uint32_t +length +Transfer byte.
    + +
    +
    + +

    ◆ dmac_b_instance_ctrl_t

    + +
    +
    + + + + +
    struct dmac_b_instance_ctrl_t
    +
    +

    Control block used by driver. DO NOT INITIALIZE - this structure will be initialized in transfer_api_t::open.

    +
    +
    +
    + +

    ◆ dmac_b_extended_cfg_t

    + +
    +
    + + + + +
    struct dmac_b_extended_cfg_t
    +
    +

    DMAC transfer configuration extension. This extension is required.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    +uint8_t unit
     Unit number.
     
    +uint8_t channel
     Channel number.
     
    +IRQn_Type dmac_int_irq
     DMAC interrupt number.
     
    +uint8_t dmac_int_ipl
     DMAC interrupt priority.
     
    dmac_trigger_event_t activation_source
     
    +dmac_b_ack_mode_t ack_mode
     DACK output mode.
     
    +dmac_b_external_output_pin_t ack_output_pin
     DACK output pin name.
     
    +dmac_b_external_output_pin_t tend_output_pin
     TEND output pin name.
     
    +dmac_b_external_detection_t external_detection_mode
     DMAC request detection method for external pin.
     
    +dmac_b_internal_detection_t internal_detection_mode
     DMAC request detection method for internal pin.
     
    +dmac_b_request_direction_t activation_request_source_select
     DMAC activation request source.
     
    +dmac_b_mode_select_t dmac_mode
     DMAC Mode.
     
    +dmac_b_continuous_setting_t continuous_setting
     Next register operation settings.
     
    +uint16_t transfer_interval
     DMA transfer interval.
     
    +dmac_b_channel_scheduling_t channel_scheduling
     DMA channel scheduling.
     
    void(* p_callback )(dmac_b_callback_args_t *cb_data)
     
    void const * p_context
     
    +

    Field Documentation

    + +

    ◆ activation_source

    + +
    +
    + + + + +
    dmac_trigger_event_t dmac_b_extended_cfg_t::activation_source
    +
    +

    Select which event will trigger the transfer.

    + +
    +
    + +

    ◆ p_callback

    + +
    +
    + + + + +
    void(* dmac_b_extended_cfg_t::p_callback) (dmac_b_callback_args_t *cb_data)
    +
    +

    Callback for transfer end interrupt.

    + +
    +
    + +

    ◆ p_context

    + +
    +
    + + + + +
    void const* dmac_b_extended_cfg_t::p_context
    +
    +

    Placeholder for user data. Passed to the user p_callback in dmac_b_callback_args_t.

    + +
    +
    + +
    +
    + +

    ◆ dmac_b_extended_info_t

    + +
    +
    + + + + +
    struct dmac_b_extended_info_t
    +
    +

    DMAC transfer information configuration extension. This extension is required.

    +
    + + + + + + + + + + +
    Data Fields
    +dmac_b_transfer_size_t +src_size +

    Select number of source bytes to transfer at once.

    +
    +dmac_b_transfer_size_t +dest_size +

    Select number of destination bytes to transfer at once.

    +
    +dmac_b_register_set_setting_t * +p_next1_register_setting +

    Next1 Register set settings

    +
    + +
    +
    +

    Macro Definition Documentation

    + +

    ◆ DMAC_B_MAX_NORMAL_TRANSFER_LENGTH

    + +
    +
    + + + + +
    #define DMAC_B_MAX_NORMAL_TRANSFER_LENGTH
    +
    +

    Max configurable number of transfers in TRANSFER_MODE_NORMAL.

    + +
    +
    + +

    ◆ DMAC_B_MAX_BLOCK_TRANSFER_LENGTH

    + +
    +
    + + + + +
    #define DMAC_B_MAX_BLOCK_TRANSFER_LENGTH
    +
    +

    Max number of transfers per block in TRANSFER_MODE_BLOCK

    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ dmac_b_event_t

    + +
    +
    + + + + +
    enum dmac_b_event_t
    +
    +

    Events that can trigger a callback function.

    + + + +
    Enumerator
    DMAC_B_EVENT_TRANSFER_END 

    DMA transfer has completed.

    +
    DMAC_B_EVENT_TRANSFER_ERROR 

    A bus error occurred during DMA transfer.

    +
    + +
    +
    + +

    ◆ dmac_b_transfer_size_t

    + +
    +
    + + + + +
    enum dmac_b_transfer_size_t
    +
    +

    Transfer size specifies the size of each individual transfer.

    + + + + + + + + + +
    Enumerator
    DMAC_B_TRANSFER_SIZE_1_BYTE 

    Each transfer transfers a 8-bit value.

    +
    DMAC_B_TRANSFER_SIZE_2_BYTE 

    Each transfer transfers a 16-bit value.

    +
    DMAC_B_TRANSFER_SIZE_4_BYTE 

    Each transfer transfers a 32-bit value.

    +
    DMAC_B_TRANSFER_SIZE_8_BYTE 

    Each transfer transfers a 64-bit value.

    +
    DMAC_B_TRANSFER_SIZE_16_BYTE 

    Each transfer transfers a 128-bit value.

    +
    DMAC_B_TRANSFER_SIZE_32_BYTE 

    Each transfer transfers a 256-bit value.

    +
    DMAC_B_TRANSFER_SIZE_64_BYTE 

    Each transfer transfers a 512-bit value.

    +
    DMAC_B_TRANSFER_SIZE_128_BYTE 

    Each transfer transfers a 1024-bit value.

    +
    + +
    +
    + +

    ◆ dmac_b_ack_mode_t

    + +
    +
    + + + + +
    enum dmac_b_ack_mode_t
    +
    +

    DACK output mode. See RZ/T2M hardware manual Table 14.19 DMA Transfer Request Detection Operation Setting Table.

    + + + + +
    Enumerator
    DMAC_B_ACK_MODE_LEVEL_MODE 

    Level mode.

    +
    DMAC_B_ACK_MODE_BUS_CYCLE_MODE 

    Bus cycle mode.

    +
    DMAC_B_ACK_MODE_MASK_DACK_OUTPUT 

    Output is masked.

    +
    + +
    +
    + +

    ◆ dmac_b_external_detection_t

    + +
    +
    + + + + +
    enum dmac_b_external_detection_t
    +
    +

    Detection method of the external DMA request signal. See RZ/T2M hardware manual Table 14.19 DMA Transfer Request Detection Operation Setting Table.

    + + + + + + +
    Enumerator
    DMAC_B_EXTERNAL_DETECTION_LOW_LEVEL 

    Low level detection.

    +
    DMAC_B_EXTERNAL_DETECTION_FALLING_EDGE 

    Falling edge detection.

    +
    DMAC_B_EXTERNAL_DETECTION_RISING_EDGE 

    Rising edge detection.

    +
    DMAC_B_EXTERNAL_DETECTION_FALLING_RISING_EDGE 

    Falling/Rising edge detection.

    +
    DMAC_B_EXTERNAL_DETECTION_NO_DETECTION 

    Not using hardware detection.

    +
    + +
    +
    + +

    ◆ dmac_b_internal_detection_t

    + +
    +
    + + + + +
    enum dmac_b_internal_detection_t
    +
    +

    Detection method of the internal DMA request signal. See RZ/T2M hardware manual Table 14.19 DMA Transfer Request Detection Operation Setting Table.

    + + + + + + +
    Enumerator
    DMAC_B_INTERNAL_DETECTION_NO_DETECTION 

    Not using hardware detection.

    +
    DMAC_B_INTERNAL_DETECTION_FALLING_EDGE 

    Falling edge detection.

    +
    DMAC_B_INTERNAL_DETECTION_RISING_EDGE 

    Rising edge detection.

    +
    DMAC_B_INTERNAL_DETECTION_LOW_LEVEL 

    Low level detection.

    +
    DMAC_B_INTERNAL_DETECTION_HIGH_LEVEL 

    High level detection.

    +
    + +
    +
    + +

    ◆ dmac_b_request_direction_t

    + +
    +
    + + + + +
    enum dmac_b_request_direction_t
    +
    +

    DMA activation request source select. See RZ/T2M hardware manual Table 14.19 DMA Transfer Request Detection Operation Setting Table.

    + + + +
    Enumerator
    DMAC_B_REQUEST_DIRECTION_SOURCE_MODULE 

    Requested by a transfer source module.

    +
    DMAC_B_REQUEST_DIRECTION_DESTINATION_MODULE 

    Requested by a transfer destination module.

    +
    + +
    +
    + +

    ◆ dmac_b_continuous_setting_t

    + +
    +
    + + + + +
    enum dmac_b_continuous_setting_t
    +
    +

    Select the Next register set to be executed next.

    + + + +
    Enumerator
    DMAC_B_CONTINUOUS_SETTING_TRANSFER_ONCE 

    Transfer only once using the Next0 register set.

    +
    DMAC_B_CONTINUOUS_SETTING_TRANSFER_ALTERNATELY 

    Transfers are performed alternately with the Next0 register set and the Next1 register set.

    +
    + +
    +
    + +

    ◆ dmac_b_channel_scheduling_t

    + +
    +
    + + + + +
    enum dmac_b_channel_scheduling_t
    +
    +

    DMAC channel scheduling.

    + + + +
    Enumerator
    DMAC_B_CHANNEL_SCHEDULING_FIXED 

    Fixed priority mode.

    +
    DMAC_B_CHANNEL_SCHEDULING_ROUND_ROBIN 

    Round-robin mode.

    +
    + +
    +
    + +

    ◆ dmac_b_mode_select_t

    + +
    +
    + + + + +
    enum dmac_b_mode_select_t
    +
    +

    DMAC mode setting.

    + + + +
    Enumerator
    DMAC_B_MODE_SELECT_REGISTER 

    Register mode.

    +
    DMAC_B_MODE_SELECT_LINK 

    Link mode.

    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_DMAC_B_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_DMAC_B_Open (transfer_ctrl_t *const p_api_ctrl,
    transfer_cfg_t const *const p_cfg 
    )
    +
    +

    Configure a DMAC channel.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSSuccessful open.
    FSP_ERR_ASSERTIONAn input parameter is invalid.
    FSP_ERR_IP_CHANNEL_NOT_PRESENTThe configured channel is invalid.
    FSP_ERR_IRQ_BSP_DISABLEDThe IRQ associated with the activation source is not enabled in the BSP.
    FSP_ERR_ALREADY_OPENThe control structure is already opened.
    +
    +
    + +
    +
    + +

    ◆ R_DMAC_B_Reconfigure()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_DMAC_B_Reconfigure (transfer_ctrl_t *const p_api_ctrl,
    transfer_info_tp_info 
    )
    +
    +

    Reconfigure the transfer with new transfer info.

    +
    Return values
    + + + + + +
    FSP_SUCCESSTransfer is configured and will start when trigger occurs.
    FSP_ERR_ASSERTIONAn input parameter is invalid.
    FSP_ERR_NOT_ENABLEDDMAC is not enabled. The current configuration must not be valid.
    FSP_ERR_NOT_OPENHandle is not initialized. Call R_DMAC_Open to initialize the control block.
    +
    +
    + +
    +
    + +

    ◆ R_DMAC_B_Reset()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_DMAC_B_Reset (transfer_ctrl_t *const p_api_ctrl,
    void const *volatile p_src,
    void *volatile p_dest,
    uint16_t const num_transfers 
    )
    +
    +

    Reset transfer source, destination, and number of transfers.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDAPI not supported.
    +
    +
    + +
    +
    + +

    ◆ R_DMAC_B_SoftwareStart()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_DMAC_B_SoftwareStart (transfer_ctrl_t *const p_api_ctrl,
    transfer_start_mode_t mode 
    )
    +
    +

    If the mode is TRANSFER_START_MODE_SINGLE initiate a single transfer with software. If the mode is TRANSFER_START_MODE_REPEAT continue triggering transfers until all of the transfers are completed.

    +
    Return values
    + + + + +
    FSP_SUCCESSTransfer started written successfully.
    FSP_ERR_ASSERTIONAn input parameter is invalid.
    FSP_ERR_NOT_OPENHandle is not initialized. Call R_DMAC_Open to initialize the control block.
    +
    +
    + +
    +
    + +

    ◆ R_DMAC_B_SoftwareStop()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_DMAC_B_SoftwareStop (transfer_ctrl_t *const p_api_ctrl)
    +
    +

    Stop software transfers if they were started with TRANSFER_START_MODE_REPEAT.

    +
    Return values
    + + + + +
    FSP_SUCCESSTransfer stopped written successfully.
    FSP_ERR_ASSERTIONAn input parameter is invalid.
    FSP_ERR_NOT_OPENHandle is not initialized. Call R_DMAC_Open to initialize the control block.
    +
    +
    + +
    +
    + +

    ◆ R_DMAC_B_Enable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_DMAC_B_Enable (transfer_ctrl_t *const p_api_ctrl)
    +
    +

    Enable transfers for the configured activation source.

    +
    Return values
    + + + + +
    FSP_SUCCESSCounter value written successfully.
    FSP_ERR_ASSERTIONAn input parameter is invalid.
    FSP_ERR_NOT_OPENHandle is not initialized. Call R_DMAC_Open to initialize the control block.
    +
    +
    + +
    +
    + +

    ◆ R_DMAC_B_Disable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_DMAC_B_Disable (transfer_ctrl_t *const p_api_ctrl)
    +
    +

    Disable transfers so that they are no longer triggered by the activation source.

    +
    Return values
    + + + + +
    FSP_SUCCESSCounter value written successfully.
    FSP_ERR_ASSERTIONAn input parameter is invalid.
    FSP_ERR_NOT_OPENHandle is not initialized. Call R_DMAC_Open to initialize the control block.
    +
    +
    + +
    +
    + +

    ◆ R_DMAC_B_InfoGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_DMAC_B_InfoGet (transfer_ctrl_t *const p_api_ctrl,
    transfer_properties_t *const p_info 
    )
    +
    +

    Set driver specific information in provided pointer.

    +
    Return values
    + + + + +
    FSP_SUCCESSInformation has been written to p_info.
    FSP_ERR_NOT_OPENHandle is not initialized. Call R_DMAC_Open to initialize the control block.
    FSP_ERR_ASSERTIONAn input parameter is invalid.
    +
    +
    + +
    +
    + +

    ◆ R_DMAC_B_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_DMAC_B_Close (transfer_ctrl_t *const p_api_ctrl)
    +
    +

    Disable transfer and clean up internal data. Implements transfer_api_t::close.

    +
    Return values
    + + + + +
    FSP_SUCCESSSuccessful close.
    FSP_ERR_ASSERTIONAn input parameter is invalid.
    FSP_ERR_NOT_OPENHandle is not initialized. Call R_DMAC_Open to initialize the control block.
    +
    +
    + +
    +
    + +

    ◆ R_DMAC_B_Reload()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_DMAC_B_Reload (transfer_ctrl_t *const p_api_ctrl,
    void const *volatile p_src,
    void *volatile p_dest,
    uint32_t const num_transfers 
    )
    +
    +

    Make the following transfer settings to continue the transfer.

    +
    Return values
    + + + + +
    FSP_SUCCESSSuccessful continuous transfer settings.
    FSP_ERR_ASSERTIONAn input parameter is invalid.
    FSP_ERR_NOT_OPENHandle is not initialized. Call R_DMAC_Open to initialize the control block.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___d_m_a_c___b.js b/group___d_m_a_c___b.js new file mode 100644 index 0000000..594555c --- /dev/null +++ b/group___d_m_a_c___b.js @@ -0,0 +1,98 @@ +var group___d_m_a_c___b = +[ + [ "dmac_b_callback_args_t", "group___d_m_a_c___b.html#structdmac__b__callback__args__t", [ + [ "event", "group___d_m_a_c___b.html#aafb07b9e0d848a6f8e56de3b8a378522", null ], + [ "p_context", "group___d_m_a_c___b.html#a3c0c11bbddaa1a47bf8b03b68de9f865", null ] + ] ], + [ "dmac_b_register_set_setting_t", "group___d_m_a_c___b.html#structdmac__b__register__set__setting__t", [ + [ "p_src", "group___d_m_a_c___b.html#a543a2e4f1901f1c745ae7f1eb0eff1a5", null ], + [ "p_dest", "group___d_m_a_c___b.html#a7413254141ea747d2f333335c5c07aff", null ], + [ "length", "group___d_m_a_c___b.html#aac2bd3fe82819a7f868aa155b25459e9", null ] + ] ], + [ "dmac_b_instance_ctrl_t", "group___d_m_a_c___b.html#structdmac__b__instance__ctrl__t", null ], + [ "dmac_b_extended_cfg_t", "group___d_m_a_c___b.html#structdmac__b__extended__cfg__t", [ + [ "unit", "group___d_m_a_c___b.html#a3043a2a8f1838e56d4fcd50b5492e06f", null ], + [ "channel", "group___d_m_a_c___b.html#a8266dbee310dbc0398cdb9d6bb1273a9", null ], + [ "dmac_int_irq", "group___d_m_a_c___b.html#ae98f5d3627d5c804de9b552f29ce5783", null ], + [ "dmac_int_ipl", "group___d_m_a_c___b.html#ad9ca631bfb2e8c33238e11cc75b0ebc3", null ], + [ "activation_source", "group___d_m_a_c___b.html#a14515bc1b8a66a78c2fdc035fde0e2fa", null ], + [ "ack_mode", "group___d_m_a_c___b.html#a7d92e1d7d0c259a61117cfae07481967", null ], + [ "ack_output_pin", "group___d_m_a_c___b.html#ae5d6ef616f8c71b5511e8f0d21399585", null ], + [ "tend_output_pin", "group___d_m_a_c___b.html#a4948302219c9409176bcc0ca3a2484d8", null ], + [ "external_detection_mode", "group___d_m_a_c___b.html#a84613315363012283b6c3abdfd89faff", null ], + [ "internal_detection_mode", "group___d_m_a_c___b.html#a3c6118081755b89a56d716b3278d2f02", null ], + [ "activation_request_source_select", "group___d_m_a_c___b.html#a6f25480c361b6c3dd254878c06d4171c", null ], + [ "dmac_mode", "group___d_m_a_c___b.html#a6b46edce846a6cb215c5f1c61f38fb23", null ], + [ "continuous_setting", "group___d_m_a_c___b.html#aa811f82a3883a3b8ea7af93d5964cc4e", null ], + [ "transfer_interval", "group___d_m_a_c___b.html#ad212e04a4018fe8852fa8eb5ee9cd557", null ], + [ "channel_scheduling", "group___d_m_a_c___b.html#a33a766bacb611723bb0bdfec3758e1f4", null ], + [ "p_callback", "group___d_m_a_c___b.html#a128e8c1345cc9470629fcb55871311a5", null ], + [ "p_context", "group___d_m_a_c___b.html#a810513506f2aa216b17f288ab8ef8bb5", null ] + ] ], + [ "dmac_b_extended_info_t", "group___d_m_a_c___b.html#structdmac__b__extended__info__t", [ + [ "src_size", "group___d_m_a_c___b.html#a6107a37da59835c2457754f90258b9c3", null ], + [ "dest_size", "group___d_m_a_c___b.html#aa22d8061d429688b3aec06dbc938863f", null ], + [ "p_next1_register_setting", "group___d_m_a_c___b.html#a8d1d6c80ac5dad8f955773d399390485", null ] + ] ], + [ "DMAC_B_MAX_NORMAL_TRANSFER_LENGTH", "group___d_m_a_c___b.html#gad36329d847d5154489a049a3c91300ce", null ], + [ "DMAC_B_MAX_BLOCK_TRANSFER_LENGTH", "group___d_m_a_c___b.html#gaa8077eb6959e1d019b7cf7a105fea64c", null ], + [ "dmac_b_event_t", "group___d_m_a_c___b.html#ga1ea3acbac3625e15f0b656d9b220cc8a", [ + [ "DMAC_B_EVENT_TRANSFER_END", "group___d_m_a_c___b.html#gga1ea3acbac3625e15f0b656d9b220cc8aac41c065b08dd64341516cdc406f0a43a", null ], + [ "DMAC_B_EVENT_TRANSFER_ERROR", "group___d_m_a_c___b.html#gga1ea3acbac3625e15f0b656d9b220cc8aa63dd08ef2be01ac99472a7b9d39fabc0", null ] + ] ], + [ "dmac_b_transfer_size_t", "group___d_m_a_c___b.html#ga77c350dbc52956dc8b1ce4987e721e05", [ + [ "DMAC_B_TRANSFER_SIZE_1_BYTE", "group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a721e23f79b32c72da736ec54d5421bec", null ], + [ "DMAC_B_TRANSFER_SIZE_2_BYTE", "group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a4c2cfb773f20e835d60f56c0a629c8cf", null ], + [ "DMAC_B_TRANSFER_SIZE_4_BYTE", "group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a85e3931c705b484424a1edb2e1524e84", null ], + [ "DMAC_B_TRANSFER_SIZE_8_BYTE", "group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a0c2745aba41ca5690310193c4bdf4e45", null ], + [ "DMAC_B_TRANSFER_SIZE_16_BYTE", "group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a58ff436dad7b5de72f7dc3a260cbd330", null ], + [ "DMAC_B_TRANSFER_SIZE_32_BYTE", "group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a805502107f3f216852993a50431d770b", null ], + [ "DMAC_B_TRANSFER_SIZE_64_BYTE", "group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05aefe1c8b1b4337a4110e65e2ac44a9c45", null ], + [ "DMAC_B_TRANSFER_SIZE_128_BYTE", "group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a2c9e0298925cbd56844ad036ce1a912c", null ] + ] ], + [ "dmac_b_ack_mode_t", "group___d_m_a_c___b.html#ga46c5c66fc820831bb56b5f6554f2890e", [ + [ "DMAC_B_ACK_MODE_LEVEL_MODE", "group___d_m_a_c___b.html#gga46c5c66fc820831bb56b5f6554f2890eaf2b54be1c14b4eaa12570b6bc5fec740", null ], + [ "DMAC_B_ACK_MODE_BUS_CYCLE_MODE", "group___d_m_a_c___b.html#gga46c5c66fc820831bb56b5f6554f2890eaf0702197abc49f459a920cfd07e079b9", null ], + [ "DMAC_B_ACK_MODE_MASK_DACK_OUTPUT", "group___d_m_a_c___b.html#gga46c5c66fc820831bb56b5f6554f2890ea2c0a3fc39b5304639b9b27528b37d368", null ] + ] ], + [ "dmac_b_external_detection_t", "group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355b", [ + [ "DMAC_B_EXTERNAL_DETECTION_LOW_LEVEL", "group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355ba9b733b38f6216a7bafaa62855dcdea06", null ], + [ "DMAC_B_EXTERNAL_DETECTION_FALLING_EDGE", "group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355ba1e4a1303234cd1b4bd879da0a5497c81", null ], + [ "DMAC_B_EXTERNAL_DETECTION_RISING_EDGE", "group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355ba71d49967fcb329386f7ad75c057af39f", null ], + [ "DMAC_B_EXTERNAL_DETECTION_FALLING_RISING_EDGE", "group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355babdf24e175dde86c8a869f358d5bb30b1", null ], + [ "DMAC_B_EXTERNAL_DETECTION_NO_DETECTION", "group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355baac86700726f22406c000acd5464a0737", null ] + ] ], + [ "dmac_b_internal_detection_t", "group___d_m_a_c___b.html#gaa15ccc56c79f1686821605ef2b8f36b9", [ + [ "DMAC_B_INTERNAL_DETECTION_NO_DETECTION", "group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9ab15a854ed45d602e8d626578289ce9ba", null ], + [ "DMAC_B_INTERNAL_DETECTION_FALLING_EDGE", "group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9a33a92c25dc8e8d12113e6deb4675c873", null ], + [ "DMAC_B_INTERNAL_DETECTION_RISING_EDGE", "group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9ab7d1e90900549b57f72f0de1b45ea896", null ], + [ "DMAC_B_INTERNAL_DETECTION_LOW_LEVEL", "group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9a4fb00d6fcdbad47c1093e14b8ae9e548", null ], + [ "DMAC_B_INTERNAL_DETECTION_HIGH_LEVEL", "group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9a1299d6d4187c1bb2488f36aaaa595010", null ] + ] ], + [ "dmac_b_request_direction_t", "group___d_m_a_c___b.html#ga16f1e4bdd626e2ffc16b8852ca8d8c29", [ + [ "DMAC_B_REQUEST_DIRECTION_SOURCE_MODULE", "group___d_m_a_c___b.html#gga16f1e4bdd626e2ffc16b8852ca8d8c29a93d8c7e5e86dacbe867b641d45c9a2b7", null ], + [ "DMAC_B_REQUEST_DIRECTION_DESTINATION_MODULE", "group___d_m_a_c___b.html#gga16f1e4bdd626e2ffc16b8852ca8d8c29adb00461b1b26e0bfbacec0a4ddabcdb1", null ] + ] ], + [ "dmac_b_continuous_setting_t", "group___d_m_a_c___b.html#ga096bd7a43751a80690fd7ed3454b78a7", [ + [ "DMAC_B_CONTINUOUS_SETTING_TRANSFER_ONCE", "group___d_m_a_c___b.html#gga096bd7a43751a80690fd7ed3454b78a7a7de91e47558887cbcf23934645dca258", null ], + [ "DMAC_B_CONTINUOUS_SETTING_TRANSFER_ALTERNATELY", "group___d_m_a_c___b.html#gga096bd7a43751a80690fd7ed3454b78a7a61c972e3ce54cbcb765c280c977e2857", null ] + ] ], + [ "dmac_b_channel_scheduling_t", "group___d_m_a_c___b.html#gab359dcd5cfb24ecd20655106c9397d63", [ + [ "DMAC_B_CHANNEL_SCHEDULING_FIXED", "group___d_m_a_c___b.html#ggab359dcd5cfb24ecd20655106c9397d63ae7628013b57a05b3524bfa6b58eece1e", null ], + [ "DMAC_B_CHANNEL_SCHEDULING_ROUND_ROBIN", "group___d_m_a_c___b.html#ggab359dcd5cfb24ecd20655106c9397d63a481ea85a54aca23ab1215c7b14a969fb", null ] + ] ], + [ "dmac_b_mode_select_t", "group___d_m_a_c___b.html#ga94e377366e55d6e30cf97102474a5320", [ + [ "DMAC_B_MODE_SELECT_REGISTER", "group___d_m_a_c___b.html#gga94e377366e55d6e30cf97102474a5320a7f8b6c67b1c4def19957ece68927e144", null ], + [ "DMAC_B_MODE_SELECT_LINK", "group___d_m_a_c___b.html#gga94e377366e55d6e30cf97102474a5320a3baaab03184466785a334292da53798b", null ] + ] ], + [ "R_DMAC_B_Open", "group___d_m_a_c___b.html#gac246f431e5d9b090d51fa82e1cf4c525", null ], + [ "R_DMAC_B_Reconfigure", "group___d_m_a_c___b.html#ga2c6e7a22349d33428d977fec5547e3ea", null ], + [ "R_DMAC_B_Reset", "group___d_m_a_c___b.html#ga3aa063ea10c545145d43d90b46a5d34b", null ], + [ "R_DMAC_B_SoftwareStart", "group___d_m_a_c___b.html#ga13da20adc7b96463ae04f4c5cea24154", null ], + [ "R_DMAC_B_SoftwareStop", "group___d_m_a_c___b.html#gae209f9912564241da474026944c2d6a6", null ], + [ "R_DMAC_B_Enable", "group___d_m_a_c___b.html#gad7d2d7ade93dc5fdb468f3ca4eb23904", null ], + [ "R_DMAC_B_Disable", "group___d_m_a_c___b.html#gaae171cb7c85d650ef946358a06f25f19", null ], + [ "R_DMAC_B_InfoGet", "group___d_m_a_c___b.html#ga7edc253186828189c91ba0b183733c1b", null ], + [ "R_DMAC_B_Close", "group___d_m_a_c___b.html#ga632bf5ab4aab7000686ef9f18a613362", null ], + [ "R_DMAC_B_Reload", "group___d_m_a_c___b.html#gadb30ad1a9a46b41838123869c5d9d5b7", null ] +]; \ No newline at end of file diff --git a/group___e_l_c.html b/group___e_l_c.html new file mode 100644 index 0000000..cf2902b --- /dev/null +++ b/group___e_l_c.html @@ -0,0 +1,537 @@ + + + + + + + +RZV Flexible Software Package Documentation: Event Link Controller (r_elc) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Event Link Controller (r_elc)
    +
    +
    + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_ELC_Open (elc_ctrl_t *const p_ctrl, elc_cfg_t const *const p_cfg)
     
    fsp_err_t R_ELC_Close (elc_ctrl_t *const p_ctrl)
     
    fsp_err_t R_ELC_SoftwareEventGenerate (elc_ctrl_t *const p_ctrl, elc_software_event_t event_number)
     
    fsp_err_t R_ELC_LinkSet (elc_ctrl_t *const p_ctrl, elc_peripheral_t peripheral, elc_event_t signal)
     
    fsp_err_t R_ELC_LinkBreak (elc_ctrl_t *const p_ctrl, elc_peripheral_t peripheral)
     
    fsp_err_t R_ELC_Enable (elc_ctrl_t *const p_ctrl)
     
    fsp_err_t R_ELC_Disable (elc_ctrl_t *const p_ctrl)
     
    +

    Detailed Description

    +

    Driver for the ELC peripheral on RZ microprocessor. This module implements the ELC Interface.

    +

    +Overview

    +

    The event link controller (ELC) uses the event requests generated by various peripheral modules as source signals to connect (link) them to different modules, allowing direct cooperation between the modules without central processing unit (CPU) intervention. The conceptual diagram below illustrates a potential setup where a pin input triggers a timer which later triggers an ADC conversion. These tasks would be automatically handled without the need for polling or interrupt management.

    +
    +r_elc_concept.svg +
    +Event Link Controller Conceptual Diagram
    +

    In essence, the ELC is an array of multiplexers to route a wide variety of interrupt signals to a subset of peripheral functions. Events are linked by setting the multiplexer for the desired function to the desired signal (through R_ELC_LinkSet). The diagram below illustrates one peripheral output of the ELC. In this example, a conversion start is triggered for ADC when the GPT00 counter overflows:

    +
    +r_elc_eventset.svg +
    +ELC Example
    +

    +Features

    +

    The ELC HAL module can perform the following functions:

    +
      +
    • Initialize the ELC to a pre-defined set of links
    • +
    • Create an event link between two blocks
    • +
    • Break an event link between two blocks
    • +
    • Generate one of seven software events that interrupt the CPU
    • +
    +

    A variety of functions can be activated via events, including:

    +
      +
    • General-purpose timer (GPT) control
    • +
    • ADC and TSU conversion start
    • +
    • Port group output and input (ports 6, 8 only)
    • +
    • Single port output and input
    • +
    • GBRTH auxiliary timestamp trigger
    • +
    +
    Note
    The available sources and peripherals may differ between devices. A full list of selectable peripherals and events is available in the User's Manual for your device.
    +
    +Some peripherals have specific settings related to ELC event generation and/or reception. Details on how to enable event functionality for each peripheral are located in the usage notes for the related module(s) as well as in the User's Manual for your device.
    +

    +Configuration

    +
    Note
    Event links will be automatically generated based on the selections made in module properties. To view the currently linked events check the Event Links tab in the FSP Configuration editor.
    +

    To manually link an event to a peripheral at runtime perform the following steps:

    +
      +
    1. Configure the operation of the destination peripheral (including any configuration necessary to receive events)
    2. +
    3. Use R_ELC_LinkSet to set the desired event link to the peripheral
    4. +
    5. Configure the signaling module to output the desired event (typically an interrupt)
    6. +
    +

    To disable the event, either use R_ELC_LinkBreak to clear the link for a specific event.

    +
    Note
    The ELC module needs no pin, clocking or interrupt configuration; it is merely a mechanism to connect signals between peripherals. However, when linking I/O Ports via the ELC the relevant I/O pins need to be configured as inputs or outputs, and more ELC module I/O port settings.
    +
    +Interrupt and event signals are exclusive output controlled. Signals that can be handled as either interrupt signals or event signals are no longer output as interrupt signals when linked to peripherals by the ELC module. Interrupt and/or event signals are listed in the User's Manual for your device.
    +

    Build Time Configurations for r_elc

    +The following build time configurations are defined in fsp_cfg/r_elc_cfg.h:
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    +

    Configurations for System > Event Link Controller (r_elc)

    +This module can be added to the Stacks tab via New Stack > System > Event Link Controller (r_elc).
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    NameELC instance name must be g_elc to match elc_cfg_t data structure created in elc_data.cg_elc Module name. Fixed to g_elc.
    +

    +

    +Usage Notes

    +

    +Limitations

    +

    Developers should be aware of the following limitations when using the ELC:

    +
      +
    • To link events it is necessary for the ELC and the related modules to be enabled. The ELC cannot operate if the related modules are in the module stop state or the MPU is in a low power consumption mode for which the module is stopped.
    • +
    • Signals to the ICU from the other units must be input with an interval of at least 34 cycles at 100 MHz between them. If an interval is shorter than this, input signals may be lost.
    • +
    • Using a DMAC REQ signal generated by an SW DMAC Request Generation Register as an event output is not allowed.
    • +
    +

    +Examples

    +

    Basic Example

    +

    Below is a basic example of minimal use of event linking in an application.

    +
    /* This struct is automatically generated based on the events configured by peripherals in the RZ Configuration editor. */
    static const elc_cfg_t g_elc_cfg =
    {
    .link[ELC_PERIPHERAL_GPT0_ACT0] = ELC_EVENT_SW_EVENT_0,
    .link[ELC_PERIPHERAL_GPT0_ACT1] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT0_ACT2] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT0_ACT3] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT0_ACT4] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT0_ACT5] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT0_ACT6] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT0_ACT7] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT1_ACT0] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT1_ACT1] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT1_ACT2] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT1_ACT3] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT1_ACT4] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT1_ACT5] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT1_ACT6] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GPT1_ACT7] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_ADC0] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_TSU0] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_TSU1] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_INPORTGR1] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_INPORTGR0] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_SINGLEPORT0] = ELC_EVENT_GPT_U0_GPT_ELCOVF_0,
    .link[ELC_PERIPHERAL_SINGLEPORT1] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_SINGLEPORT2] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_SINGLEPORT3] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_OUTPORTGR0] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_OUTPORTGR1] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GBETH0_TGR0] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GBETH0_TGR1] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GBETH0_TGR2] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GBETH0_TGR3] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GBETH1_TGR0] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GBETH1_TGR1] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GBETH1_TGR2] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_GBETH1_TGR3] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_ICU_DMAC0] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_ICU_DMAC1] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_ICU_DMAC2] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_ICU_DMAC3] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_ICU_DMAC4] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_ICU_DMAC5] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_ICU_DMAC6] = ELC_EVENT_NONE,
    .link[ELC_PERIPHERAL_ICU_DMAC7] = ELC_EVENT_NONE
    };
    void elc_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the software and sets the links defined in the control structure. */
    err = R_ELC_Open(&g_elc_ctrl, &g_elc_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    /* Create or modify a link between a peripheral function and an event source. */
    err = R_ELC_LinkSet(&g_elc_ctrl, ELC_PERIPHERAL_ADC0, ELC_EVENT_GPT_U0_GPT_ELCOVF_0);
    handle_error(err);
    }
    + + + +

    +Data Structures

    struct  elc_instance_ctrl_t
     
    +

    Data Structure Documentation

    + +

    ◆ elc_instance_ctrl_t

    + +
    +
    + + + + +
    struct elc_instance_ctrl_t
    +
    +

    ELC private control block. DO NOT MODIFY. Initialization occurs when R_ELC_Open() is called.

    +
    +
    +
    +

    Function Documentation

    + +

    ◆ R_ELC_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ELC_Open (elc_ctrl_t *const p_ctrl,
    elc_cfg_t const *const p_cfg 
    )
    +
    +

    Initialize all the links in the Event Link Controller. Implements elc_api_t::open

    +

    The configuration structure passed in to this function includes links for every event source included in the ELC and sets them all at once. To set or clear an individual link use R_ELC_LinkSet and R_ELC_LinkBreak respectively.

    +
    Return values
    + + + + +
    FSP_SUCCESSInitialization was successful
    FSP_ERR_ASSERTIONp_ctrl or p_cfg was NULL
    FSP_ERR_ALREADY_OPENThe module is currently open
    +
    +
    + +
    +
    + +

    ◆ R_ELC_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_ELC_Close (elc_ctrl_t *const p_ctrl)
    +
    +

    Globally disable ELC linking. Implements elc_api_t::close

    +
    Return values
    + + + + +
    FSP_SUCCESSThe ELC was successfully disabled
    FSP_ERR_ASSERTIONp_ctrl was NULL
    FSP_ERR_NOT_OPENThe module has not been opened
    +
    +
    + +
    +
    + +

    ◆ R_ELC_SoftwareEventGenerate()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ELC_SoftwareEventGenerate (elc_ctrl_t *const p_ctrl,
    elc_software_event_t event_number 
    )
    +
    +

    Generate a software event in the Event Link Controller. Implements elc_api_t::softwareEventGenerate

    +
    Return values
    + + + + +
    FSP_SUCCESSInitialization was successful
    FSP_ERR_ASSERTIONInvalid event number or p_ctrl was NULL
    FSP_ERR_NOT_OPENThe module has not been opened
    +
    +
    + +
    +
    + +

    ◆ R_ELC_LinkSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ELC_LinkSet (elc_ctrl_t *const p_ctrl,
    elc_peripheral_t peripheral,
    elc_event_t signal 
    )
    +
    +

    Create a single event link. Implements elc_api_t::linkSet

    +
    Return values
    + + + + +
    FSP_SUCCESSInitialization was successful
    FSP_ERR_ASSERTIONp_ctrl was NULL
    FSP_ERR_NOT_OPENThe module has not been opened
    +
    +
    + +
    +
    + +

    ◆ R_ELC_LinkBreak()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_ELC_LinkBreak (elc_ctrl_t *const p_ctrl,
    elc_peripheral_t peripheral 
    )
    +
    +

    Break an event link. Implements elc_api_t::linkBreak

    +
    Return values
    + + + + +
    FSP_SUCCESSEvent link broken
    FSP_ERR_ASSERTIONp_ctrl was NULL
    FSP_ERR_NOT_OPENThe module has not been opened
    +
    +
    + +
    +
    + +

    ◆ R_ELC_Enable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_ELC_Enable (elc_ctrl_t *const p_ctrl)
    +
    +

    Enable the operation of the Event Link Controller. Implements elc_api_t::enable

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDAPI not supported.
    +
    +
    + +
    +
    + +

    ◆ R_ELC_Disable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_ELC_Disable (elc_ctrl_t *const p_ctrl)
    +
    +

    Disable the operation of the Event Link Controller. Implements elc_api_t::disable

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDAPI not supported.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___e_l_c.js b/group___e_l_c.js new file mode 100644 index 0000000..8280581 --- /dev/null +++ b/group___e_l_c.js @@ -0,0 +1,11 @@ +var group___e_l_c = +[ + [ "elc_instance_ctrl_t", "group___e_l_c.html#structelc__instance__ctrl__t", null ], + [ "R_ELC_Open", "group___e_l_c.html#ga35864de459d2ef45a03da4343729712f", null ], + [ "R_ELC_Close", "group___e_l_c.html#gac5e6b998138cc28bcbd8b17a5eb26674", null ], + [ "R_ELC_SoftwareEventGenerate", "group___e_l_c.html#gaa8735a16325cfeff3c47a50345d11d82", null ], + [ "R_ELC_LinkSet", "group___e_l_c.html#ga4b40a4cb59194b6315cf608cd5e36bd9", null ], + [ "R_ELC_LinkBreak", "group___e_l_c.html#ga2b2ed9cb9e86bf6c75d85977c4c135ff", null ], + [ "R_ELC_Enable", "group___e_l_c.html#ga4bcac22edb575069ba86d87ce9aea84c", null ], + [ "R_ELC_Disable", "group___e_l_c.html#gad52f538fbce405f18a46f6e42cce9ebf", null ] +]; \ No newline at end of file diff --git a/group___e_l_c___a_p_i.html b/group___e_l_c___a_p_i.html new file mode 100644 index 0000000..4bf2d8b --- /dev/null +++ b/group___e_l_c___a_p_i.html @@ -0,0 +1,526 @@ + + + + + + + +RZV Flexible Software Package Documentation: ELC Interface + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    ELC Interface
    +
    +
    +

    Detailed Description

    +

    Interface for the Event Link Controller.

    + + + + + + + + +

    +Data Structures

    struct  elc_cfg_t
     
    struct  elc_api_t
     
    struct  elc_instance_t
     
    + + + +

    +Typedefs

    typedef void elc_ctrl_t
     
    + + + + + +

    +Enumerations

    enum  elc_peripheral_t
     
    enum  elc_software_event_t
     
    +

    Data Structure Documentation

    + +

    ◆ elc_cfg_t

    + +
    +
    + + + + +
    struct elc_cfg_t
    +
    +

    Main configuration structure for the Event Link Controller

    +
    + + + + +
    Data Fields
    +elc_event_t const +link[ELC_PERIPHERAL_NUM] +Event link register settings.
    + +
    +
    + +

    ◆ elc_api_t

    + +
    +
    + + + + +
    struct elc_api_t
    +
    +

    ELC driver structure. General ELC functions implemented at the HAL layer follow this API.

    +
    + + + + + + + + + + + + + + + +

    Data Fields

    fsp_err_t(* open )(elc_ctrl_t *const p_ctrl, elc_cfg_t const *const p_cfg)
     
    fsp_err_t(* close )(elc_ctrl_t *const p_ctrl)
     
    fsp_err_t(* softwareEventGenerate )(elc_ctrl_t *const p_ctrl, elc_software_event_t event_num)
     
    fsp_err_t(* linkSet )(elc_ctrl_t *const p_ctrl, elc_peripheral_t peripheral, elc_event_t signal)
     
    fsp_err_t(* linkBreak )(elc_ctrl_t *const p_ctrl, elc_peripheral_t peripheral)
     
    fsp_err_t(* enable )(elc_ctrl_t *const p_ctrl)
     
    fsp_err_t(* disable )(elc_ctrl_t *const p_ctrl)
     
    +

    Field Documentation

    + +

    ◆ open

    + +
    +
    + + + + +
    fsp_err_t(* elc_api_t::open) (elc_ctrl_t *const p_ctrl, elc_cfg_t const *const p_cfg)
    +
    +

    Initialize all links in the Event Link Controller.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control structure.
    [in]p_cfgPointer to configuration structure.
    +
    +
    + +
    +
    + +

    ◆ close

    + +
    +
    + + + + +
    fsp_err_t(* elc_api_t::close) (elc_ctrl_t *const p_ctrl)
    +
    +

    Disable all links in the Event Link Controller and close the API.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to control structure.
    +
    +
    + +
    +
    + +

    ◆ softwareEventGenerate

    + +
    +
    + + + + +
    fsp_err_t(* elc_api_t::softwareEventGenerate) (elc_ctrl_t *const p_ctrl, elc_software_event_t event_num)
    +
    +

    Generate a software event in the Event Link Controller.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control structure.
    [in]eventNumSoftware event number to be generated.
    +
    +
    + +
    +
    + +

    ◆ linkSet

    + +
    +
    + + + + +
    fsp_err_t(* elc_api_t::linkSet) (elc_ctrl_t *const p_ctrl, elc_peripheral_t peripheral, elc_event_t signal)
    +
    +

    Create a single event link.

    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlPointer to control structure.
    [in]peripheralThe peripheral block that will receive the event signal.
    [in]signalThe event signal.
    +
    +
    + +
    +
    + +

    ◆ linkBreak

    + +
    +
    + + + + +
    fsp_err_t(* elc_api_t::linkBreak) (elc_ctrl_t *const p_ctrl, elc_peripheral_t peripheral)
    +
    +

    Break an event link.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control structure.
    [in]peripheralThe peripheral that should no longer be linked.
    +
    +
    + +
    +
    + +

    ◆ enable

    + +
    +
    + + + + +
    fsp_err_t(* elc_api_t::enable) (elc_ctrl_t *const p_ctrl)
    +
    +

    Enable the operation of the Event Link Controller.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to control structure.
    +
    +
    + +
    +
    + +

    ◆ disable

    + +
    +
    + + + + +
    fsp_err_t(* elc_api_t::disable) (elc_ctrl_t *const p_ctrl)
    +
    +

    Disable the operation of the Event Link Controller.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to control structure.
    +
    +
    + +
    +
    + +
    +
    + +

    ◆ elc_instance_t

    + +
    +
    + + + + +
    struct elc_instance_t
    +
    +

    This structure encompasses everything that is needed to use an instance of this interface.

    +
    + + + + + + + + + + +
    Data Fields
    +elc_ctrl_t * +p_ctrl +Pointer to the control structure for this instance.
    +elc_cfg_t const * +p_cfg +Pointer to the configuration structure for this instance.
    +elc_api_t const * +p_api +Pointer to the API structure for this instance.
    + +
    +
    +

    Typedef Documentation

    + +

    ◆ elc_ctrl_t

    + +
    +
    + + + + +
    typedef void elc_ctrl_t
    +
    +

    ELC control block. Allocate an instance specific control block to pass into the ELC API calls.

    Implemented as
    +
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ elc_peripheral_t

    + +
    +
    + + + + +
    enum elc_peripheral_t
    +
    +

    Possible peripherals to be linked to event signals (not all available on all MCUs)

    + +
    +
    + +

    ◆ elc_software_event_t

    + +
    +
    + + + + +
    enum elc_software_event_t
    +
    +

    Software event number

    + + + +
    Enumerator
    ELC_SOFTWARE_EVENT_0 

    Software event 0.

    +
    ELC_SOFTWARE_EVENT_1 

    Software event 1.

    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___e_l_c___a_p_i.js b/group___e_l_c___a_p_i.js new file mode 100644 index 0000000..0456e1d --- /dev/null +++ b/group___e_l_c___a_p_i.js @@ -0,0 +1,26 @@ +var group___e_l_c___a_p_i = +[ + [ "elc_cfg_t", "group___e_l_c___a_p_i.html#structelc__cfg__t", [ + [ "link", "group___e_l_c___a_p_i.html#ad58380dc39c1d257fc9128dda007865d", null ] + ] ], + [ "elc_api_t", "group___e_l_c___a_p_i.html#structelc__api__t", [ + [ "open", "group___e_l_c___a_p_i.html#ac4f753f3fcae95e036d24e3d6a84d1f5", null ], + [ "close", "group___e_l_c___a_p_i.html#a4ca08e8e0db93700e8e4f651f4492977", null ], + [ "softwareEventGenerate", "group___e_l_c___a_p_i.html#a5201eaeb1fbc56f6c78b9db34fb580e3", null ], + [ "linkSet", "group___e_l_c___a_p_i.html#a05af30d0ca7743f5a033b10d664ded59", null ], + [ "linkBreak", "group___e_l_c___a_p_i.html#aded8ab0cdd59a636f2a5cc60313c54c5", null ], + [ "enable", "group___e_l_c___a_p_i.html#a5ec2e92543d9a74fd4e33b20b9782ef5", null ], + [ "disable", "group___e_l_c___a_p_i.html#a91eea8824e8ea3d204860d16abb8d78a", null ] + ] ], + [ "elc_instance_t", "group___e_l_c___a_p_i.html#structelc__instance__t", [ + [ "p_ctrl", "group___e_l_c___a_p_i.html#a666a726dd9209856799d03b62b703029", null ], + [ "p_cfg", "group___e_l_c___a_p_i.html#a90896863b4141cbbd2eb4d2eea7e58e4", null ], + [ "p_api", "group___e_l_c___a_p_i.html#a9919c68bc6249d294d121715277a53dd", null ] + ] ], + [ "elc_ctrl_t", "group___e_l_c___a_p_i.html#ga71d9612a7e093ba6bbef8ff708266596", null ], + [ "elc_peripheral_t", "group___e_l_c___a_p_i.html#gaa5bf5e18ceb8cf51ac6dce985f9230a7", null ], + [ "elc_software_event_t", "group___e_l_c___a_p_i.html#ga5fed76c06664ddad69c5a7ccb0330f0e", [ + [ "ELC_SOFTWARE_EVENT_0", "group___e_l_c___a_p_i.html#ga5fed76c06664ddad69c5a7ccb0330f0ea862eb8abb2f512a4b4caaa1ee6900d27", null ], + [ "ELC_SOFTWARE_EVENT_1", "group___e_l_c___a_p_i.html#ga5fed76c06664ddad69c5a7ccb0330f0ea4ba5ce998b49ee8ba5fd264f53146d6d", null ] + ] ] +]; \ No newline at end of file diff --git a/group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html b/group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html index ea703e1..f8830e9 100644 --- a/group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html +++ b/group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: External IRQ Interface +RZV Flexible Software Package Documentation: External IRQ Interface @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Data Structures | @@ -104,7 +172,9 @@

    Summary

    The External IRQ Interface is for configuring interrupts to fire when a trigger condition is detected on an external IRQ pin.

    The External IRQ Interface can be implemented by:

    - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    General PWM Timer (r_gpt)
    +
    General PWM Timer (r_gpt)

    @@ -281,7 +351,9 @@

    Initial configuration.

    Implemented as
    Parameters
    @@ -306,7 +378,9 @@

    Enable callback when an external trigger condition occurs.

    Implemented as
    Parameters
    @@ -330,7 +404,9 @@

    Disable callback when external trigger condition occurs.

    Implemented as
    Parameters
    @@ -354,7 +430,9 @@

    Specify callback function and optional context pointer and working memory pointer.

    Implemented as
    Parameters
    @@ -381,7 +459,9 @@

    Allow driver to be reconfigured. May reduce power consumption.

    Implemented as
    Parameters
    @@ -445,7 +525,9 @@

    External IRQ control block. Allocate an instance specific control block to pass into the external IRQ API calls.

    Implemented as
    @@ -508,7 +590,7 @@

      - +
    diff --git a/group___g_p_t.html b/group___g_p_t.html index 0d744e7..b74b429 100644 --- a/group___g_p_t.html +++ b/group___g_p_t.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: General PWM Timer (r_gpt) +RZV Flexible Software Package Documentation: General PWM Timer (r_gpt) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    @@ -129,22 +197,26 @@ + + + +
     
    fsp_err_t R_GPT_AdcTriggerSet (timer_ctrl_t *const p_ctrl, gpt_adc_compare_match_t which_compare_match, uint32_t compare_match_value)
     
    fsp_err_t R_GPT_PwmOutputDelaySet (timer_ctrl_t *const p_ctrl, gpt_pwm_output_delay_edge_t edge, gpt_pwm_output_delay_setting_t delay_setting, uint32_t const pin)
     
    fsp_err_t R_GPT_CallbackSet (timer_ctrl_t *const p_api_ctrl, void(*p_callback)(timer_callback_args_t *), void const *const p_context, timer_callback_args_t *const p_callback_memory)
     
    fsp_err_t R_GPT_Close (timer_ctrl_t *const p_ctrl)
     
    fsp_err_t R_GPT_PwmOutputDelayInitialize ()
     

    Detailed Description

    Driver for the GPT peripheral on RZ MPUs. This module implements the Timer Interface.

    Overview

    The GPT module can be used to count events, measure external input signals, generate a periodic interrupt, or output a periodic or PWM signal to a GTIOC pin.

    -

    This module supports the GPT peripherals GPT32E are 32-bit timers. The 32-bit timers are all treated the same in this module from the API perspective.

    +

    This module supports the GPT peripherals are 32-bit timers. The 32-bit timers are all treated the same in this module from the API perspective.

    Features

    The GPT module has the following features:

    • Supports periodic mode, one-shot mode, and PWM mode.
    • -
    • Supports count source of PCLK, GTETRG pins or GTIOC pins.
    • +
    • Supports count source of PCLK, GTETRG pins or GTIOC pins or ELC events. *1
    • Supports debounce filter on GTIOC pins.
    • Signal can be output to a pin.
    • Configurable period (counts per timer cycle).
    • @@ -154,7 +226,7 @@

    • APIs are provided to start, stop, and reset the counter.
    • APIs are provided to get the current period, source clock frequency, and count direction.
    • APIs are provided to get the current timer status and counter value.
    • -
    • Supports start, stop, clear, count up, count down, and capture by external sources from GTETRG pins or GTIOC pins.
    • +
    • Supports start, stop, clear, count up, count down, and capture by external sources from GTETRG pins or GTIOC pins or ELC events. *1
    • Supports symmetric and asymmetric PWM waveform generation.
    • Supports automatic addition of dead time.
    • Supports generating A/D converter start trigger.
    • @@ -162,20 +234,35 @@

    • Supports setting the counter value while the timer is stopped.
    • Supports enabling and disabling output pins.
    • Supports skipping up to seven overflow/underflow (crest/trough) interrupts at a time
    • +
    • Supports phase count function.
    • +
    • Supports dead time error interrupt.
    +

    *1 ELC event only supports RZ/V2H.

    Selecting a Timer

    RZ MPUs have two timer peripherals: the General PWM Timer (GPT) and the General Timer (GTM). When selecting between them, consider these factors:

    +

    RZV2L

    - + - +
    GPT GTM
    Available ChannelsThe number of GPT channels is device specific. All currently supported MPUs have at least 6 GPT channels.All MPUs have 3 GTM channels.
    Available ChannelsThe number of GPT channels are 8 channels (ch0~7). The number of GTM channels are 3 channels (ch0~2).
    Timer ResolutionAll MPUs have 32-bit GPT timer.The GTM timers are 32-bit timers.
    Timer ResolutionThe GPT timers have 32-bit timers.The GTM timers are 32-bit timers.
    Clock SourceThe GPT runs off P0 clock with a configurable divider up to 1024.The GTM runs off P0 clock.
    +

    RZV2H

    + + + + + + + + + +
    GPT GTM
    Available ChannelsThe number of GPT channels are 16 channels (ch0~15).The number of GTM channels are 3 channels (ch0~2).
    Timer ResolutionThe GPT timers have 32-bit GPT timer.The GTM timers are 32-bit timers.
    Clock SourceThe GPT runs off P4 clock with a configurable divider up to 1024.The GTM runs off P0 clock.

    Configuration

    Build Time Configurations for r_gpt

    @@ -202,7 +289,7 @@

  • Enabled with Extra Features
  • -Disabled If selected code for outputting a waveform to a pin is included in the build. +Disabled Enables or disables support for outputting PWM waveforms on GTIOCx pins. The "Enabled with Extra Features" option enables support for Triangle wave modes and also enables the features located in the "Extra Features" section of each module instance. Write Protect Enable
    • @@ -211,16 +298,18 @@

      Disabled

    Disabled If selected write protection is applied to all GPT channels. + +Clock SourceMCU Specific OptionsSelect either the synchronous clock or asynchronous clock as the source for the GPT core clock. -

    Configurations for Driver > Timers > Timer Driver on r_gpt

    -This module can be added to the Stacks tab via New Stack > Driver > Timers > Timer Driver on r_gpt.
    +

    Configurations for Timers > Timer, General PWM (r_gpt)

    +This module can be added to the Stacks tab via New Stack > Timers > Timer, General PWM (r_gpt).

    - + - - - + + + + + + + + + + + + + + + + + + + - + - + - - + - + - + - + @@ -333,25 +514,37 @@

    Configurations for Driver > Timers > Timer Driver on r_gpt

  • No Filter
  • -Filter P0CLK / 1
  • +Filter CLK / 1
  • -Filter P0CLK / 4
  • +Filter CLK / 4
  • -Filter P0CLK / 16
  • +Filter CLK / 16
  • -Filter P0CLK / 64
  • +Filter CLK / 64 + + + + + + - + + + + + + +
    ConfigurationOptionsDefaultDescription
    General > NameName must be a valid C symbolg_timer0 Module name.
    General > ChannelChannel number must exist on this MPU0 Specify the hardware channel.
    General > ChannelChannel number must be a positive integer0 Specify the hardware channel.
    General > Mode
    • @@ -230,9 +319,13 @@

      Configurations for Driver > Timers > Timer Driver on r_gpt

    • PWM
    • +One-Shot Pulse
    • +
    • Triangle-Wave Symmetric PWM
    • Triangle-Wave Asymmetric PWM
    • +
    • +Triangle-Wave Asymmetric PWM (Mode 3)
    Periodic Mode selection.
    Periodic: Generates periodic interrupts or square waves.
    @@ -241,9 +334,9 @@

    Configurations for Driver > Timers > Timer Driver on r_gpt

    Triangle-Wave Symmetric PWM: Generates symmetric PWM waveforms with duty cycle determined by compare match set during a crest interrupt and updated at the next trough.
    Triangle-Wave Asymmetric PWM: Generates asymmetric PWM waveforms with duty cycle determined by compare match set during a crest/trough interrupt and updated at the next trough/crest.
    General > Buffer ModeSingle BufferSingle Buffer This device only supports Single Buffer Mode.
    General > PeriodValue must be a non-negative integer less than or equal to 0x400000000001 Specify the timer period in units selected below. Setting the period to 0x100000000 raw counts results in the maximum period. Set the period to 0x100000000 raw counts for a free running timer or an input capture configuration. The period can be set up to 0x40000000000, which will use a divider of 1024 with the maximum period.
    General > PeriodValue must be a non-negative integer less than or equal to 0x400000000001 Specify the timer period in units selected below. Set the period to 0x100000000 (32-bit) or 0x10000 (16-bit) raw counts for a free running timer or an input capture configuration. The period can be set up to 0x40000000000 (32-bit) or 0x4000000 (16-bit) which will use a divider of 1024 with the maximum period.
    +
    +If the requested period cannot be achieved, the settings with the largest possible period that is less than or equal to the requested period are used. The theoretical calculated period is printed in a comment in the generated timer_cfg_t structure.
    General > Period Unit
    • @@ -263,6 +356,94 @@

      Configurations for Driver > Timers > Timer Driver on r_gpt

    Milliseconds Unit of the period specified above
    Output > Custom Waveform > GTIOA > Initial Output Level
      +
    • +Pin Level Low
    • +
    • +Pin Level High
    • +
    +
    Pin Level Low Set the initial output level of GTIOCxA.
    Output > Custom Waveform > GTIOA > Cycle End Output Level
      +
    • +Pin Level Retain
    • +
    • +Pin Level Low
    • +
    • +Pin Level High
    • +
    • +Pin Level Toggle
    • +
    +
    Pin Level Retain Set the output level of GTIOCxA at cycle end.
    Output > Custom Waveform > GTIOA > Compare Match Output Level
      +
    • +Pin Level Retain
    • +
    • +Pin Level Low
    • +
    • +Pin Level High
    • +
    • +Pin Level Toggle
    • +
    +
    Pin Level Retain Set the output level of GTIOCxA at compare match.
    Output > Custom Waveform > GTIOA > Retain Output Level at Count Stop
      +
    • +Disabled
    • +
    • +Enabled
    • +
    +
    Disabled Retain the current GTIOxA output level when counting is stopped.
    Output > Custom Waveform > GTIOB > Initial Output Level
      +
    • +Pin Level Low
    • +
    • +Pin Level High
    • +
    +
    Pin Level Low Set the initial output level of GTIOCxB.
    Output > Custom Waveform > GTIOB > Cycle End Output Level
      +
    • +Pin Level Retain
    • +
    • +Pin Level Low
    • +
    • +Pin Level High
    • +
    • +Pin Level Toggle
    • +
    +
    Pin Level Retain Set the output level of GTIOCxB at cycle end.
    Output > Custom Waveform > GTIOB > Compare Match Output Level
      +
    • +Pin Level Retain
    • +
    • +Pin Level Low
    • +
    • +Pin Level High
    • +
    • +Pin Level Toggle
    • +
    +
    Pin Level Retain Set the output level of GTIOCxB at compare match.
    Output > Custom Waveform > GTIOB > Retain Output Level at Count Stop
      +
    • +Disabled
    • +
    • +Enabled
    • +
    +
    Disabled Retain the current GTIOxB output level when counting is stopped.
    Output > Custom Waveform > Custom Waveform Enable
      +
    • +Disabled
    • +
    • +Enabled
    • +
    +
    Disabled Enable custom waveform configuration.
    Output > Duty Cycle Percent (only applicable in PWM mode)Value must be between 0 and 10050 Specify the timer duty cycle percent. Only used in PWM mode.
    Output > GTIOCA Output Enabled
      @@ -297,35 +478,35 @@

      Configurations for Driver > Timers > Timer Driver on r_gpt

    Pin Level Low Select the behavior of the output pin when the timer is stopped.
    Input > Count Up SourceMPU Specific OptionsSelect external source that will increment the counter. If any count up source is selected, the timer will count the external sources only. It will not count P0 clock cycles.
    Input > Count Up SourceMCU Specific OptionsSelect external source that will increment the counter. If any count up source is selected, the timer will count the external sources only. It will not count PCLKD cycles.
    Input > Count Down SourceMPU Specific OptionsSelect external source that will decrement the counter. If any count down source is selected, the timer will count the external sources only. It will not count P0 clock cycles.
    Input > Count Down SourceMCU Specific OptionsSelect external source that will decrement the counter. If any count down source is selected, the timer will count the external sources only. It will not count PCLKD cycles.
    Input > Start SourceMPU Specific OptionsSelect external source that will start the timer.
    +
    Input > Start SourceMCU Specific OptionsSelect external source that will start the timer.

    For pulse width measurement, set the Start Source and the Clear Source to the trigger edge (the edge to start the measurement), and set the Stop Source and Capture Source (either A or B) to the opposite edge (the edge to stop the measurement).

    For pulse period measurement, set the Start Source, the Clear Source, and the Capture Source (either A or B) to the trigger edge (the edge to start the measurement).
    Input > Stop SourceMPU Specific OptionsSelect external source that will stop the timer.
    Input > Stop SourceMCU Specific OptionsSelect external source that will stop the timer.
    Input > Clear SourceMPU Specific OptionsSelect external source that will clear the timer.
    Input > Clear SourceMCU Specific OptionsSelect external source that will clear the timer.
    Input > Capture A SourceMPU Specific OptionsSelect external source that will trigger a capture A event.
    Input > Capture A SourceMCU Specific OptionsSelect external source that will trigger a capture A event.
    Input > Capture B SourceMPU Specific OptionsSelect external source that will trigger a capture B event.
    Input > Capture B SourceMCU Specific OptionsSelect external source that will trigger a capture B event.
    Input > Noise Filter A Sampling Clock Select
    • No Filter
    • -Filter P0CLK / 1
    • +Filter CLK / 1
    • -Filter P0CLK / 4
    • +Filter CLK / 4
    • -Filter P0CLK / 16
    • +Filter CLK / 16
    • -Filter P0CLK / 64
    • +Filter CLK / 64
    No Filter Select the input filter for GTIOCA.
    No Filter Select the input filter for GTIOCB.
    Interrupts > CallbackName must be a valid C symbolNULL A user callback function can be specified here. If this callback function is provided, it will be called from the interrupt service routine (ISR) each time the timer period elapses
    Interrupts > Overflow/Crest Interrupt EnableMCU Specific OptionsEnable the Overflow/Crest Interrupt.
    Interrupts > Overflow/Crest Interrupt PriorityValue must be an integer between 0 and 2554 Select the overflow interrupt priority. This is the crest interrupt for triangle-wave PWM.
    Interrupts > Capture A Interrupt EnableMCU Specific OptionsEnable the Capture A Interrupt.
    Interrupts > Capture A Interrupt PriorityValue must be an integer between 0 and 2554 Select the interrupt priority for capture A.
    Interrupts > Capture B Interrupt EnableMCU Specific OptionsEnable the Capture B Interrupt.
    Interrupts > Capture B Interrupt PriorityValue must be an integer between 0 and 2554 Select the interrupt priority for capture B.
    Interrupts > Trough Interrupt PriorityValue must be an integer between 0 and 2554 Select the interrupt priority for the trough interrupt (triangle-wave PWM only).
    Interrupts > Underflow/Trough Interrupt EnableMCU Specific OptionsEnable the Underflow/Trough Interrupt.
    Interrupts > Underflow/Trough Interrupt PriorityValue must be an integer between 0 and 2554 Select the interrupt priority for the trough interrupt (triangle-wave PWM only).
    Interrupts > Dead Time Error Interrupt EnableMCU Specific OptionsEnable dead time error Interrupt.
    Interrupts > Dead Time Error Interrupt PriorityValue must be an integer between 0 and 2554 Select the interrupt priority for dead time error.
    Extra Features > Output Disable > POEG Link
    • @@ -474,7 +667,7 @@

      Configurations for Driver > Timers > Timer Driver on r_gpt

      Clock Configuration

      -

      The GPT clock is based on the P0 clock frequency. In RZ/V FSP, the clock frequency is depending on the setting of main core(Arm Cortex-A55). You must set the clock frequency which is same as the setting of main core using the Clocks tab of the Configuration editor.

      +

      The GPT clock is based on the peripheral clock frequency. You can set the peripheral clock frequency using the Clocks tab of the Configuration editor

      Pin Configuration

      This module can use GTETRGA, GTETRGB, GTETRGC, GTETRGD, GTIOCA and GTIOCB pins as count sources.

      @@ -482,7 +675,7 @@

      This module can use GTIOCA and GTIOCB as input pins to measure input signals.

      Usage Notes

      -

      Maximum Period for GPT32E

      +

      Maximum Period

      The Configuration editor will automatically calculate the period count value and source clock divider based on the selected period time, units and clock speed.

      When the selected period unit is "Raw counts", the maximum period setting is 0x40000000000 on a 32-bit timer. This will configure the timer with the maximum period and a count clock divisor of 1024.

      Note
      When manually changing the timer period counts the maximum value for a 32-bit GPT is 0x100000000. This number overflows the 32-bit value for timer_cfg_t::period_counts. To configure the timer for the maximum period, set timer_cfg_t::period_counts to 0.
      @@ -491,7 +684,7 @@

      Updating Period and Duty Cycle

      One-Shot Mode

      The GPT timer does not support one-shot mode natively. One-shot mode is achieved by stopping the timer in the interrupt service routine before the callback is called. If the interrupt is not serviced before the timer period expires again, the timer generates more than one event. The callback is only called once in this case.

      One-Shot Mode Output

      -

      The output waveform in one-shot mode is one P0 clock cycle less than the configured period. The configured period must be at least 2 counts to generate an output pulse.

      +

      The output waveform in one-shot mode is one peripheral clock cycle less than the configured period. The configured period must be at least 2 counts to generate an output pulse.

      Examples of one-shot signals that can be generated by this module are shown below:

      r_gpt_one_shot_output.svg @@ -517,6 +710,9 @@

      Triangle-Wave PWM Output

      r_gpt_triangle_wave_pwm_output.svg
      GPT Triangle-Wave PWM Output
      +

      Event Counting

      +

      Event counting can be done by selecting up or down counting sources from GTETRG pins, ELC events, or GTIOC pins. In event counting mode, the GPT counter is not affected by peripheral clock.

      +
      Note
      In event counting mode, the application must call R_GPT_Start() to enable event counting. The counter will not change after calling R_GPT_Start() until an event occurs.

      Pulse Measurement

      If the capture edge occurs before the start edge in pulse measurement, the first capture is invalid (0).

      Controlling GPT with GTETRG Edges

      @@ -524,6 +720,15 @@

      Controlling GPT with GTETRG Edges

      Note
      The GTETRG pins are shared by all GPT channels.
      GTETRG pins require POEG to be on (example code for this is provided in GPT Free Running Counter Example). If input filtering is required on the GTETRG pins, that must also be handled outside this module.
      +

      Controlling GPT with ELC Events

      +

      The GPT timer can be configured to stop, start, clear, count up, or count down when an ELC event occurs.

      +
      Note
      The configurable ELC GPT sources are shared by all GPT channels.
      +
      +The event links for the ELC must be configured outside this module.
      +

      Triggering ELC Events with GPT

      +

      The GPT timer can trigger the start of other peripherals. The Event Link Controller (r_elc) guide provides a list of all available peripherals.

      +

      Enabling External Sources for Start, Stop, Clear, or Capture

      +

      R_GPT_Enable() must be called when external sources are used for start, stop, clear, or capture.

      Interrupt Skipping

      When an interrupt skipping source is selected a hardware counter will increment each time the selected event occurs. Each interrupt past the first (up to the specified skip count) will be suppressed. If ADC events are selected for skipping they will also be suppressed except during the timer period leading to the selected interrupt skipping event (see below diagram).

      @@ -538,17 +743,21 @@

      GPT Basic Example

      This is an example of a timer callback.

      /* Example callback called when timer expires. */
      void timer_callback (timer_callback_args_t * p_args)
      {
      if (TIMER_EVENT_CYCLE_END == p_args->event)
      {
      /* Add application code to be called periodically here. */
      }
      }

      GPT Free Running Counter Example

      To use the GPT as a free running counter, select periodic mode and set the the Period to 0xFFFFFFFF for a 32-bit timer.

      -
      void gpt_counter_example (void)
      {
      fsp_err_t err = FSP_SUCCESS;
      /* (Optional) If event count mode is used to count edges on a GTETRG pin, POEG must be started to use GTETRG. */
      R_BSP_MODULE_START(FSP_IP_POEG, 0U);
      /* Initializes the module. */
      err = R_GPT_Open(&g_timer4_ctrl, &g_timer4_cfg);
      /* Handle any errors. This function should be defined by the user. */
      handle_error(err);
      /* Start the timer. */
      (void) R_GPT_Start(&g_timer4_ctrl);
      /* (Optional) Stop the timer. */
      (void) R_GPT_Stop(&g_timer4_ctrl);
      /* Read the current counter value. Counter value is in status.counter. */
      (void) R_GPT_StatusGet(&g_timer4_ctrl, &status);
      }

      GPT Input Capture Example

      +
      void gpt_counter_example (void)
      {
      fsp_err_t err = FSP_SUCCESS;
      /* (Optional) If event count mode is used to count edges on a GTETRG pin, POEG must be started to use GTETRG. */
      /* Initializes the module. */
      err = R_GPT_Open(&g_timer4_ctrl, &g_timer4_cfg);
      /* Handle any errors. This function should be defined by the user. */
      handle_error(err);
      /* Start the timer. */
      (void) R_GPT_Start(&g_timer4_ctrl);
      /* (Optional) Stop the timer. */
      (void) R_GPT_Stop(&g_timer4_ctrl);
      /* Read the current counter value. Counter value is in status.counter. */
      (void) R_GPT_StatusGet(&g_timer4_ctrl, &status);
      }

      GPT Input Capture Example

      This is an example of using the GPT to capture pulse width or pulse period measurements.

      /* Example callback called when a capture occurs. */
      uint64_t g_captured_time = 0U;
      uint32_t g_capture_overflows = 0U;
      void timer_capture_callback (timer_callback_args_t * p_args)
      {
      if ((TIMER_EVENT_CAPTURE_A == p_args->event) || (TIMER_EVENT_CAPTURE_B == p_args->event))
      {
      /* (Optional) Get the current period if not known. */
      (void) R_GPT_InfoGet(&g_timer4_ctrl, &info);
      uint64_t period = info.period_counts;
      /* The maximum period is one more than the maximum 32-bit number, but will be reflected as 0 in
      * timer_info_t::period_counts. */
      if (0U == period)
      {
      period = UINT32_MAX + 1U;
      }
      g_captured_time = (period * g_capture_overflows) + p_args->capture;
      g_capture_overflows = 0U;
      }
      if (TIMER_EVENT_CYCLE_END == p_args->event)
      {
      /* An overflow occurred during capture. This must be accounted for at the application layer. */
      g_capture_overflows++;
      }
      }
      void gpt_capture_example (void)
      {
      fsp_err_t err = FSP_SUCCESS;
      /* Initializes the module. */
      err = R_GPT_Open(&g_timer4_ctrl, &g_timer4_cfg);
      /* Handle any errors. This function should be defined by the user. */
      handle_error(err);
      /* Enable captures. Captured values arrive in the interrupt. */
      (void) R_GPT_Enable(&g_timer4_ctrl);
      /* (Optional) Disable captures. */
      (void) R_GPT_Disable(&g_timer4_ctrl);
      }

      GPT Period Update Example

      This an example of updating the period.

      -
      #define GPT_EXAMPLE_MSEC_PER_SEC (1000)
      #define GPT_EXAMPLE_DESIRED_PERIOD_MSEC (20)
      /* This example shows how to calculate a new period value at runtime. */
      void gpt_period_calculation_example (void)
      {
      fsp_err_t err = FSP_SUCCESS;
      /* Initializes the module. */
      err = R_GPT_Open(&g_timer0_ctrl, &g_timer0_cfg);
      /* Handle any errors. This function should be defined by the user. */
      handle_error(err);
      /* Start the timer. */
      (void) R_GPT_Start(&g_timer0_ctrl);
      /* Get the source clock frequency (in Hz). There are 3 ways to do this in FSP:
      * - Use the R_GPT_InfoGet function (it accounts for the divider).
      * - Calculate the current P0 clock frequency using R_FSP_SystemClockHzGet(FSP_PRIV_CLOCK_P0CLK) and right shift
      * by timer_cfg_t::source_div.
      *
      * This example uses the 2nd option (R_FSP_SystemClockHzGet).
      */
      uint32_t pclkd_freq_hz = R_FSP_SystemClockHzGet(FSP_PRIV_CLOCK_P0CLK) >> g_timer4_cfg.source_div;
      /* Calculate the desired period based on the current clock. Note that this calculation could overflow if the
      * desired period is larger than UINT32_MAX / pclkd_freq_hz. A cast to uint64_t is used to prevent this. */
      uint32_t period_counts =
      (uint32_t) (((uint64_t) pclkd_freq_hz * GPT_EXAMPLE_DESIRED_PERIOD_MSEC) / GPT_EXAMPLE_MSEC_PER_SEC);
      /* Set the calculated period. */
      err = R_GPT_PeriodSet(&g_timer0_ctrl, period_counts);
      handle_error(err);
      }

      GPT Duty Cycle Update Example

      +
      #define GPT_EXAMPLE_MSEC_PER_SEC (1000)
      #define GPT_EXAMPLE_DESIRED_PERIOD_MSEC (20)
      /* This example shows how to calculate a new period value at runtime. */
      void gpt_period_calculation_example (void)
      {
      fsp_err_t err = FSP_SUCCESS;
      /* Initializes the module. */
      err = R_GPT_Open(&g_timer0_ctrl, &g_timer0_cfg);
      /* Handle any errors. This function should be defined by the user. */
      handle_error(err);
      /* Start the timer. */
      (void) R_GPT_Start(&g_timer0_ctrl);
      /* Get the source clock frequency (in Hz). There are 3 ways to do this in FSP:
      * - Use the R_GPT_InfoGet function (it accounts for the divider).
      * - Calculate the current PCLKD frequency using R_FSP_SystemClockHzGet(FSP_PRIV_CLOCK_GPTCLK) and right shift
      * by timer_cfg_t::source_div.
      *
      * This example uses the 2nd option (R_FSP_SystemClockHzGet).
      */
      uint32_t pclkd_freq_hz = R_FSP_SystemClockHzGet(FSP_PRIV_CLOCK_GPTCLK) >> g_timer4_cfg.source_div;
      /* Calculate the desired period based on the current clock. Note that this calculation could overflow if the
      * desired period is larger than UINT32_MAX / pclkd_freq_hz. A cast to uint64_t is used to prevent this. */
      uint32_t period_counts =
      (uint32_t) (((uint64_t) pclkd_freq_hz * GPT_EXAMPLE_DESIRED_PERIOD_MSEC) / GPT_EXAMPLE_MSEC_PER_SEC);
      /* Set the calculated period. */
      err = R_GPT_PeriodSet(&g_timer0_ctrl, period_counts);
      handle_error(err);
      }

      GPT Duty Cycle Update Example

      This an example of updating the duty cycle.

      -
      #define GPT_EXAMPLE_DESIRED_DUTY_CYCLE_PERCENT (25)
      #define GPT_EXAMPLE_MAX_PERCENT (100)
      /* This example shows how to calculate a new duty cycle value at runtime. */
      void gpt_duty_cycle_calculation_example (void)
      {
      fsp_err_t err = FSP_SUCCESS;
      /* Initializes the module. */
      err = R_GPT_Open(&g_timer4_ctrl, &g_timer4_cfg);
      /* Handle any errors. This function should be defined by the user. */
      handle_error(err);
      /* Start the timer. */
      (void) R_GPT_Start(&g_timer4_ctrl);
      /* Get the current period setting. */
      (void) R_GPT_InfoGet(&g_timer4_ctrl, &info);
      uint32_t current_period_counts = info.period_counts;
      /* Calculate the desired duty cycle based on the current period. Note that if the period could be larger than
      * UINT32_MAX / 100, this calculation could overflow. A cast to uint64_t is used to prevent this. */
      uint32_t duty_cycle_counts =
      (uint32_t) (((uint64_t) current_period_counts * GPT_EXAMPLE_DESIRED_DUTY_CYCLE_PERCENT) /
      GPT_EXAMPLE_MAX_PERCENT);
      /* Set the calculated duty cycle. */
      err = R_GPT_DutyCycleSet(&g_timer4_ctrl, duty_cycle_counts, GPT_IO_PIN_GTIOCB);
      handle_error(err);
      }
      +
      #define GPT_EXAMPLE_DESIRED_DUTY_CYCLE_PERCENT (25)
      #define GPT_EXAMPLE_MAX_PERCENT (100)
      /* This example shows how to calculate a new duty cycle value at runtime. */
      void gpt_duty_cycle_calculation_example (void)
      {
      fsp_err_t err = FSP_SUCCESS;
      /* Initializes the module. */
      err = R_GPT_Open(&g_timer4_ctrl, &g_timer4_cfg);
      /* Handle any errors. This function should be defined by the user. */
      handle_error(err);
      /* Start the timer. */
      (void) R_GPT_Start(&g_timer4_ctrl);
      /* Get the current period setting. */
      (void) R_GPT_InfoGet(&g_timer4_ctrl, &info);
      uint32_t current_period_counts = info.period_counts;
      /* Calculate the desired duty cycle based on the current period. Note that if the period could be larger than
      * UINT32_MAX / 100, this calculation could overflow. A cast to uint64_t is used to prevent this. */
      uint32_t duty_cycle_counts =
      (uint32_t) (((uint64_t) current_period_counts * GPT_EXAMPLE_DESIRED_DUTY_CYCLE_PERCENT) /
      GPT_EXAMPLE_MAX_PERCENT);
      /* Set the calculated duty cycle. */
      err = R_GPT_DutyCycleSet(&g_timer4_ctrl, duty_cycle_counts, GPT_IO_PIN_GTIOCB);
      handle_error(err);
      }

      GPT A/D Converter Start Request Example

      +

      This is an example of using the GPT to start the ADC at a configurable A/D converter compare match value.

      +
      /* This example shows how to configure the GPT to generate an A/D start request at an A/D start request compare
      * match value. */
      void gpt_adc_start_request_example (void)
      {
      fsp_err_t err = FSP_SUCCESS;
      /* Initializes the module. */
      err = R_ADC_E_Open(&g_adc0_ctrl, &g_adc0_cfg);
      /* Handle any errors. This function should be defined by the user. */
      handle_error(err);
      /* Enable channels. */
      err = R_ADC_E_ScanCfg(&g_adc0_ctrl, &g_adc0_channel_cfg);
      assert(FSP_SUCCESS == err);
      (void) R_ADC_E_ScanStart(&g_adc0_ctrl);
      /* Initializes the GPT module. Configure gpt_extended_pwm_cfg_t::adc_trigger to set when the A/D start request
      * is generated. Set gpt_extended_pwm_cfg_t::adc_a_compare_match to set the desired compare match value. */
      err = R_GPT_Open(&g_timer3_ctrl, &g_timer3_cfg);
      /* Start the timer. A/D converter start request events are generated each time the counter is equal to the
      * A/D start request compare match value. */
      (void) R_GPT_Start(&g_timer3_ctrl);
      }
      + + @@ -560,6 +769,8 @@

      GPT Basic Example

      Enumerations + + @@ -584,6 +795,10 @@

      GPT Basic Example

      + + + +

      Data Structures

      struct  gpt_output_pin_t
       
      struct  gpt_gtior_setting_t
       
      struct  gpt_instance_ctrl_t
       
      struct  gpt_extended_pwm_cfg_t
      enum  gpt_io_pin_t
       
      enum  gpt_buffer_force_push
       
      enum  gpt_pin_level_t
       
      enum  gpt_source_t
       
      enum  gpt_buffer_mode_t
       
      enum  gpt_pwm_output_delay_setting_t
       
      enum  gpt_pwm_output_delay_edge_t
       

      Data Structure Documentation

      @@ -614,6 +829,21 @@

      gpt_pin_level_t.

    +
    +
    + +

    ◆ gpt_gtior_setting_t

    + +
    +
    + + + + +
    struct gpt_gtior_setting_t
    +
    +

    Custom GTIOR settings used for configuring GTIOCxA and GTIOCxB pins.

    +
    @@ -760,12 +990,6 @@

    Configuration for GPT I/O pin B. -gpt_shortest_level_t - -shortest_pwm_signal - - - gpt_source_t start_source @@ -834,6 +1058,12 @@

    Capture B interrupt priority. +uint8_t + +dead_time_ipl + +Dead time error interrupt priority. + IRQn_Type capture_a_irq @@ -846,11 +1076,23 @@

    Capture B interrupt. +IRQn_Type + +dead_time_irq + +Dead time error interrupt. + gpt_extended_pwm_cfg_t const * p_pwm_cfg Advanced PWM features, optional. + +gpt_gtior_setting_t + +gtior_setting + +Custom GTIOR settings used for configuring GTIOCxA and GTIOCxB pins.

    @@ -875,6 +1117,33 @@

    GPT_IO_PIN_GTIOCA_AND_GTIOCB 

    GTIOCA and GTIOCB.

    +GPT_IO_PIN_TROUGH 

    Used in R_GPT_DutyCycleSet when Triangle-wave PWM Mode 3 is selected.

    + +GPT_IO_PIN_CREST 

    Used in R_GPT_DutyCycleSet when Triangle-wave PWM Mode 3 is selected.

    + +GPT_IO_PIN_ONE_SHOT_LEADING_EDGE 

    Used in R_GPT_DutyCycleSet to set GTCCRC and GTCCRE registers when One-Shot Pulse mode is selected.

    + +GPT_IO_PIN_ONE_SHOT_TRAILING_EDGE 

    Used in R_GPT_DutyCycleSet to set GTCCRD and GTCCRF registers when One-Shot Pulse mode is selected.

    + + + +

    +

    + +

    ◆ gpt_buffer_force_push

    + +
    +
    + + + + +
    enum gpt_buffer_force_push
    +
    +

    Forced buffer push operation used in One-Sot Pulse mode with R_GPT_DutyCycleSet().

    + +
    Enumerator
    GPT_BUFFER_FORCE_PUSH 

    Used in R_GPT_DutyCycleSet to force push the data from GTCCRn registers to temporary buffer A or B when One-Shot Pulse mode is selected.

    +
    @@ -913,39 +1182,121 @@

    Sources can be used to start the timer, stop the timer, count up, or count down. These enumerations represent a bitmask. Multiple sources can be ORed together.

    - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Enumerator
    GPT_SOURCE_NONE 

    No active event sources.

    +
    Enumerator
    GPT_SOURCE_NONE 

    No active event sources.

    +
    GPT_SOURCE_GTETRGA_RISING 

    Action performed on GTETRGA rising edge.

    +
    GPT_SOURCE_GTETRGA_FALLING 

    Action performed on GTETRGA falling edge.

    +
    GPT_SOURCE_GTETRGB_RISING 

    Action performed on GTETRGB rising edge.

    +
    GPT_SOURCE_GTETRGB_FALLING 

    Action performed on GTETRGB falling edge.

    +
    GPT_SOURCE_GTETRGC_RISING 

    Action performed on GTETRGC rising edge.

    +
    GPT_SOURCE_GTETRGC_FALLING 

    Action performed on GTETRGC falling edge.

    +
    GPT_SOURCE_GTETRGD_RISING 

    Action performed on GTETRGB rising edge.

    +
    GPT_SOURCE_GTETRGD_FALLING 

    Action performed on GTETRGB falling edge.

    +
    GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW 

    Action performed when GTIOCA input rises while GTIOCB is low.

    +
    GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH 

    Action performed when GTIOCA input rises while GTIOCB is high.

    +
    GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW 

    Action performed when GTIOCA input falls while GTIOCB is low.

    +
    GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH 

    Action performed when GTIOCA input falls while GTIOCB is high.

    +
    GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW 

    Action performed when GTIOCB input rises while GTIOCA is low.

    +
    GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH 

    Action performed when GTIOCB input rises while GTIOCA is high.

    GPT_SOURCE_GTETRGA_RISING 

    Action performed on GTETRGA rising edge.

    +
    GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW 

    Action performed when GTIOCB input falls while GTIOCA is low.

    GPT_SOURCE_GTETRGA_FALLING 

    Action performed on GTETRGA falling edge.

    +
    GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH 

    Action performed when GTIOCB input falls while GTIOCA is high.

    GPT_SOURCE_GTETRGB_RISING 

    Action performed on GTETRGB rising edge.

    +
    GPT_SOURCE_GPT_A 

    Action performed on ELC GPTA event.

    GPT_SOURCE_GTETRGB_FALLING 

    Action performed on GTETRGB falling edge.

    +
    GPT_SOURCE_GPT_B 

    Action performed on ELC GPTB event.

    GPT_SOURCE_GTETRGC_RISING 

    Action performed on GTETRGC rising edge.

    +
    GPT_SOURCE_GPT_C 

    Action performed on ELC GPTC event.

    GPT_SOURCE_GTETRGC_FALLING 

    Action performed on GTETRGC falling edge.

    +
    GPT_SOURCE_GPT_D 

    Action performed on ELC GPTD event.

    GPT_SOURCE_GTETRGD_RISING 

    Action performed on GTETRGB rising edge.

    +
    GPT_SOURCE_GPT_E 

    Action performed on ELC GPTE event.

    GPT_SOURCE_GTETRGD_FALLING 

    Action performed on GTETRGB falling edge.

    +
    GPT_SOURCE_GPT_F 

    Action performed on ELC GPTF event.

    GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW 

    Action performed when GTIOCA input rises while GTIOCB is low.

    +
    GPT_SOURCE_GPT_G 

    Action performed on ELC GPTG event.

    GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH 

    Action performed when GTIOCA input rises while GTIOCB is high.

    +
    GPT_SOURCE_GPT_H 

    Action performed on ELC GPTH event.

    GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW 

    Action performed when GTIOCA input falls while GTIOCB is low.

    +
    GPT_SOURCE_NONE 

    No active event sources.

    GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH 

    Action performed when GTIOCA input falls while GTIOCB is high.

    +
    GPT_SOURCE_GTETRGA_RISING 

    Action performed on GTETRGA rising edge.

    GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW 

    Action performed when GTIOCB input rises while GTIOCA is low.

    +
    GPT_SOURCE_GTETRGA_FALLING 

    Action performed on GTETRGA falling edge.

    GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH 

    Action performed when GTIOCB input rises while GTIOCA is high.

    +
    GPT_SOURCE_GTETRGB_RISING 

    Action performed on GTETRGB rising edge.

    GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW 

    Action performed when GTIOCB input falls while GTIOCA is low.

    +
    GPT_SOURCE_GTETRGB_FALLING 

    Action performed on GTETRGB falling edge.

    GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH 

    Action performed when GTIOCB input falls while GTIOCA is high.

    +
    GPT_SOURCE_GTETRGC_RISING 

    Action performed on GTETRGC rising edge.

    +
    GPT_SOURCE_GTETRGC_FALLING 

    Action performed on GTETRGC falling edge.

    +
    GPT_SOURCE_GTETRGD_RISING 

    Action performed on GTETRGB rising edge.

    +
    GPT_SOURCE_GTETRGD_FALLING 

    Action performed on GTETRGB falling edge.

    +
    GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW 

    Action performed when GTIOCA input rises while GTIOCB is low.

    +
    GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH 

    Action performed when GTIOCA input rises while GTIOCB is high.

    +
    GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW 

    Action performed when GTIOCA input falls while GTIOCB is low.

    +
    GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH 

    Action performed when GTIOCA input falls while GTIOCB is high.

    +
    GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW 

    Action performed when GTIOCB input rises while GTIOCA is low.

    +
    GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH 

    Action performed when GTIOCB input rises while GTIOCA is high.

    +
    GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW 

    Action performed when GTIOCB input falls while GTIOCA is low.

    +
    GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH 

    Action performed when GTIOCB input falls while GTIOCA is high.

    +
    GPT_SOURCE_GPT0_ACT0 

    Action performed on ELC GPT0 (A) event.

    +
    GPT_SOURCE_GPT0_ACT1 

    Action performed on ELC GPT0 (B) event.

    +
    GPT_SOURCE_GPT0_ACT2 

    Action performed on ELC GPT0 (C) event.

    +
    GPT_SOURCE_GPT0_ACT3 

    Action performed on ELC GPT0 (D) event.

    +
    GPT_SOURCE_GPT0_ACT4 

    Action performed on ELC GPT0 (E) event.

    +
    GPT_SOURCE_GPT0_ACT5 

    Action performed on ELC GPT0 (F) event.

    +
    GPT_SOURCE_GPT0_ACT6 

    Action performed on ELC GPT0 (G) event.

    +
    GPT_SOURCE_GPT0_ACT7 

    Action performed on ELC GPT0 (H) event.

    +
    GPT_SOURCE_GPT1_ACT0 

    Action performed on ELC GPT1 (A) event.

    +
    GPT_SOURCE_GPT1_ACT1 

    Action performed on ELC GPT1 (B) event.

    +
    GPT_SOURCE_GPT1_ACT2 

    Action performed on ELC GPT1 (C) event.

    +
    GPT_SOURCE_GPT1_ACT3 

    Action performed on ELC GPT1 (D) event.

    +
    GPT_SOURCE_GPT1_ACT4 

    Action performed on ELC GPT1 (E) event.

    +
    GPT_SOURCE_GPT1_ACT5 

    Action performed on ELC GPT1 (F) event.

    +
    GPT_SOURCE_GPT1_ACT6 

    Action performed on ELC GPT1 (G) event.

    +
    GPT_SOURCE_GPT1_ACT7 

    Action performed on ELC GPT1 (H) event.

    @@ -966,13 +1317,13 @@

    EnumeratorGPT_CAPTURE_FILTER_NONE 

    None - no filtering.

    -GPT_CAPTURE_FILTER_P0CLK_DIV_1 

    P0CLK/1 - fast sampling.

    +GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_1 

    CLK/1 - fast sampling.

    -GPT_CAPTURE_FILTER_P0CLK_DIV_4 

    P0CLK/4.

    +GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_4 

    CLK/4.

    -GPT_CAPTURE_FILTER_P0CLK_DIV_16 

    P0CLK/16.

    +GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_16 

    CLK/16.

    -GPT_CAPTURE_FILTER_P0CLK_DIV_64 

    P0CLK/64 - slow sampling.

    +GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_64 

    CLK/64 - slow sampling.

    @@ -1203,6 +1554,110 @@

    +

    ◆ gpt_pwm_output_delay_setting_t

    + +
    +
    +

    Delay setting for the PWM Delay Generation Circuit (PDG).

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Enumerator
    GPT_PWM_OUTPUT_DELAY_SETTING_0_32 

    Delay is not applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_1_32 

    Delay of 1 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_2_32 

    Delay of 2 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_3_32 

    Delay of 3 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_4_32 

    Delay of 4 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_5_32 

    Delay of 5 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_6_32 

    Delay of 6 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_7_32 

    Delay of 7 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_8_32 

    Delay of 8 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_9_32 

    Delay of 9 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_10_32 

    Delay of 10 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_11_32 

    Delay of 11 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_12_32 

    Delay of 12 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_13_32 

    Delay of 13 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_14_32 

    Delay of 14 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_15_32 

    Delay of 15 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_16_32 

    Delay of 16 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_17_32 

    Delay of 17 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_18_32 

    Delay of 18 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_19_32 

    Delay of 19 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_20_32 

    Delay of 20 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_21_32 

    Delay of 21 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_22_32 

    Delay of 22 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_23_32 

    Delay of 23 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_24_32 

    Delay of 24 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_25_32 

    Delay of 25 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_26_32 

    Delay of 26 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_27_32 

    Delay of 27 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_28_32 

    Delay of 28 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_29_32 

    Delay of 29 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_30_32 

    Delay of 30 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_31_32 

    Delay of 31 / 32 GTCLK period applied.

    +
    GPT_PWM_OUTPUT_DELAY_SETTING_BYPASS 

    Bypass the PWM Output Delay Circuit.

    +
    + +
    +
    + +

    ◆ gpt_pwm_output_delay_edge_t

    + +
    +
    + + + + +
    enum gpt_pwm_output_delay_edge_t
    +
    +

    Select which PWM Output Delay setting to apply.

    + + + +
    Enumerator
    GPT_PWM_OUTPUT_DELAY_EDGE_RISING 

    Configure the PWM Output Delay setting for rising edge.

    +
    GPT_PWM_OUTPUT_DELAY_EDGE_FALLING 

    Configure the PWM Output Delay setting for falling edge.

    +
    +

    Function Documentation

    @@ -1240,7 +1695,7 @@

    FSP_ERR_ASSERTIONA required input pointer is NULL or the source divider is invalid. FSP_ERR_ALREADY_OPENModule is already open. FSP_ERR_IRQ_BSP_DISABLEDtimer_cfg_t::mode is TIMER_MODE_ONE_SHOT or timer_cfg_t::p_callback is not NULL, but ISR is not enabled. ISR must be enabled to use one-shot mode or callback. - FSP_ERR_INVALID_MODETriangle wave PWM is only supported if GPT_CFG_OUTPUT_SUPPORT_ENABLE is 2. + FSP_ERR_INVALID_MODETriangle wave PWM is only supported if GPT_CFG_OUTPUT_SUPPORT_ENABLE is 2. Selected channel does not support external count sources. External and event count sources not are available in this mode. FSP_ERR_IP_CHANNEL_NOT_PRESENTThe channel requested in the p_cfg parameter is not available on this device. @@ -1470,6 +1925,7 @@

    FSP_ERR_ASSERTIONp_ctrl was NULL or the pin is not one of gpt_io_pin_t FSP_ERR_NOT_OPENThe instance is not opened. FSP_ERR_INVALID_ARGUMENTDuty cycle is larger than period. + FSP_ERR_INVALID_MODEGPT_IO_PIN_TROUGH, and GPT_IO_PIN_CREST settings are invalid in the this mode. FSP_ERR_UNSUPPORTEDGPT_CFG_OUTPUT_SUPPORT_ENABLE is 0. @@ -1705,6 +2161,59 @@

    +

    ◆ R_GPT_PwmOutputDelaySet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_GPT_PwmOutputDelaySet (timer_ctrl_t *const p_ctrl,
    gpt_pwm_output_delay_edge_t edge,
    gpt_pwm_output_delay_setting_t delay_setting,
    uint32_t const pin 
    )
    +
    +

    Set the Output Delay setting for the PWM output pin.

    +
    Return values
    + + + + + + + + +
    FSP_SUCCESSThe output delay was set.
    FSP_ERR_ASSERTIONAn input parameter was invalid.
    FSP_ERR_NOT_OPENThe instance is not opened.
    FSP_ERR_INVALID_CHANNELThe channel does not support this feature.
    FSP_ERR_NOT_INITIALIZEDThe PWM Output Delay Circuit has not been initialized.
    FSP_ERR_INVALID_STATEThe PWM Output Delay setting cannot be updated in the current state.
    FSP_ERR_UNSUPPORTEDThis feature is not supported on this MCU.
    +
    +
    +
    @@ -1782,6 +2291,33 @@

    +

    ◆ R_GPT_PwmOutputDelayInitialize()

    + +
    +
    + + + + + + + +
    fsp_err_t R_GPT_PwmOutputDelayInitialize ()
    +
    +

    Initialize the PWM Delay Generation Circuit (PDG). This function must be called before calling R_GPT_PwmOutputDelaySet.

    +
    Note
    This function will delay for 20 microseconds.
    +
    Return values
    + + + + +
    FSP_SUCCESSInitialization sequence completed successfully.
    FSP_ERR_INVALID_STATEThe source clock frequnecy is out of the required range for the PDG.
    FSP_ERR_UNSUPPORTEDThis feature is not supported.
    +
    +
    +

    @@ -1790,7 +2326,7 @@

      - +

    diff --git a/group___g_p_t.js b/group___g_p_t.js index 0cb4b24..65f8d27 100644 --- a/group___g_p_t.js +++ b/group___g_p_t.js @@ -4,6 +4,7 @@ var group___g_p_t = [ "output_enabled", "group___g_p_t.html#a5f0b69cc2d3cfe89baefcf348563df21", null ], [ "stop_level", "group___g_p_t.html#a5805853871548d015520f71f3ab00e93", null ] ] ], + [ "gpt_gtior_setting_t", "group___g_p_t.html#structgpt__gtior__setting__t", null ], [ "gpt_instance_ctrl_t", "group___g_p_t.html#structgpt__instance__ctrl__t", null ], [ "gpt_extended_pwm_cfg_t", "group___g_p_t.html#structgpt__extended__pwm__cfg__t", [ [ "trough_ipl", "group___g_p_t.html#ad908895a31952a884009f3a63fdac8d0", null ], @@ -33,44 +34,95 @@ var group___g_p_t = [ "count_down_source", "group___g_p_t.html#a2ecf880963c441f20c3c8a2ac7a854ea", null ], [ "capture_a_ipl", "group___g_p_t.html#a7e5402bac34e2c3d3006b68ee0b8ab2a", null ], [ "capture_b_ipl", "group___g_p_t.html#aae4ebebdd346531add1c9ce3bee52106", null ], + [ "dead_time_ipl", "group___g_p_t.html#af0ca97f849a3dbbee00c59d75acb4bb0", null ], [ "capture_a_irq", "group___g_p_t.html#a630c77adb426ddddb5eac8b974fd7c85", null ], [ "capture_b_irq", "group___g_p_t.html#a22eb63abdf43064c9c83d81287c67c88", null ], - [ "p_pwm_cfg", "group___g_p_t.html#a55e5f85f57b77fd7ee5a1de7ff39da27", null ] + [ "dead_time_irq", "group___g_p_t.html#afbc788de7ed38b81ebb727b2c05d0525", null ], + [ "p_pwm_cfg", "group___g_p_t.html#a55e5f85f57b77fd7ee5a1de7ff39da27", null ], + [ "gtior_setting", "group___g_p_t.html#ad8b8b467339a151f016017d175df2f9c", null ] ] ], [ "gpt_io_pin_t", "group___g_p_t.html#gaabd4a03d16b1b4254cc44c7779f44c60", [ [ "GPT_IO_PIN_GTIOCA", "group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60aec2d2c471241869efb57a9a48a5d0eda", null ], [ "GPT_IO_PIN_GTIOCB", "group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60aebd74a7b9507fb082ec4cce60ebe9369", null ], - [ "GPT_IO_PIN_GTIOCA_AND_GTIOCB", "group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60a2b44d1e05050c34cc6e8d9ee4093294d", null ] + [ "GPT_IO_PIN_GTIOCA_AND_GTIOCB", "group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60a2b44d1e05050c34cc6e8d9ee4093294d", null ], + [ "GPT_IO_PIN_TROUGH", "group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60ac68b7e1ef5c48c55960faacd7eb538b9", null ], + [ "GPT_IO_PIN_CREST", "group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60acb3ba96929217eb6bb1ec5b2f1ccf9d4", null ], + [ "GPT_IO_PIN_ONE_SHOT_LEADING_EDGE", "group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60ae3e479af00c84f4ccf6e7376b4b44c8d", null ], + [ "GPT_IO_PIN_ONE_SHOT_TRAILING_EDGE", "group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60a59f7576cde98e497d35b98a926732e52", null ] + ] ], + [ "gpt_buffer_force_push", "group___g_p_t.html#ga8abd050b841fe99c9b641a22c69501c5", [ + [ "GPT_BUFFER_FORCE_PUSH", "group___g_p_t.html#gga8abd050b841fe99c9b641a22c69501c5a23c94706bd1a34c9f1b9cfffea30f4cc", null ] ] ], [ "gpt_pin_level_t", "group___g_p_t.html#ga454c639e426428470ce78115af5d3648", [ [ "GPT_PIN_LEVEL_LOW", "group___g_p_t.html#gga454c639e426428470ce78115af5d3648a3270f1165e7a86c5b12eecb9501390f4", null ], [ "GPT_PIN_LEVEL_HIGH", "group___g_p_t.html#gga454c639e426428470ce78115af5d3648adc8ebfd0f787322b884ca5d087b3a6a3", null ] ] ], [ "gpt_source_t", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196a", [ - [ "GPT_SOURCE_NONE", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aae376db52803d52361481b2384c3a3bd8", null ], - [ "GPT_SOURCE_GTETRGA_RISING", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa2ea3ebb2e30c10d0c5c087e198175220", null ], - [ "GPT_SOURCE_GTETRGA_FALLING", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aab4c7fdaf7cfdd2d3730525965e68c982", null ], - [ "GPT_SOURCE_GTETRGB_RISING", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa7af2b58b26be8c9b04ec5c31fdd66bab", null ], - [ "GPT_SOURCE_GTETRGB_FALLING", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aad01f879dc9132b0e05827cc7f4219a81", null ], - [ "GPT_SOURCE_GTETRGC_RISING", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa5daee2c8037bdc04a019192efdd8af09", null ], - [ "GPT_SOURCE_GTETRGC_FALLING", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaceecdd0276a5d1591246c1a2a294ddd3", null ], - [ "GPT_SOURCE_GTETRGD_RISING", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaaa3e97349fb24f8ba0a431392a92f95e", null ], - [ "GPT_SOURCE_GTETRGD_FALLING", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aad6f7ad7ca2dce583089104f23e27ed2c", null ], - [ "GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa1435f9ba57da19cfc255ea6f64ea7853", null ], - [ "GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaa03328ca033b8043537b813ecabe1c50", null ], - [ "GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa58b8714367e4bb5ec9eb6902c98fdb2e", null ], - [ "GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aab844b52adc17cebabf04603fa993f176", null ], - [ "GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa4b546eda998208d87d6da5d0ad2f927a", null ], - [ "GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaf6245811e4016299ba0acf0575389ba6", null ], - [ "GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa3c659f3a22223a65ffdc96524249eec7", null ], - [ "GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH", "group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa037a151c14fea20ef0530f5a995f99e5", null ] + [ "GPT_SOURCE_NONE", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aae376db52803d52361481b2384c3a3bd8", null ], + [ "GPT_SOURCE_GTETRGA_RISING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa2ea3ebb2e30c10d0c5c087e198175220", null ], + [ "GPT_SOURCE_GTETRGA_FALLING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab4c7fdaf7cfdd2d3730525965e68c982", null ], + [ "GPT_SOURCE_GTETRGB_RISING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7af2b58b26be8c9b04ec5c31fdd66bab", null ], + [ "GPT_SOURCE_GTETRGB_FALLING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad01f879dc9132b0e05827cc7f4219a81", null ], + [ "GPT_SOURCE_GTETRGC_RISING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa5daee2c8037bdc04a019192efdd8af09", null ], + [ "GPT_SOURCE_GTETRGC_FALLING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaceecdd0276a5d1591246c1a2a294ddd3", null ], + [ "GPT_SOURCE_GTETRGD_RISING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaaa3e97349fb24f8ba0a431392a92f95e", null ], + [ "GPT_SOURCE_GTETRGD_FALLING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad6f7ad7ca2dce583089104f23e27ed2c", null ], + [ "GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa1435f9ba57da19cfc255ea6f64ea7853", null ], + [ "GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa03328ca033b8043537b813ecabe1c50", null ], + [ "GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa58b8714367e4bb5ec9eb6902c98fdb2e", null ], + [ "GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab844b52adc17cebabf04603fa993f176", null ], + [ "GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa4b546eda998208d87d6da5d0ad2f927a", null ], + [ "GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaf6245811e4016299ba0acf0575389ba6", null ], + [ "GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa3c659f3a22223a65ffdc96524249eec7", null ], + [ "GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa037a151c14fea20ef0530f5a995f99e5", null ], + [ "GPT_SOURCE_GPT_A", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa8a81917a5ac9b747df42b174e5ae1ee6", null ], + [ "GPT_SOURCE_GPT_B", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7b3ab8f76f2a808dbace3ede3e3faf06", null ], + [ "GPT_SOURCE_GPT_C", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaeb63eaa38e2640b48259ddf029c27f54", null ], + [ "GPT_SOURCE_GPT_D", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa23869f7d7ae4b5d82dac3d2301959b9", null ], + [ "GPT_SOURCE_GPT_E", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaff70b0b5e755028cd77f859abb16fe06", null ], + [ "GPT_SOURCE_GPT_F", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa010a99aa6c4e838ac1bce47abcbe38e5", null ], + [ "GPT_SOURCE_GPT_G", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa51db9e1734d93f834b00868a9246db95", null ], + [ "GPT_SOURCE_GPT_H", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa19df9d1f4ee5e610a74642fc14a212a3", null ], + [ "GPT_SOURCE_NONE", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aae376db52803d52361481b2384c3a3bd8", null ], + [ "GPT_SOURCE_GTETRGA_RISING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa2ea3ebb2e30c10d0c5c087e198175220", null ], + [ "GPT_SOURCE_GTETRGA_FALLING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab4c7fdaf7cfdd2d3730525965e68c982", null ], + [ "GPT_SOURCE_GTETRGB_RISING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7af2b58b26be8c9b04ec5c31fdd66bab", null ], + [ "GPT_SOURCE_GTETRGB_FALLING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad01f879dc9132b0e05827cc7f4219a81", null ], + [ "GPT_SOURCE_GTETRGC_RISING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa5daee2c8037bdc04a019192efdd8af09", null ], + [ "GPT_SOURCE_GTETRGC_FALLING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaceecdd0276a5d1591246c1a2a294ddd3", null ], + [ "GPT_SOURCE_GTETRGD_RISING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaaa3e97349fb24f8ba0a431392a92f95e", null ], + [ "GPT_SOURCE_GTETRGD_FALLING", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad6f7ad7ca2dce583089104f23e27ed2c", null ], + [ "GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa1435f9ba57da19cfc255ea6f64ea7853", null ], + [ "GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa03328ca033b8043537b813ecabe1c50", null ], + [ "GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa58b8714367e4bb5ec9eb6902c98fdb2e", null ], + [ "GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab844b52adc17cebabf04603fa993f176", null ], + [ "GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa4b546eda998208d87d6da5d0ad2f927a", null ], + [ "GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaf6245811e4016299ba0acf0575389ba6", null ], + [ "GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa3c659f3a22223a65ffdc96524249eec7", null ], + [ "GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa037a151c14fea20ef0530f5a995f99e5", null ], + [ "GPT_SOURCE_GPT0_ACT0", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad0244ee6154cc4f48355fba3b0ccdd77", null ], + [ "GPT_SOURCE_GPT0_ACT1", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa9da09ff5cad371696a109a74ee0dc1ce", null ], + [ "GPT_SOURCE_GPT0_ACT2", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad0fa16e65ad15a166b4fa319fbeb80ad", null ], + [ "GPT_SOURCE_GPT0_ACT3", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa39e2ab9ce863edbf4bf639ec46db913b", null ], + [ "GPT_SOURCE_GPT0_ACT4", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa9ffb65a99521fcebfb3db2d31d44502d", null ], + [ "GPT_SOURCE_GPT0_ACT5", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aac7fdbcdd823ba55b00c647d518693382", null ], + [ "GPT_SOURCE_GPT0_ACT6", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa245bff8d720e94d00c4e61a5e3a172a7", null ], + [ "GPT_SOURCE_GPT0_ACT7", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aafd603c07d1f03e02659c92e6e8991341", null ], + [ "GPT_SOURCE_GPT1_ACT0", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa760dcf7503c7ca6b790b398622372599", null ], + [ "GPT_SOURCE_GPT1_ACT1", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa087fd01a23f8a61c4c04c9655d1fdbbe", null ], + [ "GPT_SOURCE_GPT1_ACT2", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa68f70eae7db74c62888d368d01dce62", null ], + [ "GPT_SOURCE_GPT1_ACT3", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa159f75f7237097f61a1b1fcc93a5db0b", null ], + [ "GPT_SOURCE_GPT1_ACT4", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa8acc300684e40644a6fc935903221a7b", null ], + [ "GPT_SOURCE_GPT1_ACT5", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aadbf5c5ffebe54747c212d082bdb888f0", null ], + [ "GPT_SOURCE_GPT1_ACT6", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa38a04d6c6afff6e35d872de818c6592d", null ], + [ "GPT_SOURCE_GPT1_ACT7", "group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7bc36dd829d3ab2b0748a9f7626388a8", null ] ] ], [ "gpt_capture_filter_t", "group___g_p_t.html#ga4781e2b42b2ef339318ea0a70b250cd5", [ [ "GPT_CAPTURE_FILTER_NONE", "group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a9b2d993dbb736347b473101f14c1fde6", null ], - [ "GPT_CAPTURE_FILTER_P0CLK_DIV_1", "group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5afbdc1a92e9b7d18e91ad7440144b022b", null ], - [ "GPT_CAPTURE_FILTER_P0CLK_DIV_4", "group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5aa30751bb9a5224fae95f55fd664c26e9", null ], - [ "GPT_CAPTURE_FILTER_P0CLK_DIV_16", "group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a89dfc5c48b1c33a2aec0382baa92d808", null ], - [ "GPT_CAPTURE_FILTER_P0CLK_DIV_64", "group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5ac7c1be27c3e25a2486b1368df7092e1d", null ] + [ "GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_1", "group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a01e1b277b55e4fafcb0c196099b51b5f", null ], + [ "GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_4", "group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5aced01a5e1d1ad4aa3f9235dcc503d655", null ], + [ "GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_16", "group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a1be3c4269df18da7b54a4b884d792c59", null ], + [ "GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_64", "group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a70176680620465fca73aeda240eb441a", null ] ] ], [ "gpt_adc_trigger_t", "group___g_p_t.html#ga6dfe4ddfb53ba52c674039fd20b6c2b6", [ [ "GPT_ADC_TRIGGER_NONE", "group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a2818f2fff3a64fd3086a7230dabd7a14", null ], @@ -127,6 +179,45 @@ var group___g_p_t = [ "GPT_BUFFER_MODE_SINGLE", "group___g_p_t.html#gga28d354e417a7a6666e0819387d8e7d8aa55d1a551ce5c866c2917374f34c9dad1", null ], [ "GPT_BUFFER_MODE_DOUBLE", "group___g_p_t.html#gga28d354e417a7a6666e0819387d8e7d8aaa04f95e24c83e681190e0553b33ef108", null ] ] ], + [ "gpt_pwm_output_delay_setting_t", "group___g_p_t.html#ga749be81f99469c5607a684976d9ae374", [ + [ "GPT_PWM_OUTPUT_DELAY_SETTING_0_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ae167098278c50165bf61eec5987d4c53", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_1_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a61477e753d166ccb25b77eced2e6f325", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_2_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a39fed861a0d36f04aa30f3f960e3d2d0", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_3_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a1f1aee9567a12196581000383e8d107b", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_4_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a8b235f3b68210961a821c11efa5bb205", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_5_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374af0aae115f89d76e4f3f48a0d36cf361b", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_6_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a5e6950d7178ff3af05f8f4932436b488", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_7_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a6984fb835233689f0aaebc39c5f9c000", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_8_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374acdb2fab565c1d8a20bdfb3822f326e81", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_9_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a0287632773cfa466bfa3016d67f14da5", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_10_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a196975439836e309f6244a8c0446f047", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_11_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a0198b5305a0a6853fc433ecf75d44f7f", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_12_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a1948c35883b0b199c8e6f89a64e53475", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_13_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a44d17777c6bee08909a70b95f86dc991", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_14_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a061a1822b878e73e25a3f5cc90ea0eea", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_15_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a8d827fe46b88273f1a3ecaafe74a6d72", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_16_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ac0195c74dd5aa183fe0ff13f3d037a47", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_17_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374abc73975b9e30401bbdbb7c5da506025b", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_18_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a95c8ef43442706c12c2ff0d94e1fb4da", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_19_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ac1341d99df3034c6cebc7d6885fc46b8", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_20_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ad781616613593d77ed681403590659e4", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_21_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a84dede23a60f4e4b02604d18a7e3c80a", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_22_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374aa29b8aeb45e93b8086d68f3ce7d60681", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_23_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374afa386802f529b7a1e6440335f29c0803", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_24_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a15baac27b4f36979352681a5b5969517", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_25_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ab000f412ff95dd16ff74748a96a305f8", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_26_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a03edb9eb3fdef9a37dbc4f44a077db5a", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_27_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a046f632a922738bb125dd671e28fc7d8", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_28_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ac9942874a382d4e1f171bcd74db0ac62", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_29_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a9a0fa3e6bcc2de24f85ef0b9a1b4d914", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_30_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a1aeb241069f6fc33d5b9043bf2870596", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_31_32", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a8d0ff19f209e9c72f76c20b23a00c7a2", null ], + [ "GPT_PWM_OUTPUT_DELAY_SETTING_BYPASS", "group___g_p_t.html#gga749be81f99469c5607a684976d9ae374af894b19d25eebc010ed5fc6ccea2cb29", null ] + ] ], + [ "gpt_pwm_output_delay_edge_t", "group___g_p_t.html#ga6a1389fe5c3bef2301d294b88263628e", [ + [ "GPT_PWM_OUTPUT_DELAY_EDGE_RISING", "group___g_p_t.html#gga6a1389fe5c3bef2301d294b88263628ea51901797e055f1ec3e4dbe96bff03086", null ], + [ "GPT_PWM_OUTPUT_DELAY_EDGE_FALLING", "group___g_p_t.html#gga6a1389fe5c3bef2301d294b88263628eab5c109cf3de710e61c90c3be2d72d9b7", null ] + ] ], [ "R_GPT_Open", "group___g_p_t.html#ga97d0a9c1a8fb6b88d1c12756dd8ce2d2", null ], [ "R_GPT_Stop", "group___g_p_t.html#ga1e6af74d7faaf735f5847a34121eff71", null ], [ "R_GPT_Start", "group___g_p_t.html#ga2769f9fda49613246bc84dba41aa4863", null ], @@ -141,6 +232,8 @@ var group___g_p_t = [ "R_GPT_OutputEnable", "group___g_p_t.html#ga0e6638508ec1d5441713195c877bb7a7", null ], [ "R_GPT_OutputDisable", "group___g_p_t.html#gae204e5d6c9305923e98724005dcdf03d", null ], [ "R_GPT_AdcTriggerSet", "group___g_p_t.html#ga311c91c55f20338f7082fa4369e7c80f", null ], + [ "R_GPT_PwmOutputDelaySet", "group___g_p_t.html#gaff2d30ece9bd30b5a9cc2117623834c6", null ], [ "R_GPT_CallbackSet", "group___g_p_t.html#ga2a09de185d3b7f1c301b33330931bac4", null ], - [ "R_GPT_Close", "group___g_p_t.html#ga2fc5d6a737a00948802e2bb77fbe8d8c", null ] + [ "R_GPT_Close", "group___g_p_t.html#ga2fc5d6a737a00948802e2bb77fbe8d8c", null ], + [ "R_GPT_PwmOutputDelayInitialize", "group___g_p_t.html#gada982ef1873ca00147f9692b42aba8f0", null ] ]; \ No newline at end of file diff --git a/group___g_t_m.html b/group___g_t_m.html index 9f1b4be..4cecb7a 100644 --- a/group___g_t_m.html +++ b/group___g_t_m.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: General Timer (r_gtm) +RZV Flexible Software Package Documentation: General Timer (r_gtm) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + + + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    General Timer (r_gtm)
    +
    General Timer (r_gtm)
    @@ -178,15 +246,15 @@

    Default (BSP) If selected code for parameter checking is included in the build.
    -

    Configurations for Driver > Timers > Timer Driver on r_gtm

    -This module can be added to the Stacks tab via New Stack > Driver > Timers > Timer Driver on r_gtm.
    +

    Configurations for Timers > Timer (r_gtm)

    +This module can be added to the Stacks tab via New Stack > Timers > Timer (r_gtm).

    - + +Valid input value range:
    +- When 'Raw Counts' is selected in 'Period Unit', set the value to 0x00000001~0x100000000
    +- When other item is selected in 'Period Unit', set the value to (1 / count clock) ~ (0x100000000 / count clock)
    +
    +If the input value is exceeded valid range, the ERROR will be shown in hal_data.c. - + @@ -273,7 +345,7 @@

    GTM Basic Example

    To use the GTM as a free running counter, select Free-Running Comparison Mode.

    void gtm_counter_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_GTM_Open(&g_timer_ctrl, &g_timer_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Start the timer. */
    (void) R_GTM_Start(&g_timer_ctrl);
    /* (Optional) Stop the timer. */
    (void) R_GTM_Stop(&g_timer_ctrl);
    /* Read the current counter value. Counter value is in status.counter. */
    (void) R_GTM_StatusGet(&g_timer_ctrl, &status);
    }

    GTM Period Update Example

    This is an example of updating the period.

    -
    #define GTM_EXAMPLE_MSEC_PER_SEC (1000)
    #define GTM_EXAMPLE_DESIRED_PERIOD_MSEC (20)
    /* This example shows how to calculate a new period value at runtime. */
    void gtm_period_calculation_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_GTM_Open(&g_timer_ctrl, &g_timer_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Start the timer. */
    (void) R_GTM_Start(&g_timer_ctrl);
    /* Get the source clock frequency (in Hz). There are several ways to do this in FSP:
    * - Use the R_GTM_InfoGet function (it accounts for the clock source and divider).
    * - Calculate the current P0 clock frequency using R_FSP_SystemClockHzGet(FSP_PRIV_CLOCK_P0CLK).
    *
    * This example uses the last option (R_FSP_SystemClockHzGet).
    */
    uint32_t timer_freq_hz = R_FSP_SystemClockHzGet(FSP_PRIV_CLOCK_P0CLK);
    /* Calculate the desired period based on the current clock. Note that this calculation could overflow if the
    * desired period is larger than UINT32_MAX / pclkb_freq_hz. A cast to uint64_t is used to prevent this. */
    uint32_t period_counts =
    (uint32_t) (((uint64_t) timer_freq_hz * gtm_EXAMPLE_DESIRED_PERIOD_MSEC) / gtm_EXAMPLE_MSEC_PER_SEC);
    /* Set the calculated period. */
    err = R_GTM_PeriodSet(&g_timer_ctrl, period_counts);
    assert(FSP_SUCCESS == err);
    }
    ConfigurationOptionsDefaultDescription
    General > NameName must be a valid C symbolg_timer0 Module name.
    General > ChannelChannel number does not exist0 Physical hardware channel.
    General > ChannelMCU Specific OptionsPhysical hardware channel.
    General > Mode
    • @@ -198,7 +266,11 @@

      Configurations for Driver > Timers > Timer Driver on r_gtm

    General > PeriodValue must be non-negative1 Specify the timer period based on the selected unit.

    -When the unit is set to 'Raw Counts', setting the period to 0x10000 results in the maximum period at the lowest divisor (fastest timer tick). Set the period to 0x10000 for a free running timer, pulse width measurement or pulse period measurement. Setting the period higher will automatically select a higher divider; the period can be set up to 0x80000 when counting from PCLKB or 0x800000 when counting from LOCO/subclock, which will use a divider of 8 or 128 respectively with the maximum period.
    General > Period Unit
    • @@ -218,7 +290,7 @@

      Configurations for Driver > Timers > Timer Driver on r_gtm

    Milliseconds Unit of the period specified above
    General > Count SourceP0CLKP0CLK GTM counter clock source. NOTE: The divisor is calculated automatically based on the selected period. See agt_count_source_t documentation for details.
    General > Count SourceMCU Specific OptionsGTM counter clock source. NOTE: The divisor is calculated automatically based on the selected period. See agt_count_source_t documentation for details.
    Interrupts > CallbackName must be a valid C symbolNULL A user callback function. If this callback function is provided, it is called from the interrupt service routine (ISR) each time the timer period elapses.
    +
    #define GTM_EXAMPLE_MSEC_PER_SEC (1000)
    #define GTM_EXAMPLE_DESIRED_PERIOD_MSEC (20)
    /* This example shows how to calculate a new period value at runtime. */
    void gtm_period_calculation_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_GTM_Open(&g_timer_ctrl, &g_timer_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Start the timer. */
    (void) R_GTM_Start(&g_timer_ctrl);
    /* Get the source clock frequency (in Hz). There are several ways to do this in FSP:
    * - Use the R_GTM_InfoGet function (it accounts for the clock source and divider).
    * - Calculate the current count clock frequency using R_FSP_SystemClockHzGet(BSP_FEATURE_GTM_SOURCE_CLOCK).
    *
    * This example uses the last option (R_FSP_SystemClockHzGet).
    */
    uint32_t timer_freq_hz = R_FSP_SystemClockHzGet(BSP_FEATURE_GTM_SOURCE_CLOCK);
    /* Calculate the desired period based on the current clock. Note that this calculation could overflow if the
    * desired period is larger than UINT32_MAX / pclkb_freq_hz. A cast to uint64_t is used to prevent this. */
    uint32_t period_counts =
    (uint32_t) (((uint64_t) timer_freq_hz * gtm_EXAMPLE_DESIRED_PERIOD_MSEC) / gtm_EXAMPLE_MSEC_PER_SEC);
    /* Set the calculated period. */
    err = R_GTM_PeriodSet(&g_timer_ctrl, period_counts);
    assert(FSP_SUCCESS == err);
    }
    @@ -771,7 +843,7 @@

      - +
    diff --git a/group___i2_c___m_a_s_t_e_r___a_p_i.html b/group___i2_c___m_a_s_t_e_r___a_p_i.html index 8a3837f..0cfabc3 100644 --- a/group___i2_c___m_a_s_t_e_r___a_p_i.html +++ b/group___i2_c___m_a_s_t_e_r___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: I2C Master Interface +RZV Flexible Software Package Documentation: I2C Master Interface @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Data Structures | @@ -107,7 +175,8 @@

  • Callback function support which can return an event code
  • Implemented by:

    Data Structures

    struct  gtm_instance_ctrl_t
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    External IRQ (r_intc_irq)
    +
    External IRQ (r_intc_irq)

    @@ -376,6 +445,7 @@

    Opens the I2C Master driver and initializes the hardware.

    Implemented as
    Parameters
    @@ -401,6 +471,7 @@

    Performs a read operation on an I2C Master device.

    Implemented as
    Parameters
    @@ -428,6 +499,7 @@

    Performs a write operation on an I2C Master device.

    Implemented as
    Parameters
    @@ -455,6 +527,7 @@

    Performs a reset of the peripheral.

    Implemented as
    Parameters
    @@ -479,6 +552,7 @@

    Sets address of the slave device without reconfiguring the bus.

    Implemented as
    Parameters
    @@ -505,11 +579,12 @@

    Specify callback function and optional context pointer and working memory pointer.

    Implemented as
    Parameters
    - + @@ -532,11 +607,12 @@

    Gets the status of the configured I2C device.

    Implemented as
    Parameters

    [in]p_ctrlPointer to the RIIC Master control block.
    [in]p_api_ctrlPointer to the IIC Master control block.
    [in]p_callbackCallback function
    [in]p_contextPointer to send to callback function
    [in]p_working_memoryPointer to volatile memory where callback structure can be allocated. Callback arguments allocated here are only valid during the callback.
    - +
    [in]p_ctrlPointer to the RIIC Master control block.
    [in]p_ctrlPointer to the IIC Master control block.
    [out]p_statusPointer to store current status.
    @@ -557,6 +633,7 @@

    Closes the driver and releases the I2C Master device.

    Implemented as
    Parameters
    @@ -700,7 +777,7 @@

      - +
    diff --git a/group___i2_c___s_l_a_v_e___a_p_i.html b/group___i2_c___s_l_a_v_e___a_p_i.html new file mode 100644 index 0000000..a6016b1 --- /dev/null +++ b/group___i2_c___s_l_a_v_e___a_p_i.html @@ -0,0 +1,670 @@ + + + + + + + +RZV Flexible Software Package Documentation: I2C Slave Interface + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +

    Detailed Description

    +

    Interface for I2C slave communication.

    +

    +Summary

    +

    The I2C slave interface provides a common API for I2C HAL drivers. The I2C slave interface supports:

      +
    • Interrupt driven transmit/receive processing
    • +
    • Callback function support which returns a event codes
    • +
    +

    Implemented by:

    + + + + + + + + + + +

    +Data Structures

    struct  i2c_slave_callback_args_t
     
    struct  i2c_slave_cfg_t
     
    struct  i2c_slave_api_t
     
    struct  i2c_slave_instance_t
     
    + + + +

    +Typedefs

    typedef void i2c_slave_ctrl_t
     
    + + + + + + + +

    +Enumerations

    enum  i2c_slave_rate_t
     
    enum  i2c_slave_addr_mode_t
     
    enum  i2c_slave_event_t
     
    +

    Data Structure Documentation

    + +

    ◆ i2c_slave_callback_args_t

    + +
    +
    + + + + +
    struct i2c_slave_callback_args_t
    +
    +

    I2C callback parameter definition

    +
    + + + + + + + + + + +
    Data Fields
    +void const * +p_context +Pointer to user-provided context.
    +uint32_t +bytes +Number of received/transmitted bytes in buffer.
    +i2c_slave_event_t +event +Event code.
    + +
    +
    + +

    ◆ i2c_slave_cfg_t

    + +
    +
    + + + + +
    struct i2c_slave_cfg_t
    +
    +

    I2C configuration block

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    uint8_t channel
     Identifier recognizable by implementation. More...
     
    +i2c_slave_rate_t rate
     Device's maximum clock rate from enum i2c_rate_t.
     
    +uint16_t slave
     The address of the slave device.
     
    +i2c_slave_addr_mode_t addr_mode
     Indicates how slave fields should be interpreted.
     
    +bool general_call_enable
     Allow a General call from master.
     
    +IRQn_Type rxi_irq
     Receive IRQ number.
     
    +IRQn_Type txi_irq
     Transmit IRQ number.
     
    +IRQn_Type tei_irq
     Transmit end IRQ number.
     
    +IRQn_Type eri_irq
     Error IRQ number.
     
    +uint8_t ipl
     Interrupt priority level for RXI, TXI and TER interrupts.
     
    +uint8_t eri_ipl
     Interrupt priority level for ERI interrupt.
     
    +bool clock_stretching_enable
     Low Hold SCL during reception for the period between the 9th and the 1st clock cycle.
     
    void(* p_callback )(i2c_slave_callback_args_t *p_args)
     Pointer to callback function. More...
     
    +void const * p_context
     Pointer to the user-provided context.
     
    void const * p_extend
     Any configuration data needed by the hardware. More...
     
    +

    Field Documentation

    + +

    ◆ channel

    + +
    +
    + + + + +
    uint8_t i2c_slave_cfg_t::channel
    +
    + +

    Identifier recognizable by implementation.

    +

    Generic configuration

    + +
    +
    + +

    ◆ p_callback

    + +
    +
    + + + + +
    void(* i2c_slave_cfg_t::p_callback) (i2c_slave_callback_args_t *p_args)
    +
    + +

    Pointer to callback function.

    +

    Parameters to control software behavior

    + +
    +
    + +

    ◆ p_extend

    + +
    +
    + + + + +
    void const* i2c_slave_cfg_t::p_extend
    +
    + +

    Any configuration data needed by the hardware.

    +

    Implementation-specific configuration

    + +
    +
    + +
    +
    + +

    ◆ i2c_slave_api_t

    + +
    +
    + + + + +
    struct i2c_slave_api_t
    +
    +

    Interface definition for I2C access as slave

    +
    + + + + + + + + + + + +

    Data Fields

    fsp_err_t(* open )(i2c_slave_ctrl_t *const p_ctrl, i2c_slave_cfg_t const *const p_cfg)
     
    fsp_err_t(* read )(i2c_slave_ctrl_t *const p_ctrl, uint8_t *const p_dest, uint32_t const bytes)
     
    fsp_err_t(* write )(i2c_slave_ctrl_t *const p_ctrl, uint8_t *const p_src, uint32_t const bytes)
     
    fsp_err_t(* callbackSet )(i2c_slave_ctrl_t *const p_api_ctrl, void(*p_callback)(i2c_slave_callback_args_t *), void const *const p_context, i2c_slave_callback_args_t *const p_callback_memory)
     
    fsp_err_t(* close )(i2c_slave_ctrl_t *const p_ctrl)
     
    +

    Field Documentation

    + +

    ◆ open

    + +
    +
    + + + + +
    fsp_err_t(* i2c_slave_api_t::open) (i2c_slave_ctrl_t *const p_ctrl, i2c_slave_cfg_t const *const p_cfg)
    +
    +

    Opens the I2C Slave driver and initializes the hardware.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control block. Must be declared by user. Elements are set here.
    [in]p_cfgPointer to configuration structure.
    +
    +
    + +
    +
    + +

    ◆ read

    + +
    +
    + + + + +
    fsp_err_t(* i2c_slave_api_t::read) (i2c_slave_ctrl_t *const p_ctrl, uint8_t *const p_dest, uint32_t const bytes)
    +
    +

    Performs a read operation on an I2C Slave device.

    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlPointer to control block set in i2c_slave_api_t::open call.
    [in]p_destPointer to the location to store read data.
    [in]bytesNumber of bytes to read.
    +
    +
    + +
    +
    + +

    ◆ write

    + +
    +
    + + + + +
    fsp_err_t(* i2c_slave_api_t::write) (i2c_slave_ctrl_t *const p_ctrl, uint8_t *const p_src, uint32_t const bytes)
    +
    +

    Performs a write operation on an I2C Slave device.

    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlPointer to control block set in i2c_slave_api_t::open call.
    [in]p_srcPointer to the location to get write data from.
    [in]bytesNumber of bytes to write.
    +
    +
    + +
    +
    + +

    ◆ callbackSet

    + +
    +
    + + + + +
    fsp_err_t(* i2c_slave_api_t::callbackSet) (i2c_slave_ctrl_t *const p_api_ctrl, void(*p_callback)(i2c_slave_callback_args_t *), void const *const p_context, i2c_slave_callback_args_t *const p_callback_memory)
    +
    +

    Specify callback function and optional context pointer and working memory pointer.

    Implemented as
    +
    +
    Parameters
    + + + + + +
    [in]p_ctrlPointer to the IIC Slave control block.
    [in]p_callbackCallback function
    [in]p_contextPointer to send to callback function
    [in]p_working_memoryPointer to volatile memory where callback structure can be allocated. Callback arguments allocated here are only valid during the callback.
    +
    +
    + +
    +
    + +

    ◆ close

    + +
    +
    + + + + +
    fsp_err_t(* i2c_slave_api_t::close) (i2c_slave_ctrl_t *const p_ctrl)
    +
    +

    Closes the driver and releases the I2C Slave device.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to control block set in i2c_slave_api_t::open call.
    +
    +
    + +
    +
    + +
    +
    + +

    ◆ i2c_slave_instance_t

    + +
    +
    + + + + +
    struct i2c_slave_instance_t
    +
    +

    This structure encompasses everything that is needed to use an instance of this interface.

    +
    + + + + + + + + + + +
    Data Fields
    +i2c_slave_ctrl_t * +p_ctrl +Pointer to the control structure for this instance.
    +i2c_slave_cfg_t const * +p_cfg +Pointer to the configuration structure for this instance.
    +i2c_slave_api_t const * +p_api +Pointer to the API structure for this instance.
    + +
    +
    +

    Typedef Documentation

    + +

    ◆ i2c_slave_ctrl_t

    + +
    +
    + + + + +
    typedef void i2c_slave_ctrl_t
    +
    +

    I2C control block. Allocate an instance specific control block to pass into the I2C API calls.

    Implemented as
      +
    • iic_slave_instance_ctrl_t
    • +
    +
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ i2c_slave_rate_t

    + +
    +
    + + + + +
    enum i2c_slave_rate_t
    +
    +

    Communication speed options

    + + + + +
    Enumerator
    I2C_SLAVE_RATE_STANDARD 

    100 kHz

    +
    I2C_SLAVE_RATE_FAST 

    400 kHz

    +
    I2C_SLAVE_RATE_FASTPLUS 

    1 MHz

    +
    + +
    +
    + +

    ◆ i2c_slave_addr_mode_t

    + +
    +
    + + + + +
    enum i2c_slave_addr_mode_t
    +
    +

    Addressing mode options

    + + + +
    Enumerator
    I2C_SLAVE_ADDR_MODE_7BIT 

    Use 7-bit addressing mode.

    +
    I2C_SLAVE_ADDR_MODE_10BIT 

    Use 10-bit addressing mode.

    +
    + +
    +
    + +

    ◆ i2c_slave_event_t

    + +
    +
    + + + + +
    enum i2c_slave_event_t
    +
    +

    Callback events

    + + + + + + + + + +
    Enumerator
    I2C_SLAVE_EVENT_ABORTED 

    A transfer was aborted.

    +
    I2C_SLAVE_EVENT_RX_COMPLETE 

    A receive operation was completed successfully.

    +
    I2C_SLAVE_EVENT_TX_COMPLETE 

    A transmit operation was completed successfully.

    +
    I2C_SLAVE_EVENT_RX_REQUEST 

    A read operation expected from slave. Detected a write from master.

    +
    I2C_SLAVE_EVENT_TX_REQUEST 

    A write operation expected from slave. Detected a read from master.

    +
    I2C_SLAVE_EVENT_RX_MORE_REQUEST 

    A read operation expected from slave. Master sends out more data than configured to be read in slave.

    +
    I2C_SLAVE_EVENT_TX_MORE_REQUEST 

    A write operation expected from slave. Master requests more data than configured to be written by slave.

    +
    I2C_SLAVE_EVENT_GENERAL_CALL 

    General Call address received from Master. Detected a write from master.

    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___i2_c___s_l_a_v_e___a_p_i.js b/group___i2_c___s_l_a_v_e___a_p_i.js new file mode 100644 index 0000000..2e74a7b --- /dev/null +++ b/group___i2_c___s_l_a_v_e___a_p_i.js @@ -0,0 +1,57 @@ +var group___i2_c___s_l_a_v_e___a_p_i = +[ + [ "i2c_slave_callback_args_t", "group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__callback__args__t", [ + [ "p_context", "group___i2_c___s_l_a_v_e___a_p_i.html#a8480d2ef5f292fa836adfbaef1a0689c", null ], + [ "bytes", "group___i2_c___s_l_a_v_e___a_p_i.html#a43903d76b59b527cef993d5cdbe9a2b9", null ], + [ "event", "group___i2_c___s_l_a_v_e___a_p_i.html#ab8f7ff67f811463a59921e4fbe11898e", null ] + ] ], + [ "i2c_slave_cfg_t", "group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__cfg__t", [ + [ "channel", "group___i2_c___s_l_a_v_e___a_p_i.html#a2708ed5dc2491d0551dd4a8688d919cb", null ], + [ "rate", "group___i2_c___s_l_a_v_e___a_p_i.html#a2abbee554bf1c554d96c8863eb3db77a", null ], + [ "slave", "group___i2_c___s_l_a_v_e___a_p_i.html#a54f03c15c476b1e03c2e09232db9b92f", null ], + [ "addr_mode", "group___i2_c___s_l_a_v_e___a_p_i.html#a459e8abd8d66a321b5c56f12590e8354", null ], + [ "general_call_enable", "group___i2_c___s_l_a_v_e___a_p_i.html#a7b1c0bee47fa93f32b4466b72c30f68c", null ], + [ "rxi_irq", "group___i2_c___s_l_a_v_e___a_p_i.html#ad497920d5c927eff7d183500d8c21dd9", null ], + [ "txi_irq", "group___i2_c___s_l_a_v_e___a_p_i.html#ac88cda39460d4a3d029e5c6e93bf7204", null ], + [ "tei_irq", "group___i2_c___s_l_a_v_e___a_p_i.html#ad1cc54031228e56ffcbf398278e39e98", null ], + [ "eri_irq", "group___i2_c___s_l_a_v_e___a_p_i.html#a923331b5e9e6564b4246e559d66bc3c9", null ], + [ "ipl", "group___i2_c___s_l_a_v_e___a_p_i.html#ae7a71b00ee0f0392feea934f395599a3", null ], + [ "eri_ipl", "group___i2_c___s_l_a_v_e___a_p_i.html#a4fa45eb7423e7b93f78839b2bb612776", null ], + [ "clock_stretching_enable", "group___i2_c___s_l_a_v_e___a_p_i.html#aaf45b7d102061452a09f5db26bdd1148", null ], + [ "p_callback", "group___i2_c___s_l_a_v_e___a_p_i.html#ac194239c95dc0a5a71e220937295d67c", null ], + [ "p_context", "group___i2_c___s_l_a_v_e___a_p_i.html#a6cc910e14348a5c42bb4ffbf41dad5ba", null ], + [ "p_extend", "group___i2_c___s_l_a_v_e___a_p_i.html#a6b56336af0eaf92db7006a028876c575", null ] + ] ], + [ "i2c_slave_api_t", "group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__api__t", [ + [ "open", "group___i2_c___s_l_a_v_e___a_p_i.html#a3f978820e80073c05ef95e3b1ef31601", null ], + [ "read", "group___i2_c___s_l_a_v_e___a_p_i.html#ad9693d9cbb58cc0abb6e4e85548e4e18", null ], + [ "write", "group___i2_c___s_l_a_v_e___a_p_i.html#a8a7c8ec91840338adbabcea5b5400f19", null ], + [ "callbackSet", "group___i2_c___s_l_a_v_e___a_p_i.html#a527fc26638e91d2daf652c2b30b5ab5a", null ], + [ "close", "group___i2_c___s_l_a_v_e___a_p_i.html#a23919938fff411b2275548e6c0dc0c7a", null ] + ] ], + [ "i2c_slave_instance_t", "group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__instance__t", [ + [ "p_ctrl", "group___i2_c___s_l_a_v_e___a_p_i.html#ae2d56c946cfbfae06c21f48be15d32cb", null ], + [ "p_cfg", "group___i2_c___s_l_a_v_e___a_p_i.html#ab197d0cd3aae178af5cc7add1a40ad44", null ], + [ "p_api", "group___i2_c___s_l_a_v_e___a_p_i.html#a63e78c999abc0cf1eea4a506bb14b720", null ] + ] ], + [ "i2c_slave_ctrl_t", "group___i2_c___s_l_a_v_e___a_p_i.html#gaf676f2e6f026d5f3c96fcb18fdc71972", null ], + [ "i2c_slave_rate_t", "group___i2_c___s_l_a_v_e___a_p_i.html#gaa26f7dd0df29bb18d57fa02c7f64588d", [ + [ "I2C_SLAVE_RATE_STANDARD", "group___i2_c___s_l_a_v_e___a_p_i.html#ggaa26f7dd0df29bb18d57fa02c7f64588dafbf6971c770f59039c152748515d3da6", null ], + [ "I2C_SLAVE_RATE_FAST", "group___i2_c___s_l_a_v_e___a_p_i.html#ggaa26f7dd0df29bb18d57fa02c7f64588da0a93f42422a9c37f9eee450c8e497ab9", null ], + [ "I2C_SLAVE_RATE_FASTPLUS", "group___i2_c___s_l_a_v_e___a_p_i.html#ggaa26f7dd0df29bb18d57fa02c7f64588dad673e065daa619986628967645f3e5d8", null ] + ] ], + [ "i2c_slave_addr_mode_t", "group___i2_c___s_l_a_v_e___a_p_i.html#ga8e76d805f1f518bf83a84f9df65beb1b", [ + [ "I2C_SLAVE_ADDR_MODE_7BIT", "group___i2_c___s_l_a_v_e___a_p_i.html#gga8e76d805f1f518bf83a84f9df65beb1ba545d1daef7aa30b4ca41077f570f8c42", null ], + [ "I2C_SLAVE_ADDR_MODE_10BIT", "group___i2_c___s_l_a_v_e___a_p_i.html#gga8e76d805f1f518bf83a84f9df65beb1bafbc283c8ddb82d4704460fc1f9509552", null ] + ] ], + [ "i2c_slave_event_t", "group___i2_c___s_l_a_v_e___a_p_i.html#gad8b613f0d4e9d1b9511ca0b6d6ab7e8c", [ + [ "I2C_SLAVE_EVENT_ABORTED", "group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca0831b0e3a2fa5ee83aa651e6659d7cdf", null ], + [ "I2C_SLAVE_EVENT_RX_COMPLETE", "group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8cac04326f0bdc42f852e082d2fc0e7ad65", null ], + [ "I2C_SLAVE_EVENT_TX_COMPLETE", "group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca1017e760b355f9eef573d163c87893d9", null ], + [ "I2C_SLAVE_EVENT_RX_REQUEST", "group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca35bbc925e0a13c90e6398f8df78a440a", null ], + [ "I2C_SLAVE_EVENT_TX_REQUEST", "group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca9b0eb2a5a4dfdc44adf3838a6c2901c7", null ], + [ "I2C_SLAVE_EVENT_RX_MORE_REQUEST", "group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca833bea612872cc350d74f6edb66e9fad", null ], + [ "I2C_SLAVE_EVENT_TX_MORE_REQUEST", "group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca6b2e105a581ceb4a55850b03d1d6fe2c", null ], + [ "I2C_SLAVE_EVENT_GENERAL_CALL", "group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca25d53326260faa954236b7af69b94852", null ] + ] ] +]; \ No newline at end of file diff --git a/group___i3_c___a_p_i.html b/group___i3_c___a_p_i.html new file mode 100644 index 0000000..b8d0881 --- /dev/null +++ b/group___i3_c___a_p_i.html @@ -0,0 +1,1282 @@ + + + + + + + +RZV Flexible Software Package Documentation: I3C Interface + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    I3C Interface
    +
    +
    +

    Detailed Description

    +

    Interface for I3C.

    +

    +Summary

    +

    The I3C interface provides APIs and definitions for I3C communication.

    +

    +Known Implementations

    +

    I3C (r_i3c_b)

    + + + + + + + + + + + + + + + + + + + + +

    +Data Structures

    struct  i3c_device_status_t
     
    struct  i3c_slave_info_t
     
    struct  i3c_device_table_cfg_t
     
    struct  i3c_device_cfg_t
     
    struct  i3c_command_descriptor_t
     
    struct  i3c_callback_args_t
     
    struct  i3c_cfg_t
     
    struct  i3c_api_t
     
    struct  i3c_instance_t
     
    + + + +

    +Typedefs

    typedef void i3c_ctrl_t
     
    + + + + + + + + + + + + + +

    +Enumerations

    enum  i3c_common_command_code_t
     
    enum  i3c_event_t
     
    enum  i3c_device_type_t
     
    enum  i3c_device_protocol_t
     
    enum  i3c_address_assignment_mode_t
     
    enum  i3c_ibi_type_t
     
    +

    Data Structure Documentation

    + +

    ◆ i3c_device_status_t

    + +
    +
    + + + + +
    struct i3c_device_status_t
    +
    +

    The current status of the slave device (See GETSTATUS in the MIPI I3C Specification v1.0).

    +
    + + + + + + + +
    Data Fields
    +uint8_t +pending_interrupt +Contains the interrupt number of any pending interrupt, or 0 if no interrupts are pending.
    +uint8_t +vendor_status +Reserved for vendor-specific meaning.
    + +
    +
    + +

    ◆ i3c_slave_info_t

    + +
    +
    + + + + +
    struct i3c_slave_info_t
    +
    +

    Device characteristics that define the I3C capabilities of a slave.

    +
    + + + + + + + + + + +
    Data Fields
    +uint8_t +pid[6] +Provisional ID.
    +union i3c_slave_info_t +__unnamed__ +
    +uint8_t +dcr +Device Characteristics Register.
    + +
    +
    + +

    ◆ i3c_device_table_cfg_t

    + +
    +
    + + + + +
    struct i3c_device_table_cfg_t
    +
    +

    Structure for configuring an entry in the device table when the driver is in master mode (See i3c_api_t::masterDeviceTableSet).

    +
    + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +uint8_t +static_address +I3C Static address / I2C address for this device.
    +uint8_t +dynamic_address +

    Dynamic address for the device. This address will be assigned during Dynamic Address Assignment.

    +
    +i3c_device_protocol_t +device_protocol +The protocol used to communicate with this device (I3C / I2C Legacy).
    +bool +ibi_accept +Accept or reject IBI requests from this device.
    +bool +master_request_accept +Accept mastership requests from this device.
    +bool +ibi_payload +

    IBI requests from this device have a data payload.

    +

    Note: When the device is configured using ENTDAA, the ibi_payload will automatically be updated based on the value of BCR.

    +
    + +
    +
    + +

    ◆ i3c_device_cfg_t

    + +
    +
    + + + + +
    struct i3c_device_cfg_t
    +
    +

    Structure for configuring a slave address when the driver is in slave mode (See i3c_api_t::deviceCfgSet).

    +
    + + + + + + + + + + +
    Data Fields
    +uint8_t +static_address +I3C Static address / I2C address for this device.
    +uint8_t +dynamic_address +

    Dynamic address for this device. Note that the dynamic address will automatically be updated when ENTDAA is completed.

    +
    +i3c_slave_info_t +slave_info +PID, BCR, and DCR registers for the device (Slave mode only).
    + +
    +
    + +

    ◆ i3c_command_descriptor_t

    + +
    +
    + + + + +
    struct i3c_command_descriptor_t
    +
    +

    Descriptor for completing CCC transfers.

    +
    + + + + + + + + + + + + + + + + +
    Data Fields
    +uint8_t +command_code +Common Command Code for the transfer.
    +uint8_t * +p_buffer +Buffer for reading or writing data.
    +uint32_t +length +Length of the data portion of the command.
    +bool +restart +If true, issue a repeated-start after the transfer is completed.
    +bool +rnw +Set to true if the command type is Direct Get.
    + +
    +
    + +

    ◆ i3c_callback_args_t

    + +
    +
    + + + + +
    struct i3c_callback_args_t
    +
    +

    Arguments that are passed to the user callback when an event occurs.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +i3c_event_t +event +The type of event that has occurred.
    +uint32_t +event_status +Status flags associated with the event.
    +uint32_t +transfer_size +Number of bytes transferred.
    +i3c_slave_info_t const * +p_slave_info +A pointer to the Characteristics Registers read during ENTDAA.
    +uint8_t +dynamic_address +The dynamic address that was assigned to the slave during ENTDAA.
    +i3c_ibi_type_t +ibi_type +The type of IBI that has been received.
    +uint8_t +ibi_address +The address of the device that sent the IBI.
    +uint8_t +command_code +The command code of the received command.
    +void const * +p_context +User defined context.
    + +
    +
    + +

    ◆ i3c_cfg_t

    + +
    +
    + + + + +
    struct i3c_cfg_t
    +
    +

    User configuration structure, used in open function

    +
    + + + + + + + + + + + + +

    Data Fields

    uint32_t channel
     
    i3c_device_type_t device_type
     
    void(* p_callback )(i3c_callback_args_t const *const p_args)
     
    +void const * p_context
     Pointer to the user-provided context.
     
    void const * p_extend
     
    +

    Field Documentation

    + +

    ◆ channel

    + +
    +
    + + + + +
    uint32_t i3c_cfg_t::channel
    +
    +

    Select a channel corresponding to the channel number of the hardware.

    + +
    +
    + +

    ◆ device_type

    + +
    +
    + + + + +
    i3c_device_type_t i3c_cfg_t::device_type
    +
    +

    The type of device.

    + +
    +
    + +

    ◆ p_callback

    + +
    +
    + + + + +
    void(* i3c_cfg_t::p_callback) (i3c_callback_args_t const *const p_args)
    +
    +

    Pointer to the user callback.

    + +
    +
    + +

    ◆ p_extend

    + +
    +
    + + + + +
    void const* i3c_cfg_t::p_extend
    +
    +

    Pointer to extended configuration.

    + +
    +
    + +
    +
    + +

    ◆ i3c_api_t

    + +
    +
    + + + + +
    struct i3c_api_t
    +
    +

    I3C functions implemented at the HAL layer will follow this API.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    fsp_err_t(* open )(i3c_ctrl_t *const p_ctrl, i3c_cfg_t const *const p_cfg)
     
    fsp_err_t(* enable )(i3c_ctrl_t *const p_ctrl)
     
    fsp_err_t(* deviceCfgSet )(i3c_ctrl_t *const p_ctrl, i3c_device_cfg_t const *const p_device_cfg)
     
    fsp_err_t(* masterDeviceTableSet )(i3c_ctrl_t *const p_ctrl, uint32_t device_index, i3c_device_table_cfg_t const *const p_device_table_cfg)
     
    fsp_err_t(* deviceSelect )(i3c_ctrl_t *const p_ctrl, uint32_t device_index, uint32_t bitrate_mode)
     
    fsp_err_t(* dynamicAddressAssignmentStart )(i3c_ctrl_t *const p_ctrl, i3c_address_assignment_mode_t address_assignment_mode, uint32_t starting_device_index, uint32_t device_count)
     
    fsp_err_t(* slaveStatusSet )(i3c_ctrl_t *const p_ctrl, i3c_device_status_t device_status)
     
    fsp_err_t(* commandSend )(i3c_ctrl_t *const p_ctrl, i3c_command_descriptor_t *p_command_descriptor)
     
    fsp_err_t(* write )(i3c_ctrl_t *const p_ctrl, uint8_t const *const p_data, uint32_t length, bool restart)
     
    fsp_err_t(* read )(i3c_ctrl_t *const p_ctrl, uint8_t *const p_data, uint32_t length, bool restart)
     
    fsp_err_t(* ibiWrite )(i3c_ctrl_t *const p_ctrl, i3c_ibi_type_t ibi_type, uint8_t const *const p_data, uint32_t length)
     
    fsp_err_t(* ibiRead )(i3c_ctrl_t *const p_ctrl, uint8_t *const p_data, uint32_t length)
     
    fsp_err_t(* close )(i3c_ctrl_t *const p_ctrl)
     
    +

    Field Documentation

    + +

    ◆ open

    + +
    +
    + + + + +
    fsp_err_t(* i3c_api_t::open) (i3c_ctrl_t *const p_ctrl, i3c_cfg_t const *const p_cfg)
    +
    +

    Initial configuration.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control block. Must be declared by user. Elements set here.
    [in]p_cfgPointer to configuration structure. All elements of this structure must be set by user.
    +
    +
    + +
    +
    + +

    ◆ enable

    + +
    +
    + + + + +
    fsp_err_t(* i3c_api_t::enable) (i3c_ctrl_t *const p_ctrl)
    +
    +

    Enable the I3C device.

    +
    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlControl block set in i3c_api_t::open call for this instance.
    +
    +
    + +
    +
    + +

    ◆ deviceCfgSet

    + +
    +
    + + + + +
    fsp_err_t(* i3c_api_t::deviceCfgSet) (i3c_ctrl_t *const p_ctrl, i3c_device_cfg_t const *const p_device_cfg)
    +
    +

    Set the configuration of this device.

    +
    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlControl block set in i3c_api_t::open call for this instance.
    [in]p_device_cfgPointer to device configuration.
    +
    +
    + +
    +
    + +

    ◆ masterDeviceTableSet

    + +
    +
    + + + + +
    fsp_err_t(* i3c_api_t::masterDeviceTableSet) (i3c_ctrl_t *const p_ctrl, uint32_t device_index, i3c_device_table_cfg_t const *const p_device_table_cfg)
    +
    +

    Set the configuration for the device at the given index in the device table. The configuration will be used by transfers when it is selected by deviceSelect.

    +

    Note: This function is not used in slave mode.

    +
    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlControl block set in i3c_api_t::open call for this instance.
    [in]device_indexIndex into the device table.
    [in]p_device_table_cfgPointer to the table settings for the entry in the master device table.
    +
    +
    + +
    +
    + +

    ◆ deviceSelect

    + +
    +
    + + + + +
    fsp_err_t(* i3c_api_t::deviceSelect) (i3c_ctrl_t *const p_ctrl, uint32_t device_index, uint32_t bitrate_mode)
    +
    +

    In master mode, select the device for the next transfer.

    +

    Note: This function is not used in slave mode.

    +
    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlControl block set in i3c_api_t::open call for this instance.
    [in]device_indexIndex into the device table.
    [in]bitrate_settingThe bitrate settings for the selected device.
    +
    +
    + +
    +
    + +

    ◆ dynamicAddressAssignmentStart

    + +
    +
    + + + + +
    fsp_err_t(* i3c_api_t::dynamicAddressAssignmentStart) (i3c_ctrl_t *const p_ctrl, i3c_address_assignment_mode_t address_assignment_mode, uint32_t starting_device_index, uint32_t device_count)
    +
    +

    Start Dynamic Address Assignment by sending either the ENTDAA or SETDASA command See i3c_address_assignment_mode_t for more information.

    +

    Note: This function is not used in slave mode.

    +
    Implemented as
    +
    +
    Parameters
    + + + + + +
    [in]p_ctrlControl block set in i3c_api_t::open call for this instance.
    [in]address_assignment_modeThe command to use for Dynamic Address Assignment.
    [in]starting_device_indexThe device index that will be used to assign the first device during Dynamic Address Assignment.
    [in]device_countThe number of devices to assign (Only used with I3C_ADDRESS_ASSIGNMENT_MODE_ENTDAA).
    +
    +
    + +
    +
    + +

    ◆ slaveStatusSet

    + +
    +
    + + + + +
    fsp_err_t(* i3c_api_t::slaveStatusSet) (i3c_ctrl_t *const p_ctrl, i3c_device_status_t device_status)
    +
    +

    Set the status returned to the master in response to a GETSTATUS command.

    +

    Note: This function is not used in master mode.

    +
    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlControl block set in i3c_api_t::open call for this instance.
    [in]device_statusNew status settings for responding to the GETSTATUS command code.
    +
    +
    + +
    +
    + +

    ◆ commandSend

    + +
    +
    + + + + +
    fsp_err_t(* i3c_api_t::commandSend) (i3c_ctrl_t *const p_ctrl, i3c_command_descriptor_t *p_command_descriptor)
    +
    +

    Send a broadcast or directed command to slave devices on the bus.

    +

    Note: This function is not used in slave mode.

    +
    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlControl block set in i3c_api_t::open call for this instance.
    [in]p_command_descriptorA descriptor for executing the command.
    +
    +
    + +
    +
    + +

    ◆ write

    + +
    +
    + + + + +
    fsp_err_t(* i3c_api_t::write) (i3c_ctrl_t *const p_ctrl, uint8_t const *const p_data, uint32_t length, bool restart)
    +
    +

    In master mode: Start a write transfer. When the transfer is completed send a stop condition or a repeated-start. In slave mode: Set the write buffer and configure the number of bytes that will be transferred before the the transfer is ended by the slave via the 'T' bit or by the master issueing a stop condition.

    +
    Implemented as
    +
    +
    Parameters
    + + + + + +
    [in]p_ctrlControl block set in i3c_api_t::open call for this instance.
    [in]p_dataPointer to a buffer to write.
    [in]lengthNumber of bytes to transfer.
    [in]restartIf true, issue a repeated-start after the transfer is completed (Master only).
    +
    +
    + +
    +
    + +

    ◆ read

    + +
    +
    + + + + +
    fsp_err_t(* i3c_api_t::read) (i3c_ctrl_t *const p_ctrl, uint8_t *const p_data, uint32_t length, bool restart)
    +
    +

    In master mode: Start a read transfer. When the transfer is completed, send a stop condition or a repeated-start. In slave mode: Set the read buffer for storing data read during the transfer. When the buffer is full, the application will receive a callback requesting a new read buffer. If no buffer is provided by the application, the driver will discard any remaining bytes read during the transfer.

    +
    Implemented as
    +
    +
    Parameters
    + + + + + +
    [in]p_ctrlControl block set in i3c_api_t::open call for this instance.
    [in]p_dataPointer to a buffer to store the bytes read during the transfer.
    [in]lengthNumber of bytes to transfer.
    [in]restartIf true, issue a repeated-start after the transfer is completed (Master only).
    +
    +
    + +
    +
    + +

    ◆ ibiWrite

    + +
    +
    + + + + +
    fsp_err_t(* i3c_api_t::ibiWrite) (i3c_ctrl_t *const p_ctrl, i3c_ibi_type_t ibi_type, uint8_t const *const p_data, uint32_t length)
    +
    +

    Initiate an IBI write operation.

    +

    Note: This function is not used in master mode.

    +
    Implemented as
    +
    +
    Parameters
    + + + + + +
    [in]p_ctrlControl block set in i3c_api_t::open call for this instance.
    [in]ibi_typeThe type of In-Band Interrupt.
    [in]p_dataPointer to a buffer to start the bytes read during the transfer.
    [in]lengthNumber of bytes to transfer.
    +
    +
    + +
    +
    + +

    ◆ ibiRead

    + +
    +
    + + + + +
    fsp_err_t(* i3c_api_t::ibiRead) (i3c_ctrl_t *const p_ctrl, uint8_t *const p_data, uint32_t length)
    +
    +

    Set the read buffer for storing received IBI data (This function is not used in slave mode).

    +
    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlControl block set in i3c_api_t::open call for this instance.
    [in]p_dataPointer to a buffer to store the bytes read during the transfer.
    [in]lengthNumber of bytes to transfer.
    +
    +
    + +
    +
    + +

    ◆ close

    + +
    +
    + + + + +
    fsp_err_t(* i3c_api_t::close) (i3c_ctrl_t *const p_ctrl)
    +
    +

    Allows driver to be reconfigured and may reduce power consumption.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlControl block set in i3c_api_t::open call for this instance.
    +
    +
    + +
    +
    + +
    +
    + +

    ◆ i3c_instance_t

    + +
    +
    + + + + +
    struct i3c_instance_t
    +
    +

    This structure encompasses everything that is needed to use an instance of this interface.

    +
    + + + + + + + + + + +
    Data Fields
    +i3c_ctrl_t * +p_ctrl +Pointer to the control structure for this instance.
    +i3c_cfg_t const * +p_cfg +Pointer to the configuration structure for this instance.
    +i3c_api_t const * +p_api +Pointer to the API structure for this instance.
    + +
    +
    +

    Typedef Documentation

    + +

    ◆ i3c_ctrl_t

    + +
    +
    + + + + +
    typedef void i3c_ctrl_t
    +
    +

    I3C control block. Allocate an instance specific control block to pass into the I3C API calls.

    Implemented as
      +
    • i3c_instance_ctrl_t
    • +
    +
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ i3c_common_command_code_t

    + +
    +
    + + + + +
    enum i3c_common_command_code_t
    +
    +

    Common Command Codes defined by MIPI I3C Specification v1.1.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Enumerator
    I3C_CCC_BROADCAST_ENEC 

    Enable Slave initiated events.

    +
    I3C_CCC_BROADCAST_DISEC 

    Disable Slave initiated events.

    +
    I3C_CCC_BROADCAST_ENTAS0 

    Enter Activity State 0.

    +
    I3C_CCC_BROADCAST_ENTAS1 

    Enter Activity State 1.

    +
    I3C_CCC_BROADCAST_ENTAS2 

    Enter Activity State 2.

    +
    I3C_CCC_BROADCAST_ENTAS3 

    Enter Activity State 3.

    +
    I3C_CCC_BROADCAST_RSTDAA 

    Reset Dynamic Address Assignment.

    +
    I3C_CCC_BROADCAST_ENTDAA 

    Enter Dynamic Address Assignment.

    +
    I3C_CCC_BROADCAST_DEFSVLS 

    Define List of Slaves.

    +
    I3C_CCC_BROADCAST_SETMWL 

    Set Max Write Length.

    +
    I3C_CCC_BROADCAST_SETMRL 

    Set Max Read Length.

    +
    I3C_CCC_BROADCAST_ENTTM 

    Enter Test Mode.

    +
    I3C_CCC_BROADCAST_ENTHDR0 

    Enter HDR Mode 0.

    +
    I3C_CCC_BROADCAST_ENTHDR1 

    Enter HDR Mode 1.

    +
    I3C_CCC_BROADCAST_ENTHDR2 

    Enter HDR Mode 2.

    +
    I3C_CCC_BROADCAST_ENTHDR3 

    Enter HDR Mode 3.

    +
    I3C_CCC_BROADCAST_ENTHDR4 

    Enter HDR Mode 4 (Reserved for future definition).

    +
    I3C_CCC_BROADCAST_ENTHDR5 

    Enter HDR Mode 5 (Reserved for future definition).

    +
    I3C_CCC_BROADCAST_ENTHDR6 

    Enter HDR Mode 6 (Reserved for future definition).

    +
    I3C_CCC_BROADCAST_ENTHDR7 

    Enter HDR Mode 7 (Reserved for future definition).

    +
    I3C_CCC_BROADCAST_SETXTIME 

    Set Exchange Timing Info.

    +
    I3C_CCC_BROADCAST_SETAASA 

    Set All Addresses to Static Address.

    +
    I3C_CCC_DIRECT_ENEC 

    Enable Slave initiated events.

    +
    I3C_CCC_DIRECT_DISEC 

    Disable Slave initiated events.

    +
    I3C_CCC_DIRECT_ENTAS0 

    Enter Activity State 0.

    +
    I3C_CCC_DIRECT_ENTAS1 

    Enter Activity State 1.

    +
    I3C_CCC_DIRECT_ENTAS2 

    Enter Activity State 2.

    +
    I3C_CCC_DIRECT_ENTAS3 

    Enter Activity State 3.

    +
    I3C_CCC_DIRECT_RSTDAA 

    Reset Dynamic Address Assignment.

    +
    I3C_CCC_DIRECT_SETDASA 

    Set Dynamic Address from Static Address.

    +
    I3C_CCC_DIRECT_SETNEWDA 

    Set New Dynamic Address.

    +
    I3C_CCC_DIRECT_SETMWL 

    Set Max Write Length.

    +
    I3C_CCC_DIRECT_SETMRL 

    Set Max Read Length.

    +
    I3C_CCC_DIRECT_GETMWL 

    Get Max Write Length.

    +
    I3C_CCC_DIRECT_GETMRL 

    Get Max Read Length.

    +
    I3C_CCC_DIRECT_GETPID 

    Get Provisional ID.

    +
    I3C_CCC_DIRECT_GETBCR 

    Get Bus Characteristic Register.

    +
    I3C_CCC_DIRECT_GETDCR 

    Get Device Characteristic Register.

    +
    I3C_CCC_DIRECT_GETSTATUS 

    Get Device Status.

    +
    I3C_CCC_DIRECT_GETACCMST 

    Get Accept Mastership.

    +
    I3C_CCC_DIRECT_GETMXDS 

    Get Max Data Speed.

    +
    I3C_CCC_DIRECT_SETXTIME 

    Set Exchange Timing Information.

    +
    I3C_CCC_DIRECT_GETXTIME 

    Get Exchange Timing Information.

    +
    + +
    +
    + +

    ◆ i3c_event_t

    + +
    +
    + + + + +
    enum i3c_event_t
    +
    +

    I3C Events that result in a callback.

    + + + + + + + + + + + + + +
    Enumerator
    I3C_EVENT_ENTDAA_ADDRESS_PHASE 

    Events that only occur in Master mode. A Slave device has finished writing its PID, BCR, and DCR. This information is provided in i3c_callback_args_t::p_slave_info.

    +
    I3C_EVENT_IBI_READ_COMPLETE 

    An IBI has successfully been read.

    +
    I3C_EVENT_IBI_READ_BUFFER_FULL 

    There is no more space in the IBI read buffer. The application may provide another buffer by calling i3c_api_t::ibiRead.

    +
    I3C_EVENT_READ_BUFFER_FULL 

    Events that only occur in Slave mode. There is no more space in the read buffer. The application may provide another buffer by calling i3c_api_t::read.

    +
    I3C_EVENT_IBI_WRITE_COMPLETE 

    A IBI was written successfully.

    +
    I3C_EVENT_HDR_EXIT_PATTERN_DETECTED 

    The HDR exit pattern was detected on the bus.

    +
    I3C_EVENT_ADDRESS_ASSIGNMENT_COMPLETE 

    Dynamic Address Assignment has completed.

    +

    Events that are common to Master and Slave mode.

    +
    I3C_EVENT_COMMAND_COMPLETE 

    A command was completed.

    +
    I3C_EVENT_WRITE_COMPLETE 

    A write transfer has completed.

    +
    I3C_EVENT_READ_COMPLETE 

    A read transfer has completed.

    +
    I3C_EVENT_TIMEOUT_DETECTED 

    SCL is stuck at the logic high or logic low level during a transfer.

    +
    I3C_EVENT_INTERNAL_ERROR 

    An internal error occurred.

    +
    + +
    +
    + +

    ◆ i3c_device_type_t

    + +
    +
    + + + + +
    enum i3c_device_type_t
    +
    +

    The type of device.

    + + + +
    Enumerator
    I3C_DEVICE_TYPE_MAIN_MASTER 

    The main master starts in master mode and is responsible for configuring the bus.

    +
    I3C_DEVICE_TYPE_SLAVE 

    A slave device listens to the bus for relevant I3C Commands (CCCs) sent by the current master, and responds accordingly. Slave devices may also initiate In-band interrupts and Hot-Join requests.

    +
    + +
    +
    + +

    ◆ i3c_device_protocol_t

    + +
    +
    + + + + +
    enum i3c_device_protocol_t
    +
    +

    Identifies the protocol for transferring data with the device on the bus.

    + + + +
    Enumerator
    I3C_DEVICE_PROTOCOL_I2C 

    Transfers will use legacy I2C protocol with open-drain output at a reduced baudrate.

    +
    I3C_DEVICE_PROTOCOL_I3C 

    Transfers will use I3C SDR mode.

    +
    + +
    +
    + +

    ◆ i3c_address_assignment_mode_t

    + +
    +
    +

    Address Assignment Mode.

    + + +
    Enumerator
    I3C_ADDRESS_ASSIGNMENT_MODE_ENTDAA 

    Send the ENTDAA command to enter Dynamic Address Assignment mode and assign dynamic addresses in order, starting with the starting device index. The procedure is completed after the specified number of devices have been configured. The callback will be called after the PID, DCR, and BCR registers have been read for each device.

    +
    + +
    +
    + +

    ◆ i3c_ibi_type_t

    + +
    +
    + + + + +
    enum i3c_ibi_type_t
    +
    +

    The type of In-Band Interrupt.

    + + + + +
    Enumerator
    I3C_IBI_TYPE_INTERRUPT 

    Application specific In-Band Interrupt for notifying the master when an event occurs.

    +
    I3C_IBI_TYPE_HOT_JOIN 

    Request the master to perform the Dynamic Address Assignment process.

    +
    I3C_IBI_TYPE_MASTERSHIP_REQUEST 

    Request the master to give up control of the bus.

    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___i3_c___a_p_i.js b/group___i3_c___a_p_i.js new file mode 100644 index 0000000..03e0bf7 --- /dev/null +++ b/group___i3_c___a_p_i.js @@ -0,0 +1,145 @@ +var group___i3_c___a_p_i = +[ + [ "i3c_device_status_t", "group___i3_c___a_p_i.html#structi3c__device__status__t", [ + [ "pending_interrupt", "group___i3_c___a_p_i.html#a3b2cd9c5022352d0b3275882dee97363", null ], + [ "vendor_status", "group___i3_c___a_p_i.html#a0148d668a40c53ea6aeba6b14050593e", null ] + ] ], + [ "i3c_slave_info_t", "group___i3_c___a_p_i.html#structi3c__slave__info__t", [ + [ "pid", "group___i3_c___a_p_i.html#ab4281472412829fccfae413a1c079838", null ], + [ "dcr", "group___i3_c___a_p_i.html#af7ddfcf173feb4b04c3cd90189cd9941", null ] + ] ], + [ "i3c_device_table_cfg_t", "group___i3_c___a_p_i.html#structi3c__device__table__cfg__t", [ + [ "static_address", "group___i3_c___a_p_i.html#a028f83c75b6bdc0155b5ee9abc822225", null ], + [ "dynamic_address", "group___i3_c___a_p_i.html#a683afb29ae34336a1817776683062d2d", null ], + [ "device_protocol", "group___i3_c___a_p_i.html#a24de9f1da7fb32c695bd512994144a0b", null ], + [ "ibi_accept", "group___i3_c___a_p_i.html#a75de96de8cb5a6dbe2e142f1113a5a8b", null ], + [ "master_request_accept", "group___i3_c___a_p_i.html#a7fffc4906ca2c92ccf77cda8fabc6714", null ], + [ "ibi_payload", "group___i3_c___a_p_i.html#a8627c2815356dbf8a9120b45a4e5e954", null ] + ] ], + [ "i3c_device_cfg_t", "group___i3_c___a_p_i.html#structi3c__device__cfg__t", [ + [ "static_address", "group___i3_c___a_p_i.html#a77ccba404f1ec93b31a33e6c7ebed26f", null ], + [ "dynamic_address", "group___i3_c___a_p_i.html#acf39141678838e40af4bee849660f210", null ], + [ "slave_info", "group___i3_c___a_p_i.html#adfe6b41d24ce5d158df818ab5591b88a", null ] + ] ], + [ "i3c_command_descriptor_t", "group___i3_c___a_p_i.html#structi3c__command__descriptor__t", [ + [ "command_code", "group___i3_c___a_p_i.html#a1319595692f1d7d2035df8f8fd63445a", null ], + [ "p_buffer", "group___i3_c___a_p_i.html#a71fb8d5e49ee1c39fdc190b5c5fd7e1c", null ], + [ "length", "group___i3_c___a_p_i.html#a55133c6895655f647bad807fd6e0d136", null ], + [ "restart", "group___i3_c___a_p_i.html#a28a3c4290b712ff83b77fd4f7412c322", null ], + [ "rnw", "group___i3_c___a_p_i.html#ae4936b8865757d9656167fac18db6e1e", null ] + ] ], + [ "i3c_callback_args_t", "group___i3_c___a_p_i.html#structi3c__callback__args__t", [ + [ "event", "group___i3_c___a_p_i.html#a558180776a16d59f446a936574353300", null ], + [ "event_status", "group___i3_c___a_p_i.html#a149831362decabc4676bd5e8265821dd", null ], + [ "transfer_size", "group___i3_c___a_p_i.html#aafe9264685a5693c48c24cbcc470d6d7", null ], + [ "p_slave_info", "group___i3_c___a_p_i.html#a28a15d1d237c21fbf3c61486fc5e7f9d", null ], + [ "dynamic_address", "group___i3_c___a_p_i.html#a3b19cf7a70e74781374af0efaddc3c87", null ], + [ "ibi_type", "group___i3_c___a_p_i.html#a38189a6ab614f521924609c5bb5f30b9", null ], + [ "ibi_address", "group___i3_c___a_p_i.html#add62a38afe9e63edc664fa8cd7d736e3", null ], + [ "command_code", "group___i3_c___a_p_i.html#aa4990a726981eee5fc979850314eeb04", null ], + [ "p_context", "group___i3_c___a_p_i.html#ac551df467b9752c621533d829cdd1e4d", null ] + ] ], + [ "i3c_cfg_t", "group___i3_c___a_p_i.html#structi3c__cfg__t", [ + [ "channel", "group___i3_c___a_p_i.html#a8065fa3e9d1d82e9ebaa60e1731d7ecc", null ], + [ "device_type", "group___i3_c___a_p_i.html#a177e6729548170be6b6ddbe444fc6716", null ], + [ "p_callback", "group___i3_c___a_p_i.html#a476eb1c4e5a0defaa54d3b4a11ce099a", null ], + [ "p_context", "group___i3_c___a_p_i.html#a8a5c800bff7722549723dea066fe19eb", null ], + [ "p_extend", "group___i3_c___a_p_i.html#a446d4dde4f518d873b98362d3ab68303", null ] + ] ], + [ "i3c_api_t", "group___i3_c___a_p_i.html#structi3c__api__t", [ + [ "open", "group___i3_c___a_p_i.html#a963e13cc6b3cf1903a01ed87901eb6a9", null ], + [ "enable", "group___i3_c___a_p_i.html#adbfee07190ec081f9dc3820bba928cef", null ], + [ "deviceCfgSet", "group___i3_c___a_p_i.html#ad1a5e82be324c969d8397e687eb66c08", null ], + [ "masterDeviceTableSet", "group___i3_c___a_p_i.html#ac790719d9f6a87b3458bfab85ffda558", null ], + [ "deviceSelect", "group___i3_c___a_p_i.html#a1e24e768130b9ea12f10743ff3143fa7", null ], + [ "dynamicAddressAssignmentStart", "group___i3_c___a_p_i.html#ae57d3fa9fa4a966a5c8cac38b0ea0660", null ], + [ "slaveStatusSet", "group___i3_c___a_p_i.html#a39518a413d0c9056e41d4da97ce3884e", null ], + [ "commandSend", "group___i3_c___a_p_i.html#a840484cae7a68cf6161ec707c33c0a5c", null ], + [ "write", "group___i3_c___a_p_i.html#a0b27ccf4720531545b0c2e118032539b", null ], + [ "read", "group___i3_c___a_p_i.html#ad013ffb59c95539c84fe217b90d897ad", null ], + [ "ibiWrite", "group___i3_c___a_p_i.html#a78bf93c241804116b1a4efc18e6c1028", null ], + [ "ibiRead", "group___i3_c___a_p_i.html#a3b2a78b5f633df2cfb07133ad5ae9c91", null ], + [ "close", "group___i3_c___a_p_i.html#aee21d22f092a6c93976b94635642e33f", null ] + ] ], + [ "i3c_instance_t", "group___i3_c___a_p_i.html#structi3c__instance__t", [ + [ "p_ctrl", "group___i3_c___a_p_i.html#a2ad3482a64914b52deb037ed89a5b023", null ], + [ "p_cfg", "group___i3_c___a_p_i.html#a9076df3ea1eaa0842da95560f98309af", null ], + [ "p_api", "group___i3_c___a_p_i.html#aac576dcfc7c8ada6d77bba14314a8859", null ] + ] ], + [ "i3c_ctrl_t", "group___i3_c___a_p_i.html#ga63111d6c1096458d5059f5f6fac3f579", null ], + [ "i3c_common_command_code_t", "group___i3_c___a_p_i.html#gae0fcac252ef200a5a24cdadfa123dc52", [ + [ "I3C_CCC_BROADCAST_ENEC", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52acc5d7a5de1e6f3169a5b89f675feca40", null ], + [ "I3C_CCC_BROADCAST_DISEC", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a1f75c76bf09458b99003305112107dc7", null ], + [ "I3C_CCC_BROADCAST_ENTAS0", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a73ea75bd16a55fb64d2cb4788ec9b94e", null ], + [ "I3C_CCC_BROADCAST_ENTAS1", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a9b8ecc4370c7361e6a7a074e03390be0", null ], + [ "I3C_CCC_BROADCAST_ENTAS2", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8a571cf772f5717fa91172048322e739", null ], + [ "I3C_CCC_BROADCAST_ENTAS3", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a9f16a8d29a4f814f9b9627603817df7d", null ], + [ "I3C_CCC_BROADCAST_RSTDAA", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52afd8c362bd9653f12f39c6d508dc6b370", null ], + [ "I3C_CCC_BROADCAST_ENTDAA", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aaa285307604c96afab5e8477583b25d0", null ], + [ "I3C_CCC_BROADCAST_DEFSVLS", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52abbab4c6a19959b0ce8e01d97db4f04e7", null ], + [ "I3C_CCC_BROADCAST_SETMWL", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aec2e7382aa38f0a4c99bfcfeb609910d", null ], + [ "I3C_CCC_BROADCAST_SETMRL", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ae23ff44b4be0d920a3cd686dbaefa2d4", null ], + [ "I3C_CCC_BROADCAST_ENTTM", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a497ea998fd00601fece9bc4f537c5069", null ], + [ "I3C_CCC_BROADCAST_ENTHDR0", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a08c0920a5a317949946c27ecd501ec7d", null ], + [ "I3C_CCC_BROADCAST_ENTHDR1", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a56334065601b234cb7a51495a87dc79f", null ], + [ "I3C_CCC_BROADCAST_ENTHDR2", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ae6bfede59f2548525cd5440894c556ae", null ], + [ "I3C_CCC_BROADCAST_ENTHDR3", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ae75b0aea11da4b68f572fe92b464cd96", null ], + [ "I3C_CCC_BROADCAST_ENTHDR4", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a6cfb1fec206cea9e4004277a49345c45", null ], + [ "I3C_CCC_BROADCAST_ENTHDR5", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ab56b79fda699c783a225ebcdeef12e17", null ], + [ "I3C_CCC_BROADCAST_ENTHDR6", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ab14dcd17df603d88deb2c9d2a6112cea", null ], + [ "I3C_CCC_BROADCAST_ENTHDR7", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8b91860514ba2dab9ad0188c1265c2ce", null ], + [ "I3C_CCC_BROADCAST_SETXTIME", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a1b45b49fd85d7ac9804cdb5d44a3d226", null ], + [ "I3C_CCC_BROADCAST_SETAASA", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af3d7fa76699eb260edb16b1365a83a80", null ], + [ "I3C_CCC_DIRECT_ENEC", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af979c7917ae589e3a9a2617f161f5a04", null ], + [ "I3C_CCC_DIRECT_DISEC", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a66d0ccdd8df6e8ee6335d86b56b3fb2c", null ], + [ "I3C_CCC_DIRECT_ENTAS0", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a7b5746e3c19c17b4ca7485b06da59adc", null ], + [ "I3C_CCC_DIRECT_ENTAS1", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af2896458dc1ef08bcb97926be03678e3", null ], + [ "I3C_CCC_DIRECT_ENTAS2", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aa2cd6c5a0491fd3fe6be81521d4dc75e", null ], + [ "I3C_CCC_DIRECT_ENTAS3", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a6f12cb17e3064ffd538da94b08c21b95", null ], + [ "I3C_CCC_DIRECT_RSTDAA", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8db31c2c1ca8424755d3d59ce623fb08", null ], + [ "I3C_CCC_DIRECT_SETDASA", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a196c567a68ade8d03a9863b6fa472eca", null ], + [ "I3C_CCC_DIRECT_SETNEWDA", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a56c1f2be3412ee3af9678b2bdf95102a", null ], + [ "I3C_CCC_DIRECT_SETMWL", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ac9fac028a90f4a7afe693f23838e9869", null ], + [ "I3C_CCC_DIRECT_SETMRL", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8dd9c7bcb05442fcf0a4751608a4a57f", null ], + [ "I3C_CCC_DIRECT_GETMWL", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ad329d0765a5a641db81f8292335f9e99", null ], + [ "I3C_CCC_DIRECT_GETMRL", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a343b8fc7c704fa205b530aa9ac1c0c16", null ], + [ "I3C_CCC_DIRECT_GETPID", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af74c0d73517685e8be6ae66f6a07c05c", null ], + [ "I3C_CCC_DIRECT_GETBCR", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a5fd66e6e9c4409de3d8d7e0161fb8cdd", null ], + [ "I3C_CCC_DIRECT_GETDCR", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a83759ef85966ef3d6098e0eda089ab19", null ], + [ "I3C_CCC_DIRECT_GETSTATUS", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af39fa810aa779ab934064116903c409f", null ], + [ "I3C_CCC_DIRECT_GETACCMST", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a696a95c054c95406323e9cefa14b1b93", null ], + [ "I3C_CCC_DIRECT_GETMXDS", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a29237e5c8191b16f48c66cf5a484b812", null ], + [ "I3C_CCC_DIRECT_SETXTIME", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aa92f265992e1acc07c57946f1c8d10d2", null ], + [ "I3C_CCC_DIRECT_GETXTIME", "group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a66ec92cc7e4fd378938a6d623bd44b6b", null ] + ] ], + [ "i3c_event_t", "group___i3_c___a_p_i.html#gaaeacda02a21254776fcbc47ab1ff265c", [ + [ "I3C_EVENT_ENTDAA_ADDRESS_PHASE", "group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265cadfebca77a845caf0935ca9647c66eb67", null ], + [ "I3C_EVENT_IBI_READ_COMPLETE", "group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca9af3b8a5b489c8cd30b2f563b4323f5e", null ], + [ "I3C_EVENT_IBI_READ_BUFFER_FULL", "group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265cac5b7d7a4cdbe9197e4c6034008270fa8", null ], + [ "I3C_EVENT_READ_BUFFER_FULL", "group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca401943802babdddf23fdc32573c220d2", null ], + [ "I3C_EVENT_IBI_WRITE_COMPLETE", "group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca49e2d860a954f25bfee5d3f6755d3b54", null ], + [ "I3C_EVENT_HDR_EXIT_PATTERN_DETECTED", "group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265caa2355b778aac9f8345b76e1aa6bbcfb5", null ], + [ "I3C_EVENT_ADDRESS_ASSIGNMENT_COMPLETE", "group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca178a51755c49a2a63cf7b376b2578f2a", null ], + [ "I3C_EVENT_COMMAND_COMPLETE", "group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca2e5a0467001efaba19b6c2de17d182be", null ], + [ "I3C_EVENT_WRITE_COMPLETE", "group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca9379590b2f8f1411715ba425c6c15a4b", null ], + [ "I3C_EVENT_READ_COMPLETE", "group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265cabfc8612eeb0cd4e93456d6844686c135", null ], + [ "I3C_EVENT_TIMEOUT_DETECTED", "group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca68834ad7d19b19947bafc01ce50a8e3f", null ], + [ "I3C_EVENT_INTERNAL_ERROR", "group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca2f461eca70d64741f14d4b92445608d3", null ] + ] ], + [ "i3c_device_type_t", "group___i3_c___a_p_i.html#ga890e3f0ba27c4a963dc5901bfbed439c", [ + [ "I3C_DEVICE_TYPE_MAIN_MASTER", "group___i3_c___a_p_i.html#gga890e3f0ba27c4a963dc5901bfbed439ca55632ac0c5b5d0e704a0b7c6b405beba", null ], + [ "I3C_DEVICE_TYPE_SLAVE", "group___i3_c___a_p_i.html#gga890e3f0ba27c4a963dc5901bfbed439caf0202c7dc1948d7191c5005fc9d38b47", null ] + ] ], + [ "i3c_device_protocol_t", "group___i3_c___a_p_i.html#gaa7585dee427a1d95926f88dd55ecf305", [ + [ "I3C_DEVICE_PROTOCOL_I2C", "group___i3_c___a_p_i.html#ggaa7585dee427a1d95926f88dd55ecf305a68c12b56610277eac342a9aa5b5fcb1b", null ], + [ "I3C_DEVICE_PROTOCOL_I3C", "group___i3_c___a_p_i.html#ggaa7585dee427a1d95926f88dd55ecf305a6b32868175ba9fb454f459441be611be", null ] + ] ], + [ "i3c_address_assignment_mode_t", "group___i3_c___a_p_i.html#ga6ebef50cdf52650f03e1b449325779fc", [ + [ "I3C_ADDRESS_ASSIGNMENT_MODE_ENTDAA", "group___i3_c___a_p_i.html#gga6ebef50cdf52650f03e1b449325779fca747529dae6e854111df4e95e9ba3c91a", null ] + ] ], + [ "i3c_ibi_type_t", "group___i3_c___a_p_i.html#ga81ac58196d67e74a0a3702c3e760ede7", [ + [ "I3C_IBI_TYPE_INTERRUPT", "group___i3_c___a_p_i.html#gga81ac58196d67e74a0a3702c3e760ede7a29e66a0c093804099f1680935b8390a7", null ], + [ "I3C_IBI_TYPE_HOT_JOIN", "group___i3_c___a_p_i.html#gga81ac58196d67e74a0a3702c3e760ede7ae53f3f0966395df095e951839052c6ca", null ], + [ "I3C_IBI_TYPE_MASTERSHIP_REQUEST", "group___i3_c___a_p_i.html#gga81ac58196d67e74a0a3702c3e760ede7a6aec7546d7484201fa4442c4b37b3d8c", null ] + ] ] +]; \ No newline at end of file diff --git a/group___i3_c___b.html b/group___i3_c___b.html new file mode 100644 index 0000000..b6e1f7a --- /dev/null +++ b/group___i3_c___b.html @@ -0,0 +1,1883 @@ + + + + + + + +RZV Flexible Software Package Documentation: I3C (r_i3c_b) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_I3C_B_Open (i3c_ctrl_t *const p_api_ctrl, i3c_cfg_t const *const p_cfg)
     
    fsp_err_t R_I3C_B_Enable (i3c_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_I3C_B_DeviceCfgSet (i3c_ctrl_t *const p_api_ctrl, i3c_device_cfg_t const *const p_device_cfg)
     
    fsp_err_t R_I3C_B_MasterDeviceTableSet (i3c_ctrl_t *const p_api_ctrl, uint32_t device_index, i3c_device_table_cfg_t const *const p_device_table_cfg)
     
    fsp_err_t R_I3C_B_SlaveStatusSet (i3c_ctrl_t *const p_api_ctrl, i3c_device_status_t status)
     
    fsp_err_t R_I3C_B_DeviceSelect (i3c_ctrl_t *const p_api_ctrl, uint32_t device_index, uint32_t bitrate_mode)
     
    fsp_err_t R_I3C_B_DynamicAddressAssignmentStart (i3c_ctrl_t *const p_api_ctrl, i3c_address_assignment_mode_t address_assignment_mode, uint32_t starting_device_index, uint32_t device_count)
     
    fsp_err_t R_I3C_B_CommandSend (i3c_ctrl_t *const p_api_ctrl, i3c_command_descriptor_t *p_command_descriptor)
     
    fsp_err_t R_I3C_B_Write (i3c_ctrl_t *const p_api_ctrl, uint8_t const *const p_data, uint32_t length, bool restart)
     
    fsp_err_t R_I3C_B_Read (i3c_ctrl_t *const p_api_ctrl, uint8_t *const p_data, uint32_t length, bool restart)
     
    fsp_err_t R_I3C_B_IbiWrite (i3c_ctrl_t *const p_api_ctrl, i3c_ibi_type_t ibi_type, uint8_t const *const p_data, uint32_t length)
     
    fsp_err_t R_I3C_B_IbiRead (i3c_ctrl_t *const p_api_ctrl, uint8_t *const p_data, uint32_t length)
     
    fsp_err_t R_I3C_B_Close (i3c_ctrl_t *const p_api_ctrl)
     
    +

    Detailed Description

    +

    Driver for the I3C peripheral on RZ MPU. This module implements the I3C Interface.

    +

    +Overview

    +

    I3C is a communication protocol defined by MIPI that aims to improve on I2C by increasing the maximum transfer rate, as well as providing other features like "In-band Interrupts", "Dynamic Address Assignment", and a set of standard "Common Command Codes".

    +

    +Features

    +

      +
    • I3C Master Mode
    • +
    • I3C Slave Mode
    • +
    • Dynamic Address Assignment (ENTDAA/SETDASA)
    • +
    • SDR Read/Write transfers
    • +
    • I2C Legacy Read/Write transfers
    • +
    • In-Band Interrupts (Interrupt Requests, Hot-Join Requests)
    • +
    • Common Command Codes
    • +
    • Clock Stalling
    • +
    • Timeout Detection
    • +
    +

    Master Mode

    +

    On an I3C bus, only one device may operate in master mode at a time. The current master is responsible for initiating I2C Legacy transfers, SDR transfers, Common Command Codes, and handling IBIs (Interrupt Requests, Hot-Join Requests). In order to perform these operations, the driver has an internal device table that is used for storing configuration information for each device on the bus (See i3c_device_table_cfg_t). Each entry in the device table contains the static or dynamic address of the device, and IBI permissions for accepting or rejecting IBI requests from the device. The device table has a limited number of entries as well as one extended device entry that only contains the static or dynamic address of a device (See below).

    +
    +r_i3c_device_table.svg +
    +Master Device Table
    +

    In order to initiate I2C Legacy transfers, SDR transfers, or Common Command Codes, the master must select a device entry from the device table using i3c_api_t::deviceSelect. Once a device has been selected, all subsequent operations will be directed to the selected device until a new device is selected using i3c_api_t::deviceSelect.

    +

    The master may also receive IBI requests that are initiated by slave devices on the bus. If there is a payload, then the driver will write the data into a buffer that is provided by the application by calling i3c_api_t::ibiRead. If the application has not provided an IBI buffer prior to receiving an IBI, then the it will get a callback requesting an IBI buffer. Once the IBI is completed, the application will be notified by a callback.

    +
    Note
    1. Even though there are only a limited number of device table entries and one extended device table entry, the application can operate on more devices by maintaining its own list of devices and updating the extended device entry as needed. Note however that devices defined in the extended device table entry will not be able to initiate IBI requests.
    +

    Main Master

    +

    The main master is responsible for configuring the dynamic address of all devices on the bus. The driver initiates this procedure by calling i3c_api_t::dynamicAddressAssignmentStart. Before starting address assignment, the application must configure the device table using i3c_api_t::masterDeviceTableSet.

    +

    Enter Dynamic Address Assignment (ENTDAA):

    +

    The application initiates the ENTDAA operation by calling i3c_api_t::dynamicAddressAssignmentStart with a starting index into the master device table and a count specifying the number of devices to configure. The master starts by sending the ENTDAA command. Every I3C device on the bus that has not already been initialized will acknowledge the command and attempt to write its Provisional ID, DCR, and BCR registers. The device with the smallest value in these registers will win arbitration and be assigned with the first dynamic address defined in the master device table. The master will then increment the index and repeat the process by assigning the dynamic address to the next device. The process continues until the specified number of devices have been initialized or until there are no more devices to configure.

    +
    Note
    1. The IBI payload setting will automatically be updated in the master device table based on the BCR setting that was read during ENTDAA.
    +
    +2. After each device successfully writes its Provisional ID, DCR, and BCR registers, the application will get a callback that will provide the value of the registers.
    +
    +3. If the starting index is set to the extended device entry, then the device count must be set to 1.
    +
    +4. The main master assigns its own dynamic address with i3c_api_t::deviceCfgSet.
    +

    Set Dynamic Address from Static Address (SETDASA):

    +

    The application initiates the SETDASA operation by calling i3c_api_t::dynamicAddressAssignmentStart with an index into the master device table. The master sends the SETDASA command to the static address defined in the given device table entry, and then assigns the associated dynamic address.

    +
    Note
    1. Set the count to 0 when using SETDASA.
    +

    Slave Mode

    +

    In slave mode, the device configures its static address, Provisional ID, BCR, and DCR registers using i3c_api_t::deviceCfgSet, and then waits for the master to initiate communication. Prior to being assigned a dynamic address, the slave will operate as an I2C device using its static address. The application will receive a callback when the master assigns it a dynamic address, after which point, the slave will operate as an I3C device until it receives the RSTDAA command.

    +

    Depending on the capabilities defined in its BCR register, the slave may also initiate IBI Interrupt Requests, and Hot-Join Requests using i3c_api_t::ibiWrite

    +

    +Configuration

    +

    Build Time Configurations for r_i3c_b

    +The following build time configurations are defined in fsp_cfg/r_i3c_b_cfg.h:
    +

    + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    Unaligned Buffer Support
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Enabled Unaligned buffer support may be optionally disabled for improved performance.
    Master Support
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Enabled If only slave mode is required, disable master support to decrease code size.
    Slave Support
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Enabled If only master mode is required, disable slave support to decrease code size.
    Error Recovery ProcedureSupport Error Recovery of I3C modeSupport Error Recovery of I3C mode Error Recovery of I3C mode
    +

    Configurations for Connectivity > I3C (r_i3c_b)

    +This module can be added to the Stacks tab via New Stack > Connectivity > I3C (r_i3c_b).
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    Bitrate Settings > Standard Mode > Open-Drain > Logic High Period (ns)Must be an integer greater than 0.167 The Logic High period of SCL during Standard Mode Open Drain transfers.
    Bitrate Settings > Standard Mode > Open-Drain > FrequencyMust be an integer greater than 0.1000000 The Frequency of SCL during Standard Mode Open Drain transfers.
    Bitrate Settings > Standard Mode > Push-Pull > Logic High Period (ns)The Logic High Period must be greater than or equal to 24 Nanoseconds.167 The Logic High period of SCL during Standard Mode Push Pull transfers.
    Bitrate Settings > Standard Mode > Push-Pull > FrequencyPush-Pull frequency must be greater than or equal to 10000 Hz.3400000 The Frequency of SCL during Standard Mode Push-Pull transfers.
    Bitrate Settings > Extended Mode > Open-Drain > Logic High Period (ns)Must be an integer greater than 0.167 The Logic High period of SCL during Extended Mode Open Drain transfers.
    Bitrate Settings > Extended Mode > Open-Drain > FrequencyMust be an integer greater than 0.1000000 The Frequency of SCL during Extended Mode Open Drain transfers.
    Bitrate Settings > Extended Mode > Push-Pull > Logic High Period (ns)The Logic High Period must be greater than or equal to 24 Nanoseconds.167 The Logic High period of SCL during Extended Mode Push Pull transfers.
    Bitrate Settings > Extended Mode > Push-Pull > FrequencyPush-Pull frequency must be greater than or equal to 10000 Hz.3400000 The Frequency of SCL during Extended Mode Push-Pull transfers.
    Bitrate Settings > Bus Timing > Open Drain Rising Time (ns)Rising time must be greater than or equal to 0 nanoseconds.0 The Open Drain rising time in nanoseconds.
    Bitrate Settings > Bus Timing > Open Drain Falling Time (ns)Falling time must be greater than or equal to 0 nanoseconds.0 The Open Drain falling time in nanoseconds.
    Bitrate Settings > Bus Timing > Push-Pull Rising Time (ns)Rising time must be greater than or equal to 0 nanoseconds.0 The Push-Pull rising time in nanoseconds.
    Bitrate Settings > Bus Timing > Push-Pull Falling Time (ns)Falling time must be greater than or equal to 0 nanoseconds.0 The Push-Pull rising time in nanoseconds.
    Bitrate Settings > Clock Stalling > Address Assignment Phase
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled Enable clock stalling during the Address Assignment Phase of ENTDAA.
    Bitrate Settings > Clock Stalling > Transition Phase
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled Enable clock stalling during the Transition Bit of a read transfer.
    Bitrate Settings > Clock Stalling > Parity Phase
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled Enable clock stalling during the Parity Bit of a write transfer.
    Bitrate Settings > Clock Stalling > Ack Phase
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled Enable clock stalling during the ACK phase of a transfer.
    Bitrate Settings > Clock Stalling > Time (us)Must be greater than or equal to 0.0 The amount of time to stall the clock during the Address Assignment Phase, Transition Phase, Parity Phase, and ACK Phase.
    Master Mode > ACK Hot-Join Requests
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled If enabled, the I3C_B instance will ACK Hot-Join Requests and notify the application.
    Master Mode > Notify Rejected Hot-Join Requests.
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled If enabled, the application will get a callback when an IBI Hot-Join Request is rejected.
    Master Mode > Notify Rejected Mastership Requests.
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled If enabled, the application will get a callback when an IBI Mastership Request is rejected.
    Master Mode > Notify Rejected Interrupt Requests.
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled If enabled, the application will get a callback when an IBI Interrupt Request is rejected.
    Slave Mode > Command Response Info > ENEC/DISEC > In-Band Interrupts
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled Configure whether the slave can issue IBI requests.
    Slave Mode > Command Response Info > ENEC/DISEC > Hot-Join Requests
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled Configure whether the slave can issue Hot-Join requests.
    Slave Mode > Command Response Info > ENTASn > Activity State
      +
    • +Activity State 0
    • +
    • +Activity State 1
    • +
    • +Activity State 2
    • +
    • +Activity State 3
    • +
    +
    Activity State 0 Configure the starting activity state of the slave.
    Slave Mode > Command Response Info > SETMWL/GETMWL > Max Write LengthWrite length must be in the range of [8, 65535].65535 Set the max write length.
    Slave Mode > Command Response Info > SETMRL/GETMRL > Max Read LengthRead length must be in the range of [16, 65535].65535 Set the max read length.
    Slave Mode > Command Response Info > SETMRL/GETMRL > Max IBI Payload LengthRead length must be in the range of [0, 255].0 Set the max IBI payload length, or set it to 0 for unlimited.
    Slave Mode > Command Response Info > GETMXDS > Write Data Rate
      +
    • +FSCL_MAX
    • +
    • +8Mhz
    • +
    • +6Mhz
    • +
    • +4Mhz
    • +
    • +2Mhz
    • +
    +
    2Mhz Set the max write data rate.
    Slave Mode > Command Response Info > GETMXDS > Read Data Rate
      +
    • +FSCL_MAX
    • +
    • +8Mhz
    • +
    • +6Mhz
    • +
    • +4Mhz
    • +
    • +2Mhz
    • +
    +
    2Mhz Set the max read data rate.
    Slave Mode > Command Response Info > GETMXDS > Clock to Data Turnaround Time
      +
    • +8 Nanoseconds
    • +
    • +9 Nanoseconds
    • +
    • +10 Nanoseconds
    • +
    • +11 Nanoseconds
    • +
    • +12 Nanoseconds
    • +
    • +Greater than 12 Nanoseconds
    • +
    +
    8 Nanoseconds Set the clock to data turnaround time.
    Slave Mode > Command Response Info > GETMXDS > Include Max Read Turnaround Time
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled Configure whether the Max Read Turnaround time will be transmitted.
    Slave Mode > Command Response Info > GETMXDS > Max Read Turnaround TimeValue must be in the range [0, 255].0 Set max read turnaround time.
    Slave Mode > Command Response Info > GETXTIME > Frequency ByteValue must be in the range [0, 255].0 Set the internal oscillator frequency in increments of 0.5 Mhz.
    Slave Mode > Command Response Info > GETXTIME > Inaccuracy ByteValue must be in the range [0, 255].0 Set the oscillator inaccuracy byte in increments of 0.5%
    Interrupts > Interrupt PriorityChannel number must be a positive integer10 The interrupt priority of the RX, TX, RESPONSE, RCV_STATUS, and IBI ISRs.
    Interrupts > Error and Event Interrupt PriorityChannel number must be a positive integer10 The interrupt priority of the EEI ISR which is used to notify the application when an Internal Error, HDR Exit Pattern, or Timeout is detected.
    NameName must be a valid C symbolg_i3c0 Module name.
    CallbackName must be a valid C symbolg_i3c0_callback A user callback function must be provided. This will be called in order to notify the application of I3C_B events and provide status information.
    Callback ContextName must be a valid C symbolNULL A pointer to additional application specific information that is provided to the callback.
    Device Type
      +
    • +Main Master
    • +
    • +Slave
    • +
    +
    Slave The role that the I3C_B instance will take on the I3C_B bus.
    Bus Free Condition Detection Time (ns)Must be greater than or equal to 38.4 nanoseconds.38.4 The minimum period occurring after a STOP and before a START.
    Bus Available Condition Detection Time (us)Must be greater than or equal to 1 microsecond.1 The minimum period occurring after the Bus Free Condition when Slaves can initiate IBI requests.
    Bus Idle Condition Detection Time (us)Must be greater than or equal to 1000 microseconds.1000 The minimum period occurring after the Bus Available Condition when Slaves can initiate Hot-Join requests.
    Timeout Detection
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled If enabled, the application will get a callback if SCL is stuck at a logic high or logic low level for more than 65535 cycles of the I3C_B source clock.
    +

    +

    +Clock Configuration

    +

    The following settings are used to configure the timing of SCL.

      +
    • Frequency of TCLK
    • +
    • Standard Mode
        +
      • Open Drain High Period (THIGH)
      • +
      • Open Drain Frequency
      • +
      • Push-Pull High Period (THIGH)
      • +
      • Push-Pull Frequency
      • +
      +
    • +
    • Extended Mode
        +
      • Open Drain High Period (THIGH)
      • +
      • Open Drain Frequency
      • +
      • Push-Pull High Period (THIGH)
      • +
      • Push-Pull Frquency
      • +
      +
    • +
    • i3c_b_bitrate_mode_t (Set during i3c_api_t::deviceSelect)
    • +
    +

    The Standard and Extended Mode settings define two separate SCL configurations that can be selected at run-time using i3c_api_t::deviceSelect.

    +

    In addition to selecting between the Standard and Extended Mode settings, the base SCL period can also be multiplied using the following options:

      +
    • I3C_B_BITRATE_MODE_I3C_SDR2_STDBR_X2: Multiple the base Standard Open Drain and Push-Pull period by 2.
    • +
    • I3C_B_BITRATE_MODE_I3C_SDR3_EXTBR_X2: Multiple the base Extended Open Drain and Push-Pull period by 2.
    • +
    • I3C_B_BITRATE_MODE_I3C_SDR4_EXTBR_X4: Multiple the base Extended Open Drain and Push-Pull period by 4.
    • +
    +

    In order to get accurate frequency calculations, the Rising and Falling edges must be input into the calculation. These values will depend on the topology the I3C bus that will be different for every application.

    +
    Note
    1. The Standard and Extended Open Drain period settings define the period to use during legacy I2C transfers (Only use the following i3c_b_bitrate_mode_t settings with I2C transfers: I3C_B_BITRATE_MODE_I2C_STDBR, I3C_B_BITRATE_MODE_I2C_EXTBR).
    +
    +2. THIGH is defined in Figure 31 in the MIPI I3C Specification v1.0 and describes the Logic High period.
    +
    +3. Depending on the MCU, TCLK is either derived from PCLKD or from a dedicated I3C Clock (I3CCLK).
    +

    +Pin Configuration

    +

    The I3C peripheral module uses pins on the MCU to communicate to external devices. I/O pins must be selected and configured as required by the external device. An I3C channel would consist of two pins - SDA and SCL for data/address and clock respectively.

    +

    +Usage Notes

    +

    Read and Write in Slave Mode

    +

    In slave mode, calling read or write does not start a transfer. Instead, calling read or write will configure the driver to perform the next read or write transfer using the user provided buffer.

    +

    Provided that a transfer is not already in progress, i3c_api_t::read and i3c_api_t::write can be called to update the internal buffers even if the transfer has not been completed yet. Both the read and write buffers can be configured at the same time in order to prepare the driver for when the master initiates a read or a write transfer.

    +

    If there is no space remaining in a user configured read buffer, the application will get a I3C_EVENT_READ_BUFFER_FULL callback requesting for a new read buffer to be provided.

    +

    Event Status

    +

    When a write, read, ibiWrite, ibiRead or commandSend, operation is completed, the i3c_callback_args_t::event_status should be checked. The event_status will provide information about the success or failure of the operation.

    +

    The following are possible statuses:

    +
    Note
    In master mode, if the master issues a stop condition before the slave ends the transfer via the 'T' bit, the status will be I3C_B_EVENT_STATUS_ABORTED.
    +
    +In slave mode, if the master issues a stop condition before the slave ends the transfer via the 'T' bit, the status will be I3C_B_EVENT_STATUS_ABORTED_TO_MASTER.
    +

    Direct Get Common Command Codes in Slave Mode

    +

    When an I3C slave receives a Command Code of type Direct Get, the response is automatically sent from the device Special Function Registers (SFR). The SFR contains information for each command code and can be configured during open (See i3c_b_extended_cfg_t::slave_command_response_info). This allows the slave to respond to Direct Get Command Codes much faster, and removes the burden of responding to these commands from the application.

    +

    The response to the GETSTATUS command can be configured at run-time using i3c_api_t::slaveStatusSet.

    +

    Disabling Unaligned Buffer Support

    +

    Support for performing read and write operations on unaligned buffers can be disabled in order to improve performance. When unaligned buffer support is disabled, all buffers passed to read, ibiRead, write, ibiWrite, and commandSend must be aligned to 4 bytes and the size of the buffers must be a multiple of 4 bytes.

    +

    In master mode, the value of the length passed to i3c_api_t::read and i3c_api_t::write sets the total length of the operation in bytes. During the read or write operation, the driver may read or write to the last word of memory during the operation. This means that the allocated memory for the buffer passed to read and write needs to be a multiple of 4 bytes even though the transfer length is not a multiple of 4 bytes.

    +

    In slave mode, the length passed to i3c_api_t::read must be a multiple of 4 bytes. The length passed to i3c_api_t::write sets the number of bytes that the slave will write. The size of the buffer passed to write still needs to be a multiple of 4 bytes.

    +

    Max Data Speed Limitation on RA2E2 MCUs

    +

    In Slave Mode, it is highly recommended that BCR[0] be set to '1' in order to indicate to the master that the device doesn't support the max data speed. The master is then required to use the GETMXDS command to get the device specific data speed limitations.

    +

    This will allow the slave to specify its maximum supported data rate for read/write, and the maximum read turnaround time (See GETMXDS in the MIPI I3C Specification v1.0).

    +

    Mixed Fast Bus

    +

    The MIPI I3C Specification v1.0 defines a Mixed Fast Bus as a bus that has legacy I2C devices that all have a 50ns Spike Filter.

    +

    On Mixed Fast Buses, SCL has the following constraints during I3C SDR transfers:

      +
    • SCL High Period: tDIG_H_MIXED(MIN) to tDIG_H_MIXED(MAX)
    • +
    • SCL Low Period: Up to tDIG_L(MAX)
    • +
    +

    In this case, configure the Extended Bitrate settings for I3C SDR transfers, and use the Standard Bitrate settings for I2C transfers.

    +
    Note
    1. See section 5.1.2.4 in the MIPI I3C Specification v1.0.
    +

    Mixed Slow Bus

    +

    The MIPI I3C Specification v1.0 defines a Mixed Slow Bus as a bus that has legacy I2C devices that do not have a 50ns Spike Filter.

    +

    In this case, the SCL frequency is limited to I2C Fast Mode or I2C Fast Mode Plus.

    +
    Note
    1. See section 5.1.2.4 in the MIPI I3C Specification v1.0.
    +

    +Limitations

    +

    Developers should be aware of the following limitations when using the I3C:

    +
      +
    • The MIPI Reserved area and Vendor Extension area of Command Codes are not supported.
    • +
    • Mixed Fast Bus topology has the following limitation on RA2E2 MCUs. The minimum SCL high period (TDIG_H) is 156 nanoseconds when PCLKD is 48 Mhz, and 120 nanoseconds when PCLKD is 64 Mhz. On a Mixed Fast Bus, the high period TDIG_HIGH_MIXED must be less than 45 nanoseconds in order to ensure that Legacy I2C devices do not interpret I3C signaling as valid I2C signaling (See Table 111 Push-Pull-Timing Parameters in the MIPI I3C Specification v1.1). This required high period cannot be achievable with RA2E2 MCUs.
    • +
    • Secondary Master device role is not currently supported.
    • +
    +

    +Examples

    +

    I3C Master Basic Example

    +

    This is a basic example of minimal use of the I3C Master in an application.

    +
    void i3c_b_master_basic_example (void)
    {
    /* Initializes the module. */
    fsp_err_t status = R_I3C_B_Open(&g_i3c_ctrl, &g_i3c_cfg);
    assert(FSP_SUCCESS == status);
    static i3c_device_cfg_t master_device_cfg =
    {
    /* This is the Static I3C / I2C Legacy address defined by the device manufacturer. */
    .static_address = EXAMPLE_MASTER_STATIC_ADDRESS,
    /* If the device is a main master, it must configure its own dynamic address. */
    .dynamic_address = EXAMPLE_MASTER_DYNAMIC_ADDRESS,
    };
    status = R_I3C_B_DeviceCfgSet(&g_i3c_ctrl, &master_device_cfg);
    assert(FSP_SUCCESS == status);
    static i3c_device_table_cfg_t device_table_cfg =
    {
    /* This is the Static I3C / I2C Legacy address defined by the device manufacturer. */
    .static_address = EXAMPLE_STATIC_ADDRESS,
    /* Dynamic address is not used in I2C. */
    .dynamic_address = EXAMPLE_DYNAMIC_ADDRESS,
    /* This is the type of device. It may be either an I2C device or an I3C device. */
    .device_protocol = I3C_DEVICE_PROTOCOL_I3C,
    .ibi_accept = false,
    /* Depending on the device the IBI requests may have a data payload.
    * Note that this field will be automatically updated if the device is configured using ENTDAA.
    */
    .ibi_payload = false,
    /* Master requests cannot be accepted because Secondary Master is not supported. */
    .master_request_accept = false,
    };
    /* Set the device configuration in the master device table. */
    status = R_I3C_B_MasterDeviceTableSet(&g_i3c_ctrl, 0, &device_table_cfg);
    assert(FSP_SUCCESS == status);
    /* Enable the I3C device. */
    status = R_I3C_B_Enable(&g_i3c_ctrl);
    assert(FSP_SUCCESS == status);
    /* Start assigning dynamic addresses to devices on the bus using the ENTDAA command. */
    assert(FSP_SUCCESS == status);
    /* Wait for dynamic address assignment to complete. */
    /* Select the configured device and bitrate mode for the following operations. */
    assert(FSP_SUCCESS == status);
    /* Start a write transfer. */
    static uint8_t p_write_buffer[] = {1, 2, 3, 4, 5};
    status = R_I3C_B_Write(&g_i3c_ctrl, p_write_buffer, sizeof(p_write_buffer), false);
    assert(FSP_SUCCESS == status);
    /* Wait for the write transfer to complete. */
    i3c_b_app_event_wait(I3C_EVENT_WRITE_COMPLETE);
    /* Start a read transfer. */
    static uint8_t p_read_buffer[16];
    status = R_I3C_B_Read(&g_i3c_ctrl, p_read_buffer, sizeof(p_read_buffer), false);
    assert(FSP_SUCCESS == status);
    /* Wait for the read transfer to complete. */
    i3c_b_app_event_wait(I3C_EVENT_READ_COMPLETE);
    }
    /* This function is called by the I3C driver from ISRs in order to notify the application of I3C events. */
    void i3c_b_master_basic_example_callback (i3c_callback_args_t const * const p_args)
    {
    switch (p_args->event)
    {
    {
    /* The device PID, DCR, and BCR registers will be available in i3c_callback_args_t::p_slave_info. */
    break;
    }
    {
    i3c_b_app_event_notify(I3C_EVENT_ADDRESS_ASSIGNMENT_COMPLETE);
    break;
    }
    {
    i3c_b_app_event_notify(I3C_EVENT_WRITE_COMPLETE);
    break;
    }
    {
    /* The number of bytes read from the slave will be available in i3c_callback_args_t::transfer_size. */
    i3c_b_app_event_notify(I3C_EVENT_READ_COMPLETE);
    break;
    }
    default:
    {
    break;
    }
    }
    }

    I3C Slave Basic Example

    +

    This is a basic example of minimal use of the I3C Slave in an application.

    +
    void i3c_b_slave_basic_example (void)
    {
    /* Initializes the module. */
    fsp_err_t status = R_I3C_B_Open(&g_i3c_ctrl, &g_i3c_cfg);
    assert(FSP_SUCCESS == status);
    static i3c_device_cfg_t slave_device_cfg =
    {
    /* This is the Static I3C / I2C Legacy address defined by the device manufacturer. */
    .static_address = EXAMPLE_STATIC_ADDRESS,
    /* The dynamic address will be automatically updated when the master configures this device using ENTDAA. */
    .dynamic_address = 0,
    /* Device Registers that are read by the master. */
    .slave_info =
    {
    .bcr = EXAMPLE_BCR_SETTING,
    .dcr = EXAMPLE_DCR_SETTING,
    .pid =
    {
    0, 1, 2, 3, 4, 5
    }
    }
    };
    /* Set the device configuration for this device. */
    status = R_I3C_B_DeviceCfgSet(&g_i3c_ctrl, &slave_device_cfg);
    assert(FSP_SUCCESS == status);
    /* Enable Slave Mode. */
    status = R_I3C_B_Enable(&g_i3c_ctrl);
    assert(FSP_SUCCESS == status);
    static uint8_t p_read_buffer[EXAMPLE_READ_BUFFER_SIZE];
    static uint8_t p_write_buffer[EXAMPLE_WRITE_BUFFER_SIZE];
    /* Set the buffer for storing data received during a read transfer. */
    status = R_I3C_B_Read(&g_i3c_ctrl, p_read_buffer, sizeof(p_read_buffer), false);
    assert(FSP_SUCCESS == status);
    /* Wait for the master to complete a read transfer. */
    i3c_b_app_event_wait(I3C_EVENT_READ_COMPLETE);
    /* Set the write buffer that will be transmitted during a write transfer. */
    status = R_I3C_B_Write(&g_i3c_ctrl, p_write_buffer, sizeof(p_write_buffer), false);
    assert(FSP_SUCCESS == status);
    /* Wait for the master to complete a write transfer. */
    i3c_b_app_event_wait(I3C_EVENT_WRITE_COMPLETE);
    }
    void i3c_b_slave_basic_example_callback (i3c_callback_args_t const * const p_args)
    {
    switch (p_args->event)
    {
    {
    i3c_b_app_event_notify(I3C_EVENT_ADDRESS_ASSIGNMENT_COMPLETE);
    break;
    }
    {
    /* If there is no user provided read buffer, or if the user provided read buffer has been filled,
    * the driver will notify the application that the buffer is full. The application may provide
    * a new read buffer by calling i3c_b_api_t::read. If no read buffer is provided, then any remaining bytes
    * in the transfer will be dropped. */
    uint8_t * p_read_buffer = i3c_b_app_next_read_buffer_get();
    R_I3C_B_Read(&g_i3c_ctrl, p_read_buffer, EXAMPLE_READ_BUFFER_SIZE, false);
    break;
    }
    {
    /* The number of bytes read by the slave will be available in i3c_callback_args_t::transfer_size. */
    i3c_b_app_event_notify(I3C_EVENT_READ_COMPLETE);
    /* Note that the application may also call i3c_b_api_t::read or i3c_b_api_t::write from this event
    * In order to set the transfer buffers for the next transfer. */
    break;
    }
    {
    /* The number of bytes written by the slave will be available in i3c_callback_args_t::transfer_size. */
    i3c_b_app_event_notify(I3C_EVENT_WRITE_COMPLETE);
    /* Note that the application may also call i3c_b_api_t::read or i3c_b_api_t::write from this event
    * In order to set the transfer buffers for the next transfer. */
    break;
    }
    default:
    {
    break;
    }
    }
    }

    I2C Legacy Basic Example

    +

    This is a basic example of minimal use of I2C Legacy transfers in an application.

    +
    void i2c_legacy_basic_example (void)
    {
    /* Initializes the module. */
    fsp_err_t status = R_I3C_B_Open(&g_i3c_ctrl, &g_i3c_cfg);
    assert(FSP_SUCCESS == status);
    static i3c_device_cfg_t master_device_cfg =
    {
    /* This is the Static I3C / I2C Legacy address defined by the device manufacturer. */
    .static_address = EXAMPLE_MASTER_STATIC_ADDRESS,
    /* If the device is a main master, it must configure its own dynamic address. */
    .dynamic_address = EXAMPLE_MASTER_DYNAMIC_ADDRESS,
    };
    status = R_I3C_B_DeviceCfgSet(&g_i3c_ctrl, &master_device_cfg);
    assert(FSP_SUCCESS == status);
    static i3c_device_table_cfg_t device_table_cfg =
    {
    /* This is the Static I3C / I2C Legacy address defined by the device manufacturer. */
    .static_address = EXAMPLE_STATIC_ADDRESS,
    /* Dynamic address is not used in I2C. */
    .dynamic_address = 0,
    /* This is the type of device. It may be either an I2C device or an I3C device. */
    .device_protocol = I3C_DEVICE_PROTOCOL_I2C,
    /* These options are not used in I2C. */
    .ibi_accept = false,
    /* Depending on the device the IBI requests may have a data payload.
    * Note that this field will be automatically updated if the device is configured using ENTDAA.
    */
    .ibi_payload = false,
    /* Master requests cannot be accepted because Secondary Master is not supported. */
    .master_request_accept = false,
    };
    /* Set the device configuration in the master device table. */
    status = R_I3C_B_MasterDeviceTableSet(&g_i3c_ctrl, 0, &device_table_cfg);
    assert(FSP_SUCCESS == status);
    /* Enable the I3C device. */
    status = R_I3C_B_Enable(&g_i3c_ctrl);
    assert(FSP_SUCCESS == status);
    /* Select the configured device for the following operations. */
    assert(FSP_SUCCESS == status);
    /* Start a write transfer. */
    static uint8_t p_write_data[] = {1, 2, 3, 4, 5};
    status = R_I3C_B_Write(&g_i3c_ctrl, p_write_data, sizeof(p_write_data), false);
    assert(FSP_SUCCESS == status);
    /* Wait for the write transfer to complete. */
    i3c_b_app_event_wait(I3C_EVENT_WRITE_COMPLETE);
    /* Start a read transfer. */
    static uint8_t p_read_data[16];
    status = R_I3C_B_Read(&g_i3c_ctrl, p_read_data, sizeof(p_read_data), false);
    assert(FSP_SUCCESS == status);
    /* Wait for the read transfer to complete. */
    i3c_b_app_event_wait(I3C_EVENT_READ_COMPLETE);
    }
    void i2c_legacy_basic_example_callback (i3c_callback_args_t const * const p_args)
    {
    switch (p_args->event)
    {
    {
    i3c_b_app_event_notify(I3C_EVENT_WRITE_COMPLETE);
    break;
    }
    {
    /* The number of bytes read from the slave will be available in i3c_callback_args_t::transfer_size. */
    i3c_b_app_event_notify(I3C_EVENT_READ_COMPLETE);
    break;
    }
    default:
    {
    break;
    }
    }
    }

    I3C Master In-band Interrupts Example

    +

    This is a basic example of reading In-band Interrupts in I3C Master mode.

    +
    void i3c_b_master_ibi_basic_example (void)
    {
    static uint8_t p_ibi_read_buffer[EXAMPLE_READ_BUFFER_SIZE];
    /* Set the buffer for storing IBI data that is read from the slave. */
    fsp_err_t status = R_I3C_B_IbiRead(&g_i3c_ctrl, p_ibi_read_buffer, sizeof(p_ibi_read_buffer));
    assert(FSP_SUCCESS == status);
    /* Wait for the ibiRead transfer to complete.
    * Note that the master does not need to wait for the IBI, and can start other operations. */
    i3c_b_app_event_wait(I3C_EVENT_IBI_READ_COMPLETE);
    }
    void i3c_b_master_ibi_basic_example_callback (i3c_callback_args_t const * const p_args)
    {
    switch (p_args->event)
    {
    {
    /* If there is no user provided ibiRead buffer, or if the user provided ibiRead buffer has been filled,
    * the driver will notify the application that the buffer is full. The application may provide
    * a new read buffer by calling i3c_b_api_t::ibiRead. If no read buffer is provided, then any remaining bytes
    * in the transfer will be dropped. */
    uint8_t * p_read_buffer = i3c_b_app_next_read_buffer_get();
    R_I3C_B_IbiRead(&g_i3c_ctrl, p_read_buffer, EXAMPLE_READ_BUFFER_SIZE);
    break;
    }
    {
    /* When an IBI is completed, the transfer_size, ibi_type, and ibi_address will be available in p_args. */
    switch (p_args->ibi_type)
    {
    {
    /* Notify the application that an IBI was read. */
    i3c_b_app_event_notify(I3C_EVENT_IBI_READ_COMPLETE);
    break;
    }
    {
    /* If a Hot-Join event is received, then the master can initiate the dynamic address assignment procedure. */
    break;
    }
    default:
    {
    break;
    }
    }
    }
    default:
    {
    break;
    }
    }
    }

    I3C Slave In-band Interrupts Example

    +

    This is a basic example of writing In-band Interrupts in I3C Slave mode.

    +
    void i3c_b_slave_ibi_write_basic_example (void)
    {
    uint8_t ibi_write_buffer[EXAMPLE_WRITE_BUFFER_SIZE];
    /* Initiate an In-band interrupt in slave mode.
    * Note: If the slave does not have an IBI payload or if it is a Hot-Join request, the write buffer should be set
    * to NULL and the write length should be set to 0. */
    fsp_err_t status =
    R_I3C_B_IbiWrite(&g_i3c_ctrl, I3C_IBI_TYPE_INTERRUPT, ibi_write_buffer, sizeof(ibi_write_buffer));
    assert(FSP_SUCCESS == status);
    /* Wait for the ibiWrite transfer to complete. */
    i3c_b_app_event_wait(I3C_EVENT_IBI_WRITE_COMPLETE);
    }
    void i3c_b_slave_ibi_write_basic_example_callback (i3c_callback_args_t const * const p_args)
    {
    switch (p_args->event)
    {
    {
    /* Notify the application that the IBI write is complete. */
    i3c_b_app_event_notify(I3C_EVENT_IBI_WRITE_COMPLETE);
    break;
    }
    default:
    {
    break;
    }
    }
    }

    I3C Master Common Command Codes Example

    +

    This is a basic example of sending Common Command Codes in I3C Master mode.

    +
    void i3c_b_master_ccc_example (void)
    {
    static uint8_t command_buffer[EXAMPLE_READ_BUFFER_SIZE];
    /* Setup the command descriptor. */
    static i3c_command_descriptor_t command_descriptor =
    {
    /* Set a buffer for storing the data read by the command. */
    .p_buffer = command_buffer,
    /* The length for a GETSTATUS command is 2 bytes. */
    .length = 2,
    /* Terminate the transfer with a STOP condition. */
    .restart = false,
    /* The GETSTATUS command is a Direct Get Command so rnw should be true. */
    .rnw = true,
    };
    /* Send the command. */
    fsp_err_t status = R_I3C_B_CommandSend(&g_i3c_ctrl, &command_descriptor);
    assert(FSP_SUCCESS == status);
    /* Wait for the command to complete. */
    i3c_b_app_event_wait(I3C_EVENT_COMMAND_COMPLETE);
    /* The command_buffer will have the status info that was read from the slave device. */
    }
    void i3c_b_master_ccc_example_callback (i3c_callback_args_t const * const p_args)
    {
    switch (p_args->event)
    {
    {
    /* Notify the application that the command is complete. */
    i3c_b_app_event_notify(I3C_EVENT_COMMAND_COMPLETE);
    break;
    }
    default:
    {
    break;
    }
    }
    }

    I3C Slave Common Command Codes Example

    +

    This is a basic example of receiving Common Command Codes in I3C Slave mode.

    +
    void i3c_b_slave_ccc_example (void)
    {
    static uint8_t read_buffer[EXAMPLE_READ_BUFFER_SIZE];
    /* Broadcast and Direct Set commands will be read into the read_buffer the same way that
    * a normal SDR Master Write / Slave Read transfer is read. */
    fsp_err_t status = R_I3C_B_Read(&g_i3c_ctrl, read_buffer, sizeof(read_buffer), false);
    assert(FSP_SUCCESS == status);
    /* Wait for the command to complete. */
    i3c_b_app_event_wait(I3C_EVENT_COMMAND_COMPLETE);
    }
    void i3c_b_slave_ccc_example_callback (i3c_callback_args_t const * const p_args)
    {
    switch (p_args->event)
    {
    {
    /* The command code and transfer size will be available in p_args.
    * If the command code is a Broadcast or Direct Set, then data will
    * be stored in the read buffer provided by i3c_b_api_t::read.
    * If the command code is a Direct Get, then the data will be automatically
    * sent from device SFR. */
    i3c_b_app_event_notify(I3C_EVENT_COMMAND_COMPLETE);
    break;
    }
    default:
    {
    break;
    }
    }
    }
    + + + + + + + + + + + + + +

    +Data Structures

    struct  i3c_b_clock_stalling_t
     
    struct  i3c_b_bitrate_settings_t
     
    struct  i3c_b_ibi_control_t
     
    struct  i3c_b_slave_command_response_info_t
     
    struct  i3c_b_instance_ctrl_t
     
    struct  i3c_b_extended_cfg_t
     
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Macros

    #define I3C_B_ERROR_RECOVERY_VERSION_1
     Support error recovery procedure for chip version 1. More...
     
    +#define I3C_B_ERROR_RECOVERY_VERSION_2
     Support error recovery procedure for chip version 2.
     
    +#define I3C_B_ERROR_RECOVERY_VERSION_BOTH
     Support error recovery procedure for chip version 1 and version 2.
     
    #define I3C_B_DEVICE_INDEX_EXTENDED_DEVICE
     
    #define I3C_B_EVENT_STATUS_SUCCESS
     The transfer was completed as expected. More...
     
    +#define I3C_B_EVENT_STATUS_PARITY
     A parity error was detected.
     
    +#define I3C_B_EVENT_STATUS_FRAME
     A frame error was detected.
     
    +#define I3C_B_EVENT_STATUS_ADDRESS_HEADER
     An Address Header error wasdetected.
     
    +#define I3C_B_EVENT_STATUS_NACK
     The transfer was NACK'd.
     
    +#define I3C_B_EVENT_STATUS_OVERFLOW
     A Receive FIFO overflow or Transmit FIFO underflow occurred.
     
    +#define I3C_B_EVENT_STATUS_ABORTED_TO_MASTER
     In slave mode, the write transfer was ended via the 'T' bit.
     
    +#define I3C_B_EVENT_STATUS_ABORTED
     In master mode, the transfer was aborted.
     
    +#define I3C_B_EVENT_STATUS_IBI_NACK_DISABLED
     An IBI was NACK'd and the a DISEC command was sent.
     
    + + + + + + + + + +

    +Enumerations

    enum  i3c_b_bitrate_mode_t
     
    enum  i3c_b_activity_state_t
     
    enum  i3c_b_data_rate_setting_t
     
    enum  i3c_b_clock_data_turnaround_t
     
    +

    Data Structure Documentation

    + +

    ◆ i3c_b_clock_stalling_t

    + +
    +
    + + + + +
    struct i3c_b_clock_stalling_t
    +
    +

    Clock stalling settings.

    +
    + + + + + + + + + + + + + + + + +
    Data Fields
    +uint32_t +assigned_address_phase_enable: 1 +Enable Clock Stalling during the address phase of the ENTDAA command.
    +uint32_t +transition_phase_enable: 1 +Enable Clock Stalling during the transition bit in read transfers.
    +uint32_t +parity_phase_enable: 1 +Enable Clock Stalling during the parity bit period in write transfers.
    +uint32_t +ack_phase_enable: 1 +Enable Clock Stalling during the ACK/NACK phase.
    +uint16_t +clock_stalling_time +The amount of time to stall the clock in I3C source clock ticks.
    + +
    +
    + +

    ◆ i3c_b_bitrate_settings_t

    + +
    +
    + + + + +
    struct i3c_b_bitrate_settings_t
    +
    +

    Bitrate settings for configuring the SCL clock frequency.

    +
    + + + + + + + + + + +
    Data Fields
    +uint32_t +stdbr +The standard bitrate settings.
    +uint32_t +extbr +The extended bitrate settings.
    +i3c_b_clock_stalling_t +clock_stalling +

    Clock Stalling settings (See Master Clock Stalling in the MIPI I3C Specification v1.0).

    +
    + +
    +
    + +

    ◆ i3c_b_ibi_control_t

    + +
    +
    + + + + +
    struct i3c_b_ibi_control_t
    +
    +

    Settings for controlling the drivers behavior in response to IBIs.

    +
    + + + + + + + + + + + + + +
    Data Fields
    +uint32_t +hot_join_acknowledge: 1 +If false, NACK all Hot Join requests.
    +uint32_t +notify_rejected_hot_join_requests: 1 +Notify the application when an IBI Hot-Join request has been NACK'd.
    +uint32_t +notify_rejected_mastership_requests: 1 +Notify the application when an IBI Mastership request has been NACK'd.
    +uint32_t +notify_rejected_interrupt_requests: 1 +Notify the application when an IBI Interrupt request has been NACK'd.
    + +
    +
    + +

    ◆ i3c_b_slave_command_response_info_t

    + +
    +
    + + + + +
    struct i3c_b_slave_command_response_info_t
    +
    +

    Default configuration settings for the slave response to Direct Get Common Command Codes.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +bool +inband_interrupt_enable +Enable IBI interrupts.

    Slave Event Settings (See ENEC and DISEC in the MIPI I3C Specification v1.0).

    +
    +bool +mastership_request_enable +Enable Mastership requests.
    +bool +hotjoin_request_enable +Enable Hot-Join requests.
    +i3c_b_activity_state_t +activity_state +

    Starting Activity State (See ENTASn in the MIPI I3C Specification v1.0).

    +
    +uint16_t +write_length +

    Max Write Length (See SETMWL and GETMWL in the MIPI I3C Specification v1.0).

    +
    +uint16_t +read_length +

    Max Read Length (See SETMRL and GETMRL in the MIPI I3C Specification v1.0).

    +
    +uint8_t +ibi_payload_length +

    Number of bytes that will be written by an IBI (See SETMRL and GETMRL in the MIPI I3C Specification v1.0).

    +
    +i3c_b_data_rate_setting_t +write_data_rate +Max Write Data Rate.

    Max Data Rate Settings (See GETMXDS in the MIPI I3C Specification v1.0).

    +
    +i3c_b_data_rate_setting_t +read_data_rate +Max Read Data Rate.
    +i3c_b_clock_data_turnaround_t +clock_data_turnaround +Max Data Speed Turnaround.
    +bool +read_turnaround_time_enable +Enable transmission of the of the Max Read Max Read Turnaround Time.
    +uint32_t +read_turnaround_time +Max Read Turnaround Time.
    +uint8_t +oscillator_frequency +

    This byte represents the Slave’s internal oscillator frequency in increments of 0.5 MHz (500kHz), up to 127.5 MHz. (See GETXTIME in the MIPI I3C Specification v1.1).

    +
    +uint8_t +oscillator_inaccuracy +

    Oscillator inaccuracy in 0.5% increments of 0% up to 25.5% (See GETXTIME in the MIPI I3C Specification v1.1).

    +
    + +
    +
    + +

    ◆ i3c_b_instance_ctrl_t

    + +
    +
    + + + + +
    struct i3c_b_instance_ctrl_t
    +
    +

    Channel control block. DO NOT INITIALIZE. Initialization occurs when i3c_api_t::open is called.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Public Member Functions

    +i3c_slave_info_t current_slave_info BSP_ALIGN_VARIABLE (4)
     The last i3c_slave_info_t read during ENTDAA.
     

    Data Fields

    +uint32_t open
     Indicates whether the open() API has been successfully called.
     
    +R_I3C_B0_Type * p_reg
     Base register for this channel.
     
    +volatile uint32_t internal_state
     Used to track the current state of the driver.
     
    +uint8_t current_command_code
     The current Common Command Code that is being transferred.
     
    +uint32_t device_index
     The device index selected using i3c_api_t::deviceSelect.
     
    +i3c_b_bitrate_mode_t device_bitrate_mode
     Runtime bitrate settings to use for the next transfer.
     
    +uint32_t next_word
     The next word that will be written to the FIFO.
     
    +uint32_t ibi_next_word
     The next word that will be written to the IBI FIFO.
     
    +i3c_b_write_buffer_descriptor_t write_buffer_descriptor
     Buffer descriptor for keeping track of a write transfer.
     
    +i3c_b_read_buffer_descriptor_t read_buffer_descriptor
     Buffer descriptor for keeping track of a read transfer.
     
    +i3c_b_read_buffer_descriptor_t ibi_buffer_descriptor
     Buffer descriptor for keeping track of an IBI read/write transfer.
     
    +volatile uint32_t read_transfer_count_final
     The total number of bytes read during a read transfer.
     
    +volatile uint32_t ibi_transfer_count_final
     The total number of bytes read during an IBI transfer.
     
    +i3c_cfg_t const * p_cfg
     A pointer to the configuration structure provided during open.
     
    + +
    +
    + +

    ◆ i3c_b_extended_cfg_t

    + +
    +
    + + + + +
    struct i3c_b_extended_cfg_t
    +
    +

    Extended configuration for r_i3c_b.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +i3c_b_bitrate_settings_t +bitrate_settings +Bitrate settings configuring the frequency and duty cycle for SCL.
    +i3c_b_ibi_control_t +ibi_control +Configure the driver's behavior in response to IBIs.
    +uint32_t +bus_free_detection_time +

    The time in I3C reference clock ticks needed in order to detect the bus free condition (See "Bus Free Condition" in the MIPI I3C Specification v1.0).

    +
    +uint32_t +bus_available_detection_time +

    The time in I3C reference clock ticks needed in order to detect the bus available condition (See "Bus Available Condition" in the MIPI I3C Specification v1.0).

    +
    +uint32_t +bus_idle_detection_time +

    The time in I3C reference clock ticks needed in order to detect the bus idle condition (See "Bus Idle Condition" in the MIPI I3C Specification v1.0).

    +
    +bool +timeout_detection_enable +Notify the application if SCL is stuck high or low.
    +i3c_b_slave_command_response_info_t +slave_command_response_info +

    Initial settings for configuring the slave's responses to received commands.

    +
    +IRQn_Type +resp_irq +Response Queue Full IRQ number.
    +IRQn_Type +rx_irq +Receive FIFO Full IRQ number.
    +IRQn_Type +tx_irq +Transmit FIFO Empty IRQ number.
    +IRQn_Type +rcv_irq +Receive Status Queue Full IRQ number.
    +IRQn_Type +ibi_irq +IBI IRQ number.
    +IRQn_Type +st_irq +Start condition IRQ Number.
    +IRQn_Type +sp_irq +Stop condition IRQ Number.
    +IRQn_Type +tmo_irq +Timeout IRQ Number.
    +IRQn_Type +ierr_irq +Non-recoverable internal error IRQ Numbe.
    +IRQn_Type +terr_irq +Transfer Error IRQ Number.
    +IRQn_Type +abort_irq +Transfer Abort IRQ Number.
    +IRQn_Type +wu_irq +Wake-up IRQ Number.
    +uint8_t +ipl +Interrupt Priority for Resp, Rx, Tx, and RCV IRQs.
    +uint8_t +eei_ipl +Error and Event Interrupt Priority.
    + +
    +
    +

    Macro Definition Documentation

    + +

    ◆ I3C_B_ERROR_RECOVERY_VERSION_1

    + +
    +
    + + + + +
    #define I3C_B_ERROR_RECOVERY_VERSION_1
    +
    + +

    Support error recovery procedure for chip version 1.

    +

    There are two different versions of the RA2E2 MCU and the error recovery procedure is different for each version.

    + +
    +
    + +

    ◆ I3C_B_DEVICE_INDEX_EXTENDED_DEVICE

    + +
    +
    + + + + +
    #define I3C_B_DEVICE_INDEX_EXTENDED_DEVICE
    +
    +

    Index for selecting the device defined in the extended address table.

    + +
    +
    + +

    ◆ I3C_B_EVENT_STATUS_SUCCESS

    + +
    +
    + + + + +
    #define I3C_B_EVENT_STATUS_SUCCESS
    +
    + +

    The transfer was completed as expected.

    +

    Event Status Provided by the callback.

    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ i3c_b_bitrate_mode_t

    + +
    +
    + + + + +
    enum i3c_b_bitrate_mode_t
    +
    +

    Bitrate settings that can be selected at run-time using i3c_api_t::deviceSelect.

    + + + + + + + + +
    Enumerator
    I3C_B_BITRATE_MODE_I2C_STDBR 

    Use the period settings defined in STDBRH/L.

    +
    I3C_B_BITRATE_MODE_I2C_EXTBR 

    Use the period settings defined in EXTBRH/L.

    +
    I3C_B_BITRATE_MODE_I3C_SDR0_STDBR 

    Use the period settings defined in STDBRH/L (I3C Devices only).

    +
    I3C_B_BITRATE_MODE_I3C_SDR1_EXTBR 

    Use the period settings defined in EXTBRH/L (I3C Devices only).

    +
    I3C_B_BITRATE_MODE_I3C_SDR2_STDBR_X2 

    Use the period settings defined in STDBRH/L x 2 (I3C Devices only).

    +
    I3C_B_BITRATE_MODE_I3C_SDR3_EXTBR_X2 

    Use the period settings defined in EXTBRH/L x 2 (I3C Devices only).

    +
    I3C_B_BITRATE_MODE_I3C_SDR4_EXTBR_X4 

    Use the period settings defined in EXTBRH/L x 4 (I3C Devices only).

    +
    + +
    +
    + +

    ◆ i3c_b_activity_state_t

    + +
    +
    + + + + +
    enum i3c_b_activity_state_t
    +
    +

    Supported activity states for ENTASn Command (See ENTASn in the MIPI I3C Specification v1.0).

    + + + + + +
    Enumerator
    I3C_B_ACTIVITY_STATE_ENTAS0 

    Activity Interval (1 microsecond).

    +
    I3C_B_ACTIVITY_STATE_ENTAS1 

    Activity Interval (100 microseconds).

    +
    I3C_B_ACTIVITY_STATE_ENTAS2 

    Activity Interval (2 milliseconds).

    +
    I3C_B_ACTIVITY_STATE_ENTAS3 

    Activity Interval (50 milliseconds).

    +
    + +
    +
    + +

    ◆ i3c_b_data_rate_setting_t

    + +
    +
    + + + + +
    enum i3c_b_data_rate_setting_t
    +
    +

    Maximum Sustained Data Rate for non-CCC messages sent by Master Device to Slave Device (See GETMXDS in the MIPI I3C Specification v1.0).

    + + + + + + +
    Enumerator
    I3C_B_DATA_RATE_SETTING_FSCL_MAX 

    There is no data rate limit.

    +
    I3C_B_DATA_RATE_SETTING_8MHZ 

    The max sustained data rate is 8 Mhz.

    +
    I3C_B_DATA_RATE_SETTING_6MHZ 

    The max sustained data rate is 6 Mhz.

    +
    I3C_B_DATA_RATE_SETTING_4MHZ 

    The max sustained data rate is 4 Mhz.

    +
    I3C_B_DATA_RATE_SETTING_2MHZ 

    The max sustained data rate is 2 Mhz.

    +
    + +
    +
    + +

    ◆ i3c_b_clock_data_turnaround_t

    + +
    +
    +

    Clock to Data Turnaround Time (See GETMXDS in the MIPI I3C Specification v1.0).

    + + + + + + + +
    Enumerator
    I3C_B_CLOCK_DATA_TURNAROUND_8NS 

    Clock to turnaround time is 8 nanoseconds or less.

    +
    I3C_B_CLOCK_DATA_TURNAROUND_9NS 

    Clock to turnaround time is 9 nanoseconds or less.

    +
    I3C_B_CLOCK_DATA_TURNAROUND_10NS 

    Clock to turnaround time is 10 nanoseconds or less.

    +
    I3C_B_CLOCK_DATA_TURNAROUND_11NS 

    Clock to turnaround time is 11 nanoseconds or less.

    +
    I3C_B_CLOCK_DATA_TURNAROUND_12NS 

    Clock to turnaround time is 12 nanoseconds or less.

    +
    I3C_B_CLOCK_DATA_TURNAROUND_EXTENDED 

    Clock to turnaround time is greater than 12 nanoseconds.

    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_I3C_B_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_I3C_B_Open (i3c_ctrl_t *const p_api_ctrl,
    i3c_cfg_t const *const p_cfg 
    )
    +
    +

    Configure an I3C_B instance. Implements i3c_api_t::open.

    +
    Return values
    + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONAn argument was invalid.
    FSP_ERR_ALREADY_OPENOpen has already been called for this instance.
    FSP_ERR_UNSUPPORTEDA selected feature is not supported with the current configuration.
    +
    +
    + +
    +
    + +

    ◆ R_I3C_B_Enable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_I3C_B_Enable (i3c_ctrl_t *const p_api_ctrl)
    +
    +

    Enable the I3C device.

    +
    Return values
    + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONAn argument was NULL.
    FSP_ERR_NOT_OPENThis instance has not been opened yet.
    FSP_ERR_INVALID_MODEThis instance is already enabled.
    +
    +
    + +
    +
    + +

    ◆ R_I3C_B_DeviceCfgSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_I3C_B_DeviceCfgSet (i3c_ctrl_t *const p_api_ctrl,
    i3c_device_cfg_t const *const p_device_cfg 
    )
    +
    +

    Set the configuration for this device.

    +
    Return values
    + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONAn argument was NULL.
    FSP_ERR_NOT_OPENThis instance has not been opened yet.
    FSP_ERR_UNSUPPORTEDThe device cannot be a secondary master if master support is disabled.
    +
    +
    + +
    +
    + +

    ◆ R_I3C_B_MasterDeviceTableSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_I3C_B_MasterDeviceTableSet (i3c_ctrl_t *const p_api_ctrl,
    uint32_t device_index,
    i3c_device_table_cfg_t const *const p_device_table_cfg 
    )
    +
    +

    Configure an entry in the master device table. This function is called in master mode in order to configure the devices on the I3C bus. It may also be called in slave mode when the slave receives the DEFSVLS command.

    +
    Return values
    + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONAn argument was NULL.
    FSP_ERR_NOT_OPENThis instance has not been opened yet.
    FSP_ERR_UNSUPPORTEDMastership requests must be rejected is slave support is disabled.
    +
    +
    + +
    +
    + +

    ◆ R_I3C_B_SlaveStatusSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_I3C_B_SlaveStatusSet (i3c_ctrl_t *const p_api_ctrl,
    i3c_device_status_t status 
    )
    +
    +

    Set the status returned to the master in response to a GETSTATUS command.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONAn argument was NULL.
    FSP_ERR_NOT_OPENThis instance has not been opened yet.
    FSP_ERR_INVALID_MODEThe instance is not in slave mode.
    FSP_ERR_UNSUPPORTEDSlave support is disabled.
    +
    +
    + +
    +
    + +

    ◆ R_I3C_B_DeviceSelect()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_I3C_B_DeviceSelect (i3c_ctrl_t *const p_api_ctrl,
    uint32_t device_index,
    uint32_t bitrate_mode 
    )
    +
    +

    In master mode, select the device for the next transfer. This function is not used in slave mode.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONAn argument was NULL.
    FSP_ERR_NOT_OPENThis instance has not been opened yet.
    FSP_ERR_INVALID_MODEThis operation is prohibited in slave mode.
    FSP_ERR_UNSUPPORTEDMaster support is disabled.
    +
    +
    + +
    +
    + +

    ◆ R_I3C_B_DynamicAddressAssignmentStart()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_I3C_B_DynamicAddressAssignmentStart (i3c_ctrl_t *const p_api_ctrl,
    i3c_address_assignment_mode_t address_assignment_mode,
    uint32_t starting_device_index,
    uint32_t device_count 
    )
    +
    +

    Start the Dynamic Address Assignment Process. Implements i3c_api_t::dynamicAddressAssignmentStart.

    +
    Return values
    + + + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONAn argument was NULL or invalid.
    FSP_ERR_NOT_OPENThis instance has not been opened yet.
    FSP_ERR_INVALID_MODEThis operation is prohibited in slave mode.
    FSP_ERR_IN_USEThe operation could not be completed because the driver is busy.
    FSP_ERR_UNSUPPORTEDMaster support is disabled.
    +
    +
    + +
    +
    + +

    ◆ R_I3C_B_CommandSend()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_I3C_B_CommandSend (i3c_ctrl_t *const p_api_ctrl,
    i3c_command_descriptor_tp_command_descriptor 
    )
    +
    +

    Send a broadcast or direct command to slave devices on the bus. Implements i3c_api_t::commandSend.

    +
    Return values
    + + + + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONAn argument was NULL.
    FSP_ERR_NOT_OPENThis instance has not been opened yet.
    FSP_ERR_IN_USEThe operation could not be completed because the driver is busy.
    FSP_ERR_INVALID_MODEThis driver is not in master mode.
    FSP_ERR_INVALID_ALIGNMENTThe buffer must be aligned to 4 bytes. If it is a read operation, the length also be a multiple of 4 bytes.
    FSP_ERR_UNSUPPORTEDMaster support must be enabled to call this function. Slave support must be enabled when sending the GETACCMST command.
    +
    +
    + +
    +
    + +

    ◆ R_I3C_B_Write()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_I3C_B_Write (i3c_ctrl_t *const p_api_ctrl,
    uint8_t const *const p_data,
    uint32_t length,
    bool restart 
    )
    +
    +

    Set the write buffer for the transfer. In master mode, start the transfer. When the transfer is completed send a stop condition or a repeated-start. Implements i3c_api_t::write.

    +
    Return values
    + + + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONAn argument was NULL.
    FSP_ERR_NOT_OPENThis instance has not been opened yet.
    FSP_ERR_IN_USEThe operation could not be completed because the driver is busy.
    FSP_ERR_INVALID_MODEThis driver is disabled.
    FSP_ERR_INVALID_ALIGNMENTThe buffer must be aligned to 4 bytes.
    +
    +
    + +
    +
    + +

    ◆ R_I3C_B_Read()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_I3C_B_Read (i3c_ctrl_t *const p_api_ctrl,
    uint8_t *const p_data,
    uint32_t length,
    bool restart 
    )
    +
    +

    Set the read buffer for the transfer. In master mode, start the transfer. When the transfer is completed send a stop condition or a repeated-start. Implements i3c_api_t::read.

    +
    Return values
    + + + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONAn argument was NULL.
    FSP_ERR_NOT_OPENThis instance has not been opened yet.
    FSP_ERR_IN_USEThe operation could not be completed because the driver is busy.
    FSP_ERR_INVALID_MODEThis driver is disabled.
    FSP_ERR_INVALID_ALIGNMENTThe buffer must be aligned to 4 bytes and the length must be a multiple of 4 bytes.
    +
    +
    + +
    +
    + +

    ◆ R_I3C_B_IbiWrite()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_I3C_B_IbiWrite (i3c_ctrl_t *const p_api_ctrl,
    i3c_ibi_type_t ibi_type,
    uint8_t const *const p_data,
    uint32_t length 
    )
    +
    +

    Initiate an IBI write operation (This function is only used in slave mode).

    +
    Return values
    + + + + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONAn argument was NULL.
    FSP_ERR_NOT_OPENThis instance has not been opened yet.
    FSP_ERR_IN_USEThe operation could not be completed because the driver is busy.
    FSP_ERR_INVALID_MODEThis function is only called in slave mode.
    FSP_ERR_INVALID_ALIGNMENTThe buffer must be aligned to 4 bytes.
    FSP_ERR_UNSUPPORTEDSlave supoprt is disabled.
    +
    +
    + +
    +
    + +

    ◆ R_I3C_B_IbiRead()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_I3C_B_IbiRead (i3c_ctrl_t *const p_api_ctrl,
    uint8_t *const p_data,
    uint32_t length 
    )
    +
    +

    Set the read buffer for storing received IBI data (This function is only used in master mode).

    +
    Return values
    + + + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONAn argument was NULL.
    FSP_ERR_NOT_OPENThis instance has not been opened yet.
    FSP_ERR_INVALID_MODEThis function is only called in master mode.
    FSP_ERR_INVALID_ALIGNMENTThe buffer must be aligned to 4 bytes and the length must be a multiple of 4 bytes.
    FSP_ERR_UNSUPPORTEDMaster support is disabled.
    +
    +
    + +
    +
    + +

    ◆ R_I3C_B_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_I3C_B_Close (i3c_ctrl_t *const p_api_ctrl)
    +
    +

    Close the I3C instance. Implements i3c_api_t::close.

    +
    Return values
    + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONAn argument was NULL.
    FSP_ERR_NOT_OPENThis instance has not been opened yet.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___i3_c___b.js b/group___i3_c___b.js new file mode 100644 index 0000000..6b06173 --- /dev/null +++ b/group___i3_c___b.js @@ -0,0 +1,133 @@ +var group___i3_c___b = +[ + [ "i3c_b_clock_stalling_t", "group___i3_c___b.html#structi3c__b__clock__stalling__t", [ + [ "assigned_address_phase_enable", "group___i3_c___b.html#a130da5bdcc977cc2ac80d2958ee0ed2c", null ], + [ "transition_phase_enable", "group___i3_c___b.html#aa24d69aa4e272b08ea25115bdd653871", null ], + [ "parity_phase_enable", "group___i3_c___b.html#abf6047ed6b80423a3e34c58d7e6f2159", null ], + [ "ack_phase_enable", "group___i3_c___b.html#a111fd70be18b905f2dcd177090e28e95", null ], + [ "clock_stalling_time", "group___i3_c___b.html#a7a0a2568821deca8dde989c04e3bf3c3", null ] + ] ], + [ "i3c_b_bitrate_settings_t", "group___i3_c___b.html#structi3c__b__bitrate__settings__t", [ + [ "stdbr", "group___i3_c___b.html#aee8857dcfc0a90a83e4431ccbd4746e8", null ], + [ "extbr", "group___i3_c___b.html#a43f54168433c048558d579ba300f565d", null ], + [ "clock_stalling", "group___i3_c___b.html#a7e9faafe29396be004f769cd35b81563", null ] + ] ], + [ "i3c_b_ibi_control_t", "group___i3_c___b.html#structi3c__b__ibi__control__t", [ + [ "hot_join_acknowledge", "group___i3_c___b.html#a493e09410ad1e54a74ef9ecd93dbfd4e", null ], + [ "notify_rejected_hot_join_requests", "group___i3_c___b.html#aa03b9daf273a95370d743a5ef5bab7dd", null ], + [ "notify_rejected_mastership_requests", "group___i3_c___b.html#ad46715479c0a13d5bccb8992cb5edfb2", null ], + [ "notify_rejected_interrupt_requests", "group___i3_c___b.html#a338fe4fd5a8fab2a3213e25a1572b02c", null ] + ] ], + [ "i3c_b_slave_command_response_info_t", "group___i3_c___b.html#structi3c__b__slave__command__response__info__t", [ + [ "inband_interrupt_enable", "group___i3_c___b.html#ae5c638d2a302a6a5c39510137583ffd9", null ], + [ "mastership_request_enable", "group___i3_c___b.html#ad84be5ef3adcda517e62810c182ac856", null ], + [ "hotjoin_request_enable", "group___i3_c___b.html#ae1391ee53f0f040895bc1a2982db5adf", null ], + [ "activity_state", "group___i3_c___b.html#a667ea08c6f9f2e5f4e3b3354d4fae122", null ], + [ "write_length", "group___i3_c___b.html#a118058cb130acafed14c05752db449be", null ], + [ "read_length", "group___i3_c___b.html#ac35a8a2ba71c865f91f85ceb8be2fe65", null ], + [ "ibi_payload_length", "group___i3_c___b.html#ab16f7dbd1d812f8dcfc33ac37a939ca9", null ], + [ "write_data_rate", "group___i3_c___b.html#a6e5ccf943f0f06851167cfe40fe7b7a1", null ], + [ "read_data_rate", "group___i3_c___b.html#a9740e5cb2cd5e45294ebe55929c9daa7", null ], + [ "clock_data_turnaround", "group___i3_c___b.html#ae51118e339ff8e535dee69acbd4c2c04", null ], + [ "read_turnaround_time_enable", "group___i3_c___b.html#a680354fe57452deb48fd62692bddf62e", null ], + [ "read_turnaround_time", "group___i3_c___b.html#ac817332b7a7317c6edc91a84c329c656", null ], + [ "oscillator_frequency", "group___i3_c___b.html#adebd51c965faf0fe497971c15e669a91", null ], + [ "oscillator_inaccuracy", "group___i3_c___b.html#a0dbd28cc4de1cbcf7dd3427feef969a2", null ] + ] ], + [ "i3c_b_instance_ctrl_t", "group___i3_c___b.html#structi3c__b__instance__ctrl__t", [ + [ "BSP_ALIGN_VARIABLE", "group___i3_c___b.html#ac04ccc58562da71c2a9381b35acdf0d3", null ], + [ "open", "group___i3_c___b.html#ae2ad6ece73c0f4b046708ab96f7c1842", null ], + [ "p_reg", "group___i3_c___b.html#a1be04ad63b14c5df7547285f9c92ba66", null ], + [ "internal_state", "group___i3_c___b.html#ac71e6c3913312c01e121be5ce1f89ae7", null ], + [ "current_command_code", "group___i3_c___b.html#a48dcc530b11970be9d3f2fae9dd5dcdc", null ], + [ "device_index", "group___i3_c___b.html#a5ea03dcc03a3fa25df7a630635c9880f", null ], + [ "device_bitrate_mode", "group___i3_c___b.html#a359e6208b0bd04aab75f6b876d8bead3", null ], + [ "next_word", "group___i3_c___b.html#a624164578fd3053bde3878a449255aed", null ], + [ "ibi_next_word", "group___i3_c___b.html#a8369efb1618f65a238ce07c438e50c01", null ], + [ "write_buffer_descriptor", "group___i3_c___b.html#a2144b0ec9924455ca87e11f869af3da6", null ], + [ "read_buffer_descriptor", "group___i3_c___b.html#a231f4fdcb227e5433b99eb4681092ea1", null ], + [ "ibi_buffer_descriptor", "group___i3_c___b.html#ade06559c82b773fb3382aa64c0cbff15", null ], + [ "read_transfer_count_final", "group___i3_c___b.html#a19839c4573b756f918d79ed7b95db193", null ], + [ "ibi_transfer_count_final", "group___i3_c___b.html#ad7f911a2a8d3071973e2a3f8d9c3379e", null ], + [ "p_cfg", "group___i3_c___b.html#a6292eaa63c5ee2ceefc2c8404aa57fc7", null ] + ] ], + [ "i3c_b_extended_cfg_t", "group___i3_c___b.html#structi3c__b__extended__cfg__t", [ + [ "bitrate_settings", "group___i3_c___b.html#a814f21227402c572e9e0f31769a2f7b1", null ], + [ "ibi_control", "group___i3_c___b.html#a16e3b94303d38db979568546ac53a4b3", null ], + [ "bus_free_detection_time", "group___i3_c___b.html#a8ed749153af0e8311373e3d2d446ee5d", null ], + [ "bus_available_detection_time", "group___i3_c___b.html#af62dc925b22147aff968321a8ba10fef", null ], + [ "bus_idle_detection_time", "group___i3_c___b.html#a7e9d0d85bd1aefa8de414728f18b32de", null ], + [ "timeout_detection_enable", "group___i3_c___b.html#a7609c913ab9040ddb3884007abe4d661", null ], + [ "slave_command_response_info", "group___i3_c___b.html#a0f2fd857b12b9284dddf430463764016", null ], + [ "resp_irq", "group___i3_c___b.html#a5566fbe13d210afcf9538b7f0ef30907", null ], + [ "rx_irq", "group___i3_c___b.html#a65d040ea1c91e96fbc4486e39b51c23d", null ], + [ "tx_irq", "group___i3_c___b.html#ae1e8bc40fc3143b2dbb0321efbd677ee", null ], + [ "rcv_irq", "group___i3_c___b.html#a7aabb012263bcc0093e5ed6137b8a701", null ], + [ "ibi_irq", "group___i3_c___b.html#add3c6106157a467818eb480ae5057826", null ], + [ "st_irq", "group___i3_c___b.html#ac2dd0e54f5699a367af7372aa10630e4", null ], + [ "sp_irq", "group___i3_c___b.html#aeb148883da18117b256353b35b17cbe6", null ], + [ "tmo_irq", "group___i3_c___b.html#a1ea9841cd4b6b18cd9acc7d7f53fa64d", null ], + [ "ierr_irq", "group___i3_c___b.html#a2182f261e10335bf21ca40bc09bcd68d", null ], + [ "terr_irq", "group___i3_c___b.html#a5b9ea9a0c7e528e57c66d5b3cc85e674", null ], + [ "abort_irq", "group___i3_c___b.html#a2e4966e32402d1d0a865f1a29ea2b980", null ], + [ "wu_irq", "group___i3_c___b.html#afc989f369398b733654a708929df5f04", null ], + [ "ipl", "group___i3_c___b.html#a6e93301fd2a08032aabf92fc72a196cb", null ], + [ "eei_ipl", "group___i3_c___b.html#afe8dc047bbc3484b976553478e8f1f53", null ] + ] ], + [ "I3C_B_ERROR_RECOVERY_VERSION_1", "group___i3_c___b.html#ga613539c3294eadbba8386934530c042d", null ], + [ "I3C_B_ERROR_RECOVERY_VERSION_2", "group___i3_c___b.html#ga37a9316af0c201865007526dbd8ef35c", null ], + [ "I3C_B_ERROR_RECOVERY_VERSION_BOTH", "group___i3_c___b.html#ga3877dd4ca46a098b55ac20fe3303a87d", null ], + [ "I3C_B_DEVICE_INDEX_EXTENDED_DEVICE", "group___i3_c___b.html#ga394142d1aa7177899d19d06d6fae6f89", null ], + [ "I3C_B_EVENT_STATUS_SUCCESS", "group___i3_c___b.html#ga66e705cb2af31c57eacd0492b2417145", null ], + [ "I3C_B_EVENT_STATUS_PARITY", "group___i3_c___b.html#ga20332b13e43cafe1a0ee0dbc195d7467", null ], + [ "I3C_B_EVENT_STATUS_FRAME", "group___i3_c___b.html#ga4c155a91650485e935a7d95b65bf6ea1", null ], + [ "I3C_B_EVENT_STATUS_ADDRESS_HEADER", "group___i3_c___b.html#gab4bffde187fcf342dfc6cabc1a7353d8", null ], + [ "I3C_B_EVENT_STATUS_NACK", "group___i3_c___b.html#gaac076b32d443c844645e0d1e9a6d184e", null ], + [ "I3C_B_EVENT_STATUS_OVERFLOW", "group___i3_c___b.html#ga103bea85dbeeb58f40d85e3b1bd00fae", null ], + [ "I3C_B_EVENT_STATUS_ABORTED_TO_MASTER", "group___i3_c___b.html#gae15f0c28a3098b35b3eaf0456f1c4a5b", null ], + [ "I3C_B_EVENT_STATUS_ABORTED", "group___i3_c___b.html#ga7aed8b3fb4cfd7004b8f785a8884f4ff", null ], + [ "I3C_B_EVENT_STATUS_IBI_NACK_DISABLED", "group___i3_c___b.html#gaacf3c8a9a14870a0e66c8815bed1c2e5", null ], + [ "i3c_b_bitrate_mode_t", "group___i3_c___b.html#gac8fb0ec859c44282b8323eb13de6ad3c", [ + [ "I3C_B_BITRATE_MODE_I2C_STDBR", "group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3caf4dc5a9d144776169e8a4d7f21a93b84", null ], + [ "I3C_B_BITRATE_MODE_I2C_EXTBR", "group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca1ea841b113c1fcc83d7caae57f91c266", null ], + [ "I3C_B_BITRATE_MODE_I3C_SDR0_STDBR", "group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca30e9d9ea007ba5c667387f1198721ff9", null ], + [ "I3C_B_BITRATE_MODE_I3C_SDR1_EXTBR", "group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca1a146a0c77e2b1aa523548e8464efbb4", null ], + [ "I3C_B_BITRATE_MODE_I3C_SDR2_STDBR_X2", "group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca2fc162047690642b1e930dcef91cfb81", null ], + [ "I3C_B_BITRATE_MODE_I3C_SDR3_EXTBR_X2", "group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3caa5bb8590bfb9b8865b9cf64576ceadde", null ], + [ "I3C_B_BITRATE_MODE_I3C_SDR4_EXTBR_X4", "group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca6643480973dab04e2eba54bc434222d5", null ] + ] ], + [ "i3c_b_activity_state_t", "group___i3_c___b.html#gab3ffca78d7da057f277bfd8ce2ef2e1a", [ + [ "I3C_B_ACTIVITY_STATE_ENTAS0", "group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aa9641d3bd84b3734620800d3242a048e1", null ], + [ "I3C_B_ACTIVITY_STATE_ENTAS1", "group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aa313dcdfbf6c9106d85551b78fdc89c69", null ], + [ "I3C_B_ACTIVITY_STATE_ENTAS2", "group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aa99e55224a2b5aff9072df1a13157b83a", null ], + [ "I3C_B_ACTIVITY_STATE_ENTAS3", "group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aaf6a3aacfe021bf6de8af4de066e3c768", null ] + ] ], + [ "i3c_b_data_rate_setting_t", "group___i3_c___b.html#gaa100c24dc68792009da85deed2f6387a", [ + [ "I3C_B_DATA_RATE_SETTING_FSCL_MAX", "group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa5c4464e2154d923a7dbcf46a52486f9f", null ], + [ "I3C_B_DATA_RATE_SETTING_8MHZ", "group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa9193b4d9e54c0c7c9f1e046c39795ea6", null ], + [ "I3C_B_DATA_RATE_SETTING_6MHZ", "group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa2039c607365d844eb591d5a95ae2f932", null ], + [ "I3C_B_DATA_RATE_SETTING_4MHZ", "group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa63e2f583c75a7225371ba173ce4c7c6a", null ], + [ "I3C_B_DATA_RATE_SETTING_2MHZ", "group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aae74d814458aa0d31cb6503c0f144a3c6", null ] + ] ], + [ "i3c_b_clock_data_turnaround_t", "group___i3_c___b.html#ga3289540419912324ce02f19ed6a972ca", [ + [ "I3C_B_CLOCK_DATA_TURNAROUND_8NS", "group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa5d48558b7227efb68f158286ead5a083", null ], + [ "I3C_B_CLOCK_DATA_TURNAROUND_9NS", "group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caae7c84e04abd9a4d740b89bd866b05064", null ], + [ "I3C_B_CLOCK_DATA_TURNAROUND_10NS", "group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa85d3de0c20f041144cd97c7dce45191b", null ], + [ "I3C_B_CLOCK_DATA_TURNAROUND_11NS", "group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caab708aab348be27544293dc3cd81f144b", null ], + [ "I3C_B_CLOCK_DATA_TURNAROUND_12NS", "group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa75bf3ed70a8bc727c29bf17241694e7d", null ], + [ "I3C_B_CLOCK_DATA_TURNAROUND_EXTENDED", "group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa5afb800692fec260506825c1766d5a77", null ] + ] ], + [ "R_I3C_B_Open", "group___i3_c___b.html#gaa9ce3fda0950ce2aaa0cd8cf51fb5f95", null ], + [ "R_I3C_B_Enable", "group___i3_c___b.html#gae1dcb91a0152da9a6676ee27d305dceb", null ], + [ "R_I3C_B_DeviceCfgSet", "group___i3_c___b.html#ga07b0af405a9ca84c45aab74bd1c696c2", null ], + [ "R_I3C_B_MasterDeviceTableSet", "group___i3_c___b.html#ga9517cc752212a1423f0153c4330943b4", null ], + [ "R_I3C_B_SlaveStatusSet", "group___i3_c___b.html#ga4178234c4311d227a6fb8844e1e3a49e", null ], + [ "R_I3C_B_DeviceSelect", "group___i3_c___b.html#ga2a3f7414a893b9c2b9135523c8f6d950", null ], + [ "R_I3C_B_DynamicAddressAssignmentStart", "group___i3_c___b.html#ga014e6425d49e19f05d24fd345a785589", null ], + [ "R_I3C_B_CommandSend", "group___i3_c___b.html#gae6b65e6c1def97b4a105ac8aaa66d96c", null ], + [ "R_I3C_B_Write", "group___i3_c___b.html#gadf661fd87ee8c33efd8801d59997d4a1", null ], + [ "R_I3C_B_Read", "group___i3_c___b.html#ga69047e20f165f6e44fea97f3fec69399", null ], + [ "R_I3C_B_IbiWrite", "group___i3_c___b.html#ga0b4af888ebc4c210feea2a149fd4cfc1", null ], + [ "R_I3C_B_IbiRead", "group___i3_c___b.html#gad786c546168aabcc04099f73a540af29", null ], + [ "R_I3C_B_Close", "group___i3_c___b.html#gadd84cf1baec319b18540a857545ab51b", null ] +]; \ No newline at end of file diff --git a/group___i_n_t_c___i_r_q.html b/group___i_n_t_c___i_r_q.html index 5e4383d..6487fc5 100644 --- a/group___i_n_t_c___i_r_q.html +++ b/group___i_n_t_c___i_r_q.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: External IRQ (r_intc_irq) +RZV Flexible Software Package Documentation: External IRQ (r_intc_irq) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    @@ -112,10 +180,10 @@
     

    Detailed Description

    -

    Driver for the INTC_IRQ peripheral on RZ/V2L. This module implements the External IRQ Interface.

    +

    Driver for the INTC_IRQ peripheral on RZ MPUs. This module implements the External IRQ Interface.

    Overview

    -

    The Interrupt Controller controls which event signals are linked to the NVIC module. The R_INTC_IRQ software module only implements the External IRQ Interface. The interface is for configuring interrupts to fire when a trigger condition is detected on an external IRQ pin.

    +

    The Interrupt Controller controls which event signals are linked to the NVIC module (CM33) or GIC module (CR8). The R_INTC_IRQ software module only implements the External IRQ Interface. The interface is for configuring interrupts to fire when a trigger condition is detected on an external IRQ pin.

    Note
    Multiple instances are used when more than one external interrupt is needed. Configure each instance with different channels and properties as needed for the specific interrupt.

    Features

    @@ -153,7 +221,7 @@

    Configurations for Input > External IRQ Driver on r_intc_irq

    NameName must be a valid C symbolg_external_irq0 Module name. -ChannelValue must be an integer between 0 and 70 Specify the hardware channel. +ChannelValue must be an positive integer0 Specify the hardware channel. Trigger
    • @@ -167,6 +235,8 @@

      Configurations for Input > External IRQ Driver on r_intc_irq

    Rising Select the signal edge or state that triggers an interrupt. +External pin interrupt detection typeMCU Specific OptionsSelect the External pin interrupt detection type of interrupt controller. + CallbackName must be a valid C symbolNULL A user callback function can be provided here. If this callback function is provided, it is called from the interrupt service routine (ISR) each time the IRQn triggers Pin Interrupt PriorityValue must be an integer between 0 and 25512 Select the PIN interrupt priority(0-255). Note: If you specify the lowest priority (i.e.,255), no interrupt will occur. @@ -277,8 +347,7 @@

    FSP_ERR_ALREADY_OPENThe channel specified has already been opened. No configurations were changed. Call the associated Close function to reconfigure the channel. - FSP_ERR_IP_CHANNEL_NOT_PRESENTThe channel requested in p_cfg is not available on the device selected in r_bsp_cfg.h. - FSP_ERR_INVALID_ARGUMENTp_cfg->p_callback is not NULL, but ISR is not enabled. ISR must be enabled to use callback function. + FSP_ERR_IP_CHANNEL_NOT_PRESENTThe channel requested in p_cfg is not available on the device selected in r_bsp_cfg.h. @@ -425,7 +494,7 @@

      - +

    diff --git a/group___i_n_t_c___n_m_i.html b/group___i_n_t_c___n_m_i.html new file mode 100644 index 0000000..89f1953 --- /dev/null +++ b/group___i_n_t_c___n_m_i.html @@ -0,0 +1,493 @@ + + + + + + + +RZV Flexible Software Package Documentation: External IRQ (r_intc_nmi) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    External IRQ (r_intc_nmi)
    +
    +
    + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_INTC_NMI_ExternalIrqOpen (external_irq_ctrl_t *const p_api_ctrl, external_irq_cfg_t const *const p_cfg)
     
    fsp_err_t R_INTC_NMI_ExternalIrqEnable (external_irq_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_INTC_NMI_ExternalIrqDisable (external_irq_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_INTC_NMI_ExternalIrqCallbackSet (external_irq_ctrl_t *const p_api_ctrl, void(*p_callback)(external_irq_callback_args_t *), void const *const p_context, external_irq_callback_args_t *const p_callback_memory)
     
    fsp_err_t R_INTC_NMI_ExternalIrqClose (external_irq_ctrl_t *const p_api_ctrl)
     
    +

    Detailed Description

    +

    Driver for the INTC_NMI peripheral on RZ MPUs. This module implements the External IRQ Interface.

    +

    +Overview

    +

    The Interrupt Controller controls which event signals are linked to the NVIC module (CM33) or GIC module (CR8). The R_INTC_NMI software module only implements the External IRQ Interface.The interface is for configuring interrupts to fire when a trigger condition is detected on a NMI pin.

    +
    Note
    Multiple instances are used when more than one external interrupt is needed. Configure each instance with different channels and properties as needed for the specific interrupt.
    +

    +Features

    +

      +
    • Supports configuring interrupts for NMI.
        +
      • Enabling and disabling interrupt generation.
      • +
      • Configuring interrupt trigger on falling edge, or rising edge.
      • +
      +
    • +
    • Supports configuring a user callback function, which will be invoked by the HAL module when a NMI pin interrupt is generated.
    • +
    +

    +Configuration

    +

    Build Time Configurations for r_intc_nmi

    +The following build time configurations are defined in fsp_cfg/r_intc_nmi_cfg.h:
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    +

    Configurations for Input > External IRQ Driver on r_intc_nmi

    +This module can be added to the Stacks tab via New Stack > Input > External IRQ Driver on r_intc_nmi.
    +

    + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    NameName must be a valid C symbolg_external_irq0 Module name.
    Trigger
      +
    • +Falling
    • +
    • +Rising
    • +
    +
    Rising Select the signal edge or state that triggers an interrupt.
    CallbackName must be a valid C symbolNULL A user callback function can be provided here. If this callback function is provided, it is called from the interrupt service routine (ISR) each time the IRQn triggers
    Pin Interrupt PriorityValue must be an integer between 0 and 25512 Select the PIN interrupt priority(0-255). Note: If you specify the lowest priority (i.e.,255), no interrupt will occur.
    +

    +

    +Clock Configuration

    +

    The INTC_NMI peripheral module doesn't require any specific clock settings.

    +

    +Pin Configuration

    +

    The pin for the external interrupt channel must be configured as an input with NMI Input Enabled.

    +

    Limitation

    +

    Pin configuration does not show conflicts when same NMI is used by multiple pins.

    +

    +Usage Notes

    +

    +Examples

    +

    Basic Example

    +

    This is a basic example of minimal use of the INTC_NMI in an application.

    +
    /* Called from r_intc_nmi_isr */
    void external_irq_callback (external_irq_callback_args_t * p_args)
    {
    (void) p_args;
    g_external_irq_complete = 1;
    }
    void simple_example ()
    {
    /* Example Configuration */
    external_irq_cfg_t g_external_irq_cfg =
    {
    .channel = 0,
    .filter_enable = false,
    .p_callback = external_irq_callback,
    .p_context = 0,
    .ipl = 24,
    .irq = NMI_IRQn,
    };
    /* Configure the external interrupt. */
    fsp_err_t err = R_INTC_NMI_ExternalIrqOpen(&g_external_irq_ctrl, &g_external_irq_cfg);
    assert(FSP_SUCCESS == err);
    /* Enable the external interrupt. */
    err = R_INTC_NMI_ExternalIrqEnable(&g_external_irq_ctrl);
    assert(FSP_SUCCESS == err);
    while (0 == g_external_irq_complete)
    {
    /* Wait for interrupt. */
    }
    }
    + + + +

    +Data Structures

    struct  intc_nmi_instance_ctrl_t
     
    +

    Data Structure Documentation

    + +

    ◆ intc_nmi_instance_ctrl_t

    + +
    +
    + + + + +
    struct intc_nmi_instance_ctrl_t
    +
    +

    INTC_NMI private control block. DO NOT MODIFY. Initialization occurs when R_INTC_NMI_ExternalIrqOpen is called.

    +
    + + + + + + + + + + + + +

    Data Fields

    +uint32_t open
     Used to determine if channel control block is in use.
     
    +IRQn_Type irq
     NVIC Interrupt number.
     
    +uint8_t channel
     Channel.
     
    void const * p_context
     
    +

    Field Documentation

    + +

    ◆ p_context

    + +
    +
    + + + + +
    void const* intc_nmi_instance_ctrl_t::p_context
    +
    +

    Placeholder for user data. Passed to the user callback in external_irq_callback_args_t.

    + +
    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_INTC_NMI_ExternalIrqOpen()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_INTC_NMI_ExternalIrqOpen (external_irq_ctrl_t *const p_api_ctrl,
    external_irq_cfg_t const *const p_cfg 
    )
    +
    +

    Configure a NMI pin for use with the external interrupt interface. Implements external_irq_api_t::open.

    +

    The Open function is responsible for preparing a NMI pin for operation.

    +
    Return values
    + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONOne of the following is invalid:
      +
    • p_ctrl or p_cfg is NULL.
    • +
    +
    FSP_ERR_ALREADY_OPENThe channel specified has already been opened. No configurations were changed. Call the associated Close function to reconfigure the channel.
    FSP_ERR_INVALID_ARGUMENTp_cfg->trigger is invalid.
    +
    +
    +
    Note
    This function is reentrant for different channels. It is not reentrant for the same channel.
    + +
    +
    + +

    ◆ R_INTC_NMI_ExternalIrqEnable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_INTC_NMI_ExternalIrqEnable (external_irq_ctrl_t *const p_api_ctrl)
    +
    +

    Enable external interrupt for specified channel at NVIC. Implements external_irq_api_t::enable.

    +
    Return values
    + + + + + +
    FSP_SUCCESSInterrupt Enabled successfully.
    FSP_ERR_ASSERTIONThe p_ctrl parameter was null.
    FSP_ERR_NOT_OPENThe channel is not opened.
    FSP_ERR_IRQ_BSP_DISABLEDRequested IRQ is not defined in this system.
    +
    +
    + +
    +
    + +

    ◆ R_INTC_NMI_ExternalIrqDisable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_INTC_NMI_ExternalIrqDisable (external_irq_ctrl_t *const p_api_ctrl)
    +
    +

    Disable external interrupt for specified channel at NVIC. Implements external_irq_api_t::disable.

    +
    Return values
    + + + + + +
    FSP_SUCCESSInterrupt disabled successfully.
    FSP_ERR_ASSERTIONThe p_ctrl parameter was null.
    FSP_ERR_NOT_OPENThe channel is not opened.
    FSP_ERR_IRQ_BSP_DISABLEDRequested IRQ is not defined in this system.
    +
    +
    + +
    +
    + +

    ◆ R_INTC_NMI_ExternalIrqCallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_INTC_NMI_ExternalIrqCallbackSet (external_irq_ctrl_t *const p_api_ctrl,
    void(*)(external_irq_callback_args_t *) p_callback,
    void const *const p_context,
    external_irq_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback and has option of providing memory for callback structure. Implements external_irq_api_t::callbackSet.

    +
    Return values
    + + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    + +

    ◆ R_INTC_NMI_ExternalIrqClose()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_INTC_NMI_ExternalIrqClose (external_irq_ctrl_t *const p_api_ctrl)
    +
    +

    Close the external interrupt channel. Implements external_irq_api_t::close.

    +
    Return values
    + + + + +
    FSP_SUCCESSSuccessfully closed.
    FSP_ERR_ASSERTIONThe parameter p_ctrl is NULL.
    FSP_ERR_NOT_OPENThe channel is not opened.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___i_n_t_c___n_m_i.js b/group___i_n_t_c___n_m_i.js new file mode 100644 index 0000000..937d7df --- /dev/null +++ b/group___i_n_t_c___n_m_i.js @@ -0,0 +1,14 @@ +var group___i_n_t_c___n_m_i = +[ + [ "intc_nmi_instance_ctrl_t", "group___i_n_t_c___n_m_i.html#structintc__nmi__instance__ctrl__t", [ + [ "open", "group___i_n_t_c___n_m_i.html#a4f439c63a9660ded18be6210ad5c61f1", null ], + [ "irq", "group___i_n_t_c___n_m_i.html#afbc0c2d0c28a1e1b6659add5e1d906a8", null ], + [ "channel", "group___i_n_t_c___n_m_i.html#affbe014faf25330d8d3f2d8692dc7ef6", null ], + [ "p_context", "group___i_n_t_c___n_m_i.html#af0208db3467f67a11f7bfe085a79708e", null ] + ] ], + [ "R_INTC_NMI_ExternalIrqOpen", "group___i_n_t_c___n_m_i.html#ga22b4030a01652c42e160e109c5772beb", null ], + [ "R_INTC_NMI_ExternalIrqEnable", "group___i_n_t_c___n_m_i.html#ga037bcbc05ae66d3cab50fcc159f04d52", null ], + [ "R_INTC_NMI_ExternalIrqDisable", "group___i_n_t_c___n_m_i.html#ga213e64c8943eae69a17b77273c459ff2", null ], + [ "R_INTC_NMI_ExternalIrqCallbackSet", "group___i_n_t_c___n_m_i.html#ga52b9b9595c41fcfef9abf3ed0dc05a14", null ], + [ "R_INTC_NMI_ExternalIrqClose", "group___i_n_t_c___n_m_i.html#ga87b6b8010db2fcb6e7e9de9e42b5306a", null ] +]; \ No newline at end of file diff --git a/group___i_n_t_c___t_i_n_t.html b/group___i_n_t_c___t_i_n_t.html new file mode 100644 index 0000000..c3e7b2a --- /dev/null +++ b/group___i_n_t_c___t_i_n_t.html @@ -0,0 +1,587 @@ + + + + + + + +RZV Flexible Software Package Documentation: External IRQ (r_intc_tint) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    External IRQ (r_intc_tint)
    +
    +
    + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_INTC_TINT_ExternalIrqOpen (external_irq_ctrl_t *const p_api_ctrl, external_irq_cfg_t const *const p_cfg)
     
    fsp_err_t R_INTC_TINT_ExternalIrqEnable (external_irq_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_INTC_TINT_ExternalIrqDisable (external_irq_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_INTC_TINT_ExternalIrqCallbackSet (external_irq_ctrl_t *const p_api_ctrl, void(*p_callback)(external_irq_callback_args_t *), void const *const p_context, external_irq_callback_args_t *const p_callback_memory)
     
    fsp_err_t R_INTC_TINT_ExternalIrqClose (external_irq_ctrl_t *const p_api_ctrl)
     
    +

    Detailed Description

    +

    Driver for the Interrupt Controller peripheral on RZ MPUs. This module implements the External IRQ Interface.

    +

    +Overview

    +

    The Interrupt Controller controls which event signals are linked to the NVIC module (CM33) or GIC module (CR8). The R_INTC_TINT software module only implements the External IRQ Interface. The interface is for configuring interrupts to fire when a trigger condition is detected on a TINT pin.

    +
    Note
    Multiple instances are used when more than one external interrupt is needed. Configure each instance with different channels and properties as needed for the specific interrupt.
    +

    +Features

    +

      +
    • Supports configuring interrupts for TINT.
    • +
    • Enabling and disabling interrupt generation.
    • +
    • Configuring interrupt trigger on rising edge, falling edge, low level, or high level signal.
    • +
    • Supports configuring a user callback function, which will be invoked by the HAL module when a TINT pin interrupt is generated.
    • +
    +

    +Configuration

    +

    Build Time Configurations for r_intc_tint

    +The following build time configurations are defined in fsp_cfg/r_intc_tint_cfg.h:
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    +

    Configurations for Input > External IRQ Driver on r_intc_tint

    +This module can be added to the Stacks tab via New Stack > Input > External IRQ Driver on r_intc_tint.
    +

    + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    NameName must be a valid C symbolg_external_irq0 Module name.
    ChannelValue must be an integer between 0 and 310 Specify the hardware channel.
    P TINT Mapping GPIO PinMCU Specific OptionsSpecify the P TINT mapping GPIO pin.
    Trigger
      +
    • +Rising
    • +
    • +Falling
    • +
    • +High Level
    • +
    • +Low Level
    • +
    +
    Rising Select the signal edge or state that triggers an interrupt.
    TINT interrupt detection typeMCU Specific OptionsSelect the TINT interrupt detection type of interrupt controller.
    CallbackName must be a valid C symbolNULL A user callback function can be provided here. If this callback function is provided, it is called from the interrupt service routine (ISR) each time the IRQn triggers
    Pin Interrupt PriorityValue must be an integer between 0 and 25512 Select the PIN interrupt priority(0-255). Note: If you specify the lowest priority (i.e.,255), no interrupt will occur.
    +

    +

    +Clock Configuration

    +

    The INTC_TINT peripheral module doesn't require any specific clock settings.

    +

    +Pin Configuration

    +

    The pin for the external interrupt channel must be configured as an input with TINT Input Enabled.

    +

    Limitation

    +

    Pin configuration does not show conflicts when same TINT is used by multiple pins.

    +

    +Usage Notes

    +

    +Examples

    +

    Basic Example

    +

    This is a basic example of minimal use of the INTC_TINT in an application.

    +
    #define INTC_TINT_PIN BSP_IO_PORT_00_PIN_03
    #define INTC_TINT 1
    /* Called from r_intc_tint_isr */
    void external_irq_callback (external_irq_callback_args_t * p_args)
    {
    (void) p_args;
    g_external_irq_complete = 1;
    }
    void simple_example ()
    {
    /* Example Configuration */
    const intc_tint_extended_cfg_t g_external_irq_extend =
    {
    .gpioint = 3,
    .tint_trigger = INTC_TINT_TRIGGER_RISING,
    };
    external_irq_cfg_t g_external_irq_cfg =
    {
    .channel = INTC_TINT,
    .filter_enable = false,
    .p_callback = external_irq_callback,
    .p_context = 0,
    .p_extend = &g_external_irq_extend,
    .ipl = 12,
    .irq = SEL1_IRQn,
    };
    /* Configure the external interrupt. */
    fsp_err_t err = R_INTC_TINT_ExternalIrqOpen(&g_external_irq_ctrl, &g_external_irq_cfg);
    assert(FSP_SUCCESS == err);
    /* Enable the external interrupt. */
    err = R_INTC_TINT_ExternalIrqEnable(&g_external_irq_ctrl);
    assert(FSP_SUCCESS == err);
    while (0 == g_external_irq_complete)
    {
    /* Wait for interrupt. */
    }
    }
    + + + + + +

    +Data Structures

    struct  intc_tint_instance_ctrl_t
     
    struct  intc_tint_extended_cfg_t
     
    + + + +

    +Typedefs

    typedef uint8_t intc_tint_gpioint_t
     
    + + + +

    +Enumerations

    enum  intc_tint_trigger_t
     
    +

    Data Structure Documentation

    + +

    ◆ intc_tint_instance_ctrl_t

    + +
    +
    + + + + +
    struct intc_tint_instance_ctrl_t
    +
    +

    INTC_TINT private control block. DO NOT MODIFY. Initialization occurs when R_INTC_TINT_ExternalIrqOpen is called.

    +
    + + + + + + + + + + + + +

    Data Fields

    +uint32_t open
     Used to determine if channel control block is in use.
     
    +IRQn_Type irq
     Interrupt number.
     
    +uint8_t channel
     Channel.
     
    void const * p_context
     
    +

    Field Documentation

    + +

    ◆ p_context

    + +
    +
    + + + + +
    void const* intc_tint_instance_ctrl_t::p_context
    +
    +

    Placeholder for user data. Passed to the user callback in external_irq_callback_args_t.

    + +
    +
    + +
    +
    + +

    ◆ intc_tint_extended_cfg_t

    + +
    +
    + + + + +
    struct intc_tint_extended_cfg_t
    +
    +

    INTC_TINT configuration extension.

    +
    + + + + + + + +
    Data Fields
    +intc_tint_gpioint_t +gpioint +GPIOINT number.
    +intc_tint_trigger_t +tint_trigger +TINT trigger.
    + +
    +
    +

    Typedef Documentation

    + +

    ◆ intc_tint_gpioint_t

    + +
    +
    + + + + +
    typedef uint8_t intc_tint_gpioint_t
    +
    +

    INTC_TINT GPIOINT number.

    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ intc_tint_trigger_t

    + +
    +
    + + + + +
    enum intc_tint_trigger_t
    +
    +

    TINT trigger condition.

    + + + + + +
    Enumerator
    INTC_TINT_TRIGGER_RISING 

    Rising edge trigger.

    +
    INTC_TINT_TRIGGER_FALLING 

    Falling edge trigger.

    +
    INTC_TINT_TRIGGER_LEVEL_HIGH 

    High level trigger.

    +
    INTC_TINT_TRIGGER_LEVEL_LOW 

    Low level trigger.

    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_INTC_TINT_ExternalIrqOpen()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_INTC_TINT_ExternalIrqOpen (external_irq_ctrl_t *const p_api_ctrl,
    external_irq_cfg_t const *const p_cfg 
    )
    +
    +

    Configure a TINT input pin for use with the external interrupt interface. Implements external_irq_api_t::open.

    +

    The Open function is responsible for preparing a TINT pin for operation.

    +
    Return values
    + + + + + +
    FSP_SUCCESSOpen successful.
    FSP_ERR_ASSERTIONOne of the following is invalid:
      +
    • p_ctrl or p_cfg is NULL
    • +
    +
    FSP_ERR_ALREADY_OPENThe channel specified has already been opened. No configurations were changed. Call the associated Close function to reconfigure the channel.
    FSP_ERR_IP_CHANNEL_NOT_PRESENTThe channel requested in p_cfg is not available on the device selected in r_bsp_cfg.h.
    +
    +
    +
    Note
    This function is reentrant for different channels. It is not reentrant for the same channel.
    + +
    +
    + +

    ◆ R_INTC_TINT_ExternalIrqEnable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_INTC_TINT_ExternalIrqEnable (external_irq_ctrl_t *const p_api_ctrl)
    +
    +

    Enable external interrupt for specified channel. Implements external_irq_api_t::enable.

    +
    Return values
    + + + + + +
    FSP_SUCCESSInterrupt Enabled successfully.
    FSP_ERR_ASSERTIONThe p_ctrl parameter was null.
    FSP_ERR_NOT_OPENThe channel is not opened.
    FSP_ERR_IRQ_BSP_DISABLEDRequested IRQ is not defined in this system.
    +
    +
    + +
    +
    + +

    ◆ R_INTC_TINT_ExternalIrqDisable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_INTC_TINT_ExternalIrqDisable (external_irq_ctrl_t *const p_api_ctrl)
    +
    +

    Disable external interrupt for specified channel. Implements external_irq_api_t::disable.

    +
    Return values
    + + + + + +
    FSP_SUCCESSInterrupt disabled successfully.
    FSP_ERR_ASSERTIONThe p_ctrl parameter was null.
    FSP_ERR_NOT_OPENThe channel is not opened.
    FSP_ERR_IRQ_BSP_DISABLEDRequested IRQ is not defined in this system.
    +
    +
    + +
    +
    + +

    ◆ R_INTC_TINT_ExternalIrqCallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_INTC_TINT_ExternalIrqCallbackSet (external_irq_ctrl_t *const p_api_ctrl,
    void(*)(external_irq_callback_args_t *) p_callback,
    void const *const p_context,
    external_irq_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback and has option of providing memory for callback structure. Implements external_irq_api_t::callbackSet.

    +
    Return values
    + + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    + +

    ◆ R_INTC_TINT_ExternalIrqClose()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_INTC_TINT_ExternalIrqClose (external_irq_ctrl_t *const p_api_ctrl)
    +
    +

    Close the external interrupt channel. Implements external_irq_api_t::close.

    +
    Return values
    + + + + +
    FSP_SUCCESSSuccessfully closed.
    FSP_ERR_ASSERTIONThe parameter p_ctrl is NULL.
    FSP_ERR_NOT_OPENThe channel is not opened.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___i_n_t_c___t_i_n_t.js b/group___i_n_t_c___t_i_n_t.js new file mode 100644 index 0000000..45e0616 --- /dev/null +++ b/group___i_n_t_c___t_i_n_t.js @@ -0,0 +1,25 @@ +var group___i_n_t_c___t_i_n_t = +[ + [ "intc_tint_instance_ctrl_t", "group___i_n_t_c___t_i_n_t.html#structintc__tint__instance__ctrl__t", [ + [ "open", "group___i_n_t_c___t_i_n_t.html#a418c0307cdb3fcf14d74e151652ffd78", null ], + [ "irq", "group___i_n_t_c___t_i_n_t.html#aa0f2fc4c91d800c45bb08df191a01fa4", null ], + [ "channel", "group___i_n_t_c___t_i_n_t.html#a443068029bc0fbf20147fd24df48f9e9", null ], + [ "p_context", "group___i_n_t_c___t_i_n_t.html#a09938fef3661c208ee0e249c305d9cb7", null ] + ] ], + [ "intc_tint_extended_cfg_t", "group___i_n_t_c___t_i_n_t.html#structintc__tint__extended__cfg__t", [ + [ "gpioint", "group___i_n_t_c___t_i_n_t.html#a8066afa114318265d9fe96031434bbd3", null ], + [ "tint_trigger", "group___i_n_t_c___t_i_n_t.html#a15e2ce2189f72bd6ac8d5789cf535a45", null ] + ] ], + [ "intc_tint_gpioint_t", "group___i_n_t_c___t_i_n_t.html#ga3ba2aca2c4a94e31e689d5796a056825", null ], + [ "intc_tint_trigger_t", "group___i_n_t_c___t_i_n_t.html#ga050a0c4d8019d4576ca781ec7d27c5ed", [ + [ "INTC_TINT_TRIGGER_RISING", "group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5edab0877acf066a60852cf20f2555246521", null ], + [ "INTC_TINT_TRIGGER_FALLING", "group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5edae0b70e173c23a2bb41685eedcca0eaa2", null ], + [ "INTC_TINT_TRIGGER_LEVEL_HIGH", "group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5eda005c2f7b5cbb161fb0bf671952ca60fd", null ], + [ "INTC_TINT_TRIGGER_LEVEL_LOW", "group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5edab9b8df90dff304ec0c877b337c417188", null ] + ] ], + [ "R_INTC_TINT_ExternalIrqOpen", "group___i_n_t_c___t_i_n_t.html#gab01a60894ce57e9089bbdff30d38334f", null ], + [ "R_INTC_TINT_ExternalIrqEnable", "group___i_n_t_c___t_i_n_t.html#ga61a1dc7902ccb186b915b33b5d38a03d", null ], + [ "R_INTC_TINT_ExternalIrqDisable", "group___i_n_t_c___t_i_n_t.html#gad244de976bca311f089962b82d3f850b", null ], + [ "R_INTC_TINT_ExternalIrqCallbackSet", "group___i_n_t_c___t_i_n_t.html#ga3237412fedf68db30556824a96b2ecb6", null ], + [ "R_INTC_TINT_ExternalIrqClose", "group___i_n_t_c___t_i_n_t.html#gaafe713f813011a846a754d9137fda61b", null ] +]; \ No newline at end of file diff --git a/group___i_o_p_o_r_t.html b/group___i_o_p_o_r_t.html index 3cb7df3..b45fd90 100644 --- a/group___i_o_p_o_r_t.html +++ b/group___i_o_p_o_r_t.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: I/O Ports (r_ioport) +RZV Flexible Software Package Documentation: I/O Ports (r_ioport) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    I/O Ports (r_ioport)
    +
    I/O Ports (r_ioport)
    @@ -127,20 +195,12 @@ - - - - - - - -
     
    fsp_err_t R_IOPORT_PortWrite (ioport_ctrl_t *const p_ctrl, bsp_io_port_t port, ioport_size_t value, ioport_size_t mask)
     
    fsp_err_t R_IOPORT_SDVoltageModeCfg (ioport_ctrl_t *const p_ctrl, ioport_sd_channel_t channel, ioport_sd_voltage_t voltage)
     
    fsp_err_t R_IOPORT_QSPIVoltageModeCfg (ioport_ctrl_t *const p_ctrl, ioport_qspi_channel_t channel, ioport_qspi_voltage_t voltage)
     
    fsp_err_t R_IOPORT_EthernetVoltageModeCfg (ioport_ctrl_t *const p_ctrl, ioport_ethernet_channel_t channel, ioport_ethernet_voltage_t voltage)
     
    fsp_err_t R_IOPORT_EthernetModeCfg (ioport_ctrl_t *const p_ctrl, ioport_ethernet_channel_t channel, ioport_ethernet_mode_t mode)
     

    Detailed Description

    Driver for the I/O Ports peripheral on RZ MPUs. This module implements the I/O Port Interface.

    Overview

    -

    The I/O port pins operate as general I/O port pins, I/O pins for peripheral modules, interrupt input pins, analog I/O, or bus control pins.

    +

    The I/O port pins operate as general I/O port pins, I/O pins for peripheral modules, interrupt input pins, analog I/O, port group function for the ELC, or bus control pins.

    Features

    The IOPORT HAL module can configure the following pin settings:

      @@ -152,16 +212,21 @@

    • Whether the pin is to be used as an TINT pin
    • Peripheral connection
    • Slew rate setting (Slow, Fast)
    • +
    • Event Output Operation (Low, High, Toggle)
    • +
    • Event edge trigger (falling, rising or both)

    The module also provides the following functionality:

    • Read/write GPIO pins/ports
    • Select operation voltage of SD, QSPI and ETHER.
    • Select ETHER operation mode.
    • Enable / Disable noise filter and set noise filter number and noise filter clock.
    • +
    • Sets event output data
    • +
    • Reads event input data

    Configuration

    The I/O PORT HAL module must be configured by the user for the desired operation.

    +

    Build Time Configurations for r_ioport

    The following build time configurations are defined in fsp_cfg/r_ioport_cfg.h:

    @@ -178,13 +243,127 @@

    Default (BSP) If selected code for parameter checking is included in the build.
    -

    Configurations for Driver > System > I/O Port Driver on r_ioport

    -This module can be added to the Stacks tab via New Stack > Driver > System > I/O Port Driver on r_ioport.
    +

    Configurations for System > I/O Port (r_ioport)

    +This module can be added to the Stacks tab via New Stack > System > I/O Port (r_ioport).

    - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    NameName must be a valid C symbolg_ioport Module name.
    General > NameName must be a valid C symbolg_ioport Module name.
    General > Pin Configuration NameName must be a valid C symbolg_bsp_pin_cfg Name for pin configuration structure
    ELC Output Port Group 1 > Trigger SourceMCU Specific OptionsELC source that will trigger Output port group 1
    ELC Output Port Group 1 > Port SelectionMCU Specific OptionsSelect multiple port number that specify in Ouput port group 1
    ELC Output Port Group 1 > Output OperationMCU Specific OptionsSelect output operation for Output port group 1. When select toggle output, the target Port m Mode register should be set to 11b: Output (Output data is input to input buffer)
    ELC Output Port Group 2 > Trigger SourceMCU Specific OptionsELC source that will trigger Output port group 2
    ELC Output Port Group 2 > Port SelectionMCU Specific OptionsSelect multiple port number that specify in Ouput port group 2
    ELC Output Port Group 2 > Output OperationMCU Specific OptionsSelect output operation for Output port group 2. When select toggle output, the target Port m Mode register should be set to 11b: Output (Output data is input to input buffer)
    ELC Input Port Group 1 > Buffer Initial Value > P60MCU Specific OptionsSet initial input state for P60
    ELC Input Port Group 1 > Buffer Initial Value > P61MCU Specific OptionsSet initial input state for P61
    ELC Input Port Group 1 > Buffer Initial Value > P62MCU Specific OptionsSet initial input state for P62
    ELC Input Port Group 1 > Buffer Initial Value > P63MCU Specific OptionsSet initial input state for P63
    ELC Input Port Group 1 > Buffer Initial Value > P64MCU Specific OptionsSet initial input state for P64
    ELC Input Port Group 1 > Buffer Initial Value > P65MCU Specific OptionsSet initial input state for P65
    ELC Input Port Group 1 > Buffer Initial Value > P66MCU Specific OptionsSet initial input state for P66
    ELC Input Port Group 1 > Buffer Initial Value > P67MCU Specific OptionsSet initial input state for P67
    ELC Input Port Group 1 > Trigger SourceMCU Specific OptionsELC source that will trigger Input port group 1
    ELC Input Port Group 1 > Event Link ControlMCU Specific OptionsSet input port group 1 enablement
    ELC Input Port Group 1 > Port SelectionMCU Specific OptionsSelect multiple port number that specify in Input port group 1
    ELC Input Port Group 1 > Edge DetectionMCU Specific OptionsSelect edge detection that will trigger Input port group 1
    ELC Input Port Group 1 > Buffer OverwriteMCU Specific OptionsSet whether preventing overwriting ELC Port Buffer Register before reading it
    ELC Input Port Group 2 > Buffer Initial Value > P80MCU Specific OptionsSet initial input state for P80
    ELC Input Port Group 2 > Buffer Initial Value > P81MCU Specific OptionsSet initial input state for P81
    ELC Input Port Group 2 > Buffer Initial Value > P82MCU Specific OptionsSet initial input state for P82
    ELC Input Port Group 2 > Buffer Initial Value > P83MCU Specific OptionsSet initial input state for P83
    ELC Input Port Group 2 > Buffer Initial Value > P84MCU Specific OptionsSet initial input state for P84
    ELC Input Port Group 2 > Buffer Initial Value > P85MCU Specific OptionsSet initial input state for P85
    ELC Input Port Group 2 > Buffer Initial Value > P86MCU Specific OptionsSet initial input state for P86
    ELC Input Port Group 2 > Buffer Initial Value > P87MCU Specific OptionsSet initial input state for P87
    ELC Input Port Group 2 > Trigger SourceMCU Specific OptionsELC source that will trigger Input port group 2
    ELC Input Port Group 2 > Event Link ControlMCU Specific OptionsSet input port group 2 enablement
    ELC Input Port Group 2 > Port SelectionMCU Specific OptionsSelect multiple port number that specify in Input port group 2
    ELC Input Port Group 2 > Edge DetectionMCU Specific OptionsSelect edge detection that will trigger Input port group 2
    ELC Input Port Group 2 > Buffer OverwriteMCU Specific OptionsSet whether preventing overwriting ELC Port Buffer Register before reading it
    ELC Single Port 0 > Common > Event Link ControlMCU Specific OptionsSet single port 0 enablement
    ELC Single Port 0 > Common > Event DirectionMCU Specific OptionsSelect event direction for Single port 0
    ELC Single Port 0 > Common > Port selectionMCU Specific OptionsSelect port number for Single port 0
    ELC Single Port 0 > Output Direction Setting > Trigger SourceMCU Specific OptionsELC source that will trigger Single output port 0
    ELC Single Port 0 > Output Direction Setting > Output OperationMCU Specific OptionsSelect output operation for Single output port 0. When select toggle output, the target Port m Mode register should be set to 11b: Output (Output data is input to input buffer)
    ELC Single Port 0 > Input Direction Setting > Edge DetectionMCU Specific OptionsSelect edge detection that will trigger Single input port 0
    ELC Single Port 1 > Common > Event Link ControlMCU Specific OptionsSet single port 1 enablement
    ELC Single Port 1 > Common > Event DirectionMCU Specific OptionsSelect event direction for Single port 1
    ELC Single Port 1 > Common > Port selectionMCU Specific OptionsSelect port number for Single port 1
    ELC Single Port 1 > Output Direction Setting > Trigger SourceMCU Specific OptionsELC source that will trigger Single output port 1
    ELC Single Port 1 > Output Direction Setting > Output OperationMCU Specific OptionsSelect output operation for Single output port 1. When select toggle output, the target Port m Mode register should be set to 11b: Output (Output data is input to input buffer)
    ELC Single Port 1 > Input Direction Setting > Edge DetectionMCU Specific OptionsSelect edge detection that will trigger Single input port 1
    ELC Single Port 2 > Common > Event Link ControlMCU Specific OptionsSet single port 2 enablement
    ELC Single Port 2 > Common > Event DirectionMCU Specific OptionsSelect event direction for Single port 2
    ELC Single Port 2 > Common > Port selectionMCU Specific OptionsSelect port number for Single port 2
    ELC Single Port 2 > Output Direction Setting > Trigger SourceMCU Specific OptionsELC source that will trigger Single output port 2
    ELC Single Port 2 > Output Direction Setting > Output OperationMCU Specific OptionsSelect output operation for Single output port 2. When select toggle output, the target Port m Mode register should be set to 11b: Output (Output data is input to input buffer)
    ELC Single Port 2 > Input Direction Setting > Edge DetectionMCU Specific OptionsSelect edge detection that will trigger Single input port 2
    ELC Single Port 3 > Common > Event Link ControlMCU Specific OptionsSet single port 3 enablement
    ELC Single Port 3 > Common > Event DirectionMCU Specific OptionsSelect event direction for Single port 3
    ELC Single Port 3 > Common > Port selectionMCU Specific OptionsSelect port number for Single port 3
    ELC Single Port 3 > Output Direction Setting > Trigger SourceMCU Specific OptionsELC source that will trigger Single output port 3
    ELC Single Port 3 > Output Direction Setting > Output OperationMCU Specific OptionsSelect output operation for Single output port 3. When select toggle output, the target Port m Mode register should be set to 11b: Output (Output data is input to input buffer)
    ELC Single Port 3 > Input Direction Setting > Edge DetectionMCU Specific OptionsSelect edge detection that will trigger Single input port 3

    @@ -194,22 +373,59 @@

    Pin Configuration

    The IOPORT module is used for configuring pins.

    Usage Notes

    +

    Port Group Function for ELC

    +

    Depending on pin configuration, the IOPORT module can perform automatic reads or writes on ports 6 or 8 on receipt of an ELC event. Multiple pins can be specified from ports 6 or 8 as port group function by the user.

    +

    In the input port group function, when an event is received by a port, the state of the input pins on the port is saved in a hardware register. The functions R_IOPORT_PinEventInputRead and R_IOPORT_PortEventInputRead allow reading the last event input state of pins specified to the input port group. In addition, the function can be configured to trigger an ELC event on rising, falling or both edges. This event can be used to activate other modules when the pin changes state.

    +

    In the output port group function, when an event is received by a port, the state of output pins on the port is set high, low, toggle or buffer value based on settings configured by the user. The event-triggered pin output can be configured to high or low output through R_IOPORT_PortEventOutputWrite.

    +

    Single Port Function for ELC

    +

    Depending on pin configuration, the IOPORT module can perform automatic writes or links to other module on single pin of ports 6 or 8 on receipt of an ELC event. Pins on ports 6 or 8 can be configured to four single port function by the user.

    +

    When the single port function is received an event from other modules, the state of an output pin specified as the single port function is set high, low or toggle output based on settings configured by the user. The event-triggered pin output can be configured to high or low output through R_IOPORT_PinEventOutputWrite.

    +

    In addition, a pin specified as the single port function can be configured to trigger an ELC event on rising, falling or both edges. This event can be used to activate other modules when the pin changes state.

    +
    Note
    If a pin is specified as both a single port and a member of a port group, the single port function is disabled and only the port group function is enabled when the relevant pin is output.

    Examples

    Basic Example

    This is a basic example of minimal use of the IOPORT in an application.

    -
    void basic_example ()
    {
    bsp_io_level_t readLevel;
    fsp_err_t err;
    /* Initialize the IOPORT module and configure the pins
    * Note: The default pin configuration name in the RZ Configuraton tool is g_bsp_pin_cfg */
    err = R_IOPORT_Open(&g_ioport_ctrl, &g_bsp_pin_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    /* Call R_IOPORT_PinsCfg if the configuration was not part of initial configurations made in open */
    err = R_IOPORT_PinsCfg(&g_ioport_ctrl, &g_runtime_pin_cfg);
    handle_error(err);
    /* Set Pin 00 of Port 41 to High */
    handle_error(err);
    /* Read Pin 00 of Port 41 */
    err = R_IOPORT_PinRead(&g_ioport_ctrl, BSP_IO_PORT_41_PIN_00, &readLevel);
    handle_error(err);
    }

    Blinky Example

    +
    void basic_example ()
    {
    bsp_io_level_t readLevel;
    fsp_err_t err;
    /* Initialize the IOPORT module and configure the pins
    * Note: The default pin configuration name in the RZ Configuraton tool is g_bsp_pin_cfg */
    err = R_IOPORT_Open(&g_ioport_ctrl, &g_bsp_pin_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    /* Call R_IOPORT_PinsCfg if the configuration was not part of initial configurations made in open */
    err = R_IOPORT_PinsCfg(&g_ioport_ctrl, &g_runtime_pin_cfg);
    handle_error(err);
    /* Set Pin 00 of Port 10 to High */
    handle_error(err);
    /* Read Pin 00 of Port 10 */
    err = R_IOPORT_PinRead(&g_ioport_ctrl, BSP_IO_PORT_10_PIN_00, &readLevel);
    handle_error(err);
    }

    Blinky Example

    This example uses IOPORT to configure and toggle a pin to blink an LED.

    -
    void blinky_example ()
    {
    fsp_err_t err;
    /* Initialize the IOPORT module and configure the pins */
    err = R_IOPORT_Open(&g_ioport_ctrl, &g_bsp_pin_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    /* Configure Pin as output
    * Call the R_IOPORT_PinCfg if the configuration was not part of initial configurations made in open */
    handle_error(err);
    while (1)
    {
    /* Determine the next state of the LEDs */
    if (BSP_IO_LEVEL_LOW == level)
    {
    }
    else
    {
    }
    /* Update LED of PMOD board connected to PMOD0 of RZ/V2L SMARC board */
    err = R_IOPORT_PinWrite(&g_ioport_ctrl, BSP_IO_PORT_41_PIN_00, level);
    handle_error(err);
    /* Delay */
    }
    }
    +
    #define DELAY_TIME (100)
    void blinky_example ()
    {
    fsp_err_t err;
    /* Initialize the IOPORT module and configure the pins */
    err = R_IOPORT_Open(&g_ioport_ctrl, &g_bsp_pin_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    /* Configure Pin as output
    * Call the R_IOPORT_PinCfg if the configuration was not part of initial configurations made in open */
    handle_error(err);
    while (1)
    {
    /* Determine the next state of the LEDs */
    if (BSP_IO_LEVEL_LOW == level)
    {
    }
    else
    {
    }
    /* Update LED of PMOD board connected to PMOD0 of RZ/V2L SMARC board */
    err = R_IOPORT_PinWrite(&g_ioport_ctrl, BSP_IO_PORT_10_PIN_00, level);
    handle_error(err);
    /* Delay */
    }
    }

    ELC Example

    +

    This is an example of using IOPORT with ELC events. The ELC event system allows the captured data to be stored when it occurs and then read back at a later time.

    +
    static elc_instance_ctrl_t g_elc_ctrl;
    static elc_cfg_t g_elc_cfg;
    void ioport_elc_example ()
    {
    bsp_io_level_t eventValue;
    fsp_err_t err;
    /* Initializes the software and sets the links defined in the control structure. */
    err = R_ELC_Open(&g_elc_ctrl, &g_elc_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    /* Create or modify a link between a peripheral function and an event source. */
    err = R_ELC_LinkSet(&g_elc_ctrl, (elc_peripheral_t) ELC_PERIPHERAL_SINGLEPORT0, ELC_EVENT_SW_EVENT_0);
    handle_error(err);
    /* Initialize the IOPORT module and configure the pins */
    err = R_IOPORT_Open(&g_ioport_ctrl, &g_bsp_pin_cfg);
    handle_error(err);
    /* Call the R_IOPORT_PinCfg if the configuration was not part of initial configurations made in open */
    handle_error(err);
    /* Generate an event signal through software to the linked peripheral. */
    handle_error(err);
    /* Read Pin Event Input. The data(BSP_IO_LEVEL_HIGH/ BSP_IO_LEVEL_LOW) from BSP_IO_PORT_02_PIN_00 is read into the
    * EIDR bit */
    err = R_IOPORT_PinEventInputRead(&g_ioport_ctrl, BSP_IO_PORT_06_PIN_00, &eventValue);
    handle_error(err);
    }
    + + + + + + + +

    Data Structures

    struct  ioport_instance_ctrl_t
     
    struct  ioport_event_single_t
     
    struct  ioport_event_group_output_t
     
    struct  ioport_event_group_input_t
     
    struct  ioport_extend_cfg_t
     
    - - + + + + + + + + + + + + + + + + + + + +

    Enumerations

    enum  ioport_port_pin_t
     
    enum  ioport_peripheral_t
     
    enum  ioport_cfg_options_t
     
    enum  ioport_event_pin_selection_t
     
    enum  ioport_event_output_operation_t
     
    enum  ioport_event_control_t
     
    enum  ioport_event_direction_t
     
    enum  ioport_event_detection_t
     
    enum  ioport_event_initial_buffer_value_t
     
    enum  ioport_noise_filter_irq_port_offset_t
     
    enum  ioport_noise_filter_dreq_port_offset_t
     

    Data Structure Documentation

    @@ -225,354 +441,548 @@

    +

    +
    + +

    ◆ ioport_event_single_t

    + +
    +
    + + + + +
    struct ioport_event_single_t
    +
    +

    Single port configuration

    Note
    Event link must be configured by the ELC
    +
    + + + + + + + + + + + + + + + + +
    Data Fields
    +ioport_event_control_t +event_control +Event link control for single port.
    +ioport_event_direction_t +direction +Event direction for single port.
    +uint16_t +port_num +Port number specified to single port.
    +ioport_event_output_operation_t +operation +Single port operation select.
    +ioport_event_detection_t +edge_detection +Edge detection select.
    + +
    +
    + +

    ◆ ioport_event_group_output_t

    + +
    +
    + + + + +
    struct ioport_event_group_output_t
    +
    +

    Output port group configuration

    Note
    Event link must be configured by the ELC
    +
    + + + + + + + +
    Data Fields
    +uint8_t +pin_select +Port number specified to output port group.
    +ioport_event_output_operation_t +operation +Port group operation select.
    + +
    +
    + +

    ◆ ioport_event_group_input_t

    + +
    +
    + + + + +
    struct ioport_event_group_input_t
    +
    +

    Input port group configuration

    Note
    Event link must be configured by the ELC
    +
    + + + + + + + + + + + + + + + + +
    Data Fields
    +ioport_event_control_t +event_control +Event link control for input port group.
    +ioport_event_detection_t +edge_detection +Edge detection select.
    +ioport_event_control_t +overwrite_control +Buffer register overwrite control.
    +uint8_t +pin_select +Port number specified to input port group.
    +uint8_t +buffer_init_value +Buffer register initial value.
    + +
    +
    + +

    ◆ ioport_extend_cfg_t

    + +
    +
    + + + + +
    struct ioport_extend_cfg_t
    +
    +

    IOPORT extended configuration for event link function

    Note
    Event link must be configured by the ELC
    +
    + + + + + + + + + + +
    Data Fields
    +ioport_event_group_output_t
    +const *
    +p_port_group_output_cfg +Pointer to output port group configuration.
    +ioport_event_group_input_t const * +p_port_group_input_cfg +Pointer to input port group configuration.
    +ioport_event_single_t const * +p_single_port_cfg +Pointer to single input port configuration.
    +

    Enumeration Type Documentation

    - -

    ◆ ioport_port_pin_t

    + +

    ◆ ioport_peripheral_t

    -

    Superset list of all possible IO port pins.

    +

    Superset of all peripheral functions.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Enumerator
    IOPORT_PORT_00_PIN_00 

    IO port 0 pin 0.

    -
    IOPORT_PORT_00_PIN_01 

    IO port 0 pin 1.

    -
    IOPORT_PORT_01_PIN_00 

    IO port 1 pin 0.

    -
    IOPORT_PORT_01_PIN_01 

    IO port 1 pin 1.

    -
    IOPORT_PORT_02_PIN_00 

    IO port 2 pin 0.

    -
    IOPORT_PORT_02_PIN_01 

    IO port 2 pin 1.

    -
    IOPORT_PORT_03_PIN_00 

    IO port 3 pin 0.

    -
    IOPORT_PORT_03_PIN_01 

    IO port 3 pin 1.

    -
    IOPORT_PORT_04_PIN_00 

    IO port 4 pin 0.

    -
    IOPORT_PORT_04_PIN_01 

    IO port 4 pin 1.

    -
    IOPORT_PORT_05_PIN_00 

    IO port 5 pin 0.

    -
    IOPORT_PORT_05_PIN_01 

    IO port 5 pin 1.

    -
    IOPORT_PORT_05_PIN_02 

    IO port 5 pin 2.

    -
    IOPORT_PORT_06_PIN_00 

    IO port 6 pin 0.

    -
    IOPORT_PORT_06_PIN_01 

    IO port 6 pin 1.

    -
    IOPORT_PORT_07_PIN_00 

    IO port 7 pin 0.

    -
    IOPORT_PORT_07_PIN_01 

    IO port 7 pin 1.

    -
    IOPORT_PORT_07_PIN_02 

    IO port 7 pin 2.

    -
    IOPORT_PORT_08_PIN_00 

    IO port 8 pin 0.

    -
    IOPORT_PORT_08_PIN_01 

    IO port 8 pin 1.

    -
    IOPORT_PORT_08_PIN_02 

    IO port 8 pin 2.

    -
    IOPORT_PORT_09_PIN_00 

    IO port 9 pin 0.

    -
    IOPORT_PORT_09_PIN_01 

    IO port 9 pin 1.

    -
    IOPORT_PORT_10_PIN_00 

    IO port 10 pin 0.

    -
    IOPORT_PORT_10_PIN_01 

    IO port 10 pin 1.

    -
    IOPORT_PORT_11_PIN_00 

    IO port 11 pin 0.

    -
    IOPORT_PORT_11_PIN_01 

    IO port 11 pin 1.

    -
    IOPORT_PORT_12_PIN_00 

    IO port 12 pin 0.

    -
    IOPORT_PORT_12_PIN_01 

    IO port 12 pin 1.

    -
    IOPORT_PORT_13_PIN_00 

    IO port 13 pin 0.

    -
    IOPORT_PORT_13_PIN_01 

    IO port 13 pin 1.

    -
    IOPORT_PORT_13_PIN_02 

    IO port 13 pin 2.

    -
    IOPORT_PORT_14_PIN_00 

    IO port 14 pin 0.

    -
    IOPORT_PORT_14_PIN_01 

    IO port 14 pin 1.

    -
    IOPORT_PORT_15_PIN_00 

    IO port 15 pin 0.

    -
    IOPORT_PORT_15_PIN_01 

    IO port 15 pin 1.

    -
    IOPORT_PORT_16_PIN_00 

    IO port 16 pin 0.

    -
    IOPORT_PORT_16_PIN_01 

    IO port 16 pin 1.

    -
    IOPORT_PORT_17_PIN_00 

    IO port 17 pin 0.

    -
    IOPORT_PORT_17_PIN_01 

    IO port 17 pin 1.

    -
    IOPORT_PORT_17_PIN_02 

    IO port 17 pin 2.

    -
    IOPORT_PORT_18_PIN_00 

    IO port 18 pin 0.

    -
    IOPORT_PORT_18_PIN_01 

    IO port 18 pin 1.

    -
    IOPORT_PORT_19_PIN_00 

    IO port 19 pin 0.

    -
    IOPORT_PORT_19_PIN_01 

    IO port 19 pin 1.

    -
    IOPORT_PORT_20_PIN_00 

    IO port 20 pin 0.

    -
    IOPORT_PORT_20_PIN_01 

    IO port 20 pin 1.

    -
    IOPORT_PORT_20_PIN_02 

    IO port 20 pin 2.

    -
    IOPORT_PORT_21_PIN_00 

    IO port 21 pin 0.

    +
    Enumerator
    IOPORT_PERIPHERAL_MODE0 

    Pin will function as a Mode0 peripheral pin

    IOPORT_PORT_21_PIN_01 

    IO port 21 pin 1.

    +
    IOPORT_PERIPHERAL_MODE1 

    Pin will function as a Mode1 peripheral pin

    IOPORT_PORT_22_PIN_00 

    IO port 22 pin 0.

    +
    IOPORT_PERIPHERAL_MODE2 

    Pin will function as a Mode2 peripheral pin

    IOPORT_PORT_22_PIN_01 

    IO port 22 pin 1.

    +
    IOPORT_PERIPHERAL_MODE3 

    Pin will function as a Mode3 peripheral pin

    IOPORT_PORT_23_PIN_00 

    IO port 23 pin 0.

    +
    IOPORT_PERIPHERAL_MODE4 

    Pin will function as a Mode4 peripheral pin

    IOPORT_PORT_23_PIN_01 

    IO port 23 pin 1.

    +
    IOPORT_PERIPHERAL_MODE5 

    Pin will function as a Mode5 peripheral pin

    IOPORT_PORT_24_PIN_00 

    IO port 24 pin 0.

    +
    IOPORT_PERIPHERAL_MODE6 

    Pin will function as a Mode6 peripheral pin

    IOPORT_PORT_24_PIN_01 

    IO port 24 pin 1.

    +
    IOPORT_PERIPHERAL_MODE7 

    Pin will function as a Mode7 peripheral pin

    IOPORT_PORT_25_PIN_00 

    IO port 25 pin 0.

    +
    IOPORT_PERIPHERAL_MODE8 

    Pin will function as a Mode8 peripheral pin

    IOPORT_PORT_25_PIN_01 

    IO port 25 pin 1.

    +
    IOPORT_PERIPHERAL_MODE9 

    Pin will function as a Mode9 peripheral pin

    IOPORT_PORT_26_PIN_00 

    IO port 26 pin 0.

    +
    IOPORT_PERIPHERAL_MODE10 

    Pin will function as a Mode10 peripheral pin

    IOPORT_PORT_26_PIN_01 

    IO port 26 pin 1.

    +
    IOPORT_PERIPHERAL_MODE11 

    Pin will function as a Mode11 peripheral pin

    IOPORT_PORT_27_PIN_00 

    IO port 27 pin 0.

    +
    IOPORT_PERIPHERAL_MODE12 

    Pin will function as a Mode12 peripheral pin

    IOPORT_PORT_27_PIN_01 

    IO port 27 pin 1.

    +
    IOPORT_PERIPHERAL_MODE13 

    Pin will function as a Mode13 peripheral pin

    IOPORT_PORT_28_PIN_00 

    IO port 28 pin 0.

    +
    IOPORT_PERIPHERAL_MODE14 

    Pin will function as a Mode14 peripheral pin

    IOPORT_PORT_28_PIN_01 

    IO port 28 pin 1.

    +
    IOPORT_PERIPHERAL_MODE15 

    Pin will function as a Mode15 peripheral pin

    IOPORT_PORT_29_PIN_00 

    IO port 29 pin 0.

    -
    IOPORT_PORT_29_PIN_01 

    IO port 29 pin 1.

    -
    IOPORT_PORT_30_PIN_00 

    IO port 30 pin 0.

    -
    IOPORT_PORT_30_PIN_01 

    IO port 30 pin 1.

    -
    IOPORT_PORT_31_PIN_00 

    IO port 31 pin 0.

    -
    IOPORT_PORT_31_PIN_01 

    IO port 31 pin 1.

    -
    IOPORT_PORT_32_PIN_00 

    IO port 32 pin 0.

    -
    IOPORT_PORT_32_PIN_01 

    IO port 32 pin 1.

    -
    IOPORT_PORT_33_PIN_00 

    IO port 33 pin 0.

    -
    IOPORT_PORT_33_PIN_01 

    IO port 33 pin 1.

    -
    IOPORT_PORT_34_PIN_00 

    IO port 34 pin 0.

    -
    IOPORT_PORT_34_PIN_01 

    IO port 34 pin 1.

    +
    + +
    +
    + +

    ◆ ioport_cfg_options_t

    + +
    +
    + + + + +
    enum ioport_cfg_options_t
    +
    +

    Options to configure pin functions

    + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Enumerator
    IOPORT_CFG_PORT_DIRECTION_HIZ 

    Sets the pin direction to Hi-Z (default)

    IOPORT_PORT_35_PIN_00 

    IO port 35 pin 0.

    +
    IOPORT_CFG_PORT_DIRECTION_INPUT 

    Sets the pin direction to input.

    IOPORT_PORT_35_PIN_01 

    IO port 35 pin 1.

    +
    IOPORT_CFG_PORT_DIRECTION_OUTPUT 

    Sets the pin direction to output (input disable)

    IOPORT_PORT_36_PIN_00 

    IO port 36 pin 0.

    +
    IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT 

    Sets the pin direction to output (input enable)

    IOPORT_PORT_36_PIN_01 

    IO port 36 pin 1.

    +
    IOPORT_CFG_PORT_OUTPUT_LOW 

    Sets the pin level to low.

    IOPORT_PORT_37_PIN_00 

    IO port 37 pin 0.

    +
    IOPORT_CFG_PORT_OUTPUT_HIGH 

    Sets the pin level to high.

    IOPORT_PORT_37_PIN_01 

    IO port 37 pin 1.

    +
    IOPORT_CFG_PULLUP_PULLDOWN_DISABLE 

    Disable the pin's internal pull-up and pull-down.

    IOPORT_PORT_37_PIN_02 

    IO port 37 pin 2.

    +
    IOPORT_CFG_PULLUP_ENABLE 

    Enables the pin's internal pull-up.

    IOPORT_PORT_38_PIN_00 

    IO port 38 pin 0.

    +
    IOPORT_CFG_PULLDOWN_ENABLE 

    Enables the pin's internal pull-down.

    IOPORT_PORT_38_PIN_01 

    IO port 38 pin 1.

    +
    IOPORT_CFG_NOD_DISABLE 

    Disable the pin's N-ch open-drain.

    IOPORT_PORT_39_PIN_00 

    IO port 39 pin 0.

    +
    IOPORT_CFG_NOD_ENABLE 

    Enables the pin's N-ch open-drain.

    IOPORT_PORT_39_PIN_01 

    IO port 39 pin 1.

    +
    IOPORT_CFG_SCHMITT_DISABLE 

    Disable the pin's Schmitt-trigger input.

    IOPORT_PORT_39_PIN_02 

    IO port 39 pin 2.

    +
    IOPORT_CFG_SCHMITT_ENABLE 

    Enables the pin's Schmitt-trigger input.

    IOPORT_PORT_40_PIN_00 

    IO port 40 pin 0.

    +
    IOPORT_CFG_DRIVE_B00 

    Sets the IOLH register value to b'00.

    IOPORT_PORT_40_PIN_01 

    IO port 40 pin 1.

    +
    IOPORT_CFG_DRIVE_B01 

    Sets the IOLH register value to b'01.

    IOPORT_PORT_40_PIN_02 

    IO port 40 pin 2.

    +
    IOPORT_CFG_DRIVE_B10 

    Sets the IOLH register value to b'10.

    IOPORT_PORT_41_PIN_00 

    IO port 41 pin 0.

    +
    IOPORT_CFG_DRIVE_B11 

    Sets the IOLH register value to b'11.

    IOPORT_PORT_41_PIN_01 

    IO port 41 pin 1.

    +
    IOPORT_CFG_TINT_DISABLE 

    Disable IRQ functionality for a pin.

    IOPORT_PORT_42_PIN_00 

    IO port 42 pin 0.

    +
    IOPORT_CFG_TINT_ENABLE 

    Sets pin as an IRQ pin.

    IOPORT_PORT_42_PIN_01 

    IO port 42 pin 1.

    +
    IOPORT_CFG_SLEW_RATE_SLOW 

    Sets the pin slew-rate to slow.

    IOPORT_PORT_42_PIN_02 

    IO port 42 pin 2.

    +
    IOPORT_CFG_SLEW_RATE_FAST 

    Sets the pin slew-rate to fast.

    IOPORT_PORT_42_PIN_03 

    IO port 42 pin 3.

    +
    IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE 

    Disable input the pin of special purpose port.

    IOPORT_PORT_42_PIN_04 

    IO port 42 pin 4.

    +
    IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE 

    Sets the pin of special purpose port to input.

    IOPORT_PORT_43_PIN_00 

    IO port 43 pin 0.

    +
    IOPORT_CFG_NOISE_FILTER_OFF 

    Noise filter disable.

    IOPORT_PORT_43_PIN_01 

    IO port 43 pin 1.

    +
    IOPORT_CFG_NOISE_FILTER_ON 

    Noise filter enable.

    IOPORT_PORT_43_PIN_02 

    IO port 43 pin 2.

    +
    IOPORT_CFG_NOISE_FILTER_NUM_4STAGE 

    Sets the pin noise filter to 4-stage filter.

    IOPORT_PORT_43_PIN_03 

    IO port 43 pin 3.

    +
    IOPORT_CFG_NOISE_FILTER_NUM_8STAGE 

    Sets the pin noise filter to 8-stage filter.

    IOPORT_PORT_44_PIN_00 

    IO port 44 pin 0.

    +
    IOPORT_CFG_NOISE_FILTER_NUM_12STAGE 

    Sets the pin noise filter to 12-stage filter.

    IOPORT_PORT_44_PIN_01 

    IO port 44 pin 1.

    +
    IOPORT_CFG_NOISE_FILTER_NUM_16STAGE 

    Sets the pin noise filter to 16-stage filter.

    IOPORT_PORT_44_PIN_02 

    IO port 44 pin 2.

    +
    IOPORT_CFG_NOISE_FILTER_DIVIDED_B00 

    Sets the FILCLKSEL register value to b'00.

    IOPORT_PORT_44_PIN_03 

    IO port 44 pin 3.

    +
    IOPORT_CFG_NOISE_FILTER_DIVIDED_B01 

    Sets the FILCLKSEL register value to b'01.

    IOPORT_PORT_45_PIN_00 

    IO port 45 pin 0.

    +
    IOPORT_CFG_NOISE_FILTER_DIVIDED_B10 

    Sets the FILCLKSEL register value to b'10.

    IOPORT_PORT_45_PIN_01 

    IO port 45 pin 1.

    +
    IOPORT_CFG_NOISE_FILTER_DIVIDED_B11 

    Sets the FILCLKSEL register value to b'11.

    IOPORT_PORT_45_PIN_02 

    IO port 45 pin 2.

    +
    IOPORT_CFG_PERIPHERAL_PIN 

    Enables pin to operate as a peripheral pin.

    IOPORT_PORT_45_PIN_03 

    IO port 45 pin 3.

    +
    IOPORT_CFG_PORT_DIRECTION_HIZ 

    Sets the pin direction to Hi-Z (default)

    IOPORT_PORT_46_PIN_00 

    IO port 46 pin 0.

    +
    IOPORT_CFG_PORT_DIRECTION_INPUT 

    Sets the pin direction to input.

    IOPORT_PORT_46_PIN_01 

    IO port 46 pin 1.

    +
    IOPORT_CFG_PORT_DIRECTION_OUTPUT 

    Sets the pin direction to output (input disable)

    IOPORT_PORT_46_PIN_02 

    IO port 46 pin 2.

    +
    IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT 

    Sets the pin direction to output (input enable)

    IOPORT_PORT_46_PIN_03 

    IO port 46 pin 3.

    +
    IOPORT_CFG_PORT_OUTPUT_LOW 

    Sets the pin level to low.

    IOPORT_PORT_47_PIN_00 

    IO port 47 pin 0.

    +
    IOPORT_CFG_PORT_OUTPUT_HIGH 

    Sets the pin level to high.

    IOPORT_PORT_47_PIN_01 

    IO port 47 pin 1.

    +
    IOPORT_CFG_PULLUP_PULLDOWN_DISABLE 

    Disable the pin's internal pull-up and pull-down.

    IOPORT_PORT_47_PIN_02 

    IO port 47 pin 2.

    +
    IOPORT_CFG_PULLUP_ENABLE 

    Enables the pin's internal pull-up.

    IOPORT_PORT_47_PIN_03 

    IO port 47 pin 3.

    +
    IOPORT_CFG_PULLDOWN_ENABLE 

    Enables the pin's internal pull-down.

    IOPORT_PORT_48_PIN_00 

    IO port 48 pin 0.

    +
    IOPORT_CFG_NOD_DISABLE 

    Disable the pin's N-ch open-drain.

    IOPORT_PORT_48_PIN_01 

    IO port 48 pin 1.

    +
    IOPORT_CFG_NOD_ENABLE 

    Enables the pin's N-ch open-drain.

    IOPORT_PORT_48_PIN_02 

    IO port 48 pin 2.

    +
    IOPORT_CFG_SCHMITT_DISABLE 

    Disable the pin's Schmitt-trigger input.

    IOPORT_PORT_48_PIN_03 

    IO port 48 pin 3.

    +
    IOPORT_CFG_SCHMITT_ENABLE 

    Enables the pin's Schmitt-trigger input.

    IOPORT_PORT_48_PIN_04 

    IO port 48 pin 4.

    +
    IOPORT_CFG_DRIVE_B00 

    Sets the IOLH register value to b'00.

    IOPORT_NMI 

    NMI.

    +
    IOPORT_CFG_DRIVE_B01 

    Sets the IOLH register value to b'01.

    IOPORT_TMS_SWDIO 

    TMS_SWDIO.

    +
    IOPORT_CFG_DRIVE_B10 

    Sets the IOLH register value to b'10.

    IOPORT_TDO 

    TDO.

    +
    IOPORT_CFG_DRIVE_B11 

    Sets the IOLH register value to b'11.

    IOPORT_AUDIO_CLK1 

    AUDIO_CLK1.

    +
    IOPORT_CFG_TINT_DISABLE 

    Disable IRQ functionality for a pin.

    IOPORT_AUDIO_CLK2 

    AUDIO_CLK2.

    +
    IOPORT_CFG_TINT_ENABLE 

    Sets pin as an IRQ pin.

    IOPORT_SD0_CLK 

    CD0_CLK.

    +
    IOPORT_CFG_SLEW_RATE_SLOW 

    Sets the pin slew-rate to slow.

    IOPORT_SD0_CMD 

    CD0_CMD.

    +
    IOPORT_CFG_SLEW_RATE_FAST 

    Sets the pin slew-rate to fast.

    IOPORT_SD0_RST_N 

    CD0_RST_N.

    +
    IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE 

    Disable input the pin of special purpose port.

    IOPORT_SD0_DATA0 

    SD0_DATA0.

    +
    IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE 

    Sets the pin of special purpose port to input.

    IOPORT_SD0_DATA1 

    SD0_DATA1.

    +
    IOPORT_CFG_NOISE_FILTER_OFF 

    Noise filter disable.

    IOPORT_SD0_DATA2 

    SD0_DATA2.

    +
    IOPORT_CFG_NOISE_FILTER_ON 

    Noise filter enable.

    IOPORT_SD0_DATA3 

    SD0_DATA3.

    +
    IOPORT_CFG_NOISE_FILTER_NUM_4STAGE 

    Sets the pin noise filter to 4-stage filter.

    IOPORT_SD0_DATA4 

    SD0_DATA4.

    +
    IOPORT_CFG_NOISE_FILTER_NUM_8STAGE 

    Sets the pin noise filter to 8-stage filter.

    IOPORT_SD0_DATA5 

    SD0_DATA5.

    +
    IOPORT_CFG_NOISE_FILTER_NUM_12STAGE 

    Sets the pin noise filter to 12-stage filter.

    IOPORT_SD0_DATA6 

    SD0_DATA6.

    +
    IOPORT_CFG_NOISE_FILTER_NUM_16STAGE 

    Sets the pin noise filter to 16-stage filter.

    IOPORT_SD0_DATA7 

    SD0_DATA7.

    +
    IOPORT_CFG_NOISE_FILTER_DIVIDED_B00 

    Sets the FILCLKSEL register value to b'00.

    IOPORT_SD1_CLK 

    SD1_CLK.

    +
    IOPORT_CFG_NOISE_FILTER_DIVIDED_B01 

    Sets the FILCLKSEL register value to b'01.

    IOPORT_SD1_CMD 

    SD1_CMD.

    +
    IOPORT_CFG_NOISE_FILTER_DIVIDED_B10 

    Sets the FILCLKSEL register value to b'10.

    IOPORT_SD1_DATA0 

    SD1_DATA0.

    +
    IOPORT_CFG_NOISE_FILTER_DIVIDED_B11 

    Sets the FILCLKSEL register value to b'11.

    IOPORT_SD1_DATA1 

    SD1_DATA1.

    +
    IOPORT_CFG_PERIPHERAL_PIN 

    Enables pin to operate as a peripheral pin.

    IOPORT_SD1_DATA2 

    SD1_DATA2.

    +
    + +
    +
    + +

    ◆ ioport_event_pin_selection_t

    + +
    +
    +

    Pin selection for port group

    Note
    Event link must be configured by the ELC
    + + - - - - - - - - -
    Enumerator
    IOPORT_EVENT_PIN_SELECTION_NONE 

    No pin selection for port group.

    IOPORT_SD1_DATA3 

    SD1_DATA3.

    +
    IOPORT_EVENT_PIN_SELECTION_PIN_0 

    Select pin 0 to port group.

    IOPORT_QSPI0_SPCLK 

    QSPI0_SPCLK.

    +
    IOPORT_EVENT_PIN_SELECTION_PIN_1 

    Select pin 1 to port group.

    IOPORT_QSPI0_IO0 

    QSPI0_IO0.

    +
    IOPORT_EVENT_PIN_SELECTION_PIN_2 

    Select pin 2 to port group.

    IOPORT_QSPI0_IO1 

    QSPI0_IO1.

    +
    IOPORT_EVENT_PIN_SELECTION_PIN_3 

    Select pin 3 to port group.

    IOPORT_QSPI0_IO2 

    QSPI0_IO2.

    +
    IOPORT_EVENT_PIN_SELECTION_PIN_4 

    Select pin 4 to port group.

    IOPORT_QSPI0_IO3 

    QSPI0_IO3.

    +
    IOPORT_EVENT_PIN_SELECTION_PIN_5 

    Select pin 5 to port group.

    IOPORT_QSPI0_SSL 

    QSPI0_SSL.

    +
    IOPORT_EVENT_PIN_SELECTION_PIN_6 

    Select pin 6 to port group.

    IOPORT_QSPI1_SPCLK 

    QSPI1_SPCLK.

    +
    IOPORT_EVENT_PIN_SELECTION_PIN_7 

    Select pin 7 to port group.

    IOPORT_QSPI1_IO0 

    QSPI1_IO0.

    +
    + +
    +
    + +

    ◆ ioport_event_output_operation_t

    + +
    +
    +

    Port group operation

    Note
    Event link must be configured by the ELC
    + + - - - -
    Enumerator
    IOPORT_EVENT_OUTPUT_OPERATION_LOW 

    Set Low output to output operation.

    IOPORT_QSPI1_IO1 

    QSPI1_IO1.

    +
    IOPORT_EVENT_OUTPUT_OPERATION_HIGH 

    Set High output to output operation.

    IOPORT_QSPI1_IO2 

    QSPI1_IO2.

    +
    IOPORT_EVENT_OUTPUT_OPERATION_TOGGLE 

    Set toggle output to output operation.

    IOPORT_QSPI1_IO3 

    QSPI1_IO3.

    +
    IOPORT_EVENT_OUTPUT_OPERATION_BUFFER 

    Set buffer value output to output operation.

    IOPORT_QSPI1_SSL 

    QSPI1_SSL.

    +
    + +
    +
    + +

    ◆ ioport_event_control_t

    + +
    +
    + + + + +
    enum ioport_event_control_t
    +
    +

    Input port group event control

    Note
    Event link must be configured by the ELC
    + + - -
    Enumerator
    IOPORT_EVENT_CONTROL_DISABLE 

    Disable function related with event link.

    IOPORT_QSPI_RESET_N 

    QSPI_RESET_N.

    +
    IOPORT_EVENT_CONTROL_ENABLE 

    Enable function related with event link.

    IOPORT_QSPI_WP_N 

    QSPI_WP_N.

    +
    + +
    +
    + +

    ◆ ioport_event_direction_t

    + +
    +
    + + + + +
    enum ioport_event_direction_t
    +
    +

    Single port event direction

    Note
    Event link must be configured by the ELC
    + + - -
    Enumerator
    IOPORT_EVENT_DIRECTION_OUTPUT 

    Set output direction to single port.

    IOPORT_QSPI_INT_N 

    QSPI_INT_N.

    +
    IOPORT_EVENT_DIRECTION_INPUT 

    Set input direction to single port.

    IOPORT_WDTOVF_PERROUT_N 

    WDTOVF_PERROUT_N.

    +
    + +
    +
    + +

    ◆ ioport_event_detection_t

    + +
    +
    + + + + +
    enum ioport_event_detection_t
    +
    +

    Input event edge detection

    Note
    Event link must be configured by the ELC
    + + - - -
    Enumerator
    IOPORT_EVENT_DETECTION_RISING_EDGE 

    Set rising edge to event detection for input event.

    IOPORT_RIIC0_SDA 

    RIIC0_SDA.

    +
    IOPORT_EVENT_DETECTION_FALLING_EDGE 

    Set falling edge to event detection for input event.

    IOPORT_RIIC0_SCL 

    RIIC0_SCL.

    +
    IOPORT_EVENT_DETECTION_BOTH_EGDE 

    Set both edges to event detection for input event.

    IOPORT_RIIC1_SDA 

    RIIC1_SDA.

    +
    + +
    +
    + +

    ◆ ioport_event_initial_buffer_value_t

    + +
    +
    +

    Initial value for buffer register

    Note
    Event link must be configured by the ELC
    + + -
    Enumerator
    IOPORT_EVENT_INITIAL_BUFFER_VALUE_LOW 

    Set low to initial value of buffer register for input port group.

    IOPORT_RIIC1_SCL 

    RIIC1_SCL.

    +
    IOPORT_EVENT_INITIAL_BUFFER_VALUE_HIGH 

    Set high to initial value of buffer register for input port group.

    +
    +
    + +

    ◆ ioport_noise_filter_irq_port_offset_t

    + +
    +
    +

    Superset of offset for all IRQ functions.

    + +
    +
    + +

    ◆ ioport_noise_filter_dreq_port_offset_t

    + +
    +
    +

    Superset of offset for all DREQ functions.

    +

    Function Documentation

    @@ -753,10 +1163,15 @@

    -

    This API function has NOT been supported because RZ/V does not have an ELC.

    +

    Reads the value of the event input data of a specific pin. Implements ioport_api_t::pinEventInputRead.

    +

    The pin event data is captured in response to a trigger from the ELC. This function enables this data to be read. Using the event system allows the captured data to be stored when it occurs and then read back at a later time.

    Return values
    - + + + + +
    FSP_ERR_UNSUPPORTEDR_IOPORT_PinEventInputRead is not supported on this device.
    FSP_SUCCESSPin read
    FSP_ERR_ASSERTIONNULL pointer
    FSP_ERR_NOT_OPENThe module has not been opened
    FSP_ERR_INVALID_ARGUMENTPort is not valid ELC PORT.
    FSP_ERR_UNSUPPORTEDThe function is not supported on the device which doesn't support ELC.
    @@ -794,10 +1209,15 @@

    -

    This API function has NOT been supported because RZ/V does not have an ELC.

    +

    This function writes the event output data value to a pin. Implements ioport_api_t::pinEventOutputWrite.

    +

    Using the event system enables a pin state to be stored by this function in advance of being output on the pin. The output to the pin will occur when the ELC event occurs.

    Return values
    - + + + + +
    FSP_ERR_UNSUPPORTEDR_IOPORT_PinEventOutputWrite is not supported on this device.
    FSP_SUCCESSPin event data written
    FSP_ERR_INVALID_ARGUMENTPort or Pin or value not valid
    FSP_ERR_NOT_OPENThe module has not been opened
    FSP_ERR_ASSERTIONNULL pointer
    FSP_ERR_UNSUPPORTEDThe function is not supported on the device which doesn't support ELC.
    @@ -976,10 +1396,16 @@

    -

    This API function has NOT been supported because RZ/V does not have an ELC.

    +

    Reads the value of the event input data. Implements ioport_api_t::portEventInputRead().

    +

    The event input data for the port will be read. Each bit in the returned value corresponds to a pin on the port. For example, bit 7 corresponds to pin 7, bit 6 to pin 6, and so on.

    +

    The port event data is captured in response to a trigger from the ELC. This function enables this data to be read. Using the event system allows the captured data to be stored when it occurs and then read back at a later time.

    Return values
    - + + + + +
    FSP_ERR_UNSUPPORTEDR_IOPORT_PortEventInputRead is not supported on this device.
    FSP_SUCCESSPort read
    FSP_ERR_INVALID_ARGUMENTPort not a valid ELC port
    FSP_ERR_ASSERTIONNULL pointer
    FSP_ERR_NOT_OPENThe module has not been opened
    FSP_ERR_UNSUPPORTEDThe function is not supported on the device which doesn't support ELC.
    @@ -1023,10 +1449,16 @@

    -

    This API function has NOT been supported because RZ/V does not have an ELC.

    +

    This function writes the set and reset event output data for a port. Implements ioport_api_t::portEventOutputWrite.

    +

    Using the event system enables a port state to be stored by this function in advance of being output on the port. The output to the port will occur when the ELC event occurs.

    +

    The input value will be written to the specified port when an ELC event configured for that port occurs. Each bit in the value parameter corresponds to a bit on the port. For example, bit 7 corresponds to pin 7, bit 6 to pin 6, and so on. Each bit in the mask parameter corresponds to a pin on the port.

    Return values
    - + + + + +
    FSP_ERR_UNSUPPORTEDR_IOPORT_PortEventOutputWrite is not supported on this device.
    FSP_SUCCESSPort event data written
    FSP_ERR_INVALID_ARGUMENTPort or Mask not valid
    FSP_ERR_NOT_OPENThe module has not been opened
    FSP_ERR_ASSERTIONNULL pointer
    FSP_ERR_UNSUPPORTEDThe function is not supported on the device which doesn't support ELC.
    @@ -1129,190 +1561,6 @@

    Note
    This function is re-entrant for different ports.
    -

    -
    - -

    ◆ R_IOPORT_SDVoltageModeCfg()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    fsp_err_t R_IOPORT_SDVoltageModeCfg (ioport_ctrl_t *const p_ctrl,
    ioport_sd_channel_t channel,
    ioport_sd_voltage_t voltage 
    )
    -
    -

    Configures SD channel voltage mode. Implements ioport_api_t::pinSDVoltageModeCfg.

    -
    Return values
    - - - - - - -
    FSP_SUCCESSSD voltage mode set
    FSP_ERR_INVALID_ARGUMENTChannel or voltage not valid
    FSP_ERR_UNSUPPORTEDSD voltage configuration not supported on this device.
    FSP_ERR_NOT_OPENThe module has not been opened
    FSP_ERR_ASSERTIONNULL pointer
    -
    -
    -
    Note
    This function is not re-entrant.
    - -
    -
    - -

    ◆ R_IOPORT_QSPIVoltageModeCfg()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    fsp_err_t R_IOPORT_QSPIVoltageModeCfg (ioport_ctrl_t *const p_ctrl,
    ioport_qspi_channel_t channel,
    ioport_qspi_voltage_t voltage 
    )
    -
    -

    Configures QSPI channel voltage mode. Implements ioport_api_t::pinQSPIVoltageModeCfg.

    -
    Return values
    - - - - - - -
    FSP_SUCCESSQSPI voltage mode set
    FSP_ERR_INVALID_ARGUMENTChannel or voltage not valid
    FSP_ERR_UNSUPPORTEDQSPI voltage configuration not supported on this device.
    FSP_ERR_NOT_OPENThe module has not been opened
    FSP_ERR_ASSERTIONNULL pointer
    -
    -
    -
    Note
    This function is not re-entrant.
    - -
    -
    - -

    ◆ R_IOPORT_EthernetVoltageModeCfg()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    fsp_err_t R_IOPORT_EthernetVoltageModeCfg (ioport_ctrl_t *const p_ctrl,
    ioport_ethernet_channel_t channel,
    ioport_ethernet_voltage_t voltage 
    )
    -
    -

    Configures Ethernet channel voltage mode. Implements ioport_api_t::pinEthernetVoltageModeCfg.

    -
    Return values
    - - - - - - -
    FSP_SUCCESSEthernet voltage mode set
    FSP_ERR_INVALID_ARGUMENTChannel or voltage not valid
    FSP_ERR_UNSUPPORTEDEthernet voltage configuration not supported on this device.
    FSP_ERR_NOT_OPENThe module has not been opened
    FSP_ERR_ASSERTIONNULL pointer
    -
    -
    -
    Note
    This function is not re-entrant.
    - -
    -
    - -

    ◆ R_IOPORT_EthernetModeCfg()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    fsp_err_t R_IOPORT_EthernetModeCfg (ioport_ctrl_t *const p_ctrl,
    ioport_ethernet_channel_t channel,
    ioport_ethernet_mode_t mode 
    )
    -
    -

    Configures Ethernet channel PHY mode. Implements ioport_api_t::pinEthernetModeCfg.

    -
    Return values
    - - - - - - -
    FSP_SUCCESSEthernet PHY mode set
    FSP_ERR_INVALID_ARGUMENTChannel or mode not valid
    FSP_ERR_UNSUPPORTEDEthernet configuration not supported on this device.
    FSP_ERR_NOT_OPENThe module has not been opened
    FSP_ERR_ASSERTIONNULL pointer
    -
    -
    -
    Note
    This function is not re-entrant.
    -
    @@ -1321,7 +1569,7 @@

      - +

    diff --git a/group___i_o_p_o_r_t.js b/group___i_o_p_o_r_t.js index e13f3ea..a17ffff 100644 --- a/group___i_o_p_o_r_t.js +++ b/group___i_o_p_o_r_t.js @@ -1,173 +1,153 @@ var group___i_o_p_o_r_t = [ [ "ioport_instance_ctrl_t", "group___i_o_p_o_r_t.html#structioport__instance__ctrl__t", null ], - [ "ioport_port_pin_t", "group___i_o_p_o_r_t.html#ga3a0a7f66458384069f25931ecb83840e", [ - [ "IOPORT_PORT_00_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9e8641427dce87cbb4b8e94da9988bb6", null ], - [ "IOPORT_PORT_00_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa43e0035d6e67601f3e32afe2c866302", null ], - [ "IOPORT_PORT_01_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea43352cc8543ee207ea9d59a9a61cea97", null ], - [ "IOPORT_PORT_01_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2232cca0e019d0de7c090e0a4f46b040", null ], - [ "IOPORT_PORT_02_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaccddb043ca627fb3f174e3c212c021c9", null ], - [ "IOPORT_PORT_02_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea574b809835bddedd610d50bf74d696e1", null ], - [ "IOPORT_PORT_03_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eade503295c3201143266caecb21087c0e", null ], - [ "IOPORT_PORT_03_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea766a886ad8d781f1e027033bb4728169", null ], - [ "IOPORT_PORT_04_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaed350ead2aa5cfc5b02fe968eed69c6e", null ], - [ "IOPORT_PORT_04_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea008601cafccc5ef423b7b0fa2f10e774", null ], - [ "IOPORT_PORT_05_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea73e637eb4faa0c0306364c7df1af095f", null ], - [ "IOPORT_PORT_05_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea0c7644372a96f31edee311d1a3a8b2f2", null ], - [ "IOPORT_PORT_05_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaec9b4eece5b92f63ca357e879d1a5b99", null ], - [ "IOPORT_PORT_06_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead6f7b58c3226756f42a3e7683b536b13", null ], - [ "IOPORT_PORT_06_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac8db29b7a712c7a4396332b902f87eab", null ], - [ "IOPORT_PORT_07_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea419e03f7c7ca6e7e8c32710146ef628c", null ], - [ "IOPORT_PORT_07_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab52bfe38ab8f85dc73ff58c440224ab5", null ], - [ "IOPORT_PORT_07_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa47d77df21bad7b6b52e916e4f778382", null ], - [ "IOPORT_PORT_08_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf7f5fc685631de387d29708b82032d42", null ], - [ "IOPORT_PORT_08_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2da4f3380840124904c73877d5d9f947", null ], - [ "IOPORT_PORT_08_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5296b9fb15049795284d6f7b06d7adbc", null ], - [ "IOPORT_PORT_09_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea55123dd39739862f468305f1d80cd696", null ], - [ "IOPORT_PORT_09_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9135241bca61a6acb3c444856b652b69", null ], - [ "IOPORT_PORT_10_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4a316ebb9212390c839de79bf78fb699", null ], - [ "IOPORT_PORT_10_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab18dacb19cfb46999a130cb41b5bd011", null ], - [ "IOPORT_PORT_11_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9476c736ebc3faaf91c4807939a24dee", null ], - [ "IOPORT_PORT_11_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea520361cb7a3c75b3b53de8064c568081", null ], - [ "IOPORT_PORT_12_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea52513b77dbaf4f5b8960a87a81a06e79", null ], - [ "IOPORT_PORT_12_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaecc9e48293365e0dd2b321efb6f5d39a", null ], - [ "IOPORT_PORT_13_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5b0b18f88c4783b6bc28b3e7b51e4c03", null ], - [ "IOPORT_PORT_13_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea99dff2c1a30315ab757bcc4dd902ff78", null ], - [ "IOPORT_PORT_13_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8f5be37feb4892e7259c405b9e80cfc8", null ], - [ "IOPORT_PORT_14_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eafe21679da09abea718bb09af6174304e", null ], - [ "IOPORT_PORT_14_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2857769c0ab24657b2319590a25ec47a", null ], - [ "IOPORT_PORT_15_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2a58348e464d6088768d03d709d8a26c", null ], - [ "IOPORT_PORT_15_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf0a8acc41485bd9ee6b1fd7477bae513", null ], - [ "IOPORT_PORT_16_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1f88aed824ad7ccc4e75d3534d8dce7f", null ], - [ "IOPORT_PORT_16_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab7c4762a756f042c67897dd2c1e01979", null ], - [ "IOPORT_PORT_17_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea51bd16052f2785769c23c64d60bac96c", null ], - [ "IOPORT_PORT_17_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4edac109686b07e6e4f372f2e51e80e0", null ], - [ "IOPORT_PORT_17_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3675fc32067ccd2882654241b29e62de", null ], - [ "IOPORT_PORT_18_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea82ef8efec0a83b34ead4bc3f43128a6d", null ], - [ "IOPORT_PORT_18_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2a8900e165fe1de4b6b842c2526d5e83", null ], - [ "IOPORT_PORT_19_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac1e3d1a4944c6d997a33ea1801378cd8", null ], - [ "IOPORT_PORT_19_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead42cf49d73c876c64dcab5d7408931df", null ], - [ "IOPORT_PORT_20_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eace68a0576d4a5ff8df48808cfdeb8d98", null ], - [ "IOPORT_PORT_20_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3cacfd8ce91b532493d14c75c7075a03", null ], - [ "IOPORT_PORT_20_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea848a705c8ca2c2633e8f53e020f42015", null ], - [ "IOPORT_PORT_21_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3d09e5b1493cc84079d401d2e7c357d5", null ], - [ "IOPORT_PORT_21_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eabc7758254f4520983e755e6657dd3db8", null ], - [ "IOPORT_PORT_22_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea24ad0afca1280d4bdaba9d099cc04f1e", null ], - [ "IOPORT_PORT_22_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab21e3adba1d1c2a7610f65d78a5a2de5", null ], - [ "IOPORT_PORT_23_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85b1edd2ae53a6c8fc908cd8d8e32949", null ], - [ "IOPORT_PORT_23_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf7c2e37ea2ed8dbf8bd1ce4d5639c7cf", null ], - [ "IOPORT_PORT_24_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2bba85a684b1b2acad5488f8aa9a0b49", null ], - [ "IOPORT_PORT_24_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa4b7d5b6cd1e1348d889ff4d629def77", null ], - [ "IOPORT_PORT_25_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf804b7f7a2d663c0ec96f1fc04d87c8b", null ], - [ "IOPORT_PORT_25_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea818baced7ae6d55d2d9ae53f3fa05727", null ], - [ "IOPORT_PORT_26_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf8a2fbf190a7253cf15b62fb4b1ed250", null ], - [ "IOPORT_PORT_26_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa5c2f062b6dc22153c51224f5bf74831", null ], - [ "IOPORT_PORT_27_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea434f1230c094bb875142ba381405c771", null ], - [ "IOPORT_PORT_27_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea34d2b60eeb41747629287e896ff2e023", null ], - [ "IOPORT_PORT_28_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaae17894663a054577834088bf4699d84", null ], - [ "IOPORT_PORT_28_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6f2d280a974fcb51540e44652a540b7c", null ], - [ "IOPORT_PORT_29_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eabb4c2bfccb51a7c79562e6e90100f27b", null ], - [ "IOPORT_PORT_29_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacca4bf7e56b59adf9ef018f42dde6620", null ], - [ "IOPORT_PORT_30_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa0925fbbe23680defb4e6302c0aa2349", null ], - [ "IOPORT_PORT_30_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf30a0d759b8157b155be988101c69710", null ], - [ "IOPORT_PORT_31_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead7622903be00b10039f5987e3bf6f8e6", null ], - [ "IOPORT_PORT_31_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea268e2121d6a01e09280e75fa1ada4d3a", null ], - [ "IOPORT_PORT_32_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea772c204e2baf5217fdb0ec708673b035", null ], - [ "IOPORT_PORT_32_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8f143ad244f73b8f02c3f4eac606935c", null ], - [ "IOPORT_PORT_33_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea35c44d77c4fd2847baaf885a720bb5a8", null ], - [ "IOPORT_PORT_33_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadb25625b3e64951140630eb72d8ec9d7", null ], - [ "IOPORT_PORT_34_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac53340cbc4667d63cb9964a2f3a0ab3a", null ], - [ "IOPORT_PORT_34_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf0f0d0ddab21c0d394a1fea1d6255815", null ], - [ "IOPORT_PORT_35_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2517ff700ae9cbd08c9afa4bf2c6a5ba", null ], - [ "IOPORT_PORT_35_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1215ed3fe9e45dc1fed620151a4c0fac", null ], - [ "IOPORT_PORT_36_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea06732f1dfb71eb77e409a304e9e07dd5", null ], - [ "IOPORT_PORT_36_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea93f0a6b6849fcd4e5776d7b73a27de41", null ], - [ "IOPORT_PORT_37_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaceef8d66de036d8243971e09c734745d", null ], - [ "IOPORT_PORT_37_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac9c963ad72529582b6a7c9610c577438", null ], - [ "IOPORT_PORT_37_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea11ccfc96a5b692f76fe8438000a4ee1c", null ], - [ "IOPORT_PORT_38_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea49442ae10c29c3813e551bfb47857c3a", null ], - [ "IOPORT_PORT_38_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3b2d043c3624ad44607cfff3d830508f", null ], - [ "IOPORT_PORT_39_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea7603fc9dff5daf10f6ea048074d8a3b1", null ], - [ "IOPORT_PORT_39_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8f7dc4da027a768087f66e29357decf6", null ], - [ "IOPORT_PORT_39_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadd6ef9d4c32065ffd10115120f10875d", null ], - [ "IOPORT_PORT_40_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae1efb56949dcafe26fb4533344e05de4", null ], - [ "IOPORT_PORT_40_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea03ce087f738cf60211d1b784d2104298", null ], - [ "IOPORT_PORT_40_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3d8aad86bb03fe49685ce30174d42629", null ], - [ "IOPORT_PORT_41_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea63e82c02108d13c80fe9c63345a342b1", null ], - [ "IOPORT_PORT_41_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea55571b3fd29a380dcc685d2a96e7b911", null ], - [ "IOPORT_PORT_42_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead1d820e91b2a4527e30edd99baf4ddb5", null ], - [ "IOPORT_PORT_42_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa6c3592451584e70f36ab179635d2f7f", null ], - [ "IOPORT_PORT_42_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaff56dcaf2d1f75b737a2148013ae7cb9", null ], - [ "IOPORT_PORT_42_PIN_03", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead846eb09dca598f33cb0e67f8f2d5939", null ], - [ "IOPORT_PORT_42_PIN_04", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae05c2ca8144ab1655c21d4b4500e95b7", null ], - [ "IOPORT_PORT_43_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacdf0005bb30c87ca6fe3175d331a9caf", null ], - [ "IOPORT_PORT_43_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacfb029998452b9cb9186499e7057ed70", null ], - [ "IOPORT_PORT_43_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea96a332bc30621413ab2d9fdfd85563c4", null ], - [ "IOPORT_PORT_43_PIN_03", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea61161beff96648267c82588e10c0a6fa", null ], - [ "IOPORT_PORT_44_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6d00496a003e48a7d8b1170bafb9157d", null ], - [ "IOPORT_PORT_44_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea75ae1e764d349da782bab9cbf1d9ecb0", null ], - [ "IOPORT_PORT_44_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea602aaee12cfedbbd7a45ac52491a931e", null ], - [ "IOPORT_PORT_44_PIN_03", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6db1f2c8912880f0a5b12de3bc150e7c", null ], - [ "IOPORT_PORT_45_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacd8f65d2924a0afc8ce467f8d68e3325", null ], - [ "IOPORT_PORT_45_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea01acb4cdb777dba092b2a380406c03fe", null ], - [ "IOPORT_PORT_45_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab567b92c616b560f30e93d16d3391119", null ], - [ "IOPORT_PORT_45_PIN_03", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85e6369b71fe56afa6d76ff489edd066", null ], - [ "IOPORT_PORT_46_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85ebd2058b57e8af5d514057de0eb65b", null ], - [ "IOPORT_PORT_46_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadae61ab83263cd30bde872e7d64e5a7e", null ], - [ "IOPORT_PORT_46_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9863a865ad695de365f91f935d1052fc", null ], - [ "IOPORT_PORT_46_PIN_03", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea35b4a0ced608f3e7d26f9e7bc046b796", null ], - [ "IOPORT_PORT_47_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf0d44ed8ffe15d0e262f3acc77033796", null ], - [ "IOPORT_PORT_47_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa84fc759a1a78a36a4a23f4ebb194d8f", null ], - [ "IOPORT_PORT_47_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea25f5bd78838dffd5c27b17afb70fa691", null ], - [ "IOPORT_PORT_47_PIN_03", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac331aec700b594f3cb5d1f46cf9f37b4", null ], - [ "IOPORT_PORT_48_PIN_00", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaefb8b85fc7868573c775a508f79299fb", null ], - [ "IOPORT_PORT_48_PIN_01", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea28d2b880c59b99ca445fdcd5cbce2683", null ], - [ "IOPORT_PORT_48_PIN_02", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85a5b29dc69dbbd49b7c313f0876e668", null ], - [ "IOPORT_PORT_48_PIN_03", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea37557bcc8dbdc94c0ec3384e4b951e46", null ], - [ "IOPORT_PORT_48_PIN_04", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea188e17e95c4825d3604cfe19e60ac21f", null ], - [ "IOPORT_NMI", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea837ea61cf43956e07dac2caf276ea8db", null ], - [ "IOPORT_TMS_SWDIO", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac411c9ef9aa6eec58b0f007ff106dc2d", null ], - [ "IOPORT_TDO", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9417750d44193bb9c16e528c62c17e51", null ], - [ "IOPORT_AUDIO_CLK1", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea61f68231948579e8c2a62470e8fb0a68", null ], - [ "IOPORT_AUDIO_CLK2", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea16d2b07cec666834a1ffca8c722dd575", null ], - [ "IOPORT_SD0_CLK", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea78ae1323844721ac089c94334a2eed20", null ], - [ "IOPORT_SD0_CMD", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf4e2eb49a1d436176d92a273cf201e55", null ], - [ "IOPORT_SD0_RST_N", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab47a9b3b4be29d08e9dfbb455c4ffcce", null ], - [ "IOPORT_SD0_DATA0", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea75c267849ebce9a4c50430b38915fe5e", null ], - [ "IOPORT_SD0_DATA1", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea09fb47b073ce0bc40744acb625938fcd", null ], - [ "IOPORT_SD0_DATA2", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1f9e0e7feeda6f22885010e0b6ad4483", null ], - [ "IOPORT_SD0_DATA3", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea856ede443f9ef018a2847711a5f3c92e", null ], - [ "IOPORT_SD0_DATA4", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5093fb5b46c33af09c41b85aa6357edd", null ], - [ "IOPORT_SD0_DATA5", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4317b9d3d9ac6a4648cd4baffd7c2f27", null ], - [ "IOPORT_SD0_DATA6", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5bc69a638a2c0de8a9c301288d090335", null ], - [ "IOPORT_SD0_DATA7", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4f113e86f2c0cb4e67e7e58cbedbbafc", null ], - [ "IOPORT_SD1_CLK", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea67387cf0604bf4cd33ad3f2ba4498cc9", null ], - [ "IOPORT_SD1_CMD", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf5a5f64311459a33954c219ccf68ba86", null ], - [ "IOPORT_SD1_DATA0", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8602d2422a4f422bf4183484822b032a", null ], - [ "IOPORT_SD1_DATA1", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4d53f3410d7a514538dc6133769182ca", null ], - [ "IOPORT_SD1_DATA2", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea558ff8f715d38ea04d3eee1632ddea0e", null ], - [ "IOPORT_SD1_DATA3", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3c4788599942e153b3248cde5f1d9cc1", null ], - [ "IOPORT_QSPI0_SPCLK", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea48de60bd8662827861ae919950ff59a5", null ], - [ "IOPORT_QSPI0_IO0", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa92561cb3f93b3f0957bfa8d3b1e1546", null ], - [ "IOPORT_QSPI0_IO1", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea144be6f5fc2b813888b674368ec9f39a", null ], - [ "IOPORT_QSPI0_IO2", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae2c00b6bf6c44eb8b0204dac0733bdc8", null ], - [ "IOPORT_QSPI0_IO3", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae7e423a820f12cdf7f716128b4025952", null ], - [ "IOPORT_QSPI0_SSL", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf3fb451820b03a63a245bc2d30c73ab3", null ], - [ "IOPORT_QSPI1_SPCLK", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaae6d884cdb41ce1709161c3bdf9ce945", null ], - [ "IOPORT_QSPI1_IO0", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadb1891675452e2fac89e1191ee42f0e0", null ], - [ "IOPORT_QSPI1_IO1", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadddbae4c2e5a5d5984627fc9f218418b", null ], - [ "IOPORT_QSPI1_IO2", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac4cfe7af0a59bdf8c0fb629e42e9908b", null ], - [ "IOPORT_QSPI1_IO3", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5dcde61ab3cc4c135683427b8874cbf5", null ], - [ "IOPORT_QSPI1_SSL", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab2667bb41ffb795c8bc65735c2f5d424", null ], - [ "IOPORT_QSPI_RESET_N", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae37036d2a5563a74c41d0244d07b1b7c", null ], - [ "IOPORT_QSPI_WP_N", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea964a485a68f15cec5cbea9107d537f30", null ], - [ "IOPORT_QSPI_INT_N", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1e9e542e62fb69020948426b6175570c", null ], - [ "IOPORT_WDTOVF_PERROUT_N", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea97a8121677c7b7269587a0f58e1fd207", null ], - [ "IOPORT_RIIC0_SDA", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea48b61b705d3aeb5b03e79a6affe47c46", null ], - [ "IOPORT_RIIC0_SCL", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6bdb72b4c7d733a09d7fa449a6e82a43", null ], - [ "IOPORT_RIIC1_SDA", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea0e30454819b72aefa2250971389f2765", null ], - [ "IOPORT_RIIC1_SCL", "group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6cb7a1bbfe93cd71b79a9d586268fa57", null ] + [ "ioport_event_single_t", "group___i_o_p_o_r_t.html#structioport__event__single__t", [ + [ "event_control", "group___i_o_p_o_r_t.html#a0b3044299c4d5b19c4fc7ad635ec59f4", null ], + [ "direction", "group___i_o_p_o_r_t.html#a432e6c1358ecd19696f9bab115aaa4cd", null ], + [ "port_num", "group___i_o_p_o_r_t.html#ae9a5e65d3c876eb72f8bcfc15cea840a", null ], + [ "operation", "group___i_o_p_o_r_t.html#adbcdc352d8f992d85fa368ba34c33530", null ], + [ "edge_detection", "group___i_o_p_o_r_t.html#a3a19c2ef20ea13bdcd4d9fb3ee692cc8", null ] ] ], + [ "ioport_event_group_output_t", "group___i_o_p_o_r_t.html#structioport__event__group__output__t", [ + [ "pin_select", "group___i_o_p_o_r_t.html#afa7beb47d18cb3d5b96d5a8159e2db3e", null ], + [ "operation", "group___i_o_p_o_r_t.html#a0092081f02f3d9b89d575f613fc06380", null ] + ] ], + [ "ioport_event_group_input_t", "group___i_o_p_o_r_t.html#structioport__event__group__input__t", [ + [ "event_control", "group___i_o_p_o_r_t.html#a7dbdab1b9475e8601419e739882b73f8", null ], + [ "edge_detection", "group___i_o_p_o_r_t.html#a58889324d1f0207e5a5056e4e491325a", null ], + [ "overwrite_control", "group___i_o_p_o_r_t.html#afa164460f4684605bbbe4c529ccdcca0", null ], + [ "pin_select", "group___i_o_p_o_r_t.html#acd1e6d8038a41d68e0843905a6f599ef", null ], + [ "buffer_init_value", "group___i_o_p_o_r_t.html#a8cacbb5efbafad8505bd0140ece21b08", null ] + ] ], + [ "ioport_extend_cfg_t", "group___i_o_p_o_r_t.html#structioport__extend__cfg__t", [ + [ "p_port_group_output_cfg", "group___i_o_p_o_r_t.html#a4ee136a2b01acdbb29db539464741770", null ], + [ "p_port_group_input_cfg", "group___i_o_p_o_r_t.html#ae256dab18228aacaf260e215b0919086", null ], + [ "p_single_port_cfg", "group___i_o_p_o_r_t.html#a4fda5dd01b9cdd2517e99df949b09c53", null ] + ] ], + [ "ioport_peripheral_t", "group___i_o_p_o_r_t.html#gaebbb969fda93422aaf1878d6f4ff8fe8", [ + [ "IOPORT_PERIPHERAL_MODE0", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a576f1af4e835f4533486d91cca50d8e9", null ], + [ "IOPORT_PERIPHERAL_MODE1", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a5a8bf28d2e93cb6235e9a7beea2bfa0e", null ], + [ "IOPORT_PERIPHERAL_MODE2", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ad7f23c31f6b56d6cf7b1024b8ea46b03", null ], + [ "IOPORT_PERIPHERAL_MODE3", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a44817e0b76e81f0353e70fce82f556fa", null ], + [ "IOPORT_PERIPHERAL_MODE4", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8afb9e29f050c27973d20c0273f88c6207", null ], + [ "IOPORT_PERIPHERAL_MODE5", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8aa285c9c361e0be95e5e87e788bd8b2de", null ], + [ "IOPORT_PERIPHERAL_MODE6", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a8f3a71786ad28300fa1a6ac3c13c2785", null ], + [ "IOPORT_PERIPHERAL_MODE7", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ae66fce3d3c2f6f91af8c75de2a05ae72", null ], + [ "IOPORT_PERIPHERAL_MODE8", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ac3fc51d181290cff176e3aea6b74e37d", null ], + [ "IOPORT_PERIPHERAL_MODE9", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a1279dc7076cbf2067f29fc53d5f40f03", null ], + [ "IOPORT_PERIPHERAL_MODE10", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ac5c270420b2ae084817ee66214bbab36", null ], + [ "IOPORT_PERIPHERAL_MODE11", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a59e432aac051ffe1f8cbf0c34bff6bec", null ], + [ "IOPORT_PERIPHERAL_MODE12", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8abc5b8302f7e467ec4c95faeb996cc012", null ], + [ "IOPORT_PERIPHERAL_MODE13", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ad95d5ee06e7b584f16ebe622321a4f1c", null ], + [ "IOPORT_PERIPHERAL_MODE14", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a0956043c330b44ecbdc66009955514cc", null ], + [ "IOPORT_PERIPHERAL_MODE15", "group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a79024706312ec731e9bf51d957ebbe71", null ] + ] ], + [ "ioport_cfg_options_t", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574", [ + [ "IOPORT_CFG_PORT_DIRECTION_HIZ", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a627d716bdff4fe54f3cbf9f2a5b87bf9", null ], + [ "IOPORT_CFG_PORT_DIRECTION_INPUT", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8d597c18cc5d24abc1b70f2526f2b6cb", null ], + [ "IOPORT_CFG_PORT_DIRECTION_OUTPUT", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab4d8c12714fab80d21b5b5a636f3cf97", null ], + [ "IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3a85f3deec88b01065fd3478ba691860", null ], + [ "IOPORT_CFG_PORT_OUTPUT_LOW", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a1913e3b0734a4be613eb2fba8ec888c5", null ], + [ "IOPORT_CFG_PORT_OUTPUT_HIGH", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4b93b19150d018ab8ba5ef74e2852499", null ], + [ "IOPORT_CFG_PULLUP_PULLDOWN_DISABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3945f91ccb0beb4f87613fa0d9884965", null ], + [ "IOPORT_CFG_PULLUP_ENABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a925954d59fa1101a4784a0d64a64d133", null ], + [ "IOPORT_CFG_PULLDOWN_ENABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a97baa43b94e675e2a4ae7a90dd4a94c6", null ], + [ "IOPORT_CFG_NOD_DISABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a6d26833fed98c1306a3f41882c24c66d", null ], + [ "IOPORT_CFG_NOD_ENABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8c15fce9c42b94e63e3bd4bacc36df55", null ], + [ "IOPORT_CFG_SCHMITT_DISABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574abaa22c1510b13b07ab320d289584266b", null ], + [ "IOPORT_CFG_SCHMITT_ENABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a73cdc97104d6368ec1b37ed3ee39ec2d", null ], + [ "IOPORT_CFG_DRIVE_B00", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4f3c70e0bd324aecc0fed994903b63b0", null ], + [ "IOPORT_CFG_DRIVE_B01", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af4952693675255ac32a0813a1100e038", null ], + [ "IOPORT_CFG_DRIVE_B10", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac882c17c38a2a20dfd0b5e1dd3eaeaf4", null ], + [ "IOPORT_CFG_DRIVE_B11", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a0c5a07dad389d25a576c734a391ec148", null ], + [ "IOPORT_CFG_TINT_DISABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac78c3e06c1adb07cd707118f321ef94e", null ], + [ "IOPORT_CFG_TINT_ENABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3691c62fc89eb3e7df1eae9064206c4e", null ], + [ "IOPORT_CFG_SLEW_RATE_SLOW", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9c17101eaef4bf0fd2beb880a29317a8", null ], + [ "IOPORT_CFG_SLEW_RATE_FAST", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574accc921bf1d788c6f10b0225b65144f00", null ], + [ "IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a968aea46146f3db05b2f9d2e1c29650f", null ], + [ "IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a10595587e1c5984cecf3578625c05040", null ], + [ "IOPORT_CFG_NOISE_FILTER_OFF", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a23f3f6712eefca788aa61da4976fd565", null ], + [ "IOPORT_CFG_NOISE_FILTER_ON", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a816a25b17c72bca7e267d47eb7f45dbc", null ], + [ "IOPORT_CFG_NOISE_FILTER_NUM_4STAGE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9a30d0a8eb346f1c1951396c0559ef64", null ], + [ "IOPORT_CFG_NOISE_FILTER_NUM_8STAGE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab7e5fcab2fd99046fcedb85c34070e2c", null ], + [ "IOPORT_CFG_NOISE_FILTER_NUM_12STAGE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af0dbea168d9df29c6a4180e202370f22", null ], + [ "IOPORT_CFG_NOISE_FILTER_NUM_16STAGE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ace057086d321233881c1f335b6764bc2", null ], + [ "IOPORT_CFG_NOISE_FILTER_DIVIDED_B00", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a06cd1c84c6f44e8d7a932962f605e649", null ], + [ "IOPORT_CFG_NOISE_FILTER_DIVIDED_B01", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a57ddc25ef284420d97a12a7eca0a0a9b", null ], + [ "IOPORT_CFG_NOISE_FILTER_DIVIDED_B10", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a189170b389c1f0430c626bd367b47bf7", null ], + [ "IOPORT_CFG_NOISE_FILTER_DIVIDED_B11", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4e5c1c29a153030dbaeae8b7d6643d48", null ], + [ "IOPORT_CFG_PERIPHERAL_PIN", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a2066555437a19b9e6e721fb494c8f5c3", null ], + [ "IOPORT_CFG_PORT_DIRECTION_HIZ", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a627d716bdff4fe54f3cbf9f2a5b87bf9", null ], + [ "IOPORT_CFG_PORT_DIRECTION_INPUT", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8d597c18cc5d24abc1b70f2526f2b6cb", null ], + [ "IOPORT_CFG_PORT_DIRECTION_OUTPUT", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab4d8c12714fab80d21b5b5a636f3cf97", null ], + [ "IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3a85f3deec88b01065fd3478ba691860", null ], + [ "IOPORT_CFG_PORT_OUTPUT_LOW", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a1913e3b0734a4be613eb2fba8ec888c5", null ], + [ "IOPORT_CFG_PORT_OUTPUT_HIGH", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4b93b19150d018ab8ba5ef74e2852499", null ], + [ "IOPORT_CFG_PULLUP_PULLDOWN_DISABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3945f91ccb0beb4f87613fa0d9884965", null ], + [ "IOPORT_CFG_PULLUP_ENABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a925954d59fa1101a4784a0d64a64d133", null ], + [ "IOPORT_CFG_PULLDOWN_ENABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a97baa43b94e675e2a4ae7a90dd4a94c6", null ], + [ "IOPORT_CFG_NOD_DISABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a6d26833fed98c1306a3f41882c24c66d", null ], + [ "IOPORT_CFG_NOD_ENABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8c15fce9c42b94e63e3bd4bacc36df55", null ], + [ "IOPORT_CFG_SCHMITT_DISABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574abaa22c1510b13b07ab320d289584266b", null ], + [ "IOPORT_CFG_SCHMITT_ENABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a73cdc97104d6368ec1b37ed3ee39ec2d", null ], + [ "IOPORT_CFG_DRIVE_B00", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4f3c70e0bd324aecc0fed994903b63b0", null ], + [ "IOPORT_CFG_DRIVE_B01", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af4952693675255ac32a0813a1100e038", null ], + [ "IOPORT_CFG_DRIVE_B10", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac882c17c38a2a20dfd0b5e1dd3eaeaf4", null ], + [ "IOPORT_CFG_DRIVE_B11", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a0c5a07dad389d25a576c734a391ec148", null ], + [ "IOPORT_CFG_TINT_DISABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac78c3e06c1adb07cd707118f321ef94e", null ], + [ "IOPORT_CFG_TINT_ENABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3691c62fc89eb3e7df1eae9064206c4e", null ], + [ "IOPORT_CFG_SLEW_RATE_SLOW", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9c17101eaef4bf0fd2beb880a29317a8", null ], + [ "IOPORT_CFG_SLEW_RATE_FAST", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574accc921bf1d788c6f10b0225b65144f00", null ], + [ "IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a968aea46146f3db05b2f9d2e1c29650f", null ], + [ "IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a10595587e1c5984cecf3578625c05040", null ], + [ "IOPORT_CFG_NOISE_FILTER_OFF", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a23f3f6712eefca788aa61da4976fd565", null ], + [ "IOPORT_CFG_NOISE_FILTER_ON", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a816a25b17c72bca7e267d47eb7f45dbc", null ], + [ "IOPORT_CFG_NOISE_FILTER_NUM_4STAGE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9a30d0a8eb346f1c1951396c0559ef64", null ], + [ "IOPORT_CFG_NOISE_FILTER_NUM_8STAGE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab7e5fcab2fd99046fcedb85c34070e2c", null ], + [ "IOPORT_CFG_NOISE_FILTER_NUM_12STAGE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af0dbea168d9df29c6a4180e202370f22", null ], + [ "IOPORT_CFG_NOISE_FILTER_NUM_16STAGE", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ace057086d321233881c1f335b6764bc2", null ], + [ "IOPORT_CFG_NOISE_FILTER_DIVIDED_B00", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a06cd1c84c6f44e8d7a932962f605e649", null ], + [ "IOPORT_CFG_NOISE_FILTER_DIVIDED_B01", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a57ddc25ef284420d97a12a7eca0a0a9b", null ], + [ "IOPORT_CFG_NOISE_FILTER_DIVIDED_B10", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a189170b389c1f0430c626bd367b47bf7", null ], + [ "IOPORT_CFG_NOISE_FILTER_DIVIDED_B11", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4e5c1c29a153030dbaeae8b7d6643d48", null ], + [ "IOPORT_CFG_PERIPHERAL_PIN", "group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a2066555437a19b9e6e721fb494c8f5c3", null ] + ] ], + [ "ioport_event_pin_selection_t", "group___i_o_p_o_r_t.html#gac5793f51f8a5eb8095c52f9d633f94c3", [ + [ "IOPORT_EVENT_PIN_SELECTION_NONE", "group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a5c3f74d09c25193ae18d86a96486dd0a", null ], + [ "IOPORT_EVENT_PIN_SELECTION_PIN_0", "group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a471a5ced9edf3fa45a5e7eb9edcad6e5", null ], + [ "IOPORT_EVENT_PIN_SELECTION_PIN_1", "group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3af429ab99f338e50f87fb142003c66fdb", null ], + [ "IOPORT_EVENT_PIN_SELECTION_PIN_2", "group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a8fce07d6436c77998f57f299f6f4299f", null ], + [ "IOPORT_EVENT_PIN_SELECTION_PIN_3", "group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a1f67b9c95b521733719d929698d5fe70", null ], + [ "IOPORT_EVENT_PIN_SELECTION_PIN_4", "group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a8450fceb594a4085be3eadbc0c37e2f3", null ], + [ "IOPORT_EVENT_PIN_SELECTION_PIN_5", "group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3ad0927af63b964b328c23b86ffe02bc4d", null ], + [ "IOPORT_EVENT_PIN_SELECTION_PIN_6", "group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3aaacc4bcde3273b270b49be1cc4313e00", null ], + [ "IOPORT_EVENT_PIN_SELECTION_PIN_7", "group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3ac9f5095893196090d15c2f7dc08210ad", null ] + ] ], + [ "ioport_event_output_operation_t", "group___i_o_p_o_r_t.html#ga6baec76057e6dbc11b3de637ba3ca76e", [ + [ "IOPORT_EVENT_OUTPUT_OPERATION_LOW", "group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76eaafb9b741a35dfd3f106e5b4e21cbb194", null ], + [ "IOPORT_EVENT_OUTPUT_OPERATION_HIGH", "group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76ea62fd4002a13cc7fcb07c3b5814eda983", null ], + [ "IOPORT_EVENT_OUTPUT_OPERATION_TOGGLE", "group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76eac8f41721c8941ae9416e6d087d4698be", null ], + [ "IOPORT_EVENT_OUTPUT_OPERATION_BUFFER", "group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76ea3d60129c28b149e16e64b72f2eeb972b", null ] + ] ], + [ "ioport_event_control_t", "group___i_o_p_o_r_t.html#ga04dddafb062136b04f33eeea27648397", [ + [ "IOPORT_EVENT_CONTROL_DISABLE", "group___i_o_p_o_r_t.html#gga04dddafb062136b04f33eeea27648397ae908e927047c7e835f63c760732fc8f8", null ], + [ "IOPORT_EVENT_CONTROL_ENABLE", "group___i_o_p_o_r_t.html#gga04dddafb062136b04f33eeea27648397a79407e79fac3398eb44cb42f2b1ccbf7", null ] + ] ], + [ "ioport_event_direction_t", "group___i_o_p_o_r_t.html#ga06a4ad7ce5b0c573328feccb1e2c54fb", [ + [ "IOPORT_EVENT_DIRECTION_OUTPUT", "group___i_o_p_o_r_t.html#gga06a4ad7ce5b0c573328feccb1e2c54fba36d0452e98647759803ddc117bbc1b40", null ], + [ "IOPORT_EVENT_DIRECTION_INPUT", "group___i_o_p_o_r_t.html#gga06a4ad7ce5b0c573328feccb1e2c54fbaf147669fc3abf3e19614e0f246bcd3a6", null ] + ] ], + [ "ioport_event_detection_t", "group___i_o_p_o_r_t.html#ga4f8bf2319abee01387ae77ca7e85fb0a", [ + [ "IOPORT_EVENT_DETECTION_RISING_EDGE", "group___i_o_p_o_r_t.html#gga4f8bf2319abee01387ae77ca7e85fb0aa9c18854cc01e8280ace1975aa3528619", null ], + [ "IOPORT_EVENT_DETECTION_FALLING_EDGE", "group___i_o_p_o_r_t.html#gga4f8bf2319abee01387ae77ca7e85fb0aac82e04418fb0057bd1338d7b164646aa", null ], + [ "IOPORT_EVENT_DETECTION_BOTH_EGDE", "group___i_o_p_o_r_t.html#gga4f8bf2319abee01387ae77ca7e85fb0aa1775a3e0a4f16c2142edf5630a2f8fe7", null ] + ] ], + [ "ioport_event_initial_buffer_value_t", "group___i_o_p_o_r_t.html#gad182b542c7455ca61b70f0eeae3a380d", [ + [ "IOPORT_EVENT_INITIAL_BUFFER_VALUE_LOW", "group___i_o_p_o_r_t.html#ggad182b542c7455ca61b70f0eeae3a380daaab0a473693e38386dbfe2790c08f477", null ], + [ "IOPORT_EVENT_INITIAL_BUFFER_VALUE_HIGH", "group___i_o_p_o_r_t.html#ggad182b542c7455ca61b70f0eeae3a380da1225085ace99cb7e29b0edf93c641964", null ] + ] ], + [ "ioport_noise_filter_irq_port_offset_t", "group___i_o_p_o_r_t.html#ga460f424ee2c2c60d463bbdd45f9a2d4b", null ], + [ "ioport_noise_filter_dreq_port_offset_t", "group___i_o_p_o_r_t.html#gaaa22d49ec43030ad6ed6bb18ed402f8d", null ], [ "R_IOPORT_Open", "group___i_o_p_o_r_t.html#ga24938047dccc62c4426ff543489454de", null ], [ "R_IOPORT_Close", "group___i_o_p_o_r_t.html#ga91d4fde6e5f7cdf57b99af5b5f89f1cc", null ], [ "R_IOPORT_PinsCfg", "group___i_o_p_o_r_t.html#ga3daa7097b08c7f623a741e2e481cf89f", null ], @@ -180,9 +160,5 @@ var group___i_o_p_o_r_t = [ "R_IOPORT_PortEventInputRead", "group___i_o_p_o_r_t.html#gae310ec091b58570972ea46f1f263985d", null ], [ "R_IOPORT_PortEventOutputWrite", "group___i_o_p_o_r_t.html#ga8d3f8c4c90241587fee076b6fb0623ff", null ], [ "R_IOPORT_PortRead", "group___i_o_p_o_r_t.html#gab84c08b8ac66d18c5636ebc772133e77", null ], - [ "R_IOPORT_PortWrite", "group___i_o_p_o_r_t.html#ga31825f3f0295317e5b446d74f791cd68", null ], - [ "R_IOPORT_SDVoltageModeCfg", "group___i_o_p_o_r_t.html#gaee86fd299af255bc3020d38d691db7b6", null ], - [ "R_IOPORT_QSPIVoltageModeCfg", "group___i_o_p_o_r_t.html#ga89947e3a2708547f57c5fc020b45c777", null ], - [ "R_IOPORT_EthernetVoltageModeCfg", "group___i_o_p_o_r_t.html#gacfd358d1a3bbaa2c6bbc980664cd2d30", null ], - [ "R_IOPORT_EthernetModeCfg", "group___i_o_p_o_r_t.html#ga383b2f8df036fceeb7c5344c5654d2c3", null ] + [ "R_IOPORT_PortWrite", "group___i_o_p_o_r_t.html#ga31825f3f0295317e5b446d74f791cd68", null ] ]; \ No newline at end of file diff --git a/group___i_o_p_o_r_t___a_p_i.html b/group___i_o_p_o_r_t___a_p_i.html index 6e20c47..a210aa2 100644 --- a/group___i_o_p_o_r_t___a_p_i.html +++ b/group___i_o_p_o_r_t___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: I/O Port Interface +RZV Flexible Software Package Documentation: I/O Port Interface @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + + + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Data Structures | @@ -126,24 +194,6 @@

    - - - - - - - - - - - - - - - - - -

    Enumerations

    enum  ioport_peripheral_t
     
    enum  ioport_sd_channel_t
     
    enum  ioport_qspi_channel_t
     
    enum  ioport_ethernet_channel_t
     
    enum  ioport_sd_voltage_t
     
    enum  ioport_qspi_voltage_t
     
    enum  ioport_ethernet_voltage_t
     
    enum  ioport_ethernet_mode_t
     
    enum  ioport_cfg_options_t
     
    enum  ioport_pwpr_t
     
    @@ -204,6 +254,12 @@

    p_pin_cfg_data Pin configuration data. + +const void * + +p_extend + +Pointer to hardware extend configuration.

    @@ -234,14 +290,6 @@

      fsp_err_t(* pinEventOutputWrite )(ioport_ctrl_t *const p_ctrl, bsp_io_port_pin_t pin, bsp_io_level_t pin_value)   -fsp_err_t(* pinSDVoltageModeCfg )(ioport_ctrl_t *const p_ctrl, ioport_sd_channel_t channel, ioport_sd_voltage_t voltage) -  -fsp_err_t(* pinQSPIVoltageModeCfg )(ioport_ctrl_t *const p_ctrl, ioport_qspi_channel_t channel, ioport_qspi_voltage_t voltage) -  -fsp_err_t(* pinEthernetVoltageModeCfg )(ioport_ctrl_t *const p_ctrl, ioport_ethernet_channel_t channel, ioport_ethernet_voltage_t voltage) -  -fsp_err_t(* pinEthernetModeCfg )(ioport_ctrl_t *const p_ctrl, ioport_ethernet_channel_t channel, ioport_ethernet_mode_t mode) -  fsp_err_t(* pinRead )(ioport_ctrl_t *const p_ctrl, bsp_io_port_pin_t pin, bsp_io_level_t *p_pin_value)   fsp_err_t(* pinWrite )(ioport_ctrl_t *const p_ctrl, bsp_io_port_pin_t pin, bsp_io_level_t level) @@ -403,106 +451,6 @@

    -

    ◆ pinSDVoltageModeCfg

    - -
    -
    - - - - -
    fsp_err_t(* ioport_api_t::pinSDVoltageModeCfg) (ioport_ctrl_t *const p_ctrl, ioport_sd_channel_t channel, ioport_sd_voltage_t voltage)
    -
    -

    Configure the SD voltage of the SD channels.

    Implemented as
    -
    -
    Parameters
    - - - -
    [in]channelChannel configuration will be set for.
    [in]voltageVoltage to set the channel to.
    -
    -
    - -
    -
    - -

    ◆ pinQSPIVoltageModeCfg

    - -
    -
    - - - - -
    fsp_err_t(* ioport_api_t::pinQSPIVoltageModeCfg) (ioport_ctrl_t *const p_ctrl, ioport_qspi_channel_t channel, ioport_qspi_voltage_t voltage)
    -
    -

    Configure the QSPI voltage of the QSPI channels.

    Implemented as
    -
    -
    Parameters
    - - - -
    [in]channelChannel configuration will be set for.
    [in]voltageVoltage to set the channel to.
    -
    -
    - -
    -
    - -

    ◆ pinEthernetVoltageModeCfg

    - -
    -
    - - - - -
    fsp_err_t(* ioport_api_t::pinEthernetVoltageModeCfg) (ioport_ctrl_t *const p_ctrl, ioport_ethernet_channel_t channel, ioport_ethernet_voltage_t voltage)
    -
    -

    Configure the Ethernet voltage of the Ethernet channels.

    Implemented as
    -
    -
    Parameters
    - - - -
    [in]channelChannel configuration will be set for.
    [in]voltageVoltage to set the channel to.
    -
    -
    - -
    -
    - -

    ◆ pinEthernetModeCfg

    - -
    -
    - - - - -
    fsp_err_t(* ioport_api_t::pinEthernetModeCfg) (ioport_ctrl_t *const p_ctrl, ioport_ethernet_channel_t channel, ioport_ethernet_mode_t mode)
    -
    -

    Configure the PHY mode of the Ethernet channels.

    Implemented as
    -
    -
    Parameters
    - - - -
    [in]channelChannel configuration will be set for.
    [in]modePHY mode to set the channel to.
    -
    -
    -
    @@ -759,279 +707,6 @@

    Enumeration Type Documentation

    - -

    ◆ ioport_peripheral_t

    - -
    -
    - - - - -
    enum ioport_peripheral_t
    -
    -

    Superset of all peripheral functions.

    - - - - - - - - -
    Enumerator
    IOPORT_PERIPHERAL_MODE0 

    Pin will function as a Mode0 peripheral pin

    -
    IOPORT_PERIPHERAL_MODE1 

    Pin will function as a Mode1 peripheral pin

    -
    IOPORT_PERIPHERAL_MODE2 

    Pin will function as a Mode2 peripheral pin

    -
    IOPORT_PERIPHERAL_MODE3 

    Pin will function as a Mode3 peripheral pin

    -
    IOPORT_PERIPHERAL_MODE4 

    Pin will function as a Mode4 peripheral pin

    -
    IOPORT_PERIPHERAL_MODE5 

    Pin will function as a Mode5 peripheral pin

    -
    IOPORT_PERIPHERAL_END 

    Marks end of enum - used by parameter checking

    -
    - -
    -
    - -

    ◆ ioport_sd_channel_t

    - -
    -
    - - - - -
    enum ioport_sd_channel_t
    -
    -

    Superset of SD channels.

    - - - - -
    Enumerator
    IOPORT_SD_CHANNEL_0 

    Used to select SD channel 0.

    -
    IOPORT_SD_CHANNEL_1 

    Used to select SD channel 1.

    -
    IOPORT_SD_CHANNEL_END 

    Marks end of enum - used by parameter checking.

    -
    - -
    -
    - -

    ◆ ioport_qspi_channel_t

    - -
    -
    - - - - -
    enum ioport_qspi_channel_t
    -
    -

    Superset of QSPI channels.

    - - - - -
    Enumerator
    IOPORT_QSPI_CHANNEL_0 

    Used to select QSPI channel 0.

    -
    IOPORT_QSPI_CHANNEL_1 

    Used to select QSPI channel 1.

    -
    IOPORT_QSPI_CHANNEL_END 

    Marks end of enum - used by parameter checking.

    -
    - -
    -
    - -

    ◆ ioport_ethernet_channel_t

    - -
    -
    - - - - -
    enum ioport_ethernet_channel_t
    -
    -

    Superset of Ethernet channels.

    - - - - -
    Enumerator
    IOPORT_ETHERNET_CHANNEL_0 

    Used to select Ethernet channel 0.

    -
    IOPORT_ETHERNET_CHANNEL_1 

    Used to select Ethernet channel 1.

    -
    IOPORT_ETHERNET_CHANNEL_END 

    Marks end of enum - used by parameter checking.

    -
    - -
    -
    - -

    ◆ ioport_sd_voltage_t

    - -
    -
    - - - - -
    enum ioport_sd_voltage_t
    -
    -

    Superset of SD voltages.

    - - - - -
    Enumerator
    IOPORT_SD_VOLTAGE_33 

    SD voltage set to 3.3V.

    -
    IOPORT_SD_VOLTAGE_18 

    SD voltage set to 1.8V.

    -
    IOPORT_SD_VOLTAGE_END 

    Marks end of enum - used by parameter checking.

    -
    - -
    -
    - -

    ◆ ioport_qspi_voltage_t

    - -
    -
    - - - - -
    enum ioport_qspi_voltage_t
    -
    -

    Superset of QSPI voltages.

    - - - - -
    Enumerator
    IOPORT_QSPI_VOLTAGE_33 

    QSPI voltage set to 3.3V.

    -
    IOPORT_QSPI_VOLTAGE_18 

    QSPI voltage set to 1.8V.

    -
    IOPORT_QSPI_VOLTAGE_END 

    Marks end of enum - used by parameter checking.

    -
    - -
    -
    - -

    ◆ ioport_ethernet_voltage_t

    - -
    -
    - - - - -
    enum ioport_ethernet_voltage_t
    -
    -

    Superset of Ethernet voltages.

    - - - - - -
    Enumerator
    IOPORT_ETHERNET_VOLTAGE_33 

    Ethernet voltage set to 3.3V.

    -
    IOPORT_ETHERNET_VOLTAGE_18 

    Ethernet voltage set to 1.8V.

    -
    IOPORT_ETHERNET_VOLTAGE_25 

    Ethernet voltage set to 2.5V.

    -
    IOPORT_ETHERNET_VOLTAGE_END 

    Marks end of enum - used by parameter checking.

    -
    - -
    -
    - -

    ◆ ioport_ethernet_mode_t

    - -
    -
    - - - - -
    enum ioport_ethernet_mode_t
    -
    -

    Superset of Ethernet PHY modes.

    - - - - -
    Enumerator
    IOPORT_ETHERNET_MODE_RMII 

    Ethernet PHY mode set to MII.

    -
    IOPORT_ETHERNET_MODE_MII 

    Ethernet PHY mode set to RMII.

    -
    IOPORT_ETHERNET_MODE_END 

    Marks end of enum - used by parameter checking.

    -
    - -
    -
    - -

    ◆ ioport_cfg_options_t

    - -
    -
    - - - - -
    enum ioport_cfg_options_t
    -
    -

    Options to configure pin functions

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Enumerator
    IOPORT_CFG_PORT_DIRECTION_HIZ 

    Sets the pin direction to Hi-Z (default)

    -
    IOPORT_CFG_PORT_DIRECTION_INPUT 

    Sets the pin direction to input.

    -
    IOPORT_CFG_PORT_DIRECTION_OUTPUT 

    Sets the pin direction to output (input disable)

    -
    IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT 

    Sets the pin direction to output (input enable)

    -
    IOPORT_CFG_PORT_OUTPUT_LOW 

    Sets the pin level to low.

    -
    IOPORT_CFG_PORT_OUTPUT_HIGH 

    Sets the pin level to high.

    -
    IOPORT_CFG_PULLUP_PULLDOWN_DISABLE 

    Disable the pin's internal pull-up and pull-down.

    -
    IOPORT_CFG_PULLUP_ENABLE 

    Enables the pin's internal pull-up.

    -
    IOPORT_CFG_PULLDOWN_ENABLE 

    Enables the pin's internal pull-down.

    -
    IOPORT_CFG_DRIVE_B00 

    Sets the IOLH register value to b'00.

    -
    IOPORT_CFG_DRIVE_B01 

    Sets the IOLH register value to b'01.

    -
    IOPORT_CFG_DRIVE_B10 

    Sets the IOLH register value to b'10.

    -
    IOPORT_CFG_DRIVE_B11 

    Sets the IOLH register value to b'11.

    -
    IOPORT_CFG_TINT_DISABLE 

    Disable IRQ functionality for a pin.

    -
    IOPORT_CFG_TINT_ENABLE 

    Sets pin as an IRQ pin.

    -
    IOPORT_CFG_SLEW_RATE_SLOW 

    Sets the pin slew-rate to slow.

    -
    IOPORT_CFG_SLEW_RATE_FAST 

    Sets the pin slew-rate to fast.

    -
    IOPORT_CFG_SLEW_RATE_FLAT 

    DEPRECATED Sets the pin slew-rate to flat.

    -
    IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE 

    Disable input the pin of special purpose port.

    -
    IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE 

    Sets the pin of special purpose port to input.

    -
    IOPORT_CFG_NOISE_FILTER_OFF 

    Noise filter disable.

    -
    IOPORT_CFG_NOISE_FILTER_ON 

    Noise filter enable.

    -
    IOPORT_CFG_NOISE_FILTER_NUM_4STAGE 

    Sets the pin noise filter to 4-stage filter.

    -
    IOPORT_CFG_NOISE_FILTER_NUM_8STAGE 

    Sets the pin noise filter to 8-stage filter.

    -
    IOPORT_CFG_NOISE_FILTER_NUM_12STAGE 

    Sets the pin noise filter to 12-stage filter.

    -
    IOPORT_CFG_NOISE_FILTER_NUM_16STAGE 

    Sets the pin noise filter to 16-stage filter.

    -
    IOPORT_CFG_NOISE_FILTER_NOT_DIVIDED 

    Noise filter not divided.

    -
    IOPORT_CFG_NOISE_FILTER_DIVIDED_9000 

    Noise filter divided by 9000.

    -
    IOPORT_CFG_NOISE_FILTER_DIVIDED_18000 

    Noise filter divided by 18000.

    -
    IOPORT_CFG_NOISE_FILTER_DIVIDED_36000 

    Noise filter divided by 36000.

    -
    IOPORT_CFG_PERIPHERAL_PIN 

    Enables pin to operate as a peripheral pin.

    -
    - -
    -

    ◆ ioport_pwpr_t

    @@ -1059,7 +734,7 @@

      - +

    diff --git a/group___i_o_p_o_r_t___a_p_i.js b/group___i_o_p_o_r_t___a_p_i.js index b7b8ee9..088db91 100644 --- a/group___i_o_p_o_r_t___a_p_i.js +++ b/group___i_o_p_o_r_t___a_p_i.js @@ -6,7 +6,8 @@ var group___i_o_p_o_r_t___a_p_i = ] ], [ "ioport_cfg_t", "group___i_o_p_o_r_t___a_p_i.html#structioport__cfg__t", [ [ "number_of_pins", "group___i_o_p_o_r_t___a_p_i.html#af5b820497125b07a94537deb03a37f0d", null ], - [ "p_pin_cfg_data", "group___i_o_p_o_r_t___a_p_i.html#a024de5a09c01dd710ba447a9ffa3271b", null ] + [ "p_pin_cfg_data", "group___i_o_p_o_r_t___a_p_i.html#a024de5a09c01dd710ba447a9ffa3271b", null ], + [ "p_extend", "group___i_o_p_o_r_t___a_p_i.html#a3c302ad5a452c415a6cb35ddecbe54bf", null ] ] ], [ "ioport_api_t", "group___i_o_p_o_r_t___a_p_i.html#structioport__api__t", [ [ "open", "group___i_o_p_o_r_t___a_p_i.html#ae9cd5d4b83ebe842e9f258aef4850c59", null ], @@ -15,10 +16,6 @@ var group___i_o_p_o_r_t___a_p_i = [ "pinCfg", "group___i_o_p_o_r_t___a_p_i.html#a72162206113e825e83aa709c106cd94e", null ], [ "pinEventInputRead", "group___i_o_p_o_r_t___a_p_i.html#aed708d8a848a6e142ce5bf8cc085360f", null ], [ "pinEventOutputWrite", "group___i_o_p_o_r_t___a_p_i.html#a52c0dcf252f3502911337a9f99e17986", null ], - [ "pinSDVoltageModeCfg", "group___i_o_p_o_r_t___a_p_i.html#a16b14ace200c93eabd87c57f2269e8fa", null ], - [ "pinQSPIVoltageModeCfg", "group___i_o_p_o_r_t___a_p_i.html#a6992c39238d4c6d0ed1469ff2e13492b", null ], - [ "pinEthernetVoltageModeCfg", "group___i_o_p_o_r_t___a_p_i.html#a88e49491b8dabcddac71cf6d2f0fb213", null ], - [ "pinEthernetModeCfg", "group___i_o_p_o_r_t___a_p_i.html#aebcf56ec700ec3e402c0ab437bc82d45", null ], [ "pinRead", "group___i_o_p_o_r_t___a_p_i.html#afaba07fd298740d7a58a74720e259af2", null ], [ "pinWrite", "group___i_o_p_o_r_t___a_p_i.html#aad4fb5941cd80d4ed9db0262f29b30cf", null ], [ "portDirectionSet", "group___i_o_p_o_r_t___a_p_i.html#a15e2e35a9ea2163402cb38c29aaa6399", null ], @@ -34,84 +31,6 @@ var group___i_o_p_o_r_t___a_p_i = ] ], [ "ioport_size_t", "group___i_o_p_o_r_t___a_p_i.html#gaf5da96a68757260a2cb370fec69f0836", null ], [ "ioport_ctrl_t", "group___i_o_p_o_r_t___a_p_i.html#gafc061c58bb812cb2a8f25222353634cd", null ], - [ "ioport_peripheral_t", "group___i_o_p_o_r_t___a_p_i.html#gaebbb969fda93422aaf1878d6f4ff8fe8", [ - [ "IOPORT_PERIPHERAL_MODE0", "group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a576f1af4e835f4533486d91cca50d8e9", null ], - [ "IOPORT_PERIPHERAL_MODE1", "group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a5a8bf28d2e93cb6235e9a7beea2bfa0e", null ], - [ "IOPORT_PERIPHERAL_MODE2", "group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ad7f23c31f6b56d6cf7b1024b8ea46b03", null ], - [ "IOPORT_PERIPHERAL_MODE3", "group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a44817e0b76e81f0353e70fce82f556fa", null ], - [ "IOPORT_PERIPHERAL_MODE4", "group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8afb9e29f050c27973d20c0273f88c6207", null ], - [ "IOPORT_PERIPHERAL_MODE5", "group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8aa285c9c361e0be95e5e87e788bd8b2de", null ], - [ "IOPORT_PERIPHERAL_END", "group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a9885514f43d9d1c466ae689ef3608a9a", null ] - ] ], - [ "ioport_sd_channel_t", "group___i_o_p_o_r_t___a_p_i.html#ga1e307d6ac8fce46a7b7c5a97acb66883", [ - [ "IOPORT_SD_CHANNEL_0", "group___i_o_p_o_r_t___a_p_i.html#gga1e307d6ac8fce46a7b7c5a97acb66883ac4b47bead8a8ae7f860fa697732f007b", null ], - [ "IOPORT_SD_CHANNEL_1", "group___i_o_p_o_r_t___a_p_i.html#gga1e307d6ac8fce46a7b7c5a97acb66883ac8a8a59efed7b48b78174be7cf112c70", null ], - [ "IOPORT_SD_CHANNEL_END", "group___i_o_p_o_r_t___a_p_i.html#gga1e307d6ac8fce46a7b7c5a97acb66883ae671312651ad5b7f9836caf35f55aa24", null ] - ] ], - [ "ioport_qspi_channel_t", "group___i_o_p_o_r_t___a_p_i.html#ga5948fec6dc0aecb3c09f9acec96fefca", [ - [ "IOPORT_QSPI_CHANNEL_0", "group___i_o_p_o_r_t___a_p_i.html#gga5948fec6dc0aecb3c09f9acec96fefcaac0d7aa925c74601ab0941f130f7cc8c6", null ], - [ "IOPORT_QSPI_CHANNEL_1", "group___i_o_p_o_r_t___a_p_i.html#gga5948fec6dc0aecb3c09f9acec96fefcaa32067b0d8f31d117a52dd59b41349084", null ], - [ "IOPORT_QSPI_CHANNEL_END", "group___i_o_p_o_r_t___a_p_i.html#gga5948fec6dc0aecb3c09f9acec96fefcaa236f9aab97155ac9eea90a479056715d", null ] - ] ], - [ "ioport_ethernet_channel_t", "group___i_o_p_o_r_t___a_p_i.html#gaf6a78fbc73b4e8acef86a12c21df2da0", [ - [ "IOPORT_ETHERNET_CHANNEL_0", "group___i_o_p_o_r_t___a_p_i.html#ggaf6a78fbc73b4e8acef86a12c21df2da0ad6e933716d34a0fbba5b3d9f589f7637", null ], - [ "IOPORT_ETHERNET_CHANNEL_1", "group___i_o_p_o_r_t___a_p_i.html#ggaf6a78fbc73b4e8acef86a12c21df2da0a96f5c107a00efb1c4ccf9905540f1ee6", null ], - [ "IOPORT_ETHERNET_CHANNEL_END", "group___i_o_p_o_r_t___a_p_i.html#ggaf6a78fbc73b4e8acef86a12c21df2da0ab054bb3020a4a296f0da7a11362c017c", null ] - ] ], - [ "ioport_sd_voltage_t", "group___i_o_p_o_r_t___a_p_i.html#gae6d3ffb13bd84935331f3b9f01607f41", [ - [ "IOPORT_SD_VOLTAGE_33", "group___i_o_p_o_r_t___a_p_i.html#ggae6d3ffb13bd84935331f3b9f01607f41a1cd8b8b65dec65682133ede683eecbc1", null ], - [ "IOPORT_SD_VOLTAGE_18", "group___i_o_p_o_r_t___a_p_i.html#ggae6d3ffb13bd84935331f3b9f01607f41a513793fc0a151e2f1a3d5240f6b97531", null ], - [ "IOPORT_SD_VOLTAGE_END", "group___i_o_p_o_r_t___a_p_i.html#ggae6d3ffb13bd84935331f3b9f01607f41a8b98f9c193ab3ffd01e8a96b05001bc5", null ] - ] ], - [ "ioport_qspi_voltage_t", "group___i_o_p_o_r_t___a_p_i.html#ga6714c32ad1f21415d3c99d4f2d027616", [ - [ "IOPORT_QSPI_VOLTAGE_33", "group___i_o_p_o_r_t___a_p_i.html#gga6714c32ad1f21415d3c99d4f2d027616ac0c0bb5c9fed3261177e8eaa3d89a838", null ], - [ "IOPORT_QSPI_VOLTAGE_18", "group___i_o_p_o_r_t___a_p_i.html#gga6714c32ad1f21415d3c99d4f2d027616a5a7a7ae01402ba9752bf3fb5754e0668", null ], - [ "IOPORT_QSPI_VOLTAGE_END", "group___i_o_p_o_r_t___a_p_i.html#gga6714c32ad1f21415d3c99d4f2d027616a6edc05a8291b6b885b81f57ae55f38b3", null ] - ] ], - [ "ioport_ethernet_voltage_t", "group___i_o_p_o_r_t___a_p_i.html#ga76937b0cdeebfff6a5b22e5e89cb18b0", [ - [ "IOPORT_ETHERNET_VOLTAGE_33", "group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0a668aedbed44c6aad2dff4aeafd6cfe31", null ], - [ "IOPORT_ETHERNET_VOLTAGE_18", "group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0a85ecf006ee7e49708ac094d230bc9769", null ], - [ "IOPORT_ETHERNET_VOLTAGE_25", "group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0ac781714cf092bfaa8269439712564efa", null ], - [ "IOPORT_ETHERNET_VOLTAGE_END", "group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0a2e9d8318bfb8eccfcb8b4a38ac7718d0", null ] - ] ], - [ "ioport_ethernet_mode_t", "group___i_o_p_o_r_t___a_p_i.html#gacaee6fc466858446638e79354043bb78", [ - [ "IOPORT_ETHERNET_MODE_RMII", "group___i_o_p_o_r_t___a_p_i.html#ggacaee6fc466858446638e79354043bb78abcf9bf493cbb116eec49bc9e21424872", null ], - [ "IOPORT_ETHERNET_MODE_MII", "group___i_o_p_o_r_t___a_p_i.html#ggacaee6fc466858446638e79354043bb78a21cfd34dda01172d7b86269be63708bb", null ], - [ "IOPORT_ETHERNET_MODE_END", "group___i_o_p_o_r_t___a_p_i.html#ggacaee6fc466858446638e79354043bb78a398ef6c7ab1704004f04168fb31cf38a", null ] - ] ], - [ "ioport_cfg_options_t", "group___i_o_p_o_r_t___a_p_i.html#gac617eebcb7c2c1e45fa8e04fc473e574", [ - [ "IOPORT_CFG_PORT_DIRECTION_HIZ", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a627d716bdff4fe54f3cbf9f2a5b87bf9", null ], - [ "IOPORT_CFG_PORT_DIRECTION_INPUT", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a8d597c18cc5d24abc1b70f2526f2b6cb", null ], - [ "IOPORT_CFG_PORT_DIRECTION_OUTPUT", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ab4d8c12714fab80d21b5b5a636f3cf97", null ], - [ "IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a3a85f3deec88b01065fd3478ba691860", null ], - [ "IOPORT_CFG_PORT_OUTPUT_LOW", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a1913e3b0734a4be613eb2fba8ec888c5", null ], - [ "IOPORT_CFG_PORT_OUTPUT_HIGH", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a4b93b19150d018ab8ba5ef74e2852499", null ], - [ "IOPORT_CFG_PULLUP_PULLDOWN_DISABLE", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a3945f91ccb0beb4f87613fa0d9884965", null ], - [ "IOPORT_CFG_PULLUP_ENABLE", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a925954d59fa1101a4784a0d64a64d133", null ], - [ "IOPORT_CFG_PULLDOWN_ENABLE", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a97baa43b94e675e2a4ae7a90dd4a94c6", null ], - [ "IOPORT_CFG_DRIVE_B00", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a4f3c70e0bd324aecc0fed994903b63b0", null ], - [ "IOPORT_CFG_DRIVE_B01", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574af4952693675255ac32a0813a1100e038", null ], - [ "IOPORT_CFG_DRIVE_B10", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ac882c17c38a2a20dfd0b5e1dd3eaeaf4", null ], - [ "IOPORT_CFG_DRIVE_B11", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a0c5a07dad389d25a576c734a391ec148", null ], - [ "IOPORT_CFG_TINT_DISABLE", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ac78c3e06c1adb07cd707118f321ef94e", null ], - [ "IOPORT_CFG_TINT_ENABLE", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a3691c62fc89eb3e7df1eae9064206c4e", null ], - [ "IOPORT_CFG_SLEW_RATE_SLOW", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a9c17101eaef4bf0fd2beb880a29317a8", null ], - [ "IOPORT_CFG_SLEW_RATE_FAST", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574accc921bf1d788c6f10b0225b65144f00", null ], - [ "IOPORT_CFG_SLEW_RATE_FLAT", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a14a3759e7b9db28ecd3e34968619c616", null ], - [ "IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a968aea46146f3db05b2f9d2e1c29650f", null ], - [ "IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a10595587e1c5984cecf3578625c05040", null ], - [ "IOPORT_CFG_NOISE_FILTER_OFF", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a23f3f6712eefca788aa61da4976fd565", null ], - [ "IOPORT_CFG_NOISE_FILTER_ON", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a816a25b17c72bca7e267d47eb7f45dbc", null ], - [ "IOPORT_CFG_NOISE_FILTER_NUM_4STAGE", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a9a30d0a8eb346f1c1951396c0559ef64", null ], - [ "IOPORT_CFG_NOISE_FILTER_NUM_8STAGE", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ab7e5fcab2fd99046fcedb85c34070e2c", null ], - [ "IOPORT_CFG_NOISE_FILTER_NUM_12STAGE", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574af0dbea168d9df29c6a4180e202370f22", null ], - [ "IOPORT_CFG_NOISE_FILTER_NUM_16STAGE", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ace057086d321233881c1f335b6764bc2", null ], - [ "IOPORT_CFG_NOISE_FILTER_NOT_DIVIDED", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a8d0959d2bac4007c7966402e1edd5cf7", null ], - [ "IOPORT_CFG_NOISE_FILTER_DIVIDED_9000", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a39721a40c76adc1584a6716a0187a344", null ], - [ "IOPORT_CFG_NOISE_FILTER_DIVIDED_18000", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a47135d68ccd71227f089cdc67ff242b6", null ], - [ "IOPORT_CFG_NOISE_FILTER_DIVIDED_36000", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a6b8456cbcd1ab14dcec4c749b9b16c6b", null ], - [ "IOPORT_CFG_PERIPHERAL_PIN", "group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a2066555437a19b9e6e721fb494c8f5c3", null ] - ] ], [ "ioport_pwpr_t", "group___i_o_p_o_r_t___a_p_i.html#ga25ef8d1291cc073dd48f57b16d91c13e", [ [ "IOPORT_PFS_WRITE_DISABLE", "group___i_o_p_o_r_t___a_p_i.html#gga25ef8d1291cc073dd48f57b16d91c13eaf67cf250303fd4692c46717f0b7a9412", null ], [ "IOPORT_PFS_WRITE_ENABLE", "group___i_o_p_o_r_t___a_p_i.html#gga25ef8d1291cc073dd48f57b16d91c13ea5d94e8d4ba61664a407a0d84538fc298", null ] diff --git a/group___m_h_u___a_p_i.html b/group___m_h_u___a_p_i.html index 6595253..0838253 100644 --- a/group___m_h_u___a_p_i.html +++ b/group___m_h_u___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: MHU Interface (for secure and non secure channels) +RZV Flexible Software Package Documentation: MHU Interface (for secure and non secure channels) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + + + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Data Structures | @@ -108,7 +176,9 @@

    Implemented by:

    - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    Message Handling Unit for non secure channels (r_mhu_ns)
    +
    Message Handling Unit for non secure channels (r_mhu_ns)

    @@ -296,6 +366,8 @@

    Implemented as
    Parameters
    @@ -322,6 +394,8 @@

    Implemented as

    Parameters
    @@ -348,6 +422,8 @@

    Implemented as

    Parameters
    @@ -376,6 +452,8 @@

    Implemented as

    Parameters
    @@ -472,7 +550,7 @@

      - +
    diff --git a/group___m_h_u___b___n_s.html b/group___m_h_u___b___n_s.html new file mode 100644 index 0000000..92ad964 --- /dev/null +++ b/group___m_h_u___b___n_s.html @@ -0,0 +1,440 @@ + + + + + + + +RZV Flexible Software Package Documentation: Message Handling Unit for non secure channels (r_mhu_b_ns) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Message Handling Unit for non secure channels (r_mhu_b_ns)
    +
    +
    + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_MHU_B_NS_Open (mhu_ctrl_t *p_ctrl, mhu_cfg_t const *const p_cfg)
     
    fsp_err_t R_MHU_B_NS_MsgSend (mhu_ctrl_t *const p_ctrl, uint32_t const msg)
     
    fsp_err_t R_MHU_B_NS_Close (mhu_ctrl_t *const p_ctrl)
     
    fsp_err_t R_MHU_B_NS_CallbackSet (mhu_ctrl_t *const p_api_ctrl, void(*p_callback)(mhu_callback_args_t *), void const *const p_context, mhu_callback_args_t *const p_callback_memory)
     
    void R_MHU_B_NS_IsrSub (uint32_t irq)
     
    +

    Detailed Description

    +

    Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels).

    +

    +Overview

    +

    MHU is a function for message communication between:

    +
      +
    • Cortex-A55, Cortex-M33 and Cortex-R8 cores incorporated in RZ/V2H.
    • +
    +

    Message communication is done by shared RAM for passing message and response between CPUs and the function (MHU) for notifying when messages and responses are stored in the memory.

    +

    +Features

    +

    The MHU_B_NS module supports the following features:

    +
      +
    • Generate interrupt to notify each core of RZ MPUs when the message/response is stored in shared RAM.
    • +
    • Receive interrupt when the message/response is stored by each core of RZ MPUs in shared RAM.
    • +
    + + + + +

    +Data Structures

    struct  mhu_b_ns_instance_ctrl_t
     
    +

    Data Structure Documentation

    + +

    ◆ mhu_b_ns_instance_ctrl_t

    + +
    +
    + + + + +
    struct mhu_b_ns_instance_ctrl_t
    +
    +

    Channel control block. DO NOT INITIALIZE. Initialization occurs when mhu_api_t::open is called.

    +
    + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    +uint32_t open
     Indicates whether the open() API has been successfully called.
     
    +mhu_cfg_t const * p_cfg
     Pointer to instance configuration.
     
    +R_MHU0_Type * p_regs
     Base register for this channel.
     
    +uint32_t channel
     channel
     
    +mhu_send_type_t send_type
     Send Type: Message or Response.
     
    +uint32_t * p_shared_memory_tx
     Pointer to send data area.
     
    +uint32_t * p_shared_memory_rx
     Pointer to recv data area.
     
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_MHU_B_NS_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MHU_B_NS_Open (mhu_ctrl_t *const p_ctrl,
    mhu_cfg_t const *const p_cfg 
    )
    +
    +

    Initializes the MHU_B_NS module instance. Implements mhu_api_t::open.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSInitialization was successful.
    FSP_ERR_ASSERTIONA required input pointer is NULL.
    FSP_ERR_ALREADY_OPENR_MHU_B_NS_Open has already been called for this p_ctrl.
    FSP_ERR_INVALID_ARGUMENTThe specified IRQ number is invalid.
    FSP_ERR_INVALID_CHANNELRequested channel number is not available on MHU_B_NS.
    +
    +
    + +
    +
    + +

    ◆ R_MHU_B_NS_MsgSend()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MHU_B_NS_MsgSend (mhu_ctrl_t *const p_ctrl,
    uint32_t const msg 
    )
    +
    +

    Send message via MHU. Implements mhu_api_t::msgSend.

    +
    Return values
    + + + + +
    FSP_SUCCESSSend message successfully.
    FSP_ERR_ASSERTIONA required pointer was NULL.
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MHU_B_NS_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_MHU_B_NS_Close (mhu_ctrl_t *const p_ctrl)
    +
    +

    Disables interrupts, clears internal driver data. mhu_api_t::close.

    +
    Return values
    + + + + +
    FSP_SUCCESSMHU_B_NS closed.
    FSP_ERR_ASSERTIONp_ctrl is NULL.
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MHU_B_NS_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MHU_B_NS_CallbackSet (mhu_ctrl_t *const p_api_ctrl,
    void(*)(mhu_callback_args_t *) p_callback,
    void const *const p_context,
    mhu_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback with the option to provide memory for the callback argument structure. Implements mhu_api_t::callbackSet.

    +
    Return values
    + + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    + +

    ◆ R_MHU_B_NS_IsrSub()

    + +
    +
    + + + + + + + + +
    void R_MHU_B_NS_IsrSub (uint32_t irq)
    +
    +

    MHU_B_NS receive interrupt sub function (for OpenAMP)

    +
    Parameters
    + + +
    [in]irqirq number for inter-core interrupt
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___m_h_u___b___n_s.js b/group___m_h_u___b___n_s.js new file mode 100644 index 0000000..d4c9018 --- /dev/null +++ b/group___m_h_u___b___n_s.js @@ -0,0 +1,17 @@ +var group___m_h_u___b___n_s = +[ + [ "mhu_b_ns_instance_ctrl_t", "group___m_h_u___b___n_s.html#structmhu__b__ns__instance__ctrl__t", [ + [ "open", "group___m_h_u___b___n_s.html#af4c1fc022c5b71589516dd2ca5789a92", null ], + [ "p_cfg", "group___m_h_u___b___n_s.html#ab0e659a5bf2d3dbc21790c60e55e3502", null ], + [ "p_regs", "group___m_h_u___b___n_s.html#ad68f27c0f8259cfb7a6d58727c56b67c", null ], + [ "channel", "group___m_h_u___b___n_s.html#a32ff5d194f38c43784c59191c7883e76", null ], + [ "send_type", "group___m_h_u___b___n_s.html#a644305cfbb2917f04ceeea349b8849a6", null ], + [ "p_shared_memory_tx", "group___m_h_u___b___n_s.html#a697b7be0ff6ea5e30819c4936991a032", null ], + [ "p_shared_memory_rx", "group___m_h_u___b___n_s.html#aba2ed695735df5ae0890447008554a1a", null ] + ] ], + [ "R_MHU_B_NS_Open", "group___m_h_u___b___n_s.html#gafb961a25b2c2e6b965dfa1ba580450f5", null ], + [ "R_MHU_B_NS_MsgSend", "group___m_h_u___b___n_s.html#ga1bba9825f978e9a56d75d167a7b5b179", null ], + [ "R_MHU_B_NS_Close", "group___m_h_u___b___n_s.html#gaa7e509b5c668cf5926959cb50f53ea06", null ], + [ "R_MHU_B_NS_CallbackSet", "group___m_h_u___b___n_s.html#ga0e9a0ab284383893a02ab288ac885ee8", null ], + [ "R_MHU_B_NS_IsrSub", "group___m_h_u___b___n_s.html#gac10ebe6ec0a9dfc34d9b512bbf3fa66e", null ] +]; \ No newline at end of file diff --git a/group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html b/group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html new file mode 100644 index 0000000..ec36aab --- /dev/null +++ b/group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html @@ -0,0 +1,393 @@ + + + + + + + +RZV Flexible Software Package Documentation: Message Handling Unit for non-secure software interrupt receive (r_mhu_b_ns_swint_get) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Message Handling Unit for non-secure software interrupt receive (r_mhu_b_ns_swint_get)
    +
    +
    + + + + + + + + + + +

    +Functions

    fsp_err_t R_MHU_B_NS_SWINT_GET_Open (mhu_ns_swint_get_ctrl_t *p_ctrl, mhu_ns_swint_get_cfg_t const *const p_cfg)
     
    fsp_err_t R_MHU_B_NS_SWINT_GET_Close (mhu_ns_swint_get_ctrl_t *const p_ctrl)
     
    fsp_err_t R_MHU_B_NS_SWINT_GET_CallbackSet (mhu_ns_swint_get_ctrl_t *const p_api_ctrl, void(*p_callback)(mhu_ns_swint_get_callback_args_t *), void const *const p_context, mhu_ns_swint_get_callback_args_t *const p_callback_memory)
     
    void R_MHU_B_NS_SWINT_GET_IsrSub (uint32_t irq)
     
    +

    Detailed Description

    +

    Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Get).

    +

    +Overview

    +

    MHU is a function for message communication between:

    +
      +
    • Cortex-A55, Cortex-M33 and Cortex-R8 cores incorporated in RZ/V2H.
    • +
    +

    +Features

    +

    The MHU_B_NS_SWINT_GET module supports the following features:

    +
      +
    • Receive interrupt when the message/response is stored by each core of RZ MPUs in shared RAM.
    • +
    + + + + +

    +Data Structures

    struct  mhu_b_ns_swint_get_instance_ctrl_t
     
    +

    Data Structure Documentation

    + +

    ◆ mhu_b_ns_swint_get_instance_ctrl_t

    + +
    +
    + + + + +
    struct mhu_b_ns_swint_get_instance_ctrl_t
    +
    +

    Channel control block. DO NOT INITIALIZE. Initialization occurs when mhu_ns_swint_get_api_t::open is called.

    +
    + + + + + + + + + + + + + +

    Data Fields

    +uint32_t open
     Indicates whether the open() API has been successfully called.
     
    +mhu_ns_swint_get_cfg_t const * p_cfg
     Pointer to instance configuration.
     
    +R_MHU_SWINT0_Type * p_regs
     Base register for this channel.
     
    +uint32_t channel
     channel
     
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_MHU_B_NS_SWINT_GET_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MHU_B_NS_SWINT_GET_Open (mhu_ns_swint_get_ctrl_t *const p_ctrl,
    mhu_ns_swint_get_cfg_t const *const p_cfg 
    )
    +
    +

    Initializes the MHU_B_NS_SWINT_GET module instance. Implements mhu_ns_swint_get_api_t::open.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSInitialization was successful.
    FSP_ERR_ASSERTIONA required input pointer is NULL.
    FSP_ERR_ALREADY_OPENR_MHU_B_NS_SWINT_GET_Open has already been called for this p_ctrl.
    FSP_ERR_INVALID_ARGUMENTThe specified IRQ number is invalid.
    FSP_ERR_INVALID_CHANNELRequested channel number is not available on MHU_B_NS_SWINT_GET.
    +
    +
    + +
    +
    + +

    ◆ R_MHU_B_NS_SWINT_GET_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_MHU_B_NS_SWINT_GET_Close (mhu_ns_swint_get_ctrl_t *const p_ctrl)
    +
    +

    Disables interrupts, clears internal driver data. mhu_ns_swint_get_api_t::close.

    +
    Return values
    + + + + +
    FSP_SUCCESSMHU_B_NS_SWINT_GET closed.
    FSP_ERR_ASSERTIONp_ctrl is NULL.
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MHU_B_NS_SWINT_GET_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MHU_B_NS_SWINT_GET_CallbackSet (mhu_ns_swint_get_ctrl_t *const p_api_ctrl,
    void(*)(mhu_ns_swint_get_callback_args_t *) p_callback,
    void const *const p_context,
    mhu_ns_swint_get_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback with the option to provide memory for the callback argument structure. Implements mhu_ns_swint_get_api_t::callbackSet.

    +
    Return values
    + + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    + +

    ◆ R_MHU_B_NS_SWINT_GET_IsrSub()

    + +
    +
    + + + + + + + + +
    void R_MHU_B_NS_SWINT_GET_IsrSub (uint32_t irq)
    +
    +

    MHU_B_NS_SWINT_GET receive interrupt sub function (for OpenAMP)

    +
    Parameters
    + + +
    [in]irq
    +
    +
    +
    Return values
    + + +
    none.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.js b/group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.js new file mode 100644 index 0000000..fa1c8ae --- /dev/null +++ b/group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.js @@ -0,0 +1,13 @@ +var group___m_h_u___b___n_s___s_w_i_n_t___g_e_t = +[ + [ "mhu_b_ns_swint_get_instance_ctrl_t", "group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#structmhu__b__ns__swint__get__instance__ctrl__t", [ + [ "open", "group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#a4f56a5fad7755cca0501ce4641ed6979", null ], + [ "p_cfg", "group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#a0eefba6634fa0bc1909fcd1fc46ca7da", null ], + [ "p_regs", "group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#af80195b0968f9c69dfd0c89fa645ac4f", null ], + [ "channel", "group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#a03917ba43d92ba64f3ceff9d2a5ed8f6", null ] + ] ], + [ "R_MHU_B_NS_SWINT_GET_Open", "group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#gafd2f119cc386c1672bf465ccefb498c3", null ], + [ "R_MHU_B_NS_SWINT_GET_Close", "group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#gadab533dca3f9ebbd37eddda34b8269fe", null ], + [ "R_MHU_B_NS_SWINT_GET_CallbackSet", "group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#ga662917c72899887e1ddd67cce497c732", null ], + [ "R_MHU_B_NS_SWINT_GET_IsrSub", "group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#ga8a7c2ba26a5025d177316a6a5981c706", null ] +]; \ No newline at end of file diff --git a/group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html b/group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html new file mode 100644 index 0000000..6c1811c --- /dev/null +++ b/group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html @@ -0,0 +1,344 @@ + + + + + + + +RZV Flexible Software Package Documentation: Message Handling Unit for non-secure software interrupt generation (r_mhu_b_ns_swint_set) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Message Handling Unit for non-secure software interrupt generation (r_mhu_b_ns_swint_set)
    +
    +
    + + + + + + + + +

    +Functions

    fsp_err_t R_MHU_B_NS_SWINT_SET_Open (mhu_ns_swint_set_ctrl_t *p_ctrl, mhu_ns_swint_set_cfg_t const *const p_cfg)
     
    fsp_err_t R_MHU_B_NS_SWINT_SET_InterruptSet (mhu_ns_swint_set_ctrl_t *const p_ctrl)
     
    fsp_err_t R_MHU_B_NS_SWINT_SET_Close (mhu_ns_swint_set_ctrl_t *const p_ctrl)
     
    +

    Detailed Description

    +

    Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Set).

    +

    +Overview

    +

    MHU is a function for message communication between:

    +
      +
    • Cortex-A55, Cortex-M33 and Cortex-R8 cores incorporated in RZ/V2H.
    • +
    +

    +Features

    +

    The MHU_B_NS_SWINT_SET module supports the following features:

    +
      +
    • Generate software interrupt via MHU.
    • +
    + + + + +

    +Data Structures

    struct  mhu_b_ns_swint_set_instance_ctrl_t
     
    +

    Data Structure Documentation

    + +

    ◆ mhu_b_ns_swint_set_instance_ctrl_t

    + +
    +
    + + + + +
    struct mhu_b_ns_swint_set_instance_ctrl_t
    +
    +

    Channel control block. DO NOT INITIALIZE. Initialization occurs when mhu_ns_swint_set_api_t::open is called.

    +
    + + + + + + + + + + + + + +
    Data Fields
    +uint32_t +open +Indicates whether the open() API has been successfully called.
    +mhu_ns_swint_set_cfg_t const * +p_cfg +Pointer to instance configuration.
    +R_MHU_SWINT0_Type * +p_regs +Base register for this channel.
    +uint32_t +channel +channel
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_MHU_B_NS_SWINT_SET_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MHU_B_NS_SWINT_SET_Open (mhu_ns_swint_set_ctrl_t *const p_ctrl,
    mhu_ns_swint_set_cfg_t const *const p_cfg 
    )
    +
    +

    Initializes the MHU_B_NS_SWINT_SET module instance. Implements mhu_ns_swint_set_api_t::open.

    +
    Return values
    + + + + + +
    FSP_SUCCESSInitialization was successful.
    FSP_ERR_ASSERTIONA required input pointer is NULL.
    FSP_ERR_ALREADY_OPENR_MHU_B_NS_SWINT_SET_Open has already been called for this p_ctrl.
    FSP_ERR_INVALID_CHANNELRequested channel number is not available on MHU_B_NS_SWINT_SET.
    +
    +
    + +
    +
    + +

    ◆ R_MHU_B_NS_SWINT_SET_InterruptSet()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_MHU_B_NS_SWINT_SET_InterruptSet (mhu_ns_swint_set_ctrl_t *const p_ctrl)
    +
    +

    Set Interrupt via MHU. Implements mhu_ns_swint_set_api_t::interruptSet.

    +
    Return values
    + + + + +
    FSP_SUCCESSSet interrupt successfully.
    FSP_ERR_ASSERTIONA required pointer was NULL.
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MHU_B_NS_SWINT_SET_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_MHU_B_NS_SWINT_SET_Close (mhu_ns_swint_set_ctrl_t *const p_ctrl)
    +
    +

    Disables interrupts, clears internal driver data. mhu_ns_swint_set_api_t::close.

    +
    Return values
    + + + + +
    FSP_SUCCESSMHU_B_NS_SWINT_SET closed.
    FSP_ERR_ASSERTIONp_ctrl is NULL.
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.js b/group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.js new file mode 100644 index 0000000..2b4f972 --- /dev/null +++ b/group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.js @@ -0,0 +1,12 @@ +var group___m_h_u___b___n_s___s_w_i_n_t___s_e_t = +[ + [ "mhu_b_ns_swint_set_instance_ctrl_t", "group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#structmhu__b__ns__swint__set__instance__ctrl__t", [ + [ "open", "group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#a62ec267ef9eb17835f70e99d23c9e840", null ], + [ "p_cfg", "group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#aceefb97edf194ab8591a4b3977f3c153", null ], + [ "p_regs", "group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#ae4b9ea02a0965d8918fa729c6b19e8b6", null ], + [ "channel", "group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#ac237427a57125c109907a6f027aa7bb2", null ] + ] ], + [ "R_MHU_B_NS_SWINT_SET_Open", "group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#gaba5433742015125a5bf5d8e3ef75b980", null ], + [ "R_MHU_B_NS_SWINT_SET_InterruptSet", "group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#gaddd83232518e56d27b705f7c8fc99f17", null ], + [ "R_MHU_B_NS_SWINT_SET_Close", "group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#gae96425edecc8f21ed9681028dfb81019", null ] +]; \ No newline at end of file diff --git a/group___m_h_u___b___s.html b/group___m_h_u___b___s.html new file mode 100644 index 0000000..33ecef3 --- /dev/null +++ b/group___m_h_u___b___s.html @@ -0,0 +1,439 @@ + + + + + + + +RZV Flexible Software Package Documentation: Message Handling Unit for secure channels (r_mhu_b_s) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Message Handling Unit for secure channels (r_mhu_b_s)
    +
    +
    + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_MHU_B_S_Open (mhu_ctrl_t *p_ctrl, mhu_cfg_t const *const p_cfg)
     
    fsp_err_t R_MHU_B_S_MsgSend (mhu_ctrl_t *const p_ctrl, uint32_t const msg)
     
    fsp_err_t R_MHU_B_S_Close (mhu_ctrl_t *const p_ctrl)
     
    fsp_err_t R_MHU_B_S_CallbackSet (mhu_ctrl_t *const p_api_ctrl, void(*p_callback)(mhu_callback_args_t *), void const *const p_context, mhu_callback_args_t *const p_callback_memory)
     
    void R_MHU_B_S_IsrSub (uint32_t irq)
     
    +

    Detailed Description

    +

    Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels).

    +

    +Overview

    +
      +
    • Cortex-A55, Cortex-M33 and Cortex-R8 cores incorporated in RZ/V2H.
    • +
    +

    Message communication is done by shared RAM for passing message and response between CPUs and the function (MHU) for notifying when messages and responses are stored in the memory.

    +

    +Features

    +

    The MHU_B_S module supports the following features:

    +
      +
    • Generate interrupt to notify each core of RZ MPUs when the message/response is stored in shared RAM.
    • +
    • Receive interrupt when the message/response is stored by each core of RZ MPUs in shared RAM.
    • +
    + + + + +

    +Data Structures

    struct  mhu_b_s_instance_ctrl_t
     
    +

    Data Structure Documentation

    + +

    ◆ mhu_b_s_instance_ctrl_t

    + +
    +
    + + + + +
    struct mhu_b_s_instance_ctrl_t
    +
    +

    Channel control block. DO NOT INITIALIZE. Initialization occurs when mhu_api_t::open is called.

    +
    + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    +uint32_t open
     Indicates whether the open() API has been successfully called.
     
    +mhu_cfg_t const * p_cfg
     Pointer to instance configuration.
     
    +R_MHU0_Type * p_regs
     Base register for this channel.
     
    +uint32_t channel
     channel
     
    +mhu_send_type_t send_type
     Send Type: Message or Response.
     
    +uint32_t * p_shared_memory_tx
     Pointer to send data area.
     
    +uint32_t * p_shared_memory_rx
     Pointer to recv data area.
     
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_MHU_B_S_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MHU_B_S_Open (mhu_ctrl_t *const p_ctrl,
    mhu_cfg_t const *const p_cfg 
    )
    +
    +

    Initializes the MHU_B_S module instance. Implements mhu_api_t::open.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSInitialization was successful.
    FSP_ERR_ASSERTIONA required input pointer is NULL.
    FSP_ERR_ALREADY_OPENR_MHU_B_S_Open has already been called for this p_ctrl.
    FSP_ERR_INVALID_ARGUMENTThe specified IRQ number is invalid.
    FSP_ERR_INVALID_CHANNELRequested channel number is not available on MHU_B_S.
    +
    +
    + +
    +
    + +

    ◆ R_MHU_B_S_MsgSend()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MHU_B_S_MsgSend (mhu_ctrl_t *const p_ctrl,
    uint32_t const msg 
    )
    +
    +

    Send message via MHU. Implements mhu_api_t::msgSend.

    +
    Return values
    + + + + +
    FSP_SUCCESSSend message successfully.
    FSP_ERR_ASSERTIONA required pointer was NULL.
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MHU_B_S_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_MHU_B_S_Close (mhu_ctrl_t *const p_ctrl)
    +
    +

    Disables interrupts, clears internal driver data. mhu_api_t::close.

    +
    Return values
    + + + + +
    FSP_SUCCESSMHU_B_S closed.
    FSP_ERR_ASSERTIONp_ctrl is NULL.
    FSP_ERR_NOT_OPENThe instance control structure is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MHU_B_S_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MHU_B_S_CallbackSet (mhu_ctrl_t *const p_api_ctrl,
    void(*)(mhu_callback_args_t *) p_callback,
    void const *const p_context,
    mhu_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback with the option to provide memory for the callback argument structure. Implements mhu_api_t::callbackSet.

    +
    Return values
    + + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    + +

    ◆ R_MHU_B_S_IsrSub()

    + +
    +
    + + + + + + + + +
    void R_MHU_B_S_IsrSub (uint32_t irq)
    +
    +

    MHU_B_S receive interrupt sub function (for OpenAMP)

    +
    Parameters
    + + +
    [in]irqirq number for inter-core interrupt
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___m_h_u___b___s.js b/group___m_h_u___b___s.js new file mode 100644 index 0000000..4b83d0a --- /dev/null +++ b/group___m_h_u___b___s.js @@ -0,0 +1,17 @@ +var group___m_h_u___b___s = +[ + [ "mhu_b_s_instance_ctrl_t", "group___m_h_u___b___s.html#structmhu__b__s__instance__ctrl__t", [ + [ "open", "group___m_h_u___b___s.html#a294d326c6a08e1f19a58d2a2bbc88ca5", null ], + [ "p_cfg", "group___m_h_u___b___s.html#a3b97d7aeb81bea198e1a0d059636094f", null ], + [ "p_regs", "group___m_h_u___b___s.html#a2b8c58c859b360c49f9c132b8e9e56eb", null ], + [ "channel", "group___m_h_u___b___s.html#a9b896e827be8d101095eb1d8c67afc89", null ], + [ "send_type", "group___m_h_u___b___s.html#ac6ee77183a51d7a53d2f9568318fda9b", null ], + [ "p_shared_memory_tx", "group___m_h_u___b___s.html#aa89c2c59032c4f93ba53b8a8aaeec31c", null ], + [ "p_shared_memory_rx", "group___m_h_u___b___s.html#a910e0327342316a77edb79f80e2beb2e", null ] + ] ], + [ "R_MHU_B_S_Open", "group___m_h_u___b___s.html#ga0b3f80725bd550c0ad45e65a2b1ce84d", null ], + [ "R_MHU_B_S_MsgSend", "group___m_h_u___b___s.html#gad99b4c1d18e5981c75895a2578765c55", null ], + [ "R_MHU_B_S_Close", "group___m_h_u___b___s.html#gac6ff12104bd7bf87ad37d80b447b3fe8", null ], + [ "R_MHU_B_S_CallbackSet", "group___m_h_u___b___s.html#gad7c066b75da3fbe82844c1474d6a3f07", null ], + [ "R_MHU_B_S_IsrSub", "group___m_h_u___b___s.html#ga0222baa1c79edc091f8676c719d32c1b", null ] +]; \ No newline at end of file diff --git a/group___m_h_u___n_s.html b/group___m_h_u___n_s.html index 97c031b..d593260 100644 --- a/group___m_h_u___n_s.html +++ b/group___m_h_u___n_s.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Message Handling Unit for non secure channels (r_mhu_ns) +RZV Flexible Software Package Documentation: Message Handling Unit for non secure channels (r_mhu_ns) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    @@ -115,13 +183,17 @@

    Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels).

    Overview

    -

    MHU is a function for message communication between Cortex-A55 and Cortex-M33 cores incorporated in RZ/V2L. Message communication is done by shared RAM (On-chip RAM) for passing message and response between CPUs and the function (MHU) for notifying when messages and responses are stored in the memory.

    +

    MHU is a function for message communication between:

    +
      +
    • Cortex-A55 and Cortex-M33 cores incorporated in RZ/V2L.
    • +
    +

    Message communication is done by shared RAM for passing message and response between CPUs and the function (MHU) for notifying when messages and responses are stored in the memory.

    Features

    The MHU_NS module supports the following features:

      -
    • Generete interrupt to notify Cortex-A55 when the message/response is stored in shared RAM(On-chip RAM).
    • -
    • Receive interrupt when the message/response is stored by Cortex-A55 in shared RAM(On-chip RAM).
    • +
    • Generate interrupt to notify each core of RZ MPUs when the message/response is stored in shared RAM.
    • +
    • Receive interrupt when the message/response is stored by each core of RZ MPUs in shared RAM.
    - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    Message Handling Unit for non-secure software interrupt receive (r_mhu_ns_swint_get)
    +
    Message Handling Unit for non-secure software interrupt receive (r_mhu_ns_swint_get)

    @@ -361,7 +433,7 @@

      - +
    diff --git a/group___m_h_u___n_s___s_w_i_n_t___g_e_t.html b/group___m_h_u___n_s___s_w_i_n_t___g_e_t.html index 20a5373..0dcbf2e 100644 --- a/group___m_h_u___n_s___s_w_i_n_t___g_e_t.html +++ b/group___m_h_u___n_s___s_w_i_n_t___g_e_t.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Message Handling Unit for non-secure software interrupt receive (r_mhu_ns_swint_get) +RZV Flexible Software Package Documentation: Message Handling Unit for non-secure software interrupt receive (r_mhu_ns_swint_get) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    @@ -113,12 +181,15 @@

    Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Get).

    Overview

    -

    MHU is a function for message communication between Cortex-A55 and Cortex-M33 cores incorporated in RZ/V2L.

    +

    MHU is a function for message communication between:

    +
      +
    • Cortex-A55 and Cortex-M33 cores incorporated in RZ/V2L.
    • +

    Features

    The MHU_NS_SWINT_GET module supports the following features:

      -
    • Receive interrupt when the software interrupt is set by Cortex-A55.
    • +
    • Receive interrupt when the message/response is stored by each core of RZ MPUs in shared RAM.
    - @@ -74,6 +78,53 @@ + + + + + +

    @@ -315,7 +386,7 @@

      - +
    diff --git a/group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html b/group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html index 6b474c9..4e1fd92 100644 --- a/group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html +++ b/group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: MHU Interface (Software Interrupt Get) +RZV Flexible Software Package Documentation: MHU Interface (Software Interrupt Get) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    Message Handling Unit for non-secure software interrupt generation (r_mhu_ns_swint_set)
    +
    Message Handling Unit for non-secure software interrupt generation (r_mhu_ns_swint_set)

    @@ -275,6 +344,7 @@

    Opens the MHU driver and initializes the hardware.

    Implemented as
    Parameters
    @@ -300,6 +370,7 @@

    Specify callback function and optional context pointer and working memory pointer.

    Implemented as
    Parameters
    @@ -327,6 +398,7 @@

    Closes the driver and releases the MHU device.

    Implemented as
    Parameters
    @@ -402,7 +474,7 @@

      - +
    diff --git a/group___m_h_u___n_s___s_w_i_n_t___s_e_t.html b/group___m_h_u___n_s___s_w_i_n_t___s_e_t.html index e1ba9c9..1dc3137 100644 --- a/group___m_h_u___n_s___s_w_i_n_t___s_e_t.html +++ b/group___m_h_u___n_s___s_w_i_n_t___s_e_t.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Message Handling Unit for non-secure software interrupt generation (r_mhu_ns_swint_set) +RZV Flexible Software Package Documentation: Message Handling Unit for non-secure software interrupt generation (r_mhu_ns_swint_set) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    @@ -111,7 +179,10 @@

    Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Set).

    Overview

    -

    MHU is a function for message communication between Cortex-A55 and Cortex-M33 cores incorporated in RZ/V2L.

    +

    MHU is a function for message communication between:

    +
      +
    • Cortex-A55 and Cortex-M33 cores incorporated in RZ/V2L.
    • +

    Features

    The MHU_NS_SWINT_SET module supports the following features:

    @@ -266,7 +337,7 @@

      - +
    diff --git a/group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html b/group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html index 0e5ea32..387e4f6 100644 --- a/group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html +++ b/group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: MHU Interface (Software Interrupt Set) +RZV Flexible Software Package Documentation: MHU Interface (Software Interrupt Set) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    - @@ -74,6 +78,53 @@ + + + + + +
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    Message Handling Unit for secure channels (r_mhu_s)
    +
    Message Handling Unit for secure channels (r_mhu_s)

    @@ -223,6 +292,7 @@

    Opens the MHU driver and initializes the hardware.

    Implemented as
    Parameters
    @@ -248,6 +318,7 @@

    Performs a send operation on an MHU device.

    Implemented as
    Parameters
    @@ -272,6 +343,7 @@

    Closes the driver and releases the MHU device.

    Implemented as
    Parameters
    @@ -347,7 +419,7 @@

      - +
    diff --git a/group___m_h_u___s.html b/group___m_h_u___s.html index 6c3e620..5c2012e 100644 --- a/group___m_h_u___s.html +++ b/group___m_h_u___s.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Message Handling Unit for secure channels (r_mhu_s) +RZV Flexible Software Package Documentation: Message Handling Unit for secure channels (r_mhu_s) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    @@ -115,13 +183,16 @@

    Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels).

    Overview

    -

    MHU is a function for message communication between Cortex-A55 and Cortex-M33 cores incorporated in RZ/V2L. Message communication is done by shared RAM (On-chip RAM) for passing message and response between CPUs and the function (MHU) for notifying when messages and responses are stored in the memory.

    +
      +
    • Cortex-A55 and Cortex-M33 cores incorporated in RZ/V2L.
    • +
    +

    Message communication is done by shared RAM for passing message and response between CPUs and the function (MHU) for notifying when messages and responses are stored in the memory.

    Features

    The MHU_S module supports the following features:

      -
    • Generete interrupt to notify Cortex-A55 when the message/response is stored in shared RAM(On-chip RAM).
    • -
    • Receive interrupt when the message/response is stored by Cortex-A55 in shared RAM(On-chip RAM).
    • +
    • Generate interrupt to notify each core of RZ MPUs when the message/response is stored in shared RAM.
    • +
    • Receive interrupt when the message/response is stored by each core of RZ MPUs in shared RAM.
    - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    Port Output Enable for GPT (r_poeg)
    +
    Port Output Enable for GPT (r_poeg)

    @@ -361,7 +432,7 @@

      - +
    diff --git a/group___m_t_u3.html b/group___m_t_u3.html new file mode 100644 index 0000000..fe3c746 --- /dev/null +++ b/group___m_t_u3.html @@ -0,0 +1,1922 @@ + + + + + + + +RZV Flexible Software Package Documentation: Multi-Function Timer Pulse Unit 3 (r_mtu3) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Multi-Function Timer Pulse Unit 3 (r_mtu3)
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_MTU3_Open (timer_ctrl_t *const p_ctrl, timer_cfg_t const *const p_cfg)
     
    fsp_err_t R_MTU3_Stop (timer_ctrl_t *const p_ctrl)
     
    fsp_err_t R_MTU3_Start (timer_ctrl_t *const p_ctrl)
     
    fsp_err_t R_MTU3_Reset (timer_ctrl_t *const p_ctrl)
     
    fsp_err_t R_MTU3_PeriodSet (timer_ctrl_t *const p_ctrl, uint32_t const period_counts)
     
    fsp_err_t R_MTU3_DutyCycleSet (timer_ctrl_t *const p_ctrl, uint32_t const duty_cycle_counts, uint32_t const pin)
     
    fsp_err_t R_MTU3_InfoGet (timer_ctrl_t *const p_ctrl, timer_info_t *const p_info)
     
    fsp_err_t R_MTU3_StatusGet (timer_ctrl_t *const p_ctrl, timer_status_t *const p_status)
     
    fsp_err_t R_MTU3_CounterSet (timer_ctrl_t *const p_ctrl, uint32_t counter)
     
    fsp_err_t R_MTU3_OutputEnable (timer_ctrl_t *const p_ctrl, mtu3_output_pin_t pin_level)
     
    fsp_err_t R_MTU3_OutputDisable (timer_ctrl_t *const p_ctrl, mtu3_io_pin_t pin)
     
    fsp_err_t R_MTU3_Enable (timer_ctrl_t *const p_ctrl)
     
    fsp_err_t R_MTU3_Disable (timer_ctrl_t *const p_ctrl)
     
    fsp_err_t R_MTU3_AdcTriggerSet (timer_ctrl_t *const p_ctrl, mtu3_adc_compare_match_t which_compare_match, uint16_t compare_match_value)
     
    fsp_err_t R_MTU3_CallbackSet (timer_ctrl_t *const p_api_ctrl, void(*p_callback)(timer_callback_args_t *), void const *const p_context, timer_callback_args_t *const p_callback_memory)
     
    fsp_err_t R_MTU3_Close (timer_ctrl_t *const p_ctrl)
     
    +

    Detailed Description

    +

    Driver for the MTU3 peripherals on RZ microprocessor. This module implements the Timer Interface.

    +

    +Overview

    +

    The MTU3 module can be used to measure external input signals, generate a periodic interrupt, or output a periodic or PWM signal to a MTIOC pin.

    +

    This module supports the MTU3 peripherals are 16-bit timer and 32-bit timer. All the timer are treated the same in this module from the API perspective.

    + + + + + +
    16-bit timer 32-bit timer
    RZ/V2L ch0 to ch7 ch8
    +

    This driver is supported only in RZ/V2L.

    +

    +Features

    +

    The MTU3 module has the following features:

      +
    • Supports normal mode and PWM mode 1.
    • +
    • Supports count source of PCLK, MTCLK pins, MTIOC pins.
    • +
    • Supports noise filter on MTCLK pins, MTIOC pins.
    • +
    • Signal can be output to a pin.
    • +
    • Configurable period (counts per timer cycle).
    • +
    • Configurable duty cycle in PWM mode.
    • +
    • Supports runtime reconfiguration of period.
    • +
    • Supports runtime reconfiguration of duty cycle in PWM mode.
    • +
    • APIs are provided to start, stop, and reset the counter.
    • +
    • APIs are provided to get the current period, source clock frequency, and count direction.
    • +
    • APIs are provided to get the current timer status and counter value.
    • +
    • Supports PWM waveform generation.
    • +
    • Supports setting the counter value while the timer is stopped.
    • +
    • Supports enabling and disabling output pins.
    • +
    • Supports skipping overflow / comparison match interrupts for specific channels
    • +
    • Supports buffer operation.
    • +
    • Supports start an ADC scan at a compare match value and updating the compare match value.
        +
      • A/D Converter Activation by TGRA Input Capture/Compare Match
      • +
      • A/D Converter Activation by A/D Converter Start Request Delaying Function
      • +
      +
    • +
    +

    The following functions are not supported.

      +
    • Phase counting mode.
    • +
    • Cascade connection operation.
    • +
    • Reset-synchronized PWM mode.
    • +
    • Complementary PWM mode.
    • +
    • Synchronous operation.
    • +
    • Operation as a dead-time compensation counter.
    • +
    • PWM mode 2.
    • +
    • A/D Converter Activation by Compare Match between MTU0.TCNT and MTU0.TGRE.
    • +
    • Three Phase Function (MTU5).
    • +
    +

    +Selecting a Timer

    +

    RZ MPUs have two timer peripherals: the Multi-Function Timer Pulse Unit 3 (MTU3) and the General Timer (GTM). When selecting between them, consider these factors:

    + + + + + + + + + +
    MTU3 GTM
    Available ChannelsThe number of MTU3 channels is device specific. All currently supported MPUs have at least 8 MTU3 channels.All MPUs have 3 GTM channels.
    Timer ResolutionAll MPUs have at least one 16-bit MTU3 timer.The GTM timers are 32-bit timers.
    Clock SourceThe MTU3 runs off P0 clock with a configurable divider up to 1024.The GTM runs off P0 clock.
    +

    +Configuration

    +

    Build Time Configurations for r_mtu3

    +The following build time configurations are defined in fsp_cfg/r_mtu3_cfg.h:
    +

    + + + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    Pin Output Support
      +
    • +Disabled
    • +
    • +Enabled
    • +
    +
    Disabled If selected code for outputting a waveform to a pin is included in the build.
    +

    Configurations for Timers > Timer Driver on r_mtu3

    +This module can be added to the Stacks tab via New Stack > Timers > Timer Driver on r_mtu3.
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    General > NameName must be a valid C symbolg_timer0 Module name.
    General > ChannelChannel number must exist on this MPU0 Specify the hardware channel.
    General > Mode
      +
    • +Periodic
    • +
    • +PWM
    • +
    +
    Periodic Mode selection.
    +Periodic: Generates periodic interrupts or square waves.
    +One-shot: Generate a single interrupt or a pulse wave. Note: One-shot mode is implemented in software. ISRs must be enabled for one-shot even if callback is unused.
    +PWM: Generates basic PWM waveforms.
    +Triangle-Wave Symmetric PWM: Generates symmetric PWM waveforms with duty cycle determined by compare match set during a crest interrupt and updated at the next trough.
    +Triangle-Wave Asymmetric PWM: Generates asymmetric PWM waveforms with duty cycle determined by compare match set during a crest/trough interrupt and updated at the next trough/crest.
    General > TGRA(Output Compare or Input Capture Value)Value must be an integer between 1 and 65536 (0x10000).0x10000 Capture/Compare match A value.
    General > TGRB(Output Compare or Input Capture Value)Value must be an integer between 1 and 65536 (0x10000).0x10000 Capture/Compare match B value.
    General > TGRC(Output Compare or Input Capture Value)Value must be an integer between 1 and 65536 (0x10000).0x10000 Capture/Compare match C value.
    General > TGRD(Output Compare or Input Capture Value)Value must be an integer between 1 and 65536 (0x10000).0x10000 Capture/Compare match D value.
    General > Time PrescalerRefer to the RZV Configuration tool for available options.P0CLK divided by 1 (common ch) Select time prescaler.
    General > Clock Edge
      +
    • +Rising
    • +
    • +Falling
    • +
    • +Both
    • +
    +
    Rising Select clock edge.
    General > Counter Clear Source
      +
    • +Disabled
    • +
    • +TGRA
    • +
    • +TGRB
    • +
    +
    Disabled Select counter clear source.
    Noise Filter > Extarnal Clock > Enable
      +
    • +MTCLKA Enabled
    • +
    • +MTCLKB Enabled
    • +
    • +MTCLKC Enabled
    • +
    • +MTCLKD Enabled
    • +
    +
    Sets the noise filter for the external clock. Since it is a setting common to all channels, it may be overwritten by other Stacks settings.
    Noise Filter > Extarnal Clock > Clock Select
      +
    • +P0CLK divided by 1
    • +
    • +P0CLK divided by 2
    • +
    • +P0CLK divided by 8
    • +
    • +P0CLK divided by 32
    • +
    +
    P0CLK divided by 1 Select noise filter clock.
    Noise Filter > Input Capture > Enable
      +
    • +MTIOCA Enabled
    • +
    • +MTIOCB Enabled
    • +
    +
    Select whether to enable extra features on this channel.
    Noise Filter > Input Capture > Clock Select
      +
    • +P0CLK divided by 1
    • +
    • +P0CLK divided by 8
    • +
    • +P0CLK divided by 32
    • +
    • +External Clock
    • +
    +
    P0CLK divided by 1 Select noise filter clock.
    I/O Control > MTIOCnA Pin Function
      +
    • +No Output
    • +
    • +Low Output at Low compare match
    • +
    • +Low Output at High compare match
    • +
    • +Low Output at Toggle compare match
    • +
    • +High Output at Low compare match
    • +
    • +High Output at High compare match
    • +
    • +High Output at Toggle compare match
    • +
    • +Input capture at rising edge
    • +
    • +Input capture at falling edge
    • +
    • +Input capture at both edges
    • +
    +
    No Output Select TGRA initial output.
    I/O Control > MTIOCnB Pin Function
      +
    • +No Output
    • +
    • +Low Output at Low compare match
    • +
    • +Low Output at High compare match
    • +
    • +Low Output at Toggle compare match
    • +
    • +High Output at Low compare match
    • +
    • +High Output at High compare match
    • +
    • +High Output at Toggle compare match
    • +
    • +Input capture at rising edge
    • +
    • +Input capture at falling edge
    • +
    • +Input capture at both edges
    • +
    +
    No Output Select TGRB initial output.
    Interrupts > CallbackName must be a valid C symbolNULL A user callback function can be specified here. If this callback function is provided, it will be called from the interrupt service routine (ISR) each time the timer period elapses
    Interrupts > Overflow/Crest Interrupt EnableMCU Specific OptionsEnable the overflow interrupt.
    Interrupts > Overflow/Crest Interrupt PriorityValue must be an integer between 0 and 25524 Select the overflow interrupt priority. This is the crest interrupt for triangle-wave PWM.
    Interrupts > Capture A Interrupt EnableMCU Specific OptionsEnable the capture A interrupt.
    Interrupts > Capture A Interrupt PriorityValue must be an integer between 0 and 25524 Select the interrupt priority for capture A.
    Interrupts > Capture B Interrupt EnableMCU Specific OptionsEnable the capture B interrupt.
    Interrupts > Capture B Interrupt PriorityValue must be an integer between 0 and 25524 Select the interrupt priority for capture B.
    Extra Features > ADC Trigger > Start request cycle A (Start Request Delaying Function)Must be a valid non-negative integer with a maximum configurable value of 65535 (0xffff).0 Timer A/D Converter start request cycle A (MTU4 or MTU7).
    Extra Features > ADC Trigger > Start request cycle B (Start Request Delaying Function)Must be a valid non-negative integer with a maximum configurable value of 65535 (0xffff).0 Timer A/D Converter start request cycle B (MTU4 or MTU7).
    Extra Features > ADC Trigger > A/D Converter Activation by TGRA Input Capture/Compare Match Enable
      +
    • +Disabled
    • +
    • +Enabled
    • +
    +
    Disabled Select whether to enable A/D Converter Activation by TGRA Input Capture/Compare Match.
    Extra Features > Interrupt Skipping > Group A > Mode
      +
    • +Mode 1
    • +
    • +Mode 2
    • +
    +
    Mode 1 Selects interrupt skipping function 1 or 2(TIMTRA).
    Extra Features > Interrupt Skipping > Group A > TCIV4 Interrupt Skip Count
      +
    • +Not skip
    • +
    • +1
    • +
    • +2
    • +
    • +3
    • +
    • +4
    • +
    • +5
    • +
    • +6
    • +
    • +7
    • +
    +
    Not skip Select the number of TCIV4 interrupts to skip.
    Extra Features > Interrupt Skipping > Group A > TCIV3 Interrupt Skip Count
      +
    • +Not skip
    • +
    • +1
    • +
    • +2
    • +
    • +3
    • +
    • +4
    • +
    • +5
    • +
    • +6
    • +
    • +7
    • +
    +
    Not skip Select the number of TCIV3 interrupts to skip.
    Extra Features > Interrupt Skipping > Group A > TRG4AN/TRG4BN Interrupt Skip Count
      +
    • +Not skip
    • +
    • +1
    • +
    • +2
    • +
    • +3
    • +
    • +4
    • +
    • +5
    • +
    • +6
    • +
    • +7
    • +
    +
    Not skip Select the number of TRG4AN/TRG4BN interrupts to skip.
    Extra Features > Interrupt Skipping > Group B > Mode
      +
    • +Mode 1
    • +
    • +Mode 2
    • +
    +
    Mode 1 Selects interrupt skipping function 1 or 2(TIMTRB).
    Extra Features > Interrupt Skipping > Group B > TCIV7 Interrupt Skip Count
      +
    • +Not skip
    • +
    • +1
    • +
    • +2
    • +
    • +3
    • +
    • +4
    • +
    • +5
    • +
    • +6
    • +
    • +7
    • +
    +
    Not skip Select the number of TCIV7 interrupts to skip.
    Extra Features > Interrupt Skipping > Group B > TGIA6 Interrupt Skip Count
      +
    • +Not skip
    • +
    • +1
    • +
    • +2
    • +
    • +3
    • +
    • +4
    • +
    • +5
    • +
    • +6
    • +
    • +7
    • +
    +
    Not skip Select the number of TGIA6 interrupts to skip.
    Extra Features > Interrupt Skipping > Group B > TRG7AN/TRG7BN Interrupt Skip Count
      +
    • +Not skip
    • +
    • +1
    • +
    • +2
    • +
    • +3
    • +
    • +4
    • +
    • +5
    • +
    • +6
    • +
    • +7
    • +
    +
    Not skip Select the number of TRG7AN/TRG7BN interrupts to skip.
    Extra Features > Extra Features Enable
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled Select whether to enable extra features on this channel.
    +

    +

    +Clock Configuration

    +

    The MTU3 clock is based on the P0 clock frequency. You can set the P0 clock frequency using the Clocks tab of the Configuration editor.

    +

    +Pin Configuration

    +

    This module can use MTIOCA and MTIOCB pins as output pins for periodic or PWM signals.

    +

    This module can use MTIOCA and MTIOCB as input pins to measure input signals.

    +

    +Usage Notes

    +

    Updating Period and Duty Cycle

    +

    The period is updated after the next counter compare match after calling R_MTU3_PeriodSet().

    +

    The duty cycle is updated after the next counter compare match after calling R_MTU3_DutyCycleSet().

    +

    Periodic Output

    +

    The MTIOC pin toggles twice each time the timer expires in periodic mode. This is achieved by defining a PWM wave at a 50 percent duty cycle so that the period of the resulting square wave (from rising edge to rising edge) matches the period of the MTU3 timer. Since the periodic output is actually a PWM output, the time at the stop level is one cycle shorter than the time opposite the stop level for odd period values.

    +

    PWM Output

    +

    For the PWM output signal, the signal level at the start of the cycle and at the end of the cycle can be selected arbitrarily.

    +

    Interrupt Skipping

    +

    When an interrupt skipping source is selected a hardware counter will increment each time the selected event occurs. Each interrupt past the first (up to the specified skip count) will be suppressed.

    +

    +Examples

    +

    MTU3 Basic Example

    +

    This is a basic example of minimal use of the MTU3 in an application.

    +
    void mtu3_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_MTU3_Open(&g_timer0_ctrl, &g_timer0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    /* Start the timer. */
    (void) R_MTU3_Start(&g_timer0_ctrl);
    }

    MTU3 Callback Example

    +

    This is an example of a timer callback.

    +
    /* Example callback called when timer expires. */
    void timer_callback (timer_callback_args_t * p_args)
    {
    if (TIMER_EVENT_CYCLE_END == p_args->event)
    {
    /* Add application code to be called periodically here. */
    }
    }

    MTU3 Free Running Counter Example

    +

    To use the MTU3 as a free running counter, select periodic mode and set the the Period to 0xFFFF for a 16-bit timer.

    +
    void mtu3_counter_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_MTU3_Open(&g_timer0_ctrl, &g_timer0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    /* Start the timer. */
    (void) R_MTU3_Start(&g_timer0_ctrl);
    /* (Optional) Stop the timer. */
    (void) R_MTU3_Stop(&g_timer0_ctrl);
    /* Read the current counter value. Counter value is in status.counter. */
    (void) R_MTU3_StatusGet(&g_timer0_ctrl, &status);
    }

    MTU3 Period Update Example

    +

    This an example of updating the period.

    +
    #define MTU3_EXAMPLE_MICROSEC_PER_SEC (1000000)
    #define MTU3_EXAMPLE_DESIRED_PERIOD_MICROSEC (200)
    /* This example shows how to calculate a new period value at runtime. */
    void mtu3_period_calculation_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_MTU3_Open(&g_timer0_ctrl, &g_timer0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    /* Start the timer. */
    (void) R_MTU3_Start(&g_timer0_ctrl);
    /* Get the source clock frequency (in Hz). There are 3 ways to do this in FSP:
    * - If P0 clock is chosen in agt_extended_cfg_t::clock_source and the P0 clock frequency has not changed since reset,
    * - The source clock frequency is BSP_STARTUP_P0CLK_HZ >> timer_cfg_t::source_div
    * - Use the R_MTU3_InfoGet function (it accounts for the divider).
    * - Calculate the current P0 clock frequency using R_FSP_SystemClockHzGet(FSP_PRIV_CLOCK_P0CLK) and right shift
    * by mtu3_extended_cfg_t::mtu3_clk_div.
    *
    * This example uses the 3rd option (R_FSP_SystemClockHzGet).
    */
    uint32_t p0clk_freq_hz = R_FSP_SystemClockHzGet(FSP_PRIV_CLOCK_P0CLK) >> g_timer0_cfg.source_div;
    /* Calculate the desired period based on the current clock. Note that this calculation could overflow if the
    * desired period is larger than UINT16_MAX / p0clk_freq_hz. A cast to uint64_t is used to prevent this. */
    uint32_t period_counts =
    (uint32_t) (((uint64_t) p0clk_freq_hz * MTU3_EXAMPLE_DESIRED_PERIOD_MICROSEC) / MTU3_EXAMPLE_MICROSEC_PER_SEC);
    /* Set the calculated period. */
    err = R_MTU3_PeriodSet(&g_timer0_ctrl, period_counts);
    handle_error(err);
    }

    MTU3 Duty Cycle Update Example

    +

    This an example of updating the duty cycle.

    +
    #define MTU3_EXAMPLE_DESIRED_DUTY_CYCLE_PERCENT (25)
    #define MTU3_EXAMPLE_MAX_PERCENT (100)
    /* This example shows how to calculate a new duty cycle value at runtime. */
    void mtu3_duty_cycle_calculation_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_MTU3_Open(&g_timer0_ctrl, &g_timer0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Start the timer. */
    (void) R_MTU3_Start(&g_timer0_ctrl);
    /* Get the current period setting. */
    (void) R_MTU3_InfoGet(&g_timer0_ctrl, &info);
    uint32_t current_period_counts = info.period_counts;
    /* Calculate the desired duty cycle based on the current period. */
    uint32_t duty_cycle_counts = (current_period_counts * MTU3_EXAMPLE_DESIRED_DUTY_CYCLE_PERCENT) /
    MTU3_EXAMPLE_MAX_PERCENT;
    /* Set the calculated duty cycle. */
    err = R_MTU3_DutyCycleSet(&g_timer0_ctrl, duty_cycle_counts, 0);
    assert(FSP_SUCCESS == err);
    }
    + + + + + + + + + +

    +Data Structures

    struct  mtu3_output_pin_t
     
    struct  mtu3_instance_ctrl_t
     
    struct  mtu3_extended_pwm_cfg_t
     
    struct  mtu3_extended_cfg_t
     
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Enumerations

    enum  mtu3_io_pin_level_t
     
    enum  mtu3_clock_edge_t
     
    enum  mtu3_clock_div_t
     
    enum  mtu3_tcnt_clear_t
     
    enum  mtu3_io_pin_t
     
    enum  mtu3_noise_filter_t
     
    enum  mtu3_noise_filter_mtclk_t
     
    enum  mtu3_noise_filter_clock_t
     
    enum  mtu3_noise_filter_external_clock_t
     
    enum  mtu3_interrupt_skip_mode_t
     
    enum  mtu3_interrupt_skip_count_t
     
    enum  mtu3_adc_compare_match_t
     
    enum  mtu3_adc_activation_tgra_compare_match_t
     
    +

    Data Structure Documentation

    + +

    ◆ mtu3_output_pin_t

    + +
    +
    + + + + +
    struct mtu3_output_pin_t
    +
    +

    Configurations for output pins.

    +
    + + + + + + + +
    Data Fields
    +mtu3_io_pin_level_t +output_pin_level_a +I/O Control A.
    +mtu3_io_pin_level_t +output_pin_level_b +I/O Control B.
    + +
    +
    + +

    ◆ mtu3_instance_ctrl_t

    + +
    +
    + + + + +
    struct mtu3_instance_ctrl_t
    +
    +

    Channel control block. DO NOT INITIALIZE. Initialization occurs when timer_api_t::open is called.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    +uint32_t open
     Whether or not channel is open.
     
    +const timer_cfg_tp_cfg
     Pointer to initial configurations.
     
    +void * p_reg
     Base register for this channel.
     
    +R_MTU_Type * p_reg_com
     Base register for this channel(common ch)
     
    +void * p_reg_nf
     Base register for this channel(noise fileter)
     
    +uint32_t channel_mask
     Channel bitmask.
     
    +void(* p_callback )(timer_callback_args_t *)
     Pointer to callback.
     
    +timer_callback_args_tp_callback_memory
     Pointer to optional callback argument memory.
     
    +void const * p_context
     Pointer to context to be passed into callback function.
     
    + +
    +
    + +

    ◆ mtu3_extended_pwm_cfg_t

    + +
    +
    + + + + +
    struct mtu3_extended_pwm_cfg_t
    +
    +

    MTU3 extension for advanced PWM features.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +mtu3_interrupt_skip_mode_t +interrupt_skip_mode_a +Selects interrupt skipping function 1 or 2(TIMTRA)
    +mtu3_interrupt_skip_mode_t +interrupt_skip_mode_b +Selects interrupt skipping function 1 or 2(TIMTRB)
    +uint16_t +adc_a_compare_match +Timer A/D Converter Start Request Cycle A (MTU4 or MTU7)
    +uint16_t +adc_b_compare_match +Timer A/D Converter Start Request Cycle B (MTU4 or MTU7)
    +mtu3_interrupt_skip_count_t +interrupt_skip_count_tciv4 +TCIV4 Interrupt Skipping Count Setting(TITCR1A)
    +mtu3_interrupt_skip_count_t +interrupt_skip_count_tgia3 +TGIA3 Interrupt Skipping Count Setting(TITCR1A)
    +mtu3_interrupt_skip_count_t +interrupt_skip_count_tciv7 +TCIV7 Interrupt Skipping Count Setting(TITCR1B)
    +mtu3_interrupt_skip_count_t +interrupt_skip_count_tgia6 +TGIA6 Interrupt Skipping Count Setting(TITCR1B)
    +mtu3_interrupt_skip_count_t +interrupt_skip_count_tgr4an_bn +TRG4AN/TRG4BN Interrupt Skipping Count Setting(TITCR2A)
    +mtu3_interrupt_skip_count_t +interrupt_skip_count_tgr7an_bn +TRG7AN/TRG7BN Interrupt Skipping Count Setting(TITCR2B)
    + +
    +
    + +

    ◆ mtu3_extended_cfg_t

    + +
    +
    + + + + +
    struct mtu3_extended_cfg_t
    +
    +

    The MTU3 extension constitutes a unique feature of MTU3.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +uint32_t +tgra_val +Capture/Compare match A register.
    +uint32_t +tgrb_val +Capture/Compare match B register.
    +uint32_t +tgrc_val +Capture/Compare match C register (Does not exist in MTU ch1-2)
    +uint32_t +tgrd_val +Capture/Compare match D register (Does not exist in MTU ch1-2)
    +mtu3_clock_div_t +mtu3_clk_div +Time Prescaler Select.
    +mtu3_clock_edge_t +clk_edge +Clock Edge Select.
    +mtu3_tcnt_clear_t +mtu3_clear +Counter Clear Source Select.
    +mtu3_output_pin_t +mtioc_ctrl_setting +I/O Control A, B.
    +mtu3_noise_filter_t +noise_filter_mtioc_setting +
    +mtu3_noise_filter_clock_t +noise_filter_mtioc_clk +
    +mtu3_noise_filter_mtclk_t +noise_filter_mtclk_setting +
    +mtu3_noise_filter_external_clock_t +noise_filter_mtclk_clk +
    +mtu3_adc_activation_tgra_compare_match_t +adc_activation_setting +
    +uint8_t +capture_a_ipl +Capture/Compare match A interrupt priority.
    +uint8_t +capture_b_ipl +Capture/Compare match B interrupt priority.
    +IRQn_Type +capture_a_irq +Capture/Compare match A interrupt.
    +IRQn_Type +capture_b_irq +Capture/Compare match B interrupt.
    +mtu3_extended_pwm_cfg_t const * +p_pwm_cfg +Advanced PWM features, optional.
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ mtu3_io_pin_level_t

    + +
    +
    + + + + +
    enum mtu3_io_pin_level_t
    +
    +

    I/O Level Select

    + + + + + + + + + + + +
    Enumerator
    MTU3_IO_PIN_LEVEL_NO_OUTPUT 

    Output prohibited.

    +
    MTU3_IO_PIN_LEVEL_INITIAL_LOW_COMPARE_LOW 

    Initial output is low. Low output at compare match.

    +
    MTU3_IO_PIN_LEVEL_INITIAL_LOW_COMPARE_HIGH 

    Initial output is low. High output at compare match.

    +
    MTU3_IO_PIN_LEVEL_INITIAL_LOW_COMPARE_TOGGLE 

    Initial output is low. Toggle output at compare match.

    +
    MTU3_IO_PIN_LEVEL_INITIAL_HIGH_COMPARE_LOW 

    Initial output is high. Low output at compare match.

    +
    MTU3_IO_PIN_LEVEL_INITIAL_HIGH_COMPARE_HIGH 

    Initial output is high. High output at compare match.

    +
    MTU3_IO_PIN_LEVEL_INITIAL_HIGH_COMPARE_TOGGLE 

    Initial output is high. Toggle output at compare match.

    +
    MTU3_IO_PIN_LEVEL_INPUT_RISING_EDGE 

    Input capture at rising edge.

    +
    MTU3_IO_PIN_LEVEL_INPUT_FALLING_EDGE 

    Input capture at falling edge.

    +
    MTU3_IO_PIN_LEVEL_INPUT_BOTH_EDGE 

    Input capture at both edges.

    +
    + +
    +
    + +

    ◆ mtu3_clock_edge_t

    + +
    +
    + + + + +
    enum mtu3_clock_edge_t
    +
    +

    Clock Edge Select

    + + + + +
    Enumerator
    MTU3_CLOCK_EDGE_RISING 

    Count at rising edge.

    +
    MTU3_CLOCK_EDGE_FALLING 

    Count at falling edge.

    +
    MTU3_CLOCK_EDGE_BOTH 

    Count at both edges.

    +
    + +
    +
    + +

    ◆ mtu3_clock_div_t

    + +
    +
    + + + + +
    enum mtu3_clock_div_t
    +
    +

    Time Prescaler Select

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Enumerator
    MTU3_CLOCK_DIV_1 

    CLOCK divided by 1 (common ch)

    +
    MTU3_CLOCK_DIV_4 

    CLOCK divided by 4 (common ch)

    +
    MTU3_CLOCK_DIV_16 

    CLOCK divided by 16 (common ch)

    +
    MTU3_CLOCK_DIV_64 

    CLOCK divided by 64 (common ch)

    +
    MTU3_CLOCK_DIV_2 

    CLOCK divided by 2 (common ch)

    +
    MTU3_CLOCK_DIV_8 

    CLOCK divided by 8 (common ch)

    +
    MTU3_CLOCK_DIV_32 

    CLOCK divided by 32 (common ch)

    +
    MTU3_CLOCK_DIV_MTCLKA_CH_0 

    External clock: counts on MTCLKA pin input (ch0)

    +
    MTU3_CLOCK_DIV_MTCLKB_CH_0 

    External clock: counts on MTCLKB pin input (ch0)

    +
    MTU3_CLOCK_DIV_MTCLKC_CH_0 

    External clock: counts on MTCLKC pin input (ch0)

    +
    MTU3_CLOCK_DIV_MTCLKD_CH_0 

    External clock: counts on MTCLKD pin input (ch0)

    +
    MTU3_CLOCK_DIV_256_CH_0 

    CLOCK divided by 256 (ch0)

    +
    MTU3_CLOCK_DIV_1024_CH_0 

    CLOCK divided by 1024 (ch0)

    +
    MTU3_CLOCK_DIV_MTIOC1A_CH_0 

    External clock: counts on MTIOC1A pin input (ch0)

    +
    MTU3_CLOCK_DIV_MTCLKA_CH_1 

    External clock: counts on MTCLKA pin input (ch1)

    +
    MTU3_CLOCK_DIV_MTCLKB_CH_1 

    External clock: counts on MTCLKB pin input (ch1)

    +
    MTU3_CLOCK_DIV_256_CH_1 

    CLOCK divided by 256 (ch1)

    +
    MTU3_CLOCK_DIV_TCNT_CH1 

    Overflow/underflow of MTU2.TCNT.

    +
    MTU3_CLOCK_DIV_1024_CH_1 

    CLOCK divided by 1024 (ch1)

    +
    MTU3_CLOCK_DIV_MTCLKA_CH_2 

    External clock: counts on MTCLKA pin input (ch2)

    +
    MTU3_CLOCK_DIV_MTCLKB_CH_2 

    External clock: counts on MTCLKB pin input (ch2)

    +
    MTU3_CLOCK_DIV_MTCLKC_CH_2 

    External clock: counts on MTCLKC pin input (ch2)

    +
    MTU3_CLOCK_DIV_1024_CH_2 

    CLOCK divided by 1024 (ch2)

    +
    MTU3_CLOCK_DIV_256_CH_2 

    CLOCK divided by 256 (ch2)

    +
    MTU3_CLOCK_DIV_256_CH_3_4_6_7_8 

    CLOCK divided by 256 (ch3-4, 6-8)

    +
    MTU3_CLOCK_DIV_1024_CH_3_4_6_7_8 

    CLOCK divided by 1024 (ch3-4, 6-8)

    +
    MTU3_CLOCK_DIV_MTCLKA_CH_3_4_6_7_8 

    External clock: counts on MTCLKA pin input (ch3-4, 6-8)

    +
    MTU3_CLOCK_DIV_MTCLKB_CH_3_4_6_7_8 

    External clock: counts on MTCLKB pin input (ch3-4, 6-8)

    +
    + +
    +
    + +

    ◆ mtu3_tcnt_clear_t

    + +
    +
    + + + + +
    enum mtu3_tcnt_clear_t
    +
    +

    Counter Clear Source Select

    + + + + +
    Enumerator
    MTU3_TCNT_CLEAR_DISABLE 

    TCNT clearing disabled.

    +
    MTU3_TCNT_CLEAR_TGRA 

    TCNT cleared by TGRA compare match/input capture.

    +
    MTU3_TCNT_CLEAR_TGRB 

    TCNT cleared by TGRB compare match/input capture.

    +
    + +
    +
    + +

    ◆ mtu3_io_pin_t

    + +
    +
    + + + + +
    enum mtu3_io_pin_t
    +
    +

    Level of MTU3 pin

    + + + + +
    Enumerator
    MTU3_IO_PIN_MTIOCA 

    MTIOCA.

    +
    MTU3_IO_PIN_MTIOCB 

    MTIOCB.

    +
    MTU3_IO_PIN_MTIOCA_AND_MTIOCB 

    MTIOCA and MTIOCB.

    +
    + +
    +
    + +

    ◆ mtu3_noise_filter_t

    + +
    +
    + + + + +
    enum mtu3_noise_filter_t
    +
    +

    Disables or enables the noise filter for input from the MTIOCnA pin

    + + + + +
    Enumerator
    MTU3_NOISE_FILTER_DISABLE 

    The noise filter for the MTIOC pin is disabled.

    +
    MTU3_NOISE_FILTER_A_ENABLE 

    The noise filter for the MTIOCA pin is enabled.

    +
    MTU3_NOISE_FILTER_B_ENABLE 

    The noise filter for the MTIOCB pin is enabled.

    +
    + +
    +
    + +

    ◆ mtu3_noise_filter_mtclk_t

    + +
    +
    + + + + +
    enum mtu3_noise_filter_mtclk_t
    +
    +

    Disables or enables the noise filter for the external clock input pins of the MTU

    + + + + + + +
    Enumerator
    MTU3_NOISE_FILTER_MTCLK_DISABLE 

    The noise filter for the MTCLK pin is disabled.

    +
    MTU3_NOISE_FILTER_MTCLK_A_ENABLE 

    The noise filter for the MTCLKA pin is enabled.

    +
    MTU3_NOISE_FILTER_MTCLK_B_ENABLE 

    The noise filter for the MTCLKB pin is enabled.

    +
    MTU3_NOISE_FILTER_MTCLK_C_ENABLE 

    The noise filter for the MTCLKC pin is enabled.

    +
    MTU3_NOISE_FILTER_MTCLK_D_ENABLE 

    The noise filter for the MTCLKD pin is enabled.

    +
    + +
    +
    + +

    ◆ mtu3_noise_filter_clock_t

    + +
    +
    + + + + +
    enum mtu3_noise_filter_clock_t
    +
    + + + + + +
    Enumerator
    MTU3_NOISE_FILTER_CLOCK_DIV_1 

    CLK/1 - fast sampling.

    +
    MTU3_NOISE_FILTER_CLOCK_DIV_8 

    CLK/8.

    +
    MTU3_NOISE_FILTER_CLOCK_DIV_32 

    CLK/32 - slow sampling.

    +
    MTU3_NOISE_FILTER_CLOCK_SOURCE 

    Clock source for counting.

    +
    + +
    +
    + +

    ◆ mtu3_noise_filter_external_clock_t

    + +
    +
    + + + + + +
    Enumerator
    MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_1 

    CLK/1 - fast sampling.

    +
    MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_2 

    CLK/2.

    +
    MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_8 

    CLK/8.

    +
    MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_32 

    CLK/32 - slow sampling.

    +
    + +
    +
    + +

    ◆ mtu3_interrupt_skip_mode_t

    + +
    +
    + + + + +
    enum mtu3_interrupt_skip_mode_t
    +
    +

    Interrupt Skipping Function Select

    + + + +
    Enumerator
    MTU3_INTERRUPT_SKIP_MODE_1 

    Setting the TITCR1A or TITCR1B register enables.

    +
    MTU3_INTERRUPT_SKIP_MODE_2 

    Setting the TITCR2A or TITCR2B register enables.

    +
    + +
    +
    + +

    ◆ mtu3_interrupt_skip_count_t

    + +
    +
    + + + + +
    enum mtu3_interrupt_skip_count_t
    +
    +

    Number of interrupts to skip between events

    + + + + + + + + + +
    Enumerator
    MTU3_INTERRUPT_SKIP_COUNT_0 

    Do not skip interrupts.

    +
    MTU3_INTERRUPT_SKIP_COUNT_1 

    Skip one interrupt.

    +
    MTU3_INTERRUPT_SKIP_COUNT_2 

    Skip two interrupts.

    +
    MTU3_INTERRUPT_SKIP_COUNT_3 

    Skip three interrupts.

    +
    MTU3_INTERRUPT_SKIP_COUNT_4 

    Skip four interrupts.

    +
    MTU3_INTERRUPT_SKIP_COUNT_5 

    Skip five interrupts.

    +
    MTU3_INTERRUPT_SKIP_COUNT_6 

    Skip six interrupts.

    +
    MTU3_INTERRUPT_SKIP_COUNT_7 

    Skip seven interrupts.

    +
    + +
    +
    + +

    ◆ mtu3_adc_compare_match_t

    + +
    +
    + + + + +
    enum mtu3_adc_compare_match_t
    +
    +

    Trigger options to start A/D conversion.

    + + + +
    Enumerator
    MTU3_ADC_COMPARE_MATCH_ADC_A 

    Set A/D conversion start request value for MTU3 A/D converter start request A.

    +
    MTU3_ADC_COMPARE_MATCH_ADC_B 

    Set A/D conversion start request value for MTU3 A/D converter start request B.

    +
    + +
    +
    + +

    ◆ mtu3_adc_activation_tgra_compare_match_t

    + +
    +
    + + + +
    Enumerator
    MTU3_ADC_TGRA_COMPARE_MATCH_DISABLE 

    A/D Converter Activation by TGRA Input Capture/Compare Match Disable.

    +
    MTU3_ADC_TGRA_COMPARE_MATCH_ENABLE 

    A/D Converter Activation by TGRA Input Capture/Compare Match Enable.

    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_MTU3_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MTU3_Open (timer_ctrl_t *const p_ctrl,
    timer_cfg_t const *const p_cfg 
    )
    +
    +

    Initializes the timer module and applies configurations. Implements timer_api_t::open.

    +

    The MTU3 implementation of the general timer can accept a mtu3_extended_cfg_t extension parameter.

    +

    Example:

    /* Initializes the module. */
    err = R_MTU3_Open(&g_timer0_ctrl, &g_timer0_cfg);
    Return values
    + + + + + + +
    FSP_SUCCESSInitialization was successful and timer has started.
    FSP_ERR_ASSERTIONA required input pointer is NULL.
    FSP_ERR_ALREADY_OPENModule is already open.
    FSP_ERR_INVALID_MODEOnly PERIODIC and PWM are supported.
    FSP_ERR_IP_CHANNEL_NOT_PRESENTThe channel requested in the p_cfg parameter is not available on this device.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_Stop()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_MTU3_Stop (timer_ctrl_t *const p_ctrl)
    +
    +

    Stops timer. Implements timer_api_t::stop.

    +

    Example:

    /* (Optional) Stop the timer. */
    (void) R_MTU3_Stop(&g_timer0_ctrl);
    Return values
    + + + + +
    FSP_SUCCESSTimer successfully stopped.
    FSP_ERR_ASSERTIONp_ctrl was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_Start()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_MTU3_Start (timer_ctrl_t *const p_ctrl)
    +
    +

    Starts timer. Implements timer_api_t::start.

    +

    Example:

    /* Start the timer. */
    (void) R_MTU3_Start(&g_timer0_ctrl);
    Return values
    + + + + +
    FSP_SUCCESSTimer successfully started.
    FSP_ERR_ASSERTIONp_ctrl was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_Reset()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_MTU3_Reset (timer_ctrl_t *const p_ctrl)
    +
    +

    Resets the counter value to 0. Implements timer_api_t::reset.

    +
    Note
    This function also updates to the new period if no counter overflow has occurred since the last call to R_MTU3_PeriodSet().
    +
    Return values
    + + + + +
    FSP_SUCCESSCounter value written successfully.
    FSP_ERR_ASSERTIONp_ctrl was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_PeriodSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MTU3_PeriodSet (timer_ctrl_t *const p_ctrl,
    uint32_t const period_counts 
    )
    +
    +

    Sets period value provided. If the timer is running, the period will be updated after the next compare match. If the timer is stopped, this function resets the counter and updates the period. Implements timer_api_t::periodSet.

    +

    Example:

    /* Get the source clock frequency (in Hz). There are 3 ways to do this in FSP:
    * - If P0 clock is chosen in agt_extended_cfg_t::clock_source and the P0 clock frequency has not changed since reset,
    * - The source clock frequency is BSP_STARTUP_P0CLK_HZ >> timer_cfg_t::source_div
    * - Use the R_MTU3_InfoGet function (it accounts for the divider).
    * - Calculate the current P0 clock frequency using R_FSP_SystemClockHzGet(FSP_PRIV_CLOCK_P0CLK) and right shift
    * by mtu3_extended_cfg_t::mtu3_clk_div.
    *
    * This example uses the 3rd option (R_FSP_SystemClockHzGet).
    */
    uint32_t p0clk_freq_hz = R_FSP_SystemClockHzGet(FSP_PRIV_CLOCK_P0CLK) >> g_timer0_cfg.source_div;
    /* Calculate the desired period based on the current clock. Note that this calculation could overflow if the
    * desired period is larger than UINT16_MAX / p0clk_freq_hz. A cast to uint64_t is used to prevent this. */
    uint32_t period_counts =
    (uint32_t) (((uint64_t) p0clk_freq_hz * MTU3_EXAMPLE_DESIRED_PERIOD_MICROSEC) / MTU3_EXAMPLE_MICROSEC_PER_SEC);
    /* Set the calculated period. */
    err = R_MTU3_PeriodSet(&g_timer0_ctrl, period_counts);
    handle_error(err);
    Return values
    + + + + +
    FSP_SUCCESSPeriod value written successfully.
    FSP_ERR_ASSERTIONA required pointer was NULL, or the period was not in the valid range of 1 to 0xFFFF.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_DutyCycleSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MTU3_DutyCycleSet (timer_ctrl_t *const p_ctrl,
    uint32_t const duty_cycle_counts,
    uint32_t const pin 
    )
    +
    +

    Sets duty cycle. Implements timer_api_t::dutyCycleSet.

    +

    Duty cycle is updated in the TGRx register.

    +
    Parameters
    + + + + +
    [in]p_ctrlPointer to instance control block.
    [in]duty_cycle_countsDuty cycle to set in counts. When the initial output setting of the period register is LOW, entering a value greater than the period register will result in a 0% duty cycle.
    [in]pinNot Used.
    +
    +
    +
    Return values
    + + + + + +
    FSP_SUCCESSDuty cycle updated successfully.
    FSP_ERR_ASSERTIONA required pointer was NULL, or the period was not in the valid range of 1 to 0xFFFF.
    FSP_ERR_NOT_OPENThe instance is not opened.
    FSP_ERR_UNSUPPORTEDMTU3_CFG_OUTPUT_SUPPORT_ENABLE is 0.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_InfoGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MTU3_InfoGet (timer_ctrl_t *const p_ctrl,
    timer_info_t *const p_info 
    )
    +
    +

    Get timer information and store it in provided pointer p_info. Implements timer_api_t::infoGet.

    +
    Return values
    + + + + +
    FSP_SUCCESSTGRx, count direction, frequency, structure successfully.
    FSP_ERR_ASSERTIONp_ctrl or p_info was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_StatusGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MTU3_StatusGet (timer_ctrl_t *const p_ctrl,
    timer_status_t *const p_status 
    )
    +
    +

    Get current timer status and store it in provided pointer p_status. Implements timer_api_t::statusGet.

    +

    Example:

    /* Read the current counter value. Counter value is in status.counter. */
    (void) R_MTU3_StatusGet(&g_timer0_ctrl, &status);
    Return values
    + + + + +
    FSP_SUCCESSCurrent timer state and counter value set successfully.
    FSP_ERR_ASSERTIONp_ctrl or p_status was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_CounterSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MTU3_CounterSet (timer_ctrl_t *const p_ctrl,
    uint32_t counter 
    )
    +
    +

    Set counter value.

    +
    Note
    Do not call this API while the counter is counting. The counter value can only be updated while the counter is stopped.
    +
    Return values
    + + + + + +
    FSP_SUCCESSCounter value updated.
    FSP_ERR_ASSERTIONp_ctrl was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    FSP_ERR_IN_USEThe timer is running. Stop the timer before calling this function.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_OutputEnable()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MTU3_OutputEnable (timer_ctrl_t *const p_ctrl,
    mtu3_output_pin_t pin_level 
    )
    +
    +

    Enable output for MTIOCA and/or MTIOCB.

    +
    Return values
    + + + + +
    FSP_SUCCESSOutput is enabled.
    FSP_ERR_ASSERTIONp_ctrl was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_OutputDisable()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MTU3_OutputDisable (timer_ctrl_t *const p_ctrl,
    mtu3_io_pin_t pin 
    )
    +
    +

    Disable output for MTIOCA and/or MTIOCB.

    +
    Return values
    + + + + +
    FSP_SUCCESSOutput is disabled.
    FSP_ERR_ASSERTIONp_ctrl was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_Enable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_MTU3_Enable (timer_ctrl_t *const p_ctrl)
    +
    +

    timer_api_t::enable is not supported.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDEnable not supported on this MPU.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_Disable()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_MTU3_Disable (timer_ctrl_t *const p_ctrl)
    +
    +

    timer_api_t::disable is not supported.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDDisable not supported on this MPU.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_AdcTriggerSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MTU3_AdcTriggerSet (timer_ctrl_t *const p_ctrl,
    mtu3_adc_compare_match_t which_compare_match,
    uint16_t compare_match_value 
    )
    +
    +

    Set A/D converter start request compare match value.

    +
    Note
    MTU ch4, ch7 only
    +
    Return values
    + + + + +
    FSP_SUCCESSCounter value updated.
    FSP_ERR_ASSERTIONp_ctrl was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_MTU3_CallbackSet (timer_ctrl_t *const p_api_ctrl,
    void(*)(timer_callback_args_t *) p_callback,
    void const *const p_context,
    timer_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback with the option to provide memory for the callback argument structure. Implements timer_api_t::callbackSet.

    +
    Return values
    + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    +
    +
    + +
    +
    + +

    ◆ R_MTU3_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_MTU3_Close (timer_ctrl_t *const p_ctrl)
    +
    +

    Stops counter, disables output pins, and clears internal driver data. Implements timer_api_t::close.

    +
    Return values
    + + + + +
    FSP_SUCCESSSuccessful close.
    FSP_ERR_ASSERTIONp_ctrl was NULL.
    FSP_ERR_NOT_OPENThe instance is not opened.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___m_t_u3.js b/group___m_t_u3.js new file mode 100644 index 0000000..8575552 --- /dev/null +++ b/group___m_t_u3.js @@ -0,0 +1,164 @@ +var group___m_t_u3 = +[ + [ "mtu3_output_pin_t", "group___m_t_u3.html#structmtu3__output__pin__t", [ + [ "output_pin_level_a", "group___m_t_u3.html#a2a34e1c4ab61754e34a02e7ee80c6073", null ], + [ "output_pin_level_b", "group___m_t_u3.html#a55b86cba3e5d0552f18ffbe4db8bd8ac", null ] + ] ], + [ "mtu3_instance_ctrl_t", "group___m_t_u3.html#structmtu3__instance__ctrl__t", [ + [ "open", "group___m_t_u3.html#a3f5bfdfa30fd7e9c0d2d9ea355536d12", null ], + [ "p_cfg", "group___m_t_u3.html#ab44e73386d7b2fe1ad3315b5655022e6", null ], + [ "p_reg", "group___m_t_u3.html#a4af7341566a2e88e2be9c7368e095ea5", null ], + [ "p_reg_com", "group___m_t_u3.html#ab867c5de83802ed0b964c23e776b3702", null ], + [ "p_reg_nf", "group___m_t_u3.html#abdb95c4611476cb60d46326fc0a79f8d", null ], + [ "channel_mask", "group___m_t_u3.html#a5810e1f6e5c5f08974d4c0e119bc6d6f", null ], + [ "p_callback", "group___m_t_u3.html#a1424b0f596d7101a897b5de751c06239", null ], + [ "p_callback_memory", "group___m_t_u3.html#a0985147b6d048419a186f194f670f606", null ], + [ "p_context", "group___m_t_u3.html#a4ad3258449aecadc5d9d96f7b4325cde", null ] + ] ], + [ "mtu3_extended_pwm_cfg_t", "group___m_t_u3.html#structmtu3__extended__pwm__cfg__t", [ + [ "interrupt_skip_mode_a", "group___m_t_u3.html#aa2aaf02a71503c209b558836a992d768", null ], + [ "interrupt_skip_mode_b", "group___m_t_u3.html#a7adfe2a0b7737f00e2fcf92e1eb3bd90", null ], + [ "adc_a_compare_match", "group___m_t_u3.html#a810012402bce96404cd96fd456c5754b", null ], + [ "adc_b_compare_match", "group___m_t_u3.html#a46541e7560d30dbc680639d6ef4f5804", null ], + [ "interrupt_skip_count_tciv4", "group___m_t_u3.html#a216df4f3be3012f4f458c09d97f6593b", null ], + [ "interrupt_skip_count_tgia3", "group___m_t_u3.html#a71064db80d5848f56c23c5c5d56acc8a", null ], + [ "interrupt_skip_count_tciv7", "group___m_t_u3.html#af5d77f5eb4fd6e742f4a5e79b5665c04", null ], + [ "interrupt_skip_count_tgia6", "group___m_t_u3.html#a21d61adfb4e1a493557d264d94ebef26", null ], + [ "interrupt_skip_count_tgr4an_bn", "group___m_t_u3.html#acc26191a7a28828c0c7f4ee1792d1506", null ], + [ "interrupt_skip_count_tgr7an_bn", "group___m_t_u3.html#a6952d44a04c939335d8ab1521dc6c4b4", null ] + ] ], + [ "mtu3_extended_cfg_t", "group___m_t_u3.html#structmtu3__extended__cfg__t", [ + [ "tgra_val", "group___m_t_u3.html#af508e14be5476f219620a30f14531871", null ], + [ "tgrb_val", "group___m_t_u3.html#af66a345b2403fb4b16c0c69babd6f96e", null ], + [ "tgrc_val", "group___m_t_u3.html#af23edbc49f7268ad12e61a783bbbf951", null ], + [ "tgrd_val", "group___m_t_u3.html#ac5bc8f09109ce78912076db7b22ed9f5", null ], + [ "mtu3_clk_div", "group___m_t_u3.html#ad0bcb4a5a415f6c5f3d0db6557f5ec3d", null ], + [ "clk_edge", "group___m_t_u3.html#a032a2421eaa21dbc376ce103e7757068", null ], + [ "mtu3_clear", "group___m_t_u3.html#a1f1b1918442a0305e70d102cb636e09d", null ], + [ "mtioc_ctrl_setting", "group___m_t_u3.html#ac3d8f53d47a3063cf48b374411182243", null ], + [ "capture_a_ipl", "group___m_t_u3.html#ae357d03fb305808acc1a5f971e9ae205", null ], + [ "capture_b_ipl", "group___m_t_u3.html#aedd3dc71ec5728ef54295740297f16f7", null ], + [ "capture_a_irq", "group___m_t_u3.html#a566d52f760c761f105831fae2c2f5125", null ], + [ "capture_b_irq", "group___m_t_u3.html#a88e05f92f9226183d8fe7bcdc5f777c6", null ], + [ "p_pwm_cfg", "group___m_t_u3.html#aff82059debc7b813205be81de5f350c5", null ] + ] ], + [ "mtu3_io_pin_level_t", "group___m_t_u3.html#ga4a8786cd182fb52e974c1214c2de627a", [ + [ "MTU3_IO_PIN_LEVEL_NO_OUTPUT", "group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa61e5eccf44d43e36ee349a9ef52ab2fe", null ], + [ "MTU3_IO_PIN_LEVEL_INITIAL_LOW_COMPARE_LOW", "group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa0584b3bcc6c6623299cd6e8364f6dc69", null ], + [ "MTU3_IO_PIN_LEVEL_INITIAL_LOW_COMPARE_HIGH", "group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa0b50c080f4d0da8eaebb4f8fbdcaffa4", null ], + [ "MTU3_IO_PIN_LEVEL_INITIAL_LOW_COMPARE_TOGGLE", "group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa9e8afa21b22ec2819a98e61c008826c6", null ], + [ "MTU3_IO_PIN_LEVEL_INITIAL_HIGH_COMPARE_LOW", "group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa4163d703b041fe158960693cf722147b", null ], + [ "MTU3_IO_PIN_LEVEL_INITIAL_HIGH_COMPARE_HIGH", "group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aad21bb53ae71711700a34ed9f7c8734eb", null ], + [ "MTU3_IO_PIN_LEVEL_INITIAL_HIGH_COMPARE_TOGGLE", "group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa906726a828affd3ced2153afcad5c560", null ], + [ "MTU3_IO_PIN_LEVEL_INPUT_RISING_EDGE", "group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aac1d4f7271562936841736a3ade4363ea", null ], + [ "MTU3_IO_PIN_LEVEL_INPUT_FALLING_EDGE", "group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aaca2a023c3381cefc724b746cb8661b68", null ], + [ "MTU3_IO_PIN_LEVEL_INPUT_BOTH_EDGE", "group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aafc54fef0ded76646e75e0c5843ee1e62", null ] + ] ], + [ "mtu3_clock_edge_t", "group___m_t_u3.html#gaef0d6e7f5f99c9142dea22471d60df36", [ + [ "MTU3_CLOCK_EDGE_RISING", "group___m_t_u3.html#ggaef0d6e7f5f99c9142dea22471d60df36aa4a9bd1f72de2c259e18ed59bc547e8a", null ], + [ "MTU3_CLOCK_EDGE_FALLING", "group___m_t_u3.html#ggaef0d6e7f5f99c9142dea22471d60df36ae165912b6df21de4925f8361d8c630d6", null ], + [ "MTU3_CLOCK_EDGE_BOTH", "group___m_t_u3.html#ggaef0d6e7f5f99c9142dea22471d60df36a2813c691ad28795563c78ee270fe760a", null ] + ] ], + [ "mtu3_clock_div_t", "group___m_t_u3.html#ga9a9eea39b2f02b777dba8d344dc8eb3b", [ + [ "MTU3_CLOCK_DIV_1", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bae874f2689e6f1c19c30b0f8f7babc6fc", null ], + [ "MTU3_CLOCK_DIV_4", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba66f56ded610017e021f65fe657ebcca8", null ], + [ "MTU3_CLOCK_DIV_16", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba62f2036a3e569253e5374c1ccc03cc4f", null ], + [ "MTU3_CLOCK_DIV_64", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba7f8a017ef1a628f2a12d36747628ac4a", null ], + [ "MTU3_CLOCK_DIV_2", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba1c2ede9d17050523d97a2e03975cc83e", null ], + [ "MTU3_CLOCK_DIV_8", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba701bed0b83349f72da65617d5530d640", null ], + [ "MTU3_CLOCK_DIV_32", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba1f0f14e4639e2f615f01246baad8009a", null ], + [ "MTU3_CLOCK_DIV_MTCLKA_CH_0", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab04764ab43d2f0270af4f6adc1d51cf2", null ], + [ "MTU3_CLOCK_DIV_MTCLKB_CH_0", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba5e74e73b437531bd05b4f537cf72231d", null ], + [ "MTU3_CLOCK_DIV_MTCLKC_CH_0", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab17376b3b14504a2a296b53b1723938b", null ], + [ "MTU3_CLOCK_DIV_MTCLKD_CH_0", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba375a978b7228e8bfc55527c82b167669", null ], + [ "MTU3_CLOCK_DIV_256_CH_0", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba4f65b02bc6d926659bed0d2321f1886d", null ], + [ "MTU3_CLOCK_DIV_1024_CH_0", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bae115e32bcce74086cfde1ad2f39c43f7", null ], + [ "MTU3_CLOCK_DIV_MTIOC1A_CH_0", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bae76246ad6dd264b3ab4a09ce9e95b9ee", null ], + [ "MTU3_CLOCK_DIV_MTCLKA_CH_1", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bad2f9be0d2ce8a82284f34f4ec98b94ac", null ], + [ "MTU3_CLOCK_DIV_MTCLKB_CH_1", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba3a726180c0e0c51f1057c6d143891abe", null ], + [ "MTU3_CLOCK_DIV_256_CH_1", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba407f297d4853f8d0e8364cb3aabab04d", null ], + [ "MTU3_CLOCK_DIV_TCNT_CH1", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba0e32af4cc5c42c1f7951fd6ef3113a13", null ], + [ "MTU3_CLOCK_DIV_1024_CH_1", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3baefe9f7918f14abdff93d9f72cd599ee7", null ], + [ "MTU3_CLOCK_DIV_MTCLKA_CH_2", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab5252c159c1697999ee622504bff5b8a", null ], + [ "MTU3_CLOCK_DIV_MTCLKB_CH_2", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bacc4faaf9336db93e0be2b783b484d3e0", null ], + [ "MTU3_CLOCK_DIV_MTCLKC_CH_2", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3baea32e309ae09841686be347670eb2dbd", null ], + [ "MTU3_CLOCK_DIV_1024_CH_2", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba5d95ba198fd3bb9a1d7a0cf5275fde7e", null ], + [ "MTU3_CLOCK_DIV_256_CH_2", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba04bcba9332e29629ee8615298355d069", null ], + [ "MTU3_CLOCK_DIV_256_CH_3_4_6_7_8", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba2515d8c539b465cdfc9b73429cf38105", null ], + [ "MTU3_CLOCK_DIV_1024_CH_3_4_6_7_8", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba5700159b9400663b6f120540720cdf16", null ], + [ "MTU3_CLOCK_DIV_MTCLKA_CH_3_4_6_7_8", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba91170275703436b2b4a331bdc7e7dd28", null ], + [ "MTU3_CLOCK_DIV_MTCLKB_CH_3_4_6_7_8", "group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab6865991c1903e6ebb1df94294ca86a1", null ] + ] ], + [ "mtu3_tcnt_clear_t", "group___m_t_u3.html#ga031ed640883cba19cb1243d46ea54709", [ + [ "MTU3_TCNT_CLEAR_DISABLE", "group___m_t_u3.html#gga031ed640883cba19cb1243d46ea54709aeeef3908d66e9cc2ea6545d98aa52ce0", null ], + [ "MTU3_TCNT_CLEAR_TGRA", "group___m_t_u3.html#gga031ed640883cba19cb1243d46ea54709a546e3a5b2cac7873b10c4eb914cb0ba1", null ], + [ "MTU3_TCNT_CLEAR_TGRB", "group___m_t_u3.html#gga031ed640883cba19cb1243d46ea54709a7ab7fef8e1167140423f0d3bd325853b", null ] + ] ], + [ "mtu3_io_pin_t", "group___m_t_u3.html#ga8a74b8a0003ccd7602df801eb863a4ce", [ + [ "MTU3_IO_PIN_MTIOCA", "group___m_t_u3.html#gga8a74b8a0003ccd7602df801eb863a4ceaf069a55c34b8d9ef53ad57dc014259bc", null ], + [ "MTU3_IO_PIN_MTIOCB", "group___m_t_u3.html#gga8a74b8a0003ccd7602df801eb863a4ceacd3adaab6bac29b0b63bd9c6a156c028", null ], + [ "MTU3_IO_PIN_MTIOCA_AND_MTIOCB", "group___m_t_u3.html#gga8a74b8a0003ccd7602df801eb863a4cea6579c2e2017ea2d1a473d06d6554d528", null ] + ] ], + [ "mtu3_noise_filter_t", "group___m_t_u3.html#ga6ce62ddb141bf440c0539fc47512c586", [ + [ "MTU3_NOISE_FILTER_DISABLE", "group___m_t_u3.html#gga6ce62ddb141bf440c0539fc47512c586aef6de8ca9710e328d82501ba5ffcbf9d", null ], + [ "MTU3_NOISE_FILTER_A_ENABLE", "group___m_t_u3.html#gga6ce62ddb141bf440c0539fc47512c586a99ecb4bf189434da6ef15bf58a73e665", null ], + [ "MTU3_NOISE_FILTER_B_ENABLE", "group___m_t_u3.html#gga6ce62ddb141bf440c0539fc47512c586ab0e36e5481656608bcca54312a3bbb37", null ] + ] ], + [ "mtu3_noise_filter_mtclk_t", "group___m_t_u3.html#ga000c28bcf923d3ccd0642c3c5dd9a794", [ + [ "MTU3_NOISE_FILTER_MTCLK_DISABLE", "group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794afcd6a47a8930c33f033e099d8336a127", null ], + [ "MTU3_NOISE_FILTER_MTCLK_A_ENABLE", "group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794a088e0050227671eab214afc2c02d0697", null ], + [ "MTU3_NOISE_FILTER_MTCLK_B_ENABLE", "group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794a586cffe1579c0f2244357ce55ee0f21b", null ], + [ "MTU3_NOISE_FILTER_MTCLK_C_ENABLE", "group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794af347277f21b1a43eac30d8eb1b895c12", null ], + [ "MTU3_NOISE_FILTER_MTCLK_D_ENABLE", "group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794a0f3d2d63639430864b7935de79fc899c", null ] + ] ], + [ "mtu3_noise_filter_clock_t", "group___m_t_u3.html#gac04b193c244956523c5c5f0d70b29af5", [ + [ "MTU3_NOISE_FILTER_CLOCK_DIV_1", "group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a12a3b47c245a69650ec7ef8f4684b203", null ], + [ "MTU3_NOISE_FILTER_CLOCK_DIV_8", "group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a11075c2cee823cec78ea4f68865c1daa", null ], + [ "MTU3_NOISE_FILTER_CLOCK_DIV_32", "group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a6f8cd3a55abb64cdb1fe6e9486f16c52", null ], + [ "MTU3_NOISE_FILTER_CLOCK_SOURCE", "group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a2c555ce0b8db45b21c04b431c34d154b", null ] + ] ], + [ "mtu3_noise_filter_external_clock_t", "group___m_t_u3.html#ga7e7928e4452d8a06a86269dcabc3a485", [ + [ "MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_1", "group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485a6e40db422538cdf8cde1c540eb311e66", null ], + [ "MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_2", "group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485a7881f227aeeede564739112e79c90aca", null ], + [ "MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_8", "group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485ad0776747373fdfca5f20758766b97321", null ], + [ "MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_32", "group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485a0d8588e4c98d3691d6201d4de347099f", null ] + ] ], + [ "mtu3_interrupt_skip_mode_t", "group___m_t_u3.html#gaa9f9735282373eede4951043c95c2312", [ + [ "MTU3_INTERRUPT_SKIP_MODE_1", "group___m_t_u3.html#ggaa9f9735282373eede4951043c95c2312af504f08d77384dae2d0be021caa9dc92", null ], + [ "MTU3_INTERRUPT_SKIP_MODE_2", "group___m_t_u3.html#ggaa9f9735282373eede4951043c95c2312ad50979af2f5e0cf1d9751f936709991a", null ] + ] ], + [ "mtu3_interrupt_skip_count_t", "group___m_t_u3.html#ga3ad32e2d3e0cebb7645750d6c0a8f692", [ + [ "MTU3_INTERRUPT_SKIP_COUNT_0", "group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a669abe23b86af53bff6aee3883ced7ca", null ], + [ "MTU3_INTERRUPT_SKIP_COUNT_1", "group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692aeb4e2a88b51b85e79a97bd36f1d4603e", null ], + [ "MTU3_INTERRUPT_SKIP_COUNT_2", "group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a967dfd369ac7f512c7523058aeb9d958", null ], + [ "MTU3_INTERRUPT_SKIP_COUNT_3", "group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692affae7913c291ab2b45f5975dd245d46e", null ], + [ "MTU3_INTERRUPT_SKIP_COUNT_4", "group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692aaa21c802db8257f48d08dd7983a06495", null ], + [ "MTU3_INTERRUPT_SKIP_COUNT_5", "group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a124774c9b768380d6fdc6355a670cc9e", null ], + [ "MTU3_INTERRUPT_SKIP_COUNT_6", "group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a5cd89c876da9eacd4fb26083e54d0d2f", null ], + [ "MTU3_INTERRUPT_SKIP_COUNT_7", "group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a9fa7dcb45ab1dea49a6f54c99fc8a7f7", null ] + ] ], + [ "mtu3_adc_compare_match_t", "group___m_t_u3.html#ga41121fd0c747ec6e3ba93bcc94a73bdd", [ + [ "MTU3_ADC_COMPARE_MATCH_ADC_A", "group___m_t_u3.html#gga41121fd0c747ec6e3ba93bcc94a73bddacd70ef6a0cddbebba7480ce8b801b531", null ], + [ "MTU3_ADC_COMPARE_MATCH_ADC_B", "group___m_t_u3.html#gga41121fd0c747ec6e3ba93bcc94a73bddaae499e3fe16a915b8baf1ffe81e2bcaf", null ] + ] ], + [ "mtu3_adc_activation_tgra_compare_match_t", "group___m_t_u3.html#ga8d63ef78e4ad3838c53bc5683d6d3485", [ + [ "MTU3_ADC_TGRA_COMPARE_MATCH_DISABLE", "group___m_t_u3.html#gga8d63ef78e4ad3838c53bc5683d6d3485ac41b3f08145ec498d6b5df97de3ea77f", null ], + [ "MTU3_ADC_TGRA_COMPARE_MATCH_ENABLE", "group___m_t_u3.html#gga8d63ef78e4ad3838c53bc5683d6d3485a8e34a4cdb9bc2d8eb2c8228049285a4e", null ] + ] ], + [ "R_MTU3_Open", "group___m_t_u3.html#ga0ee0beb7bd1f1773916b0c633454fe0b", null ], + [ "R_MTU3_Stop", "group___m_t_u3.html#ga396b95f942eed8fd222c67e5bfd22800", null ], + [ "R_MTU3_Start", "group___m_t_u3.html#ga57aa8e231848fe1eb00775bd722418ee", null ], + [ "R_MTU3_Reset", "group___m_t_u3.html#gab23024474f1c7bb662f4f9dfc091d85c", null ], + [ "R_MTU3_PeriodSet", "group___m_t_u3.html#ga0d64e832230506418738a816a38489e4", null ], + [ "R_MTU3_DutyCycleSet", "group___m_t_u3.html#ga5e4eda78ae4a5cb31e85eb682d6fe248", null ], + [ "R_MTU3_InfoGet", "group___m_t_u3.html#ga0c1fcecad7205ef9928305c960c7e494", null ], + [ "R_MTU3_StatusGet", "group___m_t_u3.html#ga8e02f073acf66a66ef6e525c8b57454e", null ], + [ "R_MTU3_CounterSet", "group___m_t_u3.html#ga8cddfd80a2cfb39a4c69703c8e672368", null ], + [ "R_MTU3_OutputEnable", "group___m_t_u3.html#ga5a740d5042e7efdf698259f1a4b98ece", null ], + [ "R_MTU3_OutputDisable", "group___m_t_u3.html#ga37213c6f09b8122f3950a5a8a83adc34", null ], + [ "R_MTU3_Enable", "group___m_t_u3.html#ga7be983a26523a21e6eec4ed02b3d0902", null ], + [ "R_MTU3_Disable", "group___m_t_u3.html#gab8b9c7b84a459fabd5449e83db526ee1", null ], + [ "R_MTU3_AdcTriggerSet", "group___m_t_u3.html#ga3e16434800b5d897208039f3398acf84", null ], + [ "R_MTU3_CallbackSet", "group___m_t_u3.html#ga4ec0ad4f10536b74374b75f2ca46f527", null ], + [ "R_MTU3_Close", "group___m_t_u3.html#gace590734aa53fc0116c411decc0142d2", null ] +]; \ No newline at end of file diff --git a/group___p_d_m.html b/group___p_d_m.html new file mode 100644 index 0000000..da2220d --- /dev/null +++ b/group___p_d_m.html @@ -0,0 +1,1260 @@ + + + + + + + +RZV Flexible Software Package Documentation: PDM Interface (r_pdm) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    PDM Interface (r_pdm)
    +
    +
    + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_PDM_Open (pdm_ctrl_t *const p_ctrl, pdm_cfg_t const *const p_cfg)
     
    fsp_err_t R_PDM_Start (pdm_ctrl_t *const p_ctrl, void *const p_buffer, size_t const buffer_size, uint32_t const number_of_data_to_callback)
     
    fsp_err_t R_PDM_Stop (pdm_ctrl_t *const p_ctrl)
     
    fsp_err_t R_PDM_Read (pdm_ctrl_t *const p_ctrl, void *const p_dest, uint32_t const bytes)
     
    fsp_err_t R_PDM_StatusGet (pdm_ctrl_t *const p_ctrl, pdm_status_t *const p_status)
     
    fsp_err_t R_PDM_Close (pdm_ctrl_t *const p_ctrl)
     
    fsp_err_t R_PDM_CallbackSet (pdm_ctrl_t *const p_ctrl, void(*p_callback)(pdm_callback_args_t *), void const *const p_context, pdm_callback_args_t *const p_callback_memory)
     
    +

    Detailed Description

    +

    Driver for the PDM peripheral on RZ MPUs. This module implements the PDM Interface.

    +

    +Overview

    +

    +Features

    +

    The PDM module supports the following features:

    +

    Reception of a voice data from external PDM device

      +
    • Integration with the DMAC transfer module
    • +
    • Callback function notification when data is received from the PDM FIFO
    • +
    +

    +Configuration

    +

    Build Time Configurations for r_pdm

    +The following build time configurations are defined in fsp_cfg/r_pdm_cfg.h:
    +

    + + + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    DMAC Support
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled If code for DMAC transfer support is included in the build.
    +

    Configurations for Connectivity > PDM Driver on r_pdm

    +This module can be added to the Stacks tab via New Stack > Connectivity > PDM Driver on r_pdm.
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    Input > Edge
      +
    • +Rising
    • +
    • +Falling
    • +
    +
    Rising Select the edge of input audio data.
    Input > PDM_CLK frequencyRefer to the RZV Configuration tool for available options.module.driver.pdm.clock_div.clock_div_2 Select PDM_CLK Frequency (MHz).
    Output > Bit Depth
      +
    • +20 Bits mode {1 Sign bit and [18:0] bits of the buffer}
    • +
    • +20 Bits mode {2 Sign bits and [18:1] bits of the buffer}
    • +
    • +20 Bits mode {3 Sign bits and [18:2] bits of the buffer}
    • +
    • +20 Bits mode {4 Sign bits and [18:3] bits of the buffer}
    • +
    • +16 Bits mode {1 Sign bit and [18:4] bits of the buffer}
    • +
    • +16 Bits mode {1 Sign bit and [17:3] bits of the buffer}
    • +
    • +16 Bits mode {1 Sign bit and [16:2] bits of the buffer}
    • +
    • +16 Bits mode {1 Sign bit and [15:1] bits of the buffer}
    • +
    • +16 Bits mode {1 Sign bit and [14:0] bits of the buffer}
    • +
    +
    module.driver.pdm.pcm_width.pcm_width_20bits_0_18 Select the bit depth of one sample of audio data.
    Output > Target sampling frequencyRefer to the RZV Configuration tool for available options.30 kHz Select Target sampling Frequency (kHz).
    Filter > Low-pass filter > Low-pass filter input shift
      +
    • +No shift
    • +
    • +1-bit right shift
    • +
    • +2-bits right shift
    • +
    • +3-bits right shift
    • +
    +
    No shift Select the low-pass (half-band decimation) filter input shift setting.
    Filter > Low-pass filter > LPF Coefficient h0(10)Value must be an integer between 0x0000 and 0x1FFF0x0400 Specify the Low-Pass Filter Coefficient h0(10)
    Filter > Low-pass filter > LPF Coefficient h1(0)Value must be an integer between 0x0000 and 0x1FFF0x1FF8 Specify the Low-Pass Filter Coefficient h1(0)
    Filter > Low-pass filter > LPF Coefficient h1(1)Value must be an integer between 0x0000 and 0x1FFF0x000A Specify the Low-Pass Filter Coefficient h1(1)
    Filter > Low-pass filter > LPF Coefficient h1(2)Value must be an integer between 0x0000 and 0x1FFF0x1FF0 Specify the Low-Pass Filter Coefficient h1(2)
    Filter > Low-pass filter > LPF Coefficient h1(3)Value must be an integer between 0x0000 and 0x1FFF0x0018 Specify the Low-Pass Filter Coefficient h1(3)
    Filter > Low-pass filter > LPF Coefficient h1(4)Value must be an integer between 0x0000 and 0x1FFF0x1FDC Specify the Low-Pass Filter Coefficient h1(4)
    Filter > Low-pass filter > LPF Coefficient h1(5)Value must be an integer between 0x0000 and 0x1FFF0x0034 Specify the Low-Pass Filter Coefficient h1(5)
    Filter > Low-pass filter > LPF Coefficient h1(6)Value must be an integer between 0x0000 and 0x1FFF0x1FB3 Specify the Low-Pass Filter Coefficient h1(6)
    Filter > Low-pass filter > LPF Coefficient h1(7)Value must be an integer between 0x0000 and 0x1FFF0x0076 Specify the Low-Pass Filter Coefficient h1(7)
    Filter > Low-pass filter > LPF Coefficient h1(8)Value must be an integer between 0x0000 and 0x1FFF0x1F2E Specify the Low-Pass Filter Coefficient h1(8)
    Filter > Low-pass filter > LPF Coefficient h1(9)Value must be an integer between 0x0000 and 0x1FFF0x0289 Specify the Low-Pass Filter Coefficient h1(9)
    Filter > Low-pass filter > LPF Coefficient h1(10)Value must be an integer between 0x0000 and 0x1FFF0x0289 Specify the Low-Pass Filter Coefficient h1(10)
    Filter > Low-pass filter > LPF Coefficient h1(11)Value must be an integer between 0x0000 and 0x1FFF0x1F2E Specify the Low-Pass Filter Coefficient h1(11)
    Filter > Low-pass filter > LPF Coefficient h1(12)Value must be an integer between 0x0000 and 0x1FFF0x0076 Specify the Low-Pass Filter Coefficient h1(12)
    Filter > Low-pass filter > LPF Coefficient h1(13)Value must be an integer between 0x0000 and 0x1FFF0x1FB3 Specify the Low-Pass Filter Coefficient h1(13)
    Filter > Low-pass filter > LPF Coefficient h1(14)Value must be an integer between 0x0000 and 0x1FFF0x0034 Specify the Low-Pass Filter Coefficient h1(14)
    Filter > Low-pass filter > LPF Coefficient h1(15)Value must be an integer between 0x0000 and 0x1FFF0x1FDC Specify the Low-Pass Filter Coefficient h1(15)
    Filter > Low-pass filter > LPF Coefficient h1(16)Value must be an integer between 0x0000 and 0x1FFF0x0018 Specify the Low-Pass Filter Coefficient h1(16)
    Filter > Low-pass filter > LPF Coefficient h1(17)Value must be an integer between 0x0000 and 0x1FFF0x1FF0 Specify the Low-Pass Filter Coefficient h1(17)
    Filter > Low-pass filter > LPF Coefficient h1(18)Value must be an integer between 0x0000 and 0x1FFF0x000A Specify the Low-Pass Filter Coefficient h1(18)
    Filter > Low-pass filter > LPF Coefficient h1(19)Value must be an integer between 0x0000 and 0x1FFF0x1FF8 Specify the Low-Pass Filter Coefficient h1(19)
    Filter > Compensation filter > Compensation filter input shift
      +
    • +No shift
    • +
    • +1-bit right shift
    • +
    • +2-bits right shift
    • +
    • +3-bits right shift
    • +
    +
    No shift Select the compensation filter input shift setting.
    Filter > Compensation filter > Compensation Filter Coefficient h(0)Value must be an integer between 0x0000 and 0x1FFF0x1FE8 Specify the Compensation Filter Coefficient h(0)
    Filter > Compensation filter > Compensation Filter Coefficient h(1)Value must be an integer between 0x0000 and 0x1FFF0x0039 Specify the Compensation Filter Coefficient h(1)
    Filter > Compensation filter > Compensation Filter Coefficient h(2)Value must be an integer between 0x0000 and 0x1FFF0x003C Specify the Compensation Filter Coefficient h(2)
    Filter > Compensation filter > Compensation Filter Coefficient h(3)Value must be an integer between 0x0000 and 0x1FFF0x1E56 Specify the Compensation Filter Coefficient h(3)
    Filter > Compensation filter > Compensation Filter Coefficient h(4)Value must be an integer between 0x0000 and 0x1FFF0x01DC Specify the Compensation Filter Coefficient h(4)
    Filter > Compensation filter > Compensation Filter Coefficient h(5)Value must be an integer between 0x0000 and 0x1FFF0x06E1 Specify the Compensation Filter Coefficient h(5)
    Filter > Compensation filter > Compensation Filter Coefficient h(6)Value must be an integer between 0x0000 and 0x1FFF0x01DC Specify the Compensation Filter Coefficient h(6)
    Filter > Compensation filter > Compensation Filter Coefficient h(7)Value must be an integer between 0x0000 and 0x1FFF0x1E56 Specify the Compensation Filter Coefficient h(7)
    Filter > Compensation filter > Compensation Filter Coefficient h(8)Value must be an integer between 0x0000 and 0x1FFF0x003C Specify the Compensation Filter Coefficient h(8)
    Filter > Compensation filter > Compensation Filter Coefficient h(9)Value must be an integer between 0x0000 and 0x1FFF0x0039 Specify the Compensation Filter Coefficient h(9)
    Filter > Compensation filter > Compensation Filter Coefficient h(10)Value must be an integer between 0x0000 and 0x1FFF0x1FE8 Specify the Compensation Filter Coefficient h(10)
    Filter > High-pass filter > High-pass filter input shift
      +
    • +No shift
    • +
    • +1-bit right shift
    • +
    • +2-bits right shift
    • +
    • +3-bits right shift
    • +
    +
    No shift Select the high-pass filter input shift setting.
    Filter > High-pass filter > HPF Coefficient s(0)Value must be an integer between 0x0000 and 0xFFFF0x3F61 Specify the High-Pass Filter Coefficient s(0)
    Filter > High-pass filter > HPF Coefficient k(1)Value must be an integer between 0x0000 and 0xFFFF0x3EC1 Specify the High-Pass Filter Coefficient k(1)
    Filter > High-pass filter > HPF Coefficient h(0)Value must be an integer between 0x0000 and 0xFFFF0x4000 Specify the High-Pass Filter Coefficient h(0)
    Filter > High-pass filter > HPF Coefficient h(1)Value must be an integer between 0x0000 and 0xFFFF0xC000 Specify the High-Pass Filter Coefficient h(1)
    Filter > Moving average mode
      +
    • +1-order (filter is skipped)
    • +
    • +2-order
    • +
    • +4-order
    • +
    +
    1-order (filter is skipped) Select the moving average mode for sound detection data.
    Filter > Sinc filter mode
      +
    • +1-order
    • +
    • +2-order
    • +
    • +3-order
    • +
    • +4-order
    • +
    +
    4-order Select the sinc filter mode setting.
    Data Reception > Buffer overwrite detection enable
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Enabled Select buffer overwrite detection.
    Data Reception > Data reception interrupt threshold
      +
    • +1 or more data
    • +
    • +2 or more data
    • +
    • +4 or more data
    • +
    • +8 or more data
    • +
    • +16 or more data
    • +
    +
    1 or more data Select Data reception interrupt threshold.
    Sound Detection > Sound detection enable
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    module.driver.pdm.sound_detection.sound_detection Select sound detection.
    Sound Detection > Sound detection lower limitValue must be an integer between 0x0000 and 0xFFFFF0x0 Specify the Sound detection lower limit
    Sound Detection > Sound detection upper limitValue must be an integer between 0x0000 and 0xFFFFF0x0 Specify the Sound detection upper limit
    Short circuit detection > Short circuit detection enable
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    module.driver.pdm.short_circuit.short_circuit Select short circuit detection.
    Short circuit detection > Short circuit detection High Continuous detection countValue must be an integer between 0x0000 and 0x1FFF0x0 Specify the Short circuit detection High Continuous detection count.
    Short circuit detection > Short circuit detection Low Continuous detection countValue must be an integer between 0x0000 and 0x1FFF0x0 Short circuit detection Low Continuous detection count.
    Overvoltage detection > Overvoltage detection lower limit enable
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    module.driver.pdm.overvoltage_detection_lower_limit_error.overvoltage_detection_lower_limit_error Select overvoltage detection lower limit.
    Overvoltage detection > Overvoltage detection lower limitValue must be an integer between 0x0000 and 0xFFFFF0x0 Specify the Overvoltage detection lower limit
    Overvoltage detection > Overvoltage detection upper limit enable
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    module.driver.pdm.overvoltage_detection_upper_limit_error.overvoltage_detection_upper_limit_error Select overvoltage detection upper limit.
    Overvoltage detection > Overvoltage detection upper limitValue must be an integer between 0x0000 and 0xFFFFF0x0 Specify the Overvoltage detection upper limit
    Interrupt > CallbackName must be a valid C symbolNULL A user callback function can be provided. If this callback function is provided, it will be called from all three interrupt service routines (ISR).
    Interrupt > Sound Detection Interrupt EnableMCU Specific OptionsEnable the sound detection interrupt.
    Interrupt > Sound Detection Interrupt PriorityValue must be an integer between 0 and 25524 Select the sound detection interrupt priority.
    Interrupt > Data Reception Interrupt EnableMCU Specific OptionsEnable the data reception interrupt.
    Interrupt > Data Reception Interrupt PriorityValue must be an integer between 0 and 25524 Select the data reception interrupt priority.
    Interrupt > Error Detection Interrupt EnableMCU Specific OptionsEnable the error detection interrupt.
    Interrupt > Error Detection Interrupt PriorityValue must be an integer between 0 and 25524 Select the error detection interrupt priority.
    NameName must be a valid C symbolg_pdm0 Module name.
    UnitValue must be an non-negative integer0 Specify the PDM unit.
    ChannelValue must be an non-negative integer1 Specify the PDM channel.
    +

    +

    +Clock Configuration

    +

    The PDM peripheral runs on PDM_0_CCLK. PDM_0_CCLK frequency is 48 MHz and can not be configured on the Clocks tab of the RZ Configuration editor.

    +

    +Pin Configuration

    +

    The PDM uses the following pins:

      +
    • PDMDATn0 External PDM CH0 data reception pin
    • +
    • PDMDATn1 External PDM CH1 data reception pin
    • +
    • PDMDATn2 External PDM CH2 data reception pin
    • +
    • PDMCLKn0 External PDM CH0 clock output pin
    • +
    • PDMCLKn1 External PDM CH1 clock output pin
    • +
    • PDMCLKn2 External PDM CH2 clock output pin
    • +
    +

    +Usage Notes

    +

    Audio Data

    +

    PDM hardware converts PDM data to PCM data.

    +

    Data arrays have the following size, alignment, and length based on the "Bit Depth" setting:

    + + + + + + + +
    Bit Depth Array Data Type Required Alignment
    16 Bits 32-bit integer, right justified 4 byte alignment
    20 Bits 32-bit integer, right justified 4 byte alignment
    +

    Data Format for 16 Bits

    + + + + + + + + + +
    Bit Description
    31-20 Fixed to 0
    19-16 Sign bits
    15-0 Fixed-point data
    +

    Data Format for 20 Bits

    + + + + + + + +
    Bit Description
    31-20 Fixed to 0
    19-0 Fixed-point data
    +

    +Examples

    +

    Basic Example

    +

    This is a basic example of minimal use of the PDM in an application.

    +
    #define BUFFER_SIZE 0x1000
    uint32_t buffer[BUFFER_SIZE] __attribute__((aligned(16)));
    void pdm_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Initialize the module. */
    err = R_PDM_Open(&g_pdm_ctrl, &g_pdm_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    err = R_PDM_Start(&g_pdm_ctrl, buffer, sizeof(buffer), BUFFER_SIZE / 2);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    }
    + + + + + +

    +Data Structures

    struct  pdm_instance_ctrl_t
     
    struct  pdm_extended_cfg_t
     
    + + + + + + + + + + + + + + + +

    +Enumerations

    enum  pdm_clk_div_t
     
    enum  pdm_moving_average_mode_t
     
    enum  pdm_low_pass_filter_shift_t
     
    enum  pdm_compensation_filter_shift_t
     
    enum  pdm_high_pass_filter_shift_t
     
    enum  pdm_sinc_filter_mode_t
     
    enum  pdm_interrupt_threshold_t
     
    +

    Data Structure Documentation

    + +

    ◆ pdm_instance_ctrl_t

    + +
    +
    + + + + +
    struct pdm_instance_ctrl_t
    +
    +

    Channel instance control block. DO NOT INITIALIZE. Initialization occurs when pdm_api_t::open is called.

    +
    +
    +
    + +

    ◆ pdm_extended_cfg_t

    + +
    +
    + + + + +
    struct pdm_extended_cfg_t
    +
    +

    PDM configuration extension. This extension is optional.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +pdm_clk_div_t +clock_div +PDM_CLKn's division ratio to core clock.
    +uint8_t +sound_detection_enable +Sound detection enable.

    Function Settings.

    +
    +uint8_t +short_circuit_detection_enable +Short circuit detection enable.
    +uint8_t +over_voltage_lower_limit_detection_enable +Overvoltage detection lower limit enable.
    +uint8_t +over_voltage_upper_limit_detection_enable +Overvoltage detection upper limit enable.
    +uint8_t +buffer_overwrite_detection_enable +Buffer overwrite detection enable.
    +pdm_moving_average_mode_t +moving_average_mode +Moving average mode f or sound detection data.

    Filter Settings.

    +
    +pdm_low_pass_filter_shift_t +low_pass_filter_shift +Low-pass (half -band decimation) filter input shift setting.
    +pdm_compensation_filter_shift_t +compensation_filter_shift +Compensation filter input shift setting.
    +pdm_high_pass_filter_shift_t +high_pass_filter_shift +High-pass filter input shift setting.
    +pdm_sinc_filter_mode_t +sinc_filter_mode +Sinc filter mode setting.
    +uint8_t +sincrng +Sinc filter output valid range.
    +uint8_t +sincdec +Sinc filter decimation ratio.
    +uint16_t +hpf_coefficient_s0 +High-pass filter coefficient s0 (16-bit signed fixed point data)
    +uint16_t +hpf_coefficient_k1 +High-pass filter coefficient k1 (16-bit signed fixed point data)
    +uint16_t +hpf_coefficient_h[2] +High-pass filter coefficient h(p) (16-bit signed fixed point data)
    +uint16_t +compensation_filter_coefficient_h[11] +High-pass filter coefficient h(p) (13-bit signed fixed point data)
    +uint16_t +lpf_coefficient_h0 +Low-pass (half-band decimation) filter coefficient h0 (13-bit signed fixed point data)
    +uint16_t +lpf_coefficient_h1[20] +Low-pass (half-band decimation) filter coefficient h1 (13-bit signed fixed point data)
    +uint32_t +filter_setting_time +Filter setting time.
    +pdm_interrupt_threshold_t +interupt_threshold +Data reception interrupt threshold.

    Sound Detection Threshold.

    +
    +uint32_t +sound_detection_lower_limit +Sound detection lower limit (20-bit signed fixed point data)
    +uint32_t +sound_detection_upper_limit +Sound detection upper limit (20-bit signed fixed point data)
    +uint16_t +short_circuit_count_h +Short circuit detection High Continuous detection count.

    Short-Circuit Detection.

    +
    +uint16_t +short_circuit_count_l +Continuous detection count.
    +uint32_t +overvoltage_detection_lower_limit +Overvoltage detection lower limit (20-bit signed fixed point data)

    Overvoltage Detection.

    +
    +uint32_t +overvoltage_detection_upper_limit +Overvoltage detection upper limit (20-bit signed fixed point data)
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ pdm_clk_div_t

    + +
    +
    + + + + +
    enum pdm_clk_div_t
    +
    +

    PDM_CLKn's division ratio to core clock.

    + + + + + + + + + + + + + + + + + +
    Enumerator
    PDM_CLOCK_DIV_2 

    0000b: 1/2

    +
    PDM_CLOCK_DIV_4 

    0001b: 1/4

    +
    PDM_CLOCK_DIV_6 

    0010b: 1/6

    +
    PDM_CLOCK_DIV_8 

    0011b: 1/8

    +
    PDM_CLOCK_DIV_10 

    0100b: 1/10

    +
    PDM_CLOCK_DIV_12 

    0101b: 1/12

    +
    PDM_CLOCK_DIV_14 

    0110b: 1/14

    +
    PDM_CLOCK_DIV_16 

    0111b: 1/16

    +
    PDM_CLOCK_DIV_18 

    1000b: 1/18

    +
    PDM_CLOCK_DIV_20 

    1001b: 1/20

    +
    PDM_CLOCK_DIV_22 

    1010b: 1/22

    +
    PDM_CLOCK_DIV_24 

    1011b: 1/24

    +
    PDM_CLOCK_DIV_26 

    1100b: 1/26

    +
    PDM_CLOCK_DIV_28 

    1101b: 1/28

    +
    PDM_CLOCK_DIV_30 

    1110b: 1/30

    +
    PDM_CLOCK_DIV_32 

    1111b: 1/32

    +
    + +
    +
    + +

    ◆ pdm_moving_average_mode_t

    + +
    +
    + + + + +
    enum pdm_moving_average_mode_t
    +
    +

    Moving average mode for sound detection data.

    + + + + +
    Enumerator
    PDM_MOVING_AVERAGE_MODE_1_ORDER 

    1-order

    +
    PDM_MOVING_AVERAGE_MODE_2_ORDER 

    2-order

    +
    PDM_MOVING_AVERAGE_MODE_4_ORDER 

    4-order

    +
    + +
    +
    + +

    ◆ pdm_low_pass_filter_shift_t

    + +
    +
    + + + + +
    enum pdm_low_pass_filter_shift_t
    +
    +

    Low-pass (half-band decimation) filter input shift setting.

    + + + + + +
    Enumerator
    PDM_LPF_RIGHT_SHIFT_0 

    No shift.

    +
    PDM_LPF_RIGHT_SHIFT_1 

    1-bit right shift

    +
    PDM_LPF_RIGHT_SHIFT_2 

    2-bit right shift

    +
    PDM_LPF_RIGHT_SHIFT_3 

    3-bit right shift

    +
    + +
    +
    + +

    ◆ pdm_compensation_filter_shift_t

    + +
    +
    +

    Compensation filter input shift setting.

    + + + + + +
    Enumerator
    PDM_COMPENSATION_FILTER_RIGHT_SHIFT_0 

    No shift.

    +
    PDM_COMPENSATION_FILTER_RIGHT_SHIFT_1 

    1-bit right shift

    +
    PDM_COMPENSATION_FILTER_RIGHT_SHIFT_2 

    2-bit right shift

    +
    PDM_COMPENSATION_FILTER_RIGHT_SHIFT_3 

    3-bit right shift

    +
    + +
    +
    + +

    ◆ pdm_high_pass_filter_shift_t

    + +
    +
    +

    High-pass filter input shift setting.

    + + + + + +
    Enumerator
    PDM_HPF_RIGHT_SHIFT_0 

    No shift.

    +
    PDM_HPF_RIGHT_SHIFT_1 

    1-bit right shift

    +
    PDM_HPF_RIGHT_SHIFT_2 

    2-bit right shift

    +
    PDM_HPF_RIGHT_SHIFT_3 

    3-bit right shift

    +
    + +
    +
    + +

    ◆ pdm_sinc_filter_mode_t

    + +
    +
    + + + + +
    enum pdm_sinc_filter_mode_t
    +
    +

    Sinc filter mode setting.

    + + + + + +
    Enumerator
    PDM_SINC_FILTER_MODE_1 

    1-order

    +
    PDM_SINC_FILTER_MODE_2 

    2-order

    +
    PDM_SINC_FILTER_MODE_3 

    3-order

    +
    PDM_SINC_FILTER_MODE_4 

    4-order

    +
    + +
    +
    + +

    ◆ pdm_interrupt_threshold_t

    + +
    +
    + + + + +
    enum pdm_interrupt_threshold_t
    +
    +

    Data reception interrupt threshold.

    + + + + + + +
    Enumerator
    PDM_INTERRUPT_THRESHOLD_1 

    000b: Output interrupt when receiving 1 or more data

    +
    PDM_INTERRUPT_THRESHOLD_2 

    001b: Output interrupt when receiving 2 or more data

    +
    PDM_INTERRUPT_THRESHOLD_4 

    010b: Output interrupt when receiving 4 or more data

    +
    PDM_INTERRUPT_THRESHOLD_8 

    011b: Output interrupt when receiving 8 or more data

    +
    PDM_INTERRUPT_THRESHOLD_16 

    100b: Output interrupt when receiving 16 or more data

    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_PDM_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_PDM_Open (pdm_ctrl_t *const p_ctrl,
    pdm_cfg_t const *const p_cfg 
    )
    +
    +

    Opens the PDM. Implements pdm_api_t::open.

    +

    This function sets this clock divisor and the configurations specified in pdm_cfg_t. It also opens the timer and transfer instances if they are provided.

    +
    Return values
    + + + + + +
    FSP_SUCCESSReady for PDM communication.
    FSP_ERR_ASSERTIONThe pointer to p_ctrl or p_cfg is null.
    FSP_ERR_ALREADY_OPENThe control block has already been opened.
    FSP_ERR_IP_CHANNEL_NOT_PRESENTChannel number is not available on this device.
    +
    +
    +
    Returns
    See Common Error Codes or functions called by this function for other popdmble return codes. This function calls: +
    + +
    +
    + +

    ◆ R_PDM_Start()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_PDM_Start (pdm_ctrl_t *const p_ctrl,
    void *const p_buffer,
    size_t const buffer_size,
    uint32_t const number_of_data_to_callback 
    )
    +
    +

    Starts PDM. Implements pdm_api_t::start.

    +

    This function enables reception, and enables any transfer instances used.

    +

    The PDM will start on the next frame boundary.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSPDM communication stop request issued.
    FSP_ERR_ASSERTIONThe pointer to p_ctrl was null.
    FSP_ERR_INVALID_SIZEThe size of buffer is not the multiple of pdm_interrupt_threshold_t.
    FSP_ERR_INVALID_ALIGNMENTThe alignment of argument buffer_size is not matched with hardware specification.
    FSP_ERR_NOT_OPENThe channel is not opened.
    +
    +
    +
    Returns
    See Common Error Codes or lower level drivers for other popdmble return codes.
    + +
    +
    + +

    ◆ R_PDM_Stop()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_PDM_Stop (pdm_ctrl_t *const p_ctrl)
    +
    +

    Stops PDM. Implements pdm_api_t::stop.

    +

    This function disables reception, and disables any transfer instances used.

    +

    The PDM will stop on the next frame boundary.

    +
    Return values
    + + + + +
    FSP_SUCCESSPDM communication stop request issued.
    FSP_ERR_ASSERTIONThe pointer to p_ctrl was null.
    FSP_ERR_NOT_OPENThe channel is not opened.
    +
    +
    +
    Returns
    See Common Error Codes or lower level drivers for other popdmble return codes.
    + +
    +
    + +

    ◆ R_PDM_Read()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_PDM_Read (pdm_ctrl_t *const p_ctrl,
    void *const p_dest,
    uint32_t const bytes 
    )
    +
    +

    Reads data into provided buffer. Implements pdm_api_t::read.

    +

    This function resets the transfer if the transfer interface is used, or reads the length of data available in the FIFO then stores the remaining read buffer in the control block to be filled in the ISR.

    +

    Read() cannot be called if another Start() operation is in progress. Read can be called when the PDM is idle.

    +
    Return values
    + + + + + +
    FSP_SUCCESSRead initiated successfully.
    FSP_ERR_IN_USEPeripheral is in the wrong mode or not idle.
    FSP_ERR_ASSERTIONThe pointer to p_ctrl or p_dest was null, or bytes requested was 0.
    FSP_ERR_NOT_OPENThe channel is not opened.
    +
    +
    +
    Returns
    See Common Error Codes or functions called by this function for other popdmble return codes. This function calls: +
    + +
    +
    + +

    ◆ R_PDM_StatusGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_PDM_StatusGet (pdm_ctrl_t *const p_ctrl,
    pdm_status_t *const p_status 
    )
    +
    +

    Gets PDM status and stores it in provided pointer p_status. Implements pdm_api_t::statusGet.

    +
    Return values
    + + + + +
    FSP_SUCCESSInformation stored successfully.
    FSP_ERR_ASSERTIONThe p_ctrl or p_status parameter was null.
    FSP_ERR_NOT_OPENThe channel is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_PDM_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_PDM_Close (pdm_ctrl_t *const p_ctrl)
    +
    +

    Closes PDM. Implements pdm_api_t::close.

    +

    This function powers down the PDM and closes the lower level timer and transfer drivers if they are used.

    +
    Return values
    + + + + +
    FSP_SUCCESSDevice closed successfully.
    FSP_ERR_ASSERTIONThe pointer to p_ctrl was null.
    FSP_ERR_NOT_OPENThe channel is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_PDM_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_PDM_CallbackSet (pdm_ctrl_t *const p_ctrl,
    void(*)(pdm_callback_args_t *) p_callback,
    void const *const p_context,
    pdm_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback and has option of providing memory for callback structure. Implements pdm_api_t::callbackSet

    +
    Return values
    + + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___p_d_m.js b/group___p_d_m.js new file mode 100644 index 0000000..809268d --- /dev/null +++ b/group___p_d_m.js @@ -0,0 +1,94 @@ +var group___p_d_m = +[ + [ "pdm_instance_ctrl_t", "group___p_d_m.html#structpdm__instance__ctrl__t", null ], + [ "pdm_extended_cfg_t", "group___p_d_m.html#structpdm__extended__cfg__t", [ + [ "clock_div", "group___p_d_m.html#a73d4ca013e3c3d061bc3c0c693e12ffa", null ], + [ "sound_detection_enable", "group___p_d_m.html#a99ccd7247027a766a05b32d0784489d8", null ], + [ "short_circuit_detection_enable", "group___p_d_m.html#af817e528f5ff2e362fb4b550d32dc347", null ], + [ "over_voltage_lower_limit_detection_enable", "group___p_d_m.html#ac67dc74127d1809c2f5831150d313b83", null ], + [ "over_voltage_upper_limit_detection_enable", "group___p_d_m.html#aa316525186852ad3ceb518911c92fd48", null ], + [ "buffer_overwrite_detection_enable", "group___p_d_m.html#a9cbd930664bb8b7902a78d5dc07ff1b0", null ], + [ "moving_average_mode", "group___p_d_m.html#a8a21b70e69c6f770a87ea331311e1f04", null ], + [ "low_pass_filter_shift", "group___p_d_m.html#ada9786751a8901b1f014d50f825692ed", null ], + [ "compensation_filter_shift", "group___p_d_m.html#adf0d5ca09d9fc77bca06739dc943d9a2", null ], + [ "high_pass_filter_shift", "group___p_d_m.html#aaa73de553356b3e3fd5e8f7ecfb7ecc5", null ], + [ "sinc_filter_mode", "group___p_d_m.html#a41d1c3d3272bd0eb06a52b46643300e1", null ], + [ "sincrng", "group___p_d_m.html#a0c16174f6a3b0f80300db586bd8a8ed5", null ], + [ "sincdec", "group___p_d_m.html#a765c7cf7a108dbfedcca720f616d5a2e", null ], + [ "hpf_coefficient_s0", "group___p_d_m.html#a8ade0b0f232d6b93df9322c969d35588", null ], + [ "hpf_coefficient_k1", "group___p_d_m.html#ab3d0506ad03a69effde1841833806543", null ], + [ "hpf_coefficient_h", "group___p_d_m.html#a0487cbe0537406381bd2395e806e08ac", null ], + [ "compensation_filter_coefficient_h", "group___p_d_m.html#aecb431688082d1f39d7790e087fa4cdc", null ], + [ "lpf_coefficient_h0", "group___p_d_m.html#a8301f1ffd1bd3c06615b57cbab9f06cd", null ], + [ "lpf_coefficient_h1", "group___p_d_m.html#ab0fba91eb36c8a90821d4fd7793ba4b9", null ], + [ "filter_setting_time", "group___p_d_m.html#a483ee30b7fc9958318e5563515589463", null ], + [ "interupt_threshold", "group___p_d_m.html#a1363fd7ad65bd0ed1f0377a70680a5af", null ], + [ "sound_detection_lower_limit", "group___p_d_m.html#af5d7e83eac366ab370978913e0672924", null ], + [ "sound_detection_upper_limit", "group___p_d_m.html#a7975bdb24b891b930432ddd695312536", null ], + [ "short_circuit_count_h", "group___p_d_m.html#a74236150297943f2448c63624550ca8e", null ], + [ "short_circuit_count_l", "group___p_d_m.html#a173087f61b03fcc91f7f3dd2215ae0d5", null ], + [ "overvoltage_detection_lower_limit", "group___p_d_m.html#afd360fdbe979a72620ce845f137a4390", null ], + [ "overvoltage_detection_upper_limit", "group___p_d_m.html#ab9e18bf68240ab5a3ddf4cc59a1fafb2", null ] + ] ], + [ "pdm_clk_div_t", "group___p_d_m.html#ga2666e0193f3d484391172283f9532c71", [ + [ "PDM_CLOCK_DIV_2", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a54c68c8a370a4d7e1a1a1e8c1f88bbf7", null ], + [ "PDM_CLOCK_DIV_4", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71ac892e5ea2e5d37f3d7b04a8bf21a0fb1", null ], + [ "PDM_CLOCK_DIV_6", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71aa9152eb960ed85321d4deb69838ed45f", null ], + [ "PDM_CLOCK_DIV_8", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71acae0bbc7c1abd4d0f572c4c468f3c738", null ], + [ "PDM_CLOCK_DIV_10", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71addce245567626c37c31fc74845fbeb31", null ], + [ "PDM_CLOCK_DIV_12", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a045a957540a61e6d165357e660e3fe83", null ], + [ "PDM_CLOCK_DIV_14", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71af4822ad9efdcb34b3b627492c8d67791", null ], + [ "PDM_CLOCK_DIV_16", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71aaddbe76456afe39d63fea05b73a91b95", null ], + [ "PDM_CLOCK_DIV_18", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a2c5cb536d231f56d0ed006ca29cf0737", null ], + [ "PDM_CLOCK_DIV_20", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71acec983b4a1f0f8048e33198a113c34fd", null ], + [ "PDM_CLOCK_DIV_22", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a6bc7098eb41738d9d95b47732e83f5a1", null ], + [ "PDM_CLOCK_DIV_24", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a75233dc7e955467e9ec57d112b8a798f", null ], + [ "PDM_CLOCK_DIV_26", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71ac173036e4d0c9187705b36bc9ccbe115", null ], + [ "PDM_CLOCK_DIV_28", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a3ec822a9c16b6773b5fee81bf37514b7", null ], + [ "PDM_CLOCK_DIV_30", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a8bb7b28dcfb9f3f5860897e85becbeda", null ], + [ "PDM_CLOCK_DIV_32", "group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a10032f0bd87fc702ba0d0ef6db2f2371", null ] + ] ], + [ "pdm_moving_average_mode_t", "group___p_d_m.html#ga667e7ccab805f0976adc5015ecc35ecb", [ + [ "PDM_MOVING_AVERAGE_MODE_1_ORDER", "group___p_d_m.html#gga667e7ccab805f0976adc5015ecc35ecba6c440f66cd7e5625ca174c6d9c32bbd7", null ], + [ "PDM_MOVING_AVERAGE_MODE_2_ORDER", "group___p_d_m.html#gga667e7ccab805f0976adc5015ecc35ecba224f34fe0e01101dddc123bb84485c65", null ], + [ "PDM_MOVING_AVERAGE_MODE_4_ORDER", "group___p_d_m.html#gga667e7ccab805f0976adc5015ecc35ecba23061ce2fa64f6353fca3b383e431342", null ] + ] ], + [ "pdm_low_pass_filter_shift_t", "group___p_d_m.html#gacaad67afced89e9de93c82536d4dea0b", [ + [ "PDM_LPF_RIGHT_SHIFT_0", "group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0bab5b68c6092d9115647ae1cb92ca47118", null ], + [ "PDM_LPF_RIGHT_SHIFT_1", "group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0ba9898049fbff6af21ffbf9be9db8df58c", null ], + [ "PDM_LPF_RIGHT_SHIFT_2", "group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0bae87ed3ba2651f1e731c14d7a9628c598", null ], + [ "PDM_LPF_RIGHT_SHIFT_3", "group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0baaf0fe07eca85a9fe3d708e60c2178eea", null ] + ] ], + [ "pdm_compensation_filter_shift_t", "group___p_d_m.html#gad6b9c09e74442b86d88d1718f30844bc", [ + [ "PDM_COMPENSATION_FILTER_RIGHT_SHIFT_0", "group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca2d2217dde029d6b5477c1ebdb623459c", null ], + [ "PDM_COMPENSATION_FILTER_RIGHT_SHIFT_1", "group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca26667abb7f4f7364d38993e2ac0329b9", null ], + [ "PDM_COMPENSATION_FILTER_RIGHT_SHIFT_2", "group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca2487e27fddb6866e2b540f4bf270b83a", null ], + [ "PDM_COMPENSATION_FILTER_RIGHT_SHIFT_3", "group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca61655ec7848f1bfc1604dd0d266a0b3b", null ] + ] ], + [ "pdm_high_pass_filter_shift_t", "group___p_d_m.html#gaf2a94b0febed706bdad5526b11cb50c1", [ + [ "PDM_HPF_RIGHT_SHIFT_0", "group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a3387643d4f8b7d4407785a063f7209a6", null ], + [ "PDM_HPF_RIGHT_SHIFT_1", "group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a05b61524d21f269e1d6e80495d18a54d", null ], + [ "PDM_HPF_RIGHT_SHIFT_2", "group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a10de74577af853e342fb6fa74cf5d701", null ], + [ "PDM_HPF_RIGHT_SHIFT_3", "group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a35ce50e6bef8cda1c1be3e751d8dd683", null ] + ] ], + [ "pdm_sinc_filter_mode_t", "group___p_d_m.html#ga10725534d91789f15654a46786339569", [ + [ "PDM_SINC_FILTER_MODE_1", "group___p_d_m.html#gga10725534d91789f15654a46786339569af155835da1b4cb3df6766324e5b641c5", null ], + [ "PDM_SINC_FILTER_MODE_2", "group___p_d_m.html#gga10725534d91789f15654a46786339569a3dbb88baf2e552e517cc521917be33f4", null ], + [ "PDM_SINC_FILTER_MODE_3", "group___p_d_m.html#gga10725534d91789f15654a46786339569a2ff3cb58ab5a06c75199c82be7d36e39", null ], + [ "PDM_SINC_FILTER_MODE_4", "group___p_d_m.html#gga10725534d91789f15654a46786339569a4c023e6c0fd378a1efb57bf80297809c", null ] + ] ], + [ "pdm_interrupt_threshold_t", "group___p_d_m.html#gaa14fe788b2c7ab49898fb7030c7fbee8", [ + [ "PDM_INTERRUPT_THRESHOLD_1", "group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8a1b7068a93d97db9482f25f1c5bb89ab4", null ], + [ "PDM_INTERRUPT_THRESHOLD_2", "group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8a7ae437c0a00a82fb0d1155f2ae28e300", null ], + [ "PDM_INTERRUPT_THRESHOLD_4", "group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8a5042bd3cf5897af4199e6834fde1e341", null ], + [ "PDM_INTERRUPT_THRESHOLD_8", "group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8addbf54abea07e335a42267a1172e44bd", null ], + [ "PDM_INTERRUPT_THRESHOLD_16", "group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8addb15f7e3c60581f90c436ab9eb3055d", null ] + ] ], + [ "R_PDM_Open", "group___p_d_m.html#ga348be7b997dd1200eb549ff3e7f946a0", null ], + [ "R_PDM_Start", "group___p_d_m.html#ga745fa70668486ae2a7d16bd72eb93a54", null ], + [ "R_PDM_Stop", "group___p_d_m.html#ga35f2abc47410d9906e8ae5bac12d7a29", null ], + [ "R_PDM_Read", "group___p_d_m.html#ga62fc9390544cabfb4800f38125f748ab", null ], + [ "R_PDM_StatusGet", "group___p_d_m.html#gaf5696a4b5a4e9f33f89baefe9a7e1f94", null ], + [ "R_PDM_Close", "group___p_d_m.html#ga0f07fb3bab80af13bd260b7f7f54062e", null ], + [ "R_PDM_CallbackSet", "group___p_d_m.html#gaecf26c2d11db2e9700beb41164b8a1fb", null ] +]; \ No newline at end of file diff --git a/group___p_d_m___a_p_i.html b/group___p_d_m___a_p_i.html new file mode 100644 index 0000000..dc3e605 --- /dev/null +++ b/group___p_d_m___a_p_i.html @@ -0,0 +1,802 @@ + + + + + + + +RZV Flexible Software Package Documentation: PDM Interface + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    PDM Interface
    +
    +
    +

    Detailed Description

    +

    Interface for PDM audio communication.

    +

    +Summary

    +

    The pulse-density modulation(PDM) interface provides APIs and definitions for PDM audio communication.

    +

    +Known Implementations

    +

    PDM Interface (r_pdm)

    + + + + + + + + + + + + +

    +Data Structures

    struct  pdm_callback_args_t
     
    struct  pdm_status_t
     
    struct  pdm_cfg_t
     
    struct  pdm_api_t
     
    struct  pdm_instance_t
     
    + + + +

    +Typedefs

    typedef void pdm_ctrl_t
     
    + + + + + + + + + + + +

    +Enumerations

    enum  pdm_pcm_width_t
     
    enum  pdm_input_data_edge_t
     
    enum  pdm_event_t
     
    enum  pdm_error_t
     
    enum  pdm_state_t
     
    +

    Data Structure Documentation

    + +

    ◆ pdm_callback_args_t

    + +
    +
    + + + + +
    struct pdm_callback_args_t
    +
    +

    Callback function parameter data

    +
    + + + + + + + + + + +
    Data Fields
    +void const * +p_context +

    Placeholder for user data. Set in pdm_api_t::open function in pdm_cfg_t.

    +
    +pdm_event_t +event +The event can be used to identify what caused the callback (overflow or error).
    +pdm_error_t +error +The kind of error.
    + +
    +
    + +

    ◆ pdm_status_t

    + +
    +
    + + + + +
    struct pdm_status_t
    +
    +

    PDM status.

    +
    + + + + +
    Data Fields
    +pdm_state_t +state +Current PDM state.
    + +
    +
    + +

    ◆ pdm_cfg_t

    + +
    +
    + + + + +
    struct pdm_cfg_t
    +
    +

    User configuration structure, used in open function

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    uint32_t unit
     
    +pdm_pcm_width_t pcm_width
     Audio PCM data width.
     
    +pdm_input_data_edge_t pcm_edge
     Input data select.
     
    transfer_instance_t const * p_transfer_rx
     
    void(* p_callback )(pdm_callback_args_t *p_args)
     
    void const * p_context
     
    +void const * p_extend
     Extension parameter for hardware specific settings.
     
    +uint8_t dat_ipl
     Data reception interrupt priority.
     
    +uint8_t sdet_ipl
     Sound detection interrupt priority.
     
    +uint8_t err_ipl
     Idle/Error interrupt priority.
     
    +IRQn_Type dat_irq
     IRQ number of data reception interrupt.
     
    +IRQn_Type sdet_irq
     IRQ number of sound detection interrupt.
     
    +IRQn_Type err_irq
     IRQ number of error detection interrupt.
     
    +

    Field Documentation

    + +

    ◆ unit

    + +
    +
    + + + + +
    uint32_t pdm_cfg_t::unit
    +
    +

    Select a unit/channel corresponding to the unit/channel number of the hardware.

    + +
    +
    + +

    ◆ p_transfer_rx

    + +
    +
    + + + + +
    transfer_instance_t const* pdm_cfg_t::p_transfer_rx
    +
    +

    To use DMA for receiving link a Transfer instance here. Set to NULL if unused.

    + +
    +
    + +

    ◆ p_callback

    + +
    +
    + + + + +
    void(* pdm_cfg_t::p_callback) (pdm_callback_args_t *p_args)
    +
    +

    Callback provided when an PDM ISR occurs. Set to NULL for no CPU interrupt.

    + +
    +
    + +

    ◆ p_context

    + +
    +
    + + + + +
    void const* pdm_cfg_t::p_context
    +
    +

    Placeholder for user data. Passed to the user callback in pdm_callback_args_t.

    + +
    +
    + +
    +
    + +

    ◆ pdm_api_t

    + +
    +
    + + + + +
    struct pdm_api_t
    +
    +

    PDM functions implemented at the HAL layer will follow this API.

    +
    + + + + + + + + + + + + + + + +

    Data Fields

    fsp_err_t(* open )(pdm_ctrl_t *const p_ctrl, pdm_cfg_t const *const p_cfg)
     
    fsp_err_t(* start )(pdm_ctrl_t *const p_ctrl, void *const p_buffer, size_t const buffer_size, uint32_t const number_of_data_to_callback)
     
    fsp_err_t(* stop )(pdm_ctrl_t *const p_ctrl)
     
    fsp_err_t(* read )(pdm_ctrl_t *const p_ctrl, void *const p_dest, uint32_t const bytes)
     
    fsp_err_t(* statusGet )(pdm_ctrl_t *const p_ctrl, pdm_status_t *const p_status)
     
    fsp_err_t(* close )(pdm_ctrl_t *const p_ctrl)
     
    fsp_err_t(* callbackSet )(pdm_ctrl_t *const p_ctrl, void(*p_callback)(pdm_callback_args_t *), void const *const p_context, pdm_callback_args_t *const p_callback_memory)
     
    +

    Field Documentation

    + +

    ◆ open

    + +
    +
    + + + + +
    fsp_err_t(* pdm_api_t::open) (pdm_ctrl_t *const p_ctrl, pdm_cfg_t const *const p_cfg)
    +
    +

    Initial configuration.

    Implemented as
    +
    +
    Precondition
    Peripheral clocks and any required output pins should be configured prior to calling this function.
    +
    Note
    To reconfigure after calling this function, call pdm_api_t::close first.
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control block. Must be declared by user. Elements set here.
    [in]p_cfgPointer to configuration structure. All elements of this structure must be set by user.
    +
    +
    + +
    +
    + +

    ◆ start

    + +
    +
    + + + + +
    fsp_err_t(* pdm_api_t::start) (pdm_ctrl_t *const p_ctrl, void *const p_buffer, size_t const buffer_size, uint32_t const number_of_data_to_callback)
    +
    +

    Start communication.

    +
    Implemented as
    +
    +
    Parameters
    + + + + + +
    [in]p_ctrlControl block set in pdm_api_t::open call for this instance.
    [in]p_bufferPointer to the reception buffer
    [in]buffer_sizeSize of the buffer
    [in]number_of_data_to_callbackNumber of the data to call the callback function from dat_isr
    +
    +
    + +
    +
    + +

    ◆ stop

    + +
    +
    + + + + +
    fsp_err_t(* pdm_api_t::stop) (pdm_ctrl_t *const p_ctrl)
    +
    +

    Stop communication. Communication is stopped when callback is called with PDM_EVENT_IDLE.

    +
    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlControl block set in pdm_api_t::open call for this instance.
    +
    +
    + +
    +
    + +

    ◆ read

    + +
    +
    + + + + +
    fsp_err_t(* pdm_api_t::read) (pdm_ctrl_t *const p_ctrl, void *const p_dest, uint32_t const bytes)
    +
    +

    Read remaining PDM data. This function can be called during PDM_STATE_STOPPED.

    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlControl block set in pdm_api_t::open call for this instance.
    [in]p_destBuffer to store PCM samples. Must be 4 byte aligned.
    [in]bytesNumber of bytes in the buffer. Recommended requesting a multiple of 8 bytes. If not a multiple of 8, receive will stop at the multiple of 8 below requested bytes.
    +
    +
    + +
    +
    + +

    ◆ statusGet

    + +
    +
    + + + + +
    fsp_err_t(* pdm_api_t::statusGet) (pdm_ctrl_t *const p_ctrl, pdm_status_t *const p_status)
    +
    +

    Get current status and store it in provided pointer p_status.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlControl block set in pdm_api_t::open call for this instance.
    [out]p_statusCurrent status of the driver.
    +
    +
    + +
    +
    + +

    ◆ close

    + +
    +
    + + + + +
    fsp_err_t(* pdm_api_t::close) (pdm_ctrl_t *const p_ctrl)
    +
    +

    Allows driver to be reconfigured and may reduce power consumption.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlControl block set in pdm_api_t::open call for this instance.
    +
    +
    + +
    +
    + +

    ◆ callbackSet

    + +
    +
    + + + + +
    fsp_err_t(* pdm_api_t::callbackSet) (pdm_ctrl_t *const p_ctrl, void(*p_callback)(pdm_callback_args_t *), void const *const p_context, pdm_callback_args_t *const p_callback_memory)
    +
    +

    Specify callback function and optional context pointer and working memory pointer.

    Implemented as
    +
    +
    Parameters
    + + + + + +
    [in]p_ctrlPointer to the PDM control block.
    [in]p_callbackCallback function
    [in]p_contextPointer to send to callback function
    [in]p_callback_memoryPointer to volatile memory where callback structure can be allocated. Callback arguments allocated here are only valid during the callback.
    +
    +
    + +
    +
    + +
    +
    + +

    ◆ pdm_instance_t

    + +
    +
    + + + + +
    struct pdm_instance_t
    +
    +

    This structure encompasses everything that is needed to use an instance of this interface.

    +
    + + + + + + + + + + +
    Data Fields
    +pdm_ctrl_t * +p_ctrl +Pointer to the control structure for this instance.
    +pdm_cfg_t const * +p_cfg +Pointer to the configuration structure for this instance.
    +pdm_api_t const * +p_api +Pointer to the API structure for this instance.
    + +
    +
    +

    Typedef Documentation

    + +

    ◆ pdm_ctrl_t

    + +
    +
    + + + + +
    typedef void pdm_ctrl_t
    +
    +

    PDM control block. Allocate an instance specific control block to pass into the PDM API calls.

    Implemented as
    +
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ pdm_pcm_width_t

    + +
    +
    + + + + +
    enum pdm_pcm_width_t
    +
    +

    Audio PCM width

    + + + + + + + + + + +
    Enumerator
    PDM_PCM_WIDTH_20_BITS_0_18 

    Using 20-bit PCM Clips [18:0] bit of the buffer and 1-bit of sign.

    +
    PDM_PCM_WIDTH_20_BITS_1_18 

    Using 20-bit PCM Clips [18:1] bit of the buffer and 2-bits of sign.

    +
    PDM_PCM_WIDTH_20_BITS_2_18 

    Using 20-bit PCM Clips [18:2] bit of the buffer and 3-bits of sign.

    +
    PDM_PCM_WIDTH_20_BITS_3_18 

    Using 20-bit PCM Clips [18:3] bit of the buffer and 4-bits of sign.

    +
    PDM_PCM_WIDTH_16_BITS_4_18 

    Using 16-bit PCM Clips [18:4] bit of the buffer and 1-bit of sign.

    +
    PDM_PCM_WIDTH_16_BITS_3_17 

    Using 16-bit PCM Clips [17:3] bit of the buffer and 1-bit of sign.

    +
    PDM_PCM_WIDTH_16_BITS_2_16 

    Using 16-bit PCM Clips [16:2] bit of the buffer and 1-bit of sign.

    +
    PDM_PCM_WIDTH_16_BITS_1_15 

    Using 16-bit PCM Clips [15:1] bit of the buffer and 1-bit of sign.

    +
    PDM_PCM_WIDTH_16_BITS_0_14 

    Using 16-bit PCM Clips [14:0] bit of the buffer and 1-bit of sign.

    +
    + +
    +
    + +

    ◆ pdm_input_data_edge_t

    + +
    +
    + + + + +
    enum pdm_input_data_edge_t
    +
    +

    Input data select.

    + + + +
    Enumerator
    PDM_INPUT_DATA_EDGE_RISE 

    Rise-edge data of channel n.

    +
    PDM_INPUT_DATA_EDGE_FALL 

    Fall-edge data of channel n-1 (In case of n = 0, fall-edge data of channel 2 is selected.)

    +
    + +
    +
    + +

    ◆ pdm_event_t

    + +
    +
    + + + + +
    enum pdm_event_t
    +
    +

    Events that can trigger a callback function

    + + + + + +
    Enumerator
    PDM_EVENT_IDLE 

    IDLE.

    +
    PDM_EVENT_DATA 

    Data reception.

    +
    PDM_EVENT_SOUND_DETECTION 

    Sound detection.

    +
    PDM_EVENT_ERROR 

    Error.

    +
    + +
    +
    + +

    ◆ pdm_error_t

    + +
    +
    + + + + +
    enum pdm_error_t
    +
    +

    Error information included in a callback function

    + + + + + +
    Enumerator
    PDM_ERROR_SHORT_CIRCUIT 

    Short circuit detection.

    +
    PDM_ERROR_OVERVOLTAGE_LOWER 

    Overvoltage lower limit exceeded detection.

    +
    PDM_ERROR_OVERVOLTAGE_UPPER 

    Overvoltage upper limit exceeded detection.

    +
    PDM_ERROR_BUFFER_OVERWRITE 

    Buffer overwriting detection.

    +
    + +
    +
    + +

    ◆ pdm_state_t

    + +
    +
    + + + + +
    enum pdm_state_t
    +
    +

    Possible status values returned by pdm_api_t::statusGet.

    + + + +
    Enumerator
    PDM_STATE_IN_USE 

    PDM is in use.

    +
    PDM_STATE_STOPPED 

    PDM is stopped.

    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___p_d_m___a_p_i.js b/group___p_d_m___a_p_i.js new file mode 100644 index 0000000..522d4d2 --- /dev/null +++ b/group___p_d_m___a_p_i.js @@ -0,0 +1,72 @@ +var group___p_d_m___a_p_i = +[ + [ "pdm_callback_args_t", "group___p_d_m___a_p_i.html#structpdm__callback__args__t", [ + [ "p_context", "group___p_d_m___a_p_i.html#ac700c0b3e8b54aaee5e31e37d74c2f3f", null ], + [ "event", "group___p_d_m___a_p_i.html#a4baa164d236e7f2c62cd33ddb64f41ec", null ], + [ "error", "group___p_d_m___a_p_i.html#a98b4bbf5bb1bf1feccda12382e919bbc", null ] + ] ], + [ "pdm_status_t", "group___p_d_m___a_p_i.html#structpdm__status__t", [ + [ "state", "group___p_d_m___a_p_i.html#a2c6cf4b37d45d78d3c1f61721877a691", null ] + ] ], + [ "pdm_cfg_t", "group___p_d_m___a_p_i.html#structpdm__cfg__t", [ + [ "unit", "group___p_d_m___a_p_i.html#a336b1d202eafdf805edd3cc274ef89e3", null ], + [ "pcm_width", "group___p_d_m___a_p_i.html#a5ef7c8d0fc16829d08bf291a64b996b7", null ], + [ "pcm_edge", "group___p_d_m___a_p_i.html#ab612a5c37643d9c506a10a9967b887c8", null ], + [ "p_transfer_rx", "group___p_d_m___a_p_i.html#ad25f36a51d384189ebc129a471f88c4c", null ], + [ "p_callback", "group___p_d_m___a_p_i.html#aee193c08a4d958f6dc4905479594109f", null ], + [ "p_context", "group___p_d_m___a_p_i.html#aaff00f00bf416201caca2c61fb0b3d7b", null ], + [ "p_extend", "group___p_d_m___a_p_i.html#abff3295dd414d671e7c75d538d657cf7", null ], + [ "dat_ipl", "group___p_d_m___a_p_i.html#a298ee7b058b5cddae6a30ac90a093818", null ], + [ "sdet_ipl", "group___p_d_m___a_p_i.html#a346098539bddc9e3c5228e7360553a9e", null ], + [ "err_ipl", "group___p_d_m___a_p_i.html#a5f32ed867759c9d830f46a64a453d9c0", null ], + [ "dat_irq", "group___p_d_m___a_p_i.html#a5a22105924178bfeb3d5d4e21e6cb5a4", null ], + [ "sdet_irq", "group___p_d_m___a_p_i.html#ae4b909dedca5d5099654a1342ae76d20", null ], + [ "err_irq", "group___p_d_m___a_p_i.html#a2f4774f5b5da972990370a2efbeae9f3", null ] + ] ], + [ "pdm_api_t", "group___p_d_m___a_p_i.html#structpdm__api__t", [ + [ "open", "group___p_d_m___a_p_i.html#a9144eb5d334c37cba16c54a931ff0b39", null ], + [ "start", "group___p_d_m___a_p_i.html#abf43fd87ed8c5bdaccb5474009fa6006", null ], + [ "stop", "group___p_d_m___a_p_i.html#ad8342d4be5d02082a860b08303d0478c", null ], + [ "read", "group___p_d_m___a_p_i.html#ac5a449eb8492fef49421d8e3babf205f", null ], + [ "statusGet", "group___p_d_m___a_p_i.html#a2b1840e35134d539722e741e0b00042c", null ], + [ "close", "group___p_d_m___a_p_i.html#a37bb473e04c42ef4dc01e03f6c52ce75", null ], + [ "callbackSet", "group___p_d_m___a_p_i.html#a3a08bbd100782b9a8771628cc2637edb", null ] + ] ], + [ "pdm_instance_t", "group___p_d_m___a_p_i.html#structpdm__instance__t", [ + [ "p_ctrl", "group___p_d_m___a_p_i.html#a3c9a2ef616d009192da8185b064ba3ab", null ], + [ "p_cfg", "group___p_d_m___a_p_i.html#aa7507f32d16aa2574b645cd8ac720e30", null ], + [ "p_api", "group___p_d_m___a_p_i.html#a82eac8296ce13d4a73f461bd10bf9242", null ] + ] ], + [ "pdm_ctrl_t", "group___p_d_m___a_p_i.html#ga16be2346ab1fd4d3929228a28914430c", null ], + [ "pdm_pcm_width_t", "group___p_d_m___a_p_i.html#gac80768e70548497f4a739b84d0af572f", [ + [ "PDM_PCM_WIDTH_20_BITS_0_18", "group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa66dcfd2b5e3f5c788bf30d09e33ecea9", null ], + [ "PDM_PCM_WIDTH_20_BITS_1_18", "group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa5c1961f77255f5cc1e9b10bb2eb7a610", null ], + [ "PDM_PCM_WIDTH_20_BITS_2_18", "group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa422ec8ffc432c508a18febbd57f857c9", null ], + [ "PDM_PCM_WIDTH_20_BITS_3_18", "group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fabd56bdeaef4f1e776b865066e1dbe6b1", null ], + [ "PDM_PCM_WIDTH_16_BITS_4_18", "group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fae0af427ccb4ce9337eded095b609a2b6", null ], + [ "PDM_PCM_WIDTH_16_BITS_3_17", "group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fac2744c4aaff0de1651b0c61c39c2291e", null ], + [ "PDM_PCM_WIDTH_16_BITS_2_16", "group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa8778dcb9208e5416f680c6fe1f1f6279", null ], + [ "PDM_PCM_WIDTH_16_BITS_1_15", "group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa324772bd777c1f50889a17b70f3444a8", null ], + [ "PDM_PCM_WIDTH_16_BITS_0_14", "group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa3adeaaa39404c582601c40179f1e6629", null ] + ] ], + [ "pdm_input_data_edge_t", "group___p_d_m___a_p_i.html#ga471ab0afd7d0f709e50ece23087b1759", [ + [ "PDM_INPUT_DATA_EDGE_RISE", "group___p_d_m___a_p_i.html#gga471ab0afd7d0f709e50ece23087b1759ab7bc06eef0965cb223d7da74d5164afb", null ], + [ "PDM_INPUT_DATA_EDGE_FALL", "group___p_d_m___a_p_i.html#gga471ab0afd7d0f709e50ece23087b1759ad4f961a1e93d174697084cd288c0e57f", null ] + ] ], + [ "pdm_event_t", "group___p_d_m___a_p_i.html#gafb514c195258d2f14c8e18e3778ad946", [ + [ "PDM_EVENT_IDLE", "group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946aa4e2f360c85f3e28c57bfa71b932a57d", null ], + [ "PDM_EVENT_DATA", "group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946ac3719cfdf7fc1e91172888da1ab6f511", null ], + [ "PDM_EVENT_SOUND_DETECTION", "group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946a3cf03b37b166de31e8e8761161bf7e44", null ], + [ "PDM_EVENT_ERROR", "group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946a6ab9b149f9673d692a581c5211f13134", null ] + ] ], + [ "pdm_error_t", "group___p_d_m___a_p_i.html#gaf682776db13b51a982b047a8eb5fef2d", [ + [ "PDM_ERROR_SHORT_CIRCUIT", "group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2da0507dc19cc300d66e07d4b452a44c9a9", null ], + [ "PDM_ERROR_OVERVOLTAGE_LOWER", "group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2da70bb4c740eec0bdd92cf20e63e540ba7", null ], + [ "PDM_ERROR_OVERVOLTAGE_UPPER", "group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2dab00a11e564c13def3c78e520e09573ab", null ], + [ "PDM_ERROR_BUFFER_OVERWRITE", "group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2da61c56fc9d6d836096a7c7e4b10c0ee17", null ] + ] ], + [ "pdm_state_t", "group___p_d_m___a_p_i.html#ga09df76d543b0cc6b39c5fed3bf1f4485", [ + [ "PDM_STATE_IN_USE", "group___p_d_m___a_p_i.html#gga09df76d543b0cc6b39c5fed3bf1f4485a886d05c63fd087836c605e609908161c", null ], + [ "PDM_STATE_STOPPED", "group___p_d_m___a_p_i.html#gga09df76d543b0cc6b39c5fed3bf1f4485a571969657d1a5ca91391807510eed100", null ] + ] ] +]; \ No newline at end of file diff --git a/group___p_o_e_g.html b/group___p_o_e_g.html index 609109f..0bc720d 100644 --- a/group___p_o_e_g.html +++ b/group___p_o_e_g.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Port Output Enable for GPT (r_poeg) +RZV Flexible Software Package Documentation: Port Output Enable for GPT (r_poeg) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    @@ -145,17 +213,17 @@

    Default (BSP) If selected code for parameter checking is included in the build.
    -

    Configurations for Driver > Timers > Port Output Enable for GPT on r_poeg

    -This module can be added to the Stacks tab via New Stack > Driver > Timers > Port Output Enable for GPT on r_poeg.
    +

    Configurations for Timers > Port Output Enable for GPT (r_poeg)

    +This module can be added to the Stacks tab via New Stack > Timers > Port Output Enable for GPT (r_poeg).

    - + - + + + +
    ConfigurationOptionsDefaultDescription
    General > NameName must be a valid C symbolg_poeg0 Module name.
    General > ChannelMust be a valid POEG channel0 Specify the hardware channel.
    General > ChannelChannel number must be a positive integer0 Specify the hardware channel.
    General > TriggerMPU Specific OptionsSelect the trigger sources that will enable POEG. Software disable is always supported. This configuration can only be set once after reset. It cannot be modified after the initial setting.
    General > TriggerMCU Specific OptionsSelect the trigger sources that will enable POEG. Software disable is always supported. This configuration can only be set once after reset. It cannot be modified after the initial setting.
    Input > GTETRG Polarity
    • @@ -169,18 +237,20 @@

      Configurations for Driver > Timers > Port Output Enable for GPT on r_p
    • Disabled
    • -P0CLK / 1
    • +Clock Source / 1

    • -P0CLK / 8
    • +Clock Source / 8
    • -P0CLK / 32
    • +Clock Source / 32
    • -P0CLK / 128
    • +Clock Source / 128
    -
    Disabled Configure the noise filter for the GTETRG pin. Only applicable if GTETRG pin is selected under Trigger.
    Clock Source / 1 Configure the noise filter for the GTETRG pin. Only applicable if GTETRG pin is selected under Trigger.
    Interrupts > CallbackName must be a valid C symbolNULL A user callback function can be specified here. If this callback function is provided, it will be called from the interrupt service routine (ISR) when GPT output pins are disabled by POEG.
    Interrupts > POEG Interrupt EnableMCU Specific OptionsEnable the POEG interrupt.
    Interrupts > Interrupt PriorityValue must be an integer between 0 and 2554 Select the POEG interrupt priority.

    @@ -444,7 +514,7 @@

      - +

    diff --git a/group___p_o_e_g___a_p_i.html b/group___p_o_e_g___a_p_i.html index 3b52688..13d9fc4 100644 --- a/group___p_o_e_g___a_p_i.html +++ b/group___p_o_e_g___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: POEG Interface +RZV Flexible Software Package Documentation: POEG Interface @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + + + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    diff --git a/group___r_e_n_e_s_a_s___a_n_a_l_o_g___m_o_d_u_l_e_s.html b/group___r_e_n_e_s_a_s___a_n_a_l_o_g___m_o_d_u_l_e_s.html new file mode 100644 index 0000000..293e15a --- /dev/null +++ b/group___r_e_n_e_s_a_s___a_n_a_l_o_g___m_o_d_u_l_e_s.html @@ -0,0 +1,192 @@ + + + + + + + +RZV Flexible Software Package Documentation: Analog + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +

    Detailed Description

    +

    Analog Modules.

    + + + + + + + + + + + +

    +Modules

     Analog to Digital Converter (r_adc_c)
     Driver for the ADC peripheral on RZ MPUs. This module implements the ADC Interface.
     
     Analog to Digital Converter (r_adc_e)
     Driver for the and ADC12 peripherals on RZ microprocessor. This module implements the ADC Interface.
     
     Temperature Sensor Unit (r_tsu_b)
     Driver for the TSU peripheral on RZ microprocessor. This module implements the ADC Interface.
     
    +
    +
    + + + + + diff --git a/group___r_e_n_e_s_a_s___a_n_a_l_o_g___m_o_d_u_l_e_s.js b/group___r_e_n_e_s_a_s___a_n_a_l_o_g___m_o_d_u_l_e_s.js new file mode 100644 index 0000000..994db4b --- /dev/null +++ b/group___r_e_n_e_s_a_s___a_n_a_l_o_g___m_o_d_u_l_e_s.js @@ -0,0 +1,6 @@ +var group___r_e_n_e_s_a_s___a_n_a_l_o_g___m_o_d_u_l_e_s = +[ + [ "Analog to Digital Converter (r_adc_c)", "group___a_d_c___c.html", "group___a_d_c___c" ], + [ "Analog to Digital Converter (r_adc_e)", "group___a_d_c___e.html", "group___a_d_c___e" ], + [ "Temperature Sensor Unit (r_tsu_b)", "group___t_s_u___b.html", "group___t_s_u___b" ] +]; \ No newline at end of file diff --git a/group___r_e_n_e_s_a_s___c_o_m_m_o_n.html b/group___r_e_n_e_s_a_s___c_o_m_m_o_n.html index d82742c..d921fdc 100644 --- a/group___r_e_n_e_s_a_s___c_o_m_m_o_n.html +++ b/group___r_e_n_e_s_a_s___c_o_m_m_o_n.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: BSP +RZV Flexible Software Package Documentation: BSP @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Modules | @@ -106,7 +174,7 @@  Common Error Codes    MPU Board Support Package - The BSP is responsible for getting the MPU from reset to the user's application. Before reaching the user's application, the BSP sets up the stacks, heap, interrupts and C runtime environment.
    + The BSP is responsible for getting the MCU from reset to the user's application. Before reaching the user's application, the BSP sets up the stacks, heap, clocks, interrupts, C runtime environment, and stack monitor.
       BSP I/O access  This module provides basic read/write access to port pins.
    @@ -157,7 +225,7 @@

    -struct fsp_pack_version_t +struct fsp_pack_version_t __unnamed__ @@ -306,7 +374,7 @@

      - +

    diff --git a/group___r_e_n_e_s_a_s___c_o_n_n_e_c_t_i_v_i_t_y___m_o_d_u_l_e_s.html b/group___r_e_n_e_s_a_s___c_o_n_n_e_c_t_i_v_i_t_y___m_o_d_u_l_e_s.html new file mode 100644 index 0000000..487bd7f --- /dev/null +++ b/group___r_e_n_e_s_a_s___c_o_n_n_e_c_t_i_v_i_t_y___m_o_d_u_l_e_s.html @@ -0,0 +1,240 @@ + + + + + + + +RZV Flexible Software Package Documentation: Connectivity + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Connectivity
    +
    +
    +

    Detailed Description

    +

    Connectivity Modules.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Modules

     Controller Area Network - Flexible Data (r_canfd)
     Driver for the CANFD peripheral on RZ MPUs. This module implements the CAN Interface.
     
     I3C (r_i3c_b)
     Driver for the I3C peripheral on RZ MPU. This module implements the I3C Interface.
     
     Message Handling Unit for non secure channels (r_mhu_b_ns)
     Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels).
     
     Message Handling Unit for non-secure software interrupt receive (r_mhu_b_ns_swint_get)
     Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Get).
     
     Message Handling Unit for non-secure software interrupt generation (r_mhu_b_ns_swint_set)
     Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Set).
     
     Message Handling Unit for secure channels (r_mhu_b_s)
     Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels).
     
     Message Handling Unit for non secure channels (r_mhu_ns)
     Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels).
     
     Message Handling Unit for non-secure software interrupt receive (r_mhu_ns_swint_get)
     Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Get).
     
     Message Handling Unit for non-secure software interrupt generation (r_mhu_ns_swint_set)
     Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Set).
     
     Message Handling Unit for secure channels (r_mhu_s)
     Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels).
     
     PDM Interface (r_pdm)
     Driver for the PDM peripheral on RZ MPUs. This module implements the PDM Interface.
     
     I2C Master on RIIC (r_riic_master)
     Driver for the RIIC peripheral on RZ MPUs. This module implements the I2C Master Interface.
     
     I2C Slave (r_riic_slave)
     Driver for the RIIC peripheral on RZ MPUs. This module implements the I2C Slave Interface.
     
     Renesas Serial Peripheral Interface (r_rspi)
     Driver for the RSPI peripheral on RZ MPUs. This module implements the SPI Interface.
     
     I2C Master (r_sci_b_i2c)
     Driver for the SCI_B peripheral on RZ MPUs. This module implements the I2C Master Interface.
     
     UART (r_sci_b_uart)
     Driver for the SCI peripheral on RZ MPUs. This module implements the UART Interface.
     
     Serial Communications Interface (SCIF) UART (r_scif_uart)
     Driver for the SCIF peripheral on RZ MPUs. This module implements the UART Interface.
     
     SPI (r_spi_b)
     Driver for the SPI peripheral on RZ MPUs. This module implements the SPI Interface.
     
     I2C Communication Device (rm_comms_i2c)
     Middleware to implement the I2C communications interface. This module implements the Communicatons Middleware Interface.
     
    +
    +
    + + + + + diff --git a/group___r_e_n_e_s_a_s___c_o_n_n_e_c_t_i_v_i_t_y___m_o_d_u_l_e_s.js b/group___r_e_n_e_s_a_s___c_o_n_n_e_c_t_i_v_i_t_y___m_o_d_u_l_e_s.js new file mode 100644 index 0000000..681259c --- /dev/null +++ b/group___r_e_n_e_s_a_s___c_o_n_n_e_c_t_i_v_i_t_y___m_o_d_u_l_e_s.js @@ -0,0 +1,22 @@ +var group___r_e_n_e_s_a_s___c_o_n_n_e_c_t_i_v_i_t_y___m_o_d_u_l_e_s = +[ + [ "Controller Area Network - Flexible Data (r_canfd)", "group___c_a_n_f_d.html", "group___c_a_n_f_d" ], + [ "I3C (r_i3c_b)", "group___i3_c___b.html", "group___i3_c___b" ], + [ "Message Handling Unit for non secure channels (r_mhu_b_ns)", "group___m_h_u___b___n_s.html", "group___m_h_u___b___n_s" ], + [ "Message Handling Unit for non-secure software interrupt receive (r_mhu_b_ns_swint_get)", "group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html", "group___m_h_u___b___n_s___s_w_i_n_t___g_e_t" ], + [ "Message Handling Unit for non-secure software interrupt generation (r_mhu_b_ns_swint_set)", "group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html", "group___m_h_u___b___n_s___s_w_i_n_t___s_e_t" ], + [ "Message Handling Unit for secure channels (r_mhu_b_s)", "group___m_h_u___b___s.html", "group___m_h_u___b___s" ], + [ "Message Handling Unit for non secure channels (r_mhu_ns)", "group___m_h_u___n_s.html", "group___m_h_u___n_s" ], + [ "Message Handling Unit for non-secure software interrupt receive (r_mhu_ns_swint_get)", "group___m_h_u___n_s___s_w_i_n_t___g_e_t.html", "group___m_h_u___n_s___s_w_i_n_t___g_e_t" ], + [ "Message Handling Unit for non-secure software interrupt generation (r_mhu_ns_swint_set)", "group___m_h_u___n_s___s_w_i_n_t___s_e_t.html", "group___m_h_u___n_s___s_w_i_n_t___s_e_t" ], + [ "Message Handling Unit for secure channels (r_mhu_s)", "group___m_h_u___s.html", "group___m_h_u___s" ], + [ "PDM Interface (r_pdm)", "group___p_d_m.html", "group___p_d_m" ], + [ "I2C Master on RIIC (r_riic_master)", "group___r_i_i_c___m_a_s_t_e_r.html", "group___r_i_i_c___m_a_s_t_e_r" ], + [ "I2C Slave (r_riic_slave)", "group___r_i_i_c___s_l_a_v_e.html", "group___r_i_i_c___s_l_a_v_e" ], + [ "Renesas Serial Peripheral Interface (r_rspi)", "group___r_s_p_i.html", "group___r_s_p_i" ], + [ "I2C Master (r_sci_b_i2c)", "group___s_c_i___b___i2_c.html", "group___s_c_i___b___i2_c" ], + [ "UART (r_sci_b_uart)", "group___s_c_i___b___u_a_r_t.html", "group___s_c_i___b___u_a_r_t" ], + [ "Serial Communications Interface (SCIF) UART (r_scif_uart)", "group___s_c_i_f___u_a_r_t.html", "group___s_c_i_f___u_a_r_t" ], + [ "SPI (r_spi_b)", "group___s_p_i___b.html", "group___s_p_i___b" ], + [ "I2C Communication Device (rm_comms_i2c)", "group___r_m___c_o_m_m_s___i2_c.html", "group___r_m___c_o_m_m_s___i2_c" ] +]; \ No newline at end of file diff --git a/group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html b/group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html index 9889e54..0ee28f1 100644 --- a/group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html +++ b/group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Common Error Codes +RZV Flexible Software Package Documentation: Common Error Codes @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Data Structures | @@ -147,7 +215,7 @@

    Version id

    -
    struct fsp_version_t +struct fsp_version_t __unnamed__ @@ -348,6 +416,8 @@

    FSP_ERR_BUFFER_EMPTY 

    No data available in buffer.

    +FSP_ERR_INVALID_DATA 

    Accuracy of data is not guaranteed.

    + FSP_ERR_INTERNAL 

    Internal error.

    FSP_ERR_WAIT_ABORTED 

    Wait aborted.

    @@ -512,6 +582,8 @@

    FSP_ERR_ETHER_ERROR_PHY_COMMUNICATION 

    ETHERC/EDMAC has an error in the phy communication.

    +FSP_ERR_ETHER_RECEIVE_BUFFER_ACTIVE 

    Receive buffer is active.

    + FSP_ERR_ETHER_PHY_ERROR_LINK 

    PHY is not link up.

    FSP_ERR_ETHER_PHY_NOT_READY 

    PHY has an error in the Auto-negotiation.

    @@ -526,6 +598,36 @@

    FSP_ERR_CTSU_INCOMPLETE_TUNING 

    Incomplete initial offset tuning.

    +FSP_ERR_CTSU_DIAG_NOT_YET 

    Diagnosis of data collected no yet.

    + +FSP_ERR_CTSU_DIAG_LDO_OVER_VOLTAGE 

    Diagnosis of LDO over voltage failed.

    + +FSP_ERR_CTSU_DIAG_CCO_HIGH 

    Diagnosis of CCO into 19.2uA failed.

    + +FSP_ERR_CTSU_DIAG_CCO_LOW 

    Diagnosis of CCO into 2.4uA failed.

    + +FSP_ERR_CTSU_DIAG_SSCG 

    Diagnosis of SSCG frequency failed.

    + +FSP_ERR_CTSU_DIAG_DAC 

    Diagnosis of non-touch count value failed.

    + +FSP_ERR_CTSU_DIAG_OUTPUT_VOLTAGE 

    Diagnosis of LDO output voltage failed.

    + +FSP_ERR_CTSU_DIAG_OVER_VOLTAGE 

    Diagnosis of over voltage detection circuit failed.

    + +FSP_ERR_CTSU_DIAG_OVER_CURRENT 

    Diagnosis of over current detection circuit failed.

    + +FSP_ERR_CTSU_DIAG_LOAD_RESISTANCE 

    Diagnosis of LDO internal resistance value failed.

    + +FSP_ERR_CTSU_DIAG_CURRENT_SOURCE 

    Diagnosis of Current source value failed.

    + +FSP_ERR_CTSU_DIAG_SENSCLK_GAIN 

    Diagnosis of SENSCLK frequency gain failed.

    + +FSP_ERR_CTSU_DIAG_SUCLK_GAIN 

    Diagnosis of SUCLK frequency gain failed.

    + +FSP_ERR_CTSU_DIAG_CLOCK_RECOVERY 

    Diagnosis of SUCLK clock recovery function failed.

    + +FSP_ERR_CTSU_DIAG_CFC_GAIN 

    Diagnosis of CFC oscillator gain failed.

    + FSP_ERR_CARD_INIT_FAILED 

    SD card or eMMC device failed to initialize.

    FSP_ERR_CARD_NOT_INSERTED 

    SD card not installed.

    @@ -558,6 +660,8 @@

    FSP_ERR_CAN_MESSAGE_LOST 

    Receive message has been overwritten or overrun.

    +FSP_ERR_CAN_TRANSMIT_FIFO_FULL 

    Transmit FIFO is full.

    + FSP_ERR_WIFI_CONFIG_FAILED 

    WiFi module Configuration failed.

    FSP_ERR_WIFI_INIT_FAILED 

    WiFi module initialization failed.

    @@ -570,6 +674,8 @@

    FSP_ERR_WIFI_SCAN_COMPLETE 

    Wifi scan has completed.

    +FSP_ERR_WIFI_AP_NOT_CONNECTED 

    WiFi module is not connected to access point.

    + FSP_ERR_CELLULAR_CONFIG_FAILED 

    Cellular module Configuration failed.

    FSP_ERR_CELLULAR_INIT_FAILED 

    Cellular module initialization failed.

    @@ -638,6 +744,12 @@

    FSP_ERR_CRYPTO_SCE_KEY_SET_FAIL 

    Failure to Init Cipher.

    +FSP_ERR_CRYPTO_SCE_AUTHENTICATION 

    Authentication failed.

    + +FSP_ERR_CRYPTO_SCE_PARAMETER 

    Input date is illegal.

    + +FSP_ERR_CRYPTO_SCE_PROHIBIT_FUNCTION 

    An invalid function call occurred.

    + FSP_ERR_CRYPTO_COMMON_NOT_OPENED 

    Crypto Framework Common is not opened.

    FSP_ERR_CRYPTO_HAL_ERROR 

    Cryoto HAL module returned an error.

    @@ -671,7 +783,7 @@

      - +

    diff --git a/group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.js b/group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.js index 367bae3..ac05677 100644 --- a/group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.js +++ b/group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.js @@ -49,6 +49,7 @@ var group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s = [ "FSP_ERR_NOT_FOUND", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5b3fa149fddaa9617a7d3cacf67810a4", null ], [ "FSP_ERR_NO_CALLBACK_MEMORY", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0b11740f5efdcaa58bd9606a1e29fa53", null ], [ "FSP_ERR_BUFFER_EMPTY", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a36f32f07063bd03749f0410256fa95db", null ], + [ "FSP_ERR_INVALID_DATA", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2b8bd9b82940ba39e5d6c8351a8e6528", null ], [ "FSP_ERR_INTERNAL", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6d11b644cafb53d7d39f701de5ca026d", null ], [ "FSP_ERR_WAIT_ABORTED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa5cbda3787ddf5092d0fdf14b8e4fe57", null ], [ "FSP_ERR_FRAMING", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8f76d058261cd655519cbc81f1586bc4", null ], @@ -131,6 +132,7 @@ var group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s = [ "FSP_ERR_ETHER_ERROR_TRANSMIT_BUFFER_FULL", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7ff828228ccab4f53b2438ddd1c7e11a", null ], [ "FSP_ERR_ETHER_ERROR_FILTERING", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8affc315c6031ade6b6642d2649281f2e0", null ], [ "FSP_ERR_ETHER_ERROR_PHY_COMMUNICATION", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6240bb179602fe6d111b3cb464ca4612", null ], + [ "FSP_ERR_ETHER_RECEIVE_BUFFER_ACTIVE", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a092517cd93432a76ae16c3cc3ff4bc29", null ], [ "FSP_ERR_ETHER_PHY_ERROR_LINK", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a629a12ea100187a63ddb2f8ee9a5c823", null ], [ "FSP_ERR_ETHER_PHY_NOT_READY", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aad936f5a80f8c3fe3faa8d6220189098", null ], [ "FSP_ERR_QUEUE_FULL", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afe0f3347d7aed817201dac3bbad6fc75", null ], @@ -138,6 +140,21 @@ var group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s = [ "FSP_ERR_CTSU_SCANNING", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abf96e28ad6ffcefb3753b3236b7d8f74", null ], [ "FSP_ERR_CTSU_NOT_GET_DATA", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7cfb255a9b41bb7d578b892b94ec362c", null ], [ "FSP_ERR_CTSU_INCOMPLETE_TUNING", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a19beacb3a5e19f362431d08a1fcaaa5d", null ], + [ "FSP_ERR_CTSU_DIAG_NOT_YET", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac3355a82b4fc612941c6d2b8f4f52f90", null ], + [ "FSP_ERR_CTSU_DIAG_LDO_OVER_VOLTAGE", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aab6cc8f1186d7e953d0a25806106b01c", null ], + [ "FSP_ERR_CTSU_DIAG_CCO_HIGH", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7ee7b868f3bfce9f09e5a45c47cce101", null ], + [ "FSP_ERR_CTSU_DIAG_CCO_LOW", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a53bf2288d2174c426d5626885a9cf3a5", null ], + [ "FSP_ERR_CTSU_DIAG_SSCG", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a55211caeb32fda85000d88eab4c4766d", null ], + [ "FSP_ERR_CTSU_DIAG_DAC", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a61d141714727223ba19d6303429ad330", null ], + [ "FSP_ERR_CTSU_DIAG_OUTPUT_VOLTAGE", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5c0d0b6394458760c2cdc05cdb237136", null ], + [ "FSP_ERR_CTSU_DIAG_OVER_VOLTAGE", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa895abb7c999f8a17f0b5c634abe6ae7", null ], + [ "FSP_ERR_CTSU_DIAG_OVER_CURRENT", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad8f0d03dcdebc03a19c8e4112c30b46b", null ], + [ "FSP_ERR_CTSU_DIAG_LOAD_RESISTANCE", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a17e6e9756acd02df02d6975161aa9998", null ], + [ "FSP_ERR_CTSU_DIAG_CURRENT_SOURCE", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acf83225e14023205bc71ddddf1ef7a43", null ], + [ "FSP_ERR_CTSU_DIAG_SENSCLK_GAIN", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a886c9fb19f0d44f37da9259c09098e94", null ], + [ "FSP_ERR_CTSU_DIAG_SUCLK_GAIN", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab3731e454e03487e43cfcad91be7643f", null ], + [ "FSP_ERR_CTSU_DIAG_CLOCK_RECOVERY", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab33453ae13bd3c15751b3962f5188364", null ], + [ "FSP_ERR_CTSU_DIAG_CFC_GAIN", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afa6bc60b26c1b7b906b9854b4db5060d", null ], [ "FSP_ERR_CARD_INIT_FAILED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2ed5fe9a48f6c1a6e50b36b17158fc62", null ], [ "FSP_ERR_CARD_NOT_INSERTED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3224cc4e49b921121dd1c25e4b680d58", null ], [ "FSP_ERR_DEVICE_BUSY", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acbadb8600c31a85deacc8092d6e4b4d7", null ], @@ -154,12 +171,14 @@ var group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s = [ "FSP_ERR_CAN_RECEIVE_MAILBOX", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a52e6bb08e856dae157893d1b6097f958", null ], [ "FSP_ERR_CAN_TRANSMIT_MAILBOX", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a998bd409cde19062422795ab5ea13c77", null ], [ "FSP_ERR_CAN_MESSAGE_LOST", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a094ba75816525a5f0d620bdce195cc9e", null ], + [ "FSP_ERR_CAN_TRANSMIT_FIFO_FULL", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a18b27ed6db9097ea399215224ad62d82", null ], [ "FSP_ERR_WIFI_CONFIG_FAILED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad59d257fc10762fe60683c45a3f1b90a", null ], [ "FSP_ERR_WIFI_INIT_FAILED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae1e9fb09fdb6841cf4379097812e6156", null ], [ "FSP_ERR_WIFI_TRANSMIT_FAILED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8adeb727c2591c971117d47d29edec70e6", null ], [ "FSP_ERR_WIFI_INVALID_MODE", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6955ee4b9476caa9941a4a30608b2d9f", null ], [ "FSP_ERR_WIFI_FAILED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5711df02b0d0b9e2027bef9de27948a4", null ], [ "FSP_ERR_WIFI_SCAN_COMPLETE", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0dfea4f4a09d2cb04031624c5c3bd753", null ], + [ "FSP_ERR_WIFI_AP_NOT_CONNECTED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aec3eea83b4e2e3c9ec447d4612d31e59", null ], [ "FSP_ERR_CELLULAR_CONFIG_FAILED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a61cdc8708028a97a52556794d4c2e050", null ], [ "FSP_ERR_CELLULAR_INIT_FAILED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a4a5158a88f2ea654f62435a7b5ae72d2", null ], [ "FSP_ERR_CELLULAR_TRANSMIT_FAILED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a1350c1ec5c0dc121c93983b2367a61ab", null ], @@ -194,6 +213,9 @@ var group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s = [ "FSP_ERR_CRYPTO_INSTALL_KEY_FAILED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad7a753235aa6ea399b96239f2f0f8efb", null ], [ "FSP_ERR_CRYPTO_AUTHENTICATION_FAILED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af70132beb6b5b4cdaeaed4c70bd553c4", null ], [ "FSP_ERR_CRYPTO_SCE_KEY_SET_FAIL", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af1bec53bb97a928b39bb4e9d5f66eb04", null ], + [ "FSP_ERR_CRYPTO_SCE_AUTHENTICATION", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7c0bcb38871c57b0cbaf0a7f94b4a3b6", null ], + [ "FSP_ERR_CRYPTO_SCE_PARAMETER", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a407432ab3c4ab46df3dbf12e27bd3ca8", null ], + [ "FSP_ERR_CRYPTO_SCE_PROHIBIT_FUNCTION", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a03165ce74cc447e345998cc45810bb8f", null ], [ "FSP_ERR_CRYPTO_COMMON_NOT_OPENED", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acfbdf09c1ae8d64e7eb388094bf54b9b", null ], [ "FSP_ERR_CRYPTO_HAL_ERROR", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac42e16e1358505398e631062a1afbd45", null ], [ "FSP_ERR_CRYPTO_KEY_BUF_NOT_ENOUGH", "group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a378b2876a363d8c3a3c7ccc15c0221f9", null ], diff --git a/group___r_e_n_e_s_a_s___i_n_p_u_t___m_o_d_u_l_e_s.html b/group___r_e_n_e_s_a_s___i_n_p_u_t___m_o_d_u_l_e_s.html new file mode 100644 index 0000000..17fb4fe --- /dev/null +++ b/group___r_e_n_e_s_a_s___i_n_p_u_t___m_o_d_u_l_e_s.html @@ -0,0 +1,192 @@ + + + + + + + +RZV Flexible Software Package Documentation: Input + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    +

    Detailed Description

    +

    Input Modules.

    + + + + + + + + + + + +

    +Modules

     External IRQ (r_intc_irq)
     Driver for the INTC_IRQ peripheral on RZ MPUs. This module implements the External IRQ Interface.
     
     External IRQ (r_intc_nmi)
     Driver for the INTC_NMI peripheral on RZ MPUs. This module implements the External IRQ Interface.
     
     External IRQ (r_intc_tint)
     Driver for the Interrupt Controller peripheral on RZ MPUs. This module implements the External IRQ Interface.
     
    +
    +
    + + + + + diff --git a/group___r_e_n_e_s_a_s___i_n_p_u_t___m_o_d_u_l_e_s.js b/group___r_e_n_e_s_a_s___i_n_p_u_t___m_o_d_u_l_e_s.js new file mode 100644 index 0000000..646301c --- /dev/null +++ b/group___r_e_n_e_s_a_s___i_n_p_u_t___m_o_d_u_l_e_s.js @@ -0,0 +1,6 @@ +var group___r_e_n_e_s_a_s___i_n_p_u_t___m_o_d_u_l_e_s = +[ + [ "External IRQ (r_intc_irq)", "group___i_n_t_c___i_r_q.html", "group___i_n_t_c___i_r_q" ], + [ "External IRQ (r_intc_nmi)", "group___i_n_t_c___n_m_i.html", "group___i_n_t_c___n_m_i" ], + [ "External IRQ (r_intc_tint)", "group___i_n_t_c___t_i_n_t.html", "group___i_n_t_c___t_i_n_t" ] +]; \ No newline at end of file diff --git a/group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.html b/group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.html index 336ad9b..e54cbf4 100644 --- a/group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.html +++ b/group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Interfaces +RZV Flexible Software Package Documentation: Interfaces @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    @@ -101,15 +169,30 @@ + + + + + + + + + + + + + + + @@ -122,12 +205,21 @@ + + + + + + + + + @@ -137,6 +229,9 @@ + + + @@ -146,9 +241,6 @@ - - - @@ -159,7 +251,7 @@ diff --git a/group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.js b/group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.js index 2c00124..3a1d958 100644 --- a/group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.js +++ b/group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.js @@ -1,20 +1,28 @@ var group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s = [ + [ "ADC Interface", "group___a_d_c___a_p_i.html", "group___a_d_c___a_p_i" ], [ "CAN Interface", "group___c_a_n___a_p_i.html", "group___c_a_n___a_p_i" ], + [ "CRC Interface", "group___c_r_c___a_p_i.html", "group___c_r_c___a_p_i" ], + [ "ELC Interface", "group___e_l_c___a_p_i.html", "group___e_l_c___a_p_i" ], [ "External IRQ Interface", "group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html", "group___e_x_t_e_r_n_a_l___i_r_q___a_p_i" ], [ "I2C Master Interface", "group___i2_c___m_a_s_t_e_r___a_p_i.html", "group___i2_c___m_a_s_t_e_r___a_p_i" ], + [ "I2C Slave Interface", "group___i2_c___s_l_a_v_e___a_p_i.html", "group___i2_c___s_l_a_v_e___a_p_i" ], + [ "I3C Interface", "group___i3_c___a_p_i.html", "group___i3_c___a_p_i" ], [ "I/O Port Interface", "group___i_o_p_o_r_t___a_p_i.html", "group___i_o_p_o_r_t___a_p_i" ], [ "MHU Interface (for secure and non secure channels)", "group___m_h_u___a_p_i.html", "group___m_h_u___a_p_i" ], [ "MHU Interface (Software Interrupt Get)", "group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html", "group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i" ], [ "MHU Interface (Software Interrupt Set)", "group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html", "group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i" ], + [ "PDM Interface", "group___p_d_m___a_p_i.html", "group___p_d_m___a_p_i" ], [ "POEG Interface", "group___p_o_e_g___a_p_i.html", "group___p_o_e_g___a_p_i" ], + [ "RTC Interface", "group___r_t_c___a_p_i.html", "group___r_t_c___a_p_i" ], [ "SPI Interface", "group___s_p_i___a_p_i.html", "group___s_p_i___a_p_i" ], + [ "SPI Flash Interface", "group___s_p_i___f_l_a_s_h___a_p_i.html", "group___s_p_i___f_l_a_s_h___a_p_i" ], [ "Timer Interface", "group___t_i_m_e_r___a_p_i.html", "group___t_i_m_e_r___a_p_i" ], [ "Transfer Interface", "group___t_r_a_n_s_f_e_r___a_p_i.html", "group___t_r_a_n_s_f_e_r___a_p_i" ], [ "UART Interface", "group___u_a_r_t___a_p_i.html", "group___u_a_r_t___a_p_i" ], + [ "WDT Interface", "group___w_d_t___a_p_i.html", "group___w_d_t___a_p_i" ], [ "Communicatons Middleware Interface", "group___r_m___c_o_m_m_s___a_p_i.html", "group___r_m___c_o_m_m_s___a_p_i" ], [ "HS300X Middleware Interface", "group___r_m___h_s300_x___a_p_i.html", "group___r_m___h_s300_x___a_p_i" ], [ "HS400X Middleware Interface", "group___r_m___h_s400_x___a_p_i.html", "group___r_m___h_s400_x___a_p_i" ], - [ "OB1203 Middleware Interface", "group___r_m___o_b1203___a_p_i.html", "group___r_m___o_b1203___a_p_i" ], [ "ZMOD4XXX Middleware Interface", "group___r_m___z_m_o_d4_x_x_x___a_p_i.html", "group___r_m___z_m_o_d4_x_x_x___a_p_i" ] ]; \ No newline at end of file diff --git a/group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.html b/group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.html index 9a05746..7dcee56 100644 --- a/group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.html +++ b/group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Modules +RZV Flexible Software Package Documentation: Modules @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    @@ -98,7 +166,8 @@

    Detailed Description

    Modules are the smallest unit of software available in the FSP. Each module implements one interface.

    -

    For more information on FSP Modules and Interfaces review FSP Modules, FSP Stacks and FSP Interfaces in the FSP Architecutre section of this manual.

    +

    For more information on FSP Modules and Interfaces review fsp-modules, fsp-stacks and fsp-interfaces in the FSP Architecutre section of this manual.

    +
    Note
    Not all modules are available for all MCUs. For more information, see the User's Manual for the specific MCU.

    Organization of Module Sections

    Each module within FSP has a detailed Users' Guide listed below. Each guide typically includes the following content:

      @@ -114,62 +183,35 @@

    Modules

     ADC Interface
     Interface for A/D Converters.
     
     CAN Interface
     Interface for CAN peripheral.
     
     CRC Interface
     Interface for cyclic redundancy checking.
     
     ELC Interface
     Interface for the Event Link Controller.
     
     External IRQ Interface
     Interface for detecting external interrupts.
     
     I2C Master Interface
     Interface for I2C master communication.
     
     I2C Slave Interface
     Interface for I2C slave communication.
     
     I3C Interface
     Interface for I3C.
     
     I/O Port Interface
     Interface for accessing I/O ports and configuring I/O functionality.
     
     MHU Interface (Software Interrupt Set)
     Interface for Message Handling Unit (Software Interrupt Set)
     
     PDM Interface
     Interface for PDM audio communication.
     
     POEG Interface
     Interface for the Port Output Enable for GPT.
     
     RTC Interface
     Interface for accessing the Realtime Clock.
     
     SPI Interface
     Interface for SPI communications.
     
     SPI Flash Interface
     Interface for accessing external SPI flash devices.
     
     Timer Interface
     Interface for timer functions.
     
     UART Interface
     Interface for UART communications.
     
     WDT Interface
     Interface for watch dog timer functions.
     
     Communicatons Middleware Interface
     Interface for Communications Middleware functions.
     
     HS400X Middleware Interface
     Interface for HS400X Middleware functions.
     
     OB1203 Middleware Interface
     Interface for OB1203 Middleware functions.
     
     ZMOD4XXX Middleware Interface
     Interface for ZMOD4XXX Middleware functions.
     
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + +

    Modules

     Controller Area Network - Flexible Data (r_canfd)
     Driver for the CANFD peripheral on RZ MPUs. This module implements the CAN Interface.
     
     General PWM Timer (r_gpt)
     Driver for the GPT peripheral on RZ MPUs. This module implements the Timer Interface.
     
     General Timer (r_gtm)
     Driver for the GTM peripherals on RZ MPUs. This module implements the Timer Interface.
     
     External IRQ (r_intc_irq)
     Driver for the INTC_IRQ peripheral on RZ/V2L. This module implements the External IRQ Interface.
     
     I/O Ports (r_ioport)
     Driver for the I/O Ports peripheral on RZ MPUs. This module implements the I/O Port Interface.
     
     Message Handling Unit for non secure channels (r_mhu_ns)
     Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels).
     
     Message Handling Unit for non-secure software interrupt receive (r_mhu_ns_swint_get)
     Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Get).
     
     Message Handling Unit for non-secure software interrupt generation (r_mhu_ns_swint_set)
     Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Set).
     
     Message Handling Unit for secure channels (r_mhu_s)
     Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels).
     
     Port Output Enable for GPT (r_poeg)
     Driver for the POEG peripheral on RZ MPUs. This module implements the POEG Interface.
     Analog
     Analog Modules.
     
     I2C Master on RIIC (r_riic_master)
     Driver for the RIIC peripheral on RZ MPUs. This module implements the I2C Master Interface.
     Connectivity
     Connectivity Modules.
     
     Renesas Serial Peripheral Interface (r_rspi)
     Driver for the RSPI peripheral on RZ MPUs. This module implements the SPI Interface.
     Input
     Input Modules.
     
     Serial Communications Interface (SCIF) UART (r_scif_uart)
     Driver for the SCIF peripheral on RZ MPUs. This module implements the UART Interface.
     Monitoring
     Monitoring Modules.
     
     I2C Communication Device (rm_comms_i2c)
     Middleware to implement the I2C communications interface. This module implements the Communicatons Middleware Interface.
     RTOS
     RTOS Modules.
     
     FreeRTOS Port (rm_freertos_port)
     FreeRTOS port for RZ MPUs.
     Sensor
     Sensor Modules.
     
     HS300X Temperature/Humidity Sensor (rm_hs300x)
     Middleware to implement the HS300X sensor interface. This module implements the HS300X Middleware Interface.
     Storage
     Storage Modules.
     
     HS400X Temperature/Humidity Sensor (rm_hs400x)
     Middleware to implement the HS400X sensor interface. This module implements the HS400X Middleware Interface.
     System
     System Modules.
     
     OB1203 Light/Proximity/PPG Sensor (rm_ob1203)
     Middleware to implement the OB1203 sensor interface. This module implements the OB1203 Middleware Interface.
     Timers
     Timers Modules.
     
     ZMOD4XXX Gas Sensor (rm_zmod4xxx)
     Middleware to implement the ZMOD4XXX sensor interface. This module implements the ZMOD4XXX Middleware Interface.
     Transfer
     Transfer Modules.
     
    @@ -178,7 +220,7 @@ diff --git a/group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.js b/group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.js index 9f4b4ea..dd09783 100644 --- a/group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.js +++ b/group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.js @@ -1,22 +1,13 @@ var group___r_e_n_e_s_a_s___m_o_d_u_l_e_s = [ - [ "Controller Area Network - Flexible Data (r_canfd)", "group___c_a_n_f_d.html", "group___c_a_n_f_d" ], - [ "General PWM Timer (r_gpt)", "group___g_p_t.html", "group___g_p_t" ], - [ "General Timer (r_gtm)", "group___g_t_m.html", "group___g_t_m" ], - [ "External IRQ (r_intc_irq)", "group___i_n_t_c___i_r_q.html", "group___i_n_t_c___i_r_q" ], - [ "I/O Ports (r_ioport)", "group___i_o_p_o_r_t.html", "group___i_o_p_o_r_t" ], - [ "Message Handling Unit for non secure channels (r_mhu_ns)", "group___m_h_u___n_s.html", "group___m_h_u___n_s" ], - [ "Message Handling Unit for non-secure software interrupt receive (r_mhu_ns_swint_get)", "group___m_h_u___n_s___s_w_i_n_t___g_e_t.html", "group___m_h_u___n_s___s_w_i_n_t___g_e_t" ], - [ "Message Handling Unit for non-secure software interrupt generation (r_mhu_ns_swint_set)", "group___m_h_u___n_s___s_w_i_n_t___s_e_t.html", "group___m_h_u___n_s___s_w_i_n_t___s_e_t" ], - [ "Message Handling Unit for secure channels (r_mhu_s)", "group___m_h_u___s.html", "group___m_h_u___s" ], - [ "Port Output Enable for GPT (r_poeg)", "group___p_o_e_g.html", "group___p_o_e_g" ], - [ "I2C Master on RIIC (r_riic_master)", "group___r_i_i_c___m_a_s_t_e_r.html", "group___r_i_i_c___m_a_s_t_e_r" ], - [ "Renesas Serial Peripheral Interface (r_rspi)", "group___r_s_p_i.html", "group___r_s_p_i" ], - [ "Serial Communications Interface (SCIF) UART (r_scif_uart)", "group___s_c_i_f___u_a_r_t.html", "group___s_c_i_f___u_a_r_t" ], - [ "I2C Communication Device (rm_comms_i2c)", "group___r_m___c_o_m_m_s___i2_c.html", "group___r_m___c_o_m_m_s___i2_c" ], - [ "FreeRTOS Port (rm_freertos_port)", "group___r_m___f_r_e_e_r_t_o_s___p_o_r_t.html", null ], - [ "HS300X Temperature/Humidity Sensor (rm_hs300x)", "group___r_m___h_s300_x.html", "group___r_m___h_s300_x" ], - [ "HS400X Temperature/Humidity Sensor (rm_hs400x)", "group___r_m___h_s400_x.html", "group___r_m___h_s400_x" ], - [ "OB1203 Light/Proximity/PPG Sensor (rm_ob1203)", "group___r_m___o_b1203.html", "group___r_m___o_b1203" ], - [ "ZMOD4XXX Gas Sensor (rm_zmod4xxx)", "group___r_m___z_m_o_d4_x_x_x.html", "group___r_m___z_m_o_d4_x_x_x" ] + [ "Analog", "group___r_e_n_e_s_a_s___a_n_a_l_o_g___m_o_d_u_l_e_s.html", "group___r_e_n_e_s_a_s___a_n_a_l_o_g___m_o_d_u_l_e_s" ], + [ "Connectivity", "group___r_e_n_e_s_a_s___c_o_n_n_e_c_t_i_v_i_t_y___m_o_d_u_l_e_s.html", "group___r_e_n_e_s_a_s___c_o_n_n_e_c_t_i_v_i_t_y___m_o_d_u_l_e_s" ], + [ "Input", "group___r_e_n_e_s_a_s___i_n_p_u_t___m_o_d_u_l_e_s.html", "group___r_e_n_e_s_a_s___i_n_p_u_t___m_o_d_u_l_e_s" ], + [ "Monitoring", "group___r_e_n_e_s_a_s___m_o_n_i_t_o_r_i_n_g___m_o_d_u_l_e_s.html", "group___r_e_n_e_s_a_s___m_o_n_i_t_o_r_i_n_g___m_o_d_u_l_e_s" ], + [ "RTOS", "group___r_e_n_e_s_a_s___r_t_o_s___m_o_d_u_l_e_s.html", "group___r_e_n_e_s_a_s___r_t_o_s___m_o_d_u_l_e_s" ], + [ "Sensor", "group___r_e_n_e_s_a_s___s_e_n_s_o_r___m_o_d_u_l_e_s.html", "group___r_e_n_e_s_a_s___s_e_n_s_o_r___m_o_d_u_l_e_s" ], + [ "Storage", "group___r_e_n_e_s_a_s___s_t_o_r_a_g_e___m_o_d_u_l_e_s.html", "group___r_e_n_e_s_a_s___s_t_o_r_a_g_e___m_o_d_u_l_e_s" ], + [ "System", "group___r_e_n_e_s_a_s___s_y_s_t_e_m___m_o_d_u_l_e_s.html", "group___r_e_n_e_s_a_s___s_y_s_t_e_m___m_o_d_u_l_e_s" ], + [ "Timers", "group___r_e_n_e_s_a_s___t_i_m_e_r_s___m_o_d_u_l_e_s.html", "group___r_e_n_e_s_a_s___t_i_m_e_r_s___m_o_d_u_l_e_s" ], + [ "Transfer", "group___r_e_n_e_s_a_s___t_r_a_n_s_f_e_r___m_o_d_u_l_e_s.html", "group___r_e_n_e_s_a_s___t_r_a_n_s_f_e_r___m_o_d_u_l_e_s" ] ]; \ No newline at end of file diff --git a/group___r_e_n_e_s_a_s___m_o_n_i_t_o_r_i_n_g___m_o_d_u_l_e_s.html b/group___r_e_n_e_s_a_s___m_o_n_i_t_o_r_i_n_g___m_o_d_u_l_e_s.html new file mode 100644 index 0000000..30b3074 --- /dev/null +++ b/group___r_e_n_e_s_a_s___m_o_n_i_t_o_r_i_n_g___m_o_d_u_l_e_s.html @@ -0,0 +1,189 @@ + + + + + + + +RZV Flexible Software Package Documentation: Monitoring + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Monitoring
    +
    +
    +

    Detailed Description

    +

    Monitoring Modules.

    + + + + + + + + +

    +Modules

     CRC (r_crc)
     Driver for the CRC peripheral on RZ MPUs. This module implements the CRC Interface.
     
     Watchdog (r_wdt)
     Driver for the WDT peripheral on RZ MPUs. This module implements the WDT Interface.
     
    +
    +
    + + + + + diff --git a/group___r_e_n_e_s_a_s___m_o_n_i_t_o_r_i_n_g___m_o_d_u_l_e_s.js b/group___r_e_n_e_s_a_s___m_o_n_i_t_o_r_i_n_g___m_o_d_u_l_e_s.js new file mode 100644 index 0000000..52940df --- /dev/null +++ b/group___r_e_n_e_s_a_s___m_o_n_i_t_o_r_i_n_g___m_o_d_u_l_e_s.js @@ -0,0 +1,5 @@ +var group___r_e_n_e_s_a_s___m_o_n_i_t_o_r_i_n_g___m_o_d_u_l_e_s = +[ + [ "CRC (r_crc)", "group___c_r_c.html", "group___c_r_c" ], + [ "Watchdog (r_wdt)", "group___w_d_t.html", "group___w_d_t" ] +]; \ No newline at end of file diff --git a/group___r_e_n_e_s_a_s___r_t_o_s___m_o_d_u_l_e_s.html b/group___r_e_n_e_s_a_s___r_t_o_s___m_o_d_u_l_e_s.html new file mode 100644 index 0000000..e5cedab --- /dev/null +++ b/group___r_e_n_e_s_a_s___r_t_o_s___m_o_d_u_l_e_s.html @@ -0,0 +1,186 @@ + + + + + + + +RZV Flexible Software Package Documentation: RTOS + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    +
    +
    +

    Detailed Description

    +

    RTOS Modules.

    + + + + + +

    +Modules

     FreeRTOS Port (rm_freertos_port)
     FreeRTOS port for RZ MPUs.
     
    +
    +
    + + + + + diff --git a/group___r_e_n_e_s_a_s___r_t_o_s___m_o_d_u_l_e_s.js b/group___r_e_n_e_s_a_s___r_t_o_s___m_o_d_u_l_e_s.js new file mode 100644 index 0000000..ca252fa --- /dev/null +++ b/group___r_e_n_e_s_a_s___r_t_o_s___m_o_d_u_l_e_s.js @@ -0,0 +1,4 @@ +var group___r_e_n_e_s_a_s___r_t_o_s___m_o_d_u_l_e_s = +[ + [ "FreeRTOS Port (rm_freertos_port)", "group___r_m___f_r_e_e_r_t_o_s___p_o_r_t.html", null ] +]; \ No newline at end of file diff --git a/group___r_e_n_e_s_a_s___s_e_n_s_o_r___m_o_d_u_l_e_s.html b/group___r_e_n_e_s_a_s___s_e_n_s_o_r___m_o_d_u_l_e_s.html new file mode 100644 index 0000000..b4ac2b0 --- /dev/null +++ b/group___r_e_n_e_s_a_s___s_e_n_s_o_r___m_o_d_u_l_e_s.html @@ -0,0 +1,192 @@ + + + + + + + +RZV Flexible Software Package Documentation: Sensor + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Sensor
    +
    +
    +

    Detailed Description

    +

    Sensor Modules.

    + + + + + + + + + + + +

    +Modules

     HS300X Temperature/Humidity Sensor (rm_hs300x)
     Middleware to implement the HS300X sensor interface. This module implements the HS300X Middleware Interface.
     
     HS400X Temperature/Humidity Sensor (rm_hs400x)
     Middleware to implement the HS400X sensor interface. This module implements the HS400X Middleware Interface.
     
     ZMOD4XXX Gas Sensor (rm_zmod4xxx)
     Middleware to implement the ZMOD4XXX sensor interface. This module implements the ZMOD4XXX Middleware Interface.
     
    +
    +
    + + + + + diff --git a/group___r_e_n_e_s_a_s___s_e_n_s_o_r___m_o_d_u_l_e_s.js b/group___r_e_n_e_s_a_s___s_e_n_s_o_r___m_o_d_u_l_e_s.js new file mode 100644 index 0000000..5477660 --- /dev/null +++ b/group___r_e_n_e_s_a_s___s_e_n_s_o_r___m_o_d_u_l_e_s.js @@ -0,0 +1,6 @@ +var group___r_e_n_e_s_a_s___s_e_n_s_o_r___m_o_d_u_l_e_s = +[ + [ "HS300X Temperature/Humidity Sensor (rm_hs300x)", "group___r_m___h_s300_x.html", "group___r_m___h_s300_x" ], + [ "HS400X Temperature/Humidity Sensor (rm_hs400x)", "group___r_m___h_s400_x.html", "group___r_m___h_s400_x" ], + [ "ZMOD4XXX Gas Sensor (rm_zmod4xxx)", "group___r_m___z_m_o_d4_x_x_x.html", "group___r_m___z_m_o_d4_x_x_x" ] +]; \ No newline at end of file diff --git a/group___r_e_n_e_s_a_s___s_t_o_r_a_g_e___m_o_d_u_l_e_s.html b/group___r_e_n_e_s_a_s___s_t_o_r_a_g_e___m_o_d_u_l_e_s.html new file mode 100644 index 0000000..8999f83 --- /dev/null +++ b/group___r_e_n_e_s_a_s___s_t_o_r_a_g_e___m_o_d_u_l_e_s.html @@ -0,0 +1,186 @@ + + + + + + + +RZV Flexible Software Package Documentation: Storage + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Storage
    +
    +
    +

    Detailed Description

    +

    Storage Modules.

    + + + + + +

    +Modules

     Expanded Serial Peripheral Interface (xSPI) QSPI (r_xspi_qspi)
     Driver for the xSPI peripheral on RZ microprocessor. This module implements the SPI Flash Interface.
     
    +
    +
    + + + + + diff --git a/group___r_e_n_e_s_a_s___s_t_o_r_a_g_e___m_o_d_u_l_e_s.js b/group___r_e_n_e_s_a_s___s_t_o_r_a_g_e___m_o_d_u_l_e_s.js new file mode 100644 index 0000000..61aed64 --- /dev/null +++ b/group___r_e_n_e_s_a_s___s_t_o_r_a_g_e___m_o_d_u_l_e_s.js @@ -0,0 +1,4 @@ +var group___r_e_n_e_s_a_s___s_t_o_r_a_g_e___m_o_d_u_l_e_s = +[ + [ "Expanded Serial Peripheral Interface (xSPI) QSPI (r_xspi_qspi)", "group___x_s_p_i___q_s_p_i.html", "group___x_s_p_i___q_s_p_i" ] +]; \ No newline at end of file diff --git a/group___r_e_n_e_s_a_s___s_y_s_t_e_m___m_o_d_u_l_e_s.html b/group___r_e_n_e_s_a_s___s_y_s_t_e_m___m_o_d_u_l_e_s.html new file mode 100644 index 0000000..d63a442 --- /dev/null +++ b/group___r_e_n_e_s_a_s___s_y_s_t_e_m___m_o_d_u_l_e_s.html @@ -0,0 +1,189 @@ + + + + + + + +RZV Flexible Software Package Documentation: System + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    System
    +
    +
    +

    Detailed Description

    +

    System Modules.

    + + + + + + + + +

    +Modules

     Event Link Controller (r_elc)
     Driver for the ELC peripheral on RZ microprocessor. This module implements the ELC Interface.
     
     I/O Ports (r_ioport)
     Driver for the I/O Ports peripheral on RZ MPUs. This module implements the I/O Port Interface.
     
    +
    +
    + + + + + diff --git a/group___r_e_n_e_s_a_s___s_y_s_t_e_m___m_o_d_u_l_e_s.js b/group___r_e_n_e_s_a_s___s_y_s_t_e_m___m_o_d_u_l_e_s.js new file mode 100644 index 0000000..371519d --- /dev/null +++ b/group___r_e_n_e_s_a_s___s_y_s_t_e_m___m_o_d_u_l_e_s.js @@ -0,0 +1,5 @@ +var group___r_e_n_e_s_a_s___s_y_s_t_e_m___m_o_d_u_l_e_s = +[ + [ "Event Link Controller (r_elc)", "group___e_l_c.html", "group___e_l_c" ], + [ "I/O Ports (r_ioport)", "group___i_o_p_o_r_t.html", "group___i_o_p_o_r_t" ] +]; \ No newline at end of file diff --git a/group___r_e_n_e_s_a_s___t_i_m_e_r_s___m_o_d_u_l_e_s.html b/group___r_e_n_e_s_a_s___t_i_m_e_r_s___m_o_d_u_l_e_s.html new file mode 100644 index 0000000..eb82808 --- /dev/null +++ b/group___r_e_n_e_s_a_s___t_i_m_e_r_s___m_o_d_u_l_e_s.html @@ -0,0 +1,201 @@ + + + + + + + +RZV Flexible Software Package Documentation: Timers + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Timers
    +
    +
    +

    Detailed Description

    +

    Timers Modules.

    + + + + + + + + + + + + + + + + + + + + +

    +Modules

     Compare Match Timer W (r_cmtw)
     Driver for the CMTW peripheral on RZ MPUs. This module implements the Timer Interface.
     
     General PWM Timer (r_gpt)
     Driver for the GPT peripheral on RZ MPUs. This module implements the Timer Interface.
     
     General Timer (r_gtm)
     Driver for the GTM peripherals on RZ MPUs. This module implements the Timer Interface.
     
     Multi-Function Timer Pulse Unit 3 (r_mtu3)
     Driver for the MTU3 peripherals on RZ microprocessor. This module implements the Timer Interface.
     
     Port Output Enable for GPT (r_poeg)
     Driver for the POEG peripheral on RZ MPUs. This module implements the POEG Interface.
     
     Realtime Clock (r_rtc)
     Driver for the RTC peripheral on RZ MPUs. This module implements the RTC Interface.
     
    +
    +
    + + + + + diff --git a/group___r_e_n_e_s_a_s___t_i_m_e_r_s___m_o_d_u_l_e_s.js b/group___r_e_n_e_s_a_s___t_i_m_e_r_s___m_o_d_u_l_e_s.js new file mode 100644 index 0000000..09f69d8 --- /dev/null +++ b/group___r_e_n_e_s_a_s___t_i_m_e_r_s___m_o_d_u_l_e_s.js @@ -0,0 +1,9 @@ +var group___r_e_n_e_s_a_s___t_i_m_e_r_s___m_o_d_u_l_e_s = +[ + [ "Compare Match Timer W (r_cmtw)", "group___c_m_t_w.html", "group___c_m_t_w" ], + [ "General PWM Timer (r_gpt)", "group___g_p_t.html", "group___g_p_t" ], + [ "General Timer (r_gtm)", "group___g_t_m.html", "group___g_t_m" ], + [ "Multi-Function Timer Pulse Unit 3 (r_mtu3)", "group___m_t_u3.html", "group___m_t_u3" ], + [ "Port Output Enable for GPT (r_poeg)", "group___p_o_e_g.html", "group___p_o_e_g" ], + [ "Realtime Clock (r_rtc)", "group___r_t_c.html", "group___r_t_c" ] +]; \ No newline at end of file diff --git a/group___r_e_n_e_s_a_s___t_r_a_n_s_f_e_r___m_o_d_u_l_e_s.html b/group___r_e_n_e_s_a_s___t_r_a_n_s_f_e_r___m_o_d_u_l_e_s.html new file mode 100644 index 0000000..5c3fe94 --- /dev/null +++ b/group___r_e_n_e_s_a_s___t_r_a_n_s_f_e_r___m_o_d_u_l_e_s.html @@ -0,0 +1,186 @@ + + + + + + + +RZV Flexible Software Package Documentation: Transfer + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Transfer
    +
    +
    +

    Detailed Description

    +

    Transfer Modules.

    + + + + + +

    +Modules

     Direct Memory Access Controller (r_dmac_b)
     Driver for the DMAC peripheral on RZ MPUs. This module implements the Transfer Interface.
     
    +
    +
    + + + + + diff --git a/group___r_e_n_e_s_a_s___t_r_a_n_s_f_e_r___m_o_d_u_l_e_s.js b/group___r_e_n_e_s_a_s___t_r_a_n_s_f_e_r___m_o_d_u_l_e_s.js new file mode 100644 index 0000000..1ceb2d8 --- /dev/null +++ b/group___r_e_n_e_s_a_s___t_r_a_n_s_f_e_r___m_o_d_u_l_e_s.js @@ -0,0 +1,4 @@ +var group___r_e_n_e_s_a_s___t_r_a_n_s_f_e_r___m_o_d_u_l_e_s = +[ + [ "Direct Memory Access Controller (r_dmac_b)", "group___d_m_a_c___b.html", "group___d_m_a_c___b" ] +]; \ No newline at end of file diff --git a/group___r_i_i_c___m_a_s_t_e_r.html b/group___r_i_i_c___m_a_s_t_e_r.html index 523810e..a02dfa7 100644 --- a/group___r_i_i_c___m_a_s_t_e_r.html +++ b/group___r_i_i_c___m_a_s_t_e_r.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: I2C Master on RIIC (r_riic_master) +RZV Flexible Software Package Documentation: I2C Master on RIIC (r_riic_master) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    I2C Master on RIIC (r_riic_master)
    +
    I2C Master on RIIC (r_riic_master)
    @@ -160,6 +228,8 @@

    + +
    Default (BSP) If selected code for parameter checking is included in the build.
    DMAC SupportMCU Specific OptionsIf enabled, DMAC instances will be included in the build for both transmission and reception.
    10-bit slave addressing
    • Enabled
    • @@ -168,8 +238,8 @@

    Disabled If enabled, the driver will support 10-bit slave addressing mode along with the default 7-bit slave addressing mode.
    -

    Configurations for Driver > Connectivity > I2C Master Driver on r_riic_master

    -This module can be added to the Stacks tab via New Stack > Driver > Connectivity > I2C Master Driver on r_riic_master.
    +

    Configurations for Connectivity > I2C Master (r_riic_master)

    +This module can be added to the Stacks tab via New Stack > Connectivity > I2C Master (r_riic_master).

    @@ -192,7 +262,7 @@

    Configurations for Driver > Connectivity > I2C Master Driver on r_riic

    - + + - +
    ConfigurationOptionsDefaultDescription
    Fall Time (ns)Value must be a non-negative integer120 Set the fall time (tf) in nanoseconds.
    Duty Cycle (%)Value must be an integer between 0 and 10050 Sets the duty ratio of the High-level period of the SCL clock for the bit rate.
    +
    Duty Cycle (%)Value must be an integer between 4 and 9650 Sets the duty ratio of the High-level period of the SCL clock for the bit rate.
    The recommended range of duty ratio to satisfy the minimum value for SCL High-level or Low-level period of AC characteristic is shown below.
    Standard : 40-53%
    Fast-mode : 24-48%
    @@ -218,14 +288,32 @@

    Configurations for Driver > Connectivity > I2C Master Driver on r_riic

    Short Mode Select the timeout mode to detect bus hang.
    Timeout during SCL Low
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Enabled Select if the timeout can occur when SCL is held low for a duration longer than what is set in the timeout mode.
    CallbackName must be a valid C symbolNULL A user callback function must be provided. This will be called from the interrupt service routine (ISR) upon RIIC transaction completion reporting the transaction status.
    Interrupt Priority LevelValue must be an integer between 0 and 25512 Select the interrupt priority level. This is set for RXI, TXI, TEI, NAKI, SPI, STI, ALI and TMOI interrupts.
    Interrupt Priority LevelValue must be an integer between 0 and 25512 Select the interrupt priority level. This is set for RXI, TXI, TEI, NAKI, SPI, STI, ALI and TMOI interrupts.
    +When DMA transfer is used in RIIC communication, interrupt priorities of DMA and RIIC must be set to meet the following conditions:
    +Set the IPL value of the transfer completion interrupt of the DMAC to be greater than or equal to the IPL value of the RIIC interrupts.

    Clock Configuration

    -

    The RIIC peripheral module uses the P0 clock as its clock source. The actual I2C transfer rate will be calculated and set by the tooling depending on the selected transfer rate. If the P0 clock is configured in such a manner that the selected internal rate cannot be achieved, an error will be returned.

    +

    The RIIC peripheral module uses the clock shown in the following table as its clock source.

    + + + + + + +
    Device Source Clock
    RZ/V2L P0 clock
    RZ/V2H Ch0 to Ch7: PLLCLN/16, Ch8: PLLCM33/16
    +

    The actual I2C transfer rate will be calculated and set by the tooling depending on the selected transfer rate. If the clock source is configured in such a manner that the selected internal rate cannot be achieved, an error will be returned.

    Pin Configuration

    The RIIC peripheral module uses pins on the MPU to communicate to external devices. I/O pins must be selected and configured as required by the external device. An I2C channel would consist of two pins - SDA and SCL for data/address and clock respectively.

    @@ -236,6 +324,7 @@

    • The RIIC NACK reception (NAKI), Start condition (STI), Stop condition (SPI), Arbitration lost (ALI), Timeout (TMOI), receive buffer full (RXI), transmit buffer empty (TXI) and transmit end (TEI) interrupts for the selected channel used must be enabled in the properties of the selected device.
    • Set equal priority levels for all the interrupts mentioned above. Setting the interrupts to different priority levels could result in improper operation.
    • +
    • When DMA transfer is used in RIIC communication, interrupt priorities of DMA and RIIC must be set to meet the following conditions: Set the IPL value of the transfer completion interrupt of the DMAC to be greater than or equal to the IPL value of the RIIC interrupts.

    RIIC Master Rate Calculation

    @@ -279,6 +368,8 @@

    Basic Example

    Enumerations enum  iic_master_timeout_mode_t   +enum  iic_master_timeout_scl_low_t

    Data Structure Documentation

    @@ -353,6 +444,12 @@

    Timeout Detection Time Select: Long Mode = 0 and Short Mode = 1. +iic_master_timeout_scl_low_t + +timeout_scl_low + +Allows timeouts to occur when SCL is held low. + iic_master_clock_settings_t clock_settings @@ -418,6 +515,26 @@

    +

    ◆ iic_master_timeout_scl_low_t

    + +
    +
    + + + +
    Enumerator
    IIC_MASTER_TIMEOUT_SCL_LOW_DISABLED 

    Timeout detection during SCL low disabled.

    +
    IIC_MASTER_TIMEOUT_SCL_LOW_ENABLED 

    Timeout detection during SCL low enabled.

    +
    +

    Function Documentation

    @@ -758,7 +875,7 @@

      - +

    diff --git a/group___r_i_i_c___m_a_s_t_e_r.js b/group___r_i_i_c___m_a_s_t_e_r.js index 43ab816..a22c41b 100644 --- a/group___r_i_i_c___m_a_s_t_e_r.js +++ b/group___r_i_i_c___m_a_s_t_e_r.js @@ -8,6 +8,7 @@ var group___r_i_i_c___m_a_s_t_e_r = [ "iic_master_instance_ctrl_t", "group___r_i_i_c___m_a_s_t_e_r.html#structiic__master__instance__ctrl__t", null ], [ "riic_master_extended_cfg_t", "group___r_i_i_c___m_a_s_t_e_r.html#structriic__master__extended__cfg__t", [ [ "timeout_mode", "group___r_i_i_c___m_a_s_t_e_r.html#ac4f06d6bc304b3105524646725c0e736", null ], + [ "timeout_scl_low", "group___r_i_i_c___m_a_s_t_e_r.html#a248dede6dc400b36d660ee00bf2b814b", null ], [ "clock_settings", "group___r_i_i_c___m_a_s_t_e_r.html#aa0e87db942a63d7eb72077bf75f34d87", null ], [ "noise_filter_stage", "group___r_i_i_c___m_a_s_t_e_r.html#a81efa4dd941b358e014354ffbf02ac16", null ], [ "naki_irq", "group___r_i_i_c___m_a_s_t_e_r.html#a3e7ce84039e9c21f7a3cdc63060efdd1", null ], @@ -20,6 +21,10 @@ var group___r_i_i_c___m_a_s_t_e_r = [ "IIC_MASTER_TIMEOUT_MODE_LONG", "group___r_i_i_c___m_a_s_t_e_r.html#ggaf8ecd43a76bfa058281bb8b6b3981d3facc441997b6e18766361457d26227b4bd", null ], [ "IIC_MASTER_TIMEOUT_MODE_SHORT", "group___r_i_i_c___m_a_s_t_e_r.html#ggaf8ecd43a76bfa058281bb8b6b3981d3fa4afacd0b267f604d06e2b83891c0e577", null ] ] ], + [ "iic_master_timeout_scl_low_t", "group___r_i_i_c___m_a_s_t_e_r.html#ga9789e54472d093bd5348f202205d28ec", [ + [ "IIC_MASTER_TIMEOUT_SCL_LOW_DISABLED", "group___r_i_i_c___m_a_s_t_e_r.html#gga9789e54472d093bd5348f202205d28eca0773c9356e560a84576f1d5498234a09", null ], + [ "IIC_MASTER_TIMEOUT_SCL_LOW_ENABLED", "group___r_i_i_c___m_a_s_t_e_r.html#gga9789e54472d093bd5348f202205d28eca62238f63df0d06f25af5b158bbfb2169", null ] + ] ], [ "R_RIIC_MASTER_Open", "group___r_i_i_c___m_a_s_t_e_r.html#ga0e3fee8948f4df299977350491d537fa", null ], [ "R_RIIC_MASTER_Read", "group___r_i_i_c___m_a_s_t_e_r.html#ga2a0ac14ddd932a9cab8faf253dcdbbb5", null ], [ "R_RIIC_MASTER_Write", "group___r_i_i_c___m_a_s_t_e_r.html#ga492a86497c72e8f9bcf70d8dcd03c762", null ], diff --git a/group___r_i_i_c___s_l_a_v_e.html b/group___r_i_i_c___s_l_a_v_e.html new file mode 100644 index 0000000..aaf4872 --- /dev/null +++ b/group___r_i_i_c___s_l_a_v_e.html @@ -0,0 +1,712 @@ + + + + + + + +RZV Flexible Software Package Documentation: I2C Slave (r_riic_slave) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    I2C Slave (r_riic_slave)
    +
    +
    + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_RIIC_SLAVE_Open (i2c_slave_ctrl_t *const p_api_ctrl, i2c_slave_cfg_t const *const p_cfg)
     
    fsp_err_t R_RIIC_SLAVE_Read (i2c_slave_ctrl_t *const p_api_ctrl, uint8_t *const p_dest, uint32_t const bytes)
     
    fsp_err_t R_RIIC_SLAVE_Write (i2c_slave_ctrl_t *const p_api_ctrl, uint8_t *const p_src, uint32_t const bytes)
     
    fsp_err_t R_RIIC_SLAVE_Close (i2c_slave_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_RIIC_SLAVE_CallbackSet (i2c_slave_ctrl_t *const p_api_ctrl, void(*p_callback)(i2c_slave_callback_args_t *), void const *const p_context, i2c_slave_callback_args_t *const p_callback_memory)
     
    +

    Detailed Description

    +

    Driver for the RIIC peripheral on RZ MPUs. This module implements the I2C Slave Interface.

    +

    +Overview

    +

    +Features

    +
      +
    • Supports multiple transmission rates
        +
      • Standard Mode Support with up to 100-kHz transaction rate.
      • +
      • Fast Mode Support with up to 400-kHz transaction rate.
      • +
      • Fast Mode Plus Support with up to 1-MHz transaction rate.
      • +
      +
    • +
    • Reads data written by master device.
    • +
    • Write data which is read by master device.
    • +
    • Can accept 0x00 as slave address.
    • +
    • Can be assigned a 10-bit address.
    • +
    • Clock stretching is supported and can be implemented via callbacks.
    • +
    • Provides Transmission/Reception transaction size in the callback.
    • +
    • I2C Slave can notify the following events via callbacks: Transmission/Reception Request, Transmission/Reception Request for more data, Transmission/Reception Completion, Error Condition.
    • +
    +

    +Configuration

    +

    Build Time Configurations for r_riic_slave

    +The following build time configurations are defined in fsp_cfg/r_riic_slave_cfg.h:
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    +

    Configurations for Connectivity > I2C Slave Driver on r_riic_slave

    +This module can be added to the Stacks tab via New Stack > Connectivity > I2C Slave Driver on r_riic_slave.
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    Interrupt Priority Level > Transmit, Receive, and Transmit EndValue must be an integer between 0 and 25512 Select the interrupt priority level. This is set for TXI, RXI, and TEI interrupts.
    Interrupt Priority Level > NACK, Start, Stop, Timeout, Arbitration lostValue must be an integer between 0 and 25512 Select the interrupt priority level. This is set for NAKI, SPI, STI, ALI, TMOI interrupt.
    NameName must be a valid C symbolg_i2c_slave0 Module name.
    ChannelValue must be a non-negative integer0 Specify the RIIC channel.
    Rate
      +
    • +Standard
    • +
    • +Fast-mode
    • +
    • +Fast-mode plus
    • +
    +
    Standard Select the transfer rate.
    Internal Reference Clock
      +
    • +P0CLK / 1
    • +
    • +P0CLK / 2
    • +
    • +P0CLK / 4
    • +
    • +P0CLK / 8
    • +
    • +P0CLK / 16
    • +
    • +P0CLK / 32
    • +
    • +P0CLK / 64
    • +
    • +P0CLK / 128
    • +
    +
    P0CLK / 1 Select the internal reference clock for RIIC slave. The internal reference clock is used only to determine the clock frequency of the noise filter samples.
    Digital Noise Filter Stage Select
      +
    • +Disabled
    • +
    • +Single-stage filter
    • +
    • +2-stage filter
    • +
    • +3-stage filter
    • +
    • +4-stage filter
    • +
    +
    3-stage filter Select the number of digital filter stages for RIIC Slave.
    Slave AddressValue must be non-negative0x00 Specify the slave address.
    General Call
      +
    • +Disabled
    • +
    • +Enabled
    • +
    +
    Disabled Allows the slave to respond to general call address: 0x00.
    Address Mode
      +
    • +7-Bit
    • +
    • +10-Bit
    • +
    +
    7-Bit Select the slave address mode.
    Clock Stretching
      +
    • +Disabled
    • +
    • +Enabled
    • +
    +
    Disabled Configure Clock Stretching.
    CallbackName must be a valid C symbolNULL A user callback function must be provided. This will be called from the interrupt service routine (ISR) to report I2C Slave transaction events and status.
    +

    +

    +Clock Configuration

    +

    The RIIC peripheral module uses the clock shown in the following table as its clock source.

    + + + + + + +
    Device Source Clock
    RZ/V2L P0 clock
    RZ/V2H Ch0 to Ch7: PLLCLN/16, Ch8: PLLCM33/16
    +

    The actual I2C transfer rate will be calculated and set by the tooling depending on the selected transfer rate. If the clock source is configured in such a manner that the selected transfer rate cannot be achieved, an error will be returned.

    +

    +Pin Configuration

    +

    The IIC peripheral module uses pins on the MPU to communicate to external devices. I/O pins must be selected and configured as required by the external device. An I2C channel would consist of two pins - SDA and SCL for data/address and clock respectively.

    +

    +Usage Notes

    +

    +Interrupt Configuration

    +
      +
    • TThe RIIC NACK reception (NAKI), Start condition (STI), Stop condition (SPI), Arbitration lost (ALI), Timeout (TMOI), receive data full (RXI), transmit data empty (TXI) and transmit end (TEI) interrupts for the selected channel used must be enabled in the properties of the selected device.
    • +
    • The interrupt priority of NAKI, STI, SPI, ALI, TMOI can be set higher than or equal to the interrupt priorities of RXI, TXI and TEI.
      Note
      : During master-write slave-read type of operations if the slave device requires to perform clock stretching after the last data byte is received, a higher priority will ensure that the ongoing transaction is completed (by accepting the Stop/Restart condition from the master) before the next transaction is initiated.
      +
      +: To support clock stretching (Holding SCL low after the falling edge of the 9th clock cycle), 'Clock Stretching' configuration must be enabled.
      +
    • +
    +

    +Callback

    +
      +
    • A callback function must be provided which will be invoked for the cases below:
        +
      • An I2C Master initiates a transmission or reception: I2C_SLAVE_EVENT_TX_REQUEST; I2C_SLAVE_EVENT_RX_REQUEST
      • +
      • A Transmission or reception has been completed: I2C_SLAVE_EVENT_TX_COMPLETE; I2C_SLAVE_EVENT_RX_COMPLETE
      • +
      • An I2C Master is requesting to read or write more data: I2C_SLAVE_EVENT_TX_MORE_REQUEST; I2C_SLAVE_EVENT_RX_MORE_REQUEST
      • +
      • Error conditions: I2C_SLAVE_EVENT_ABORTED
      • +
      • An I2C Master initiates a general call by passing 0x00 as slave address: I2C_SLAVE_EVENT_GENERAL_CALL
      • +
      +
    • +
    • The callback arguments will contain information about the transaction status/events, bytes transferred and a pointer to the user defined context.
    • +
    • Clock stretching is enabled by the use of callbacks. This means that the IIC slave can hold the clock line SCL LOW to force the I2C Master into a wait state.
    • +
    • The table below shows I2C Slave event handling expected in user code:
    • +
    + + + + + + + + + + + + + + + + + + + +
    RIIC Slave Callback Event RIIC Slave API expected to be called
    I2C_SLAVE_EVENT_ABORTED Handle event based on application
    I2C_SLAVE_EVENT_RX_COMPLETE Handle event based on application
    I2C_SLAVE_EVENT_TX_COMPLETE Handle event based on application
    I2C_SLAVE_EVENT_RX_REQUEST R_RIIC_SLAVE_Read API. If the slave is a Write Only device call this API with 0 bytes to send a NACK to the master.
    I2C_SLAVE_EVENT_TX_REQUEST R_RIIC_SLAVE_Write API
    I2C_SLAVE_EVENT_RX_MORE_REQUEST R_RIIC_SLAVE_Read API. If the slave cannot read any more data call this API with 0 bytes to send a NACK to the master.
    I2C_SLAVE_EVENT_TX_MORE_REQUEST R_RIIC_SLAVE_Write API
    I2C_SLAVE_EVENT_GENERAL_CALL R_RIIC_SLAVE_Read
    +
      +
    • If parameter checking is enabled and R_RIIC_SLAVE_Read API is not called for I2C_SLAVE_EVENT_RX_REQUEST and/or I2C_SLAVE_EVENT_RX_MORE_REQUEST, the slave will send a NACK to the master and would eventually timeout.
    • +
    • R_RIIC_SLAVE_Write API is not called for I2C_SLAVE_EVENT_TX_REQUEST and/or I2C_SLAVE_EVENT_TX_MORE_REQUEST:
        +
      • Slave timeout is less than Master timeout: The slave will timeout and release the bus causing the master to read 0xFF for every remaining byte.
      • +
      • Slave timeout is more than Master timeout: The master will timeout first followed by the slave.
      • +
      +
    • +
    +

    +RIIC Slave Rate Calculation

    +
      +
    • The Configuration editor calculates the internal baud-rate setting based on the configured transfer rate. The closest possible baud-rate that can be achieved (less than or equal to the requested rate) at the current clock source settings is calculated and used.
    • +
    +

    Limitations

    +
      +
    • When 'Clock Stretching' configuration is enabled, the receive operation will not utilize the double buffer arrangement in hardware for a continuous read. This means that the read operation would happen in single byte units such that the active master would send the next byte only when the slave has read the current byte of data.
    • +
    +

    +Examples

    +

    Basic Example

    +

    This is a basic example of minimal use of the R_RIIC_SLAVE in an application. This example shows how this driver can be used for basic read and write operations.

    +
    iic_master_instance_ctrl_t g_i2c_master_ctrl;
    i2c_master_cfg_t g_i2c_master_cfg =
    {
    .channel = I2C_MASTER_CHANNEL_0,
    .slave = I2C_7BIT_ADDR_IIC_SLAVE,
    .p_callback = i2c_master_callback, // Callback
    .p_context = &g_i2c_master_ctrl,
    .p_transfer_tx = NULL,
    .p_transfer_rx = NULL,
    .rxi_irq = RIIC0_RI_IRQn,
    .txi_irq = RIIC0_TI_IRQn,
    .tei_irq = RIIC0_TEI_IRQn,
    .ipl = 24,
    .p_extend = &g_iic_master_cfg_extend_standard_mode
    };
    iic_slave_instance_ctrl_t g_i2c_slave_ctrl;
    i2c_slave_cfg_t g_i2c_slave_cfg =
    {
    .channel = I2C_SLAVE_CHANNEL_1,
    .slave = I2C_7BIT_ADDR_IIC_SLAVE,
    .rxi_irq = RIIC1_RI_IRQn,
    .txi_irq = RIIC1_TI_IRQn,
    .tei_irq = RIIC1_TEI_IRQn,
    .ipl = 24,
    .p_callback = i2c_slave_callback, // Callback
    .p_context = &g_i2c_slave_ctrl,
    .p_extend = &g_iic_slave_cfg_extend_standard_mode
    };
    void i2c_master_callback (i2c_master_callback_args_t * p_args)
    {
    g_i2c_master_callback_event = p_args->event;
    }
    void i2c_slave_callback (i2c_slave_callback_args_t * p_args)
    {
    g_i2c_slave_callback_event = p_args->event;
    {
    /* Transaction Successful */
    }
    {
    /* Read from Master */
    err = R_RIIC_SLAVE_Read(&g_i2c_slave_ctrl, g_i2c_slave_buffer, g_slave_transfer_length);
    assert(FSP_SUCCESS == err);
    }
    {
    /* Write to master */
    err = R_RIIC_SLAVE_Write(&g_i2c_slave_ctrl, g_i2c_slave_buffer, g_slave_transfer_length);
    assert(FSP_SUCCESS == err);
    }
    else
    {
    /* Error Event - reported through g_i2c_slave_callback_event */
    }
    }
    void basic_example (void)
    {
    uint32_t i;
    uint32_t timeout_ms = I2C_TRANSACTION_BUSY_DELAY;
    g_slave_transfer_length = I2C_BUFFER_SIZE_BYTES;
    /* Pin connections:
    * Channel 0 SDA <--> Channel 1 SDA
    * Channel 0 SCL <--> Channel 1 SCL
    */
    /* Initialize the RIIC Slave module */
    err = R_RIIC_SLAVE_Open(&g_i2c_slave_ctrl, &g_i2c_slave_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Initialize the RIIC Master module */
    err = R_RIIC_MASTER_Open(&g_i2c_master_ctrl, &g_i2c_master_cfg);
    assert(FSP_SUCCESS == err);
    /* Write some data to the transmit buffer */
    for (i = 0; i < I2C_BUFFER_SIZE_BYTES; i++)
    {
    g_i2c_master_tx_buffer[i] = (uint8_t) i;
    }
    /* Send data to I2C slave */
    g_i2c_master_callback_event = I2C_MASTER_EVENT_ABORTED;
    g_i2c_slave_callback_event = I2C_SLAVE_EVENT_ABORTED;
    err = R_RIIC_MASTER_Write(&g_i2c_master_ctrl, &g_i2c_master_tx_buffer[0], I2C_BUFFER_SIZE_BYTES, false);
    assert(FSP_SUCCESS == err);
    /* Since there is nothing else to do, block until Callback triggers
    * The Slave Callback will call the R_RIIC_SLAVE_Read API to service the Master Write Request.
    */
    while ((I2C_MASTER_EVENT_TX_COMPLETE != g_i2c_master_callback_event ||
    I2C_SLAVE_EVENT_RX_COMPLETE != g_i2c_slave_callback_event) && timeout_ms)
    {
    timeout_ms--;
    }
    if ((I2C_MASTER_EVENT_ABORTED == g_i2c_master_callback_event) ||
    (I2C_SLAVE_EVENT_ABORTED == g_i2c_slave_callback_event))
    {
    __BKPT(0);
    }
    /* Read data back from the I2C slave */
    g_i2c_master_callback_event = I2C_MASTER_EVENT_ABORTED;
    g_i2c_slave_callback_event = I2C_SLAVE_EVENT_ABORTED;
    timeout_ms = I2C_TRANSACTION_BUSY_DELAY;
    err = R_RIIC_MASTER_Read(&g_i2c_master_ctrl, &g_i2c_master_rx_buffer[0], I2C_BUFFER_SIZE_BYTES, false);
    assert(FSP_SUCCESS == err);
    /* Since there is nothing else to do, block until Callback triggers
    * The Slave Callback will call the R_RIIC_SLAVE_Write API to service the Master Read Request.
    */
    while ((I2C_MASTER_EVENT_RX_COMPLETE != g_i2c_master_callback_event ||
    I2C_SLAVE_EVENT_TX_COMPLETE != g_i2c_slave_callback_event) && timeout_ms)
    {
    timeout_ms--;
    }
    if ((I2C_MASTER_EVENT_ABORTED == g_i2c_master_callback_event) ||
    (I2C_SLAVE_EVENT_ABORTED == g_i2c_slave_callback_event))
    {
    __BKPT(0);
    }
    /* Verify the read data */
    if (0U != memcmp(g_i2c_master_tx_buffer, g_i2c_master_rx_buffer, I2C_BUFFER_SIZE_BYTES))
    {
    __BKPT(0);
    }
    }
    + + + + + +

    +Data Structures

    struct  iic_slave_clock_settings_t
     
    struct  riic_slave_extended_cfg_t
     
    +

    Data Structure Documentation

    + +

    ◆ iic_slave_clock_settings_t

    + +
    +
    + + + + +
    struct iic_slave_clock_settings_t
    +
    +

    I2C clock settings

    +
    + + + + + + + + + + +
    Data Fields
    +uint8_t +cks_value +Internal Reference Clock Select.
    +uint8_t +brl_value +Low-level period of SCL clock.
    +uint8_t +digital_filter_stages +Number of digital filter stages based on brl_value.
    + +
    +
    + +

    ◆ riic_slave_extended_cfg_t

    + +
    +
    + + + + +
    struct riic_slave_extended_cfg_t
    +
    +

    R_IIC_SLAVE extended configuration

    +
    + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +iic_slave_clock_settings_t +clock_settings +I2C Clock settings.
    +IRQn_Type +naki_irq +NACK IRQ Number.
    +IRQn_Type +sti_irq +Start condition IRQ Number.
    +IRQn_Type +spi_irq +Stop condition IRQ Number.
    +IRQn_Type +ali_irq +Arbitration lost IRQ Number.
    +IRQn_Type +tmoi_irq +Timeout IRQ Number.
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_RIIC_SLAVE_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_RIIC_SLAVE_Open (i2c_slave_ctrl_t *const p_api_ctrl,
    i2c_slave_cfg_t const *const p_cfg 
    )
    +
    +

    Opens the I2C slave device.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSI2C slave device opened successfully.
    FSP_ERR_ALREADY_OPENModule is already open.
    FSP_ERR_IP_CHANNEL_NOT_PRESENTChannel is not available on this MPU.
    FSP_ERR_INVALID_ARGUMENTNACK, Start, Stop, Timeout, Arbitration lost interrupt priority is lower than Transmit, Receive and Transmit End interrupt priority
    FSP_ERR_ASSERTIONParameter check failure due to one or more reasons below:
      +
    1. p_api_ctrl or p_cfg is NULL.
    2. +
    3. extended parameter is NULL.
    4. +
    5. Callback parameter is NULL.
    6. +
    7. Set the rate to fast mode plus on a channel which does not support it.
    8. +
    9. Invalid IRQ number assigned
    10. +
    +
    +
    +
    + +
    +
    + +

    ◆ R_RIIC_SLAVE_Read()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_RIIC_SLAVE_Read (i2c_slave_ctrl_t *const p_api_ctrl,
    uint8_t *const p_dest,
    uint32_t const bytes 
    )
    +
    +

    Performs a read from the I2C Master device.

    +

    This function will fail if there is already an in-progress I2C transfer on the associated channel. Otherwise, the I2C slave read operation will begin. The caller will be notified when the operation has finished by an I2C_SLAVE_EVENT_RX_COMPLETE in the callback. In case the master continues to write more data, an I2C_SLAVE_EVENT_RX_MORE_REQUEST will be issued via callback. In case of errors, an I2C_SLAVE_EVENT_ABORTED will be issued via callback.

    +
    Return values
    + + + + + +
    FSP_SUCCESSFunction executed without issue
    FSP_ERR_ASSERTIONp_api_ctrl, bytes or p_dest is NULL.
    FSP_ERR_IN_USEAnother transfer was in progress.
    FSP_ERR_NOT_OPENDevice is not open.
    +
    +
    + +
    +
    + +

    ◆ R_RIIC_SLAVE_Write()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_RIIC_SLAVE_Write (i2c_slave_ctrl_t *const p_api_ctrl,
    uint8_t *const p_src,
    uint32_t const bytes 
    )
    +
    +

    Performs a write to the I2C Master device.

    +

    This function will fail if there is already an in-progress I2C transfer on the associated channel. Otherwise, the I2C slave write operation will begin. The caller will be notified when the operation has finished by an I2C_SLAVE_EVENT_TX_COMPLETE in the callback. In case the master continues to read more data, an I2C_SLAVE_EVENT_TX_MORE_REQUEST will be issued via callback. In case of errors, an I2C_SLAVE_EVENT_ABORTED will be issued via callback.

    +
    Return values
    + + + + + +
    FSP_SUCCESSFunction executed without issue.
    FSP_ERR_ASSERTIONp_api_ctrl or p_src is NULL.
    FSP_ERR_IN_USEAnother transfer was in progress.
    FSP_ERR_NOT_OPENDevice is not open.
    +
    +
    + +
    +
    + +

    ◆ R_RIIC_SLAVE_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_RIIC_SLAVE_Close (i2c_slave_ctrl_t *const p_api_ctrl)
    +
    +

    Closes the I2C device.

    +
    Return values
    + + + + +
    FSP_SUCCESSDevice closed successfully.
    FSP_ERR_NOT_OPENDevice not opened.
    FSP_ERR_ASSERTIONp_api_ctrl is NULL.
    +
    +
    + +
    +
    + +

    ◆ R_RIIC_SLAVE_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_RIIC_SLAVE_CallbackSet (i2c_slave_ctrl_t *const p_api_ctrl,
    void(*)(i2c_slave_callback_args_t *) p_callback,
    void const *const p_context,
    i2c_slave_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback and has option of providing memory for callback structure. Implements i2c_slave_api_t::callbackSet

    +
    Return values
    + + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___r_i_i_c___s_l_a_v_e.js b/group___r_i_i_c___s_l_a_v_e.js new file mode 100644 index 0000000..9d9ba71 --- /dev/null +++ b/group___r_i_i_c___s_l_a_v_e.js @@ -0,0 +1,21 @@ +var group___r_i_i_c___s_l_a_v_e = +[ + [ "iic_slave_clock_settings_t", "group___r_i_i_c___s_l_a_v_e.html#structiic__slave__clock__settings__t", [ + [ "cks_value", "group___r_i_i_c___s_l_a_v_e.html#ae84939949fde82ff8600981d24e69d0f", null ], + [ "brl_value", "group___r_i_i_c___s_l_a_v_e.html#a41382084c8a91226db001a7321176112", null ], + [ "digital_filter_stages", "group___r_i_i_c___s_l_a_v_e.html#a8fbc88f3fad23597ec529cccaf5d5bc1", null ] + ] ], + [ "riic_slave_extended_cfg_t", "group___r_i_i_c___s_l_a_v_e.html#structriic__slave__extended__cfg__t", [ + [ "clock_settings", "group___r_i_i_c___s_l_a_v_e.html#aaf746e05cd94560cf30860aa9df619cf", null ], + [ "naki_irq", "group___r_i_i_c___s_l_a_v_e.html#aad289375a5899c38eddfb299556c01e9", null ], + [ "sti_irq", "group___r_i_i_c___s_l_a_v_e.html#a01d8a48ff4d983d8d8995d6dbd4e5ac6", null ], + [ "spi_irq", "group___r_i_i_c___s_l_a_v_e.html#a5710872e90c0db5ed2c177e883979cc7", null ], + [ "ali_irq", "group___r_i_i_c___s_l_a_v_e.html#a55c817a372e45b76fca43326c627c33f", null ], + [ "tmoi_irq", "group___r_i_i_c___s_l_a_v_e.html#a17643f2f26d82852032bd200631567ad", null ] + ] ], + [ "R_RIIC_SLAVE_Open", "group___r_i_i_c___s_l_a_v_e.html#gab0124cdb3b51609214466122053a7d15", null ], + [ "R_RIIC_SLAVE_Read", "group___r_i_i_c___s_l_a_v_e.html#ga46f545b8b7e7d94c773e2563f3cd2534", null ], + [ "R_RIIC_SLAVE_Write", "group___r_i_i_c___s_l_a_v_e.html#ga405ee8b79780785120d761af083f9557", null ], + [ "R_RIIC_SLAVE_Close", "group___r_i_i_c___s_l_a_v_e.html#ga4a85c440574e6f2f837f3e19188d1a67", null ], + [ "R_RIIC_SLAVE_CallbackSet", "group___r_i_i_c___s_l_a_v_e.html#gaeb7fb4539537de4f9388e6cdaab5f94d", null ] +]; \ No newline at end of file diff --git a/group___r_m___c_o_m_m_s___a_p_i.html b/group___r_m___c_o_m_m_s___a_p_i.html index 22fc1bb..21b6807 100644 --- a/group___r_m___c_o_m_m_s___a_p_i.html +++ b/group___r_m___c_o_m_m_s___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Communicatons Middleware Interface +RZV Flexible Software Package Documentation: Communicatons Middleware Interface @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    diff --git a/group___r_m___c_o_m_m_s___i2_c.html b/group___r_m___c_o_m_m_s___i2_c.html index d8980a6..c223ee8 100644 --- a/group___r_m___c_o_m_m_s___i2_c.html +++ b/group___r_m___c_o_m_m_s___i2_c.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: I2C Communication Device (rm_comms_i2c) +RZV Flexible Software Package Documentation: I2C Communication Device (rm_comms_i2c) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + + + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    I2C Communication Device (rm_comms_i2c)
    +
    I2C Communication Device (rm_comms_i2c)
    @@ -200,7 +268,7 @@

    Configurations for Connectivity > I2C Communication Device (rm_comms_i2c)

    Pin Configuration

    -

    This module uses SDA and SCL pins of I2C Master and SCI I2C.

    +

    This module uses SDA and SCL pins of I2C function.

    Usage Notes

    If an RTOS is used, blocking and bus lock is available.

    - @@ -74,6 +78,53 @@ + + + + + +

    FreeRTOS port for RZ MPUs.

    Overview

    -
    Note
    The FreeRTOS Port does not provide any interfaces to the user. Consult the FreeRTOS documentation at https://www.freertos.org/Documentation for further information.
    +
    Note
    The FreeRTOS Port does not provide any interfaces to the user. Consult the FreeRTOS documentation at https://www.freertos.org/Documentation for further information.
    +
    +There are no usage notes and examples in this documentation.
    +
    +When each core of a multicore device runs its own instance of FreeRTOS Port, please not use the same timer resource for each core to avoid conflicts.

    Features

    The RZ FreeRTOS port supports the following features:

      @@ -288,7 +360,7 @@

    - - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    HS300X Temperature/Humidity Sensor (rm_hs300x)
    +
    HS300X Temperature/Humidity Sensor (rm_hs300x)
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    General > Message Buffer Length TypeManual Entrysize_t FreeRTOS Message buffers use variables of type Message Buffer Length Type to store the length of each message. If Message Buffer Length Type is not defined then it will default to size_t. If the messages stored in a message buffer will never be larger than 255 bytes then defining Message Buffer Length Type to uint8_t will save 3 bytes per message on a 32-bit microcontroller. Likewise if the messages stored in a message buffer will never be larger than 65535 bytes then defining Message Buffer Length Type to uint16_t will save 2 bytes per message on a 32-bit microcontroller.
    General > Library Max Syscall Interrupt PriorityMPU Specific OptionsThe 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)
    +
    General > Library Max Syscall Interrupt PriorityMCU Specific OptionsThe 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)

    Below is explanation for macros that are set based on this value from FreeRTOS website.

    @@ -686,7 +758,7 @@

    diff --git a/group___r_m___h_s300_x.html b/group___r_m___h_s300_x.html index f16c8d9..52f4c02 100644 --- a/group___r_m___h_s300_x.html +++ b/group___r_m___h_s300_x.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: HS300X Temperature/Humidity Sensor (rm_hs300x) +RZV Flexible Software Package Documentation: HS300X Temperature/Humidity Sensor (rm_hs300x) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    @@ -188,7 +256,7 @@

    Configurations for Sensor > HS300X Temperature/Humidity Sensor (rm_hs300x

    Pin Configuration

    -

    This module use SDA and SCL pins of I2C Master and SCI I2C.

    +

    This module use SDA and SCL pins of I2C function.

    Usage Notes

    HS300x datasheet is here.
    @@ -630,7 +698,7 @@

      - +
    diff --git a/group___r_m___h_s300_x___a_p_i.html b/group___r_m___h_s300_x___a_p_i.html index ec3bed4..8618fc4 100644 --- a/group___r_m___h_s300_x___a_p_i.html +++ b/group___r_m___h_s300_x___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: HS300X Middleware Interface +RZV Flexible Software Package Documentation: HS300X Middleware Interface @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    - @@ -74,6 +78,53 @@ + + + + + + - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    HS400X Temperature/Humidity Sensor (rm_hs400x)
    +
    HS400X Temperature/Humidity Sensor (rm_hs400x)
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    @@ -163,7 +231,8 @@

  • Periodic Measurement
  • -

    + - @@ -74,6 +78,53 @@ + + + + + +
    No-Hold Measurement Select measurement type.
    No-Hold Measurement Select measurement type.
    +Note: When select No-Hold Measurement, it is recommended to set the Drive Capacity of the pins for I2C function to Low on Pins tab.
    Data type
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    OB1203 Light/Proximity/PPG Sensor (rm_ob1203)
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Functions

    fsp_err_t RM_OB1203_Open (rm_ob1203_ctrl_t *const p_api_ctrl, rm_ob1203_cfg_t const *const p_cfg)
     Opens and configures the OB1203 Middle module. Implements rm_ob1203_api_t::open. More...
     
    fsp_err_t RM_OB1203_Close (rm_ob1203_ctrl_t *const p_api_ctrl)
     Disables specified OB1203 control block. Implements rm_ob1203_api_t::close. More...
     
    fsp_err_t RM_OB1203_MeasurementStart (rm_ob1203_ctrl_t *const p_api_ctrl)
     Start measurement. Implements rm_ob1203_api_t::measurementStart. More...
     
    fsp_err_t RM_OB1203_MeasurementStop (rm_ob1203_ctrl_t *const p_api_ctrl)
     Stop measurement. If device interrupt is enabled, interrupt bits are cleared after measurement stop. If PPG mode, FIFO information is also reset after measurement stop. In RTOS and Light/Proximity/Light Proximity mode, if device interrupt is enabled, blocks 2 bytes on the I2C bus. In RTOS and PPG mode, if device interrupt is enabled, blocks 6 bytes on the I2C bus. If device interrupt is disabled, blocks 4 bytes on the I2C bus. Implements rm_ob1203_api_t::measurementStop. More...
     
    fsp_err_t RM_OB1203_LightRead (rm_ob1203_ctrl_t *const p_api_ctrl, rm_ob1203_raw_data_t *const p_raw_data, rm_ob1203_light_data_type_t type)
     Reads Light ADC data from OB1203 device. If device interrupt is enabled, interrupt bits are cleared after data read. In RTOS and Light mode, if device interrupt is enabled, blocks 2 bytes on the I2C bus. Implements rm_ob1203_api_t::lightRead. More...
     
    fsp_err_t RM_OB1203_LightDataCalculate (rm_ob1203_ctrl_t *const p_api_ctrl, rm_ob1203_raw_data_t *const p_raw_data, rm_ob1203_light_data_t *const p_ob1203_data)
     Calculate light data from raw data. Implements rm_ob1203_api_t::lightDataCalculate. More...
     
    fsp_err_t RM_OB1203_ProxRead (rm_ob1203_ctrl_t *const p_api_ctrl, rm_ob1203_raw_data_t *const p_raw_data)
     Reads Proximity ADC data from OB1203 device. If device interrupt is enabled, interrupt bits are cleared after data read. In RTOS and Proximity mode, if device interrupt is enabled, blocks 2 bytes on the I2C bus. Implements rm_ob1203_api_t::proxRead. More...
     
    fsp_err_t RM_OB1203_ProxDataCalculate (rm_ob1203_ctrl_t *const p_api_ctrl, rm_ob1203_raw_data_t *const p_raw_data, rm_ob1203_prox_data_t *const p_ob1203_data)
     Calculate proximity data from raw data. Implements rm_ob1203_api_t::proxDataCalculate. More...
     
    fsp_err_t RM_OB1203_PpgRead (rm_ob1203_ctrl_t *const p_api_ctrl, rm_ob1203_raw_data_t *const p_raw_data, uint8_t const number_of_samples)
     Reads PPG ADC data from OB1203 device. One sample requires three bytes. 0 cannot set to the number of samples. Implements rm_ob1203_api_t::ppgRead. More...
     
    fsp_err_t RM_OB1203_PpgDataCalculate (rm_ob1203_ctrl_t *const p_api_ctrl, rm_ob1203_raw_data_t *const p_raw_data, rm_ob1203_ppg_data_t *const p_ob1203_data)
     Calculate PPG data from raw data. Implements rm_ob1203_api_t::ppgDataCalculate. More...
     
    fsp_err_t RM_OB1203_GainSet (rm_ob1203_ctrl_t *const p_api_ctrl, rm_ob1203_gain_t const gain)
     Set gain. This function should be called after calling RM_OB1203_MeasurementStop(). In RTOS and Light Proximity mode, blocks 2 bytes on the I2C bus. Implements rm_ob1203_api_t::gainSet. More...
     
    fsp_err_t RM_OB1203_LedCurrentSet (rm_ob1203_ctrl_t *const p_api_ctrl, rm_ob1203_led_current_t const led_current)
     Set currents. This function should be called after calling RM_OB1203_MeasurementStop(). Implements rm_ob1203_api_t::ledCurrentSet. More...
     
    fsp_err_t RM_OB1203_DeviceInterruptCfgSet (rm_ob1203_ctrl_t *const p_api_ctrl, rm_ob1203_device_interrupt_cfg_t const interrupt_cfg)
     Set device interrupt configurations. This function should be called after calling RM_OB1203_MeasurementStop(). Implements rm_ob1203_api_t::deviceInterruptCfgSet. More...
     
    fsp_err_t RM_OB1203_FifoInfoGet (rm_ob1203_ctrl_t *const p_api_ctrl, rm_ob1203_fifo_info_t *const p_fifo_info)
     Get FIFO information from OB1203 device. Implements rm_ob1203_api_t::fifoInfoGet. More...
     
    fsp_err_t RM_OB1203_DeviceStatusGet (rm_ob1203_ctrl_t *const p_api_ctrl, rm_ob1203_device_status_t *const p_status)
     Get device status from OB1203 device. Clear all interrupt bits. Implements rm_ob1203_api_t::deviceStatusGet. More...
     
    -

    Detailed Description

    -

    Middleware to implement the OB1203 sensor interface. This module implements the OB1203 Middleware Interface.

    -

    -Overview

    -

    This module provides APIs for configuring and controlling the OB1203 sensor operation modes. Supported OB1203 sensor operation modes are below.

      -
    • Light mode
    • -
    • Proximity mode
    • -
    • Light Proximity mode
    • -
    • PPG mode
    • -
    -

    -Limitations

    -

    This version does not support PPG mode in NonOS projects. Also, non-blocking cannot be used in PPG mode in RTOS projects. Please configure the following properties of the I2C Communication Shared Bus to "Use" in PPG mode in RTOS projects.

      -
    • Semaphore for Blocking (RTOS only)
    • -
    • Recursive Mutex for Bus (RTOS only)
    • -
    -

    -Features

    -

    The OB1203 sensor interface implementation has the following key features:

      -
    • Initialize the sensor for measurement
    • -
    • Start and stop a measurement at any time
    • -
    • Get the ADC data from the sensor
    • -
    • Calculate the Light/Proximity/PPG values.
    • -
    • Software reset
    • -
    -

    -Configuration

    -

    Build Time Configurations for rm_ob1203

    -The following build time configurations are defined in fsp_cfg/rm_ob1203_cfg.h:
    -

    - - - - -
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      -
    • -Default (BSP)
    • -
    • -Enabled
    • -
    • -Disabled
    • -
    -
    Default (BSP) If selected code for parameter checking is included in the build.
    -

    Configurations for Sensor > OB1203 Light/Proximity/PPG Sensor (rm_ob1203)

    -This module can be added to the Stacks tab via New Stack > Sensor > OB1203 Light/Proximity/PPG Sensor (rm_ob1203).
    -

    - - - - - - - - - - -
    ConfigurationOptionsDefaultDescription
    NameManual Entryg_ob1203_sensor0 Module name.
    Semaphore Timeout (RTOS only)Value must be a non-negative integer0xFFFFFFFF Set timeout for blocking in using RTOS.
    Comms I2C CallbackName must be a valid C symbolob1203_comms_i2c_callback A user COMMS I2C callback function can be provided.
    IRQ CallbackName must be a valid C symbolob1203_irq_callback A user IRQ callback function can be provided.
    -

    Configurations for Sensor > OB1203 Light mode (rm_ob1203)

    - - - - - - - - - - - - - - - - - - - - - - - -
    ConfigurationOptionsDefaultDescription
    Operation Mode
      -
    • -LS mode
    • -
    • -CS mode
    • -
    -
    LS mode Set operation mode.
    Interrupt Type
      -
    • -Threshold
    • -
    • -Variation
    • -
    -
    Threshold Set interrupt type.
    Interrupt Source
      -
    • -Clear channel
    • -
    • -Green channel
    • -
    • -Red channel (CS mode only)
    • -
    • -Blue channel (CS mode only)
    • -
    -
    Clear channel Set interrupt source.
    The Number of Similar Consecutive Interrupt EventsValue must be a non-negative integer0x02 The number of similar consecutive Light mode interrupt events that must occur before the interrupt is asserted (4bits). Min = 0x0 and Max = 0xF
    Sleep after Interrupt
      -
    • -Enabled
    • -
    • -Disabled
    • -
    -
    Disabled Set sleep after interrupt.
    Gain
      -
    • -1
    • -
    • -3
    • -
    • -6
    • -
    -
    3 Set gain for detection range.
    Resolution and Measurement PeriodRefer to the Configuration tool for available options.Resolution:18bit. Measurement Period:100ms Set resolution and measurement period.
    Upper ThresholdValue must be a non-negative integer0x00CCC Set upper threshold value (20bits). Min = 0x00000 and Max = 0xFFFFF.
    Lower ThresholdValue must be a non-negative integer0x00000 Set lower threshold value (20bits). Min = 0x00000 and Max = 0xFFFFF.
    Variance Threshold
      -
    • -+/- 8 counts
    • -
    • -+/- 16 counts
    • -
    • -+/- 32 counts
    • -
    • -+/- 64 counts
    • -
    • -+/- 128 counts
    • -
    • -+/- 256 counts
    • -
    • -+/- 512 counts
    • -
    • -+/- 1024 counts
    • -
    -
    +/- 128 counts Set variance threshold. New data varies by selected counts compared to previous result.
    -

    Configurations for Sensor > OB1203 Proximity mode (rm_ob1203)

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ConfigurationOptionsDefaultDescription
    Interrupt Type
      -
    • -Normal
    • -
    • -Logic
    • -
    -
    Normal Set interrupt type.
    The Number of Similar Consecutive Interrupt EventsValue must be a non-negative integer0x02 The number of similar consecutive Proximity mode interrupt events that must occur before the interrupt is asserted (4bits). Min = 0x0 and Max = 0xF
    Sleep after Interrupt
      -
    • -Enabled
    • -
    • -Disabled
    • -
    -
    Disabled Set sleep after interrupt.
    Gain
      -
    • -1
    • -
    • -1.5
    • -
    • -2
    • -
    • -4
    • -
    -
    1 Set gain of ADC output and noise.
    LED CurrentValue must be a non-negative integer0x100 Set Current for LED (10bits). Min = 0x000 and Max = 0x3FF
    LED Order
      -
    • -IR LED first, Red LED second
    • -
    • -Red LED first, IR LED second
    • -
    -
    IR LED first, Red LED second Set LED order.
    LED Analog Cancellation
      -
    • -Enabled (50% offset of the full-scale value)
    • -
    • -Disabled
    • -
    -
    Disabled Set analog cancellation level.
    LED Digital CancellationValue must be a non-negative integer0x100 Set digital cancellation level (16bits). Min = 0x0000 and Max = 0xFFFF
    Number of LED pulses
      -
    • -1 pulse
    • -
    • -2 pulses
    • -
    • -4 pulses
    • -
    • -8 pulses
    • -
    • -16 pulses
    • -
    • -32 pulses
    • -
    -
    8 pulses Set number of LED pulses.
    Pulse Width and Measurement PeriodRefer to the Configuration tool for available options.Pulse width:42us. Measurement Period:100ms Set pulse width and measurement period.
    Moving Average
      -
    • -Enabled
    • -
    • -Disabled
    • -
    -
    Disabled Set moving average.
    HysteresisValue must be a non-negative integer0x00 Set hysteresis level (7bits). Min = 0x00 and Max = 0x7F.
    Upper ThresholdValue must be a non-negative integer0x0600 Set upper threshold value (16bits). Min = 0x0000 and Max = 0xFFFF.
    Lower ThresholdValue must be a non-negative integer0x0000 Set lower threshold value (16bits). Min = 0x0000 and Max = 0xFFFF.
    -

    Configurations for Sensor > OB1203 PPG mode (rm_ob1203)

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ConfigurationOptionsDefaultDescription
    Operation Mode
      -
    • -PPG1 mode
    • -
    • -PPG2 mode
    • -
    -
    PPG2 mode Set operation mode.
    Interrupt Type
      -
    • -Data
    • -
    • -FIFO Almost Full
    • -
    -
    Data Set interrupt type.
    Gain
      -
    • -1
    • -
    • -1.5
    • -
    • -2
    • -
    • -4
    • -
    -
    1 Set gain of ADC output and noise.
    IR LED CurrentValue must be a non-negative integer0x366 Set Current for IR LED (10bits). Min = 0x000 and Max = 0x3FF
    Red LED CurrentValue must be a non-negative integer0x1B3 Set Current for Red LED (9bits). Min = 0x000 and Max = 0x1FF
    Power Save Mode
      -
    • -Enabled
    • -
    • -Disabled
    • -
    -
    Disabled Set power save mode.
    LED Order
      -
    • -IR LED first, Red LED second
    • -
    • -Red LED first, IR LED second
    • -
    -
    IR LED first, Red LED second Set LED order.
    IR LED Analog Cancellation
      -
    • -Enabled (50% offset of the full-scale value)
    • -
    • -Disabled
    • -
    -
    Disabled Set analog cancellation level.
    Red LED Analog Cancellation
      -
    • -Enabled (50% offset of the full-scale value)
    • -
    • -Disabled
    • -
    -
    Disabled Set analog cancellation level.
    Number of Averaged PPG Samples
      -
    • -1 (No averaging)
    • -
    • -2 consecutives samples are averaged
    • -
    • -4 consecutives samples are averaged
    • -
    • -8 consecutives samples are averaged
    • -
    • -16 consecutives samples are averaged
    • -
    • -32 consecutives samples are averaged
    • -
    -
    8 consecutives samples are averaged Set number of averaged for PPG samples.
    Pulse Width and Measurement PeriodRefer to the Configuration tool for available options.Pulse width:130us. Measurement Period:1.25ms Set pulse width and measurement period.
    FIFO Rollover
      -
    • -Enabled
    • -
    • -Disabled
    • -
    -
    Enabled Set FIFO rollover.
    FIFO Almost Full ValueValue must be a non-negative integer0x0C Set the number of empty FIFO words when the FIFO almost full interrupt is issued (4bits). Min = 0x0 and Max = 0xF. In PPG2 Mode, only even values must be used.
    -

    Configurations for Sensor > OB1203 Light Proximity mode (rm_ob1203)

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ConfigurationOptionsDefaultDescription
    General > Device Interrupt
      -
    • -Light mode
    • -
    • -Proximity mode
    • -
    -
    Light mode Select an operation mode using device interrupt.
    Light mode > Operation Mode
      -
    • -LS mode
    • -
    • -CS mode
    • -
    -
    LS mode Set operation mode.
    Light mode > Interrupt Type
      -
    • -Threshold
    • -
    • -Variation
    • -
    -
    Threshold Set interrupt type.
    Light mode > Interrupt Source
      -
    • -Clear channel
    • -
    • -Green channel
    • -
    • -Red channel (CS mode only)
    • -
    • -Blue channel (CS mode only)
    • -
    -
    Clear channel Set interrupt source.
    Light mode > The Number of Similar Consecutive Interrupt EventsValue must be a non-negative integer0x02 The number of similar consecutive Light mode interrupt events that must occur before the interrupt is asserted (4bits). Min = 0x0 and Max = 0xF
    Light mode > Sleep after Interrupt
      -
    • -Enabled
    • -
    • -Disabled
    • -
    -
    Disabled Set sleep after interrupt.
    Light mode > Gain
      -
    • -1
    • -
    • -3
    • -
    • -6
    • -
    -
    3 Set gain for detection range.
    Light mode > Resolution and Measurement PeriodRefer to the Configuration tool for available options.Resolution:18bit. Measurement Period:100ms Set resolution and measurement period.
    Light mode > Upper ThresholdValue must be a non-negative integer0x00CCC Set upper threshold value (20bits). Min = 0x00000 and Max = 0xFFFFF.
    Light mode > Lower ThresholdValue must be a non-negative integer0x00000 Set lower threshold value (20bits). Min = 0x00000 and Max = 0xFFFFF.
    Light mode > Variance Threshold
      -
    • -+/- 8 counts
    • -
    • -+/- 16 counts
    • -
    • -+/- 32 counts
    • -
    • -+/- 64 counts
    • -
    • -+/- 128 counts
    • -
    • -+/- 256 counts
    • -
    • -+/- 512 counts
    • -
    • -+/- 1024 counts
    • -
    -
    +/- 128 counts Set variance threshold. New data varies by selected counts compared to previous result.
    Proximity mode > Interrupt Type
      -
    • -Normal
    • -
    • -Logic
    • -
    -
    Normal Set interrupt type.
    Proximity mode > The Number of Similar Consecutive Interrupt EventsValue must be a non-negative integer0x02 The number of similar consecutive Proximity mode interrupt events that must occur before the interrupt is asserted (4bits). Min = 0x0 and Max = 0xF
    Proximity mode > Sleep after Interrupt
      -
    • -Enabled
    • -
    • -Disabled
    • -
    -
    Disabled Set sleep after interrupt.
    Proximity mode > Gain
      -
    • -1
    • -
    • -1.5
    • -
    • -2
    • -
    • -4
    • -
    -
    1 Set gain of ADC output and noise.
    Proximity mode > LED CurrentValue must be a non-negative integer0x100 Set Current for LED (10bits). Min = 0x000 and Max = 0x3FF
    Proximity mode > LED Order
      -
    • -IR LED first, Red LED second
    • -
    • -Red LED first, IR LED second
    • -
    -
    IR LED first, Red LED second Set LED order.
    Proximity mode > LED Analog Cancellation
      -
    • -Enabled (50% offset of the full-scale value)
    • -
    • -Disabled
    • -
    -
    Disabled Set analog cancellation level.
    Proximity mode > LED Digital CancellationValue must be a non-negative integer0x100 Set digital cancellation level (16bits). Min = 0x0000 and Max = 0xFFFF
    Proximity mode > Number of LED pulses
      -
    • -1 pulse
    • -
    • -2 pulses
    • -
    • -4 pulses
    • -
    • -8 pulses
    • -
    • -16 pulses
    • -
    • -32 pulses
    • -
    -
    8 pulses Set number of LED pulses.
    Proximity mode > Pulse Width and Measurement PeriodRefer to the Configuration tool for available options.Pulse width:42us. Measurement Period:100ms Set pulse width and measurement period.
    Proximity mode > Moving Average
      -
    • -Enabled
    • -
    • -Disabled
    • -
    -
    Disabled Set moving average.
    Proximity mode > HysteresisValue must be a non-negative integer0x00 Set hysteresis level (7bits). Min = 0x00 and Max = 0x7F.
    Proximity mode > Upper ThresholdValue must be a non-negative integer0x0600 Set upper threshold value (16bits). Min = 0x0000 and Max = 0xFFFF.
    Proximity mode > Lower ThresholdValue must be a non-negative integer0x0000 Set lower threshold value (16bits). Min = 0x0000 and Max = 0xFFFF.
    -

    -

    -Pin Configuration

    -

    This module uses I2C Master and IRQ drivers. Therefore, this module uses SDA and SCL pins of I2C Master and an IRQ pin.

    -

    -Usage Notes

    -

    OB1203 datasheet is here.
    - The OB1203 has four operation modes.
    -

    Light mode

    -

    Light mode has two operation modes.
    -

    - - - - - - -
    Operation mode Red Green Blue Clear Comp *1
    LS mode
    CS mode
    -

    *1 : Temperature compensation data
    -
    -Light mode features are below.

      -
    • High lux accuracy over different light sources
    • -
    • Absolute sensitivity: 0.06 lux to > 150000 lux
    • -
    • Output resolution: 13 to 20 bits
    • -
    • Three LS/CS gain modes: x1 to x6
    • -
    • Highly linear output, 50Hz/60Hz light and fluorescent light flicker immunity
    • -
    • Four parallel channels (red, green, blue, clear)
    • -
    • Accurate Correlated Color Temperature (CCT)
    • -
    • Accurate CIE 1931 XYZ (RGB) color measurement
    • -
    • Very stable spectral response over angle of light incidence
    • -
    -

    Proximity mode

    -

    Proximity mode features are below.

      -
    • Integrated and trimmed LED source, driver, and photodetector
    • -
    • Programmable pulsed LED up to 250mA output current
    • -
    • High resolution (12 to 16 bits)
    • -
    • Object movement detection (in/out)
    • -
    • Ambient light suppression > 100klx sun light
    • -
    • Crosstalk cancelation (analog and digital)
    • -
    -

    PPG mode

    -

    PPG mode has two operation modes.
    -

    - - - - - - -
    Operation mode Discription
    PPG1 mode Only one LED is used. This mode allows determination of parameters related to heart rate with an appropriate algorithm
    PPG2 mode Two LED are used. Second LED is used as a transmitter. This mode supports further analysis, such as SpO2 and respiration rate determination.
    -

    PPG mode features are below.

      -
    • SpO2 measurement behind visibly dark, IR transmissive ink
    • -
    • Industry’s smallest optical biosensor module
    • -
    • Fully integrated and trimmed module, including two LEDs, 250mA maximum drive current, and photodetectors
    • -
    • Output resolution PPG: 16 to 18 bits
    • -
    • Data stored in 18-bit wide, 32-sample FIFO memory
    • -
    • Integrated averaging function for higher signal-to-noise ratio(SNR) and data rate reduction
    • -
    • Programmable measurement rate: up to 3200 samples per second
    • -
    • High SNR
    • -
    -

    Light Proximity mode

    -

    Light mode and Proximity mode can be used in parallel.

    -

    Bus Initialization

    -

    The OB1203 interface expects a bus instance to be opened before opening any OB1203 device. The interface will handle switching between devices on the bus but will not open or close the bus instance. The user should open the bus with the appropriate I2C Master Interface open call.

    -

    If an RTOS is used, blocking and bus lock for I2C bus are available.

      -
    • If blocking of an I2C bus is required, it is necessary to create a semaphore for blocking.
    • -
    • If bus lock is required, it is necessary to create a mutex for bus lock. Bus lock is only available when a semaphore for blocking is used.
    • -
    -

    Initialization

    -

    Initialize with RM_OB1203_Open().

    -

    From measurement start to data acquisition

    -

    After normal completion, start the measurement with RM_OB1203_MeasurementStart().

    -

    Light mode

    -

    If IRQ is enabled

    -
      -
    1. Wait until RM_OB1203_EVENT_THRESHOLD_CROSSED is received via IRQ callback.
    2. -
    3. Call RM_OB1203_LightRead(). This function will read the ADC data and clear the interrupt bits.
    4. -
    5. Wait until RM_OB1203_EVENT_SUCCESS is received.
    6. -
    7. Call RM_OB1203_LightDataCalculate(). This function will calculate light data from the ADC data.
    8. -
    -

    If IRQ is disabled

    -
      -
    1. Wait for measurement period configured.
    2. -
    3. Call RM_OB1203_LightRead(). This function will read the ADC data.
    4. -
    5. Wait until RM_OB1203_EVENT_SUCCESS is received.
    6. -
    7. Call RM_OB1203_LightDataCalculate(). This function will calculate light data from the ADC data.
    8. -
    -

    Proximity mode

    -

    If IRQ is enabled

    -
      -
    1. Wait until RM_OB1203_EVENT_THRESHOLD_CROSSED or RM_OB1203_EVENT_OBJECT_NEAR is received via IRQ callback.
    2. -
    3. Call RM_OB1203_ProxRead(). This function will read the ADC data and clear the interrupt bits.
    4. -
    5. Wait until RM_OB1203_EVENT_SUCCESS is received.
    6. -
    7. Call RM_OB1203_ProxDataCalculate(). This function will calculate proximity data from the ADC data.
    8. -
    -

    If IRQ is disabled

    -
      -
    1. Wait for measurement period configured.
    2. -
    3. Call RM_OB1203_ProxRead(). This function will read the ADC data.
    4. -
    5. Wait until RM_OB1203_EVENT_SUCCESS is received.
    6. -
    7. Call RM_OB1203_ProxDataCalculate(). This function will calculate proximity data from the ADC data.
    8. -
    -

    PPG mode

    -

    If IRQ is enabled

    -
      -
    1. Wait until RM_OB1203_EVENT_MEASUREMENT_COMPLETE is received via IRQ callback.
    2. -
    3. Call RM_OB1203_PpgRead(). This function will read the ADC data and clear the interrupt bits. In PPG2 mode, the number of read FIFO samples must be even value because two samples is one pair.
    4. -
    5. Wait until RM_OB1203_EVENT_SUCCESS is received.
    6. -
    7. Call RM_OB1203_PpgDataCalculate(). This function will calculate PPG data from the ADC data.
    8. -
    -

    If IRQ is disabled

    -
      -
    1. Wait for measurement period configured.
    2. -
    3. Call RM_OB1203_PpgRead(). This function will read the ADC data. In PPG2 mode, the number of read FIFO samples must be even value because two samples is one pair.
    4. -
    5. Wait until RM_OB1203_EVENT_SUCCESS is received.
    6. -
    7. Call RM_OB1203_PpgDataCalculate(). This function will calculate PPG data from the ADC data.
    8. -
    -

    Light Proximity mode

    -

    Combination of the above Light mode and Proximity mode.

    -

    Getting device status

    -

    Call RM_OB1203_DeviceStatusGet(). This function will get device status over I2C.

    -
      -
    • If power_on_reset_occur is true, the part has had a power-up event, either because the part was turned on or because there was a power-supply voltage disturbance.
    • -
    • If light_interrupt_occur is true, Light mode interrupt condition has occurred.
    • -
    • If light_measurement_complete is true, Light mode measurement is complete.
    • -
    • If ts_measurement_complete is true, TS measurement is complete.
    • -
    • If fifo_afull_interrupt_occur is true, FIFO almost full interrupt condition has occurred.
    • -
    • If ppg_measurement_complete is true, PPG mode measurement is complete.
    • -
    • If object_near is true, an object is near.
    • -
    • If prox_interrupt_occur is true, Proximity mode interrupt condition has occurred.
    • -
    • If prox_measurement_complete is true, Proximity mode measurement is complete.
    • -
    -

    Clearing interrupt bits

    -

    If interrupt bits are needed to clear without calling RM_OB1203_LightRead(), RM_OB1203_ProxRead(), RM_OB1203_PpgRead() and RM_OB1203_MeasurementStop(), please call RM_OB1203_DeviceStatusGet(). Interrupt bits are reset by STATUS_0 and STATUS_1 registers read.

    -

    Sleep after interrupt

    -

    Sleep after interrupt is valid in Light mode and Proximity mode. If a sleep after interrupt bit are set, a measurement will be stopped after an interrupt occurs. After STATUS_0 and STATUS_1 registers are read, a measurement will be started. please call RM_OB1203_DeviceStatusGet().

    -

    PPG FIFO

    -

    PPG FIFO data is stored in 18-bit wide, 32-sample FIFO memory.
    -The FIFO almost full interrupt is triggered when a certain number of free FIFO registers are remaining.
    -If FIFO informations (write index, read index, overflow counter, unread_samples) are got, Call RM_OB1203_FifoInfoGet().

      -
    • write_index is the FIFO index where the next sample of PPG data will be written in the FIFO.
    • -
    • read_index is the index of the next sample to be read from the FIFO_DATA register.
    • -
    • overflow_counter is the number of old samples (up to 15) which are overwritten by new data. If the FIFO Rollover is enabled, the FIFO overflow counter counts.
    • -
    • unread_samples is the number of unread FIFO samples, which can be calculated by write index and read index.
    • -
    -

    Reconfiguration

    -

    The interface supports the following APIs for reconfiguration.

    - - - - - - - - -
    API Discription
    RM_OB1203_GainSet() Set gain
    RM_OB1203_LedCurrentSet() Set LED currents.
    - Proximity mode and Light Proximity mode: LED Current is 10bits. Min = 0x000 and Max = 0x3FF
    - PPG mode: IR/Red LED currents are 10bits/9bits. Min = 0x000/0x000 and Max = 0x3FF/0x1FF
    RM_OB1203_DeviceInterruptCfgSet() Set interrupt configurations.
    -

    Relationship between APIs and registers

    -

    The relationship between APIs and registers accessed by the API is below.

    - - - - - - - - - - - - - - - - - - - - - - - -
    API Registers
    RM_OB1203_MeasurementStart() MAIN_CTRL_0 and MAIN_CTRL_1
    RM_OB1203_MeasurementStop() MAIN_CTRL_0, MAIN_CTRL_1 , STATUS_0, STATUS_1, FIFO_WR_PTR, FIFO_RD_PTR and FIFO_OVF_CNT
    RM_OB1203_LightRead() LS_CLEAR_DATA, LS_GREEN_DATA, LS_BULE_DATA, LS_RED_DATA, COMP_DATA, STATUS_0 and STATUS_1
    RM_OB1203_ProxRead() PS_DATA, STATUS_0 and STATUS_1
    RM_OB1203_PpgRead() FIFO_DATA
    RM_OB1203_DeviceStatusGet() STATUS_0 and STATUS_1
    RM_OB1203_GainSet() LS_GAIN and PPG_PS_GAIN
    RM_OB1203_LedCurrentSet() PS_LED_CURR, PPG_IRLED_CURR and PPG_RLED_CURR
    RM_OB1203_DeviceInterruptCfgSet() INT_CFG_0, INT_CFG_1 and INT_PST
    RM_OB1203_FifoInfoGet() FIFO_WR_PTR, FIFO_RD_PTR and FIFO_OVF_CNT
    -

    Notifications

    -

    The application note [R01AN6311] using this module has an algorithm for biometric data calculation. The algorithm has the constraint of sampling rate (default: 100 samples per second). Please refer to the application note [R36AN0001EU] and OB1203 sensor page (https://www.renesas.com/jp/en/products/sensor-products/biosensors/ob1203-heart-rate-blood-oxygen-concentration-pulse-oximetry-proximity-light-and-color-sensor)
    -R01AN6311 : https://www.renesas.com/document/apn/ob1203-sample-application-sample-code
    -R36AN0001EU : https://www.renesas.com/document/apn/ob1203-pulse-oximeter-algorithm-spo2-heart-rate-and-respiration-rate
    -

    -

    If multiple operation modes is used with a single OB1203 sensor device, rm_ob1203 modules need to be used while switching between operation modes because modules cannot work in parallel. Threfore, a current rm_ob1203 module must be closed with RM_OB1203_Close() before another rm_ob1203 module is opened with RM_OB1203_Open().

    -

    -Examples

    -

    Basic Example

    -

    These are basic examples of minimal use of OB1203 sensor implementation in an application.

    -

    Light mode

    -
    void rm_ob1203_light_mode_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    #if 0 == RM_OB1203_EXAMPLE_IRQ_ENABLE
    #endif
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_ob1203_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    err = RM_OB1203_Open(&g_ob1203_ctrl, &g_ob1203_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    g_i2c_flag = 0;
    /* Start measurement */
    RM_OB1203_MeasurementStart(&g_ob1203_ctrl);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    while (true)
    {
    #if RM_OB1203_EXAMPLE_IRQ_ENABLE
    /* Wait IRQ callback */
    while (0 == g_irq_flag)
    {
    /* Wait callback */
    }
    g_irq_flag = 0;
    #else
    do
    {
    g_i2c_flag = 0;
    /* Get device status */
    RM_OB1203_DeviceStatusGet(&g_ob1203_ctrl, &device_status);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    } while (false == device_status.light_measurement_complete);
    #endif
    g_i2c_flag = 0;
    /* Read ADC data */
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    /* Calculate light data */
    RM_OB1203_LightDataCalculate(&g_ob1203_ctrl, &raw_data, &ob1203_data);
    }
    }

    Proximity mode

    -
    void rm_ob1203_prox_mode_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    rm_ob1203_prox_data_t ob1203_data;
    #if 0 == RM_OB1203_EXAMPLE_IRQ_ENABLE
    #endif
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_ob1203_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    err = RM_OB1203_Open(&g_ob1203_ctrl, &g_ob1203_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    g_i2c_flag = 0;
    /* Start measurement */
    RM_OB1203_MeasurementStart(&g_ob1203_ctrl);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    while (true)
    {
    #if RM_OB1203_EXAMPLE_IRQ_ENABLE
    /* Wait IRQ callback */
    while (0 == g_irq_flag)
    {
    /* Wait callback */
    }
    g_irq_flag = 0;
    #else
    do
    {
    g_i2c_flag = 0;
    /* Get device status */
    RM_OB1203_DeviceStatusGet(&g_ob1203_ctrl, &device_status);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    } while (false == device_status.prox_measurement_complete);
    #endif
    g_i2c_flag = 0;
    /* Read ADC data */
    RM_OB1203_ProxRead(&g_ob1203_ctrl, &raw_data);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    /* Calculate proximity data */
    RM_OB1203_ProxDataCalculate(&g_ob1203_ctrl, &raw_data, &ob1203_data);
    }
    }

    Light Proximity mode

    -
    void rm_ob1203_light_prox_mode_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    rm_ob1203_light_data_t ob1203_light_data;
    rm_ob1203_prox_data_t ob1203_prox_data;
    #if 0 == RM_OB1203_EXAMPLE_IRQ_ENABLE
    #endif
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_ob1203_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    err = RM_OB1203_Open(&g_ob1203_ctrl, &g_ob1203_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    g_i2c_flag = 0;
    /* Start measurement in both Light and Proximity modes */
    RM_OB1203_MeasurementStart(&g_ob1203_ctrl);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    /*
    * Example :
    * Device interrupt : Proximity mode
    * Measurement peroid(Light mode) : 50ms
    * Measurement peroid(Proximity mode) : 100ms
    */
    while (true)
    {
    /* Delay 50ms for Light mode */
    R_BSP_SoftwareDelay(RM_OB1203_EXAMPLE_DELAY_50MS, BSP_DELAY_UNITS_MILLISECONDS);
    g_i2c_flag = 0;
    /* Read Light ADC data */
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    /* Calculate Light data */
    RM_OB1203_LightDataCalculate(&g_ob1203_ctrl, &raw_data, &ob1203_light_data);
    #if RM_OB1203_EXAMPLE_IRQ_ENABLE
    /* Wait IRQ callback */
    while (0 == g_irq_flag)
    {
    /* Wait callback */
    }
    g_irq_flag = 0;
    #else
    do
    {
    g_i2c_flag = 0;
    /* Get device status */
    RM_OB1203_DeviceStatusGet(&g_ob1203_ctrl, &device_status);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    } while (false == device_status.prox_measurement_complete);
    #endif
    g_i2c_flag = 0;
    /* Read Proximity ADC data */
    RM_OB1203_ProxRead(&g_ob1203_ctrl, &raw_data);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    /* Calculate proximity data */
    RM_OB1203_ProxDataCalculate(&g_ob1203_ctrl, &raw_data, &ob1203_prox_data);
    }
    }

    PPG mode

    -
    void rm_ob1203_ppg_mode_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    rm_ob1203_ppg_data_t ob1203_data;
    #if 0 == RM_OB1203_EXAMPLE_IRQ_ENABLE
    #endif
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_ob1203_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    err = RM_OB1203_Open(&g_ob1203_ctrl, &g_ob1203_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    g_i2c_flag = 0;
    /* Start measurement */
    RM_OB1203_MeasurementStart(&g_ob1203_ctrl);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    while (true)
    {
    #if RM_OB1203_EXAMPLE_IRQ_ENABLE
    /* Wait IRQ callback */
    while (0 == g_irq_flag)
    {
    /* Wait callback */
    }
    g_irq_flag = 0;
    #else
    do
    {
    g_i2c_flag = 0;
    /* Get device status */
    RM_OB1203_DeviceStatusGet(&g_ob1203_ctrl, &device_status);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    } while (false == device_status.ppg_measurement_complete);
    #endif
    g_i2c_flag = 0;
    /* Read ADC data */
    RM_OB1203_PpgRead(&g_ob1203_ctrl, &raw_data, 2);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    /* Calculate ppg data */
    RM_OB1203_PpgDataCalculate(&g_ob1203_ctrl, &raw_data, &ob1203_data);
    }
    }

    Light mode reconfiguration at runtime

    -
    void rm_ob1203_light_reconfiguration_basic_example (void)
    {
    g_i2c_flag = 0;
    /* Stop a measurement */
    RM_OB1203_MeasurementStop(&g_ob1203_ctrl);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    /* Set Light mode gain.
    * Example : Gain mode is 1.
    */
    {
    };
    RM_OB1203_GainSet(&g_ob1203_ctrl, gain);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    #if RM_OB1203_EXAMPLE_IRQ_ENABLE
    /* Set interrupt configurations for Light mode.
    * Example :
    * Source : Green channel
    * Type : threshold interrupt
    * Persist : 0x02
    */
    {
    .persist = 0x02,
    };
    RM_OB1203_DeviceInterruptCfgSet(&g_ob1203_ctrl, interrupt_cfg);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    #endif
    /* Restart a measurement */
    RM_OB1203_MeasurementStart(&g_ob1203_ctrl);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    }

    Proximity mode reconfiguration at runtime

    -
    void rm_ob1203_prox_reconfiguration_basic_example (void)
    {
    g_i2c_flag = 0;
    /* Stop a measurement */
    RM_OB1203_MeasurementStop(&g_ob1203_ctrl);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    /* Set Proximity mode gain.
    * Example : Gain mode is 2.
    */
    {
    };
    RM_OB1203_GainSet(&g_ob1203_ctrl, gain);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    /* Set LED current.
    * Example :
    * LED : IR LED
    * Current : 0x366 (10bits).
    */
    {
    .ir_led = RM_OB1203_EXAMPLE_IR_CURRENT_0X366,
    };
    RM_OB1203_LedCurrentSet(&g_ob1203_ctrl, led_current);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    #if RM_OB1203_EXAMPLE_IRQ_ENABLE
    /* Set interrupt configurations for Proximity mode.
    * Example :
    * Type : normal interrupt
    * Persist : 0x02
    */
    {
    .persist = 0x02,
    };
    RM_OB1203_DeviceInterruptCfgSet(&g_ob1203_ctrl, interrupt_cfg);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    #endif
    /* Restart a measurement */
    RM_OB1203_MeasurementStart(&g_ob1203_ctrl);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    }

    Light Proximity mode reconfiguration at runtime

    -
    void rm_ob1203_light_prox_reconfiguration_basic_example (void)
    {
    g_i2c_flag = 0;
    /* Stop a measurement */
    RM_OB1203_MeasurementStop(&g_ob1203_ctrl);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    /* Set Proximity mode gain.
    * Example :
    * Light mode : 1
    * Proximity mode : 2
    */
    {
    };
    RM_OB1203_GainSet(&g_ob1203_ctrl, gain);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    /* Set LED current.
    * Example :
    * LED : IR LED
    * Current : 0x366 (10bits).
    */
    {
    .ir_led = RM_OB1203_EXAMPLE_IR_CURRENT_0X366,
    };
    RM_OB1203_LedCurrentSet(&g_ob1203_ctrl, led_current);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    #if RM_OB1203_EXAMPLE_IRQ_ENABLE
    /* Set interrupt configurations for Light Proximity mode.
    * Example :
    * device interrupt : Proximity mode
    * Type : normal interrupt
    * Persist : 0x02
    */
    {
    .persist = 0x02,
    };
    RM_OB1203_DeviceInterruptCfgSet(&g_ob1203_ctrl, interrupt_cfg);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    #endif
    /* Restart a measurement */
    RM_OB1203_MeasurementStart(&g_ob1203_ctrl);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    }

    PPG mode reconfiguration at runtime

    -
    void rm_ob1203_ppg_reconfiguration_basic_example (void)
    {
    g_i2c_flag = 0;
    /* Stop a measurement */
    RM_OB1203_MeasurementStop(&g_ob1203_ctrl);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    /* Set PPG mode gain.
    * Example : Gain mode is 2.
    */
    {
    };
    RM_OB1203_GainSet(&g_ob1203_ctrl, gain);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    /* Set LED current.
    * Example :
    * IR LED : 0x366 (10bits).
    * Red LED : 0x1B3 (9bits).
    */
    {
    .ir_led = RM_OB1203_EXAMPLE_IR_CURRENT_0X366,
    .red_led = RM_OB1203_EXAMPLE_RED_CURRENT_0X1B3,
    };
    RM_OB1203_LedCurrentSet(&g_ob1203_ctrl, led_current);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    #if RM_OB1203_EXAMPLE_IRQ_ENABLE
    /* Set interrupt configurations for PPG mode.
    * Example :
    * Type : data interrupt
    */
    {
    };
    RM_OB1203_DeviceInterruptCfgSet(&g_ob1203_ctrl, interrupt_cfg);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    g_i2c_flag = 0;
    #endif
    /* Restart a measurement */
    RM_OB1203_MeasurementStart(&g_ob1203_ctrl);
    while (0 == g_i2c_flag)
    {
    /* Wait callback */
    }
    }
    - - - - - - - -

    -Data Structures

    struct  rm_ob1203_init_process_params_t
     
    struct  rm_ob1203_mode_extended_cfg_t
     
    struct  rm_ob1203_instance_ctrl_t
     
    -

    Data Structure Documentation

    - -

    ◆ rm_ob1203_init_process_params_t

    - -
    -
    - - - - -
    struct rm_ob1203_init_process_params_t
    -
    -

    OB1203 initialization process block

    -
    - - - - - - - -
    Data Fields
    -volatile bool -communication_finished -Communication flag for blocking.
    -volatile rm_ob1203_event_t -event -Callback event.
    - -
    -
    - -

    ◆ rm_ob1203_mode_extended_cfg_t

    - -
    -
    - - - - -
    struct rm_ob1203_mode_extended_cfg_t
    -
    -

    OB1203 mode extended configuration

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Data Fields
    -rm_ob1203_api_t const * -p_api -Pointer to APIs.
    -rm_ob1203_operation_mode_t -mode_irq -Operation mode using IRQ.
    -rm_ob1203_ppg_prox_gain_t -ppg_prox_gain -Proximity gain range.
    -rm_ob1203_led_order_t -led_order -LED order.
    -rm_ob1203_light_sensor_mode_t -light_sensor_mode -LS or CS sensor mode.
    -rm_ob1203_light_interrupt_type_t -light_interrupt_type -Light mode interrupt type.
    -rm_ob1203_light_interrupt_source_t -light_interrupt_source -Light mode interrupt source.
    -uint8_t -light_interrupt_persist -The number of similar consecutive Light mode interrupt events that must occur before the interrupt is asserted (4bits).
    -rm_ob1203_sleep_after_interrupt_t -light_sleep -Sleep after an interrupt.
    -rm_ob1203_light_gain_t -light_gain -Light gain range.
    -uint32_t -light_upper_threshold -Upper threshold for interrupt.
    -uint32_t -light_lower_threshold -Lower threshold for interrupt.
    -rm_ob1203_variance_threshold_t -light_variance_threshold -variance threshold for interrupt.
    -rm_ob1203_light_resolution_meas_period_t -light_resolution_period -Resolution and measurement period.
    -rm_ob1203_light_data_type_t -light_data_type -Light data type.
    -rm_ob1203_sleep_after_interrupt_t -prox_sleep -Sleep after an interrupt.
    -rm_ob1203_prox_interrupt_type_t -prox_interrupt_type -Proximity mode interrupt type.
    -uint8_t -prox_interrupt_persist -The number of similar consecutive Proximity mode interrupt events that must occur before the interrupt is asserted (4bits).
    -uint16_t -prox_led_current -Proximity LED current.
    -rm_ob1203_analog_cancellation_t -prox_ana_can -Analog cancellation.
    -uint16_t -prox_dig_can -Digital cancellation.
    -rm_ob1203_number_led_pulses_t -prox_num_led_pulses -Number of LED pulses.
    -uint16_t -prox_upper_threshold -Upper threshold for interrupt.
    -uint16_t -prox_lower_threshold -Lower threshold for interrupt.
    -rm_ob1203_prox_pulse_width_meas_period_t -prox_width_period -Proximity pulse width and measurement period.
    -rm_ob1203_moving_average_t -prox_moving_average -Moving average.
    -uint8_t -prox_hysteresis -Proximity hysteresis threshold (7bits).
    -rm_ob1203_ppg_sensor_mode_t -ppg_sensor_mode -PPG1 or PPG2 sensor mode.
    -rm_ob1203_ppg_interrupt_type_t -ppg_interrupt_type -PPG mode interrupt type.
    -uint16_t -ppg_ir_led_current -PPG IR LED current.
    -uint16_t -ppg_red_led_current -PPG Red LED current.
    -rm_ob1203_power_save_mode_t -ppg_power_save_mode -PPG power save mode.
    -rm_ob1203_analog_cancellation_t -ppg_ir_led_ana_can -IR LED analog cancellations.
    -rm_ob1203_analog_cancellation_t -ppg_red_led_ana_can -Red LED analog cancellations.
    -rm_ob1203_number_averaged_samples_t -ppg_num_averaged_samples -Number of averaged PPG samples.
    -rm_ob1203_ppg_pulse_width_meas_period_t -ppg_width_period -PPG pulse width and measurement period.
    -rm_ob1203_fifo_rollover_t -ppg_fifo_rollover -FIFO rollover enable.
    -uint8_t -ppg_fifo_empty_num -the number of empty FIFO words when the FIFO almost full interrupt is issued. In PPG2 Mode only even values should be used. (4 bits)
    -uint8_t -ppg_number_of_samples -Number of PPG samples.
    - -
    -
    - -

    ◆ rm_ob1203_instance_ctrl_t

    - -
    -
    - - - - -
    struct rm_ob1203_instance_ctrl_t
    -
    -

    OB1203 Control Block

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    Data Fields

    -uint32_t open
     Open flag.
     
    -rm_ob1203_cfg_t const * p_cfg
     Pointer to OB1203 Configuration.
     
    -uint8_t buf [8]
     Buffer for I2C communications.
     
    -rm_ob1203_init_process_params_t init_process_params
     For the initialization process.
     
    -uint8_t register_address
     Register address to access.
     
    -volatile rm_ob1203_device_status_tp_device_status
     Pointer to device status.
     
    -volatile rm_ob1203_fifo_info_tp_fifo_info
     Pointer to FIFO information structure.
     
    -volatile bool fifo_reset
     Flag for FIFO reset for PPG mode.
     
    -volatile bool prox_gain_update
     Flag for gain update for Proximity mode.
     
    -volatile bool interrupt_bits_clear
     Flag for clearing interrupt bits.
     
    -rm_comms_instance_t const * p_comms_i2c_instance
     Pointer of I2C Communications Middleware instance structure.
     
    -rm_ob1203_mode_extended_cfg_tp_mode
     Pointer of OB1203 operation mode extended configuration.
     
    -void const * p_irq_instance
     Pointer to IRQ instance.
     
    -void const * p_context
     Pointer to the user-provided context.
     
    -void(* p_comms_callback )(rm_ob1203_callback_args_t *p_args)
     I2C Communications callback.
     
    -void(* p_irq_callback )(rm_ob1203_callback_args_t *p_args)
     IRQ callback.
     
    - -
    -
    -

    Function Documentation

    - -

    ◆ RM_OB1203_Open()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    fsp_err_t RM_OB1203_Open (rm_ob1203_ctrl_t *const p_api_ctrl,
    rm_ob1203_cfg_t const *const p_cfg 
    )
    -
    - -

    Opens and configures the OB1203 Middle module. Implements rm_ob1203_api_t::open.

    -

    Example:

    err = RM_OB1203_Open(&g_ob1203_ctrl, &g_ob1203_cfg);
    Return values
    - - - - - - -
    FSP_SUCCESSOB1203 successfully configured.
    FSP_ERR_ASSERTIONNull pointer, or one or more configuration options is invalid.
    FSP_ERR_ALREADY_OPENModule is already open. This module can only be opened once.
    FSP_ERR_TIMEOUTCommunication is timeout.
    FSP_ERR_ABORTEDCommunication is aborted.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_Close()

    - -
    -
    - - - - - - - - -
    fsp_err_t RM_OB1203_Close (rm_ob1203_ctrl_t *const p_api_ctrl)
    -
    - -

    Disables specified OB1203 control block. Implements rm_ob1203_api_t::close.

    -
    Return values
    - - - - -
    FSP_SUCCESSSuccessfully closed.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not open.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_MeasurementStart()

    - -
    -
    - - - - - - - - -
    fsp_err_t RM_OB1203_MeasurementStart (rm_ob1203_ctrl_t *const p_api_ctrl)
    -
    - -

    Start measurement. Implements rm_ob1203_api_t::measurementStart.

    -
    Return values
    - - - - -
    FSP_SUCCESSSuccessfully results are read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not opened configured.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_MeasurementStop()

    - -
    -
    - - - - - - - - -
    fsp_err_t RM_OB1203_MeasurementStop (rm_ob1203_ctrl_t *const p_api_ctrl)
    -
    - -

    Stop measurement. If device interrupt is enabled, interrupt bits are cleared after measurement stop. If PPG mode, FIFO information is also reset after measurement stop. In RTOS and Light/Proximity/Light Proximity mode, if device interrupt is enabled, blocks 2 bytes on the I2C bus. In RTOS and PPG mode, if device interrupt is enabled, blocks 6 bytes on the I2C bus. If device interrupt is disabled, blocks 4 bytes on the I2C bus. Implements rm_ob1203_api_t::measurementStop.

    -
    Return values
    - - - - -
    FSP_SUCCESSSuccessfully results are read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not opened configured.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_LightRead()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    fsp_err_t RM_OB1203_LightRead (rm_ob1203_ctrl_t *const p_api_ctrl,
    rm_ob1203_raw_data_t *const p_raw_data,
    rm_ob1203_light_data_type_t type 
    )
    -
    - -

    Reads Light ADC data from OB1203 device. If device interrupt is enabled, interrupt bits are cleared after data read. In RTOS and Light mode, if device interrupt is enabled, blocks 2 bytes on the I2C bus. Implements rm_ob1203_api_t::lightRead.

    -
    Return values
    - - - - -
    FSP_SUCCESSSuccessfully results are read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not opened configured.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_LightDataCalculate()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    fsp_err_t RM_OB1203_LightDataCalculate (rm_ob1203_ctrl_t *const p_api_ctrl,
    rm_ob1203_raw_data_t *const p_raw_data,
    rm_ob1203_light_data_t *const p_ob1203_data 
    )
    -
    - -

    Calculate light data from raw data. Implements rm_ob1203_api_t::lightDataCalculate.

    -
    Return values
    - - - - -
    FSP_SUCCESSSuccessfully results are read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not opened configured.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_ProxRead()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    fsp_err_t RM_OB1203_ProxRead (rm_ob1203_ctrl_t *const p_api_ctrl,
    rm_ob1203_raw_data_t *const p_raw_data 
    )
    -
    - -

    Reads Proximity ADC data from OB1203 device. If device interrupt is enabled, interrupt bits are cleared after data read. In RTOS and Proximity mode, if device interrupt is enabled, blocks 2 bytes on the I2C bus. Implements rm_ob1203_api_t::proxRead.

    -
    Return values
    - - - - -
    FSP_SUCCESSSuccessfully results are read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not opened configured.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_ProxDataCalculate()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    fsp_err_t RM_OB1203_ProxDataCalculate (rm_ob1203_ctrl_t *const p_api_ctrl,
    rm_ob1203_raw_data_t *const p_raw_data,
    rm_ob1203_prox_data_t *const p_ob1203_data 
    )
    -
    - -

    Calculate proximity data from raw data. Implements rm_ob1203_api_t::proxDataCalculate.

    -
    Return values
    - - - - -
    FSP_SUCCESSSuccessfully results are read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not opened configured.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_PpgRead()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    fsp_err_t RM_OB1203_PpgRead (rm_ob1203_ctrl_t *const p_api_ctrl,
    rm_ob1203_raw_data_t *const p_raw_data,
    uint8_t const number_of_samples 
    )
    -
    - -

    Reads PPG ADC data from OB1203 device. One sample requires three bytes. 0 cannot set to the number of samples. Implements rm_ob1203_api_t::ppgRead.

    -
    Return values
    - - - - -
    FSP_SUCCESSSuccessfully results are read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not opened configured.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_PpgDataCalculate()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    fsp_err_t RM_OB1203_PpgDataCalculate (rm_ob1203_ctrl_t *const p_api_ctrl,
    rm_ob1203_raw_data_t *const p_raw_data,
    rm_ob1203_ppg_data_t *const p_ob1203_data 
    )
    -
    - -

    Calculate PPG data from raw data. Implements rm_ob1203_api_t::ppgDataCalculate.

    -
    Return values
    - - - - -
    FSP_SUCCESSSuccessfully results are read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not opened configured.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_GainSet()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    fsp_err_t RM_OB1203_GainSet (rm_ob1203_ctrl_t *const p_api_ctrl,
    rm_ob1203_gain_t const gain 
    )
    -
    - -

    Set gain. This function should be called after calling RM_OB1203_MeasurementStop(). In RTOS and Light Proximity mode, blocks 2 bytes on the I2C bus. Implements rm_ob1203_api_t::gainSet.

    -
    Return values
    - - - - -
    FSP_SUCCESSSuccessfully results are read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not opened configured.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_LedCurrentSet()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    fsp_err_t RM_OB1203_LedCurrentSet (rm_ob1203_ctrl_t *const p_api_ctrl,
    rm_ob1203_led_current_t const led_current 
    )
    -
    - -

    Set currents. This function should be called after calling RM_OB1203_MeasurementStop(). Implements rm_ob1203_api_t::ledCurrentSet.

    -
    Return values
    - - - - -
    FSP_SUCCESSSuccessfully results are read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not opened configured.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_DeviceInterruptCfgSet()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    fsp_err_t RM_OB1203_DeviceInterruptCfgSet (rm_ob1203_ctrl_t *const p_api_ctrl,
    rm_ob1203_device_interrupt_cfg_t const interrupt_cfg 
    )
    -
    - -

    Set device interrupt configurations. This function should be called after calling RM_OB1203_MeasurementStop(). Implements rm_ob1203_api_t::deviceInterruptCfgSet.

    -
    Return values
    - - - - -
    FSP_SUCCESSSuccessfully results are read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not opened configured.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_FifoInfoGet()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    fsp_err_t RM_OB1203_FifoInfoGet (rm_ob1203_ctrl_t *const p_api_ctrl,
    rm_ob1203_fifo_info_t *const p_fifo_info 
    )
    -
    - -

    Get FIFO information from OB1203 device. Implements rm_ob1203_api_t::fifoInfoGet.

    -
    Return values
    - - - - -
    FSP_SUCCESSSuccessfully results are read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not opened configured.
    -
    -
    - -
    -
    - -

    ◆ RM_OB1203_DeviceStatusGet()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    fsp_err_t RM_OB1203_DeviceStatusGet (rm_ob1203_ctrl_t *const p_api_ctrl,
    rm_ob1203_device_status_t *const p_status 
    )
    -
    - -

    Get device status from OB1203 device. Clear all interrupt bits. Implements rm_ob1203_api_t::deviceStatusGet.

    -
    Return values
    - - - - - - -
    FSP_SUCCESSSuccessfully results are read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENModule is not opened configured.
    FSP_ERR_TIMEOUTCommunication is timeout.
    FSP_ERR_ABORTEDCommunication is aborted.
    -
    -
    - -
    -
    -
    -
    - - - - - diff --git a/group___r_m___o_b1203.js b/group___r_m___o_b1203.js deleted file mode 100644 index 4044bd5..0000000 --- a/group___r_m___o_b1203.js +++ /dev/null @@ -1,81 +0,0 @@ -var group___r_m___o_b1203 = -[ - [ "rm_ob1203_init_process_params_t", "group___r_m___o_b1203.html#structrm__ob1203__init__process__params__t", [ - [ "communication_finished", "group___r_m___o_b1203.html#aea4edefdaa00495d377261f39c36b33f", null ], - [ "event", "group___r_m___o_b1203.html#ac1299c7dc5347bb69d968283a73e655d", null ] - ] ], - [ "rm_ob1203_mode_extended_cfg_t", "group___r_m___o_b1203.html#structrm__ob1203__mode__extended__cfg__t", [ - [ "p_api", "group___r_m___o_b1203.html#ada67105cd21a7dae41a9e6a46e96dd1d", null ], - [ "mode_irq", "group___r_m___o_b1203.html#a8b9c2e8ea5903f1d3c42cf99539a6f37", null ], - [ "ppg_prox_gain", "group___r_m___o_b1203.html#a7d96e3fa4f80d77e18d6311b58abb351", null ], - [ "led_order", "group___r_m___o_b1203.html#a6ea712faa60b5098695c5bf9dee22fa9", null ], - [ "light_sensor_mode", "group___r_m___o_b1203.html#a2dff0d73a95082059f417d185b80cb8a", null ], - [ "light_interrupt_type", "group___r_m___o_b1203.html#a552c03c8de87ba18c02d7d92ccb492d4", null ], - [ "light_interrupt_source", "group___r_m___o_b1203.html#a717ea530db97b35669792d4402106037", null ], - [ "light_interrupt_persist", "group___r_m___o_b1203.html#a022942b085717470822f277c4b31ba3a", null ], - [ "light_sleep", "group___r_m___o_b1203.html#aeb793e75865a9f62297d91034603aaf1", null ], - [ "light_gain", "group___r_m___o_b1203.html#aa3cb62edd73814ba315627754fd85266", null ], - [ "light_upper_threshold", "group___r_m___o_b1203.html#ac5d15bf27b5bcd1a6b721a0f67374372", null ], - [ "light_lower_threshold", "group___r_m___o_b1203.html#a3d101a3a796221fc394abb203998d492", null ], - [ "light_variance_threshold", "group___r_m___o_b1203.html#afd0c72c77c52c3eeb6c3c82649807cac", null ], - [ "light_resolution_period", "group___r_m___o_b1203.html#a002e10b810510f6ddacf3636941b8ad3", null ], - [ "light_data_type", "group___r_m___o_b1203.html#a92cbb312b5e1e41706b4e68b38357f02", null ], - [ "prox_sleep", "group___r_m___o_b1203.html#a1ee453fb8ab99c99f7c66a81ec8930fc", null ], - [ "prox_interrupt_type", "group___r_m___o_b1203.html#a8f73599ce4c7f63c4c823e74f7c567cb", null ], - [ "prox_interrupt_persist", "group___r_m___o_b1203.html#a0b8c9711655d57482f2fa4885b6fe358", null ], - [ "prox_led_current", "group___r_m___o_b1203.html#a5a121bd4d0dd5525fe4fa1940c2807f7", null ], - [ "prox_ana_can", "group___r_m___o_b1203.html#a76a478bfae379eccb11d7da016c0b223", null ], - [ "prox_dig_can", "group___r_m___o_b1203.html#a602e9dc2a52e58a964e3d31d40f804bd", null ], - [ "prox_num_led_pulses", "group___r_m___o_b1203.html#a8b1238b9262829b92acf3b488fba8164", null ], - [ "prox_upper_threshold", "group___r_m___o_b1203.html#a5f59be16765f431c4a5793bfb2d6bf7b", null ], - [ "prox_lower_threshold", "group___r_m___o_b1203.html#a0afb601514b214fc0f69648150d139b4", null ], - [ "prox_width_period", "group___r_m___o_b1203.html#a95edd35c1ca18bb45030ea849f72c079", null ], - [ "prox_moving_average", "group___r_m___o_b1203.html#ae462f5fde180d3b4bc191a7b0b36de1a", null ], - [ "prox_hysteresis", "group___r_m___o_b1203.html#a84152ba34a94d2cc53b01a0195d1e499", null ], - [ "ppg_sensor_mode", "group___r_m___o_b1203.html#a5304c578e8d3e84524754223a865b89c", null ], - [ "ppg_interrupt_type", "group___r_m___o_b1203.html#a8c2e28fd8857be8e771d04d82bc956ea", null ], - [ "ppg_ir_led_current", "group___r_m___o_b1203.html#a6d8a552db7926950c4b1c419a48fdf4e", null ], - [ "ppg_red_led_current", "group___r_m___o_b1203.html#a86d8b953af37f657dfeb162cd0591de0", null ], - [ "ppg_power_save_mode", "group___r_m___o_b1203.html#ae35c158322080273b5df3e059528f752", null ], - [ "ppg_ir_led_ana_can", "group___r_m___o_b1203.html#a2abd97a96166d245c48e6e0787693fb4", null ], - [ "ppg_red_led_ana_can", "group___r_m___o_b1203.html#a5c280d0afc580954d5ed17337c03f5ef", null ], - [ "ppg_num_averaged_samples", "group___r_m___o_b1203.html#a5b83bc78a2501b848235a640aff20547", null ], - [ "ppg_width_period", "group___r_m___o_b1203.html#ae36a5f755dda4ad54a211d7beceaa1fe", null ], - [ "ppg_fifo_rollover", "group___r_m___o_b1203.html#a6b1b27c35ae14887c24ac87fc09ae5b2", null ], - [ "ppg_fifo_empty_num", "group___r_m___o_b1203.html#a4a9e23f9ea29a94ce55aecf2a6a90efd", null ], - [ "ppg_number_of_samples", "group___r_m___o_b1203.html#a7653a25ab1427a9ed18b79cdef7bfb16", null ] - ] ], - [ "rm_ob1203_instance_ctrl_t", "group___r_m___o_b1203.html#structrm__ob1203__instance__ctrl__t", [ - [ "open", "group___r_m___o_b1203.html#af1adb0f5fdb98f08dc0795c8946b04e5", null ], - [ "p_cfg", "group___r_m___o_b1203.html#a1f6bcc914fc1ce1cc6f6698aa8221cad", null ], - [ "buf", "group___r_m___o_b1203.html#a8315472488bcdc83146c0e0c873d8037", null ], - [ "init_process_params", "group___r_m___o_b1203.html#ae4fbc64795865bea8bc3d64f34a96c74", null ], - [ "register_address", "group___r_m___o_b1203.html#a8671a1b4dd57a4e872515a27904d712b", null ], - [ "p_device_status", "group___r_m___o_b1203.html#a6474b07ae9f3ac43315f3614be9de2d6", null ], - [ "p_fifo_info", "group___r_m___o_b1203.html#af65f28877e8b54a1b22601e42ab7d1db", null ], - [ "fifo_reset", "group___r_m___o_b1203.html#a16876cb1e3093f468775969f97c77a78", null ], - [ "prox_gain_update", "group___r_m___o_b1203.html#a8c18e88241e0b27b67d0f7fbaf65d94a", null ], - [ "interrupt_bits_clear", "group___r_m___o_b1203.html#a6c0b5939aa98532a28c344960a62379d", null ], - [ "p_comms_i2c_instance", "group___r_m___o_b1203.html#a28ff7aa34215ceac46c9837869566943", null ], - [ "p_mode", "group___r_m___o_b1203.html#af53827a211cd1402bd8945e8c5f16f5f", null ], - [ "p_irq_instance", "group___r_m___o_b1203.html#a189057778d7cbd48ac1ad8a1df064a77", null ], - [ "p_context", "group___r_m___o_b1203.html#a761b053d6f0276e7cdbef4ab857141b9", null ], - [ "p_comms_callback", "group___r_m___o_b1203.html#abaf0ccf0e2e10792107bdcb85790bad7", null ], - [ "p_irq_callback", "group___r_m___o_b1203.html#aa936e3ee9a75bee3c5a4aad146f04c7e", null ] - ] ], - [ "RM_OB1203_Open", "group___r_m___o_b1203.html#ga34d3b67d431ab9cdb45fa561196d8e85", null ], - [ "RM_OB1203_Close", "group___r_m___o_b1203.html#gaff536e258d187d8efd6fac712ca885e1", null ], - [ "RM_OB1203_MeasurementStart", "group___r_m___o_b1203.html#gaabca4420cac85f4ea23be2454863d443", null ], - [ "RM_OB1203_MeasurementStop", "group___r_m___o_b1203.html#gab851b2d1c598510756bea3608f3261a3", null ], - [ "RM_OB1203_LightRead", "group___r_m___o_b1203.html#gad3e86f2d3ee11e505e5df6fc8e1b5c1f", null ], - [ "RM_OB1203_LightDataCalculate", "group___r_m___o_b1203.html#ga56f8661c39d7b7b41e0799d528f08c92", null ], - [ "RM_OB1203_ProxRead", "group___r_m___o_b1203.html#ga1de710492d4da21656a5cbd62eb2b721", null ], - [ "RM_OB1203_ProxDataCalculate", "group___r_m___o_b1203.html#ga5888f249d9e67a2af39ce7977065d359", null ], - [ "RM_OB1203_PpgRead", "group___r_m___o_b1203.html#ga306ea4427230d2c7c2e2c0ae53346a0b", null ], - [ "RM_OB1203_PpgDataCalculate", "group___r_m___o_b1203.html#gaffe63df6ba35eb27989b694af004a87b", null ], - [ "RM_OB1203_GainSet", "group___r_m___o_b1203.html#ga554b7652ea5ee0de096b21e6580f164f", null ], - [ "RM_OB1203_LedCurrentSet", "group___r_m___o_b1203.html#ga5666b0538afdae80059de7271667694c", null ], - [ "RM_OB1203_DeviceInterruptCfgSet", "group___r_m___o_b1203.html#gae791e9a53d7642b5ab9bed5ddfb195fa", null ], - [ "RM_OB1203_FifoInfoGet", "group___r_m___o_b1203.html#ga6ffbbe58d90adb8001d2f6424987e71b", null ], - [ "RM_OB1203_DeviceStatusGet", "group___r_m___o_b1203.html#ga13ab57714aafa9a3023a32f83c88e1dd", null ] -]; \ No newline at end of file diff --git a/group___r_m___o_b1203___a_p_i.html b/group___r_m___o_b1203___a_p_i.html deleted file mode 100644 index a7cdf8c..0000000 --- a/group___r_m___o_b1203___a_p_i.html +++ /dev/null @@ -1,1777 +0,0 @@ - - - - - - - -RZ/V Flexible Software Package Documentation: OB1203 Middleware Interface - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 -
    -
    - - - - - - -
    -
    -
    - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    OB1203 Middleware Interface
    -
    -
    -

    Detailed Description

    -

    Interface for OB1203 Middleware functions.

    -

    -Summary

    -

    The OB1203 interface provides OB1203 functionality.

    -

    The OB1203 interface can be implemented by:

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Structures

    struct  rm_ob1203_callback_args_t
     
    struct  rm_ob1203_raw_data_t
     
    struct  rm_ob1203_light_data_t
     
    struct  rm_ob1203_prox_data_t
     
    struct  rm_ob1203_ppg_data_t
     
    struct  rm_ob1203_device_interrupt_cfg_t
     
    struct  rm_ob1203_device_status_t
     
    struct  rm_ob1203_gain_t
     
    struct  rm_ob1203_led_current_t
     
    struct  rm_ob1203_fifo_info_t
     
    struct  rm_ob1203_cfg_t
     
    struct  rm_ob1203_api_t
     
    struct  rm_ob1203_instance_t
     
    - - - -

    -Typedefs

    typedef void rm_ob1203_ctrl_t
     
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Enumerations

    enum  rm_ob1203_event_t
     
    enum  rm_ob1203_operation_mode_t
     
    enum  rm_ob1203_light_sensor_mode_t
     
    enum  rm_ob1203_ppg_sensor_mode_t
     
    enum  rm_ob1203_light_data_type_t
     
    enum  rm_ob1203_light_gain_t
     
    enum  rm_ob1203_ppg_prox_gain_t
     
    enum  rm_ob1203_led_order_t
     
    enum  rm_ob1203_light_interrupt_type_t
     
    enum  rm_ob1203_light_interrupt_source_t
     
    enum  rm_ob1203_prox_interrupt_type_t
     
    enum  rm_ob1203_ppg_interrupt_type_t
     
    enum  rm_ob1203_variance_threshold_t
     
    enum  rm_ob1203_sleep_after_interrupt_t
     
    enum  rm_ob1203_moving_average_t
     
    enum  rm_ob1203_power_save_mode_t
     
    enum  rm_ob1203_analog_cancellation_t
     
    enum  rm_ob1203_number_led_pulses_t
     
    enum  rm_ob1203_number_averaged_samples_t
     
    enum  rm_ob1203_light_resolution_meas_period_t
     
    enum  rm_ob1203_prox_pulse_width_meas_period_t
     
    enum  rm_ob1203_ppg_pulse_width_meas_period_t
     
    enum  rm_ob1203_fifo_rollover_t
     
    -

    Data Structure Documentation

    - -

    ◆ rm_ob1203_callback_args_t

    - -
    -
    - - - - -
    struct rm_ob1203_callback_args_t
    -
    -

    OB1203 callback parameter definition

    -
    -
    -
    - -

    ◆ rm_ob1203_raw_data_t

    - -
    -
    - - - - -
    struct rm_ob1203_raw_data_t
    -
    -

    OB1203 raw data structure

    -
    - - - - -
    Data Fields
    -uint8_t -adc_data[96] -Max of PPG data is 96 (3 bytes multiplied by 32 samples)
    - -
    -
    - -

    ◆ rm_ob1203_light_data_t

    - -
    -
    - - - - -
    struct rm_ob1203_light_data_t
    -
    -

    OB1203 light data structure

    -
    - - - - - - - - - - - - - - - - -
    Data Fields
    -uint32_t -clear_data -Clear channel data (20bits).
    -uint32_t -green_data -Green channel data (20bits).
    -uint32_t -blue_data -Blue channel data (20bits).
    -uint32_t -red_data -Red channel data (20bits).
    -uint32_t -comp_data -Temperature compensation (Comp) channel data (20bits).
    - -
    -
    - -

    ◆ rm_ob1203_prox_data_t

    - -
    -
    - - - - -
    struct rm_ob1203_prox_data_t
    -
    -

    OB1203 proximity data structure

    -
    - - - - -
    Data Fields
    -uint16_t -proximity_data -Proximity data.
    - -
    -
    - -

    ◆ rm_ob1203_ppg_data_t

    - -
    -
    - - - - -
    struct rm_ob1203_ppg_data_t
    -
    -

    OB1203 PPG data structure

    -
    - - - - -
    Data Fields
    -uint32_t -ppg_data[32] -PPG data (18bits).
    - -
    -
    - -

    ◆ rm_ob1203_device_interrupt_cfg_t

    - -
    -
    - - - - -
    struct rm_ob1203_device_interrupt_cfg_t
    -
    -

    OB1203 device interrupt configuration structure

    -
    - - - - - - - - - - - - - - - - - - - -
    Data Fields
    -rm_ob1203_operation_mode_t -light_prox_mode -Light Proximity mode only. If Light mode uses IRQ, set RM_OB1203_OPERATION_MODE_LIGHT. If Proximity mode uses IRQ, set RM_OB1203_OPERATION_MODE_PROXIMITY.
    -rm_ob1203_light_interrupt_type_t -light_type -Light mode interrupt type.
    -rm_ob1203_light_interrupt_source_t -light_source -Light mode interrupt source.
    -rm_ob1203_prox_interrupt_type_t -prox_type -Proximity mode interrupt type.
    -uint8_t -persist -The number of similar consecutive Light mode or Proximity interrupt events that must occur before the interrupt is asserted (4bits).
    -rm_ob1203_ppg_interrupt_type_t -ppg_type -PPG mode interrupt type.
    - -
    -
    - -

    ◆ rm_ob1203_device_status_t

    - -
    -
    - - - - -
    struct rm_ob1203_device_status_t
    -
    -

    OB1203 device status

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Data Fields
    -bool -power_on_reset_occur -
    -bool -light_interrupt_occur -
    -bool -light_measurement_complete -
    -bool -ts_measurement_complete -
    -bool -fifo_afull_interrupt_occur -FIFO almost full interrupt.
    -bool -ppg_measurement_complete -
    -bool -object_near -
    -bool -prox_interrupt_occur -
    -bool -prox_measurement_complete -
    - -
    -
    - -

    ◆ rm_ob1203_gain_t

    - -
    -
    - - - - -
    struct rm_ob1203_gain_t
    -
    -

    OB1203 Gain structure

    -
    - - - - - - - -
    Data Fields
    -rm_ob1203_light_gain_t -light -Gain for Light mode.
    -rm_ob1203_ppg_prox_gain_t -ppg_prox -Gain for PPG mode and Proximity mode.
    - -
    -
    - -

    ◆ rm_ob1203_led_current_t

    - -
    -
    - - - - -
    struct rm_ob1203_led_current_t
    -
    -

    OB1203 LED currents structure

    -
    - - - - - - - -
    Data Fields
    -uint16_t -ir_led -IR LED current.
    -uint16_t -red_led -Red LED current.
    - -
    -
    - -

    ◆ rm_ob1203_fifo_info_t

    - -
    -
    - - - - -
    struct rm_ob1203_fifo_info_t
    -
    -

    OB1203 FIFO information structure

    -
    - - - - - - - - - - - - - -
    Data Fields
    -uint8_t -write_index -The FIFO index where the next sample of PPG data will be written in the FIFO.
    -uint8_t -read_index -The index of the next sample to be read from the FIFO_DATA register.
    -uint8_t -overflow_counter -If the FIFO Rollover Enable bit is set, the FIFO overflow counter counts the number of old samples (up to 15) which are overwritten by new data.
    -uint8_t -unread_samples -The number of unread samples calculated from the write index and the read index.
    - -
    -
    - -

    ◆ rm_ob1203_cfg_t

    - -
    -
    - - - - -
    struct rm_ob1203_cfg_t
    -
    -

    OB1203 Configuration

    -
    - - - - - - - - - - - - - - - - - - - - - - -

    Data Fields

    -uint32_t semaphore_timeout
     timeout for callback.
     
    -rm_comms_instance_t const * p_comms_instance
     Pointer to Communications Middleware instance.
     
    -void const * p_irq_instance
     Pointer to IRQ instance.
     
    -void const * p_context
     Pointer to the user-provided context.
     
    -void const * p_extend
     Pointer to extended configuration by instance of interface.
     
    -void(* p_comms_callback )(rm_ob1203_callback_args_t *p_args)
     I2C Communications callback.
     
    -void(* p_irq_callback )(rm_ob1203_callback_args_t *p_args)
     IRQ callback.
     
    - -
    -
    - -

    ◆ rm_ob1203_api_t

    - -
    -
    - - - - -
    struct rm_ob1203_api_t
    -
    -

    OB1203 APIs

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    Data Fields

    fsp_err_t(* open )(rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_cfg_t const *const p_cfg)
     
    fsp_err_t(* measurementStart )(rm_ob1203_ctrl_t *const p_ctrl)
     
    fsp_err_t(* measurementStop )(rm_ob1203_ctrl_t *const p_ctrl)
     
    fsp_err_t(* lightRead )(rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_raw_data_t *const p_raw_data, rm_ob1203_light_data_type_t type)
     
    fsp_err_t(* lightDataCalculate )(rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_raw_data_t *const p_raw_data, rm_ob1203_light_data_t *const p_ob1203_data)
     
    fsp_err_t(* proxRead )(rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_raw_data_t *const p_raw_data)
     
    fsp_err_t(* proxDataCalculate )(rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_raw_data_t *const p_raw_data, rm_ob1203_prox_data_t *const p_ob1203_data)
     
    fsp_err_t(* ppgRead )(rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_raw_data_t *const p_raw_data, uint8_t const number_of_samples)
     
    fsp_err_t(* ppgDataCalculate )(rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_raw_data_t *const p_raw_data, rm_ob1203_ppg_data_t *const p_ob1203_data)
     
    fsp_err_t(* deviceStatusGet )(rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_device_status_t *const p_status)
     
    fsp_err_t(* deviceInterruptCfgSet )(rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_device_interrupt_cfg_t const interrupt_cfg)
     
    fsp_err_t(* gainSet )(rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_gain_t const gain)
     
    fsp_err_t(* ledCurrentSet )(rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_led_current_t const led_current)
     
    fsp_err_t(* fifoInfoGet )(rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_fifo_info_t *const p_fifo_info)
     
    fsp_err_t(* close )(rm_ob1203_ctrl_t *const p_ctrl)
     
    -

    Field Documentation

    - -

    ◆ open

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::open) (rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_cfg_t const *const p_cfg)
    -
    -

    Open sensor.

    Implemented as
    -
    -
    Parameters
    - - - -
    [in]p_ctrlPointer to control structure.
    [in]p_cfgPointer to configuration structure.
    -
    -
    - -
    -
    - -

    ◆ measurementStart

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::measurementStart) (rm_ob1203_ctrl_t *const p_ctrl)
    -
    -

    Start measurement.

    Implemented as
    -
    -
    Parameters
    - - - -
    [in]p_ctrlPointer to control structure.
    [in]modeSensor mode.
    -
    -
    - -
    -
    - -

    ◆ measurementStop

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::measurementStop) (rm_ob1203_ctrl_t *const p_ctrl)
    -
    -

    Stop measurement.

    Implemented as
    -
    -
    Parameters
    - - - -
    [in]p_ctrlPointer to control structure.
    [in]modeSensor mode.
    -
    -
    - -
    -
    - -

    ◆ lightRead

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::lightRead) (rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_raw_data_t *const p_raw_data, rm_ob1203_light_data_type_t type)
    -
    -

    Read Light ADC data from OB1203.

    Implemented as
    -
    -
    Parameters
    - - - - -
    [in]p_ctrlPointer to control structure.
    [in]p_raw_dataPointer to raw data structure.
    [in]typeLight data type.
    -
    -
    - -
    -
    - -

    ◆ lightDataCalculate

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::lightDataCalculate) (rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_raw_data_t *const p_raw_data, rm_ob1203_light_data_t *const p_ob1203_data)
    -
    -

    Calculate Light data from raw data.

    Implemented as
    -
    -
    Parameters
    - - - - -
    [in]p_ctrlPointer to control structure.
    [in]p_raw_dataPointer to raw data structure.
    [in]p_ob1203_dataPointer to OB1203 Light data structure.
    -
    -
    - -
    -
    - -

    ◆ proxRead

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::proxRead) (rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_raw_data_t *const p_raw_data)
    -
    -

    Read Proximity ADC data from OB1203.

    Implemented as
    -
    -
    Parameters
    - - - -
    [in]p_ctrlPointer to control structure.
    [in]p_raw_dataPointer to raw data structure.
    -
    -
    - -
    -
    - -

    ◆ proxDataCalculate

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::proxDataCalculate) (rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_raw_data_t *const p_raw_data, rm_ob1203_prox_data_t *const p_ob1203_data)
    -
    -

    Calculate Proximity data from raw data.

    Implemented as
    -
    -
    Parameters
    - - - - -
    [in]p_ctrlPointer to control structure.
    [in]p_raw_dataPointer to raw data structure.
    [in]p_ob1203_dataPointer to OB1203 Proximity data structure.
    -
    -
    - -
    -
    - -

    ◆ ppgRead

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::ppgRead) (rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_raw_data_t *const p_raw_data, uint8_t const number_of_samples)
    -
    -

    Read PPG ADC data from OB1203.

    Implemented as
    -
    -
    Parameters
    - - - - -
    [in]p_ctrlPointer to control structure.
    [in]p_raw_dataPointer to raw data structure.
    [in]number_of_samplesNumber of PPG samples. One sample is 3 bytes.
    -
    -
    - -
    -
    - -

    ◆ ppgDataCalculate

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::ppgDataCalculate) (rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_raw_data_t *const p_raw_data, rm_ob1203_ppg_data_t *const p_ob1203_data)
    -
    -

    Calculate PPG data from raw data.

    Implemented as
    -
    -
    Parameters
    - - - - -
    [in]p_ctrlPointer to control structure.
    [in]p_raw_dataPointer to raw data structure.
    [in]p_ob1203_dataPointer to OB1203 PPG data structure.
    -
    -
    - -
    -
    - -

    ◆ deviceStatusGet

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::deviceStatusGet) (rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_device_status_t *const p_status)
    -
    -

    Get device status. Read STATUS_0 and STATUS_1 registers.

    Implemented as
    -
    -
    Parameters
    - - - -
    [in]p_ctrlPointer to control structure.
    [in]p_statusPointer to device status.
    -
    -
    - -
    -
    - -

    ◆ deviceInterruptCfgSet

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::deviceInterruptCfgSet) (rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_device_interrupt_cfg_t const interrupt_cfg)
    -
    -

    Set device interrupt configuration.

    Implemented as
    -
    -
    Parameters
    - - - -
    [in]p_ctrlPointer to control structure.
    [in]interrupt_cfgDevice interrupt configuration.
    -
    -
    - -
    -
    - -

    ◆ gainSet

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::gainSet) (rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_gain_t const gain)
    -
    -

    Set gain.

    Implemented as
    -
    -
    Parameters
    - - - -
    [in]p_ctrlPointer to control structure.
    [in]gainGain configuration.
    -
    -
    - -
    -
    - -

    ◆ ledCurrentSet

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::ledCurrentSet) (rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_led_current_t const led_current)
    -
    -

    Set LED current value.

    Implemented as
    -
    -
    Parameters
    - - - -
    [in]p_ctrlPointer to control structure.
    [in]led_currentCurrent value structure.
    -
    -
    - -
    -
    - -

    ◆ fifoInfoGet

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::fifoInfoGet) (rm_ob1203_ctrl_t *const p_ctrl, rm_ob1203_fifo_info_t *const p_fifo_info)
    -
    -

    Get FIFO information.

    Implemented as
    -
    -
    Parameters
    - - - -
    [in]p_ctrlPointer to control structure.
    [in]p_fifo_infoPointer to FIFO information (write index, read index and overflow counter).
    -
    -
    - -
    -
    - -

    ◆ close

    - -
    -
    - - - - -
    fsp_err_t(* rm_ob1203_api_t::close) (rm_ob1203_ctrl_t *const p_ctrl)
    -
    -

    Close OB1203.

    Implemented as
    -
    -
    Parameters
    - - -
    [in]p_ctrlPointer to control structure.
    -
    -
    - -
    -
    - -
    -
    - -

    ◆ rm_ob1203_instance_t

    - -
    -
    - - - - -
    struct rm_ob1203_instance_t
    -
    -

    OB1203 instance

    -
    - - - - - - - - - - -
    Data Fields
    -rm_ob1203_ctrl_t * -p_ctrl -

    Pointer to the control structure for this instance

    -
    -rm_ob1203_cfg_t const * -p_cfg -

    Pointer to the configuration structure for this instance

    -
    -rm_ob1203_api_t const * -p_api -

    Pointer to the API structure for this instance

    -
    - -
    -
    -

    Typedef Documentation

    - -

    ◆ rm_ob1203_ctrl_t

    - -
    -
    - - - - -
    typedef void rm_ob1203_ctrl_t
    -
    -

    OB1203 control block. Allocate an instance specific control block to pass into the OB1203 API calls.

    Implemented as
    -
    - -
    -
    -

    Enumeration Type Documentation

    - -

    ◆ rm_ob1203_event_t

    - -
    -
    - - - - -
    enum rm_ob1203_event_t
    -
    -

    Event in the callback function

    - -
    -
    - -

    ◆ rm_ob1203_operation_mode_t

    - -
    -
    - - - - -
    enum rm_ob1203_operation_mode_t
    -
    -

    Operation mode of OB1203

    - - - - - -
    Enumerator
    RM_OB1203_OPERATION_MODE_STANDBY 

    Standby.

    -
    RM_OB1203_OPERATION_MODE_LIGHT 

    Light mode.

    -
    RM_OB1203_OPERATION_MODE_PROXIMITY 

    Proximity mode.

    -
    RM_OB1203_OPERATION_MODE_PPG 

    PPG mode.

    -
    - -
    -
    - -

    ◆ rm_ob1203_light_sensor_mode_t

    - -
    -
    -

    Light sensor mode of OB1203

    - - - -
    Enumerator
    RM_OB1203_LIGHT_SENSOR_MODE_LS 

    Light sensor LS mode (Green, Clear, Comp)

    -
    RM_OB1203_LIGHT_SENSOR_MODE_CS 

    Light sensor CS mode (Red, Green, Blue, Clear, Comp)

    -
    - -
    -
    - -

    ◆ rm_ob1203_ppg_sensor_mode_t

    - -
    -
    - - - - -
    enum rm_ob1203_ppg_sensor_mode_t
    -
    -

    PPG sensor mode of OB1203

    - - - -
    Enumerator
    RM_OB1203_PPG_SENSOR_MODE_PPG1 

    PPG sensor PPG1 mode.

    -
    RM_OB1203_PPG_SENSOR_MODE_PPG2 

    PPG sensor PPG2 mode.

    -
    - -
    -
    - -

    ◆ rm_ob1203_light_data_type_t

    - -
    -
    - - - - -
    enum rm_ob1203_light_data_type_t
    -
    -

    Data type of Light

    - - - - - - - -
    Enumerator
    RM_OB1203_LIGHT_DATA_TYPE_ALL 

    Common.

    -
    RM_OB1203_LIGHT_DATA_TYPE_CLEAR 

    Common.

    -
    RM_OB1203_LIGHT_DATA_TYPE_GREEN 

    Common.

    -
    RM_OB1203_LIGHT_DATA_TYPE_BLUE 

    CS mode only.

    -
    RM_OB1203_LIGHT_DATA_TYPE_RED 

    CS mode only.

    -
    RM_OB1203_LIGHT_DATA_TYPE_COMP 

    Common. Temperature compensation data.

    -
    - -
    -
    - -

    ◆ rm_ob1203_light_gain_t

    - -
    -
    - - - - -
    enum rm_ob1203_light_gain_t
    -
    -

    Light gain range. Gain scales the ADC output and noise

    - - - - -
    Enumerator
    RM_OB1203_LIGHT_GAIN_1 

    Gain mode 1.

    -
    RM_OB1203_LIGHT_GAIN_3 

    Gain mode 3.

    -
    RM_OB1203_LIGHT_GAIN_6 

    Gain mode 6.

    -
    - -
    -
    - -

    ◆ rm_ob1203_ppg_prox_gain_t

    - -
    -
    - - - - -
    enum rm_ob1203_ppg_prox_gain_t
    -
    -

    PPG and proximity gain range. Gain scales the ADC output and noise

    - - - - - -
    Enumerator
    RM_OB1203_PPG_PROX_GAIN_1 

    Gain mode 1.

    -
    RM_OB1203_PPG_PROX_GAIN_1P5 

    Gain mode 1.5.

    -
    RM_OB1203_PPG_PROX_GAIN_2 

    Gain mode 2.

    -
    RM_OB1203_PPG_PROX_GAIN_4 

    Gain mode 4.

    -
    - -
    -
    - -

    ◆ rm_ob1203_led_order_t

    - -
    -
    - - - - -
    enum rm_ob1203_led_order_t
    -
    -

    LED order. Controls which LED is activated (PS, PPG1) or in which order the LEDs are activated (PPG2)

    - - - -
    Enumerator
    RM_OB1203_LED_IR_FIRST_RED_SECOND 

    First LED : IR LED, second LED : red LED.

    -
    RM_OB1203_LED_RED_FIRST_IR_SECOND 

    First LED : red LED, second LED : IR LED.

    -
    - -
    -
    - -

    ◆ rm_ob1203_light_interrupt_type_t

    - -
    -
    -

    Light interrupt type

    - - - -
    Enumerator
    RM_OB1203_LIGHT_INTERRUPT_TYPE_THRESHOLD 

    Light threshold interrupt.

    -
    RM_OB1203_LIGHT_INTERRUPT_TYPE_VARIATION 

    Light variation interrupt.

    -
    - -
    -
    - -

    ◆ rm_ob1203_light_interrupt_source_t

    - -
    -
    -

    Light interrupt source

    - - - - - -
    Enumerator
    RM_OB1203_LIGHT_INTERRUPT_SOURCE_CLEAR_CHANNEL 

    Clear channel.

    -
    RM_OB1203_LIGHT_INTERRUPT_SOURCE_GREEN_CHANNEL 

    Green channel.

    -
    RM_OB1203_LIGHT_INTERRUPT_SOURCE_RED_CHANNEL 

    Red channel. CS mode only.

    -
    RM_OB1203_LIGHT_INTERRUPT_SOURCE_BLUE_CHANNEL 

    Blue channel. CS mode only.

    -
    - -
    -
    - -

    ◆ rm_ob1203_prox_interrupt_type_t

    - -
    -
    -

    Proximity interrupt type

    - - - -
    Enumerator
    RM_OB1203_PROX_INTERRUPT_TYPE_NORMAL 

    Proximity normal interrupt.

    -
    RM_OB1203_PROX_INTERRUPT_TYPE_LOGIC 

    Proximity logic output interrupt.

    -
    - -
    -
    - -

    ◆ rm_ob1203_ppg_interrupt_type_t

    - -
    -
    -

    PPG interrupt type

    - - - -
    Enumerator
    RM_OB1203_PPG_INTERRUPT_TYPE_DATA 

    PPG data interrupt.

    -
    RM_OB1203_PPG_INTERRUPT_TYPE_FIFO_AFULL 

    PPG FIFO almost full interrupt.

    -
    - -
    -
    - -

    ◆ rm_ob1203_variance_threshold_t

    - -
    -
    -

    Variance threshold

    - - - - - - - - - -
    Enumerator
    RM_OB1203_VARIANCE_THRESHOLD_8_COUNTS 

    New LS_DATA varies by ± 8 counts compared to previous result.

    -
    RM_OB1203_VARIANCE_THRESHOLD_16_COUNTS 

    New LS_DATA varies by ± 16 counts compared to previous result.

    -
    RM_OB1203_VARIANCE_THRESHOLD_32_COUNTS 

    New LS_DATA varies by ± 32 counts compared to previous result.

    -
    RM_OB1203_VARIANCE_THRESHOLD_64_COUNTS 

    New LS_DATA varies by ± 64 counts compared to previous result.

    -
    RM_OB1203_VARIANCE_THRESHOLD_128_COUNTS 

    New LS_DATA varies by ± 128 counts compared to previous result.

    -
    RM_OB1203_VARIANCE_THRESHOLD_256_COUNTS 

    New LS_DATA varies by ± 256 counts compared to previous result.

    -
    RM_OB1203_VARIANCE_THRESHOLD_512_COUNTS 

    New LS_DATA varies by ± 512 counts compared to previous result.

    -
    RM_OB1203_VARIANCE_THRESHOLD_1024_COUNTS 

    New LS_DATA varies by ± 1024 counts compared to previous result.

    -
    - -
    -
    - -

    ◆ rm_ob1203_sleep_after_interrupt_t

    - -
    -
    -

    Sleep after interrupt

    - - - -
    Enumerator
    RM_OB1203_SLEEP_AFTER_INTERRUPT_DISABLE 

    Disable sleep after interrupt.

    -
    RM_OB1203_SLEEP_AFTER_INTERRUPT_ENABLE 

    Stop measurement after an interrupt occurs. After STATUS_0/STATUS_1 register is read, start measurement.

    -
    - -
    -
    - -

    ◆ rm_ob1203_moving_average_t

    - -
    -
    - - - - -
    enum rm_ob1203_moving_average_t
    -
    -

    Moving average

    - - - -
    Enumerator
    RM_OB1203_MOVING_AVERAGE_DISABLE 

    Moving average is disabled for Proximity mode.

    -
    RM_OB1203_MOVING_AVERAGE_ENABLE 

    Moving average is enabled for Proximity mode. Proximity data is the average of the current and previous measurement. The moving average is applied after digital offset cancellation.

    -
    - -
    -
    - -

    ◆ rm_ob1203_power_save_mode_t

    - -
    -
    - - - - -
    enum rm_ob1203_power_save_mode_t
    -
    -

    Power save mode

    - - - -
    Enumerator
    RM_OB1203_POWER_SAVE_MODE_DISABLE 

    Power save mode is disabled for PPG mode.

    -
    RM_OB1203_POWER_SAVE_MODE_ENABLE 

    Power save mode is enabled for PPG mode. On power save mode, some analog circuitry powers down between individual PPG measurements if the idle time.

    -
    - -
    -
    - -

    ◆ rm_ob1203_analog_cancellation_t

    - -
    -
    -

    Analog cancellation

    - - - -
    Enumerator
    RM_OB1203_ANALOG_CANCELLATION_DISABLE 

    No offset cancellation.

    -
    RM_OB1203_ANALOG_CANCELLATION_ENABLE 

    50% offset of the full-scale value

    -
    - -
    -
    - -

    ◆ rm_ob1203_number_led_pulses_t

    - -
    -
    -

    Number of LED pulses

    - - - - - - - -
    Enumerator
    RM_OB1203_NUM_LED_PULSES_1 

    1 pulse.

    -
    RM_OB1203_NUM_LED_PULSES_2 

    2 pulses.

    -
    RM_OB1203_NUM_LED_PULSES_4 

    4 pulses.

    -
    RM_OB1203_NUM_LED_PULSES_8 

    8 pulses.

    -
    RM_OB1203_NUM_LED_PULSES_16 

    16 pulses.

    -
    RM_OB1203_NUM_LED_PULSES_32 

    32 pulses.

    -
    - -
    -
    - -

    ◆ rm_ob1203_number_averaged_samples_t

    - -
    -
    -

    Number of averaged samples

    - - - - - - - -
    Enumerator
    RM_OB1203_NUM_AVERAGED_SAMPLES_1 

    1 (No averaging).

    -
    RM_OB1203_NUM_AVERAGED_SAMPLES_2 

    2 consecutives samples are averaged.

    -
    RM_OB1203_NUM_AVERAGED_SAMPLES_4 

    4 consecutives samples are averaged.

    -
    RM_OB1203_NUM_AVERAGED_SAMPLES_8 

    8 consecutives samples are averaged.

    -
    RM_OB1203_NUM_AVERAGED_SAMPLES_16 

    16 consecutives samples are averaged.

    -
    RM_OB1203_NUM_AVERAGED_SAMPLES_32 

    32 consecutives samples are averaged.

    -
    - -
    -
    - -

    ◆ rm_ob1203_light_resolution_meas_period_t

    - -
    -
    -

    Light resolution and measurement period

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Enumerator
    RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_25MS 

    Resolution : 13bit, measurement period : 25ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_50MS 

    Resolution : 13bit, measurement period : 50ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_100MS 

    Resolution : 13bit, measurement period : 100ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_200MS 

    Resolution : 13bit, measurement period : 200ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_500MS 

    Resolution : 13bit, measurement period : 500ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_1000MS 

    Resolution : 13bit, measurement period : 1000ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_2000MS 

    Resolution : 13bit, measurement period : 2000ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_25MS 

    Resolution : 16bit, measurement period : 25ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_50MS 

    Resolution : 16bit, measurement period : 50ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_100MS 

    Resolution : 16bit, measurement period : 100ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_200MS 

    Resolution : 16bit, measurement period : 200ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_500MS 

    Resolution : 16bit, measurement period : 500ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_1000MS 

    Resolution : 16bit, measurement period : 1000ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_2000MS 

    Resolution : 16bit, measurement period : 2000ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_50MS 

    Resolution : 17bit, measurement period : 50ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_100MS 

    Resolution : 17bit, measurement period : 100ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_200MS 

    Resolution : 17bit, measurement period : 200ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_500MS 

    Resolution : 17bit, measurement period : 500ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_1000MS 

    Resolution : 17bit, measurement period : 1000ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_2000MS 

    Resolution : 17bit, measurement period : 2000ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_100MS 

    Resolution : 18bit, measurement period : 100ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_200MS 

    Resolution : 18bit, measurement period : 200ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_500MS 

    Resolution : 18bit, measurement period : 500ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_1000MS 

    Resolution : 18bit, measurement period : 1000ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_2000MS 

    Resolution : 18bit, measurement period : 2000ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_200MS 

    Resolution : 19bit, measurement period : 200ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_500MS 

    Resolution : 19bit, measurement period : 500ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_1000MS 

    Resolution : 19bit, measurement period : 1000ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_2000MS 

    Resolution : 19bit, measurement period : 2000ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_20BIT_PERIOD_500MS 

    Resolution : 20bit, measurement period : 500ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_20BIT_PERIOD_1000MS 

    Resolution : 20bit, measurement period : 1000ms.

    -
    RM_OB1203_LIGHT_RESOLUTION_20BIT_PERIOD_2000MS 

    Resolution : 20bit, measurement period : 2000ms.

    -
    - -
    -
    - -

    ◆ rm_ob1203_prox_pulse_width_meas_period_t

    - -
    -
    -

    Proximity pulse width and measurement period

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Enumerator
    RM_OB1203_PROX_WIDTH_26US_PERIOD_3P125MS 

    Pulse width : 26us, measurement period : 3.125ms. Except for the number 32 of LED pulses.

    -
    RM_OB1203_PROX_WIDTH_26US_PERIOD_6P25MS 

    Pulse width : 26us, measurement period : 6.25ms.

    -
    RM_OB1203_PROX_WIDTH_26US_PERIOD_12P5MS 

    Pulse width : 26us, measurement period : 12.5ms.

    -
    RM_OB1203_PROX_WIDTH_26US_PERIOD_25MS 

    Pulse width : 26us, measurement period : 25ms.

    -
    RM_OB1203_PROX_WIDTH_26US_PERIOD_50MS 

    Pulse width : 26us, measurement period : 50ms.

    -
    RM_OB1203_PROX_WIDTH_26US_PERIOD_100MS 

    Pulse width : 26us, measurement period : 100ms.

    -
    RM_OB1203_PROX_WIDTH_26US_PERIOD_200MS 

    Pulse width : 26us, measurement period : 200ms.

    -
    RM_OB1203_PROX_WIDTH_26US_PERIOD_400MS 

    Pulse width : 26us, measurement period : 400ms.

    -
    RM_OB1203_PROX_WIDTH_42US_PERIOD_3P125MS 

    Pulse width : 42us, measurement period : 3.125ms. Except for the number 32 of LED pulses.

    -
    RM_OB1203_PROX_WIDTH_42US_PERIOD_6P25MS 

    Pulse width : 42us, measurement period : 6.25ms.

    -
    RM_OB1203_PROX_WIDTH_42US_PERIOD_12P5MS 

    Pulse width : 42us, measurement period : 12.5ms.

    -
    RM_OB1203_PROX_WIDTH_42US_PERIOD_25MS 

    Pulse width : 42us, measurement period : 25ms.

    -
    RM_OB1203_PROX_WIDTH_42US_PERIOD_50MS 

    Pulse width : 42us, measurement period : 50ms.

    -
    RM_OB1203_PROX_WIDTH_42US_PERIOD_100MS 

    Pulse width : 42us, measurement period : 100ms.

    -
    RM_OB1203_PROX_WIDTH_42US_PERIOD_200MS 

    Pulse width : 42us, measurement period : 200ms.

    -
    RM_OB1203_PROX_WIDTH_42US_PERIOD_400MS 

    Pulse width : 42us, measurement period : 400ms.

    -
    RM_OB1203_PROX_WIDTH_71US_PERIOD_3P125MS 

    Pulse width : 71us, measurement period : 3.125ms. Except for the number 16 and 32 of LED pulses.

    -
    RM_OB1203_PROX_WIDTH_71US_PERIOD_6P25MS 

    Pulse width : 71us, measurement period : 6.25ms. Except for the number 32 of LED pulses.

    -
    RM_OB1203_PROX_WIDTH_71US_PERIOD_12P5MS 

    Pulse width : 71us, measurement period : 12.5ms.

    -
    RM_OB1203_PROX_WIDTH_71US_PERIOD_25MS 

    Pulse width : 71us, measurement period : 25ms.

    -
    RM_OB1203_PROX_WIDTH_71US_PERIOD_50MS 

    Pulse width : 71us, measurement period : 50ms.

    -
    RM_OB1203_PROX_WIDTH_71US_PERIOD_100MS 

    Pulse width : 71us, measurement period : 100ms.

    -
    RM_OB1203_PROX_WIDTH_71US_PERIOD_200MS 

    Pulse width : 71us, measurement period : 200ms.

    -
    RM_OB1203_PROX_WIDTH_71US_PERIOD_400MS 

    Pulse width : 71us, measurement period : 400ms.

    -
    - -
    -
    - -

    ◆ rm_ob1203_ppg_pulse_width_meas_period_t

    - -
    -
    -

    PPG pulse width and measurement period

    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Enumerator
    RM_OB1203_PPG_WIDTH_130US_PERIOD_0P3125MS 

    Pulse width : 130us, measurement period : 0.3125ms. PPG1 mode only.

    -
    RM_OB1203_PPG_WIDTH_130US_PERIOD_0P625MS 

    Pulse width : 130us, measurement period : 0.625ms.

    -
    RM_OB1203_PPG_WIDTH_130US_PERIOD_1MS 

    Pulse width : 130us, measurement period : 1ms.

    -
    RM_OB1203_PPG_WIDTH_130US_PERIOD_1P25MS 

    Pulse width : 130us, measurement period : 1.25ms.

    -
    RM_OB1203_PPG_WIDTH_130US_PERIOD_2P5MS 

    Pulse width : 130us, measurement period : 2.5ms.

    -
    RM_OB1203_PPG_WIDTH_130US_PERIOD_5MS 

    Pulse width : 130us, measurement period : 5ms.

    -
    RM_OB1203_PPG_WIDTH_130US_PERIOD_10MS 

    Pulse width : 130us, measurement period : 10ms.

    -
    RM_OB1203_PPG_WIDTH_130US_PERIOD_20MS 

    Pulse width : 130us, measurement period : 20ms.

    -
    RM_OB1203_PPG_WIDTH_247US_PERIOD_0P625MS 

    Pulse width : 247us, measurement period : 0.625ms. PPG1 mode only.

    -
    RM_OB1203_PPG_WIDTH_247US_PERIOD_1MS 

    Pulse width : 247us, measurement period : 1ms.

    -
    RM_OB1203_PPG_WIDTH_247US_PERIOD_1P25MS 

    Pulse width : 247us, measurement period : 1.25ms.

    -
    RM_OB1203_PPG_WIDTH_247US_PERIOD_2P5MS 

    Pulse width : 247us, measurement period : 2.5ms.

    -
    RM_OB1203_PPG_WIDTH_247US_PERIOD_5MS 

    Pulse width : 247us, measurement period : 5ms.

    -
    RM_OB1203_PPG_WIDTH_247US_PERIOD_10MS 

    Pulse width : 247us, measurement period : 10ms.

    -
    RM_OB1203_PPG_WIDTH_247US_PERIOD_20MS 

    Pulse width : 247us, measurement period : 20ms.

    -
    RM_OB1203_PPG_WIDTH_481US_PERIOD_1MS 

    Pulse width : 481us, measurement period : 1ms. PPG1 mode only.

    -
    RM_OB1203_PPG_WIDTH_481US_PERIOD_1P25MS 

    Pulse width : 481us, measurement period : 1.25ms. PPG1 mode only.

    -
    RM_OB1203_PPG_WIDTH_481US_PERIOD_2P5MS 

    Pulse width : 481us, measurement period : 2.5ms.

    -
    RM_OB1203_PPG_WIDTH_481US_PERIOD_5MS 

    Pulse width : 481us, measurement period : 5ms.

    -
    RM_OB1203_PPG_WIDTH_481US_PERIOD_10MS 

    Pulse width : 481us, measurement period : 10ms.

    -
    RM_OB1203_PPG_WIDTH_481US_PERIOD_20MS 

    Pulse width : 481us, measurement period : 20ms.

    -
    RM_OB1203_PPG_WIDTH_949US_PERIOD_2P5MS 

    Pulse width : 949us, measurement period : 2.5ms. PPG1 mode only.

    -
    RM_OB1203_PPG_WIDTH_949US_PERIOD_5MS 

    Pulse width : 949us, measurement period : 5ms.

    -
    RM_OB1203_PPG_WIDTH_949US_PERIOD_10MS 

    Pulse width : 949us, measurement period : 10ms.

    -
    RM_OB1203_PPG_WIDTH_949US_PERIOD_20MS 

    Pulse width : 949us, measurement period : 20ms.

    -
    - -
    -
    - -

    ◆ rm_ob1203_fifo_rollover_t

    - -
    -
    - - - - -
    enum rm_ob1203_fifo_rollover_t
    -
    -

    FIFO Rollover

    - - - -
    Enumerator
    RM_OB1203_FIFO_ROLLOVER_DISABLE 

    In the event of a full FIFO, no more samples of PPG data are written into the FIFO; the samples from new measurements are lost.

    -
    RM_OB1203_FIFO_ROLLOVER_ENABLE 

    New PPG data will always be written to the FIFO, and the FIFO Write Pointer is incremented (rollover). If the FIFO is full, old data will be overwritten. The FIFO Overflow Counter counts the number of lost (overwritten) and respectively the number of new samples. The FIFO Read Pointer remains unchanged.

    -
    - -
    -
    -
    -
    - - - - - diff --git a/group___r_m___o_b1203___a_p_i.js b/group___r_m___o_b1203___a_p_i.js deleted file mode 100644 index 6eaf9c5..0000000 --- a/group___r_m___o_b1203___a_p_i.js +++ /dev/null @@ -1,266 +0,0 @@ -var group___r_m___o_b1203___a_p_i = -[ - [ "rm_ob1203_callback_args_t", "group___r_m___o_b1203___a_p_i.html#structrm__ob1203__callback__args__t", null ], - [ "rm_ob1203_raw_data_t", "group___r_m___o_b1203___a_p_i.html#structrm__ob1203__raw__data__t", [ - [ "adc_data", "group___r_m___o_b1203___a_p_i.html#ad08d19d7beac8dd1f6a672ab4006eb71", null ] - ] ], - [ "rm_ob1203_light_data_t", "group___r_m___o_b1203___a_p_i.html#structrm__ob1203__light__data__t", [ - [ "clear_data", "group___r_m___o_b1203___a_p_i.html#a08e4bed45dd5f045f149e7429e2bb8b5", null ], - [ "green_data", "group___r_m___o_b1203___a_p_i.html#ab5f700a5790ea992d82af3a1c7216d66", null ], - [ "blue_data", "group___r_m___o_b1203___a_p_i.html#aed354d575a3add4a27f6fd3770b029f9", null ], - [ "red_data", "group___r_m___o_b1203___a_p_i.html#ac6f9b82ccffba821d2d1d59cc044d024", null ], - [ "comp_data", "group___r_m___o_b1203___a_p_i.html#a0596b99630a0a42868fd6832e2123f60", null ] - ] ], - [ "rm_ob1203_prox_data_t", "group___r_m___o_b1203___a_p_i.html#structrm__ob1203__prox__data__t", [ - [ "proximity_data", "group___r_m___o_b1203___a_p_i.html#a9ac32b72f200c27a6a0c01c0cea30fd3", null ] - ] ], - [ "rm_ob1203_ppg_data_t", "group___r_m___o_b1203___a_p_i.html#structrm__ob1203__ppg__data__t", [ - [ "ppg_data", "group___r_m___o_b1203___a_p_i.html#ab734102cdf18606c10541df451fcf963", null ] - ] ], - [ "rm_ob1203_device_interrupt_cfg_t", "group___r_m___o_b1203___a_p_i.html#structrm__ob1203__device__interrupt__cfg__t", [ - [ "light_prox_mode", "group___r_m___o_b1203___a_p_i.html#a098de06ea0c6b7261ccca0d471f964f6", null ], - [ "light_type", "group___r_m___o_b1203___a_p_i.html#a53a1af5cbd0dd954d6e5cffbd217d834", null ], - [ "light_source", "group___r_m___o_b1203___a_p_i.html#a464bef4e7cf70926e60bbed2c0b492af", null ], - [ "prox_type", "group___r_m___o_b1203___a_p_i.html#a45f7c3c0573f56bf411ac2953b7c5883", null ], - [ "persist", "group___r_m___o_b1203___a_p_i.html#adf71a33aec370fd165af3dff0c4d8b7a", null ], - [ "ppg_type", "group___r_m___o_b1203___a_p_i.html#a53330895d99a2275d9c0017cde87f7be", null ] - ] ], - [ "rm_ob1203_device_status_t", "group___r_m___o_b1203___a_p_i.html#structrm__ob1203__device__status__t", [ - [ "fifo_afull_interrupt_occur", "group___r_m___o_b1203___a_p_i.html#a883db336eabdcd2eec7d787f2664e9d7", null ] - ] ], - [ "rm_ob1203_gain_t", "group___r_m___o_b1203___a_p_i.html#structrm__ob1203__gain__t", [ - [ "light", "group___r_m___o_b1203___a_p_i.html#a895aed77cf1aba3014b6d0b631e8a10d", null ], - [ "ppg_prox", "group___r_m___o_b1203___a_p_i.html#a36749f94b25fce91140f34d29c8e30bb", null ] - ] ], - [ "rm_ob1203_led_current_t", "group___r_m___o_b1203___a_p_i.html#structrm__ob1203__led__current__t", [ - [ "ir_led", "group___r_m___o_b1203___a_p_i.html#af510fc446832c663bed37b3ab42a90b3", null ], - [ "red_led", "group___r_m___o_b1203___a_p_i.html#ac420d009e91e7281052cd9d34a057394", null ] - ] ], - [ "rm_ob1203_fifo_info_t", "group___r_m___o_b1203___a_p_i.html#structrm__ob1203__fifo__info__t", [ - [ "write_index", "group___r_m___o_b1203___a_p_i.html#ab55258f8d19ebb8ccc07a2524ddaaa63", null ], - [ "read_index", "group___r_m___o_b1203___a_p_i.html#a08c6a80cb4cea1048712c81229fc6d57", null ], - [ "overflow_counter", "group___r_m___o_b1203___a_p_i.html#a4c7f200673051f7f58eb32ff1e377eea", null ], - [ "unread_samples", "group___r_m___o_b1203___a_p_i.html#a1ae36e22e66dbb0319f3f42931dfd9f7", null ] - ] ], - [ "rm_ob1203_cfg_t", "group___r_m___o_b1203___a_p_i.html#structrm__ob1203__cfg__t", [ - [ "semaphore_timeout", "group___r_m___o_b1203___a_p_i.html#a9ad151287228fa18a0314b5869cd876a", null ], - [ "p_comms_instance", "group___r_m___o_b1203___a_p_i.html#a8a9cdc12354f28a3e33700e5df67de20", null ], - [ "p_irq_instance", "group___r_m___o_b1203___a_p_i.html#af8fdc3428fcbe22e4878a27ccde17b0b", null ], - [ "p_context", "group___r_m___o_b1203___a_p_i.html#adf018d2e314ba41ba4dfb56ebd411501", null ], - [ "p_extend", "group___r_m___o_b1203___a_p_i.html#a4cbf8f98a7e43f101dceb15005784375", null ], - [ "p_comms_callback", "group___r_m___o_b1203___a_p_i.html#a95b8a8c5eb90336511e811dcc960546c", null ], - [ "p_irq_callback", "group___r_m___o_b1203___a_p_i.html#a212ec348b354cb3cce33fc0d313feec8", null ] - ] ], - [ "rm_ob1203_api_t", "group___r_m___o_b1203___a_p_i.html#structrm__ob1203__api__t", [ - [ "open", "group___r_m___o_b1203___a_p_i.html#a3d137e0be66735864d9a95669fa2c1f3", null ], - [ "measurementStart", "group___r_m___o_b1203___a_p_i.html#af9780f361fb17b04000550de7543134a", null ], - [ "measurementStop", "group___r_m___o_b1203___a_p_i.html#a9365629cc58e4f4c9cf33420b07416f5", null ], - [ "lightRead", "group___r_m___o_b1203___a_p_i.html#ad778eb596d6af74ccedec46ed4dec9f7", null ], - [ "lightDataCalculate", "group___r_m___o_b1203___a_p_i.html#aa3ca0efc07f8e5cdf3086fe422239b60", null ], - [ "proxRead", "group___r_m___o_b1203___a_p_i.html#a198466f69342eda1f86d4853d0157f22", null ], - [ "proxDataCalculate", "group___r_m___o_b1203___a_p_i.html#a9b7d68fb7a2baf7cca79ff3026e36cd5", null ], - [ "ppgRead", "group___r_m___o_b1203___a_p_i.html#a9f902d2c8bf975288a49f443f20092ae", null ], - [ "ppgDataCalculate", "group___r_m___o_b1203___a_p_i.html#a2f7c11ddb2c3d8c9cf91c25e3183daa1", null ], - [ "deviceStatusGet", "group___r_m___o_b1203___a_p_i.html#abd612814bfe809e1435fab3ba2c6b2e2", null ], - [ "deviceInterruptCfgSet", "group___r_m___o_b1203___a_p_i.html#a32be3218edf3a0a22e3fd7403ae8d5e7", null ], - [ "gainSet", "group___r_m___o_b1203___a_p_i.html#a82fdd4f8e1ef45d2f06a355d60979968", null ], - [ "ledCurrentSet", "group___r_m___o_b1203___a_p_i.html#a7d3decdc87199472697b5aec3387d406", null ], - [ "fifoInfoGet", "group___r_m___o_b1203___a_p_i.html#ace63f4f8958af6e1424ad4fa176bbcf2", null ], - [ "close", "group___r_m___o_b1203___a_p_i.html#afb392158117d2cc57e8c0ec5042b1361", null ] - ] ], - [ "rm_ob1203_instance_t", "group___r_m___o_b1203___a_p_i.html#structrm__ob1203__instance__t", [ - [ "p_ctrl", "group___r_m___o_b1203___a_p_i.html#a5bdd78a4533b146b93676fb1f630eaee", null ], - [ "p_cfg", "group___r_m___o_b1203___a_p_i.html#a59afad08ce30308e6606c3362b903b47", null ], - [ "p_api", "group___r_m___o_b1203___a_p_i.html#ab0b7710c3ff54f649c0f544612570e84", null ] - ] ], - [ "rm_ob1203_ctrl_t", "group___r_m___o_b1203___a_p_i.html#gac6e75ff65e4c3354fac0f8a44b8545bf", null ], - [ "rm_ob1203_event_t", "group___r_m___o_b1203___a_p_i.html#ga649fde9081cd4c40cac825f132598091", null ], - [ "rm_ob1203_operation_mode_t", "group___r_m___o_b1203___a_p_i.html#ga6c3b7fc2670bb119c9eb07acecf69847", [ - [ "RM_OB1203_OPERATION_MODE_STANDBY", "group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847a9416c58f6cd1559af0cc289ab9d55de9", null ], - [ "RM_OB1203_OPERATION_MODE_LIGHT", "group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847a3cc0b2281221c3d2485687d2a2b21ab7", null ], - [ "RM_OB1203_OPERATION_MODE_PROXIMITY", "group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847adef6dd35d4907586d53e93c43afa5dba", null ], - [ "RM_OB1203_OPERATION_MODE_PPG", "group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847ab4a3955dbe4126e7e2499886e90142f5", null ] - ] ], - [ "rm_ob1203_light_sensor_mode_t", "group___r_m___o_b1203___a_p_i.html#ga35f1462a48dabaf6cf97ece29efe6271", [ - [ "RM_OB1203_LIGHT_SENSOR_MODE_LS", "group___r_m___o_b1203___a_p_i.html#gga35f1462a48dabaf6cf97ece29efe6271afd6cb7d5faabb578298d1b16364250ab", null ], - [ "RM_OB1203_LIGHT_SENSOR_MODE_CS", "group___r_m___o_b1203___a_p_i.html#gga35f1462a48dabaf6cf97ece29efe6271a13e03529af4c330ca76c006610e52c77", null ] - ] ], - [ "rm_ob1203_ppg_sensor_mode_t", "group___r_m___o_b1203___a_p_i.html#ga073572d75f036110608bf2a723c62fc8", [ - [ "RM_OB1203_PPG_SENSOR_MODE_PPG1", "group___r_m___o_b1203___a_p_i.html#gga073572d75f036110608bf2a723c62fc8aff55255344406d1efbf027168091d6ad", null ], - [ "RM_OB1203_PPG_SENSOR_MODE_PPG2", "group___r_m___o_b1203___a_p_i.html#gga073572d75f036110608bf2a723c62fc8a31d155e569e27e89cb1fda28b9c873c2", null ] - ] ], - [ "rm_ob1203_light_data_type_t", "group___r_m___o_b1203___a_p_i.html#ga0c0d347b4e6af84c4f4148ea68280337", [ - [ "RM_OB1203_LIGHT_DATA_TYPE_ALL", "group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337aea40c00eb88fbcade796b8bbdc7276db", null ], - [ "RM_OB1203_LIGHT_DATA_TYPE_CLEAR", "group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337af8b045c45eaa68438347223926bdb6ab", null ], - [ "RM_OB1203_LIGHT_DATA_TYPE_GREEN", "group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337ae914fde809d1209287046352826f65d5", null ], - [ "RM_OB1203_LIGHT_DATA_TYPE_BLUE", "group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337a4bc0b692b6ccf21d3063c0b49f49f26b", null ], - [ "RM_OB1203_LIGHT_DATA_TYPE_RED", "group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337a59270ba96c793b7dd2c76e740e3feb29", null ], - [ "RM_OB1203_LIGHT_DATA_TYPE_COMP", "group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337a9f0e97293c93ac039f14b52d12c5048b", null ] - ] ], - [ "rm_ob1203_light_gain_t", "group___r_m___o_b1203___a_p_i.html#gaa246c1288f2d4941973249afa6acb4d4", [ - [ "RM_OB1203_LIGHT_GAIN_1", "group___r_m___o_b1203___a_p_i.html#ggaa246c1288f2d4941973249afa6acb4d4ae9174a008bd9ea518eae214629f0a814", null ], - [ "RM_OB1203_LIGHT_GAIN_3", "group___r_m___o_b1203___a_p_i.html#ggaa246c1288f2d4941973249afa6acb4d4a273cd76b959704750d9c97124d25c176", null ], - [ "RM_OB1203_LIGHT_GAIN_6", "group___r_m___o_b1203___a_p_i.html#ggaa246c1288f2d4941973249afa6acb4d4a992719f4c8e225f3a66e49139973ee7e", null ] - ] ], - [ "rm_ob1203_ppg_prox_gain_t", "group___r_m___o_b1203___a_p_i.html#ga02afdc6d89538793ab3f1ebd2a84ff6f", [ - [ "RM_OB1203_PPG_PROX_GAIN_1", "group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa1358cf29768b43f045fdef6e4ceb6ba9", null ], - [ "RM_OB1203_PPG_PROX_GAIN_1P5", "group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa802f734955e3c3bd8e129cdda3ec7cf5", null ], - [ "RM_OB1203_PPG_PROX_GAIN_2", "group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa37b9289fd92d4c206f21a06ea2a99ca5", null ], - [ "RM_OB1203_PPG_PROX_GAIN_4", "group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa9a996f750da299f4113478e15feb8ffa", null ] - ] ], - [ "rm_ob1203_led_order_t", "group___r_m___o_b1203___a_p_i.html#gab0d74efedf983faf97798d0136376219", [ - [ "RM_OB1203_LED_IR_FIRST_RED_SECOND", "group___r_m___o_b1203___a_p_i.html#ggab0d74efedf983faf97798d0136376219a8317b7075ea1bdad158c89cdc45fb734", null ], - [ "RM_OB1203_LED_RED_FIRST_IR_SECOND", "group___r_m___o_b1203___a_p_i.html#ggab0d74efedf983faf97798d0136376219aca0f3a2d81d8872da228cffe49b0298c", null ] - ] ], - [ "rm_ob1203_light_interrupt_type_t", "group___r_m___o_b1203___a_p_i.html#ga4569d4be03632003ce030d966d4e02c5", [ - [ "RM_OB1203_LIGHT_INTERRUPT_TYPE_THRESHOLD", "group___r_m___o_b1203___a_p_i.html#gga4569d4be03632003ce030d966d4e02c5a44bb84ec3d4ec69d6e51912dc260b5b0", null ], - [ "RM_OB1203_LIGHT_INTERRUPT_TYPE_VARIATION", "group___r_m___o_b1203___a_p_i.html#gga4569d4be03632003ce030d966d4e02c5a94909f671cbef1a6b4fc76b6a9a1598d", null ] - ] ], - [ "rm_ob1203_light_interrupt_source_t", "group___r_m___o_b1203___a_p_i.html#gad65df49755c15c3a73ea8eb8ca2a9e3a", [ - [ "RM_OB1203_LIGHT_INTERRUPT_SOURCE_CLEAR_CHANNEL", "group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aa69050221f0025b3e93235e6e316b6dac", null ], - [ "RM_OB1203_LIGHT_INTERRUPT_SOURCE_GREEN_CHANNEL", "group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aacc3d165eaaefc115adc56edc587ff98e", null ], - [ "RM_OB1203_LIGHT_INTERRUPT_SOURCE_RED_CHANNEL", "group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aab636540a1252aacc110fce0ee12335ed", null ], - [ "RM_OB1203_LIGHT_INTERRUPT_SOURCE_BLUE_CHANNEL", "group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aae7d921994b49292cf3f320e60f376cc6", null ] - ] ], - [ "rm_ob1203_prox_interrupt_type_t", "group___r_m___o_b1203___a_p_i.html#gaac3af213866be23053d28609f06bf748", [ - [ "RM_OB1203_PROX_INTERRUPT_TYPE_NORMAL", "group___r_m___o_b1203___a_p_i.html#ggaac3af213866be23053d28609f06bf748a6975eb682b450d57085774e5caa4e0a0", null ], - [ "RM_OB1203_PROX_INTERRUPT_TYPE_LOGIC", "group___r_m___o_b1203___a_p_i.html#ggaac3af213866be23053d28609f06bf748ad3fdbc2dbf5eb8cc81809fb331ebab22", null ] - ] ], - [ "rm_ob1203_ppg_interrupt_type_t", "group___r_m___o_b1203___a_p_i.html#ga8ee7cd0bc32e3c09662791b7e86ffe83", [ - [ "RM_OB1203_PPG_INTERRUPT_TYPE_DATA", "group___r_m___o_b1203___a_p_i.html#gga8ee7cd0bc32e3c09662791b7e86ffe83a45cc5bde2c5eb934a0b8236782159316", null ], - [ "RM_OB1203_PPG_INTERRUPT_TYPE_FIFO_AFULL", "group___r_m___o_b1203___a_p_i.html#gga8ee7cd0bc32e3c09662791b7e86ffe83a1c7832e2114aa92813f87393cbcaecb9", null ] - ] ], - [ "rm_ob1203_variance_threshold_t", "group___r_m___o_b1203___a_p_i.html#gaeae8a766bbc25cd6e1097c44f03c8dea", [ - [ "RM_OB1203_VARIANCE_THRESHOLD_8_COUNTS", "group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaae5c20999c11a608e9118a20e28a4bca4", null ], - [ "RM_OB1203_VARIANCE_THRESHOLD_16_COUNTS", "group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa6eb8c5d746b48042d340aaccdbc771ac", null ], - [ "RM_OB1203_VARIANCE_THRESHOLD_32_COUNTS", "group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa4df81429a3b09e42a5c447880c69603a", null ], - [ "RM_OB1203_VARIANCE_THRESHOLD_64_COUNTS", "group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa08857b0d4fa967c07482a838a0112f81", null ], - [ "RM_OB1203_VARIANCE_THRESHOLD_128_COUNTS", "group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaac750fdae8ec2c9149383a0c2bead3be9", null ], - [ "RM_OB1203_VARIANCE_THRESHOLD_256_COUNTS", "group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa01fe6dda3e7b16e13320cdccf3bd57c9", null ], - [ "RM_OB1203_VARIANCE_THRESHOLD_512_COUNTS", "group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa88eda7368cb0d6f1d3d84628bee163f6", null ], - [ "RM_OB1203_VARIANCE_THRESHOLD_1024_COUNTS", "group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaad8823af1f00716064d826b5117e90460", null ] - ] ], - [ "rm_ob1203_sleep_after_interrupt_t", "group___r_m___o_b1203___a_p_i.html#ga3de882d54ed2555e788d24da2059217d", [ - [ "RM_OB1203_SLEEP_AFTER_INTERRUPT_DISABLE", "group___r_m___o_b1203___a_p_i.html#gga3de882d54ed2555e788d24da2059217dac0f8b2f67cbdedb8ebaec4564742ab0b", null ], - [ "RM_OB1203_SLEEP_AFTER_INTERRUPT_ENABLE", "group___r_m___o_b1203___a_p_i.html#gga3de882d54ed2555e788d24da2059217daf2c7dbd03421e0cecfcdadac5fdde530", null ] - ] ], - [ "rm_ob1203_moving_average_t", "group___r_m___o_b1203___a_p_i.html#ga110a5efe8990e8dd03692e565f452910", [ - [ "RM_OB1203_MOVING_AVERAGE_DISABLE", "group___r_m___o_b1203___a_p_i.html#gga110a5efe8990e8dd03692e565f452910a95d8846c0785f83c63ab55edbfb06517", null ], - [ "RM_OB1203_MOVING_AVERAGE_ENABLE", "group___r_m___o_b1203___a_p_i.html#gga110a5efe8990e8dd03692e565f452910a2fd48413cb54c599b6b162424e4536e1", null ] - ] ], - [ "rm_ob1203_power_save_mode_t", "group___r_m___o_b1203___a_p_i.html#ga904954d6bf969490d7fc31d1589fba5c", [ - [ "RM_OB1203_POWER_SAVE_MODE_DISABLE", "group___r_m___o_b1203___a_p_i.html#gga904954d6bf969490d7fc31d1589fba5ca370e4afaa8a380268c6a143fc0b58bf4", null ], - [ "RM_OB1203_POWER_SAVE_MODE_ENABLE", "group___r_m___o_b1203___a_p_i.html#gga904954d6bf969490d7fc31d1589fba5ca426b1b1d7b3540f1537d7cf1b0cc81b0", null ] - ] ], - [ "rm_ob1203_analog_cancellation_t", "group___r_m___o_b1203___a_p_i.html#ga4d79e3bac567b22223b4e219a6ee7f34", [ - [ "RM_OB1203_ANALOG_CANCELLATION_DISABLE", "group___r_m___o_b1203___a_p_i.html#gga4d79e3bac567b22223b4e219a6ee7f34a70dd99f434b1ee1125f38037a11cafd0", null ], - [ "RM_OB1203_ANALOG_CANCELLATION_ENABLE", "group___r_m___o_b1203___a_p_i.html#gga4d79e3bac567b22223b4e219a6ee7f34ae89ccedc87ea692b1f2413f5ca399d17", null ] - ] ], - [ "rm_ob1203_number_led_pulses_t", "group___r_m___o_b1203___a_p_i.html#gaf6e99ef0d49ecff17a9ffd16f0b096e6", [ - [ "RM_OB1203_NUM_LED_PULSES_1", "group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6aadeb97a8a692a60657fc1300364ef070", null ], - [ "RM_OB1203_NUM_LED_PULSES_2", "group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6aad0e1e2f9b9af4113e192d88f78080e5", null ], - [ "RM_OB1203_NUM_LED_PULSES_4", "group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6a1435e83d507b41bd110a0240bc3950cd", null ], - [ "RM_OB1203_NUM_LED_PULSES_8", "group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6adf25dc114d5f5db0eea0e300df89d746", null ], - [ "RM_OB1203_NUM_LED_PULSES_16", "group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6a25b3df5b9008788cb20c5933c676c3e5", null ], - [ "RM_OB1203_NUM_LED_PULSES_32", "group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6a24b5ddd343521d9b69e828ce0ba80d07", null ] - ] ], - [ "rm_ob1203_number_averaged_samples_t", "group___r_m___o_b1203___a_p_i.html#ga7dc5ec94376eb3c1fa0a16b549c56f5d", [ - [ "RM_OB1203_NUM_AVERAGED_SAMPLES_1", "group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5dae6cb3e25b7ddbdfe77af7449242e3a6b", null ], - [ "RM_OB1203_NUM_AVERAGED_SAMPLES_2", "group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5daf57cb92268f8a235f67068e0da7e7273", null ], - [ "RM_OB1203_NUM_AVERAGED_SAMPLES_4", "group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5da99ae90da914f6505845157ad0ac157c9", null ], - [ "RM_OB1203_NUM_AVERAGED_SAMPLES_8", "group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5da99456feeb64e8edd8ca52377dcea9577", null ], - [ "RM_OB1203_NUM_AVERAGED_SAMPLES_16", "group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5daad4fcc097b074719edd601b0cd5eb5b4", null ], - [ "RM_OB1203_NUM_AVERAGED_SAMPLES_32", "group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5da645e8b5b2e29f09e8e6cc83f94749e72", null ] - ] ], - [ "rm_ob1203_light_resolution_meas_period_t", "group___r_m___o_b1203___a_p_i.html#gab55b5fd0ddd115230c80a2ef140cfdc8", [ - [ "RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_25MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a270de4113bcb56fa2d2cd33123c9300a", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_50MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a4d38fd50dc593444db3f70eefdf6b84c", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_100MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ab73f57786abac264e13cbe66909a7069", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_200MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a3349948bf41a923ecebd7a8534a0a701", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_500MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a6b10517164efcb08e7b9710c005b045b", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_1000MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a389a930d35eca8c775436eb3dfad1a7a", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_2000MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8afb5da77ac9f5be32835578094b09033b", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_25MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ad861783af9f2199aad76b67400421157", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_50MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a07b2a0293d949115e99655755e001a55", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_100MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a7d83d62a70213a3b0404370f69ac413f", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_200MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ae00706e94ce2c350f033bb7a392adf1c", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_500MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a40e14ae9c5672a5b0b6f55f9049c80f9", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_1000MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8adc60ff2b74a6afbf149ae67b3cadc009", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_2000MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a5e3736a8758ebd60d10fc97bc29f8b2c", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_50MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a0ba6189051af14d24d01dec04819bc7c", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_100MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8aa1355f1bdffe1e10329ae5d0c9c4cad1", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_200MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ac93631988e2c51f9118424bdcef20324", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_500MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a8bd726328882e0eef7f54db95c0ff492", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_1000MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a852688e58f305b400ecec5c8b1b589e2", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_2000MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a1e675d09585221bee21bb6dfc2796e23", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_100MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a3d39da018f5b030535f8a2dd2b7a0677", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_200MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ac0e9b11ddac87432c2a0aabcee37bb3a", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_500MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ad7fee4ee27a9193608d6ed31d37e35f4", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_1000MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a34c30ba32f9828c2381147e0fc1e695d", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_2000MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ac287c0f09270b5e70996b9f9d1abdf5c", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_200MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8abee592cc7872bb6d1c1b446ee30615cb", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_500MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a7018c6b3526b0c4ed0e53355ad1e9015", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_1000MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8adbb61242372029ffbb7718acb2420e6c", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_2000MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a5cba3d5f2a792dcc31393207c035db7c", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_20BIT_PERIOD_500MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a09ba08ba7407e574104472a1f885b72e", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_20BIT_PERIOD_1000MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a3be781c8dc11d301cdca9a4f99028488", null ], - [ "RM_OB1203_LIGHT_RESOLUTION_20BIT_PERIOD_2000MS", "group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a96948352456100c3be91fc1936c9a024", null ] - ] ], - [ "rm_ob1203_prox_pulse_width_meas_period_t", "group___r_m___o_b1203___a_p_i.html#ga463e63a319a589ebdcf29b0b482b2f00", [ - [ "RM_OB1203_PROX_WIDTH_26US_PERIOD_3P125MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a314ab60d336fc12e5dfc2ae041443742", null ], - [ "RM_OB1203_PROX_WIDTH_26US_PERIOD_6P25MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a5df8af19ddf7e0e5b29382ca3a862548", null ], - [ "RM_OB1203_PROX_WIDTH_26US_PERIOD_12P5MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a27d90b64352a53d0700ba95b3145258e", null ], - [ "RM_OB1203_PROX_WIDTH_26US_PERIOD_25MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a57210f78a3b7ed1c3dd1ed2f99b226ad", null ], - [ "RM_OB1203_PROX_WIDTH_26US_PERIOD_50MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a467ccc7a5975e9b7c91887e843bb9d55", null ], - [ "RM_OB1203_PROX_WIDTH_26US_PERIOD_100MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a8bd871ff7eeb47240c756ff6abf77e7f", null ], - [ "RM_OB1203_PROX_WIDTH_26US_PERIOD_200MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ac869d4e42f75cdbdd19a3d4cb21be2bd", null ], - [ "RM_OB1203_PROX_WIDTH_26US_PERIOD_400MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ad620deac939b9257fe7b42a362498d08", null ], - [ "RM_OB1203_PROX_WIDTH_42US_PERIOD_3P125MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ab0c9375ebb576c01ebcbb79ba741ef17", null ], - [ "RM_OB1203_PROX_WIDTH_42US_PERIOD_6P25MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00acf3e6a52d26718a151e3721641e2f4cd", null ], - [ "RM_OB1203_PROX_WIDTH_42US_PERIOD_12P5MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ab983d1fc86076b118648a7e61d843471", null ], - [ "RM_OB1203_PROX_WIDTH_42US_PERIOD_25MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00af7dad8b9ae1d51a750327d06cadc78fc", null ], - [ "RM_OB1203_PROX_WIDTH_42US_PERIOD_50MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a25feb157e54b23c386c4c0e397bea4a5", null ], - [ "RM_OB1203_PROX_WIDTH_42US_PERIOD_100MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a13648173ac9d85546b5b8fb1b3c70f0b", null ], - [ "RM_OB1203_PROX_WIDTH_42US_PERIOD_200MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a6ace2781bd3f2b78dc2f1b8f51dbf245", null ], - [ "RM_OB1203_PROX_WIDTH_42US_PERIOD_400MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ae18888686afe4ccbea3605302bb00a56", null ], - [ "RM_OB1203_PROX_WIDTH_71US_PERIOD_3P125MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a0591b79b06cb0090a0f18f1690bf4ed1", null ], - [ "RM_OB1203_PROX_WIDTH_71US_PERIOD_6P25MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00aa164c28eae63fc9296c0430360ff2a8f", null ], - [ "RM_OB1203_PROX_WIDTH_71US_PERIOD_12P5MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00abb586783c011c8903ce5cae04074b9b7", null ], - [ "RM_OB1203_PROX_WIDTH_71US_PERIOD_25MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a94505e88a6eec7889fe4bb9f53cc4884", null ], - [ "RM_OB1203_PROX_WIDTH_71US_PERIOD_50MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a22e8a697d05a88e2a1d3c9224bf927c8", null ], - [ "RM_OB1203_PROX_WIDTH_71US_PERIOD_100MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a174595a8a0904152de8b1b8e4f588b8b", null ], - [ "RM_OB1203_PROX_WIDTH_71US_PERIOD_200MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a2bdfe1777f9dbc98e07788109ec41d53", null ], - [ "RM_OB1203_PROX_WIDTH_71US_PERIOD_400MS", "group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a6e4f60ef6f8a4af28ec19a6bc9f17012", null ] - ] ], - [ "rm_ob1203_ppg_pulse_width_meas_period_t", "group___r_m___o_b1203___a_p_i.html#ga5bb022affce59b47909e01ae68d01f5c", [ - [ "RM_OB1203_PPG_WIDTH_130US_PERIOD_0P3125MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca68d8096f51f9e4445e056d251c9a88c5", null ], - [ "RM_OB1203_PPG_WIDTH_130US_PERIOD_0P625MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caf6a2a946c6f32d87022c3ed12999923a", null ], - [ "RM_OB1203_PPG_WIDTH_130US_PERIOD_1MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caaab0ee2f34699c866e356cb92136a6f2", null ], - [ "RM_OB1203_PPG_WIDTH_130US_PERIOD_1P25MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca3887f415348499b2e9097bed0be1757e", null ], - [ "RM_OB1203_PPG_WIDTH_130US_PERIOD_2P5MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca666997496dd31d5f539b709174542cf0", null ], - [ "RM_OB1203_PPG_WIDTH_130US_PERIOD_5MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca5b17dd61b00150dd65ee8755d832789c", null ], - [ "RM_OB1203_PPG_WIDTH_130US_PERIOD_10MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca0946b20f3b3e2e60fe86686a44aa9b5e", null ], - [ "RM_OB1203_PPG_WIDTH_130US_PERIOD_20MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca6d4aa062b55a71221c98969a3edacf98", null ], - [ "RM_OB1203_PPG_WIDTH_247US_PERIOD_0P625MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca70c80a609dd57d364fbfbb9700571eb1", null ], - [ "RM_OB1203_PPG_WIDTH_247US_PERIOD_1MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca36092df99bf6676f48f583acef13a6c9", null ], - [ "RM_OB1203_PPG_WIDTH_247US_PERIOD_1P25MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cad7defeef4b79039ed7dd5cc5ca252cd0", null ], - [ "RM_OB1203_PPG_WIDTH_247US_PERIOD_2P5MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cacf8b5fec64b36730138fbfb48d3aee83", null ], - [ "RM_OB1203_PPG_WIDTH_247US_PERIOD_5MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca3a797e28dd9b3a348ed631c88998f13e", null ], - [ "RM_OB1203_PPG_WIDTH_247US_PERIOD_10MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cac99e47f5096ebabcfc6ecbbff2026ebc", null ], - [ "RM_OB1203_PPG_WIDTH_247US_PERIOD_20MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca6d207ac139414c5f54308f2d10682f54", null ], - [ "RM_OB1203_PPG_WIDTH_481US_PERIOD_1MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cad14cde0ffc1055d92cb98f7a4b555b85", null ], - [ "RM_OB1203_PPG_WIDTH_481US_PERIOD_1P25MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca2990f7a26248010de840856c3b147bd1", null ], - [ "RM_OB1203_PPG_WIDTH_481US_PERIOD_2P5MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cae69ecb057dda8bc16d7b3b130a04204e", null ], - [ "RM_OB1203_PPG_WIDTH_481US_PERIOD_5MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca4f219d1661167b8f8609cd3334e24a16", null ], - [ "RM_OB1203_PPG_WIDTH_481US_PERIOD_10MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cab8f1d289625f598c8d1362ed8af6db89", null ], - [ "RM_OB1203_PPG_WIDTH_481US_PERIOD_20MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caaa5604553dc6456ec530a89d90224852", null ], - [ "RM_OB1203_PPG_WIDTH_949US_PERIOD_2P5MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca7c2a342c7238d24959d5cf4367c42724", null ], - [ "RM_OB1203_PPG_WIDTH_949US_PERIOD_5MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca6a8367a0e9841b97a9ad7a875b2bfe63", null ], - [ "RM_OB1203_PPG_WIDTH_949US_PERIOD_10MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caed7eef69ad7396ef62719d6592e9cb14", null ], - [ "RM_OB1203_PPG_WIDTH_949US_PERIOD_20MS", "group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca64de6859dd6deb781311243f8b2390cc", null ] - ] ], - [ "rm_ob1203_fifo_rollover_t", "group___r_m___o_b1203___a_p_i.html#ga41b9839d52cdeaa01260dc24932d6fe3", [ - [ "RM_OB1203_FIFO_ROLLOVER_DISABLE", "group___r_m___o_b1203___a_p_i.html#gga41b9839d52cdeaa01260dc24932d6fe3af28a76cfc08665e307291b6ca78afdb1", null ], - [ "RM_OB1203_FIFO_ROLLOVER_ENABLE", "group___r_m___o_b1203___a_p_i.html#gga41b9839d52cdeaa01260dc24932d6fe3a2673055a75c804ebb0186e805471c07b", null ] - ] ] -]; \ No newline at end of file diff --git a/group___r_m___z_m_o_d4_x_x_x.html b/group___r_m___z_m_o_d4_x_x_x.html index e810c71..ad1ac46 100644 --- a/group___r_m___z_m_o_d4_x_x_x.html +++ b/group___r_m___z_m_o_d4_x_x_x.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: ZMOD4XXX Gas Sensor (rm_zmod4xxx) +RZV Flexible Software Package Documentation: ZMOD4XXX Gas Sensor (rm_zmod4xxx) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    ZMOD4XXX Gas Sensor (rm_zmod4xxx)
    +
    ZMOD4XXX Gas Sensor (rm_zmod4xxx)
    @@ -278,7 +346,7 @@

    Examples

    Basic Example

    These are basic examples of minimal use of ZMOD4XXX sensor implementation in an application.

    -

    IAQ 1st Gen. Continuous mode

    void rm_zmod4xxx_iaq_1st_gen_continuous_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    while (1)
    {
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_Iaq1stGenDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4410_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4410_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    }
    }

    IAQ 1st Gen. Low Power mode

    void rm_zmod4xxx_iaq_1st_gen_low_power_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    while (1)
    {
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_Iaq1stGenDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4410_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4410_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    /* Delay required time. See Table 3 in the ZMOD4410 Programming Manual. */
    }
    }

    IAQ 2nd Gen.

    void rm_zmod4xxx_iaq_2nd_gen_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    while (1)
    {
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_DeviceErrorCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    if ((RM_ZMOD4XXX_EVENT_DEV_ERR_POWER_ON_RESET == g_zmod4xxx_i2c_callback_event) ||
    (RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT == g_zmod4xxx_i2c_callback_event))
    {
    /* Error during read of sensor status. Please reset device. */
    while (1)
    {
    ;
    }
    }
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_Iaq2ndGenDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4410_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4410_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    /* Delay required time. See Table 3 in the ZMOD4410 Programming Manual. */
    }
    }

    IAQ 2nd Gen. ULP

    void rm_zmod4xxx_iaq_2nd_gen_ulp_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    float temperature = ZMOD4XXX_DEFAULT_TEMPERATURE_20F;
    float humidity = ZMOD4XXX_DEFAULT_HUMIDITY_50F;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    while (1)
    {
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    /* First delay. See Table 4 in the ZMOD4410 Programming Manual. It should be longer than 1010 ms. */
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_DeviceErrorCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    if ((RM_ZMOD4XXX_EVENT_DEV_ERR_POWER_ON_RESET == g_zmod4xxx_i2c_callback_event) ||
    (RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT == g_zmod4xxx_i2c_callback_event))
    {
    /* Error during read of sensor status or Measurement not completed due to unexpected reset. Please reset device. */
    while (1)
    {
    ;
    }
    }
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_DeviceErrorCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    if ((RM_ZMOD4XXX_EVENT_DEV_ERR_POWER_ON_RESET == g_zmod4xxx_i2c_callback_event) ||
    (RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT == g_zmod4xxx_i2c_callback_event))
    {
    /* Check validness of ADC results:
    * - RM_ZMOD4XXX_EVENT_DEV_ERR_POWER_ON_RESET : Unvalid ADC results due to an unexpected reset.
    * - RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT: Unvalid ADC results due a still running measurement while results readout.
    *//* Please reset device. */
    while (1)
    {
    ;
    }
    }
    /* Set the current temperature and humidity */
    err = RM_ZMOD4XXX_TemperatureAndHumiditySet(&g_zmod4xxx_ctrl, temperature, humidity);
    handle_error(err);
    err = RM_ZMOD4XXX_Iaq2ndGenDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4410_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4410_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    /* Second delay. See Table 4 in the ZMOD4410 Programming Manual. The sum of the first and second delay should amount 90 seconds. */
    R_BSP_SoftwareDelay(ZMOD4XXX_WAIT_90000_MS - ZMOD4XXX_WAIT_1010_MS, BSP_DELAY_UNITS_MILLISECONDS);
    }
    }

    Odor

    void rm_zmod4xxx_odor_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    rm_zmod4xxx_odor_data_t zmod4410_data;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    while (1)
    {
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_OdorDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4410_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4410_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    }
    }

    Sulfur Odor

    void rm_zmod4xxx_sulfur_odor_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    while (1)
    {
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_SulfurOdorDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4410_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4410_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    /* Delay required time. See Table 6 in the ZMOD4410 Programming Manual. */
    }
    }

    OAQ 1st Gen.

    void rm_zmod4xxx_oaq_1st_gen_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    while (1)
    {
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_Oaq1stGenDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4510_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4510_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    }
    }

    OAQ 2nd Gen.

    void rm_zmod4xxx_oaq_2nd_gen_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    float temperature = ZMOD4XXX_DEFAULT_TEMPERATURE_20F;
    float humidity = ZMOD4XXX_DEFAULT_HUMIDITY_50F;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    while (1)
    {
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    /* Delay required time. See Table 4 in the ZMOD4510 Programming Manual. */
    g_zmod4xxx_i2c_callback_flag = 0;
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_DeviceErrorCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    if (RM_ZMOD4XXX_EVENT_DEV_ERR_POWER_ON_RESET == g_zmod4xxx_i2c_callback_event)
    {
    /* Error during read of sensor status or Measurement not completed due to unexpected reset. Please reset device. */
    while (1)
    {
    ;
    }
    }
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_DeviceErrorCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    if (RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT == g_zmod4xxx_i2c_callback_event)
    {
    /* Check validness of ADC results:
    * - RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT: Unvalid ADC results due a still running measurement while results readout.
    *//* Please reset device. */
    while (1)
    {
    ;
    }
    }
    /* Set the current temperature and humidity */
    err = RM_ZMOD4XXX_TemperatureAndHumiditySet(&g_zmod4xxx_ctrl, temperature, humidity);
    handle_error(err);
    err = RM_ZMOD4XXX_Oaq2ndGenDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4510_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4510_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    }
    }
    +

    IAQ 1st Gen. Continuous mode

    void rm_zmod4xxx_iaq_1st_gen_continuous_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    while (1)
    {
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_Iaq1stGenDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4410_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4410_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    }
    }

    IAQ 1st Gen. Low Power mode

    void rm_zmod4xxx_iaq_1st_gen_low_power_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    while (1)
    {
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_Iaq1stGenDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4410_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4410_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    /* Delay required time. See Table 3 in the ZMOD4410 Programming Manual. */
    }
    }

    IAQ 2nd Gen.

    void rm_zmod4xxx_iaq_2nd_gen_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    while (1)
    {
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_DeviceErrorCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    if ((RM_ZMOD4XXX_EVENT_DEV_ERR_POWER_ON_RESET == g_zmod4xxx_i2c_callback_event) ||
    (RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT == g_zmod4xxx_i2c_callback_event))
    {
    /* Error during read of sensor status. Please reset device. */
    while (1)
    {
    ;
    }
    }
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_Iaq2ndGenDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4410_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4410_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    /* Delay required time. See Table 3 in the ZMOD4410 Programming Manual. */
    }
    }

    IAQ 2nd Gen. ULP

    void rm_zmod4xxx_iaq_2nd_gen_ulp_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    float temperature = ZMOD4XXX_DEFAULT_TEMPERATURE_20F;
    float humidity = ZMOD4XXX_DEFAULT_HUMIDITY_50F;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    while (1)
    {
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    /* First delay. See Table 4 in the ZMOD4410 Programming Manual. It should be longer than 1010 ms. */
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_DeviceErrorCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    if ((RM_ZMOD4XXX_EVENT_DEV_ERR_POWER_ON_RESET == g_zmod4xxx_i2c_callback_event) ||
    (RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT == g_zmod4xxx_i2c_callback_event))
    {
    /* Error during read of sensor status or Measurement not completed due to unexpected reset. Please reset device. */
    while (1)
    {
    ;
    }
    }
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_DeviceErrorCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    if ((RM_ZMOD4XXX_EVENT_DEV_ERR_POWER_ON_RESET == g_zmod4xxx_i2c_callback_event) ||
    (RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT == g_zmod4xxx_i2c_callback_event))
    {
    /* Check validness of ADC results:
    * - RM_ZMOD4XXX_EVENT_DEV_ERR_POWER_ON_RESET : Unvalid ADC results due to an unexpected reset.
    * - RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT: Unvalid ADC results due a still running measurement while results readout.
    *//* Please reset device. */
    while (1)
    {
    ;
    }
    }
    /* Set the current temperature and humidity */
    err = RM_ZMOD4XXX_TemperatureAndHumiditySet(&g_zmod4xxx_ctrl, temperature, humidity);
    handle_error(err);
    err = RM_ZMOD4XXX_Iaq2ndGenDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4410_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4410_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    /* Second delay. See Table 4 in the ZMOD4410 Programming Manual. The sum of the first and second delay should amount 90 seconds. */
    R_BSP_SoftwareDelay(ZMOD4XXX_WAIT_90000_MS - ZMOD4XXX_WAIT_1010_MS, BSP_DELAY_UNITS_MILLISECONDS);
    }
    }

    Odor

    void rm_zmod4xxx_odor_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    rm_zmod4xxx_odor_data_t zmod4410_data;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    while (1)
    {
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_OdorDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4410_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4410_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    }
    }

    Sulfur Odor

    void rm_zmod4xxx_sulfur_odor_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    while (1)
    {
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_SulfurOdorDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4410_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4410_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    /* Delay required time. See Table 6 in the ZMOD4410 Programming Manual. */
    }
    }

    OAQ 1st Gen.

    void rm_zmod4xxx_oaq_1st_gen_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    while (1)
    {
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_Oaq1stGenDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4510_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4510_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    }
    }

    OAQ 2nd Gen.

    void rm_zmod4xxx_oaq_2nd_gen_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    float temperature = ZMOD4XXX_DEFAULT_TEMPERATURE_20F;
    float humidity = ZMOD4XXX_DEFAULT_HUMIDITY_50F;
    /* Open the I2C bus if it is not already open. */
    rm_comms_i2c_bus_extended_cfg_t * p_extend =
    (rm_comms_i2c_bus_extended_cfg_t *) g_zmod4xxx_cfg.p_comms_instance->p_cfg->p_extend;
    i2c_master_instance_t * p_driver_instance = (i2c_master_instance_t *) p_extend->p_driver_instance;
    p_driver_instance->p_api->open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
    #if BSP_CFG_RTOS
    /* Create a semaphore for blocking if a semaphore is not NULL */
    if (NULL != p_extend->p_blocking_semaphore)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
    p_extend->p_blocking_semaphore->p_semaphore_name,
    (ULONG) 0);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_blocking_semaphore->p_semaphore_handle) =
    xSemaphoreCreateCountingStatic((UBaseType_t) 1,
    (UBaseType_t) 0,
    p_extend->p_blocking_semaphore->p_semaphore_memory);
    #endif
    }
    /* Create a recursive mutex for bus lock if a recursive mutex is not NULL */
    if (NULL != p_extend->p_bus_recursive_mutex)
    {
    #if BSP_CFG_RTOS == 1 // AzureOS
    tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
    p_extend->p_bus_recursive_mutex->p_mutex_name,
    TX_INHERIT);
    #elif BSP_CFG_RTOS == 2 // FreeRTOS
    *(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
    xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
    #endif
    }
    #endif
    /* Reset ZMOD sensor (active low). Please change to the IO port connected to the RES_N pin of the ZMOD sensor on the customer board. */
    err = RM_ZMOD4XXX_Open(&g_zmod4xxx_ctrl, &g_zmod4xxx_cfg);
    /* Handle any errors. This function should be defined by the user. */
    handle_error(err);
    while (1)
    {
    #if ZMOD4XXX_IRQ_ENABLE
    g_zmod4xxx_irq_callback_flag = 0;
    #endif
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_MeasurementStart(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    /* Delay required time. See Table 4 in the ZMOD4510 Programming Manual. */
    g_zmod4xxx_i2c_callback_flag = 0;
    do
    {
    #if ZMOD4XXX_IRQ_ENABLE
    while (0U == g_zmod4xxx_irq_callback_flag)
    {
    }
    g_zmod4xxx_irq_callback_flag = 0;
    #else
    err = RM_ZMOD4XXX_StatusCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    #endif
    err = RM_ZMOD4XXX_DeviceErrorCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    if (RM_ZMOD4XXX_EVENT_DEV_ERR_POWER_ON_RESET == g_zmod4xxx_i2c_callback_event)
    {
    /* Error during read of sensor status or Measurement not completed due to unexpected reset. Please reset device. */
    while (1)
    {
    ;
    }
    }
    err = RM_ZMOD4XXX_Read(&g_zmod4xxx_ctrl, &raw_data);
    {
    }
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    err = RM_ZMOD4XXX_DeviceErrorCheck(&g_zmod4xxx_ctrl);
    handle_error(err);
    while (0U == g_zmod4xxx_i2c_callback_flag)
    {
    }
    g_zmod4xxx_i2c_callback_flag = 0;
    if (RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT == g_zmod4xxx_i2c_callback_event)
    {
    /* Check validness of ADC results:
    * - RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT: Unvalid ADC results due a still running measurement while results readout.
    *//* Please reset device. */
    while (1)
    {
    ;
    }
    }
    /* Set the current temperature and humidity */
    err = RM_ZMOD4XXX_TemperatureAndHumiditySet(&g_zmod4xxx_ctrl, temperature, humidity);
    handle_error(err);
    err = RM_ZMOD4XXX_Oaq2ndGenDataCalculate(&g_zmod4xxx_ctrl, &raw_data, &zmod4510_data);
    if (FSP_SUCCESS == err)
    {
    /* Describe the process by referring to zmod4510_data */
    }
    {
    /* Gas data is invalid. */
    }
    else
    {
    handle_error(err);
    }
    }
    }
    @@ -1013,7 +1081,7 @@

      - +
    diff --git a/group___r_m___z_m_o_d4_x_x_x___a_p_i.html b/group___r_m___z_m_o_d4_x_x_x___a_p_i.html index ab60317..95f7b8d 100644 --- a/group___r_m___z_m_o_d4_x_x_x___a_p_i.html +++ b/group___r_m___z_m_o_d4_x_x_x___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: ZMOD4XXX Middleware Interface +RZV Flexible Software Package Documentation: ZMOD4XXX Middleware Interface @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    - @@ -74,6 +78,53 @@ + + + + + + - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    Renesas Serial Peripheral Interface (r_rspi)
    +
    Renesas Serial Peripheral Interface (r_rspi)

    Data Structures

    struct  rm_zmod4xxx_init_process_params_t
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    @@ -169,16 +237,18 @@

    Disabled

    + +
    Default (BSP) If selected code for parameter checking is included in the build.
    DMAC SupportMCU Specific OptionsIf enabled, DMAC instances will be included in the build for both transmission and reception.
    -

    Configurations for Driver > Connectivity > SPI Driver on r_rspi

    -This module can be added to the Stacks tab via New Stack > Driver > Connectivity > SPI Driver on r_rspi.
    +

    Configurations for Connectivity > SPI (r_rspi)

    +This module can be added to the Stacks tab via New Stack > Connectivity > SPI (r_rspi).

    - + + + + + + + @@ -343,10 +425,10 @@

    Configurations for Driver > Connectivity > SPI Driver on r_rspi

    Clock Configuration

    -

    The clock for this module is derived from the following peripheral clock for each MPU group:
    +

    The clock for this module is derived from the following peripheral clock for each MCU group:

    ConfigurationOptionsDefaultDescription
    General > NameName must be a valid C symbolg_spi0 Module name.
    General > ChannelSelect between channel 0 and 20 Select the RSPI channel.
    General > ChannelChannel number must be a positive integer0 Select the RSPI channel.
    General > Operating Mode
    • @@ -300,6 +370,14 @@

      Configurations for Driver > Connectivity > SPI Driver on r_rspi

    RSPI_DELAY_COUNT_1 Configure the number of RSPI clock cycles between each data frame.
    Extra > SSL Level Keep
      +
    • +Disable
    • +
    • +Enable
    • +
    +
    Disable Select whether to negate the SSL level for each frame transfer.
    Extra > Receiver FIFO Trigger Level
    • 1
    • @@ -334,8 +412,12 @@

      Configurations for Driver > Connectivity > SPI Driver on r_rspi

    Interrupts > CallbackName must be a valid C symbolNULL A user callback function can be provided. If this callback function is provided, it will be called from the interrupt service routine (ISR).
    Interrupts > Receive Interrupt EnableMCU Specific OptionsEnable the receive interrupt.
    Interrupts > Receive Interrupt PriorityValue must be an integer between 0 and 2558 Select the interrupt priority for all RSPI interrupts.
    Interrupts > Transmit Buffer Empty Interrupt EnableMCU Specific OptionsEnable the transmit buffer empty interrupt.
    Interrupts > Transmit Buffer Empty Interrupt PriorityValue must be an integer between 0 and 2558 Select the interrupt priority for all RSPI interrupts.
    Interrupts > Error Interrupt PriorityValue must be an integer between 0 and 2558 Select the interrupt priority for all RSPI interrupts.
    - +
    MPU GroupPeripheral Clock
    MCU GroupPeripheral Clock
    RZV2LP0CLK
    @@ -399,6 +481,8 @@

    Basic Example

      enum  rspi_mosi_idle_value_fixing_t   +enum  rspi_ssl_level_keep_t +  enum  rspi_delay_count_t   enum  rspi_tx_trigger_level_t @@ -488,6 +572,12 @@

    SPI Next-Access Delay Register Setting. +rspi_ssl_level_keep_t + +ssl_level_keep + +Select SSL signal level keep mode. + rspi_rx_trigger_level_t rx_trigger_level @@ -608,6 +698,27 @@

    +

    ◆ rspi_ssl_level_keep_t

    + +
    +
    + + + + +
    enum rspi_ssl_level_keep_t
    +
    +

    SSL Signal Level Keeping Enable/Disable.

    + + + +
    Enumerator
    RSPI_SSL_LEVEL_KEEP_DISABLE 

    Disable SSL Level Keep Mode.

    +
    RSPI_SSL_LEVEL_KEEP_ENABLE 

    Enable SSL Level Keep Mode.

    +
    +
    @@ -795,6 +906,7 @@

    FSP_ERR_ASSERTIONNULL pointer to control or destination parameters or transfer length is zero. FSP_ERR_NOT_OPENThe channel has not been opened. Open channel first. FSP_ERR_IN_USEA transfer is already in progress. + FSP_ERR_INVALID_ARGUMENTA bit length not supported by this device was assigned to the argument. @@ -849,6 +961,7 @@

    FSP_ERR_ASSERTIONNULL pointer to control or source parameters or transfer length is zero. FSP_ERR_NOT_OPENThe channel has not been opened. Open the channel first. FSP_ERR_IN_USEA transfer is already in progress. + FSP_ERR_INVALID_ARGUMENTA bit length not supported by this device was assigned to the argument. @@ -909,6 +1022,7 @@

    FSP_ERR_ASSERTIONNULL pointer to control, source or destination parameters or transfer length is zero. FSP_ERR_NOT_OPENThe channel has not been opened. Open the channel first. FSP_ERR_IN_USEA transfer is already in progress. + FSP_ERR_INVALID_ARGUMENTA bit length not supported by this device was assigned to the argument. @@ -972,18 +1086,18 @@

    -

    Calculates the SPBR register value and the BRDV bits for a desired bitrate. If the desired bitrate is faster than the maximum bitrate, than the bitrate is set to the maximum bitrate. If the desired bitrate is slower than the minimum bitrate, than an error is returned.

    +

    Calculates the SPBR register value and the BRDV bits for a desired bitrate. Calculates the SPBR register value and the BRDV bits for a desired bitrate. If the desired bitrate is faster than the maximum bitrate, then the bitrate is set to the maximum bitrate and an error is returned. If the desired bitrate is slower than the minimum bitrate, then an error is returned.

    Parameters
    - +
    [in]bitrateDesired bitrate
    [in]bitrateDesired bitrate.
    [out]spck_divMemory location to store bitrate register settings.
    Return values
    - - + +
    FSP_SUCCESSValid spbr and brdv values were calculated
    FSP_ERR_UNSUPPORTEDBitrate is not achievable
    FSP_SUCCESSValid spbr and brdv values were calculated.
    FSP_ERR_UNSUPPORTEDBitrate is out of the settable range.
    @@ -1046,7 +1160,7 @@

      - +

    diff --git a/group___r_s_p_i.js b/group___r_s_p_i.js index 2c67f16..f7cb758 100644 --- a/group___r_s_p_i.js +++ b/group___r_s_p_i.js @@ -11,6 +11,7 @@ var group___r_s_p_i = [ "spck_delay", "group___r_s_p_i.html#a0cbb7690023ca0e3a82dd9acf79e34f3", null ], [ "ssl_negation_delay", "group___r_s_p_i.html#ace6d2dd7ac73c2171a7c2f0edb11db22", null ], [ "next_access_delay", "group___r_s_p_i.html#a4a5671a7b1a0b31742f3fb3ffb832532", null ], + [ "ssl_level_keep", "group___r_s_p_i.html#ae3192998dbe33aee6614dd5f5850d289", null ], [ "rx_trigger_level", "group___r_s_p_i.html#a4d6543f22a352c931855cd85e19cfe45", null ], [ "tx_trigger_level", "group___r_s_p_i.html#ac9029124a35943dc5f347657d28d3c16", null ] ] ], @@ -36,6 +37,10 @@ var group___r_s_p_i = [ "RSPI_MOSI_IDLE_VALUE_FIXING_LOW", "group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a2a42bca9fb7a5f485d0c21c70d83c6bc", null ], [ "RSPI_MOSI_IDLE_VALUE_FIXING_HIGH", "group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a334fbae8188c8d89825231b5126c432d", null ] ] ], + [ "rspi_ssl_level_keep_t", "group___r_s_p_i.html#gaae19ba80f9290f4ad12e794cf1bac9f2", [ + [ "RSPI_SSL_LEVEL_KEEP_DISABLE", "group___r_s_p_i.html#ggaae19ba80f9290f4ad12e794cf1bac9f2ab841c4b6e56bf3a45f323d77f93b2d03", null ], + [ "RSPI_SSL_LEVEL_KEEP_ENABLE", "group___r_s_p_i.html#ggaae19ba80f9290f4ad12e794cf1bac9f2aabdf42d404217b46fab49e661dc6f128", null ] + ] ], [ "rspi_delay_count_t", "group___r_s_p_i.html#ga8f68c8c6c98ee871ad72bbb94c559775", [ [ "RSPI_DELAY_COUNT_1", "group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775acf6c2af3c3fd7da891cd64c6ac082ed7", null ], [ "RSPI_DELAY_COUNT_2", "group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a113a034f110841c3f8fb0c726238c7ea", null ], diff --git a/group___r_t_c.html b/group___r_t_c.html new file mode 100644 index 0000000..6a0e52e --- /dev/null +++ b/group___r_t_c.html @@ -0,0 +1,867 @@ + + + + + + + +RZV Flexible Software Package Documentation: Realtime Clock (r_rtc) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Realtime Clock (r_rtc)
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_RTC_Open (rtc_ctrl_t *const p_ctrl, rtc_cfg_t const *const p_cfg)
     
    fsp_err_t R_RTC_Close (rtc_ctrl_t *const p_ctrl)
     
    fsp_err_t R_RTC_ClockSourceSet (rtc_ctrl_t *const p_ctrl)
     
    fsp_err_t R_RTC_CalendarTimeSet (rtc_ctrl_t *const p_ctrl, rtc_time_t *const p_time)
     
    fsp_err_t R_RTC_CalendarTimeGet (rtc_ctrl_t *const p_ctrl, rtc_time_t *const p_time)
     
    fsp_err_t R_RTC_CalendarAlarmSet (rtc_ctrl_t *const p_ctrl, rtc_alarm_time_t *const p_alarm)
     
    fsp_err_t R_RTC_CalendarAlarmGet (rtc_ctrl_t *const p_ctrl, rtc_alarm_time_t *const p_alarm)
     
    fsp_err_t R_RTC_PeriodicIrqRateSet (rtc_ctrl_t *const p_ctrl, rtc_periodic_irq_select_t const rate)
     
    fsp_err_t R_RTC_ErrorAdjustmentSet (rtc_ctrl_t *const p_ctrl, rtc_error_adjustment_cfg_t const *const err_adj_cfg)
     
    fsp_err_t R_RTC_InfoGet (rtc_ctrl_t *const p_ctrl, rtc_info_t *const p_rtc_info)
     
    fsp_err_t R_RTC_CallbackSet (rtc_ctrl_t *const p_ctrl, void(*p_callback)(rtc_callback_args_t *), void const *const p_context, rtc_callback_args_t *const p_callback_memory)
     
    +

    Detailed Description

    +

    Driver for the RTC peripheral on RZ MPUs. This module implements the RTC Interface.

    +

    +Overview

    +

    The RTC HAL module configures the RTC module and controls clock, calendar and alarm functions. A callback can be used to respond to the alarm and periodic interrupt.

    +

    +Features

    +
      +
    • RTC time and date get and set.
    • +
    • RTC time and date alarm get and set.
    • +
    • RTC alarm and periodic event notification.
    • +
    +

    The RTC HAL module supports three different interrupt types:

    +
      +
    • An alarm interrupt generated on a match of any combination of year, month, day, day of the week, hour, minute or second
    • +
    • A periodic interrupt generated every 2, 1, 1/2, 1/4, 1/8, 1/16, 1/32, 1/64, or 1/128 second(s)
    • +
    • A carry interrupt is used internally when reading time from the RTC calender to get accurant time readings.
      Note
      See section "Reading 64-Hz Counter and Time" of the User's Manual for more details.
      +
      +A user-defined callback function can be registered (in the rtc_api_t::open API call) and will be called from the interrupt service routine (ISR) for alarm and periodic interrupt. When called, it is passed a pointer to a structure (rtc_callback_args_t) that holds a user-defined context pointer and an indication of which type of interrupt was fired.
    • +
    +

    Date and Time validation

    +

    "Parameter Checking" needs to be enabled if date and time validation is required for calendarTimeSet and calendarAlarmSet APIs. If "Parameter Checking" is enabled, the 'day of the week' field is automatically calculated and updated by the driver for the provided date. When using the calendarAlarmSet API, only the fields which have their corresponding match flag set are written to the registers. Other register fields are reset to default value.

    +

    Clock error adjustment (Time Error Adjustment Function)

    +

    The time error adjustment function is used to correct errors, running fast or slow, in the time caused by variation in the precision of oscillation by the clock oscillator. Because 32,768 cycles of the clock oscillator constitute 1 second of operation when the clock oscillator is selected, the clock runs fast if the clock frequency is high and slow if the clock frequency is low. The time error adjustment functions include:

      +
    • Automatic adjustment
    • +
    • Adjustment by software
    • +
    +

    The error adjustment is reset every time RTC is reconfigured or time is set.

    +
    Note
    RTC driver configurations do not do error adjustment internally while initiliazing the driver. Application must make calls to the error adjustment api's for desired adjustment. See section "Time Error Adjustment + Function" of the User's Manual for more details on this feature
    +

    External Clock Bypass Mode

    +

    This MPU supports bypassing the RTC's oscillator circuit, which typically requires an AC clock signal from a crystal oscillator. However, a DC clock signal can be directly input via the RTXIN pin. Therefore the clock mode for the RTC can be changed as the follows:

      +
    • Crystal Oscillator Mode
    • +
    • External Clock Bypass Mode
    • +
    +

    +Configuration

    +

    Build Time Configurations for r_rtc

    +The following build time configurations are defined in fsp_cfg/r_rtc_cfg.h:
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    +

    Configurations for Timers > Realtime Clock (r_rtc)

    +This module can be added to the Stacks tab via New Stack > Timers > Realtime Clock (r_rtc). Non-secure callable guard functions can be generated for this module by right clicking the module in the RA Configuration tool and checking the "Non-secure Callable" box.
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    NameName must be a valid C symbolg_rtc0 Module name.
    External Clock Bypass Mode
      +
    • +Crystal Oscillator
    • +
    • +External Clock Bypass
    • +
    +
    Crystal Oscillator Receive the clock from either a crystal oscillator or directly from a clock source by inputting it to the RTXIN pin only.
    Automatic Adjustment Mode
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Enabled Enable/ Disable the Error Adjustment mode
    Automatic Adjustment Period
      +
    • +10 Seconds
    • +
    • +1 Minute
    • +
    • +NONE
    • +
    +
    10 Seconds Select the Error Adjustment Period for Automatic Adjustment
    Adjustment Type (Plus-Minus)
      +
    • +NONE
    • +
    • +Addition
    • +
    • +Subtraction
    • +
    +
    NONE Select the Error Adjustment type
    Error Adjustment ValueValue must be a positive integer less than equal to 630 Specify the Adjustment Value (the number of sub-clock cycles) from the prescaler
    CallbackName must be a valid C symbolNULL A user callback function can be provided. If this callback function is provided, it will be called from the interrupt service routine (ISR).
    Alarm InterruptMCU Specific OptionsEnable the Alarm interrupt.
    Alarm Interrupt PriorityValue must be a non-negative integer12 Select the alarm interrupt priority.
    Period InterruptMCU Specific OptionsEnable the Periodic interrupt.
    Period Interrupt PriorityValue must be a non-negative integer12 Select the period interrupt priority.
    Carry Interrupt PriorityValue must be a non-negative integer12 Select the carry interrupt priority.
    +

    +

    +Interrupt Configuration

    +

    To activate interrupts for the RTC module, the desired interrupts must be enabled, The underlying implementation will be expected to handle any interrupts it can support and notify higher layers via callback.

    +

    +Pin Configuration

    +

    This module does not use I/O pins.

    +

    +Usage Notes

    +

    System Initialization

    +
      +
    • RTC driver does not start the clock. The application is responsible for ensuring required clocks are started and stable before accessing MCU peripheral registers.
    • +
    +
    Warning
    The 32,768Hz clock oscillator can take seconds to stabilize. The RZ startup code does not wait for the clock oscillator stabilization unless it is the main clock source. The application must ensure the clock oscillator is stable before starting operation.
    +
      +
    • Carry interrupt priority must be set to avoid incorrect time returned from calendarTimeGet API during roll-over.
    • +
    • Even when only running in Periodic Interrupt mode R_RTC_CalendarTimeSet must be called successfully to start the RTC.
    • +
    +

    +Limitations

    +

    Developers should be aware of the following limitations when using the RTC:

      +
    • R_RTC operates in 24-hour mode.
    • +
    • Binary-count mode is not supported.
    • +
    • The R_RTC_CalendarTimeGet() cannot be used from an interrupt that has higher priority than the carry interrupt. Also, it must not be called with interrupts disabled globally, as this API internally uses carry interrupt for its processing. API may return incorrect time if this is done.
    • +
    +

    +Examples

    +

    RTC Basic Example

    +

    This is a basic example of minimal use of the RTC in an application.

    +
    /* rtc_time_t is an alias for the C Standard time.h struct 'tm' */
    rtc_time_t set_time =
    {
    .tm_sec = 10,
    .tm_min = 11,
    .tm_hour = 12,
    .tm_mday = 6,
    .tm_wday = 3,
    .tm_mon = 11,
    .tm_year = YEARS_SINCE_1900,
    };
    rtc_time_t get_time;
    void rtc_example ()
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Open the RTC module */
    err = R_RTC_Open(&g_rtc0_ctrl, &g_rtc0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Set the calendar time */
    R_RTC_CalendarTimeSet(&g_rtc0_ctrl, &set_time);
    /* Get the calendar time */
    R_RTC_CalendarTimeGet(&g_rtc0_ctrl, &get_time);
    }

    RTC Periodic interrupt example

    +

    This is an example of periodic interrupt in RTC.

    +
    void rtc_periodic_irq_example ()
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Open the RTC module*/
    err = R_RTC_Open(&g_rtc0_ctrl, &g_rtc0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* R_RTC_CalendarTimeSet must be called at least once to start the RTC */
    R_RTC_CalendarTimeSet(&g_rtc0_ctrl, &set_time);
    /* Set the periodic interrupt rate to 1 second */
    /* Wait for the periodic interrupt */
    while (1)
    {
    /* Wait for interrupt */
    }
    }

    RTC Alarm interrupt example

    +

    This is an example of alarm interrupt in RTC.

    +
    void rtc_alarm_irq_example ()
    {
    fsp_err_t err = FSP_SUCCESS;
    /*Open the RTC module*/
    err = R_RTC_Open(&g_rtc0_ctrl, &g_rtc0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    R_RTC_CalendarTimeSet(&g_rtc0_ctrl, &set_time1.time);
    R_RTC_CalendarAlarmSet(&g_rtc0_ctrl, &set_time1);
    /* Wait for the Alarm interrupt */
    while (1)
    {
    /* Wait for interrupt */
    }
    }

    RTC Error Adjustment example

    +

    This is an example of modifying error adjustment in RTC.

    +
    void rtc_erroradj_example ()
    {
    fsp_err_t err = FSP_SUCCESS;
    /*Open the RTC module*/
    R_RTC_Open(&g_rtc0_ctrl, &g_rtc1_cfg);
    R_RTC_CalendarTimeSet(&g_rtc0_ctrl, &set_time1.time);
    /* Modify Error Adjustment after RTC is running */
    err = R_RTC_ErrorAdjustmentSet(&g_rtc0_ctrl, &err_cfg2);
    assert(FSP_SUCCESS == err);
    }
    + + + + + +

    +Data Structures

    struct  rtc_extended_cfg_t
     
    struct  rtc_instance_ctrl_t
     
    + + + +

    +Enumerations

    enum  rtc_clock_bypass_mode_t
     
    +

    Data Structure Documentation

    + +

    ◆ rtc_extended_cfg_t

    + +
    +
    + + + + +
    struct rtc_extended_cfg_t
    +
    +

    RTC extend configuration

    +
    + + + + + + + + + + +
    Data Fields
    +uint8_t +alarm1_ipl +Alarm 1 interrupt priority.
    +IRQn_Type +alarm1_irq +Alarm 1 interrupt vector.
    +rtc_clock_bypass_mode_t +clock_bypass_mode +Clock Bypass Mode.
    + +
    +
    + +

    ◆ rtc_instance_ctrl_t

    + +
    +
    + + + + +
    struct rtc_instance_ctrl_t
    +
    +

    Channel control block. DO NOT INITIALIZE. Initialization occurs when rtc_api_t::open is called

    +
    + + + + + + + + + + +

    Data Fields

    +uint32_t open
     Whether or not driver is open.
     
    +const rtc_cfg_tp_cfg
     Pointer to initial configurations.
     
    +volatile bool carry_isr_triggered
     Was the carry isr triggered.
     
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ rtc_clock_bypass_mode_t

    + +
    +
    + + + + +
    enum rtc_clock_bypass_mode_t
    +
    +

    RTC Clock Bypass Mode

    + +
    +
    +

    Function Documentation

    + +

    ◆ R_RTC_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_RTC_Open (rtc_ctrl_t *const p_ctrl,
    rtc_cfg_t const *const p_cfg 
    )
    +
    +

    Opens and configures the RTC driver module. Implements rtc_api_t::open. Configuration includes clock source, and interrupt callback function.

    +

    Example:

    /* Open the RTC module */
    err = R_RTC_Open(&g_rtc0_ctrl, &g_rtc0_cfg);
    Return values
    + + + + + +
    FSP_SUCCESSInitialization was successful and RTC has started.
    FSP_ERR_ASSERTIONInvalid p_ctrl or p_cfg pointer.
    FSP_ERR_ALREADY_OPENModule is already open.
    FSP_ERR_INVALID_ARGUMENTInvalid time parameter field.
    +
    +
    + +
    +
    + +

    ◆ R_RTC_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_RTC_Close (rtc_ctrl_t *const p_ctrl)
    +
    +

    Close the RTC driver. Implements rtc_api_t::close

    +
    Return values
    + + + + +
    FSP_SUCCESSDe-Initialization was successful and RTC driver closed.
    FSP_ERR_ASSERTIONInvalid p_ctrl.
    FSP_ERR_NOT_OPENDriver not open already for close.
    +
    +
    + +
    +
    + +

    ◆ R_RTC_ClockSourceSet()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_RTC_ClockSourceSet (rtc_ctrl_t *const p_ctrl)
    +
    +

    Implements rtc_api_t::clockSourceSet. Unsupported.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSInitialization was successful and RTC has started.
    FSP_ERR_ASSERTIONInvalid p_ctrl or p_cfg pointer.
    FSP_ERR_NOT_OPENDriver is not opened.
    FSP_ERR_INVALID_ARGUMENTInvalid clock source.
    FSP_ERR_UNSUPPORTEDFunction not supported in this implementation.
    +
    +
    + +
    +
    + +

    ◆ R_RTC_CalendarTimeSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_RTC_CalendarTimeSet (rtc_ctrl_t *const p_ctrl,
    rtc_time_t *const p_time 
    )
    +
    +

    Set the calendar time.

    +

    Implements rtc_api_t::calendarTimeSet.

    +
    Return values
    + + + + + +
    FSP_SUCCESSCalendar time set operation was successful.
    FSP_ERR_ASSERTIONInvalid input argument.
    FSP_ERR_NOT_OPENDriver not open already for operation.
    FSP_ERR_INVALID_ARGUMENTInvalid time parameter field.
    +
    +
    + +
    +
    + +

    ◆ R_RTC_CalendarTimeGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_RTC_CalendarTimeGet (rtc_ctrl_t *const p_ctrl,
    rtc_time_t *const p_time 
    )
    +
    +

    Get the calendar time.

    Warning
    Do not call this function from a critical section or from an interrupt with higher priority than the carry interrupt, or the time returned may be inaccurate.
    +

    Implements rtc_api_t::calendarTimeGet

    +
    Return values
    + + + + + +
    FSP_SUCCESSCalendar time get operation was successful.
    FSP_ERR_ASSERTIONInvalid input argument.
    FSP_ERR_NOT_OPENDriver not open already for operation.
    FSP_ERR_IRQ_BSP_DISABLEDUser IRQ parameter not valid
    +
    +
    + +
    +
    + +

    ◆ R_RTC_CalendarAlarmSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_RTC_CalendarAlarmSet (rtc_ctrl_t *const p_ctrl,
    rtc_alarm_time_t *const p_alarm 
    )
    +
    +

    Set the calendar alarm time.

    +

    Implements rtc_api_t::calendarAlarmSet.

    +
    Precondition
    The calendar counter must be running before the alarm can be set.
    +
    Return values
    + + + + + + +
    FSP_SUCCESSCalendar alarm time set operation was successful.
    FSP_ERR_INVALID_ARGUMENTInvalid time parameter field.
    FSP_ERR_ASSERTIONInvalid input argument.
    FSP_ERR_NOT_OPENDriver not open already for operation.
    FSP_ERR_IRQ_BSP_DISABLEDUser IRQ parameter not valid
    +
    +
    + +
    +
    + +

    ◆ R_RTC_CalendarAlarmGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_RTC_CalendarAlarmGet (rtc_ctrl_t *const p_ctrl,
    rtc_alarm_time_t *const p_alarm 
    )
    +
    +

    Get the calendar alarm time.

    +

    Implements rtc_api_t::calendarAlarmGet

    +
    Return values
    + + + + +
    FSP_SUCCESSCalendar alarm time get operation was successful.
    FSP_ERR_ASSERTIONInvalid input argument.
    FSP_ERR_NOT_OPENDriver not open already for operation.
    +
    +
    + +
    +
    + +

    ◆ R_RTC_PeriodicIrqRateSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_RTC_PeriodicIrqRateSet (rtc_ctrl_t *const p_ctrl,
    rtc_periodic_irq_select_t const rate 
    )
    +
    +

    Set the periodic interrupt rate and enable periodic interrupt.

    +

    Implements rtc_api_t::periodicIrqRateSet

    +
    Note
    To start the RTC R_RTC_CalendarTimeSet must be called at least once.
    +

    Example:

    /* Set the periodic interrupt rate to 1 second */
    Return values
    + + + + + +
    FSP_SUCCESSThe periodic interrupt rate was successfully set.
    FSP_ERR_ASSERTIONInvalid input argument.
    FSP_ERR_NOT_OPENDriver not open already for operation.
    FSP_ERR_IRQ_BSP_DISABLEDUser IRQ parameter not valid
    +
    +
    + +
    +
    + +

    ◆ R_RTC_ErrorAdjustmentSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_RTC_ErrorAdjustmentSet (rtc_ctrl_t *const p_ctrl,
    rtc_error_adjustment_cfg_t const *const err_adj_cfg 
    )
    +
    +

    This function sets time error adjustment

    +

    Implements rtc_api_t::errorAdjustmentSet

    +
    Return values
    + + + + + + +
    FSP_SUCCESSTime error adjustment successful.
    FSP_ERR_ASSERTIONInvalid input argument.
    FSP_ERR_NOT_OPENDriver not open for operation.
    FSP_ERR_UNSUPPORTEDThe clock source is not sub-clock.
    FSP_ERR_INVALID_ARGUMENTInvalid error adjustment value.
    +
    +
    + +
    +
    + +

    ◆ R_RTC_InfoGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_RTC_InfoGet (rtc_ctrl_t *const p_ctrl,
    rtc_info_t *const p_rtc_info 
    )
    +
    +

    Set RTC clock source and running status information ad store it in provided pointer p_rtc_info

    +

    Implements rtc_api_t::infoGet

    +
    Return values
    + + + + +
    FSP_SUCCESSGet information Successful.
    FSP_ERR_ASSERTIONInvalid input argument.
    FSP_ERR_NOT_OPENDriver not open already for operation.
    +
    +
    + +
    +
    + +

    ◆ R_RTC_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_RTC_CallbackSet (rtc_ctrl_t *const p_ctrl,
    void(*)(rtc_callback_args_t *) p_callback,
    void const *const p_context,
    rtc_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback and has option of providing memory for callback structure. Implements rtc_api_t::callbackSet

    +
    Return values
    + + + + + +
    FSP_SUCCESSBaud rate was successfully changed.
    FSP_ERR_ASSERTIONPointer to RTC control block is NULL or the RTC is not configured to use the internal clock.
    FSP_ERR_NOT_OPENThe control block has not been opened
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___r_t_c.js b/group___r_t_c.js new file mode 100644 index 0000000..7273b6f --- /dev/null +++ b/group___r_t_c.js @@ -0,0 +1,25 @@ +var group___r_t_c = +[ + [ "rtc_extended_cfg_t", "group___r_t_c.html#structrtc__extended__cfg__t", [ + [ "alarm1_ipl", "group___r_t_c.html#ac36b179a4311fe95bde1820384dd35cc", null ], + [ "alarm1_irq", "group___r_t_c.html#ae7f72a6fbe27e9a3ef60c99022798c9b", null ], + [ "clock_bypass_mode", "group___r_t_c.html#af6b87d21311028e2eb25ce5f2b90f73e", null ] + ] ], + [ "rtc_instance_ctrl_t", "group___r_t_c.html#structrtc__instance__ctrl__t", [ + [ "open", "group___r_t_c.html#a531f0ac7759fe0ec50841022ae9a9bfe", null ], + [ "p_cfg", "group___r_t_c.html#a02ff7a87b8c7fdf8ec2ecc4ad4a817c6", null ], + [ "carry_isr_triggered", "group___r_t_c.html#ad1e0ef1397b14d5d1571f960d536c50d", null ] + ] ], + [ "rtc_clock_bypass_mode_t", "group___r_t_c.html#ga17801e1ecb103e17bf1fd092c6a48461", null ], + [ "R_RTC_Open", "group___r_t_c.html#gae6b2cd0b0827d0fdef1dd148ddc354bb", null ], + [ "R_RTC_Close", "group___r_t_c.html#gac1135140182189d9c1defa5846a375c8", null ], + [ "R_RTC_ClockSourceSet", "group___r_t_c.html#gaa08e35bcfca849283de15698beb6b150", null ], + [ "R_RTC_CalendarTimeSet", "group___r_t_c.html#ga3bf6329a0ea01943e385499fcac01e1e", null ], + [ "R_RTC_CalendarTimeGet", "group___r_t_c.html#gaabcfafd522c18288ac274f6b56f76366", null ], + [ "R_RTC_CalendarAlarmSet", "group___r_t_c.html#ga5c39b02432cedcb7a29ae8bdc8fcefb8", null ], + [ "R_RTC_CalendarAlarmGet", "group___r_t_c.html#gacbb2641ed2236f071c001df6b025e0f2", null ], + [ "R_RTC_PeriodicIrqRateSet", "group___r_t_c.html#ga0fd1ee1e11ed683d7509f251bbd1f282", null ], + [ "R_RTC_ErrorAdjustmentSet", "group___r_t_c.html#ga6e0f357923c34057c8c938a52f6e8da8", null ], + [ "R_RTC_InfoGet", "group___r_t_c.html#ga311898f6b0ddd44d9b4c1b34defb0cf4", null ], + [ "R_RTC_CallbackSet", "group___r_t_c.html#gaa6b50d916a9243792c0ea8b13744d25f", null ] +]; \ No newline at end of file diff --git a/group___r_t_c___a_p_i.html b/group___r_t_c___a_p_i.html new file mode 100644 index 0000000..920b1ee --- /dev/null +++ b/group___r_t_c___a_p_i.html @@ -0,0 +1,1047 @@ + + + + + + + +RZV Flexible Software Package Documentation: RTC Interface + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    RTC Interface
    +
    +
    +

    Detailed Description

    +

    Interface for accessing the Realtime Clock.

    +

    +Summary

    +

    The RTC Interface is for configuring Real Time Clock (RTC) functionality including alarm, periodic notiification and error adjustment.

    +

    The Real Time Clock Interface can be implemented by:

    + + + + + + + + + + + + + + + + +

    +Data Structures

    struct  rtc_callback_args_t
     
    struct  rtc_error_adjustment_cfg_t
     
    struct  rtc_alarm_time_t
     
    struct  rtc_info_t
     
    struct  rtc_cfg_t
     
    struct  rtc_api_t
     
    struct  rtc_instance_t
     
    + + + + + +

    +Typedefs

    typedef struct tm rtc_time_t
     
    typedef void rtc_ctrl_t
     
    + + + + + + + + + + + + + + + + + +

    +Enumerations

    enum  rtc_event_t
     
    enum  rtc_alarm_channel_t
     
    enum  rtc_clock_source_t
     
    enum  rtc_status_t
     
    enum  rtc_error_adjustment_t
     
    enum  rtc_error_adjustment_mode_t
     
    enum  rtc_error_adjustment_period_t
     
    enum  rtc_periodic_irq_select_t
     
    +

    Data Structure Documentation

    + +

    ◆ rtc_callback_args_t

    + +
    +
    + + + + +
    struct rtc_callback_args_t
    +
    +

    Callback function parameter data

    +
    + + + + + + + +
    Data Fields
    +rtc_event_t +event +The event can be used to identify what caused the callback (compare match or error).
    +void const * +p_context +Placeholder for user data.
    + +
    +
    + +

    ◆ rtc_error_adjustment_cfg_t

    + +
    +
    + + + + +
    struct rtc_error_adjustment_cfg_t
    +
    +

    Time error adjustment value configuration

    +
    + + + + + + + + + + + + + +
    Data Fields
    +rtc_error_adjustment_mode_t +adjustment_mode +Automatic Adjustment Enable/Disable.
    +rtc_error_adjustment_period_t +adjustment_period +Error Adjustment period.
    +rtc_error_adjustment_t +adjustment_type +Time error adjustment setting.
    +uint32_t +adjustment_value +Value of the prescaler for error adjustment.
    + +
    +
    + +

    ◆ rtc_alarm_time_t

    + +
    +
    + + + + +
    struct rtc_alarm_time_t
    +
    +

    Alarm time setting structure

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +rtc_time_t +time +Time structure.
    +bool +sec_match +Enable the alarm based on a match of the seconds field.
    +bool +min_match +Enable the alarm based on a match of the minutes field.
    +bool +hour_match +Enable the alarm based on a match of the hours field.
    +bool +mday_match +Enable the alarm based on a match of the days field.
    +bool +mon_match +Enable the alarm based on a match of the months field.
    +bool +year_match +Enable the alarm based on a match of the years field.
    +bool +dayofweek_match +Enable the alarm based on a match of the dayofweek field.
    +rtc_alarm_channel_t +channel +Select alarm 0 or alarm 1.
    + +
    +
    + +

    ◆ rtc_info_t

    + +
    +
    + + + + +
    struct rtc_info_t
    +
    +

    RTC Information Structure for information returned by infoGet()

    +
    + + + + + + + +
    Data Fields
    +rtc_clock_source_t +clock_source +Clock source for the RTC block.
    +rtc_status_t +status +RTC run status.
    + +
    +
    + +

    ◆ rtc_cfg_t

    + +
    +
    + + + + +
    struct rtc_cfg_t
    +
    +

    User configuration structure, used in open function

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    +rtc_clock_source_t clock_source
     Clock source for the RTC block.
     
    +uint32_t freq_compare_value_loco
     The frequency comparison value for LOCO.
     
    +rtc_error_adjustment_cfg_t const *const p_err_cfg
     Pointer to Error Adjustment configuration.
     
    +uint8_t alarm_ipl
     Alarm interrupt priority.
     
    +IRQn_Type alarm_irq
     Alarm interrupt vector.
     
    +uint8_t periodic_ipl
     Periodic interrupt priority.
     
    +IRQn_Type periodic_irq
     Periodic interrupt vector.
     
    +uint8_t carry_ipl
     Carry interrupt priority.
     
    +IRQn_Type carry_irq
     Carry interrupt vector.
     
    +void(* p_callback )(rtc_callback_args_t *p_args)
     Called from the ISR.
     
    +void const * p_context
     User defined context passed into callback function.
     
    +void const * p_extend
     RTC hardware dependant configuration.
     
    + +
    +
    + +

    ◆ rtc_api_t

    + +
    +
    + + + + +
    struct rtc_api_t
    +
    +

    RTC driver structure. General RTC functions implemented at the HAL layer follow this API.

    +
    + + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    fsp_err_t(* open )(rtc_ctrl_t *const p_ctrl, rtc_cfg_t const *const p_cfg)
     
    fsp_err_t(* close )(rtc_ctrl_t *const p_ctrl)
     
    fsp_err_t(* clockSourceSet )(rtc_ctrl_t *const p_ctrl)
     
    fsp_err_t(* calendarTimeSet )(rtc_ctrl_t *const p_ctrl, rtc_time_t *const p_time)
     
    fsp_err_t(* calendarTimeGet )(rtc_ctrl_t *const p_ctrl, rtc_time_t *const p_time)
     
    fsp_err_t(* calendarAlarmSet )(rtc_ctrl_t *const p_ctrl, rtc_alarm_time_t *const p_alarm)
     
    fsp_err_t(* calendarAlarmGet )(rtc_ctrl_t *const p_ctrl, rtc_alarm_time_t *const p_alarm)
     
    fsp_err_t(* periodicIrqRateSet )(rtc_ctrl_t *const p_ctrl, rtc_periodic_irq_select_t const rate)
     
    fsp_err_t(* errorAdjustmentSet )(rtc_ctrl_t *const p_ctrl, rtc_error_adjustment_cfg_t const *const err_adj_cfg)
     
    fsp_err_t(* callbackSet )(rtc_ctrl_t *const p_ctrl, void(*p_callback)(rtc_callback_args_t *), void const *const p_context, rtc_callback_args_t *const p_callback_memory)
     
    fsp_err_t(* infoGet )(rtc_ctrl_t *const p_ctrl, rtc_info_t *const p_rtc_info)
     
    +

    Field Documentation

    + +

    ◆ open

    + +
    +
    + + + + +
    fsp_err_t(* rtc_api_t::open) (rtc_ctrl_t *const p_ctrl, rtc_cfg_t const *const p_cfg)
    +
    +

    Open the RTC driver.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to RTC device handle
    [in]p_cfgPointer to the configuration structure
    +
    +
    + +
    +
    + +

    ◆ close

    + +
    +
    + + + + +
    fsp_err_t(* rtc_api_t::close) (rtc_ctrl_t *const p_ctrl)
    +
    +

    Close the RTC driver.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to RTC device handle.
    +
    +
    + +
    +
    + +

    ◆ clockSourceSet

    + +
    +
    + + + + +
    fsp_err_t(* rtc_api_t::clockSourceSet) (rtc_ctrl_t *const p_ctrl)
    +
    +

    Sets the RTC clock source.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to RTC device handle
    +
    +
    + +
    +
    + +

    ◆ calendarTimeSet

    + +
    +
    + + + + +
    fsp_err_t(* rtc_api_t::calendarTimeSet) (rtc_ctrl_t *const p_ctrl, rtc_time_t *const p_time)
    +
    +

    Set the calendar time and start the calender counter

    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlPointer to RTC device handle
    [in]p_timePointer to a time structure that contains the time to set
    [in]clock_startFlag that starts the clock right after it is set
    +
    +
    + +
    +
    + +

    ◆ calendarTimeGet

    + +
    +
    + + + + +
    fsp_err_t(* rtc_api_t::calendarTimeGet) (rtc_ctrl_t *const p_ctrl, rtc_time_t *const p_time)
    +
    +

    Get the calendar time.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to RTC device handle
    [out]p_timePointer to a time structure that contains the time to get
    +
    +
    + +
    +
    + +

    ◆ calendarAlarmSet

    + +
    +
    + + + + +
    fsp_err_t(* rtc_api_t::calendarAlarmSet) (rtc_ctrl_t *const p_ctrl, rtc_alarm_time_t *const p_alarm)
    +
    +

    Set the calendar alarm time and enable the alarm interrupt.

    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlPointer to RTC device handle
    [in]p_alarmPointer to an alarm structure that contains the alarm time to set
    [in]irq_enable_flagEnable the ALARM irq if set
    +
    +
    + +
    +
    + +

    ◆ calendarAlarmGet

    + +
    +
    + + + + +
    fsp_err_t(* rtc_api_t::calendarAlarmGet) (rtc_ctrl_t *const p_ctrl, rtc_alarm_time_t *const p_alarm)
    +
    +

    Get the calendar alarm time.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to RTC device handle
    [out]p_alarmPointer to an alarm structure to fill up with the alarm time
    +
    +
    + +
    +
    + +

    ◆ periodicIrqRateSet

    + +
    +
    + + + + +
    fsp_err_t(* rtc_api_t::periodicIrqRateSet) (rtc_ctrl_t *const p_ctrl, rtc_periodic_irq_select_t const rate)
    +
    +

    Set the periodic irq rate

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to RTC device handle
    [in]rateRate of periodic interrupts
    +
    +
    + +
    +
    + +

    ◆ errorAdjustmentSet

    + +
    +
    + + + + +
    fsp_err_t(* rtc_api_t::errorAdjustmentSet) (rtc_ctrl_t *const p_ctrl, rtc_error_adjustment_cfg_t const *const err_adj_cfg)
    +
    +

    Set time error adjustment.

    +
    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control handle structure
    [in]err_adj_cfgPointer to the Error Adjustment Config
    +
    +
    + +
    +
    + +

    ◆ callbackSet

    + +
    +
    + + + + +
    fsp_err_t(* rtc_api_t::callbackSet) (rtc_ctrl_t *const p_ctrl, void(*p_callback)(rtc_callback_args_t *), void const *const p_context, rtc_callback_args_t *const p_callback_memory)
    +
    +

    Specify callback function and optional context pointer and working memory pointer.

    Implemented as
    +
    +
    Parameters
    + + + + + +
    [in]p_ctrlPointer to the RTC control block.
    [in]p_callbackCallback function
    [in]p_contextPointer to send to callback function
    [in]p_working_memoryPointer to volatile memory where callback structure can be allocated
    +
    +
    + +
    +
    + +

    ◆ infoGet

    + +
    +
    + + + + +
    fsp_err_t(* rtc_api_t::infoGet) (rtc_ctrl_t *const p_ctrl, rtc_info_t *const p_rtc_info)
    +
    +

    Return the currently configure clock source for the RTC

    +
    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control handle structure
    [out]p_rtc_infoPointer to RTC information structure
    +
    +
    + +
    +
    + +
    +
    + +

    ◆ rtc_instance_t

    + +
    +
    + + + + +
    struct rtc_instance_t
    +
    +

    This structure encompasses everything that is needed to use an instance of this interface.

    +
    + + + + + + + + + + +
    Data Fields
    +rtc_ctrl_t * +p_ctrl +Pointer to the control structure for this instance.
    +rtc_cfg_t const * +p_cfg +Pointer to the configuration structure for this instance.
    +rtc_api_t const * +p_api +Pointer to the API structure for this instance.
    + +
    +
    +

    Typedef Documentation

    + +

    ◆ rtc_time_t

    + +
    +
    + + + + +
    typedef struct tm rtc_time_t
    +
    +

    Date and time structure defined in C standard library <time.h>

    + +
    +
    + +

    ◆ rtc_ctrl_t

    + +
    +
    + + + + +
    typedef void rtc_ctrl_t
    +
    +

    RTC control block. Allocate an instance specific control block to pass into the RTC API calls.

    Implemented as
    +
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ rtc_event_t

    + +
    +
    + + + + +
    enum rtc_event_t
    +
    +

    Events that can trigger a callback function

    + + + + +
    Enumerator
    RTC_EVENT_ALARM_IRQ 

    Real Time Clock ALARM 0 IRQ.

    +
    RTC_EVENT_ALARM1_IRQ 

    Real Time Clock ALARM 1 IRQ.

    +
    RTC_EVENT_PERIODIC_IRQ 

    Real Time Clock PERIODIC IRQ.

    +
    + +
    +
    + +

    ◆ rtc_alarm_channel_t

    + +
    +
    + + + + +
    enum rtc_alarm_channel_t
    +
    +

    RTC alarm channel

    + +
    +
    + +

    ◆ rtc_clock_source_t

    + +
    +
    + + + + +
    enum rtc_clock_source_t
    +
    +

    Clock source for the RTC block

    + + + +
    Enumerator
    RTC_CLOCK_SOURCE_SUBCLK 

    Sub-clock oscillator.

    +
    RTC_CLOCK_SOURCE_LOCO 

    Low power On Chip Oscillator.

    +
    + +
    +
    + +

    ◆ rtc_status_t

    + +
    +
    + + + + +
    enum rtc_status_t
    +
    +

    RTC run state

    + + + +
    Enumerator
    RTC_STATUS_STOPPED 

    RTC counter is stopped.

    +
    RTC_STATUS_RUNNING 

    RTC counter is running.

    +
    + +
    +
    + +

    ◆ rtc_error_adjustment_t

    + +
    +
    + + + + +
    enum rtc_error_adjustment_t
    +
    +

    Time error adjustment settings

    + + + + +
    Enumerator
    RTC_ERROR_ADJUSTMENT_NONE 

    Adjustment is not performed.

    +
    RTC_ERROR_ADJUSTMENT_ADD_PRESCALER 

    Adjustment is performed by the addition to the prescaler.

    +
    RTC_ERROR_ADJUSTMENT_SUBTRACT_PRESCALER 

    Adjustment is performed by the subtraction from the prescaler.

    +
    + +
    +
    + +

    ◆ rtc_error_adjustment_mode_t

    + +
    +
    + + + + +
    enum rtc_error_adjustment_mode_t
    +
    +

    Time error adjustment mode settings

    + + + +
    Enumerator
    RTC_ERROR_ADJUSTMENT_MODE_MANUAL 

    Adjustment mode is set to manual.

    +
    RTC_ERROR_ADJUSTMENT_MODE_AUTOMATIC 

    Adjustment mode is set to automatic.

    +
    + +
    +
    + +

    ◆ rtc_error_adjustment_period_t

    + +
    +
    +

    Time error adjustment period settings

    + + + + +
    Enumerator
    RTC_ERROR_ADJUSTMENT_PERIOD_1_MINUTE 

    Adjustment period is set to every one minute.

    +
    RTC_ERROR_ADJUSTMENT_PERIOD_10_SECOND 

    Adjustment period is set to every ten second.

    +
    RTC_ERROR_ADJUSTMENT_PERIOD_NONE 

    Adjustment period not supported in manual mode.

    +
    + +
    +
    + +

    ◆ rtc_periodic_irq_select_t

    + +
    +
    + + + + +
    enum rtc_periodic_irq_select_t
    +
    +

    Periodic Interrupt select

    + + + + + + + + + + + +
    Enumerator
    RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_256_SECOND 

    A periodic irq is generated every 1/256 second.

    +
    RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_128_SECOND 

    A periodic irq is generated every 1/128 second.

    +
    RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_64_SECOND 

    A periodic irq is generated every 1/64 second.

    +
    RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_32_SECOND 

    A periodic irq is generated every 1/32 second.

    +
    RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_16_SECOND 

    A periodic irq is generated every 1/16 second.

    +
    RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_8_SECOND 

    A periodic irq is generated every 1/8 second.

    +
    RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_4_SECOND 

    A periodic irq is generated every 1/4 second.

    +
    RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_2_SECOND 

    A periodic irq is generated every 1/2 second.

    +
    RTC_PERIODIC_IRQ_SELECT_1_SECOND 

    A periodic irq is generated every 1 second.

    +
    RTC_PERIODIC_IRQ_SELECT_2_SECOND 

    A periodic irq is generated every 2 seconds.

    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___r_t_c___a_p_i.js b/group___r_t_c___a_p_i.js new file mode 100644 index 0000000..763bb7c --- /dev/null +++ b/group___r_t_c___a_p_i.js @@ -0,0 +1,102 @@ +var group___r_t_c___a_p_i = +[ + [ "rtc_callback_args_t", "group___r_t_c___a_p_i.html#structrtc__callback__args__t", [ + [ "event", "group___r_t_c___a_p_i.html#ad37b36597532fc87e610ceeb849cad4d", null ], + [ "p_context", "group___r_t_c___a_p_i.html#a2a07242a217b804f8dc04fb078d4a6a1", null ] + ] ], + [ "rtc_error_adjustment_cfg_t", "group___r_t_c___a_p_i.html#structrtc__error__adjustment__cfg__t", [ + [ "adjustment_mode", "group___r_t_c___a_p_i.html#a16c0bd22c4022b133fc1eee5333086a9", null ], + [ "adjustment_period", "group___r_t_c___a_p_i.html#af0318e2dbaf3a320504823c4cb1f2ce5", null ], + [ "adjustment_type", "group___r_t_c___a_p_i.html#a322799f85ff64bfe8d6dd4fd611e1ed7", null ], + [ "adjustment_value", "group___r_t_c___a_p_i.html#a3953fbf4c2ae68580302f22001c8f89e", null ] + ] ], + [ "rtc_alarm_time_t", "group___r_t_c___a_p_i.html#structrtc__alarm__time__t", [ + [ "time", "group___r_t_c___a_p_i.html#a07468cd075199669905fb25eecddcf9b", null ], + [ "sec_match", "group___r_t_c___a_p_i.html#ab654c3b3c410b61980950ddf0581cd27", null ], + [ "min_match", "group___r_t_c___a_p_i.html#a2116bd7b5fa4535556de190e370b548a", null ], + [ "hour_match", "group___r_t_c___a_p_i.html#a99fb3242d7bb1eb482cb436a49c1b18d", null ], + [ "mday_match", "group___r_t_c___a_p_i.html#a40c6580113cd30f538f7985b2e6bed46", null ], + [ "mon_match", "group___r_t_c___a_p_i.html#a1037fb218fb45e450dd41965a9ca1df7", null ], + [ "year_match", "group___r_t_c___a_p_i.html#ab20077ad52e2ef1a05a206d3cf216662", null ], + [ "dayofweek_match", "group___r_t_c___a_p_i.html#a7c550dd3aaa641771433b71675a41acf", null ], + [ "channel", "group___r_t_c___a_p_i.html#ae9bd30168ad8a2932e542beaed85b2e1", null ] + ] ], + [ "rtc_info_t", "group___r_t_c___a_p_i.html#structrtc__info__t", [ + [ "clock_source", "group___r_t_c___a_p_i.html#aba0edee87eb628db01fb1fa070a0c144", null ], + [ "status", "group___r_t_c___a_p_i.html#a72e36c98782bcb50ce83f7d05b3fc024", null ] + ] ], + [ "rtc_cfg_t", "group___r_t_c___a_p_i.html#structrtc__cfg__t", [ + [ "clock_source", "group___r_t_c___a_p_i.html#a4d6b36efa20644739ef4a2697a745660", null ], + [ "freq_compare_value_loco", "group___r_t_c___a_p_i.html#a0a64ff37fefef5f044209c6f85564b70", null ], + [ "p_err_cfg", "group___r_t_c___a_p_i.html#ae9c6c82e443f75c0ad7ec40b178a3972", null ], + [ "alarm_ipl", "group___r_t_c___a_p_i.html#a6a99d08314611e1fe129bef873c56ac2", null ], + [ "alarm_irq", "group___r_t_c___a_p_i.html#aabad6d91d22b402ad2cbee664bd5c502", null ], + [ "periodic_ipl", "group___r_t_c___a_p_i.html#a784a723ee3542eecfa96de492dd511dc", null ], + [ "periodic_irq", "group___r_t_c___a_p_i.html#a744ab95029f4675df63aec891d0f7269", null ], + [ "carry_ipl", "group___r_t_c___a_p_i.html#a4d9b154cadb980b95d1153a8f1b6c7e2", null ], + [ "carry_irq", "group___r_t_c___a_p_i.html#add77caaa41f0376590df0a6312a16053", null ], + [ "p_callback", "group___r_t_c___a_p_i.html#acb6915cb2c55dd196d4c35cbf805bab2", null ], + [ "p_context", "group___r_t_c___a_p_i.html#a84d9e4ba135ac56c779ca525660d5c2a", null ], + [ "p_extend", "group___r_t_c___a_p_i.html#a66dc93f732aa8ec1b07d036602974cb0", null ] + ] ], + [ "rtc_api_t", "group___r_t_c___a_p_i.html#structrtc__api__t", [ + [ "open", "group___r_t_c___a_p_i.html#aafcde8ffb1e01cccbfa0eb9d0506674a", null ], + [ "close", "group___r_t_c___a_p_i.html#af5b8ce71ff3d65a0f9a556151e6d3b5c", null ], + [ "clockSourceSet", "group___r_t_c___a_p_i.html#a5119270ac476dc4c0aa6869df0627de9", null ], + [ "calendarTimeSet", "group___r_t_c___a_p_i.html#a9a389b61ac0714083083fd04d9223479", null ], + [ "calendarTimeGet", "group___r_t_c___a_p_i.html#aef7d57fb6eb6e5e781743071793de36e", null ], + [ "calendarAlarmSet", "group___r_t_c___a_p_i.html#a5bda4cf6957658e03d59db0cf11933e5", null ], + [ "calendarAlarmGet", "group___r_t_c___a_p_i.html#aaad6019c8b72db02966fc040676810b4", null ], + [ "periodicIrqRateSet", "group___r_t_c___a_p_i.html#a5a13e1acf6e07bfd87dc81bf65272951", null ], + [ "errorAdjustmentSet", "group___r_t_c___a_p_i.html#ae1635364719444ad65541ce00953983e", null ], + [ "callbackSet", "group___r_t_c___a_p_i.html#a63a958dd039662f8d13d38a64da9b61e", null ], + [ "infoGet", "group___r_t_c___a_p_i.html#a7a6c940847c6f730a5c5df3355dca1eb", null ] + ] ], + [ "rtc_instance_t", "group___r_t_c___a_p_i.html#structrtc__instance__t", [ + [ "p_ctrl", "group___r_t_c___a_p_i.html#acc669b027e055903ca6effb673182925", null ], + [ "p_cfg", "group___r_t_c___a_p_i.html#af39ca95036c2304e17a64a8fac0e1a0b", null ], + [ "p_api", "group___r_t_c___a_p_i.html#a8d5beb93c07f858029d0d77e8e5b770e", null ] + ] ], + [ "rtc_time_t", "group___r_t_c___a_p_i.html#gaf7de6d99d4c7fd767ebeaabf873fe56d", null ], + [ "rtc_ctrl_t", "group___r_t_c___a_p_i.html#ga324429d0f16e2a72abae17610d776f0e", null ], + [ "rtc_event_t", "group___r_t_c___a_p_i.html#gad2e192ed9a33b6c005c2c19ccbd6a21b", [ + [ "RTC_EVENT_ALARM_IRQ", "group___r_t_c___a_p_i.html#ggad2e192ed9a33b6c005c2c19ccbd6a21bab2d201ffa3ef8219d41fec7009c5a3d4", null ], + [ "RTC_EVENT_ALARM1_IRQ", "group___r_t_c___a_p_i.html#ggad2e192ed9a33b6c005c2c19ccbd6a21bad269f3ac02b4c6a8cd6b0be90b62ba30", null ], + [ "RTC_EVENT_PERIODIC_IRQ", "group___r_t_c___a_p_i.html#ggad2e192ed9a33b6c005c2c19ccbd6a21ba32818d089c15c50d17a13dce861db7d8", null ] + ] ], + [ "rtc_alarm_channel_t", "group___r_t_c___a_p_i.html#ga023e9e2043784cf17e3d3bf056ce14f1", null ], + [ "rtc_clock_source_t", "group___r_t_c___a_p_i.html#gad8eef26a825fa4a0c5a417f8be08ccc6", [ + [ "RTC_CLOCK_SOURCE_SUBCLK", "group___r_t_c___a_p_i.html#ggad8eef26a825fa4a0c5a417f8be08ccc6a7b64e5bbc3adc81add25128016631364", null ], + [ "RTC_CLOCK_SOURCE_LOCO", "group___r_t_c___a_p_i.html#ggad8eef26a825fa4a0c5a417f8be08ccc6abd7cdef56193166a8a680504e1f3f5fa", null ] + ] ], + [ "rtc_status_t", "group___r_t_c___a_p_i.html#gab1079685ed8a9d30f32062b3bfedd041", [ + [ "RTC_STATUS_STOPPED", "group___r_t_c___a_p_i.html#ggab1079685ed8a9d30f32062b3bfedd041a1f6935d0b857ca464bac48d0532b9b48", null ], + [ "RTC_STATUS_RUNNING", "group___r_t_c___a_p_i.html#ggab1079685ed8a9d30f32062b3bfedd041a894d35c1f934f700232ecd554c95b38d", null ] + ] ], + [ "rtc_error_adjustment_t", "group___r_t_c___a_p_i.html#ga704067eae956dc872d24edf9b85b397f", [ + [ "RTC_ERROR_ADJUSTMENT_NONE", "group___r_t_c___a_p_i.html#gga704067eae956dc872d24edf9b85b397faf14f20829e9678dd1187c0213e474b39", null ], + [ "RTC_ERROR_ADJUSTMENT_ADD_PRESCALER", "group___r_t_c___a_p_i.html#gga704067eae956dc872d24edf9b85b397fac08633933a5c2a53ee1031ddd6247335", null ], + [ "RTC_ERROR_ADJUSTMENT_SUBTRACT_PRESCALER", "group___r_t_c___a_p_i.html#gga704067eae956dc872d24edf9b85b397fa29f7a1f47e70b2bfc3050aad3459b366", null ] + ] ], + [ "rtc_error_adjustment_mode_t", "group___r_t_c___a_p_i.html#ga4cbfe07cf288ae153c30b4fef99163e7", [ + [ "RTC_ERROR_ADJUSTMENT_MODE_MANUAL", "group___r_t_c___a_p_i.html#gga4cbfe07cf288ae153c30b4fef99163e7a7b90f3b3332c2ba8fffd0921fddf1888", null ], + [ "RTC_ERROR_ADJUSTMENT_MODE_AUTOMATIC", "group___r_t_c___a_p_i.html#gga4cbfe07cf288ae153c30b4fef99163e7ae772455e50f01892e6dffabf509ae66c", null ] + ] ], + [ "rtc_error_adjustment_period_t", "group___r_t_c___a_p_i.html#gaa9758f6f29579df6e9f5c64ff486c097", [ + [ "RTC_ERROR_ADJUSTMENT_PERIOD_1_MINUTE", "group___r_t_c___a_p_i.html#ggaa9758f6f29579df6e9f5c64ff486c097a4c96e106ab367f0a811813e6077c3a8c", null ], + [ "RTC_ERROR_ADJUSTMENT_PERIOD_10_SECOND", "group___r_t_c___a_p_i.html#ggaa9758f6f29579df6e9f5c64ff486c097abb5d066f25aa8878ef57848e7a8a28aa", null ], + [ "RTC_ERROR_ADJUSTMENT_PERIOD_NONE", "group___r_t_c___a_p_i.html#ggaa9758f6f29579df6e9f5c64ff486c097afe53e47d736acd5bd710bc610d1fd8bc", null ] + ] ], + [ "rtc_periodic_irq_select_t", "group___r_t_c___a_p_i.html#gacbf0a3d09430a65ca1b3179819183f01", [ + [ "RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_256_SECOND", "group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a2f22d5de616b4249e26741a2d1af200d", null ], + [ "RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_128_SECOND", "group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01ac5e572907bd22dee0bcc223b701be0c7", null ], + [ "RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_64_SECOND", "group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a202eb83ad25aebbdd9c6cee8def4619b", null ], + [ "RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_32_SECOND", "group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a61b490784dbe69ffd6740dfd21ba318c", null ], + [ "RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_16_SECOND", "group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a19822146d83f4839005318b6ab299074", null ], + [ "RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_8_SECOND", "group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a7d5fa9813737ea5f426a38c26349d244", null ], + [ "RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_4_SECOND", "group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a2d83137f7be0a550f9e8533090186f17", null ], + [ "RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_2_SECOND", "group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a5d684a2ff7ceabe98acb755095705f4e", null ], + [ "RTC_PERIODIC_IRQ_SELECT_1_SECOND", "group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a35f83abe856065e723ec538a5e708a6d", null ], + [ "RTC_PERIODIC_IRQ_SELECT_2_SECOND", "group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01ac05b73777b54b84cc0ed8c6ee4013f33", null ] + ] ] +]; \ No newline at end of file diff --git a/group___s_c_i___b___i2_c.html b/group___s_c_i___b___i2_c.html new file mode 100644 index 0000000..1700f61 --- /dev/null +++ b/group___s_c_i___b___i2_c.html @@ -0,0 +1,825 @@ + + + + + + + +RZV Flexible Software Package Documentation: I2C Master (r_sci_b_i2c) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    I2C Master (r_sci_b_i2c)
    +
    +
    + + + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_SCI_B_I2C_Open (i2c_master_ctrl_t *const p_api_ctrl, i2c_master_cfg_t const *const p_cfg)
     
    fsp_err_t R_SCI_B_I2C_Close (i2c_master_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_SCI_B_I2C_Read (i2c_master_ctrl_t *const p_api_ctrl, uint8_t *const p_dest, uint32_t const bytes, bool const restart)
     
    fsp_err_t R_SCI_B_I2C_Write (i2c_master_ctrl_t *const p_api_ctrl, uint8_t *const p_src, uint32_t const bytes, bool const restart)
     
    fsp_err_t R_SCI_B_I2C_Abort (i2c_master_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_SCI_B_I2C_SlaveAddressSet (i2c_master_ctrl_t *const p_api_ctrl, uint32_t const slave, i2c_master_addr_mode_t const addr_mode)
     
    fsp_err_t R_SCI_B_I2C_CallbackSet (i2c_master_ctrl_t *const p_api_ctrl, void(*p_callback)(i2c_master_callback_args_t *), void const *const p_context, i2c_master_callback_args_t *const p_callback_memory)
     
    fsp_err_t R_SCI_B_I2C_StatusGet (i2c_master_ctrl_t *const p_api_ctrl, i2c_master_status_t *p_status)
     
    +

    Detailed Description

    +

    Driver for the SCI_B peripheral on RZ MPUs. This module implements the I2C Master Interface.

    +

    +Overview

    +

    The Simple I2C master on SCI_B HAL module supports transactions with an I2C Slave device. Callbacks must be provided which would be invoked when a transmission or receive has been completed. The callback arguments will contain information about the transaction status, bytes transferred and a pointer to the user defined context.

    +

    +Features

    +
      +
    • Supports multiple transmission rates
        +
      • Standard Mode Support with up to 100 kHz transaction rate.
      • +
      • Fast Mode Support with up to 400 kHz transaction rate.
      • +
      +
    • +
    • SDA Delay in nanoseconds can be specified as a part of the configuration.
    • +
    • I2C Master Read from a slave device.
    • +
    • I2C Master Write to a slave device.
    • +
    • Abort any in-progress transactions.
    • +
    • Set the address of the slave device.
    • +
    • Non-blocking behavior is achieved by the use of callbacks.
    • +
    • Additional build-time features
        +
      • Optional (build time) DMAC support for read and write respectively.
      • +
      • Optional (build time) support for 10-bit slave addressing.
      • +
      +
    • +
    +

    +Configuration

    +

    Build Time Configurations for r_sci_b_i2c

    +The following build time configurations are defined in fsp_cfg/r_sci_b_i2c_cfg.h:
    +

    + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    DMAC on Transmission and Reception
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled If enabled, DMAC instances will be included in the build for both transmission and reception.
    10-bit slave addressing
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled If enabled, the driver will support 10-bit slave addressing mode along with the default 7-bit slave addressing mode.
    +

    Configurations for Connectivity > I2C Master (r_sci_b_i2c)

    +This module can be added to the Stacks tab via New Stack > Connectivity > I2C Master (r_sci_b_i2c). Non-secure callable guard functions can be generated for this module by right clicking the module in the RA Configuration tool and checking the "Non-secure Callable" box.
    +

    + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    NameName must be a valid C symbolg_i2c0 Module name.
    ChannelValue must be an integer between 0 and 90 Select the SCI channel.
    Slave Address Value must be a hex value0x00 Specify the slave address.
    Address Mode
      +
    • +7-Bit
    • +
    • +10-Bit
    • +
    +
    7-Bit Select the address mode.
    Rate
      +
    • +Standard
    • +
    • +Fast-mode
    • +
    +
    Standard Select the I2C data rate.
    +
    +If the requested transfer rate cannot be achieved, the settings with the largest possible transfer rate that is less than or equal to the requested transfer rate are used. The theoretical calculated transfer rate and SDA delay are printed in a comment in the generated sci_b_i2c_extended_cfg_t structure.
    SDA Output Delay (nano seconds)Must be a valid non-negative integer with maximum configurable value of 300300 Specify the SDA output delay in nanoseconds.
    Noise Filter Clock Select
      +
    • +The on-chip baud rate generator source clock divided by 1
    • +
    • +The on-chip baud rate generator source clock divided by 2
    • +
    • +The on-chip baud rate generator source clock divided by 4
    • +
    • +The on-chip baud rate generator source clock divided by 8
    • +
    +
    The on-chip baud rate generator source clock divided by 1 Select the on-chip baud rate generator source clock division setting for the digital noise filter
    Bit Rate Modulation
      +
    • +Enable
    • +
    • +Disable
    • +
    +
    Enable Enabling bitrate modulation reduces the percent error of the actual bitrate with respect to the requested baud rate. It does this by modulating the number of cycles per clock output pulse, so the clock is no longer a square wave.
    CallbackName must be a valid C symbolsci_b_i2c_master_callback A user callback function can be provided. If this callback function is provided, it will be called from the interrupt service routine (ISR).
    Interrupt Priority LevelValue must be a non-negative integer12 Select the interrupt priority level. This is set for TXI, TEI, and RXI interrupts.
    RX InterruptMCU Specific OptionsEnable the RX interrupt. Should be enabled only with DMAC enabled.
    +

    +

    +Clock Configuration

    +

    The actual I2C transfer rate is derived from PLLCLN and will be calculated and set by the tooling depending on the selected transfer rate and the SDA delay. If the selected clock is configured in such a manner that the selected internal rate cannot be achieved, an error will be returned.

    +

    +Pin Configuration

    +

    The SCI_B I2C peripheral module uses pins on the MPU to communicate to external devices. I/O pins must be selected and configured as required by the external device. An I2C channel would consist of two pins - SDA and SCL for data/address and clock respectively.

    +

    +Usage Notes

    +

    +Interrupt Configuration

    +
      +
    • Receive buffer full (RXI), transmit buffer empty (TXI) and transmit end (TEI) interrupts for the selected channel used must be enabled in the properties of the selected device.
    • +
    • Set equal priority levels for all the interrupts mentioned above. Setting the interrupts to different priority levels could result in improper operation.
    • +
    +

    +SCI_B I2C Master Rate Calculation

    +
      +
    • The RZ Configuration editor calculates the internal baud-rate setting based on the configured transfer rate and SDA Delay. The closest possible baud-rate that can be achieved (less than or equal to the requested rate) is primarily determined by the value of the pull-up resistors for the SCL and SDA pins. It is not recommended to rely solely on the internal pull-up resistors for RZ MPU devices, as they can be quite large, such as 10K+ to 100K+. In such cases, the rise time would increase significantly. To comply with the I2C specification, specifically regarding the low level width and high level width, the actual frequency will be slowed down.
    • +
    • If a valid clock rate could not be calculated, an error is returned by the tool.
    • +
    +

    +Enabling DMAC with the SCI_B I2C

    +
      +
    • DMAC transfer support is configurable and is disabled from the build by default. SCI_B I2C driver provides two DMAC instances for transmission and reception respectively.
    • +
    • DMAC is helpful for minimizing interrupts during large transactions. Many I2C applications have shorter transactions. These applications will likely not see any improvement with DMAC. I2C often runs at a much slower speed than the CPU core clock. Some applications with longer transactions may prefer servicing the interrupts at the I2C bitrate to the overhead of bringing in the DMAC driver.
    • +
    • For further details on DMAC please refer Direct Memory Access Controller (r_dmac_b)
    • +
    +

    +Multiple Devices on the Bus

    +
      +
    • A single SCI_B I2C instance can be used to communicate with multiple slave devices on the same channel by using the SlaveAddressSet API.
    • +
    +

    +Restart

    +
      +
    • SCI_B_I2C can hold the the bus after an I2C transaction by issuing a repeated start condition.
    • +
    +

    +Examples

    +

    Basic Example

    +

    This is a basic example of minimal use of the r_sci_b_i2c in an application. This example shows how this driver can be used for basic read and write operations.

    +
    void basic_example (void)
    {
    fsp_err_t err;
    uint32_t timeout_ms = I2C_TRANSACTION_BUSY_DELAY;
    /* Initialize the I2C module */
    err = R_SCI_B_I2C_Open(&g_i2c_device_ctrl_1, &g_i2c_device_cfg_1);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Write some data to the transmit buffer */
    for (int i = 0; i < I2C_BUFFER_SIZE_BYTES; i++)
    {
    g_i2c_tx_buffer[i] = (uint8_t) i;
    }
    /* Send data to I2C slave */
    g_i2c_callback_event = I2C_MASTER_EVENT_ABORTED;
    err = R_SCI_B_I2C_Write(&g_i2c_device_ctrl_1, &g_i2c_tx_buffer[0], I2C_BUFFER_SIZE_BYTES, false);
    assert(FSP_SUCCESS == err);
    /* Since there is nothing else to do, block until Callback triggers*/
    while ((I2C_MASTER_EVENT_TX_COMPLETE != g_i2c_callback_event) && timeout_ms)
    {
    timeout_ms--;;
    }
    if (I2C_MASTER_EVENT_ABORTED == g_i2c_callback_event)
    {
    __BKPT(0);
    }
    /* Read data back from the I2C slave */
    g_i2c_callback_event = I2C_MASTER_EVENT_ABORTED;
    timeout_ms = I2C_TRANSACTION_BUSY_DELAY;
    err = R_SCI_B_I2C_Read(&g_i2c_device_ctrl_1, &g_i2c_rx_buffer[0], I2C_BUFFER_SIZE_BYTES, false);
    assert(FSP_SUCCESS == err);
    /* Since there is nothing else to do, block until Callback triggers*/
    while ((I2C_MASTER_EVENT_RX_COMPLETE != g_i2c_callback_event) && timeout_ms)
    {
    timeout_ms--;;
    }
    if (I2C_MASTER_EVENT_ABORTED == g_i2c_callback_event)
    {
    __BKPT(0);
    }
    /* Verify the read data */
    if (0U != memcmp(g_i2c_tx_buffer, g_i2c_rx_buffer, I2C_BUFFER_SIZE_BYTES))
    {
    __BKPT(0);
    }
    }

    Multiple Slave devices on the same channel (bus)

    +

    This example demonstrates how a single SCI_B I2C driver can be used to communicate with different slave devices which are on the same channel.

    +
    void single_channel_multi_slave (void)
    {
    fsp_err_t err;
    uint32_t timeout_ms = I2C_TRANSACTION_BUSY_DELAY;
    err = R_SCI_B_I2C_Open(&g_i2c_device_ctrl_2, &g_i2c_device_cfg_2);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Clear the recieve buffer */
    memset(g_i2c_rx_buffer, '0', I2C_BUFFER_SIZE_BYTES);
    /* Read data from I2C slave */
    g_i2c_callback_event = I2C_MASTER_EVENT_ABORTED;
    err = R_SCI_B_I2C_Read(&g_i2c_device_ctrl_2, &g_i2c_rx_buffer[0], I2C_BUFFER_SIZE_BYTES, false);
    assert(FSP_SUCCESS == err);
    while ((I2C_MASTER_EVENT_RX_COMPLETE != g_i2c_callback_event) && timeout_ms)
    {
    timeout_ms--;;
    }
    if (I2C_MASTER_EVENT_ABORTED == g_i2c_callback_event)
    {
    __BKPT(0);
    }
    /* Send data to I2C slave on the same channel */
    err = R_SCI_B_I2C_SlaveAddressSet(&g_i2c_device_ctrl_2, I2C_SLAVE_DISPLAY_ADAPTER, I2C_MASTER_ADDR_MODE_7BIT);
    assert(FSP_SUCCESS == err);
    g_i2c_tx_buffer[0] = (uint8_t) I2C_EXAMPLE_DATA_1;
    g_i2c_tx_buffer[1] = (uint8_t) I2C_EXAMPLE_DATA_2;
    g_i2c_callback_event = I2C_MASTER_EVENT_ABORTED;
    timeout_ms = I2C_TRANSACTION_BUSY_DELAY;
    err = R_SCI_B_I2C_Write(&g_i2c_device_ctrl_2, &g_i2c_tx_buffer[0], 2U, false);
    assert(FSP_SUCCESS == err);
    while ((I2C_MASTER_EVENT_TX_COMPLETE != g_i2c_callback_event) && timeout_ms)
    {
    timeout_ms--;;
    }
    if (I2C_MASTER_EVENT_ABORTED == g_i2c_callback_event)
    {
    __BKPT(0);
    }
    }
    + + + + + + + +

    +Data Structures

    struct  sci_b_i2c_clock_settings_t
     
    struct  sci_b_i2c_instance_ctrl_t
     
    struct  sci_b_i2c_extended_cfg_t
     
    + + + +

    +Enumerations

    enum  sci_b_i2c_clock_source_t
     
    +

    Data Structure Documentation

    + +

    ◆ sci_b_i2c_clock_settings_t

    + +
    +
    + + + + +
    struct sci_b_i2c_clock_settings_t
    +
    +

    I2C clock settings

    +
    + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +bool +bitrate_modulation +Bit-rate Modulation Function enable or disable.
    +uint8_t +brr_value +Bit rate register settings.
    +uint8_t +clk_divisor_value +Clock Select settings.
    +uint8_t +mddr_value +Modulation Duty Register settings.
    +uint8_t +cycles_value +SDA Delay Output Cycles Select.
    +uint8_t +snfr_value +Noise Filter Setting Register value.
    +sci_b_i2c_clock_source_t +clock_source +Clock source (PCLK or SCISPICLK)
    + +
    +
    + +

    ◆ sci_b_i2c_instance_ctrl_t

    + +
    +
    + + + + +
    struct sci_b_i2c_instance_ctrl_t
    +
    +

    I2C control structure. DO NOT INITIALIZE.

    +
    +
    +
    + +

    ◆ sci_b_i2c_extended_cfg_t

    + +
    +
    + + + + +
    struct sci_b_i2c_extended_cfg_t
    +
    +

    SCI I2C extended configuration

    +
    + + + + +
    Data Fields
    +sci_b_i2c_clock_settings_t +clock_settings +I2C Clock settings.
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ sci_b_i2c_clock_source_t

    + +
    +
    + + + + +
    enum sci_b_i2c_clock_source_t
    +
    +

    SCI clock source

    + +
    +
    +

    Function Documentation

    + +

    ◆ R_SCI_B_I2C_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_I2C_Open (i2c_master_ctrl_t *const p_api_ctrl,
    i2c_master_cfg_t const *const p_cfg 
    )
    +
    +

    Opens the I2C device.

    +
    Return values
    + + + + + +
    FSP_SUCCESSRequested clock rate was set exactly.
    FSP_ERR_ALREADY_OPENModule is already open.
    FSP_ERR_IP_CHANNEL_NOT_PRESENTChannel is not available on this MCU.
    FSP_ERR_ASSERTIONParameter check failure due to one or more reasons below:
      +
    1. p_api_ctrl or p_cfg is NULL.
    2. +
    3. extended parameter is NULL.
    4. +
    5. Callback parameter is NULL.
    6. +
    7. Clock rate requested is greater than 400KHz
    8. +
    9. Invalid IRQ number assigned
    10. +
    +
    +
    +
    + +
    +
    + +

    ◆ R_SCI_B_I2C_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_SCI_B_I2C_Close (i2c_master_ctrl_t *const p_api_ctrl)
    +
    +

    Closes the I2C device. Power down I2C peripheral.

    +

    This function will safely terminate any in-progress I2C transfer with the device. If a transfer is aborted, the user will be notified via callback with an abort event. Since the callback is optional, this function will also return a specific error code in this situation.

    +
    Return values
    + + + + +
    FSP_SUCCESSDevice closed without issue.
    FSP_ERR_ASSERTIONThe parameter p_ctrl is NULL.
    FSP_ERR_NOT_OPENDevice was not even opened.
    +
    +
    + +
    +
    + +

    ◆ R_SCI_B_I2C_Read()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_I2C_Read (i2c_master_ctrl_t *const p_api_ctrl,
    uint8_t *const p_dest,
    uint32_t const bytes,
    bool const restart 
    )
    +
    +

    Performs a read from the I2C device. The caller will be notified when the operation has completed (successfully) by an I2C_MASTER_EVENT_RX_COMPLETE in the callback.

    +
    Return values
    + + + + + +
    FSP_SUCCESSFunction executed without issue.
    FSP_ERR_ASSERTIONThe parameter p_ctrl, p_dest is NULL, bytes is 0.
    FSP_ERR_INVALID_SIZEProvided number of bytes more than uint16_t size (65535) while DTC is used for data transfer.
    FSP_ERR_NOT_OPENDevice was not even opened.
    +
    +
    + +
    +
    + +

    ◆ R_SCI_B_I2C_Write()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_I2C_Write (i2c_master_ctrl_t *const p_api_ctrl,
    uint8_t *const p_src,
    uint32_t const bytes,
    bool const restart 
    )
    +
    +

    Performs a write to the I2C device.

    +

    This function will fail if there is already an in-progress I2C transfer on the associated channel. Otherwise, the I2C write operation will begin. When no callback is provided by the user, this function performs a blocking write. Otherwise, the write operation is non-blocking and the caller will be notified when the operation has finished by an I2C_EVENT_TX_COMPLETE in the callback.

    +
    Return values
    + + + + + +
    FSP_SUCCESSFunction executed without issue.
    FSP_ERR_ASSERTIONp_ctrl, p_src is NULL.
    FSP_ERR_INVALID_SIZEProvided number of bytes more than uint16_t size (65535) while DTC is used for data transfer.
    FSP_ERR_NOT_OPENDevice was not even opened.
    +
    +
    + +
    +
    + +

    ◆ R_SCI_B_I2C_Abort()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_SCI_B_I2C_Abort (i2c_master_ctrl_t *const p_api_ctrl)
    +
    +

    Aborts any in-progress transfer and forces the I2C peripheral into a ready state.

    +

    This function will safely terminate any in-progress I2C transfer with the device. If a transfer is aborted, the user will be notified via callback with an abort event. Since the callback is optional, this function will also return a specific error code in this situation.

    +
    Return values
    + + + + +
    FSP_SUCCESSTransaction was aborted without issue.
    FSP_ERR_ASSERTIONp_ctrl is NULL.
    FSP_ERR_NOT_OPENDevice was not even opened.
    +
    +
    + +
    +
    + +

    ◆ R_SCI_B_I2C_SlaveAddressSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_I2C_SlaveAddressSet (i2c_master_ctrl_t *const p_api_ctrl,
    uint32_t const slave,
    i2c_master_addr_mode_t const addr_mode 
    )
    +
    +

    Sets address and addressing mode of the slave device.

    +

    This function is used to set the device address and addressing mode of the slave without reconfiguring the entire bus.

    +
    Return values
    + + + + + +
    FSP_SUCCESSAddress of the slave is set correctly.
    FSP_ERR_ASSERTIONp_ctrl or address is NULL.
    FSP_ERR_NOT_OPENDevice was not even opened.
    FSP_ERR_IN_USEAn I2C Transaction is in progress.
    +
    +
    + +
    +
    + +

    ◆ R_SCI_B_I2C_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_I2C_CallbackSet (i2c_master_ctrl_t *const p_api_ctrl,
    void(*)(i2c_master_callback_args_t *) p_callback,
    void const *const p_context,
    i2c_master_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback and has option of providing memory for callback structure. Implements i2c_master_api_t::callbackSet

    +
    Return values
    + + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    + +

    ◆ R_SCI_B_I2C_StatusGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_I2C_StatusGet (i2c_master_ctrl_t *const p_api_ctrl,
    i2c_master_status_tp_status 
    )
    +
    +

    Provides driver status.

    +
    Return values
    + + + +
    FSP_SUCCESSStatus stored in p_status.
    FSP_ERR_ASSERTIONNULL pointer.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___s_c_i___b___i2_c.js b/group___s_c_i___b___i2_c.js new file mode 100644 index 0000000..72d9422 --- /dev/null +++ b/group___s_c_i___b___i2_c.js @@ -0,0 +1,25 @@ +var group___s_c_i___b___i2_c = +[ + [ "sci_b_i2c_clock_settings_t", "group___s_c_i___b___i2_c.html#structsci__b__i2c__clock__settings__t", [ + [ "bitrate_modulation", "group___s_c_i___b___i2_c.html#ac94d1da59cc2217ab818bd222134d3d5", null ], + [ "brr_value", "group___s_c_i___b___i2_c.html#a68f4a0d78c3d47e252f292aa0025b3a9", null ], + [ "clk_divisor_value", "group___s_c_i___b___i2_c.html#a3d3a9e1e75d107d851de3e84c4179161", null ], + [ "mddr_value", "group___s_c_i___b___i2_c.html#af010e505a82e39cbfbc3e2c0b99ce397", null ], + [ "cycles_value", "group___s_c_i___b___i2_c.html#a2f29638add1a4e0525c842c79b2806f5", null ], + [ "snfr_value", "group___s_c_i___b___i2_c.html#a02a85aeaa241753166390cb796c7ead4", null ], + [ "clock_source", "group___s_c_i___b___i2_c.html#abb1e023e83c78d6f4b07b07e172acfe2", null ] + ] ], + [ "sci_b_i2c_instance_ctrl_t", "group___s_c_i___b___i2_c.html#structsci__b__i2c__instance__ctrl__t", null ], + [ "sci_b_i2c_extended_cfg_t", "group___s_c_i___b___i2_c.html#structsci__b__i2c__extended__cfg__t", [ + [ "clock_settings", "group___s_c_i___b___i2_c.html#a076a2fea614be4cba22bc7e9a9e8f2bc", null ] + ] ], + [ "sci_b_i2c_clock_source_t", "group___s_c_i___b___i2_c.html#ga0209d1279b18f095fb8147fee7933c55", null ], + [ "R_SCI_B_I2C_Open", "group___s_c_i___b___i2_c.html#gae457daf3146cc92adfadc471b5bebd27", null ], + [ "R_SCI_B_I2C_Close", "group___s_c_i___b___i2_c.html#ga1d57041c70f924d2968792d59d1b980b", null ], + [ "R_SCI_B_I2C_Read", "group___s_c_i___b___i2_c.html#ga0d1ab3b59b204adb64bff01d4c83d10f", null ], + [ "R_SCI_B_I2C_Write", "group___s_c_i___b___i2_c.html#gaa214ca399eb4bb9cb198237f608b4767", null ], + [ "R_SCI_B_I2C_Abort", "group___s_c_i___b___i2_c.html#gadddbf1fa35661d53916faae95db97202", null ], + [ "R_SCI_B_I2C_SlaveAddressSet", "group___s_c_i___b___i2_c.html#ga286e5448d62d962610e1c7e104eb3fe9", null ], + [ "R_SCI_B_I2C_CallbackSet", "group___s_c_i___b___i2_c.html#gaa8c8d381f7c639650bf775c3eec125b9", null ], + [ "R_SCI_B_I2C_StatusGet", "group___s_c_i___b___i2_c.html#ga677766a68a258bb7a2e97090cff1c03b", null ] +]; \ No newline at end of file diff --git a/group___s_c_i___b___u_a_r_t.html b/group___s_c_i___b___u_a_r_t.html new file mode 100644 index 0000000..349aef3 --- /dev/null +++ b/group___s_c_i___b___u_a_r_t.html @@ -0,0 +1,1273 @@ + + + + + + + +RZV Flexible Software Package Documentation: UART (r_sci_b_uart) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    UART (r_sci_b_uart)
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_SCI_B_UART_Open (uart_ctrl_t *const p_api_ctrl, uart_cfg_t const *const p_cfg)
     
    fsp_err_t R_SCI_B_UART_Read (uart_ctrl_t *const p_api_ctrl, uint8_t *const p_dest, uint32_t const bytes)
     
    fsp_err_t R_SCI_B_UART_Write (uart_ctrl_t *const p_api_ctrl, uint8_t const *const p_src, uint32_t const bytes)
     
    fsp_err_t R_SCI_B_UART_BaudSet (uart_ctrl_t *const p_api_ctrl, void const *const p_baud_setting)
     
    fsp_err_t R_SCI_B_UART_InfoGet (uart_ctrl_t *const p_api_ctrl, uart_info_t *const p_info)
     
    fsp_err_t R_SCI_B_UART_Close (uart_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_SCI_B_UART_Abort (uart_ctrl_t *const p_api_ctrl, uart_dir_t communication_to_abort)
     
    fsp_err_t R_SCI_B_UART_BaudCalculate (uint32_t baudrate, bool bitrate_modulation, uint32_t baud_rate_error_x_1000, sci_b_baud_setting_t *const p_baud_setting)
     
    fsp_err_t R_SCI_B_UART_CallbackSet (uart_ctrl_t *const p_api_ctrl, void(*p_callback)(uart_callback_args_t *), void const *const p_context, uart_callback_args_t *const p_callback_memory)
     
    fsp_err_t R_SCI_B_UART_ReadStop (uart_ctrl_t *const p_api_ctrl, uint32_t *remaining_bytes)
     
    +

    Detailed Description

    +

    Driver for the SCI peripheral on RZ MPUs. This module implements the UART Interface.

    +

    +Overview

    +

    +Features

    +

    The SCI UART module supports the following features:

    +
      +
    • Full-duplex UART communication
    • +
    • Interrupt-driven data transmission and reception
    • +
    • Invoking the user-callback function with an event code (RX/TX complete, TX data empty, RX char, error, etc)
    • +
    • Baud-rate change at run-time
    • +
    • Bit rate modulation and noise cancellation
    • +
    • CTS/RTS hardware flow control (with an associated pin)
    • +
    • RS-485 Half Duplex driver support with external RS-485 transceiver
    • +
    • Abort in-progress read/write operations
    • +
    • FIFO support on supported channels
    • +
    • Support Half Data Function
    • +
    +

    +Configuration

    +

    Build Time Configurations for r_sci_b_uart

    +The following build time configurations are defined in fsp_cfg/r_sci_b_uart_cfg.h:
    +

    + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    FIFO Support
      +
    • +Enable
    • +
    • +Disable
    • +
    +
    Enable Enable FIFO support for the SCI_UART module.
    DMAC Support
      +
    • +Disable
    • +
    • +Enable
    • +
    +
    Disable Enable DMAC Support for the SCI_UART module.
    Flow Control Support
      +
    • +Enable
    • +
    • +Disable
    • +
    +
    Disable Enable RS232 and RS-485 flow control support using a user provided pin.
    +

    Configurations for Connectivity > UART (r_sci_b_uart)

    +This module can be added to the Stacks tab via New Stack > Connectivity > UART (r_sci_b_uart). Non-secure callable guard functions can be generated for this module by right clicking the module in the RA Configuration tool and checking the "Non-secure Callable" box.
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    General > NameName must be a valid C symbolg_uart0 Module name.
    General > ChannelValue must be a non-negative integer0 Select the SCI channel.
    General > Data Bits
      +
    • +8bits
    • +
    • +7bits
    • +
    • +9bits
    • +
    +
    8bits Select the number of bits per word.
    General > Parity
      +
    • +None
    • +
    • +Odd
    • +
    • +Even
    • +
    +
    None Select the parity mode.
    General > Stop Bits
      +
    • +1bit
    • +
    • +2bits
    • +
    +
    1bit Select the number of stop bits.
    Baud > Baud RateValue must be an integer greater than 0115200 Enter the desired baud rate.
    +
    +If the requested baud rate cannot be achieved, the settings with the smallest percent error are used. The theoretical calculated baud rate and percent error are printed in a comment in the generated sci_b_baud_setting_t structure.
    Baud > Baud Rate Modulation
      +
    • +Disabled
    • +
    • +Enabled
    • +
    +
    Disabled Enabling baud rate modulation reduces the percent error of the actual baud rate with respect to the requested baud rate. It does this by modulating the number of cycles per clock, so some bits are slightly longer than others.
    Baud > Max Error (%)Must be a valid non-negative integer with a maximum configurable value of 1005 Maximum percent error allowed during baud calculation. This is used by the algorithm to determine whether or not to consider using less accurate alternative register settings.
    +
    +NOTE: The baud calculation does not show an error in the tool if this percent error was not achieved. The calculated percent error is recorded in a comment in the generated sci_b_baud_setting_t structure.
    Flow Control > CTS/RTS SelectionMCU Specific OptionsSelect either CTS or RTS function on the CTSn_RTSn pin of SCI channel n or select CTS function on CTSn pin and RTS function on CTSn_RTSn pin of SCI channel n (Available on selected MCUs and channels).
    Flow Control > Software RTS PortRefer to the RZV Configuration tool for available options.Disabled Specify the flow control pin port for the MCU.
    Flow Control > Software RTS Pin
      +
    • +Disabled
    • +
    • +0
    • +
    • +1
    • +
    • +2
    • +
    • +3
    • +
    • +4
    • +
    • +5
    • +
    • +6
    • +
    • +7
    • +
    +
    Disabled Specify the flow control pin for the MCU.
    Extra > RS-485 > DE Pin
      +
    • +Disable
    • +
    • +Enable
    • +
    +
    Disable Enable or disable the DE pin for use in RS-485 half-duplex mode.
    Extra > RS-485 > DE Pin Polarity
      +
    • +Active Low
    • +
    • +Active High
    • +
    +
    Active High Select the polarity of the DE pin.
    Extra > RS-485 > DE Pin Assertion TimeMust be a valid integer greater than 0 and less than or equal to 31.1 Configure the time between assertion of the DE pin and the start of a write transfer. The time is specified in multiples of the SCI base clock period.
    Extra > RS-485 > DE Pin Negation TimeMust be a valid integer greater than 0 and less than or equal to 31.1 Configure the time between the end of a write transfer and the negation of the DE pin. The time is specified in multiples of the SCI base clock period.
    Extra > Clock Source
      +
    • +Internal Clock
    • +
    • +Internal Clock With Output on SCK
    • +
    • +External Clock 8x baud rate
    • +
    • +External Clock 16x baud rate
    • +
    +
    Internal Clock Selection of the clock source to be used in the baud-rate clock generator. When internal clock is used the baud rate can be output on the SCK pin.
    Extra > Start bit detection
      +
    • +Falling Edge
    • +
    • +Low Level
    • +
    +
    Falling Edge Start bit detected as falling edge or low level.
    Extra > Noise Filter
      +
    • +Enable
    • +
    • +Disable
    • +
    +
    Disable Enable the digital noise filter on RXDn pin. The digital noise filter block in SCI consists of two-stage flipflop circuits.
    Extra > Receive FIFO Trigger Level
      +
    • +One
    • +
    • +Max
    • +
    +
    Max Unused if DMAC is used for reception. Set to One to get a callback immediately when each byte is received. Set to Max to get a callback when FIFO is full or after 31 bit times with no data (fewer interrupts).
    Extra > Half Data Function
      +
    • +Disable
    • +
    • +Enable
    • +
    +
    Disable Enable or disable the half data function.
    Interrupts > CallbackName must be a valid C symbolNULL A user callback function can be provided. If this callback function is provided, it will be called from the interrupt service routine (ISR).
    Interrupts > Receive Interrupt PriorityValue must be a non-negative integer12 Set the receive interrupt priority.
    Interrupts > Transmit Data Empty Interrupt PriorityValue must be a non-negative integer12 Set the transmit interrupt priority.
    Interrupts > Transmit End Interrupt PriorityValue must be a non-negative integer12 Set the transmit end interrupt priority.
    Interrupts > Error Interrupt PriorityValue must be a non-negative integer12 Set the error interrupt priority.
    +

    +

    +Clock Configuration

    +

    The clock for this module is derived from the following peripheral clock for each MCU group:
    +

    + + + + +
    MCU GroupPeripheral Clock
    RZV2HP5CLK
    +

    +

    The clock source for the baud-rate clock generator can be selected from the internal clock, the external clock times 8 or the external clock times 16. The external clock is supplied to the SCK pin.

    +

    +Pin Configuration

    +

    This module uses TXD and RXD to communicate to external devices. CTS or RTS can be controlled by the hardware. CTS or RTS or both (CTS and RTS) can be controlled by the hardware When the internal clock is the source for the baud-rate generator the SCK pin can be used to output a clock with the same frequency as the bit rate.In the current version, the TXD and RXD pins have an open-drain output as their default configuration. To enable the proper operation of the TX/RX pins, it is necessary to configure them to use CMOS.

    +

    +Usage Notes

    +
      +
    • When configured for Hardware CTS and Software RTS the configured flow control pin will be used for RTS. The pin will be set high inside of the receive ISR while data is being read. It will be set low when all data is read.
    • +
    • When configured for Hardware CTS and Hardware RTS the CSTn_RTSn pin will be used for RTS function and the CTSn pin will be used for CTS function on channel n.
    • +
    • The driver will follow correct hardware flow control function when CTSn_RTSn pin is connected to CTSn pin when "Hardware CTS and Hardware RTS" flow control is selected. The data will still be transferred when CTSn_RTSn and CTSn are disconnected as the CTSn pin is internally pulled low on the hardware when CTSn pin is configured as a peripheral pin for SCI module. Do not configure CTSn pin if the hardware flow control is not desired.
    • +
    +

    +Limitations

    +
      +
    • Reception is still enabled after uart_api_t::communicationAbort API is called. Any characters received after abort and before the next call to read will arrive via the callback function with event UART_EVENT_RX_CHAR.
    • +
    +

    +DMAC Limitations

    +
      +
    • DMAC support is available for reception, but labeled as [Not recommended]. This is because the UART bytes are received asynchronously. Bytes can be received between calls to R_SCI_B_UART_Read(). The logic required to combine bytes received through R_SCI_B_UART_Read() (UART_EVENT_RX_COMPLETE) and bytes received between calls (UART_EVENT_RX_CHAR) is complex. The UART_EVENT_RX_CHAR event would not be triggered when the DMAC is enabled for reception.
    • +
    +

    +Examples

    +

    SCI UART Example

    +
    uint8_t g_dest[TRANSFER_LENGTH];
    uint8_t g_src[TRANSFER_LENGTH];
    uint8_t g_out_of_band_received[TRANSFER_LENGTH];
    uint32_t g_transfer_complete = 0;
    uint32_t g_receive_complete = 0;
    uint32_t g_out_of_band_index = 0;
    void r_sci_b_uart_basic_example (void)
    {
    /* Initialize p_src to known data */
    for (uint32_t i = 0; i < TRANSFER_LENGTH; i++)
    {
    g_src[i] = (uint8_t) ('A' + (i % 26));
    }
    /* Open the transfer instance with initial configuration. */
    fsp_err_t err = R_SCI_B_UART_Open(&g_uart0_ctrl, &g_uart0_cfg);
    assert(FSP_SUCCESS == err);
    err = R_SCI_B_UART_Read(&g_uart0_ctrl, g_dest, TRANSFER_LENGTH);
    assert(FSP_SUCCESS == err);
    err = R_SCI_B_UART_Write(&g_uart0_ctrl, g_src, TRANSFER_LENGTH);
    assert(FSP_SUCCESS == err);
    while (!g_transfer_complete)
    {
    }
    while (!g_receive_complete)
    {
    }
    }
    void example_callback (uart_callback_args_t * p_args)
    {
    /* Handle the UART event */
    switch (p_args->event)
    {
    /* Received a character */
    {
    /* Only put the next character in the receive buffer if there is space for it */
    if (sizeof(g_out_of_band_received) > g_out_of_band_index)
    {
    /* Write either the next one or two bytes depending on the receive data size */
    if (UART_DATA_BITS_8 >= g_uart0_cfg.data_bits)
    {
    g_out_of_band_received[g_out_of_band_index++] = (uint8_t) p_args->data;
    }
    else
    {
    uint16_t * p_dest = (uint16_t *) &g_out_of_band_received[g_out_of_band_index];
    *p_dest = (uint16_t) p_args->data;
    g_out_of_band_index += 2;
    }
    }
    break;
    }
    /* Receive complete */
    {
    g_receive_complete = 1;
    break;
    }
    /* Transmit complete */
    {
    g_transfer_complete = 1;
    break;
    }
    default:
    {
    }
    }
    }

    SCI UART Baud Set Example

    +
    #define SCI_B_UART_BAUDRATE_19200 (19200)
    #define SCI_B_UART_BAUDRATE_ERROR_PERCENT_5 (5000)
    void r_sci_b_uart_baud_example (void)
    {
    sci_b_baud_setting_t baud_setting;
    uint32_t baud_rate = SCI_B_UART_BAUDRATE_19200;
    bool enable_bitrate_modulation = false;
    uint32_t error_rate_x_1000 = SCI_B_UART_BAUDRATE_ERROR_PERCENT_5;
    fsp_err_t err = R_SCI_B_UART_BaudCalculate(baud_rate, enable_bitrate_modulation, error_rate_x_1000, &baud_setting);
    assert(FSP_SUCCESS == err);
    err = R_SCI_B_UART_BaudSet(&g_uart0_ctrl, (void *) &baud_setting);
    assert(FSP_SUCCESS == err);
    }
    + + + + + + + + + + + +

    +Data Structures

    struct  sci_b_uart_instance_ctrl_t
     
    struct  sci_b_baud_setting_t
     
    struct  sci_b_uart_rs485_setting_t
     
    struct  sci_b_uart_half_data_setting_t
     
    struct  sci_b_uart_extended_cfg_t
     
    + + + + + + + + + + + + + + + + + +

    +Enumerations

    enum  sci_b_clk_src_t
     
    enum  sci_b_uart_flow_control_t
     
    enum  sci_b_uart_rx_fifo_trigger_t
     
    enum  sci_b_uart_start_bit_detect_t
     
    enum  sci_b_uart_noise_cancellation_t
     
    enum  sci_b_uart_rs485_enable_t
     
    enum  sci_b_uart_rs485_de_polarity_t
     
    enum  sci_b_uart_half_data_enable_t
     
    +

    Data Structure Documentation

    + +

    ◆ sci_b_uart_instance_ctrl_t

    + +
    +
    + + + + +
    struct sci_b_uart_instance_ctrl_t
    +
    +

    UART instance control block.

    +
    +
    +
    + +

    ◆ sci_b_baud_setting_t

    + +
    +
    + + + + +
    struct sci_b_baud_setting_t
    +
    +

    Register settings to acheive a desired baud rate and modulation duty.

    +
    +
    +
    + +

    ◆ sci_b_uart_rs485_setting_t

    + +
    +
    + + + + +
    struct sci_b_uart_rs485_setting_t
    +
    +

    Configuration settings for controlling the DE signal for RS-485.

    +
    + + + + + + + + + + + + + +
    Data Fields
    +sci_b_uart_rs485_enable_t +enable +Enable the DE signal.
    +sci_b_uart_rs485_de_polarity_t +polarity +DE signal polarity.
    +uint8_t +assertion_time: 5 +Time in baseclock units after assertion of the DE signal and before the start of the write transfer.
    +uint8_t +negation_time: 5 +Time in baseclock units after the end of a write transfer and before the DE signal is negated.
    + +
    +
    + +

    ◆ sci_b_uart_half_data_setting_t

    + +
    +
    + + + + +
    struct sci_b_uart_half_data_setting_t
    +
    +

    Configuration settings for controlling the Half Data Function

    +
    + + + + +
    Data Fields
    +sci_b_uart_half_data_enable_t +enable +Enable the half data Function.
    + +
    +
    + +

    ◆ sci_b_uart_extended_cfg_t

    + +
    +
    + + + + +
    struct sci_b_uart_extended_cfg_t
    +
    +

    UART on SCI device Configuration

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +sci_b_clk_src_t +clock +The source clock for the baud-rate generator. If internal optionally output baud rate on SCK.
    +sci_b_uart_start_bit_detect_t +rx_edge_start +Start reception on falling edge.
    +sci_b_uart_noise_cancellation_t +noise_cancel +Noise cancellation setting.
    +sci_b_baud_setting_t * +p_baud_setting +Register settings for a desired baud rate.
    +sci_b_uart_rx_fifo_trigger_t +rx_fifo_trigger +Receive FIFO trigger level, unused if channel has no FIFO or if DTC or DMAC is used.
    +bsp_io_port_pin_t +flow_control_pin +UART Driver Enable pin.
    +sci_b_uart_flow_control_t +flow_control +CTS/RTS function of the SSn pin.
    +sci_b_uart_rs485_setting_t +rs485_setting +RS-485 settings.
    +sci_b_uart_half_data_setting_t +half_data_setting +Half Data Function settings.
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ sci_b_clk_src_t

    + +
    +
    + + + + +
    enum sci_b_clk_src_t
    +
    +

    Enumeration for SCI clock source

    + + + + + +
    Enumerator
    SCI_B_UART_CLOCK_INT 

    Use internal clock for baud generation.

    +
    SCI_B_UART_CLOCK_INT_WITH_BAUDRATE_OUTPUT 

    Use internal clock for baud generation and output on SCK.

    +
    SCI_B_UART_CLOCK_EXT8X 

    Use external clock 8x baud rate.

    +
    SCI_B_UART_CLOCK_EXT16X 

    Use external clock 16x baud rate.

    +
    + +
    +
    + +

    ◆ sci_b_uart_flow_control_t

    + +
    +
    + + + + +
    enum sci_b_uart_flow_control_t
    +
    +

    UART flow control mode definition

    + + + + + +
    Enumerator
    SCI_B_UART_FLOW_CONTROL_RTS 

    Use CTSn_RTSn pin for RTS.

    +
    SCI_B_UART_FLOW_CONTROL_CTS 

    Use CTSn_RTSn pin for CTS.

    +
    SCI_B_UART_FLOW_CONTROL_HARDWARE_CTSRTS 

    Use CTSn pin for CTS, CTSn_RTSn pin for RTS.

    +
    SCI_B_UART_FLOW_CONTROL_CTSRTS 

    Use CTSn_RTSn pin for CTS, external pin for RTS.

    +
    + +
    +
    + +

    ◆ sci_b_uart_rx_fifo_trigger_t

    + +
    +
    +

    Receive FIFO trigger configuration.

    + + + +
    Enumerator
    SCI_B_UART_RX_FIFO_TRIGGER_1 

    Callback after each byte is received without buffering.

    +
    SCI_B_UART_RX_FIFO_TRIGGER_MAX 

    Callback when FIFO is full or after 31 bit times with no data (fewer interrupts)

    +
    + +
    +
    + +

    ◆ sci_b_uart_start_bit_detect_t

    + +
    +
    +

    Asynchronous Start Bit Edge Detection configuration.

    + + + +
    Enumerator
    SCI_B_UART_START_BIT_LOW_LEVEL 

    Detect low level on RXDn pin as start bit.

    +
    SCI_B_UART_START_BIT_FALLING_EDGE 

    Detect falling level on RXDn pin as start bit.

    +
    + +
    +
    + +

    ◆ sci_b_uart_noise_cancellation_t

    + +
    +
    +

    Noise cancellation configuration.

    + + + +
    Enumerator
    SCI_B_UART_NOISE_CANCELLATION_DISABLE 

    Disable noise cancellation.

    +
    SCI_B_UART_NOISE_CANCELLATION_ENABLE 

    Enable noise cancellation.

    +
    + +
    +
    + +

    ◆ sci_b_uart_rs485_enable_t

    + +
    +
    + + + + +
    enum sci_b_uart_rs485_enable_t
    +
    +

    RS-485 Enable/Disable.

    + + + +
    Enumerator
    SCI_B_UART_RS485_DISABLE 

    RS-485 disabled.

    +
    SCI_B_UART_RS485_ENABLE 

    RS-485 enabled.

    +
    + +
    +
    + +

    ◆ sci_b_uart_rs485_de_polarity_t

    + +
    +
    +

    The polarity of the RS-485 DE signal.

    + + + +
    Enumerator
    SCI_B_UART_RS485_DE_POLARITY_HIGH 

    The DE signal is high when a write transfer is in progress.

    +
    SCI_B_UART_RS485_DE_POLARITY_LOW 

    The DE signal is low when a write transfer is in progress.

    +
    + +
    +
    + +

    ◆ sci_b_uart_half_data_enable_t

    + +
    +
    +

    Half Data Function Enable/Disable.

    + + + +
    Enumerator
    SCI_B_UART_HALF_DATA_DISABLE 

    Half Data Function disabled.

    +
    SCI_B_UART_HALF_DATA_ENABLE 

    Half Data Function enabled.

    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_SCI_B_UART_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_UART_Open (uart_ctrl_t *const p_api_ctrl,
    uart_cfg_t const *const p_cfg 
    )
    +
    +

    Configures the UART driver based on the input configurations. If reception is enabled at compile time, reception is enabled at the end of this function. Implements uart_api_t::open

    +
    Return values
    + + + + + + +
    FSP_SUCCESSChannel opened successfully.
    FSP_ERR_ASSERTIONPointer to UART control block or configuration structure is NULL.
    FSP_ERR_IP_CHANNEL_NOT_PRESENTThe requested channel does not exist on this MCU.
    FSP_ERR_INVALID_ARGUMENTFlow control is enabled but flow control pin is not defined.
    FSP_ERR_ALREADY_OPENControl block has already been opened or channel is being used by another instance. Call close() then open() to reconfigure.
    +
    +
    +
    Returns
    See Common Error Codes or functions called by this function for other possible return codes. This function calls: +
    + +
    +
    + +

    ◆ R_SCI_B_UART_Read()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_UART_Read (uart_ctrl_t *const p_api_ctrl,
    uint8_t *const p_dest,
    uint32_t const bytes 
    )
    +
    +

    Receives user specified number of bytes into destination buffer pointer. Implements uart_api_t::read

    +
    Return values
    + + + + + + + +
    FSP_SUCCESSData reception successfully ends.
    FSP_ERR_ASSERTIONPointer to UART control block is NULL. Number of transfers outside the max or min boundary when transfer instance used
    FSP_ERR_INVALID_ARGUMENTDestination address or data size is not valid for 9-bit mode.
    FSP_ERR_NOT_OPENThe control block has not been opened
    FSP_ERR_IN_USEA previous read operation is still in progress.
    FSP_ERR_UNSUPPORTEDSCI_B_UART_CFG_RX_ENABLE is set to 0
    +
    +
    +
    Returns
    See Common Error Codes or functions called by this function for other possible return codes. This function calls: +
    +
    Note
    If 9-bit data length is specified at R_SCI_B_UART_Open call, p_dest must be aligned 16-bit boundary.
    + +
    +
    + +

    ◆ R_SCI_B_UART_Write()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_UART_Write (uart_ctrl_t *const p_api_ctrl,
    uint8_t const *const p_src,
    uint32_t const bytes 
    )
    +
    +

    Transmits user specified number of bytes from the source buffer pointer. Implements uart_api_t::write

    +
    Return values
    + + + + + + + +
    FSP_SUCCESSData transmission finished successfully.
    FSP_ERR_ASSERTIONPointer to UART control block is NULL. Number of transfers outside the max or min boundary when transfer instance used
    FSP_ERR_INVALID_ARGUMENTSource address or data size is not valid for 9-bit mode.
    FSP_ERR_NOT_OPENThe control block has not been opened
    FSP_ERR_IN_USEA UART transmission is in progress
    FSP_ERR_UNSUPPORTEDSCI_B_UART_CFG_TX_ENABLE is set to 0
    +
    +
    +
    Returns
    See Common Error Codes or functions called by this function for other possible return codes. This function calls: +
    +
    Note
    If 9-bit data length is specified at R_SCI_B_UART_Open call, p_src must be aligned on a 16-bit boundary.
    + +
    +
    + +

    ◆ R_SCI_B_UART_BaudSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_UART_BaudSet (uart_ctrl_t *const p_api_ctrl,
    void const *const p_baud_setting 
    )
    +
    +

    Updates the baud rate using the clock selected in Open. p_baud_setting is a pointer to a sci_b_baud_setting_t structure. Implements uart_api_t::baudSet

    +
    Warning
    This terminates any in-progress transmission.
    +
    Return values
    + + + + +
    FSP_SUCCESSBaud rate was successfully changed.
    FSP_ERR_ASSERTIONPointer to UART control block is NULL or the UART is not configured to use the internal clock.
    FSP_ERR_NOT_OPENThe control block has not been opened
    +
    +
    + +
    +
    + +

    ◆ R_SCI_B_UART_InfoGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_UART_InfoGet (uart_ctrl_t *const p_api_ctrl,
    uart_info_t *const p_info 
    )
    +
    +

    Provides the driver information, including the maximum number of bytes that can be received or transmitted at a time. Implements uart_api_t::infoGet

    +
    Return values
    + + + + +
    FSP_SUCCESSInformation stored in provided p_info.
    FSP_ERR_ASSERTIONPointer to UART control block is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened
    +
    +
    + +
    +
    + +

    ◆ R_SCI_B_UART_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_SCI_B_UART_Close (uart_ctrl_t *const p_api_ctrl)
    +
    +

    Aborts any in progress transfers. Disables interrupts, receiver, and transmitter. Closes lower level transfer drivers if used. Removes power. Implements uart_api_t::close

    +
    Return values
    + + + + +
    FSP_SUCCESSChannel successfully closed.
    FSP_ERR_ASSERTIONPointer to UART control block is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened
    +
    +
    + +
    +
    + +

    ◆ R_SCI_B_UART_Abort()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_UART_Abort (uart_ctrl_t *const p_api_ctrl,
    uart_dir_t communication_to_abort 
    )
    +
    +

    Provides API to abort ongoing transfer. Transmission is aborted after the current character is transmitted. Reception is still enabled after abort(). Any characters received after abort() and before the transfer is reset in the next call to read(), will arrive via the callback function with event UART_EVENT_RX_CHAR. Implements uart_api_t::communicationAbort

    +
    Return values
    + + + + + +
    FSP_SUCCESSUART transaction aborted successfully.
    FSP_ERR_ASSERTIONPointer to UART control block is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_UNSUPPORTEDThe requested Abort direction is unsupported.
    +
    +
    +
    Returns
    See Common Error Codes or functions called by this function for other possible return codes. This function calls: +
    + +
    +
    + +

    ◆ R_SCI_B_UART_BaudCalculate()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_UART_BaudCalculate (uint32_t baudrate,
    bool bitrate_modulation,
    uint32_t baud_rate_error_x_1000,
    sci_b_baud_setting_t *const p_baud_setting 
    )
    +
    +

    Calculates baud rate register settings. Evaluates and determines the best possible settings set to the baud rate related registers.

    +
    Parameters
    + + + + + +
    [in]baudrateBaud rate [bps]. For example, 19200, 57600, 115200, etc.
    [in]bitrate_modulationEnable bitrate modulation
    [in]baud_rate_error_x_1000Max baud rate error. At most <baud_rate_percent_error> x 1000 required for module to function. Absolute max baud_rate_error is 15000 (15%).
    [out]p_baud_settingBaud setting information stored here if successful
    +
    +
    +
    Return values
    + + + + +
    FSP_SUCCESSBaud rate is set successfully
    FSP_ERR_ASSERTIONNull pointer
    FSP_ERR_INVALID_ARGUMENTBaud rate is '0', error in calculated baud rate is larger than requested max error, or requested max error in baud rate is larger than 15%.
    +
    +
    + +
    +
    + +

    ◆ R_SCI_B_UART_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_UART_CallbackSet (uart_ctrl_t *const p_api_ctrl,
    void(*)(uart_callback_args_t *) p_callback,
    void const *const p_context,
    uart_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback and has option of providing memory for callback structure. Implements uart_api_t::callbackSet

    +
    Return values
    + + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    + +

    ◆ R_SCI_B_UART_ReadStop()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCI_B_UART_ReadStop (uart_ctrl_t *const p_api_ctrl,
    uint32_t * remaining_bytes 
    )
    +
    +

    Provides API to abort ongoing read. Reception is still enabled after abort(). Any characters received after abort() and before the transfer is reset in the next call to read(), will arrive via the callback function with event UART_EVENT_RX_CHAR. Implements uart_api_t::readStop

    +
    Return values
    + + + + + +
    FSP_SUCCESSUART transaction aborted successfully.
    FSP_ERR_ASSERTIONPointer to UART control block is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_UNSUPPORTEDThe requested Abort direction is unsupported.
    +
    +
    +
    Returns
    See Common Error Codes or functions called by this function for other possible return codes. This function calls: +
    + +
    +
    +
    +
    + + + + + diff --git a/group___s_c_i___b___u_a_r_t.js b/group___s_c_i___b___u_a_r_t.js new file mode 100644 index 0000000..147a4e6 --- /dev/null +++ b/group___s_c_i___b___u_a_r_t.js @@ -0,0 +1,71 @@ +var group___s_c_i___b___u_a_r_t = +[ + [ "sci_b_uart_instance_ctrl_t", "group___s_c_i___b___u_a_r_t.html#structsci__b__uart__instance__ctrl__t", null ], + [ "sci_b_baud_setting_t", "group___s_c_i___b___u_a_r_t.html#structsci__b__baud__setting__t", null ], + [ "sci_b_uart_rs485_setting_t", "group___s_c_i___b___u_a_r_t.html#structsci__b__uart__rs485__setting__t", [ + [ "enable", "group___s_c_i___b___u_a_r_t.html#a99de4af724a14ceba347cb317614cc91", null ], + [ "polarity", "group___s_c_i___b___u_a_r_t.html#a10b4002e82c8ca1eee90e84e3cdff02d", null ], + [ "assertion_time", "group___s_c_i___b___u_a_r_t.html#ae2e7a853b139015cb777e556e9add242", null ], + [ "negation_time", "group___s_c_i___b___u_a_r_t.html#adeab6a6a24f0ccbf45a24fd0185f1e3b", null ] + ] ], + [ "sci_b_uart_half_data_setting_t", "group___s_c_i___b___u_a_r_t.html#structsci__b__uart__half__data__setting__t", [ + [ "enable", "group___s_c_i___b___u_a_r_t.html#a5a3eac41864f40971ab15613ab7741df", null ] + ] ], + [ "sci_b_uart_extended_cfg_t", "group___s_c_i___b___u_a_r_t.html#structsci__b__uart__extended__cfg__t", [ + [ "clock", "group___s_c_i___b___u_a_r_t.html#a498f325e7dd1865b3e14c1af392ef4c8", null ], + [ "rx_edge_start", "group___s_c_i___b___u_a_r_t.html#ae12a126a40d35e484cb1c89474494b15", null ], + [ "noise_cancel", "group___s_c_i___b___u_a_r_t.html#add11aada0e4e3d121e4e86597ec0ed58", null ], + [ "p_baud_setting", "group___s_c_i___b___u_a_r_t.html#aa1e49fb13b37283c189e265be1b67fef", null ], + [ "rx_fifo_trigger", "group___s_c_i___b___u_a_r_t.html#a989ca4836b86b478612a9c33d5aacb03", null ], + [ "flow_control_pin", "group___s_c_i___b___u_a_r_t.html#a1a570791ada82c7304bd70fd0431014f", null ], + [ "flow_control", "group___s_c_i___b___u_a_r_t.html#a4b5314fe6a1f23955d5f340ab5447236", null ], + [ "rs485_setting", "group___s_c_i___b___u_a_r_t.html#a04aa2b43cd4a2879826033bc80c06bff", null ], + [ "half_data_setting", "group___s_c_i___b___u_a_r_t.html#a02639fcb8ec9d81d9930ce6e65caef8e", null ] + ] ], + [ "sci_b_clk_src_t", "group___s_c_i___b___u_a_r_t.html#ga6c7272b892e958ee32afb345eb1d1bd0", [ + [ "SCI_B_UART_CLOCK_INT", "group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0ae7e751b6add47042b86579de38c7a594", null ], + [ "SCI_B_UART_CLOCK_INT_WITH_BAUDRATE_OUTPUT", "group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0a84f9bc793954950b01385a933f8b588f", null ], + [ "SCI_B_UART_CLOCK_EXT8X", "group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0acf92ad58648eb51823b24f83fe3831eb", null ], + [ "SCI_B_UART_CLOCK_EXT16X", "group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0ae6341abde349fd5354d9fccfd3b82448", null ] + ] ], + [ "sci_b_uart_flow_control_t", "group___s_c_i___b___u_a_r_t.html#gac7f2f9b2d11f95e1f0c627b7523bfa89", [ + [ "SCI_B_UART_FLOW_CONTROL_RTS", "group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89a8578df672d3b0f890b958db33d0e25b2", null ], + [ "SCI_B_UART_FLOW_CONTROL_CTS", "group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89a6336e452a610c15b03b15585894b3bed", null ], + [ "SCI_B_UART_FLOW_CONTROL_HARDWARE_CTSRTS", "group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89ab135f56a360b5266eb0988bb59650276", null ], + [ "SCI_B_UART_FLOW_CONTROL_CTSRTS", "group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89aabd2461e141009a78626768f0ac07583", null ] + ] ], + [ "sci_b_uart_rx_fifo_trigger_t", "group___s_c_i___b___u_a_r_t.html#ga43307f95dde50ba9e4cf9b25f0d31d84", [ + [ "SCI_B_UART_RX_FIFO_TRIGGER_1", "group___s_c_i___b___u_a_r_t.html#gga43307f95dde50ba9e4cf9b25f0d31d84aa8f1e72bd48f194a0cd82112024850e1", null ], + [ "SCI_B_UART_RX_FIFO_TRIGGER_MAX", "group___s_c_i___b___u_a_r_t.html#gga43307f95dde50ba9e4cf9b25f0d31d84a73839ba4bf30c0e127ba11f0ba4130a2", null ] + ] ], + [ "sci_b_uart_start_bit_detect_t", "group___s_c_i___b___u_a_r_t.html#ga12439cb11f88f10d53b36e6fbf966ce6", [ + [ "SCI_B_UART_START_BIT_LOW_LEVEL", "group___s_c_i___b___u_a_r_t.html#gga12439cb11f88f10d53b36e6fbf966ce6a966b25af49006a6c4ddc1979382f8189", null ], + [ "SCI_B_UART_START_BIT_FALLING_EDGE", "group___s_c_i___b___u_a_r_t.html#gga12439cb11f88f10d53b36e6fbf966ce6aa0a9f4e8ad3d8ed3a85359792e082f3a", null ] + ] ], + [ "sci_b_uart_noise_cancellation_t", "group___s_c_i___b___u_a_r_t.html#ga0fc68d0039faa0c546bc0a3e19f64934", [ + [ "SCI_B_UART_NOISE_CANCELLATION_DISABLE", "group___s_c_i___b___u_a_r_t.html#gga0fc68d0039faa0c546bc0a3e19f64934a21e61dfcb71ea33310c7f1aeada055a2", null ], + [ "SCI_B_UART_NOISE_CANCELLATION_ENABLE", "group___s_c_i___b___u_a_r_t.html#gga0fc68d0039faa0c546bc0a3e19f64934a970ad9148c96d1db288edc7a370c20ad", null ] + ] ], + [ "sci_b_uart_rs485_enable_t", "group___s_c_i___b___u_a_r_t.html#gacab2c97394068299908eb68925eb9fc2", [ + [ "SCI_B_UART_RS485_DISABLE", "group___s_c_i___b___u_a_r_t.html#ggacab2c97394068299908eb68925eb9fc2aecd04009e4cd1a48fabc0df33c320e91", null ], + [ "SCI_B_UART_RS485_ENABLE", "group___s_c_i___b___u_a_r_t.html#ggacab2c97394068299908eb68925eb9fc2add22e1606ec4ab3accaa55c69d8f657a", null ] + ] ], + [ "sci_b_uart_rs485_de_polarity_t", "group___s_c_i___b___u_a_r_t.html#ga0563689caceebd791581b050e4961351", [ + [ "SCI_B_UART_RS485_DE_POLARITY_HIGH", "group___s_c_i___b___u_a_r_t.html#gga0563689caceebd791581b050e4961351a86f62195b4aa840c0d10ac01299fe4cd", null ], + [ "SCI_B_UART_RS485_DE_POLARITY_LOW", "group___s_c_i___b___u_a_r_t.html#gga0563689caceebd791581b050e4961351a18e7bfd946135c6768a8918b7d7dd954", null ] + ] ], + [ "sci_b_uart_half_data_enable_t", "group___s_c_i___b___u_a_r_t.html#ga3bcc863f7888e3aaee224f8854988414", [ + [ "SCI_B_UART_HALF_DATA_DISABLE", "group___s_c_i___b___u_a_r_t.html#gga3bcc863f7888e3aaee224f8854988414a637f7cea2b6601327efb3c85365a4dbd", null ], + [ "SCI_B_UART_HALF_DATA_ENABLE", "group___s_c_i___b___u_a_r_t.html#gga3bcc863f7888e3aaee224f8854988414a4e3532db5f60d5a8779e0a5b6f1813f4", null ] + ] ], + [ "R_SCI_B_UART_Open", "group___s_c_i___b___u_a_r_t.html#ga60643fd4c7b00970ad9d295302498f13", null ], + [ "R_SCI_B_UART_Read", "group___s_c_i___b___u_a_r_t.html#gaa0e296b71701a2d0045add3c75d2fdd7", null ], + [ "R_SCI_B_UART_Write", "group___s_c_i___b___u_a_r_t.html#gad8456e403e88d52e1e858b62e19a2d0b", null ], + [ "R_SCI_B_UART_BaudSet", "group___s_c_i___b___u_a_r_t.html#gad9ae4780db497c17ae0c1677573f0320", null ], + [ "R_SCI_B_UART_InfoGet", "group___s_c_i___b___u_a_r_t.html#gafe20c9d0e52f1186c60033a5a1910119", null ], + [ "R_SCI_B_UART_Close", "group___s_c_i___b___u_a_r_t.html#ga91e1364f8fd7b00073ccdb72a1bd34e9", null ], + [ "R_SCI_B_UART_Abort", "group___s_c_i___b___u_a_r_t.html#ga4c327408aaf082057bae8c89127e396c", null ], + [ "R_SCI_B_UART_BaudCalculate", "group___s_c_i___b___u_a_r_t.html#gaafe9521b01cb274f8c8e45a4f62b020f", null ], + [ "R_SCI_B_UART_CallbackSet", "group___s_c_i___b___u_a_r_t.html#gabc9e9188d0150ff75f69f3217312691f", null ], + [ "R_SCI_B_UART_ReadStop", "group___s_c_i___b___u_a_r_t.html#ga60ee90741cf1240c127d75acf9df50ed", null ] +]; \ No newline at end of file diff --git a/group___s_c_i_f___u_a_r_t.html b/group___s_c_i_f___u_a_r_t.html index 9142ee1..23ece20 100644 --- a/group___s_c_i_f___u_a_r_t.html +++ b/group___s_c_i_f___u_a_r_t.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Serial Communications Interface (SCIF) UART (r_scif_uart) +RZV Flexible Software Package Documentation: Serial Communications Interface (SCIF) UART (r_scif_uart) @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    -
    Serial Communications Interface (SCIF) UART (r_scif_uart)
    +
    Serial Communications Interface (SCIF) UART (r_scif_uart)
    @@ -117,6 +185,8 @@ + +
     
    fsp_err_t R_SCIF_UART_BaudCalculate (uart_ctrl_t *const p_api_ctrl, uint32_t baudrate, bool bitrate_modulation, uint32_t baud_rate_error_x_1000, scif_baud_setting_t *const p_baud_setting)
     
    fsp_err_t R_SCIF_UART_ReadStop (uart_ctrl_t *const p_api_ctrl, uint32_t *remaining_bytes)
     
    fsp_err_t R_SCIF_UART_CallbackSet (uart_ctrl_t *const p_api_ctrl, void(*p_callback)(uart_callback_args_t *), void const *const p_context, uart_callback_args_t *const p_callback_memory)
     
    @@ -155,23 +225,25 @@

    Default (BSP) If selected code for parameter checking is included in the build. +DMAC SupportMCU Specific OptionsEnable DMAC support for the SCIF_UART module. + RS485 Flow (Driver Enable) Control Support
    • -Enable
    • +Enabled
    • -Disable
    • +Disabled
    -Disable Enable RS485 flow (driver enable) control support using a user provided pin. +Disabled Enable RS485 flow (driver enable) control support using a user provided pin. -

    Configurations for Driver > Connectivity > UART Driver on r_scif_uart

    -This module can be added to the Stacks tab via New Stack > Driver > Connectivity > UART Driver on r_scif_uart.
    +

    Configurations for Connectivity > UART Driver on r_scif_uart

    +This module can be added to the Stacks tab via New Stack > Connectivity > UART Driver on r_scif_uart.

    - + - - - + - + - + + + + + + - + - + @@ -304,10 +336,12 @@

    Configurations for Driver > Connectivity > UART Driver on r_scif_uart<

    Clock Configuration

    -

    The clock for this module is derived from the following peripheral clock for each MPU group:
    +

    The clock for this module is derived from the following peripheral clock for each MCU group:

    ConfigurationOptionsDefaultDescription
    General > NameName must be a valid C symbolg_uart0 Module name.
    General > ChannelChannel number does not exist0 Select the SCIF channel.
    General > ChannelChannel number must be a positive integer0 Select the SCIF channel.
    General > Data Bits
    • @@ -223,73 +295,33 @@

      Configurations for Driver > Connectivity > UART Driver on r_scif_uart<

    RS232 Select the UART communication mode as either RS232 or RS485.
    Flow Control > RS485 Driver Enable PortRefer to the Configuration tool for available options.Disabled Specify the flow control pin port for the MPU.
    Flow Control > RS485 Driver Enable Pin
      -
    • -Disabled
    • -
    • -00
    • -
    • -01
    • -
    • -02
    • +
    Flow Control > RS485 Driver Enable Pin Polarity
    • -03
    • +Active Low
    • -04
    • +Active High
    -
    Disabled Specify the flow control pin for the MPU.
    Active High Enabling baud rate modulation reduces the percent error of the actual baud rate with respect to the requested baud rate. It does this by modulating the number of cycles per clock, so some bits are slightly longer than others.
    Flow Control > RS232C Automatic Flow Control
      -
    • -Enabled
    • -
    • -Disabled
    • -
    -
    Disabled Enable RS232C automatic flow control.
    Flow Control > RS485 Driver Enable PortMCU Specific OptionsSpecify the flow control pin port for the MPU.
    Extra > Clock Source
      -
    • -Internal Clock
    • -
    • -Internal Clock With Output on SCK
    • -
    • -External Clock 8x baud rate
    • -
    • -External Clock 16x baud rate
    • -
    -
    Internal Clock Selection of the clock source to be used in the baud-rate clock generator. When internal clock is used the baud rate can be output on the SCK pin.
    Flow Control > RS485 Driver Enable PinMCU Specific OptionsSpecify the flow control pin for the MPU.
    Flow Control > RS232C Automatic Flow ControlMCU Specific OptionsEnable RS232C automatic flow control.
    Extra > Clock SourceMCU Specific OptionsSelection of the clock source to be used in the baud-rate clock generator. When internal clock is used the baud rate can be output on the SCK pin.
    Extra > Noise Filter
    • -Enable
    • +Enabled
    • -Disable
    • +Disabled
    -
    Disable Enable the digital noise filter on RXDn pin. The digital noise filter block in SCIF consists of two-stage flipflop circuits.
    Disabled Enable the digital noise filter on RXDn pin. The digital noise filter block in SCIF consists of two-stage flipflop circuits.
    Extra > Receive FIFO Trigger LevelRefer to the Configuration tool for available options.Max Set to One to get a callback immediately when each byte is received. Set to Max to get a callback when FIFO is full or after 15 bit times with no data (fewer interrupts).
    Extra > Receive FIFO Trigger LevelRefer to the RZV Configuration tool for available options.Max Set to One to get a callback immediately when each byte is received. Set to Max to get a callback when FIFO is full or after 15 bit times with no data (fewer interrupts).
    Extra > Receive FIFO RTS Trigger Level
      -
    • -1
    • -
    • -4
    • -
    • -6
    • -
    • -8
    • -
    • -10
    • -
    • -12
    • -
    • -14
    • -
    • -15
    • -
    -
    14 Trigger level for negative the RTS
    Extra > Receive FIFO RTS Trigger LevelMCU Specific OptionsTrigger level for negative the RTS
    Interrupts > CallbackName must be a valid C symbolNULL A user callback function can be provided. If this callback function is provided, it will be called from the interrupt service routine (ISR).
    - + + +
    MPU GroupPeripheral Clock
    MCU GroupPeripheral Clock
    RZV2HP1CLK
    RZV2LP0CLK
    @@ -334,6 +368,8 @@

    SCIF UART Example

      struct  scif_baud_setting_t   +struct  sci_uart_rs485_setting_t +  struct  scif_uart_extended_cfg_t   @@ -347,6 +383,10 @@

    SCIF UART Example

    + + + + @@ -383,9 +423,9 @@

    +struct scif_baud_setting_t +semr_baudrate_bits_b - - - + + +
     
    enum  scif_uart_noise_cancellation_t
     
    enum  sci_uart_rs485_enable_t
     
    enum  sci_uart_rs485_de_polarity_t
     
    enum  scif_uart_receive_trigger_t
     
    enum  scif_uart_rts_trigger_t
    Data Fields
    -struct scif_baud_setting_t -__unnamed__
    @@ -402,6 +442,42 @@

    +

    ◆ sci_uart_rs485_setting_t

    + +
    +
    + + + + +
    struct sci_uart_rs485_setting_t
    +
    +

    Configuration settings for controlling the DE signal for RS-485.

    +
    + + + + + + + + + + +
    Data Fields
    +sci_uart_rs485_enable_t +enable +Enable the DE signal.
    +sci_uart_rs485_de_polarity_t +polarity +DE signal polarity.
    +bsp_io_port_pin_t +de_control_pin +UART Driver Enable pin.
    +
    @@ -467,17 +543,17 @@

    UART communication mode selection.

    -bsp_io_port_pin_t -driver_enable_pin -UART Driver Enable pin.
    scif_uart_flow_control_t flow_control CTS/RTS function.
    +sci_uart_rs485_setting_t +rs485_setting +RS-485 settings.
    @@ -571,6 +647,48 @@

    +

    ◆ sci_uart_rs485_enable_t

    + +
    +
    + + + + +
    enum sci_uart_rs485_enable_t
    +
    +

    RS-485 Enable/Disable.

    + + + +
    Enumerator
    SCI_UART_RS485_DISABLE 

    RS-485 disabled.

    +
    SCI_UART_RS485_ENABLE 

    RS-485 enabled.

    +
    + +
    +
    + +

    ◆ sci_uart_rs485_de_polarity_t

    + +
    +
    +

    The polarity of the RS-485 DE signal.

    + + + +
    Enumerator
    SCI_UART_RS485_DE_POLARITY_HIGH 

    The DE signal is high when a write transfer is in progress.

    +
    SCI_UART_RS485_DE_POLARITY_LOW 

    The DE signal is low when a write transfer is in progress.

    +
    +
    @@ -657,6 +775,8 @@

    SCIF_UART_RTS_TRIGGER_15 

    RTS trigger level = 15.

    +SCIF_UART_RTS_TRIGGER_DISABLE 

    Disable RTS trigger.

    +

    @@ -693,7 +813,8 @@

    FSP_SUCCESSChannel opened successfully. FSP_ERR_ASSERTIONPointer to UART control block or configuration structure is NULL. FSP_ERR_IP_CHANNEL_NOT_PRESENTThe requested channel does not exist on this MPU. - FSP_ERR_ALREADY_OPENControl block has already been opened or channel is being used by another instance. Call close() then open() to reconfigure. + FSP_ERR_ALREADY_OPENControl block has already been opened or channel is being used by another instance. Call close() then open() to reconfigure. + FSP_ERR_INVALID_ARGUMENTSetting for RS485 DE Control pin is invalid @@ -997,6 +1118,45 @@

    +

    ◆ R_SCIF_UART_ReadStop()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SCIF_UART_ReadStop (uart_ctrl_t *const p_api_ctrl,
    uint32_t * remaining_bytes 
    )
    +
    +

    Provides API to abort ongoing read. Reception is still enabled after abort(). Any characters received after abort() and before the transfer is reset in the next call to read(), will arrive via the callback function with event UART_EVENT_RX_CHAR. Implements uart_api_t::readStop

    +
    Return values
    + + + + + +
    FSP_SUCCESSUART transaction aborted successfully.
    FSP_ERR_ASSERTIONPointer to UART control block is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_UNSUPPORTEDThe requested Abort direction is unsupported.
    +
    +
    +
    Returns
    See Common Error Codes or functions called by this function for other possible return codes.
    +
    @@ -1055,7 +1215,7 @@

      - +

    diff --git a/group___s_c_i_f___u_a_r_t.js b/group___s_c_i_f___u_a_r_t.js index a4de306..6a3f1c4 100644 --- a/group___s_c_i_f___u_a_r_t.js +++ b/group___s_c_i_f___u_a_r_t.js @@ -5,6 +5,11 @@ var group___s_c_i_f___u_a_r_t = [ "brr", "group___s_c_i_f___u_a_r_t.html#acc601128ecd5e04fcc306b249a2bb7bf", null ], [ "mddr", "group___s_c_i_f___u_a_r_t.html#acbf8ff1fb27039b0240beceeff67d048", null ] ] ], + [ "sci_uart_rs485_setting_t", "group___s_c_i_f___u_a_r_t.html#structsci__uart__rs485__setting__t", [ + [ "enable", "group___s_c_i_f___u_a_r_t.html#a7ecf6bb47dcdafcd7e569695d0be405b", null ], + [ "polarity", "group___s_c_i_f___u_a_r_t.html#aafcbd1f2c02e2f81d81371bb9e6b895d", null ], + [ "de_control_pin", "group___s_c_i_f___u_a_r_t.html#a2e764fad5f11c412720a531a8e1b6815", null ] + ] ], [ "scif_uart_extended_cfg_t", "group___s_c_i_f___u_a_r_t.html#structscif__uart__extended__cfg__t", [ [ "bri_ipl", "group___s_c_i_f___u_a_r_t.html#a3fa97958f621b33bee457ec6bc136bed", null ], [ "bri_irq", "group___s_c_i_f___u_a_r_t.html#a172e0b3047c07502b68ff88471e787ee", null ], @@ -14,8 +19,8 @@ var group___s_c_i_f___u_a_r_t = [ "rx_fifo_trigger", "group___s_c_i_f___u_a_r_t.html#a1067241f2267052cd8240d136c0cba9c", null ], [ "rts_fifo_trigger", "group___s_c_i_f___u_a_r_t.html#a04920b030d567052f3b4efb1f85753e9", null ], [ "uart_mode", "group___s_c_i_f___u_a_r_t.html#a1c9c1ba263a956a8224a1156d6bc03a1", null ], - [ "driver_enable_pin", "group___s_c_i_f___u_a_r_t.html#aed0a20c432a538f3c20a83c50e76be3b", null ], - [ "flow_control", "group___s_c_i_f___u_a_r_t.html#aa761132ebac67c5cbbc3d6a505b97efe", null ] + [ "flow_control", "group___s_c_i_f___u_a_r_t.html#aa761132ebac67c5cbbc3d6a505b97efe", null ], + [ "rs485_setting", "group___s_c_i_f___u_a_r_t.html#a17bbc99632889e12269013e35f1dcfba", null ] ] ], [ "scif_clk_src_t", "group___s_c_i_f___u_a_r_t.html#gaa31fbf8041a381d6da9c454be58ad613", [ [ "SCIF_UART_CLOCK_INT", "group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613a51c6cc623adda130f372f24e12128e4b", null ], @@ -36,6 +41,14 @@ var group___s_c_i_f___u_a_r_t = [ "SCIF_UART_NOISE_CANCELLATION_DISABLE", "group___s_c_i_f___u_a_r_t.html#gga94601e39cbf40b77e5e4236385b58704ad882f64a494b61ff64e551ad3011a5b7", null ], [ "SCIF_UART_NOISE_CANCELLATION_ENABLE", "group___s_c_i_f___u_a_r_t.html#gga94601e39cbf40b77e5e4236385b58704ad3f821ad6438fb954b659c75d156d662", null ] ] ], + [ "sci_uart_rs485_enable_t", "group___s_c_i_f___u_a_r_t.html#ga9522502f434bcaa2bbaf9cb1321ce542", [ + [ "SCI_UART_RS485_DISABLE", "group___s_c_i_f___u_a_r_t.html#gga9522502f434bcaa2bbaf9cb1321ce542aa05bec8fad1420e777b184f55300b484", null ], + [ "SCI_UART_RS485_ENABLE", "group___s_c_i_f___u_a_r_t.html#gga9522502f434bcaa2bbaf9cb1321ce542acd3ee665f5225c5bb017bb64d33cf127", null ] + ] ], + [ "sci_uart_rs485_de_polarity_t", "group___s_c_i_f___u_a_r_t.html#ga0bd2440ef30f2feca9a2d129989bffce", [ + [ "SCI_UART_RS485_DE_POLARITY_HIGH", "group___s_c_i_f___u_a_r_t.html#gga0bd2440ef30f2feca9a2d129989bffcea7cfd9e1ff7eca0657388f7cf9ce708fc", null ], + [ "SCI_UART_RS485_DE_POLARITY_LOW", "group___s_c_i_f___u_a_r_t.html#gga0bd2440ef30f2feca9a2d129989bffceac1a061d1cb22d6b336e23185af20e089", null ] + ] ], [ "scif_uart_receive_trigger_t", "group___s_c_i_f___u_a_r_t.html#ga5d3f2e170b79de59f46ae864fc993e95", [ [ "SCIF_UART_RECEIVE_TRIGGER_ONE", "group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ad8eb49bdf41e9867d8a6d0986b9343a6", null ], [ "SCIF_UART_RECEIVE_TRIGGER_QUARTER", "group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ab85d375110c92593e11c02c28acf75a0", null ], @@ -65,7 +78,8 @@ var group___s_c_i_f___u_a_r_t = [ "SCIF_UART_RTS_TRIGGER_10", "group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a94a36bf05c3529a4eb80aa4386fd1bf3", null ], [ "SCIF_UART_RTS_TRIGGER_12", "group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ad0db387e28a0ed3d63add574f599e026", null ], [ "SCIF_UART_RTS_TRIGGER_14", "group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89afd80607e5a941b03255635196a53a004", null ], - [ "SCIF_UART_RTS_TRIGGER_15", "group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a72f3e438f603dd31866ee7002856934a", null ] + [ "SCIF_UART_RTS_TRIGGER_15", "group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a72f3e438f603dd31866ee7002856934a", null ], + [ "SCIF_UART_RTS_TRIGGER_DISABLE", "group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a6568db3143c7183716313ed5b5825713", null ] ] ], [ "R_SCIF_UART_Open", "group___s_c_i_f___u_a_r_t.html#ga2a791c5e359c3fe2d85339fc3f915bc3", null ], [ "R_SCIF_UART_Read", "group___s_c_i_f___u_a_r_t.html#ga07a261385112a6909e86c441411e2e53", null ], @@ -75,5 +89,6 @@ var group___s_c_i_f___u_a_r_t = [ "R_SCIF_UART_Close", "group___s_c_i_f___u_a_r_t.html#ga0d573f7ffdec42630a06605b64c00482", null ], [ "R_SCIF_UART_Abort", "group___s_c_i_f___u_a_r_t.html#ga540d3842dd9db9c39e36c230583e29b1", null ], [ "R_SCIF_UART_BaudCalculate", "group___s_c_i_f___u_a_r_t.html#gad29ba19ecddc66108d794c93f9c1165f", null ], + [ "R_SCIF_UART_ReadStop", "group___s_c_i_f___u_a_r_t.html#gaef7c79f4e4ed3370d27f6cc73d744270", null ], [ "R_SCIF_UART_CallbackSet", "group___s_c_i_f___u_a_r_t.html#ga6880b7cd58a44c99fe197b1b0a14e737", null ] ]; \ No newline at end of file diff --git a/group___s_p_i___a_p_i.html b/group___s_p_i___a_p_i.html index ac45376..95a299e 100644 --- a/group___s_p_i___a_p_i.html +++ b/group___s_p_i___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: SPI Interface +RZV Flexible Software Package Documentation: SPI Interface @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + + + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Data Structures | @@ -104,7 +172,8 @@

    Summary

    Provides a common interface for communication using the SPI Protocol.

    Implemented by:

    - @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Data Structures | @@ -105,8 +173,10 @@

    The general timer interface provides standard timer functionality including periodic mode, one-shot mode, PWM output, and free-running timer mode. After each timer cycle (overflow or underflow), an interrupt can be triggered.

    If an instance supports output compare mode, it is provided in the extension configuration timer_on_<instance>_cfg_t defined in r_<instance>.h.

    Implemented by:

    @@ -329,6 +398,7 @@

    Initialize a channel for SPI communication mode.

    Implemented as
    Parameters
    @@ -354,6 +424,7 @@

    Receive data from a SPI device.

    Implemented as
    Parameters
    @@ -381,6 +452,7 @@

    Transmit data to a SPI device.

    Implemented as
    Parameters
    @@ -408,6 +480,7 @@

    Simultaneously transmit data to a SPI device while receiving data from a SPI device (full duplex).

    Implemented as
    Parameters
    @@ -436,11 +509,12 @@

    Specify callback function and optional context pointer and working memory pointer.

    Implemented as
    Parameters
    - + @@ -463,6 +537,7 @@

    Remove power to the SPI channel designated by the handle and disable the associated interrupts.

    Implemented as
    Parameters
    @@ -526,8 +601,8 @@

    SPI control block. Allocate an instance specific control block to pass into the SPI API calls.

    Implemented as
    @@ -547,11 +622,63 @@

    Data bit width

    [in]p_api_ctrlPointer to the SPI control block.
    [in]p_ctrlPointer to the SPI control block.
    [in]p_callbackCallback function
    [in]p_contextPointer to send to callback function
    [in]p_working_memoryPointer to volatile memory where callback structure can be allocated. Callback arguments allocated here are only valid during the callback.
    - + + + + + + + + + + + + + + + + + + + + + + + + + + - -
    Enumerator
    SPI_BIT_WIDTH_8_BITS 

    Data bit width is 8 bits byte.

    +
    Enumerator
    SPI_BIT_WIDTH_4_BITS 

    Data bit width is 4 bits (byte)

    +
    SPI_BIT_WIDTH_5_BITS 

    Data bit width is 5 bits (byte)

    +
    SPI_BIT_WIDTH_6_BITS 

    Data bit width is 6 bits (byte)

    +
    SPI_BIT_WIDTH_7_BITS 

    Data bit width is 7 bits (byte)

    +
    SPI_BIT_WIDTH_8_BITS 

    Data bit width is 8 bits (byte)

    +
    SPI_BIT_WIDTH_9_BITS 

    Data bit width is 9 bits (word)

    +
    SPI_BIT_WIDTH_10_BITS 

    Data bit width is 10 bits (word)

    +
    SPI_BIT_WIDTH_11_BITS 

    Data bit width is 11 bits (word)

    +
    SPI_BIT_WIDTH_12_BITS 

    Data bit width is 12 bits (word)

    +
    SPI_BIT_WIDTH_13_BITS 

    Data bit width is 13 bits (word)

    +
    SPI_BIT_WIDTH_14_BITS 

    Data bit width is 14 bits (word)

    +
    SPI_BIT_WIDTH_15_BITS 

    Data bit width is 15 bits (word)

    +
    SPI_BIT_WIDTH_16_BITS 

    Data bit width is 16 bits (word)

    +
    SPI_BIT_WIDTH_17_BITS 

    Data bit width is 17 bits (word)

    +
    SPI_BIT_WIDTH_18_BITS 

    Data bit width is 18 bits (word)

    +
    SPI_BIT_WIDTH_19_BITS 

    Data bit width is 19 bits (word)

    +
    SPI_BIT_WIDTH_20_BITS 

    Data bit width is 20 bits (longword)

    +
    SPI_BIT_WIDTH_21_BITS 

    Data bit width is 21 bits (word)

    +
    SPI_BIT_WIDTH_22_BITS 

    Data bit width is 22 bits (word)

    +
    SPI_BIT_WIDTH_23_BITS 

    Data bit width is 23 bits (longword)

    +
    SPI_BIT_WIDTH_24_BITS 

    Data bit width is 24 bits (longword)

    +
    SPI_BIT_WIDTH_25_BITS 

    Data bit width is 25 bits (longword)

    +
    SPI_BIT_WIDTH_26_BITS 

    Data bit width is 26 bits (word)

    +
    SPI_BIT_WIDTH_27_BITS 

    Data bit width is 27 bits (word)

    +
    SPI_BIT_WIDTH_28_BITS 

    Data bit width is 28 bits (word)

    +
    SPI_BIT_WIDTH_29_BITS 

    Data bit width is 29 bits (word)

    +
    SPI_BIT_WIDTH_30_BITS 

    Data bit width is 30 bits (longword)

    SPI_BIT_WIDTH_16_BITS 

    Data bit width is 16 bits word.

    +
    SPI_BIT_WIDTH_31_BITS 

    Data bit width is 31 bits (longword)

    SPI_BIT_WIDTH_32_BITS 

    Data bit width is 32 bits long word.

    +
    SPI_BIT_WIDTH_32_BITS 

    Data bit width is 32 bits (longword)

    @@ -701,7 +828,7 @@

      - +
    diff --git a/group___s_p_i___a_p_i.js b/group___s_p_i___a_p_i.js index 507486d..f1e7ce6 100644 --- a/group___s_p_i___a_p_i.js +++ b/group___s_p_i___a_p_i.js @@ -42,8 +42,34 @@ var group___s_p_i___a_p_i = ] ], [ "spi_ctrl_t", "group___s_p_i___a_p_i.html#gacb036be7f805dbb8d2092486d1aeb242", null ], [ "spi_bit_width_t", "group___s_p_i___a_p_i.html#ga6ba4a8eef274a5b227fc2ab6ee61f8fd", [ + [ "SPI_BIT_WIDTH_4_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda6a007a4d6a949aeb0ce52aa4f31d3b88", null ], + [ "SPI_BIT_WIDTH_5_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda3cca9398fbfe913a5c52cd7359864be6", null ], + [ "SPI_BIT_WIDTH_6_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdae5193130db6bdfdf9bb780abf606beb1", null ], + [ "SPI_BIT_WIDTH_7_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdae54951e7d79149bda93b99f18ea2e7a0", null ], [ "SPI_BIT_WIDTH_8_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdad6fa8af050db98465c43fd25fb8e8090", null ], + [ "SPI_BIT_WIDTH_9_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf0519b353e4cfb4440088212f4aca8cc", null ], + [ "SPI_BIT_WIDTH_10_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf1aefd864f4f60e49990d4fad936ce21", null ], + [ "SPI_BIT_WIDTH_11_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda88f58430f3fecf9a39ec42943e0bb733", null ], + [ "SPI_BIT_WIDTH_12_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda1a4f404e28d648b608c5711b5552090b", null ], + [ "SPI_BIT_WIDTH_13_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda75ce94ca33921b755ff60ae3cf781d2a", null ], + [ "SPI_BIT_WIDTH_14_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda8de43c8612ae97eaf447c95718e7f461", null ], + [ "SPI_BIT_WIDTH_15_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda05c6f46ea4bb0182d526a6bf451d68e1", null ], [ "SPI_BIT_WIDTH_16_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda62f8d41fec9f532ac41463037534e582", null ], + [ "SPI_BIT_WIDTH_17_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaaf752ab8e386cd474ee33d83df10ad88", null ], + [ "SPI_BIT_WIDTH_18_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda0f15c66b4564dce0f4811d754186ad12", null ], + [ "SPI_BIT_WIDTH_19_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf8e4023bcac026b1d1930114105da401", null ], + [ "SPI_BIT_WIDTH_20_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaa0e0e171fd2f36e3fa41cfb960842396", null ], + [ "SPI_BIT_WIDTH_21_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdad0a9bce1bfca6895716ee32d198f949d", null ], + [ "SPI_BIT_WIDTH_22_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda2b1e938b3bb827bcacb1a6d74f4c60f7", null ], + [ "SPI_BIT_WIDTH_23_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda303f3f218214fd2a69e4fc2511974024", null ], + [ "SPI_BIT_WIDTH_24_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda5696f5183bed267a4d0023bdc19bb357", null ], + [ "SPI_BIT_WIDTH_25_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda6d44c4678bc27af2e39a8a22e78e6cf0", null ], + [ "SPI_BIT_WIDTH_26_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda56b072a3333dd1637f9b1488f7fb208b", null ], + [ "SPI_BIT_WIDTH_27_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda8df31a66c303df4aba56807aae14c4c9", null ], + [ "SPI_BIT_WIDTH_28_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda11d6d5a759ae229607060f7cf6d8102d", null ], + [ "SPI_BIT_WIDTH_29_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda09bb056981764315ea1d3f979f453129", null ], + [ "SPI_BIT_WIDTH_30_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda0b55867d8d019e07982c011e04f1f4ac", null ], + [ "SPI_BIT_WIDTH_31_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdabe79ca891b6f1b7b60317f5425a6b9cf", null ], [ "SPI_BIT_WIDTH_32_BITS", "group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf69633d9ed10c0d07cea1ded1b562aed", null ] ] ], [ "spi_mode_t", "group___s_p_i___a_p_i.html#gac4b206a51636d91c5cffcbcee458c3cb", [ diff --git a/group___s_p_i___b.html b/group___s_p_i___b.html new file mode 100644 index 0000000..d027c4c --- /dev/null +++ b/group___s_p_i___b.html @@ -0,0 +1,1299 @@ + + + + + + + +RZV Flexible Software Package Documentation: SPI (r_spi_b) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_SPI_B_Open (spi_ctrl_t *p_api_ctrl, spi_cfg_t const *const p_cfg)
     
    fsp_err_t R_SPI_B_Read (spi_ctrl_t *const p_api_ctrl, void *p_dest, uint32_t const length, spi_bit_width_t const bit_width)
     
    fsp_err_t R_SPI_B_Write (spi_ctrl_t *const p_api_ctrl, void const *p_src, uint32_t const length, spi_bit_width_t const bit_width)
     
    fsp_err_t R_SPI_B_WriteRead (spi_ctrl_t *const p_api_ctrl, void const *p_src, void *p_dest, uint32_t const length, spi_bit_width_t const bit_width)
     
    fsp_err_t R_SPI_B_Close (spi_ctrl_t *const p_api_ctrl)
     
    fsp_err_t R_SPI_B_CalculateBitrate (uint32_t bitrate, spi_b_clock_source_t clock_source, rspck_div_setting_t *spck_div)
     
    fsp_err_t R_SPI_B_CallbackSet (spi_ctrl_t *const p_api_ctrl, void(*p_callback)(spi_callback_args_t *), void const *const p_context, spi_callback_args_t *const p_callback_memory)
     
    +

    Detailed Description

    +

    Driver for the SPI peripheral on RZ MPUs. This module implements the SPI Interface.

    +

    +Overview

    +

    +Features

    +
      +
    • Standard SPI Modes
        +
      • Master or Slave Mode
      • +
      • 3-Wire (clock synchronous) or 4-Wire (SPI) Mode
      • +
      • Clock Polarity (CPOL)
          +
        • CPOL=0 SCLK is low when idle
        • +
        • CPOL=1 SCLK is high when idle
        • +
        +
      • +
      • Clock Phase (CPHA)
          +
        • CPHA=0 Data Sampled on the even edge of SCLK (Master Mode Only)
        • +
        • CPHA=1 Data Sampled on the odd edge of SCLK
        • +
        +
      • +
      • MSB/LSB first
      • +
      • 8- to 32-Bit data frames
          +
        • Hardware endian swap in 16-Bit and 32-Bit mode
        • +
        +
      • +
      • SSL level keep (burst transfer) supported
      • +
      +
    • +
    • Configurable bitrate
    • +
    • Supports Full Duplex or Transmit Only Mode
    • +
    • FIFO Support
    • +
    • DMAC Support
    • +
    • Callback Events
        +
      • Transfer Complete
      • +
      • RX Overflow Error (The SPI shift register is copied to the data register before previous data was read)
      • +
      • TX Underrun Error (No data to load into shift register for transmitting)
      • +
      • Parity Error (When parity is enabled and a parity error is detected)
      • +
      +
    • +
    +

    +Configuration

    +

    Build Time Configurations for r_spi_b

    +The following build time configurations are defined in fsp_cfg/r_spi_b_cfg.h:
    +

    + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    Enable Support for using DMAC
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Enabled If enabled, DMAC instances will be included in the build for both transmission and reception.
    Enable Transmitting from RXI Interrupt
      +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Disabled If enabled, all operations will be handled from the RX (receive) interrupt. This setting only provides a performance boost when DMAC is not used. In addition, Transmit Only mode is not supported when this configuration is enabled.
    +

    Configurations for Connectivity > SPI (r_spi_b)

    +This module can be added to the Stacks tab via New Stack > Connectivity > SPI (r_spi_b). Non-secure callable guard functions can be generated for this module by right clicking the module in the RA Configuration tool and checking the "Non-secure Callable" box.
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    NameName must be a valid C symbolg_spi0 Module name.
    ChannelValue must be a non-negative integer0 Select the SPI channel.
    Receive Interrupt PriorityValue must be an integer between 0 and 25512 Select the interrupt priority for all SPI interrupts.
    Transmit Buffer Empty Interrupt PriorityValue must be an integer between 0 and 25512 Select the interrupt priority for all SPI interrupts.
    Transfer Complete Interrupt PriorityValue must be an integer between 0 and 25512 Select the interrupt priority for all SPI interrupts.
    Error Interrupt PriorityValue must be an integer between 0 and 25512 Select the interrupt priority for all SPI interrupts.
    Operating Mode
      +
    • +Master
    • +
    • +Slave
    • +
    +
    Master Select the SPI operating mode.
    Clock Phase
      +
    • +Data sampling on odd edge, data variation on even edge
    • +
    • +Data sampling on even edge, data variation on odd edge
    • +
    +
    Data sampling on odd edge, data variation on even edge Select the clock edge to sample data.
    Clock Polarity
      +
    • +Low when idle
    • +
    • +High when idle
    • +
    +
    Low when idle Select clock level when idle.
    Mode Fault Error
      +
    • +Enable
    • +
    • +Disable
    • +
    +
    Disable Detect master/slave mode conflicts.
    Bit Order
      +
    • +MSB First
    • +
    • +LSB First
    • +
    +
    MSB First Select the data bit order.
    CallbackName must be a valid C symbolspi_callback A user callback function can be provided. If this callback function is provided, it will be called from the interrupt service routine (ISR).
    SPI Mode
      +
    • +SPI Operation
    • +
    • +Clock Synchronous Operation
    • +
    +
    Clock Synchronous Operation Select the clock sync mode.
    Full or Transmit Only Mode
      +
    • +Full Duplex
    • +
    • +Transmit Only
    • +
    +
    Full Duplex Select Full Duplex or Transmit Only Mode.
    Slave Select Polarity
      +
    • +Active Low
    • +
    • +Active High
    • +
    +
    Active Low Select the slave select active level.
    Select SSL(Slave Select)
      +
    • +SSL0
    • +
    • +SSL1
    • +
    • +SSL2
    • +
    • +SSL3
    • +
    +
    SSL0 Select which slave to use.
    MOSI Idle State
      +
    • +MOSI Idle Value Fixing Disable
    • +
    • +MOSI Idle Value Fixing Low
    • +
    • +MOSI Idle Value Fixing High
    • +
    +
    MOSI Idle Value Fixing Disable Select the MOSI idle level if MOSI idle is enabled.
    Parity Mode
      +
    • +Disabled
    • +
    • +Odd
    • +
    • +Even
    • +
    +
    Disabled Select the parity mode if parity is enabled.
    Byte Swapping
      +
    • +Disable
    • +
    • +Enable
    • +
    +
    Disable Select the byte swap mode for 16/32-Bit Data Frames.
    Clock Source
      +
    • +PCLKSPI
    • +
    • +PCLK
    • +
    +
    PCLK Select the clock source for communication.
    BitrateValue must be an integer greater than 016000000 Enter the desired bitrate, change the bitrate to a value supported by MCU. If the requested bitrate cannot be achieved, the settings with the largest possible value that is less than or equal to the requested bitrate is used. The theoretical bitrate is printed in a comment in the generated spi_extended_cfg_t structure.
    Clock Delay
      +
    • +1 Clock
    • +
    • +2 Clocks
    • +
    • +3 Clocks
    • +
    • +4 Clocks
    • +
    • +5 Clocks
    • +
    • +6 Clocks
    • +
    • +7 Clocks
    • +
    • +8 Clocks
    • +
    +
    1 Clock Configure the number of SPI clock cycles before each data frame.
    SSL Negation Delay
      +
    • +1 Clock
    • +
    • +2 Clocks
    • +
    • +3 Clocks
    • +
    • +4 Clocks
    • +
    • +5 Clocks
    • +
    • +6 Clocks
    • +
    • +7 Clocks
    • +
    • +8 Clocks
    • +
    +
    1 Clock Configure the number of SPI clock cycles after each data frame.
    Next Access Delay
      +
    • +1 Clock
    • +
    • +2 Clocks
    • +
    • +3 Clocks
    • +
    • +4 Clocks
    • +
    • +5 Clocks
    • +
    • +6 Clocks
    • +
    • +7 Clocks
    • +
    • +8 Clocks
    • +
    +
    1 Clock Configure the number of SPI clock cycles between each data frame.
    SSL Level Keep
      +
    • +Disable
    • +
    • +Enable
    • +
    +
    Disable Select whether to negate the SSL level for each frame transfer.
    +

    +

    +Clock Configuration

    +

    The SPI peripheral uses the P0CLK for communication and internal operations. Both can be configured via the Clocks tab of the RZ Configuration editor.

    +

    +Pin Configuration

    +

    This module uses MOSI, MISO, RSPCK, and SSL pins to communicate with on board devices.

    +
    Note
    At high bitrates it may be necessary to configure the pins with IOPORT_CFG_DRIVE_HIGH to maintain signal integrity.
    +

    +Usage Notes

    +

    Performance

    +

    At high bitrates, interrupts may not be able to service transfers fast enough. In master mode this means there will be a delay between each data frame. In slave mode this could result in TX Underrun and RX Overflow errors.

    +

    In order to improve performance at high bitrates, it is recommended that the instance be configured to service transfers using the DMAC.

    +

    Another way to improve performance is to transfer the data in 16/32 bit wide data frames when possible. A typical use-case where this is possible is when reading/writing to a block device.

    +

    Transmit From RXI Interrupt

    +

    After every data frame the SPI peripheral generates a transmit buffer empty interrupt and a receive buffer full interrupt. It is possible to configure the driver to handle transmit buffer empty interrupts in the receive buffer full ISR. This only improves performance when the DMAC is not being used.

    +
    Note
    Configuring the module to use RX DMAC instance without also providing a TX DMAC instance results in an invalid configuration when RXI transmit is enabled.
    +
    +Transmit Only mode is not supported when Transmit from RXI is enabled.
    +

    Clock Auto-Stopping

    +

    In master mode, if the Receive Buffer Full Interrupts are not handled fast enough, instead of generating a RX Overflow error, the last clock cycle will be stretched until the receive buffer is read.

    +

    Parity Mode

    +

    When parity mode is configured, the LSB of each data frame is used as a parity bit. When odd parity is selected, the LSB is set such that there are an odd number of ones in the data frame. When even parity is selected, the LSB is set such that there are an even number of ones in the data frame.

    +

    +Limitations

    +

    Developers should be aware of the following limitations when using the SPI:

    +
      +
    • In master mode, the driver will only configure 4-Wire mode if the device supports SSL Level Keeping (SSLKP bit in SPCMD0) and will return FSP_ERR_UNSUPPORTED if configured for 4-Wire mode on devices without SSL Level Keeping. Without SSL Level Keeping, the SSL pin is toggled after every data frame. In most cases this is not desirable behavior so it is recommended that the SSL pin be driven in software if SSL Level Keeping is not present on the device.
    • +
    • The module does not support communicating with multiple slaves using different SSL pins. In order to achieve this, the module must either be closed and re-opened to change the SSL pin or drive SSL in software. It is recommended that SSL be driven in software when controlling multiple slave devices.
    • +
    • The SPI peripheral has a minimum 3 SPI CLK delay between each data frame.
    • +
    • The behavior for Byte Swap operation is not guaranteed for data frames other than 8-bit, 16-bit and 32bit.
    • +
    +

    +Examples

    +

    Basic Example

    +

    This is a basic example of minimal use of the SPI in an application.

    +
    static volatile bool g_transfer_complete = false;
    void spi_basic_example (void)
    {
    uint8_t tx_buffer[TRANSFER_SIZE];
    uint8_t rx_buffer[TRANSFER_SIZE];
    fsp_err_t err = FSP_SUCCESS;
    /* Initialize the SPI module. */
    err = R_SPI_B_Open(&g_spi_ctrl, &g_spi_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Start a write/read transfer */
    err = R_SPI_B_WriteRead(&g_spi_ctrl, tx_buffer, rx_buffer, TRANSFER_SIZE, SPI_BIT_WIDTH_8_BITS);
    assert(FSP_SUCCESS == err);
    /* Wait for SPI_EVENT_TRANSFER_COMPLETE callback event. */
    while (false == g_transfer_complete)
    {
    ;
    }
    }
    static void r_spi_callback (spi_callback_args_t * p_args)
    {
    {
    g_transfer_complete = true;
    }
    }

    Driving Software Slave Select Line

    +

    This is an example of communicating with multiple slave devices by asserting SSL in software.

    +
    void spi_software_ssl_example (void)
    {
    uint8_t tx_buffer[TRANSFER_SIZE];
    uint8_t rx_buffer[TRANSFER_SIZE];
    /* Configure Slave Select Line 1 */
    R_BSP_PinWrite(SLAVE_SELECT_LINE_1, BSP_IO_LEVEL_HIGH);
    /* Configure Slave Select Line 2 */
    R_BSP_PinWrite(SLAVE_SELECT_LINE_2, BSP_IO_LEVEL_HIGH);
    fsp_err_t err = FSP_SUCCESS;
    /* Initialize the SPI module. */
    err = R_SPI_B_Open(&g_spi_ctrl, &g_spi_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Assert Slave Select Line 1 */
    R_BSP_PinWrite(SLAVE_SELECT_LINE_1, BSP_IO_LEVEL_LOW);
    /* Start a write/read transfer */
    g_transfer_complete = false;
    err = R_SPI_B_WriteRead(&g_spi_ctrl, tx_buffer, rx_buffer, TRANSFER_SIZE, SPI_BIT_WIDTH_8_BITS);
    assert(FSP_SUCCESS == err);
    /* Wait for SPI_EVENT_TRANSFER_COMPLETE callback event. */
    while (false == g_transfer_complete)
    {
    ;
    }
    /* De-assert Slave Select Line 1 */
    R_BSP_PinWrite(SLAVE_SELECT_LINE_1, BSP_IO_LEVEL_HIGH);
    /* Wait for minimum time required between transfers. */
    /* Assert Slave Select Line 2 */
    R_BSP_PinWrite(SLAVE_SELECT_LINE_2, BSP_IO_LEVEL_LOW);
    /* Start a write/read transfer */
    g_transfer_complete = false;
    err = R_SPI_B_WriteRead(&g_spi_ctrl, tx_buffer, rx_buffer, TRANSFER_SIZE, SPI_BIT_WIDTH_8_BITS);
    assert(FSP_SUCCESS == err);
    /* Wait for SPI_EVENT_TRANSFER_COMPLETE callback event. */
    while (false == g_transfer_complete)
    {
    ;
    }
    /* De-assert Slave Select Line 2 */
    R_BSP_PinWrite(SLAVE_SELECT_LINE_2, BSP_IO_LEVEL_HIGH);
    }

    Configuring the SPI Clock Divider Registers

    +

    This example demonstrates how to set the SPI clock divisors at runtime.

    +
    void spi_bitrate_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    g_spi_cfg.p_extend = &g_spi_extended_cfg;
    /* Configure SPI Clock divider to achieve largest bitrate less than or equal to the desired bitrate. */
    err = R_SPI_B_CalculateBitrate(BITRATE, SPI_B_CLOCK_SOURCE_SCISPICLK, &(g_spi_extended_cfg.spck_div));
    assert(FSP_SUCCESS == err);
    /* Initialize the SPI module. */
    err = R_SPI_B_Open(&g_spi_ctrl, &g_spi_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    }
    + + + + + + + +

    +Data Structures

    struct  rspck_div_setting_t
     
    struct  spi_b_extended_cfg_t
     
    struct  spi_b_instance_ctrl_t
     
    + + + + + + + + + + + + + + + + + + + + + +

    +Enumerations

    enum  spi_b_ssl_mode_t
     
    enum  spi_b_communication_t
     
    enum  spi_b_ssl_polarity_t
     
    enum  spi_b_ssl_select_t
     
    enum  spi_b_mosi_idle_value_fixing_t
     
    enum  spi_b_parity_t
     
    enum  spi_b_byte_swap_t
     
    enum  spi_b_delay_count_t
     
    enum  spi_b_clock_source_t
     
    enum  spi_b_ssl_level_keep_t
     
    +

    Data Structure Documentation

    + +

    ◆ rspck_div_setting_t

    + +
    +
    + + + + +
    struct rspck_div_setting_t
    +
    +

    SPI Clock Divider settings.

    +
    + + + + + + + +
    Data Fields
    +uint8_t +spbr +SPBR register setting.
    +uint8_t +brdv: 2 +BRDV setting in SPCMD0.
    + +
    +
    + +

    ◆ spi_b_extended_cfg_t

    + +
    +
    + + + + +
    struct spi_b_extended_cfg_t
    +
    +

    Extended SPI interface configuration

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +spi_b_ssl_mode_t +spi_clksyn +Select SPI or Clock Synchronous mode operation.
    +spi_b_communication_t +spi_comm +Select full-duplex or transmit-only communication.
    +spi_b_ssl_polarity_t +ssl_polarity +Select SSLn signal polarity.
    +spi_b_ssl_select_t +ssl_select +Select which slave to use: 0-SSL0, 1-SSL1, 2-SSL2, 3-SSL3.
    +spi_b_mosi_idle_value_fixing_t +mosi_idle +Select MOSI idle fixed value and selection.
    +spi_b_parity_t +parity +Select parity and enable/disable parity.
    +spi_b_byte_swap_t +byte_swap +Select byte swap mode.
    +spi_b_clock_source_t +clock_source +Communication clock source (TCLK).
    +rspck_div_setting_t +spck_div +Register values for configuring the SPI Clock Divider.
    +spi_b_delay_count_t +spck_delay +SPI Clock Delay Register Setting.
    +spi_b_delay_count_t +ssl_negation_delay +SPI Slave Select Negation Delay Register Setting.
    +spi_b_delay_count_t +next_access_delay +SPI Next-Access Delay Register Setting.
    +spi_b_ssl_level_keep_t +ssl_level_keep +Select SSL signal level keep mode.
    + +
    +
    + +

    ◆ spi_b_instance_ctrl_t

    + +
    +
    + + + + +
    struct spi_b_instance_ctrl_t
    +
    +

    Channel control block. DO NOT INITIALIZE. Initialization occurs when spi_api_t::open is called.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    +uint32_t open
     Indicates whether the open() API has been successfully called.
     
    +spi_cfg_t const * p_cfg
     Pointer to instance configuration.
     
    +R_SPI_B0_Type * p_regs
     Base register for this channel.
     
    +void const * p_tx_data
     Buffer to transmit.
     
    +void * p_rx_data
     Buffer to receive.
     
    +uint32_t tx_count
     Number of Data Frames to transfer (8-bit, 16-bit, 32-bit)
     
    +uint32_t rx_count
     Number of Data Frames to transfer (8-bit, 16-bit, 32-bit)
     
    +uint32_t count
     Number of Data Frames to transfer (8-bit, 16-bit, 32-bit)
     
    +spi_bit_width_t bit_width
     Bits per Data frame (8-bit, 16-bit, 32-bit)
     
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ spi_b_ssl_mode_t

    + +
    +
    + + + + +
    enum spi_b_ssl_mode_t
    +
    +

    3-Wire or 4-Wire mode.

    + + + +
    Enumerator
    SPI_B_SSL_MODE_SPI 

    SPI operation (4-wire method)

    +
    SPI_B_SSL_MODE_CLK_SYN 

    Clock Synchronous operation (3-wire method)

    +
    + +
    +
    + +

    ◆ spi_b_communication_t

    + +
    +
    + + + + +
    enum spi_b_communication_t
    +
    +

    Transmit Only (Half Duplex), or Full Duplex.

    + + + +
    Enumerator
    SPI_B_COMMUNICATION_FULL_DUPLEX 

    Full-Duplex synchronous serial communication.

    +
    SPI_B_COMMUNICATION_TRANSMIT_ONLY 

    Transit only serial communication.

    +
    + +
    +
    + +

    ◆ spi_b_ssl_polarity_t

    + +
    +
    + + + + +
    enum spi_b_ssl_polarity_t
    +
    +

    Slave Select Polarity.

    + + + +
    Enumerator
    SPI_B_SSLP_LOW 

    SSLP signal polarity active low.

    +
    SPI_B_SSLP_HIGH 

    SSLP signal polarity active high.

    +
    + +
    +
    + +

    ◆ spi_b_ssl_select_t

    + +
    +
    + + + + +
    enum spi_b_ssl_select_t
    +
    +

    The Slave Select Line

    + + + + + +
    Enumerator
    SPI_B_SSL_SELECT_SSL0 

    Select SSL0.

    +
    SPI_B_SSL_SELECT_SSL1 

    Select SSL1.

    +
    SPI_B_SSL_SELECT_SSL2 

    Select SSL2.

    +
    SPI_B_SSL_SELECT_SSL3 

    Select SSL3.

    +
    + +
    +
    + +

    ◆ spi_b_mosi_idle_value_fixing_t

    + +
    +
    +

    MOSI Idle Behavior.

    + + + + +
    Enumerator
    SPI_B_MOSI_IDLE_VALUE_FIXING_DISABLE 

    MOSI output value=value set in MOIFV bit.

    +
    SPI_B_MOSI_IDLE_VALUE_FIXING_LOW 

    MOSIn level low during MOSI idling.

    +
    SPI_B_MOSI_IDLE_VALUE_FIXING_HIGH 

    MOSIn level high during MOSI idling.

    +
    + +
    +
    + +

    ◆ spi_b_parity_t

    + +
    +
    + + + + +
    enum spi_b_parity_t
    +
    +

    Parity Mode

    + + + + +
    Enumerator
    SPI_B_PARITY_MODE_DISABLE 

    Disable parity.

    +
    SPI_B_PARITY_MODE_ODD 

    Select even parity.

    +
    SPI_B_PARITY_MODE_EVEN 

    Select odd parity.

    +
    + +
    +
    + +

    ◆ spi_b_byte_swap_t

    + +
    +
    + + + + +
    enum spi_b_byte_swap_t
    +
    +

    Byte Swapping Enable/Disable.

    + + + +
    Enumerator
    SPI_B_BYTE_SWAP_DISABLE 

    Disable Byte swapping for 16/32-Bit transfers.

    +
    SPI_B_BYTE_SWAP_ENABLE 

    Enable Byte swapping for 16/32-Bit transfers.

    +
    + +
    +
    + +

    ◆ spi_b_delay_count_t

    + +
    +
    + + + + +
    enum spi_b_delay_count_t
    +
    +

    Delay count for SPI delay settings.

    + + + + + + + + + +
    Enumerator
    SPI_B_DELAY_COUNT_1 

    Set RSPCK delay count to 1 RSPCK.

    +
    SPI_B_DELAY_COUNT_2 

    Set RSPCK delay count to 2 RSPCK.

    +
    SPI_B_DELAY_COUNT_3 

    Set RSPCK delay count to 3 RSPCK.

    +
    SPI_B_DELAY_COUNT_4 

    Set RSPCK delay count to 4 RSPCK.

    +
    SPI_B_DELAY_COUNT_5 

    Set RSPCK delay count to 5 RSPCK.

    +
    SPI_B_DELAY_COUNT_6 

    Set RSPCK delay count to 6 RSPCK.

    +
    SPI_B_DELAY_COUNT_7 

    Set RSPCK delay count to 7 RSPCK.

    +
    SPI_B_DELAY_COUNT_8 

    Set RSPCK delay count to 8 RSPCK.

    +
    + +
    +
    + +

    ◆ spi_b_clock_source_t

    + +
    +
    + + + + +
    enum spi_b_clock_source_t
    +
    +

    SPI communication clock source.

    + +
    +
    + +

    ◆ spi_b_ssl_level_keep_t

    + +
    +
    + + + + +
    enum spi_b_ssl_level_keep_t
    +
    +

    SSL Signal Level Keeping Enable/Disable.

    + + + +
    Enumerator
    SPI_B_SSL_LEVEL_KEEP_DISABLE 

    Disable SSL Level Keep Mode.

    +
    SPI_B_SSL_LEVEL_KEEP_ENABLE 

    Enable SSL Level Keep Mode.

    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_SPI_B_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SPI_B_Open (spi_ctrl_tp_api_ctrl,
    spi_cfg_t const *const p_cfg 
    )
    +
    +

    This functions initializes a channel for SPI communication mode. Implements spi_api_t::open.

    +

    This function performs the following tasks:

      +
    • Performs parameter checking and processes error conditions.
    • +
    • Configures the peripheral registers according to the configuration.
    • +
    • Initialize the control structure for use in other SPI Interface functions.
    • +
    +
    Return values
    + + + + + + +
    FSP_SUCCESSChannel initialized successfully.
    FSP_ERR_ALREADY_OPENInstance was already initialized.
    FSP_ERR_ASSERTIONAn invalid argument was given in the configuration structure.
    FSP_ERR_UNSUPPORTEDA requested setting is not possible on this device with the current build configuration.
    FSP_ERR_IP_CHANNEL_NOT_PRESENTThe channel number is invalid.
    +
    +
    +
    Returns
    See Common Error Codes or functions called by this function for other possible return codes. This function calls: transfer_api_t::open
    +
    Note
    This function is reentrant.
    + +
    +
    + +

    ◆ R_SPI_B_Read()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SPI_B_Read (spi_ctrl_t *const p_api_ctrl,
    void * p_dest,
    uint32_t const length,
    spi_bit_width_t const bit_width 
    )
    +
    +

    This function receives data from a SPI device. Implements spi_api_t::read.

    +

    The function performs the following tasks:

      +
    • Performs parameter checking and processes error conditions.
    • +
    • Sets up the instance to complete a SPI read operation.
    • +
    +
    Return values
    + + + + + +
    FSP_SUCCESSRead operation successfully completed.
    FSP_ERR_ASSERTIONNULL pointer to control or destination parameters or transfer length is zero.
    FSP_ERR_NOT_OPENThe channel has not been opened. Open channel first.
    FSP_ERR_IN_USEA transfer is already in progress.
    +
    +
    + +
    +
    + +

    ◆ R_SPI_B_Write()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SPI_B_Write (spi_ctrl_t *const p_api_ctrl,
    void const * p_src,
    uint32_t const length,
    spi_bit_width_t const bit_width 
    )
    +
    +

    This function transmits data to a SPI device using the TX Only Communications Operation Mode. Implements spi_api_t::write.

    +

    The function performs the following tasks:

      +
    • Performs parameter checking and processes error conditions.
    • +
    • Sets up the instance to complete a SPI write operation.
    • +
    +
    Return values
    + + + + + +
    FSP_SUCCESSWrite operation successfully completed.
    FSP_ERR_ASSERTIONNULL pointer to control or source parameters or transfer length is zero.
    FSP_ERR_NOT_OPENThe channel has not been opened. Open the channel first.
    FSP_ERR_IN_USEA transfer is already in progress.
    +
    +
    + +
    +
    + +

    ◆ R_SPI_B_WriteRead()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SPI_B_WriteRead (spi_ctrl_t *const p_api_ctrl,
    void const * p_src,
    void * p_dest,
    uint32_t const length,
    spi_bit_width_t const bit_width 
    )
    +
    +

    This function simultaneously transmits and receive data. Implements spi_api_t::writeRead.

    +

    The function performs the following tasks:

      +
    • Performs parameter checking and processes error conditions.
    • +
    • Sets up the instance to complete a SPI writeRead operation.
    • +
    +
    Return values
    + + + + + +
    FSP_SUCCESSWrite operation successfully completed.
    FSP_ERR_ASSERTIONNULL pointer to control, source or destination parameters or transfer length is zero.
    FSP_ERR_NOT_OPENThe channel has not been opened. Open the channel first.
    FSP_ERR_IN_USEA transfer is already in progress.
    +
    +
    + +
    +
    + +

    ◆ R_SPI_B_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_SPI_B_Close (spi_ctrl_t *const p_api_ctrl)
    +
    +

    This function manages the closing of a channel by the following task. Implements spi_api_t::close.

    +

    Disables SPI operations by disabling the SPI bus.

      +
    • Disables the SPI peripheral.
    • +
    • Disables all the associated interrupts.
    • +
    • Update control structure so it will not work with SPI Interface functions.
    • +
    +
    Return values
    + + + + +
    FSP_SUCCESSChannel successfully closed.
    FSP_ERR_ASSERTIONA required pointer argument is NULL.
    FSP_ERR_NOT_OPENThe channel has not been opened. Open the channel first.
    +
    +
    + +
    +
    + +

    ◆ R_SPI_B_CalculateBitrate()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SPI_B_CalculateBitrate (uint32_t bitrate,
    spi_b_clock_source_t clock_source,
    rspck_div_setting_tspck_div 
    )
    +
    +

    Calculates the SPBR register value and the BRDV bits for a desired bitrate. If the desired bitrate is faster than the maximum bitrate, than the bitrate is set to the maximum bitrate. If the desired bitrate is slower than the minimum bitrate, than an error is returned.

    +
    Parameters
    + + + + +
    [in]bitrateDesired bitrate
    [in]clock_sourceSPI communication clock source to be used
    [out]spck_divMemory location to store bitrate register settings.
    +
    +
    +
    Return values
    + + + +
    FSP_SUCCESSValid spbr and brdv values were calculated
    FSP_ERR_UNSUPPORTEDBitrate is not achievable
    +
    +
    + +
    +
    + +

    ◆ R_SPI_B_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_SPI_B_CallbackSet (spi_ctrl_t *const p_api_ctrl,
    void(*)(spi_callback_args_t *) p_callback,
    void const *const p_context,
    spi_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback and has option of providing memory for callback structure. Implements spi_api_t::callbackSet

    +
    Return values
    + + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___s_p_i___b.js b/group___s_p_i___b.js new file mode 100644 index 0000000..c1e1d59 --- /dev/null +++ b/group___s_p_i___b.js @@ -0,0 +1,87 @@ +var group___s_p_i___b = +[ + [ "rspck_div_setting_t", "group___s_p_i___b.html#structrspck__div__setting__t", [ + [ "spbr", "group___s_p_i___b.html#a67df9d0b11ff15890c138596faaa6c03", null ], + [ "brdv", "group___s_p_i___b.html#a6bc3a03629a2f20e5b468f6ca7f54697", null ] + ] ], + [ "spi_b_extended_cfg_t", "group___s_p_i___b.html#structspi__b__extended__cfg__t", [ + [ "spi_clksyn", "group___s_p_i___b.html#a399719eab6e46125db42de61d7fffe9d", null ], + [ "spi_comm", "group___s_p_i___b.html#a7e337db8e24ef889f9a1ccfec9d5a9e9", null ], + [ "ssl_polarity", "group___s_p_i___b.html#a5bc3997ed557ba51b18f3e7118601381", null ], + [ "ssl_select", "group___s_p_i___b.html#ab0743a388a256b112510805f0d0b3ac7", null ], + [ "mosi_idle", "group___s_p_i___b.html#ac63d012fd878d53e0f390837e604ca2f", null ], + [ "parity", "group___s_p_i___b.html#af73d771092b53a6fe3556e39064ba38e", null ], + [ "byte_swap", "group___s_p_i___b.html#af621a3a18d5499079a962d880cded254", null ], + [ "clock_source", "group___s_p_i___b.html#af6ddf830c6529dbf66c75a231242faa1", null ], + [ "spck_div", "group___s_p_i___b.html#a5e759f1a2e0e50733ffe773b84e009b0", null ], + [ "spck_delay", "group___s_p_i___b.html#aa76a96bdfe3843e023c076e906cdedbb", null ], + [ "ssl_negation_delay", "group___s_p_i___b.html#ad0e864b3954e9abc6b864bb20c56b146", null ], + [ "next_access_delay", "group___s_p_i___b.html#a91917729fb266000e5c493d9a4021c43", null ], + [ "ssl_level_keep", "group___s_p_i___b.html#a8ca3851c76d9a5c02dd07e24309660ff", null ] + ] ], + [ "spi_b_instance_ctrl_t", "group___s_p_i___b.html#structspi__b__instance__ctrl__t", [ + [ "open", "group___s_p_i___b.html#a63826f2e79dbe1834c3d99084558f71f", null ], + [ "p_cfg", "group___s_p_i___b.html#a4d55d0c12d644e533249a943486a9b17", null ], + [ "p_regs", "group___s_p_i___b.html#a73e08678d0e9902c81c88b6f6ca19c02", null ], + [ "p_tx_data", "group___s_p_i___b.html#a7f95eeca760420ef6d71e453f43e7154", null ], + [ "p_rx_data", "group___s_p_i___b.html#a0688f8d078659fb2901ffe44d64d3045", null ], + [ "tx_count", "group___s_p_i___b.html#a01bfd62b304e044b1cecefb0310c7823", null ], + [ "rx_count", "group___s_p_i___b.html#a11eb6d582a56acdabafd9c6d50ce18d6", null ], + [ "count", "group___s_p_i___b.html#a992f7cfe75bd98e8fe2c9120d0c7b26b", null ], + [ "bit_width", "group___s_p_i___b.html#a2ce9db0edb9ad0167232b35d5bc714dc", null ] + ] ], + [ "spi_b_ssl_mode_t", "group___s_p_i___b.html#gaacc78eca6792fd5aeb2aef6a458d8fb7", [ + [ "SPI_B_SSL_MODE_SPI", "group___s_p_i___b.html#ggaacc78eca6792fd5aeb2aef6a458d8fb7a0cad981405018e399b84bce877574709", null ], + [ "SPI_B_SSL_MODE_CLK_SYN", "group___s_p_i___b.html#ggaacc78eca6792fd5aeb2aef6a458d8fb7a7f839e42cba15c37a4698c894630739b", null ] + ] ], + [ "spi_b_communication_t", "group___s_p_i___b.html#gae6d270a0823aeddcacb4a5006546e391", [ + [ "SPI_B_COMMUNICATION_FULL_DUPLEX", "group___s_p_i___b.html#ggae6d270a0823aeddcacb4a5006546e391ae3954204fe4e76df8af7fcf26786f861", null ], + [ "SPI_B_COMMUNICATION_TRANSMIT_ONLY", "group___s_p_i___b.html#ggae6d270a0823aeddcacb4a5006546e391af257ec37578d4668398933881df14b13", null ] + ] ], + [ "spi_b_ssl_polarity_t", "group___s_p_i___b.html#gaaaaa1d37089a7f8d222de49d8295c116", [ + [ "SPI_B_SSLP_LOW", "group___s_p_i___b.html#ggaaaaa1d37089a7f8d222de49d8295c116a17d87ee36cef5eb5820a80a88de4138b", null ], + [ "SPI_B_SSLP_HIGH", "group___s_p_i___b.html#ggaaaaa1d37089a7f8d222de49d8295c116ace10a6e8df5d3a4140ac10cd1a0b293d", null ] + ] ], + [ "spi_b_ssl_select_t", "group___s_p_i___b.html#ga3d063bb158a1005df5c7bde81538b373", [ + [ "SPI_B_SSL_SELECT_SSL0", "group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373ad96087ca4208105609349dab7e3b2cc4", null ], + [ "SPI_B_SSL_SELECT_SSL1", "group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373a881b605b37191ce8363c1e34bae1bc23", null ], + [ "SPI_B_SSL_SELECT_SSL2", "group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373aeb71783e644812cc42d83f59780ac8e4", null ], + [ "SPI_B_SSL_SELECT_SSL3", "group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373a9c1720bf8ab08c5ba6f54fabaa2030f3", null ] + ] ], + [ "spi_b_mosi_idle_value_fixing_t", "group___s_p_i___b.html#ga566538943bf7a87f8ba8add6616d41db", [ + [ "SPI_B_MOSI_IDLE_VALUE_FIXING_DISABLE", "group___s_p_i___b.html#gga566538943bf7a87f8ba8add6616d41dba84ed2b07cb18a4e99da47e9d579d7186", null ], + [ "SPI_B_MOSI_IDLE_VALUE_FIXING_LOW", "group___s_p_i___b.html#gga566538943bf7a87f8ba8add6616d41dbadcee5907d986759f1f6d761c093bda65", null ], + [ "SPI_B_MOSI_IDLE_VALUE_FIXING_HIGH", "group___s_p_i___b.html#gga566538943bf7a87f8ba8add6616d41dba34d640ed44fb4472192b408225814c8e", null ] + ] ], + [ "spi_b_parity_t", "group___s_p_i___b.html#ga500334da91202c65f50e5ba4cef38dcf", [ + [ "SPI_B_PARITY_MODE_DISABLE", "group___s_p_i___b.html#gga500334da91202c65f50e5ba4cef38dcfa9a6b54da3fd6b5d0621e95e431582fde", null ], + [ "SPI_B_PARITY_MODE_ODD", "group___s_p_i___b.html#gga500334da91202c65f50e5ba4cef38dcfa7e2ae6f701908c5a9e8c2e791c985222", null ], + [ "SPI_B_PARITY_MODE_EVEN", "group___s_p_i___b.html#gga500334da91202c65f50e5ba4cef38dcfa9ce206b45bd35f5038a68ffc58573bdb", null ] + ] ], + [ "spi_b_byte_swap_t", "group___s_p_i___b.html#gac08d1276c78868e2844221679e6be657", [ + [ "SPI_B_BYTE_SWAP_DISABLE", "group___s_p_i___b.html#ggac08d1276c78868e2844221679e6be657a6d5c072358543e275822669ab01f3cce", null ], + [ "SPI_B_BYTE_SWAP_ENABLE", "group___s_p_i___b.html#ggac08d1276c78868e2844221679e6be657ac9e89947b2b88db4111a3338b6a0213d", null ] + ] ], + [ "spi_b_delay_count_t", "group___s_p_i___b.html#ga355039269814474fa2d7a016207df18e", [ + [ "SPI_B_DELAY_COUNT_1", "group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea731a04cd52441636e5caaebaae3ea515", null ], + [ "SPI_B_DELAY_COUNT_2", "group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea49b6fe18afd4d62f4aea24c3fdac48d2", null ], + [ "SPI_B_DELAY_COUNT_3", "group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea4e646f9d36c3b20d6cb0974e7741e3f5", null ], + [ "SPI_B_DELAY_COUNT_4", "group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea273da42218915f084f5167cf6d0605b8", null ], + [ "SPI_B_DELAY_COUNT_5", "group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea76b1672b4ffcee90924aa69e2faa407d", null ], + [ "SPI_B_DELAY_COUNT_6", "group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea679f5372399b3a86e5ba849f4db0504b", null ], + [ "SPI_B_DELAY_COUNT_7", "group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea93cd345b5c636461c54b93905fd35ba9", null ], + [ "SPI_B_DELAY_COUNT_8", "group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea54a1d1391831fd7afe9fa1839370665d", null ] + ] ], + [ "spi_b_clock_source_t", "group___s_p_i___b.html#gabb41b27e51f28d09548219c18435346b", null ], + [ "spi_b_ssl_level_keep_t", "group___s_p_i___b.html#ga8232020978a99300962810b2e9f9dc86", [ + [ "SPI_B_SSL_LEVEL_KEEP_DISABLE", "group___s_p_i___b.html#gga8232020978a99300962810b2e9f9dc86a74c4d474dc8844704917781a861159aa", null ], + [ "SPI_B_SSL_LEVEL_KEEP_ENABLE", "group___s_p_i___b.html#gga8232020978a99300962810b2e9f9dc86af7408a6172952573cc49aae43aff1a43", null ] + ] ], + [ "R_SPI_B_Open", "group___s_p_i___b.html#gab338db9c94dc09edc2ceddf87904845d", null ], + [ "R_SPI_B_Read", "group___s_p_i___b.html#gabcc557f95c75b12b462962f6c709e229", null ], + [ "R_SPI_B_Write", "group___s_p_i___b.html#ga2adf0b091362e84b71f1bd3a1d821f40", null ], + [ "R_SPI_B_WriteRead", "group___s_p_i___b.html#ga44658a0ea656e093e0eac61186aef274", null ], + [ "R_SPI_B_Close", "group___s_p_i___b.html#ga8e700b9cda9c467dde6090fb4c4a6969", null ], + [ "R_SPI_B_CalculateBitrate", "group___s_p_i___b.html#ga4312b8a1c4aee284f3007621403a0b6d", null ], + [ "R_SPI_B_CallbackSet", "group___s_p_i___b.html#ga588348788f8ed3f933befc5a1cbe9b90", null ] +]; \ No newline at end of file diff --git a/group___s_p_i___f_l_a_s_h___a_p_i.html b/group___s_p_i___f_l_a_s_h___a_p_i.html new file mode 100644 index 0000000..62c2270 --- /dev/null +++ b/group___s_p_i___f_l_a_s_h___a_p_i.html @@ -0,0 +1,1099 @@ + + + + + + + +RZV Flexible Software Package Documentation: SPI Flash Interface + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    SPI Flash Interface
    +
    +
    +

    Detailed Description

    +

    Interface for accessing external SPI flash devices.

    +

    +Summary

    +

    The SPI flash API provides an interface that configures, writes, and erases sectors in SPI flash devices.

    +

    Implemented by:

    + + + + + + + + + + + + + + +

    +Data Structures

    struct  spi_flash_erase_command_t
     
    struct  spi_flash_direct_transfer_t
     
    struct  spi_flash_cfg_t
     
    struct  spi_flash_status_t
     
    struct  spi_flash_api_t
     
    struct  spi_flash_instance_t
     
    + + + +

    +Typedefs

    typedef void spi_flash_ctrl_t
     
    + + + + + + + + + + + + + +

    +Enumerations

    enum  spi_flash_read_mode_t
     
    enum  spi_flash_protocol_t
     
    enum  spi_flash_address_bytes_t
     
    enum  spi_flash_data_lines_t
     
    enum  spi_flash_dummy_clocks_t
     
    enum  spi_flash_direct_transfer_dir_t
     
    +

    Data Structure Documentation

    + +

    ◆ spi_flash_erase_command_t

    + +
    +
    + + + + +
    struct spi_flash_erase_command_t
    +
    +

    Structure to define an erase command and associated erase size.

    +
    + + + + + + + +
    Data Fields
    +uint16_t +command +Erase command.
    +uint32_t +size +Size of erase for associated command, set to SPI_FLASH_ERASE_SIZE_CHIP_ERASE for chip erase.
    + +
    +
    + +

    ◆ spi_flash_direct_transfer_t

    + +
    +
    + + + + +
    struct spi_flash_direct_transfer_t
    +
    +

    Structure to define a direct transfer.

    +
    + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +uint32_t +address +Starting address.
    +uint32_t +data +Data.
    +uint16_t +command +Transfer command.
    +uint8_t +dummy_cycles +Number of dummy cycles.
    +uint8_t +command_length +Command length.
    +uint8_t +address_length +Address lengrh.
    +uint8_t +data_length +Data length.
    + +
    +
    + +

    ◆ spi_flash_cfg_t

    + +
    +
    + + + + +
    struct spi_flash_cfg_t
    +
    +

    User configuration structure used by the open function

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +spi_flash_protocol_t +spi_protocol +Initial SPI protocol. SPI protocol can be changed in spi_flash_api_t::spiProtocolSet.
    +spi_flash_read_mode_t +read_mode +Read mode.
    +spi_flash_address_bytes_t +address_bytes +Number of bytes used to represent the address.
    +spi_flash_dummy_clocks_t +dummy_clocks +Number of dummy clocks to use for fast read operations.
    +spi_flash_data_lines_t +page_program_address_lines +

    Number of lines used to send address for page program command. This should either be 1 or match the number of lines used in the selected read mode.

    +
    +uint8_t +write_status_bit +Which bit determines write status.
    +uint8_t +write_enable_bit +Which bit determines write status.
    +uint32_t +page_size_bytes +Page size in bytes (maximum number of bytes for page program). Used to specify single continuous write size (bytes) in case of OSPI RAM.
    +uint8_t +page_program_command +Page program command.
    +uint8_t +write_enable_command +Command to enable write or erase, typically 0x06.
    +uint8_t +status_command +Command to read the write status.
    +uint8_t +read_command +Read command - OSPI SPI mode only.
    +uint8_t +xip_enter_command +Command to enter XIP mode.
    +uint8_t +xip_exit_command +Command to exit XIP mode.
    +uint8_t +erase_command_list_length +Length of erase command list.
    +spi_flash_erase_command_t const * +p_erase_command_list +List of all erase commands and associated sizes.
    +void const * +p_extend +Pointer to implementation specific extended configurations.
    + +
    +
    + +

    ◆ spi_flash_status_t

    + +
    +
    + + + + +
    struct spi_flash_status_t
    +
    +

    Status.

    +
    + + + + +
    Data Fields
    +bool +write_in_progress +

    Whether or not a write is in progress. This is determined by reading the spi_flash_cfg_t::write_status_bit from the spi_flash_cfg_t::status_command.

    +
    + +
    +
    + +

    ◆ spi_flash_api_t

    + +
    +
    + + + + +
    struct spi_flash_api_t
    +
    +

    SPI flash implementations follow this API.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    fsp_err_t(* open )(spi_flash_ctrl_t *p_ctrl, spi_flash_cfg_t const *const p_cfg)
     
    fsp_err_t(* directWrite )(spi_flash_ctrl_t *p_ctrl, uint8_t const *const p_src, uint32_t const bytes, bool const read_after_write)
     
    fsp_err_t(* directRead )(spi_flash_ctrl_t *p_ctrl, uint8_t *const p_dest, uint32_t const bytes)
     
    fsp_err_t(* directTransfer )(spi_flash_ctrl_t *p_ctrl, spi_flash_direct_transfer_t *const p_transfer, spi_flash_direct_transfer_dir_t direction)
     
    fsp_err_t(* spiProtocolSet )(spi_flash_ctrl_t *p_ctrl, spi_flash_protocol_t spi_protocol)
     
    fsp_err_t(* write )(spi_flash_ctrl_t *p_ctrl, uint8_t const *const p_src, uint8_t *const p_dest, uint32_t byte_count)
     
    fsp_err_t(* erase )(spi_flash_ctrl_t *p_ctrl, uint8_t *const p_device_address, uint32_t byte_count)
     
    fsp_err_t(* statusGet )(spi_flash_ctrl_t *p_ctrl, spi_flash_status_t *const p_status)
     
    fsp_err_t(* xipEnter )(spi_flash_ctrl_t *p_ctrl)
     
    fsp_err_t(* xipExit )(spi_flash_ctrl_t *p_ctrl)
     
    fsp_err_t(* bankSet )(spi_flash_ctrl_t *p_ctrl, uint32_t bank)
     
    fsp_err_t(* autoCalibrate )(spi_flash_ctrl_t *p_ctrl)
     
    fsp_err_t(* close )(spi_flash_ctrl_t *p_ctrl)
     
    +

    Field Documentation

    + +

    ◆ open

    + +
    +
    + + + + +
    fsp_err_t(* spi_flash_api_t::open) (spi_flash_ctrl_t *p_ctrl, spi_flash_cfg_t const *const p_cfg)
    +
    +

    Open the SPI flash driver module.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to a driver handle
    [in]p_cfgPointer to a configuration structure
    +
    +
    + +
    +
    + +

    ◆ directWrite

    + +
    +
    + + + + +
    fsp_err_t(* spi_flash_api_t::directWrite) (spi_flash_ctrl_t *p_ctrl, uint8_t const *const p_src, uint32_t const bytes, bool const read_after_write)
    +
    +

    Write raw data to the SPI flash.

    Implemented as
    +
    +
    Parameters
    + + + + + +
    [in]p_ctrlPointer to a driver handle
    [in]p_srcPointer to raw data to write, must include any required command/address
    [in]bytesNumber of bytes to write
    [in]read_after_writeIf true, the slave select remains asserted and the peripheral does not return to direct communications mode. If false, the slave select is deasserted and memory mapped access is possible after this function returns if the device is not busy.
    +
    +
    + +
    +
    + +

    ◆ directRead

    + +
    +
    + + + + +
    fsp_err_t(* spi_flash_api_t::directRead) (spi_flash_ctrl_t *p_ctrl, uint8_t *const p_dest, uint32_t const bytes)
    +
    +

    Read raw data from the SPI flash. Must follow a call to spi_flash_api_t::directWrite.

    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlPointer to a driver handle
    [out]p_destPointer to read raw data into
    [in]bytesNumber of bytes to read
    +
    +
    + +
    +
    + +

    ◆ directTransfer

    + +
    +
    + + + + +
    fsp_err_t(* spi_flash_api_t::directTransfer) (spi_flash_ctrl_t *p_ctrl, spi_flash_direct_transfer_t *const p_transfer, spi_flash_direct_transfer_dir_t direction)
    +
    +

    Direct Read/Write raw data to the SPI flash.

    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlPointer to a driver handle
    [in]p_dataPointer to command, address and data values and lengths
    [in]directionDirect Read/Write
    +
    +
    + +
    +
    + +

    ◆ spiProtocolSet

    + +
    +
    + + + + +
    fsp_err_t(* spi_flash_api_t::spiProtocolSet) (spi_flash_ctrl_t *p_ctrl, spi_flash_protocol_t spi_protocol)
    +
    +

    Change the SPI protocol in the driver. The application must change the SPI protocol on the device.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to a driver handle
    [in]spi_protocolDesired SPI protocol
    +
    +
    + +
    +
    + +

    ◆ write

    + +
    +
    + + + + +
    fsp_err_t(* spi_flash_api_t::write) (spi_flash_ctrl_t *p_ctrl, uint8_t const *const p_src, uint8_t *const p_dest, uint32_t byte_count)
    +
    +

    Program a page of data to the flash.

    Implemented as
    +
    +
    Parameters
    + + + + + +
    [in]p_ctrlPointer to a driver handle
    [in]p_srcThe memory address of the data to write to the flash device
    [in]p_destThe location in the flash device address space to write the data to
    [in]byte_countThe number of bytes to write
    +
    +
    + +
    +
    + +

    ◆ erase

    + +
    +
    + + + + +
    fsp_err_t(* spi_flash_api_t::erase) (spi_flash_ctrl_t *p_ctrl, uint8_t *const p_device_address, uint32_t byte_count)
    +
    +

    Erase a certain number of bytes of the flash.

    Implemented as
    +
    +
    Parameters
    + + + + +
    [in]p_ctrlPointer to a driver handle
    [in]p_device_addressThe location in the flash device address space to start the erase from
    [in]byte_countThe number of bytes to erase. Set to SPI_FLASH_ERASE_SIZE_CHIP_ERASE to erase entire chip.
    +
    +
    + +
    +
    + +

    ◆ statusGet

    + +
    +
    + + + + +
    fsp_err_t(* spi_flash_api_t::statusGet) (spi_flash_ctrl_t *p_ctrl, spi_flash_status_t *const p_status)
    +
    +

    Get the write or erase status of the flash.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to a driver handle
    [out]p_statusCurrent status of the SPI flash device stored here.
    +
    +
    + +
    +
    + +

    ◆ xipEnter

    + +
    +
    + + + + +
    fsp_err_t(* spi_flash_api_t::xipEnter) (spi_flash_ctrl_t *p_ctrl)
    +
    +

    Enter XIP mode.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to a driver handle
    +
    +
    + +
    +
    + +

    ◆ xipExit

    + +
    +
    + + + + +
    fsp_err_t(* spi_flash_api_t::xipExit) (spi_flash_ctrl_t *p_ctrl)
    +
    +

    Exit XIP mode.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to a driver handle
    +
    +
    + +
    +
    + +

    ◆ bankSet

    + +
    +
    + + + + +
    fsp_err_t(* spi_flash_api_t::bankSet) (spi_flash_ctrl_t *p_ctrl, uint32_t bank)
    +
    +

    Select the bank to access. See implementation for details.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to a driver handle
    [in]bankThe bank number
    +
    +
    + +
    +
    + +

    ◆ autoCalibrate

    + +
    +
    + + + + +
    fsp_err_t(* spi_flash_api_t::autoCalibrate) (spi_flash_ctrl_t *p_ctrl)
    +
    +

    AutoCalibrate the SPI flash driver module. Expected to be used when auto-calibrating OSPI RAM device.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to a driver handle
    +
    +
    + +
    +
    + +

    ◆ close

    + +
    +
    + + + + +
    fsp_err_t(* spi_flash_api_t::close) (spi_flash_ctrl_t *p_ctrl)
    +
    +

    Close the SPI flash driver module.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to a driver handle
    +
    +
    + +
    +
    + +
    +
    + +

    ◆ spi_flash_instance_t

    + +
    +
    + + + + +
    struct spi_flash_instance_t
    +
    +

    This structure encompasses everything that is needed to use an instance of this interface.

    +
    + + + + + + + + + + +
    Data Fields
    +spi_flash_ctrl_t * +p_ctrl +Pointer to the control structure for this instance.
    +spi_flash_cfg_t const * +p_cfg +Pointer to the configuration structure for this instance.
    +spi_flash_api_t const * +p_api +Pointer to the API structure for this instance.
    + +
    +
    +

    Typedef Documentation

    + +

    ◆ spi_flash_ctrl_t

    + +
    +
    + + + + +
    typedef void spi_flash_ctrl_t
    +
    +

    SPI flash control block. Allocate an instance specific control block to pass into the SPI flash API calls.

    Implemented as
    +
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ spi_flash_read_mode_t

    + +
    +
    + + + + +
    enum spi_flash_read_mode_t
    +
    +

    Read mode.

    + + + + + + + +
    Enumerator
    SPI_FLASH_READ_MODE_STANDARD 

    Standard Read Mode (no dummy cycles)

    +
    SPI_FLASH_READ_MODE_FAST_READ 

    Fast Read Mode (dummy cycles between address and data)

    +
    SPI_FLASH_READ_MODE_FAST_READ_DUAL_OUTPUT 

    Fast Read Dual Output Mode (data on 2 lines)

    +
    SPI_FLASH_READ_MODE_FAST_READ_DUAL_IO 

    Fast Read Dual I/O Mode (address and data on 2 lines)

    +
    SPI_FLASH_READ_MODE_FAST_READ_QUAD_OUTPUT 

    Fast Read Quad Output Mode (data on 4 lines)

    +
    SPI_FLASH_READ_MODE_FAST_READ_QUAD_IO 

    Fast Read Quad I/O Mode (address and data on 4 lines)

    +
    + +
    +
    + +

    ◆ spi_flash_protocol_t

    + +
    +
    + + + + +
    enum spi_flash_protocol_t
    +
    +

    SPI protocol.

    + + + + + + + + + + + + +
    Enumerator
    SPI_FLASH_PROTOCOL_EXTENDED_SPI 

    Extended SPI mode (commands on 1 line)

    +
    SPI_FLASH_PROTOCOL_QPI 

    QPI mode (commands on 4 lines). Note that the application must ensure the device is in QPI mode.

    +
    SPI_FLASH_PROTOCOL_SOPI 

    SOPI mode (command and data on 8 lines). Note that the application must ensure the device is in SOPI mode.

    +
    SPI_FLASH_PROTOCOL_DOPI 

    DOPI mode (command and data on 8 lines, dual data rate). Note that the application must ensure the device is in DOPI mode.

    +
    SPI_FLASH_PROTOCOL_1S_1S_1S 

    1S-1S-1S protocol

    +
    SPI_FLASH_PROTOCOL_4S_4D_4D 

    4S-4D-4D protocol

    +
    SPI_FLASH_PROTOCOL_8D_8D_8D 

    8D-8D-8D protocol

    +
    SPI_FLASH_PROTOCOL_1S_2S_2S 

    1S-2S-2S protocol

    +
    SPI_FLASH_PROTOCOL_2S_2S_2S 

    2S-2S-2S protocol

    +
    SPI_FLASH_PROTOCOL_1S_4S_4S 

    1S-4S-4S protocol

    +
    SPI_FLASH_PROTOCOL_4S_4S_4S 

    4S-4S-4S protocol

    +
    + +
    +
    + +

    ◆ spi_flash_address_bytes_t

    + +
    +
    + + + + +
    enum spi_flash_address_bytes_t
    +
    +

    Number of bytes in the address.

    + + + + +
    Enumerator
    SPI_FLASH_ADDRESS_BYTES_3 

    3 address bytes

    +
    SPI_FLASH_ADDRESS_BYTES_4 

    4 address bytes with standard commands. If this option is selected, the application must issue the EN4B command using spi_flash_api_t::directWrite() if required by the device.

    +
    SPI_FLASH_ADDRESS_BYTES_4_4BYTE_READ_CODE 

    4 address bytes using standard 4-byte command set.

    +
    + +
    +
    + +

    ◆ spi_flash_data_lines_t

    + +
    +
    + + + + +
    enum spi_flash_data_lines_t
    +
    +

    Number of data lines used.

    + + + + +
    Enumerator
    SPI_FLASH_DATA_LINES_1 

    1 data line

    +
    SPI_FLASH_DATA_LINES_2 

    2 data lines

    +
    SPI_FLASH_DATA_LINES_4 

    4 data lines

    +
    + +
    +
    + +

    ◆ spi_flash_dummy_clocks_t

    + +
    +
    + + + + +
    enum spi_flash_dummy_clocks_t
    +
    +

    Number of dummy cycles for fast read operations.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Enumerator
    SPI_FLASH_DUMMY_CLOCKS_0 

    0 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_1 

    1 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_2 

    2 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_3 

    3 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_4 

    4 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_5 

    5 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_6 

    6 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_7 

    7 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_8 

    8 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_9 

    9 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_10 

    10 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_11 

    11 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_12 

    12 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_13 

    13 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_14 

    14 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_15 

    15 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_16 

    16 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_17 

    17 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_18 

    18 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_19 

    19 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_20 

    20 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_21 

    21 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_22 

    22 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_23 

    23 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_24 

    24 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_25 

    25 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_26 

    26 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_27 

    27 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_28 

    28 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_29 

    29 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_30 

    30 dummy clocks

    +
    SPI_FLASH_DUMMY_CLOCKS_31 

    31 dummy clocks

    +
    + +
    +
    + +

    ◆ spi_flash_direct_transfer_dir_t

    + +
    +
    +

    Direct Read and Write direction

    + +
    +
    +
    +
    + + + + + diff --git a/group___s_p_i___f_l_a_s_h___a_p_i.js b/group___s_p_i___f_l_a_s_h___a_p_i.js new file mode 100644 index 0000000..ccf90c5 --- /dev/null +++ b/group___s_p_i___f_l_a_s_h___a_p_i.js @@ -0,0 +1,125 @@ +var group___s_p_i___f_l_a_s_h___a_p_i = +[ + [ "spi_flash_erase_command_t", "group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__erase__command__t", [ + [ "command", "group___s_p_i___f_l_a_s_h___a_p_i.html#a27f37ac5d1f031fd33f3b2ff5b914751", null ], + [ "size", "group___s_p_i___f_l_a_s_h___a_p_i.html#afb42b93f396ec30b863646150e9bb91d", null ] + ] ], + [ "spi_flash_direct_transfer_t", "group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__direct__transfer__t", [ + [ "address", "group___s_p_i___f_l_a_s_h___a_p_i.html#a5120cdb55dcd4ce8da04eb8baa69254d", null ], + [ "data", "group___s_p_i___f_l_a_s_h___a_p_i.html#a52ae9ed9880e98f7a02107c2b31b673b", null ], + [ "command", "group___s_p_i___f_l_a_s_h___a_p_i.html#ab20fca5fa35e25becd87abc7539a4246", null ], + [ "dummy_cycles", "group___s_p_i___f_l_a_s_h___a_p_i.html#ad4a653cf90fd97dc9d0a5f8fce3c3795", null ], + [ "command_length", "group___s_p_i___f_l_a_s_h___a_p_i.html#a521505cf1d98e638aef0e72ca5eb6463", null ], + [ "address_length", "group___s_p_i___f_l_a_s_h___a_p_i.html#a63de64208374fd3c6ea1db4ffb07111f", null ], + [ "data_length", "group___s_p_i___f_l_a_s_h___a_p_i.html#a5e3c48eb88187944722f745231f955f3", null ] + ] ], + [ "spi_flash_cfg_t", "group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__cfg__t", [ + [ "spi_protocol", "group___s_p_i___f_l_a_s_h___a_p_i.html#a6f3cdf4d6de603634118801dcb54a6d5", null ], + [ "read_mode", "group___s_p_i___f_l_a_s_h___a_p_i.html#a40a6269760d8c4aaf75bf84613d1f551", null ], + [ "address_bytes", "group___s_p_i___f_l_a_s_h___a_p_i.html#ac9e56afeabf97f6a1642b7468a67cf25", null ], + [ "dummy_clocks", "group___s_p_i___f_l_a_s_h___a_p_i.html#a6b2d213cfd3ca4a9a0f1c3dfd11414ec", null ], + [ "page_program_address_lines", "group___s_p_i___f_l_a_s_h___a_p_i.html#ab612f8046209bbb2b29e5d3eee98831f", null ], + [ "write_status_bit", "group___s_p_i___f_l_a_s_h___a_p_i.html#a72bf5b8dca157ef7a4a2c66b12c945e9", null ], + [ "write_enable_bit", "group___s_p_i___f_l_a_s_h___a_p_i.html#a6db8c831a8c3ef08a0f511c7229a503e", null ], + [ "page_size_bytes", "group___s_p_i___f_l_a_s_h___a_p_i.html#abfd1deab895e3f8c8f38a51d74c79b17", null ], + [ "page_program_command", "group___s_p_i___f_l_a_s_h___a_p_i.html#ad630dd9c52ab12c077c5b27485b46017", null ], + [ "write_enable_command", "group___s_p_i___f_l_a_s_h___a_p_i.html#ae5c4c2c2b0cebe9a54e530cbc2554b6e", null ], + [ "status_command", "group___s_p_i___f_l_a_s_h___a_p_i.html#a27e2c004e2548fea4eca6793027b9d25", null ], + [ "read_command", "group___s_p_i___f_l_a_s_h___a_p_i.html#a7c61a9a4dbc8bb415233c42cfdc34d6d", null ], + [ "xip_enter_command", "group___s_p_i___f_l_a_s_h___a_p_i.html#accd8433fbfc03e8a8bdb209c583c6ce9", null ], + [ "xip_exit_command", "group___s_p_i___f_l_a_s_h___a_p_i.html#a315a0b4fc25c20262fdbf762c389c109", null ], + [ "erase_command_list_length", "group___s_p_i___f_l_a_s_h___a_p_i.html#a24bbe669d6ca4a02fe6d806d321a044c", null ], + [ "p_erase_command_list", "group___s_p_i___f_l_a_s_h___a_p_i.html#a59655a41dc087373e0a03d23a99f301a", null ], + [ "p_extend", "group___s_p_i___f_l_a_s_h___a_p_i.html#ad2403240c3b40bb518d0623283712248", null ] + ] ], + [ "spi_flash_status_t", "group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__status__t", [ + [ "write_in_progress", "group___s_p_i___f_l_a_s_h___a_p_i.html#ae20d4bed523ca4e802f5da6fdec4ca43", null ] + ] ], + [ "spi_flash_api_t", "group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__api__t", [ + [ "open", "group___s_p_i___f_l_a_s_h___a_p_i.html#a6b8a1ae0eed7bca555c94959c1314ae3", null ], + [ "directWrite", "group___s_p_i___f_l_a_s_h___a_p_i.html#a31a1d575f3d8876154d4e217caebf110", null ], + [ "directRead", "group___s_p_i___f_l_a_s_h___a_p_i.html#a3366fdcb333cb6950ff38bb35618c401", null ], + [ "directTransfer", "group___s_p_i___f_l_a_s_h___a_p_i.html#a21da248768dd75281ea7b29f2d243afd", null ], + [ "spiProtocolSet", "group___s_p_i___f_l_a_s_h___a_p_i.html#a3328711e7e70c8379f4373d2861d785a", null ], + [ "write", "group___s_p_i___f_l_a_s_h___a_p_i.html#a61e667a9ae9af76c5f8fd9f1973c6838", null ], + [ "erase", "group___s_p_i___f_l_a_s_h___a_p_i.html#a0f241a48dd8f386e19a6e0fe44e8a2d9", null ], + [ "statusGet", "group___s_p_i___f_l_a_s_h___a_p_i.html#a1eea2761178ddd8ca7ef3aacd5c80507", null ], + [ "xipEnter", "group___s_p_i___f_l_a_s_h___a_p_i.html#ab5c6cc5c82e73038ddcef82a906b966f", null ], + [ "xipExit", "group___s_p_i___f_l_a_s_h___a_p_i.html#a3a7c2aae058a733f879ae294c63ce2c6", null ], + [ "bankSet", "group___s_p_i___f_l_a_s_h___a_p_i.html#a14581133205383b71df54a65439c0dcf", null ], + [ "autoCalibrate", "group___s_p_i___f_l_a_s_h___a_p_i.html#ad04434e2c049da61d3389355d5961f31", null ], + [ "close", "group___s_p_i___f_l_a_s_h___a_p_i.html#a16810f14e3fff6ed04f36eca44353785", null ] + ] ], + [ "spi_flash_instance_t", "group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__instance__t", [ + [ "p_ctrl", "group___s_p_i___f_l_a_s_h___a_p_i.html#ab7cca7ee8e821effe8d7e8902e6a7514", null ], + [ "p_cfg", "group___s_p_i___f_l_a_s_h___a_p_i.html#a74f26946c33e77fda5b6e2d26b2c9fee", null ], + [ "p_api", "group___s_p_i___f_l_a_s_h___a_p_i.html#aa393a0e23c69a916e8c30e9dc4e5513b", null ] + ] ], + [ "spi_flash_ctrl_t", "group___s_p_i___f_l_a_s_h___a_p_i.html#ga0f14c8b55d2948c30b99ab157e16488f", null ], + [ "spi_flash_read_mode_t", "group___s_p_i___f_l_a_s_h___a_p_i.html#gae289e2a797dab4712dfc07986f6a3544", [ + [ "SPI_FLASH_READ_MODE_STANDARD", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544a912b5c3ede07dc88c2241c7abb92fb52", null ], + [ "SPI_FLASH_READ_MODE_FAST_READ", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544afb88c529acf619eb6e3d0ffb752f8386", null ], + [ "SPI_FLASH_READ_MODE_FAST_READ_DUAL_OUTPUT", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544aa0d4e30b32b497827cf2924036320193", null ], + [ "SPI_FLASH_READ_MODE_FAST_READ_DUAL_IO", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544af6d14d59f1598cf51a11f1629bf2be6c", null ], + [ "SPI_FLASH_READ_MODE_FAST_READ_QUAD_OUTPUT", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544abbf688966c22416d5835ad02cc322187", null ], + [ "SPI_FLASH_READ_MODE_FAST_READ_QUAD_IO", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544adba367ad1ab093f75047ed401e8c7cd1", null ] + ] ], + [ "spi_flash_protocol_t", "group___s_p_i___f_l_a_s_h___a_p_i.html#ga17c347a498a8a9d38ffc36c0de49a535", [ + [ "SPI_FLASH_PROTOCOL_EXTENDED_SPI", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a1b7d1595891e2e14a3dc9e718b5188c3", null ], + [ "SPI_FLASH_PROTOCOL_QPI", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535abf7718fe53c0e4daa1dcad6f4d6d215e", null ], + [ "SPI_FLASH_PROTOCOL_SOPI", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535aa8b956dd00ae8afcb2e4497fb1b9ab58", null ], + [ "SPI_FLASH_PROTOCOL_DOPI", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535afd83f451b4164b209b240ebb0f4bb158", null ], + [ "SPI_FLASH_PROTOCOL_1S_1S_1S", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a3066069aa9be28b050e57faa29cf5be5", null ], + [ "SPI_FLASH_PROTOCOL_4S_4D_4D", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a54c52d62f8a1e16099da8ab9a203a1be", null ], + [ "SPI_FLASH_PROTOCOL_8D_8D_8D", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535acf8fc61585bd2209fc3953d8d2eb4606", null ], + [ "SPI_FLASH_PROTOCOL_1S_2S_2S", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a6d421df12293ebbae4fa97b4cf152081", null ], + [ "SPI_FLASH_PROTOCOL_2S_2S_2S", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a668b4a0330a7e2de10b77f25fbea4567", null ], + [ "SPI_FLASH_PROTOCOL_1S_4S_4S", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535acd8ffe88180ff5b8288dee7739e581a8", null ], + [ "SPI_FLASH_PROTOCOL_4S_4S_4S", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a21ac68039ffa6d214173ada7fe558a05", null ] + ] ], + [ "spi_flash_address_bytes_t", "group___s_p_i___f_l_a_s_h___a_p_i.html#ga289ef915326b8e75e7d0dd331c2d0797", [ + [ "SPI_FLASH_ADDRESS_BYTES_3", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga289ef915326b8e75e7d0dd331c2d0797ab4c7c4e57259098044562889ba84709f", null ], + [ "SPI_FLASH_ADDRESS_BYTES_4", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga289ef915326b8e75e7d0dd331c2d0797a186abc2724fdf1c4fac86d0d83cb5303", null ], + [ "SPI_FLASH_ADDRESS_BYTES_4_4BYTE_READ_CODE", "group___s_p_i___f_l_a_s_h___a_p_i.html#gga289ef915326b8e75e7d0dd331c2d0797aed752a37fe0a5f0b6dfb6781d67319bb", null ] + ] ], + [ "spi_flash_data_lines_t", "group___s_p_i___f_l_a_s_h___a_p_i.html#gaae5c8f99b61e37b40b13f52e146f0bc5", [ + [ "SPI_FLASH_DATA_LINES_1", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaae5c8f99b61e37b40b13f52e146f0bc5a724520599856ece833bddc89d146d68e", null ], + [ "SPI_FLASH_DATA_LINES_2", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaae5c8f99b61e37b40b13f52e146f0bc5add8eaf5b2c9b3749d5425cc8596aa564", null ], + [ "SPI_FLASH_DATA_LINES_4", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaae5c8f99b61e37b40b13f52e146f0bc5a78b1e4dfcdf7632ea626d7c1d74dd317", null ] + ] ], + [ "spi_flash_dummy_clocks_t", "group___s_p_i___f_l_a_s_h___a_p_i.html#gaa1e03cbf0d565f4ae7ad2e41d85802fe", [ + [ "SPI_FLASH_DUMMY_CLOCKS_0", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feaed09e7b9b5d0d7b7be12e3677eba59a1", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_1", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feafac1c75f76f2f0a4027b1544fecb48b4", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_2", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feab4dcd627f0f4766d0e7fbf76a2160a98", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_3", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feaca19d746031e96849279c7f9c9365f73", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_4", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea95bef5ad77102b394b5ca8bd38bb73be", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_5", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea5a76c99649b40742470d90e7b0c8c474", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_6", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea801c037b43cbd06e07774303a64b0e7e", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_7", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea941cef4707042e59f64a679053c9d097", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_8", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea59162e7f319c830647330780799e12d4", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_9", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea85dec8f02ca9a503cc9d554131c51f92", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_10", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feab7bb5a56f34654e4d07779b33ed62c4e", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_11", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea1db4bf767cc8df4e417a13151bf2ef91", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_12", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feac6f24dbd14abddeb713c6d3b349a2586", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_13", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea94649b553a8dfb3df7d2dfcf5964c099", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_14", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fead706a5a9ba8b806ffeb13adc5979823b", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_15", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea5c661aa719d0f2846d0a4a3bea4e3f37", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_16", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feab4afe95b4c411fbe7b17252fce3e9776", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_17", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea34ec51de93041c3710730907347e29ce", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_18", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feaccd9eab44effb89164d68dc55c73e10f", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_19", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea32e0c7ab537261464e48be07bda963f0", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_20", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea3490679f14cbe6dca290459020f75c71", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_21", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fead65e7e0db08823212d8aca1feaae5279", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_22", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea245eb3e209ead164289e776f8a1c3db5", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_23", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea27f73312dc3edb2114956dd060693c96", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_24", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feabaf62da3a1a577e312e0b0be000770cc", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_25", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea36b30b484ac7ba6d951f42664c17bccc", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_26", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea6cf608f95e25bdbde4af0fd0caa0844e", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_27", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feabf7dd140ea6e3b47246e8dd6c2b812bc", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_28", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feacf3e6ceb051173c3017ce7c715c96c77", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_29", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea76793d9f869335cb3f6c46c30539d6a9", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_30", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea047f2b71267ffaee5a6912d58854302b", null ], + [ "SPI_FLASH_DUMMY_CLOCKS_31", "group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feafaa464bb01a99230e64495288b7592c1", null ] + ] ], + [ "spi_flash_direct_transfer_dir_t", "group___s_p_i___f_l_a_s_h___a_p_i.html#ga80ecf65e658f5b36bfe0bf2d88dd3ca5", null ] +]; \ No newline at end of file diff --git a/group___t_i_m_e_r___a_p_i.html b/group___t_i_m_e_r___a_p_i.html index ab80583..0ef9302 100644 --- a/group___t_i_m_e_r___a_p_i.html +++ b/group___t_i_m_e_r___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Timer Interface +RZV Flexible Software Package Documentation: Timer Interface @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@

    -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    - +

    + +
    + - - - - -
    + + + +   + + + +
    + + + + + +

    @@ -400,8 +470,10 @@

    Initial configuration.

    Implemented as
    Parameters
    @@ -426,8 +498,10 @@

    Start the counter.

    Implemented as
    Parameters
    @@ -451,8 +525,10 @@

    Stop the counter.

    Implemented as
    Parameters
    @@ -476,8 +552,10 @@

    Reset the counter to the initial value.

    Implemented as
    Parameters
    @@ -501,8 +579,10 @@

    Enables input capture.

    Implemented as
    Parameters
    @@ -526,8 +606,10 @@

    Disables input capture.

    Implemented as
    Parameters
    @@ -552,8 +634,10 @@

    Set the time until the timer expires. See implementation for details of period update timing.

    Implemented as
    Note
    Timer expiration may or may not generate a CPU interrupt based on how the timer is configured in timer_api_t::open.
    @@ -580,8 +664,10 @@

    Sets the number of counts for the pin level to be high. If the timer is counting, the updated duty cycle is reflected after the next timer expiration.

    Implemented as
    Parameters
    @@ -607,8 +693,10 @@

    Stores timer information in p_info.

    Implemented as
    Parameters
    @@ -633,8 +721,10 @@

    Get the current counter value and timer state and store it in p_status.

    Implemented as
    Parameters
    @@ -659,8 +749,10 @@

    Specify callback function and optional context pointer and working memory pointer.

    Implemented as
    Parameters
    @@ -687,8 +779,10 @@

    Allows driver to be reconfigured and may reduce power consumption.

    Implemented as
    Parameters
    @@ -752,8 +846,10 @@

    Timer control block. Allocate an instance specific control block to pass into the timer API calls.

    Implemented as
    @@ -783,6 +879,18 @@

    TIMER_EVENT_TROUGH 

    Timer trough event (counter is 0, triangle-wave PWM only.

    TIMER_EVENT_OUTPUT_COMPARE_0 

    An output has occurred on signal 0.

    +
    TIMER_EVENT_OUTPUT_COMPARE_1 

    An output has occurred on signal 1.

    +
    TIMER_EVENT_DEAD_TIME 

    Dead time event.

    +
    TIMER_EVENT_CAPTURE_U 

    A capture has occurred on signal U.

    +
    TIMER_EVENT_CAPTURE_V 

    A capture has occurred on signal V.

    +
    TIMER_EVENT_CAPTURE_W 

    A capture has occurred on signal W.

    +
    @@ -848,10 +956,14 @@

    TIMER_MODE_PWM 

    Timer generates saw-wave PWM output.

    +TIMER_MODE_ONE_SHOT_PULSE 

    Saw-wave one-shot pulse mode (fixed buffer operation).

    + TIMER_MODE_TRIANGLE_WAVE_SYMMETRIC_PWM 

    Timer generates symmetric triangle-wave PWM output.

    TIMER_MODE_TRIANGLE_WAVE_ASYMMETRIC_PWM 

    Timer generates asymmetric triangle-wave PWM output.

    +TIMER_MODE_TRIANGLE_WAVE_ASYMMETRIC_PWM_MODE3 

    Timer generates Asymmetric Triangle-wave PWM output. In PWM mode 3, the duty cycle does not need to be updated at each tough/crest interrupt. Instead, the trough and crest duty cycle values can be set once and only need to be updated when the application needs to change the duty cycle.

    +

    @@ -908,6 +1020,8 @@

    TIMER_SOURCE_DIV_256 

    Timer clock source divided by 256.

    +TIMER_SOURCE_DIV_512 

    Timer clock source divided by 512.

    + TIMER_SOURCE_DIV_1024 

    Timer clock source divided by 1024.

    @@ -920,7 +1034,7 @@

      - +

    diff --git a/group___t_i_m_e_r___a_p_i.js b/group___t_i_m_e_r___a_p_i.js index f5e0d56..8fa1e22 100644 --- a/group___t_i_m_e_r___a_p_i.js +++ b/group___t_i_m_e_r___a_p_i.js @@ -51,7 +51,13 @@ var group___t_i_m_e_r___a_p_i = [ "TIMER_EVENT_CREST", "group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba73d4afde72c0b28a768c8e6d25c050f8", null ], [ "TIMER_EVENT_CAPTURE_A", "group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba4bc1252f63147f4a01f7b7ba88afac1d", null ], [ "TIMER_EVENT_CAPTURE_B", "group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebab7b635fbf34ede5a3e2f55b5a60ac21b", null ], - [ "TIMER_EVENT_TROUGH", "group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba83cb2de8ac629fcd95525e94b94089f0", null ] + [ "TIMER_EVENT_TROUGH", "group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba83cb2de8ac629fcd95525e94b94089f0", null ], + [ "TIMER_EVENT_OUTPUT_COMPARE_0", "group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba5935edbb3d0b6d8b6f74a8402e758adf", null ], + [ "TIMER_EVENT_OUTPUT_COMPARE_1", "group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba1618c4f47f889499fe72ef5a3c2cf4eb", null ], + [ "TIMER_EVENT_DEAD_TIME", "group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba83346d837d9c89b9b1bed8c9a0078660", null ], + [ "TIMER_EVENT_CAPTURE_U", "group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebadc420bfc9860b5d461f10e557f9bb043", null ], + [ "TIMER_EVENT_CAPTURE_V", "group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba25cd94f46448cd5938f32c6a25438091", null ], + [ "TIMER_EVENT_CAPTURE_W", "group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba58d231c0801a39b29b761e77dbdae2cf", null ] ] ], [ "timer_variant_t", "group___t_i_m_e_r___a_p_i.html#gaa3525eef2e1fa1bc8809b2d3aaf0de5d", [ [ "TIMER_VARIANT_32_BIT", "group___t_i_m_e_r___a_p_i.html#ggaa3525eef2e1fa1bc8809b2d3aaf0de5da7dddd2791567467dc7bcf74ca2fc2cbb", null ], @@ -65,8 +71,10 @@ var group___t_i_m_e_r___a_p_i = [ "TIMER_MODE_PERIODIC", "group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a78838cf8d728f8c64bb8012d522d1e2e", null ], [ "TIMER_MODE_ONE_SHOT", "group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a140f07675d67258a7ca9a95a9a793e3a", null ], [ "TIMER_MODE_PWM", "group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2aca44e952a6930f39ac05393522392eac", null ], + [ "TIMER_MODE_ONE_SHOT_PULSE", "group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2afe99f13968cabc479896dfd0bc67fb6a", null ], [ "TIMER_MODE_TRIANGLE_WAVE_SYMMETRIC_PWM", "group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a6a3c462f9e9cc1b26ab68f38efd79b14", null ], - [ "TIMER_MODE_TRIANGLE_WAVE_ASYMMETRIC_PWM", "group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a204001ad413e9ad0db08a66d004a555a", null ] + [ "TIMER_MODE_TRIANGLE_WAVE_ASYMMETRIC_PWM", "group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a204001ad413e9ad0db08a66d004a555a", null ], + [ "TIMER_MODE_TRIANGLE_WAVE_ASYMMETRIC_PWM_MODE3", "group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2aa2eb9fa5372856039d5d53dfbbbe6040", null ] ] ], [ "timer_direction_t", "group___t_i_m_e_r___a_p_i.html#ga8d600bb7885c5490bb7e8f989aa2ff83", [ [ "TIMER_DIRECTION_DOWN", "group___t_i_m_e_r___a_p_i.html#gga8d600bb7885c5490bb7e8f989aa2ff83a6a5c25392297a9e6adcc2a31d210e654", null ], @@ -82,6 +90,7 @@ var group___t_i_m_e_r___a_p_i = [ "TIMER_SOURCE_DIV_64", "group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada1cc7525fed9c5374c3a530e17453e670", null ], [ "TIMER_SOURCE_DIV_128", "group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada8828520a3958955a4e2835785787c801", null ], [ "TIMER_SOURCE_DIV_256", "group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada6680e947eb6455f9d0ee007645ea707d", null ], + [ "TIMER_SOURCE_DIV_512", "group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada2bcc6bb5346907da7e45b74449588132", null ], [ "TIMER_SOURCE_DIV_1024", "group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adaee99148dc7c32f0764c7cb3b3e45ca30", null ] ] ] ]; \ No newline at end of file diff --git a/group___t_r_a_n_s_f_e_r___a_p_i.html b/group___t_r_a_n_s_f_e_r___a_p_i.html index 0575da1..4ff78d8 100644 --- a/group___t_r_a_n_s_f_e_r___a_p_i.html +++ b/group___t_r_a_n_s_f_e_r___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Transfer Interface +RZV Flexible Software Package Documentation: Transfer Interface @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + + + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Data Structures | @@ -103,7 +171,9 @@

    Summary

    The transfer interface supports background data transfer (no CPU intervention).

    -

    Implemented by:

    +

    Implemented by:

    @@ -203,36 +273,100 @@

    Data Structures

    +union transfer_info_t +void const *volatile +Source pointer.

    Source address.

    + +void *volatile +Destination pointer.

    Destination address.

    + + + + + + + + + + + + + +volatile uint32_t + + + + + + + + + + + + + + +
    Data Fields
    -union transfer_info_t __unnamed__
    -void const *volatile p_src -Source pointer.
    -void *volatile p_dest -Destination pointer.
    volatile uint16_t num_blocks -

    Number of blocks to transfer when using TRANSFER_MODE_BLOCK (both DTC an DMAC) and TRANSFER_MODE_REPEAT (DMAC only), unused in other modes.

    +

    Number of blocks to transfer when using TRANSFER_MODE_BLOCK (both DTC an DMAC) or TRANSFER_MODE_REPEAT (DMAC only) or TRANSFER_MODE_REPEAT_BLOCK (DMAC only), unused in other modes.

    +
    +volatile uint16_t +length +

    Length of each transfer. Range limited for TRANSFER_MODE_BLOCK, TRANSFER_MODE_REPEAT, and TRANSFER_MODE_REPEAT_BLOCK see HAL driver for details.

    +

    The total number of transfer bytes.

    +
    +transfer_addr_mode_t +dest_addr_mode +

    Select what happens to destination address after each transfer.

    +
    +transfer_addr_mode_t +src_addr_mode +

    Select what happens to source address after each transfer.

    +
    +transfer_mode_t +mode +

    Select mode from transfer_mode_t.

    -volatile uint16_t length -

    Length of each transfer. Range limited for TRANSFER_MODE_BLOCK and TRANSFER_MODE_REPEAT, see HAL driver for details.

    +

    The total number of transfer bytes.

    +
    +transfer_size_t +src_size +

    Select source data size to transfer at once.

    +
    +transfer_size_t +dest_size +

    Select destination data size to transfer at once.

    +
    +void const * +p_next1_src +

    Next1 Register set settings

    +
    +void * +p_next1_dest +
    +uint32_t +next1_length
    @@ -301,6 +435,8 @@

    &   fsp_err_t(* close )(transfer_ctrl_t *const p_ctrl)   +fsp_err_t(* reload )(transfer_ctrl_t *const p_ctrl, void const *p_src, void *p_dest, uint32_t const num_transfers) + 

    Field Documentation

    @@ -314,7 +450,10 @@

    -

    Initial configuration.

    Implemented as
    +

    Initial configuration.

    Implemented as
    +
    Parameters
    @@ -336,7 +475,10 @@

    -

    Reconfigure the transfer. Enable the transfer if p_info is valid.

    Implemented as
    +

    Reconfigure the transfer. Enable the transfer if p_info is valid.

    Implemented as
    +
    Parameters

    [in,out]p_ctrlPointer to control block. Must be declared by user. Elements set here.
    @@ -358,7 +500,10 @@

    -

    Reset source address pointer, destination address pointer, and/or length, keeping all other settings the same. Enable the transfer if p_src, p_dest, and length are valid.

    Implemented as
    +

    Reset source address pointer, destination address pointer, and/or length, keeping all other settings the same. Enable the transfer if p_src, p_dest, and length are valid.

    Implemented as
    +
    Parameters

    [in,out]p_ctrlPointer to control block. Must be declared by user. Elements set here.
    @@ -382,7 +527,10 @@

    -

    Enable transfer. Transfers occur after the activation source event (or when transfer_api_t::softwareStart is called if ELC_EVENT_ELC_NONE is chosen as activation source).

    Implemented as
    +

    Enable transfer. Transfers occur after the activation source event (or when transfer_api_t::softwareStart is called if no peripheral event is chosen as activation source).

    Implemented as
    +
    Parameters

    [in]p_ctrlControl block set in transfer_api_t::open call for this transfer.
    @@ -403,8 +551,11 @@

    -

    Disable transfer. Transfers do not occur after the activation source event (or when transfer_api_t::softwareStart is called if ELC_EVENT_ELC_NONE is chosen as the DMAC activation source).

    Note
    If a transfer is in progress, it will be completed. Subsequent transfer requests do not cause a transfer.
    -
    Implemented as
    +

    Disable transfer. Transfers do not occur after the activation source event (or when transfer_api_t::softwareStart is called if no peripheral event is chosen as the DMAC activation source).

    Note
    If a transfer is in progress, it will be completed. Subsequent transfer requests do not cause a transfer.
    +
    Implemented as
    +
    Parameters

    [in]p_ctrlControl block set in transfer_api_t::open call for this transfer.
    @@ -425,9 +576,12 @@

    -

    Start transfer in software.

    Warning
    Only works if ELC_EVENT_ELC_NONE is chosen as the DMAC activation source.
    +

    Start transfer in software.

    Warning
    Only works if no peripheral event is chosen as the DMAC activation source.
    Note
    Not supported for DTC.
    -
    Implemented as
    +
    Implemented as
    +
    Parameters

    [in]p_ctrlControl block set in transfer_api_t::open call for this transfer.
    @@ -452,8 +606,11 @@

    Note
    Not supported for DTC.
    Only applies for transfers started with TRANSFER_START_MODE_REPEAT.
    -
    Warning
    Only works if ELC_EVENT_ELC_NONE is chosen as the DMAC activation source.
    -
    Implemented as
    +
    Warning
    Only works if no peripheral event is chosen as the DMAC activation source.
    +
    Implemented as
    +
    Parameters

    [in]p_ctrlControl block set in transfer_api_t::open call for this transfer.
    @@ -474,7 +631,10 @@

    -

    Provides information about this transfer.

    Implemented as
    +

    Provides information about this transfer.

    Implemented as
    +
    Parameters

    [in]p_ctrlControl block set in transfer_api_t::open call for this transfer.
    @@ -496,10 +656,40 @@

    -

    Releases hardware lock. This allows a transfer to be reconfigured using transfer_api_t::open.

    Implemented as
    +

    Releases hardware lock. This allows a transfer to be reconfigured using transfer_api_t::open.

    Implemented as
    +
    +
    Parameters
    +

    [in]p_ctrlControl block set in transfer_api_t::open call for this transfer.
    + +
    [in]p_ctrlControl block set in transfer_api_t::open call for this transfer.
    +
    +
    + +

    +
    + +

    ◆ reload

    + +
    +
    + + + + +
    fsp_err_t(* transfer_api_t::reload) (transfer_ctrl_t *const p_ctrl, void const *p_src, void *p_dest, uint32_t const num_transfers)
    +
    +

    To update next transfer information without interruption during transfer. Allow further transfer continuation.

    Implemented as
    +
    Parameters
    + + +
    [in]p_ctrlControl block set in transfer_api_t::open call for this transfer.
    [in]p_srcPointer to source. Set to NULL if source pointer should not change.
    [in]p_destPointer to destination. Set to NULL if destination pointer should not change.
    [in]num_transfersTransfer length in normal mode or block mode.
    @@ -558,8 +748,7 @@

    Transfer control block. Allocate an instance specific control block to pass into the transfer API calls.

    Implemented as
    @@ -579,11 +768,21 @@

    Transfer mode describes what will happen when a transfer request occurs.

    - + + + + - - +
    Enumerator
    TRANSFER_MODE_NORMAL 

    In normal mode, each transfer request causes a transfer of transfer_size_t from the source pointer to the destination pointer. The transfer length is decremented and the source and address pointers are updated according to transfer_addr_mode_t. After the transfer length reaches 0, transfer requests will not cause any further transfers.

    +
    Enumerator
    TRANSFER_MODE_NORMAL 

    In normal mode, each transfer request causes a transfer of transfer_size_t from the source pointer to the destination pointer. The transfer length is decremented and the source and address pointers are updated according to transfer_addr_mode_t. After the transfer length reaches 0, transfer requests will not cause any further transfers.

    +
    TRANSFER_MODE_REPEAT 

    Repeat mode is like normal mode, except that when the transfer length reaches 0, the pointer to the repeat area and the transfer length will be reset to their initial values. If DMAC is used, the transfer repeats only transfer_info_t::num_blocks times. After the transfer repeats transfer_info_t::num_blocks times, transfer requests will not cause any further transfers. If DTC is used, the transfer repeats continuously (no limit to the number of repeat transfers).

    +
    TRANSFER_MODE_BLOCK 

    In block mode, each transfer request causes transfer_info_t::length transfers of transfer_size_t. After each individual transfer, the source and destination pointers are updated according to transfer_addr_mode_t. After the block transfer is complete, transfer_info_t::num_blocks is decremented. After the transfer_info_t::num_blocks reaches 0, transfer requests will not cause any further transfers.

    +
    TRANSFER_MODE_REPEAT_BLOCK 

    In addition to block mode features, repeat-block mode supports a ring buffer of blocks and offsets within a block (to split blocks into arrays of their first data, second data, etc.)

    +
    TRANSFER_MODE_NORMAL 

    Normal mode.

    TRANSFER_MODE_REPEAT 

    Repeat mode is like normal mode, except that when the transfer length reaches 0, the pointer to the repeat area and the transfer length will be reset to their initial values. If DMAC is used, the transfer repeats only transfer_info_t::num_blocks times. After the transfer repeats transfer_info_t::num_blocks times, transfer requests will not cause any further transfers. If DTC is used, the transfer repeats continuously (no limit to the number of repeat transfers).

    +
    TRANSFER_MODE_BLOCK 

    Block mode.

    TRANSFER_MODE_BLOCK 

    In block mode, each transfer request causes transfer_info_t::length transfers of transfer_size_t. After each individual transfer, the source and destination pointers are updated according to transfer_addr_mode_t. After the block transfer is complete, transfer_info_t::num_blocks is decremented. After the transfer_info_t::num_blocks reaches 0, transfer requests will not cause any further transfers.

    +
    TRANSFER_MODE_NORMAL 

    Normal mode.

    +
    TRANSFER_MODE_BLOCK 

    Block mode.

    @@ -602,11 +801,43 @@

    Transfer size specifies the size of each individual transfer. Total transfer length = transfer_size_t * transfer_length_t

    - + + + + + + - - + + + + + + + + + +
    Enumerator
    TRANSFER_SIZE_1_BYTE 

    Each transfer transfers a 8-bit value.

    +
    Enumerator
    TRANSFER_SIZE_1_BYTE 

    Each transfer transfers a 8-bit value.

    +
    TRANSFER_SIZE_2_BYTE 

    Each transfer transfers a 16-bit value.

    +
    TRANSFER_SIZE_4_BYTE 

    Each transfer transfers a 32-bit value.

    +
    TRANSFER_SIZE_1_BYTE 

    Each transfer transfers a 8-bit value.

    +
    TRANSFER_SIZE_2_BYTE 

    Each transfer transfers a 16-bit value.

    +
    TRANSFER_SIZE_4_BYTE 

    Each transfer transfers a 32-bit value.

    +
    TRANSFER_SIZE_8_BYTE 

    Each transfer transfers a 64-bit value.

    TRANSFER_SIZE_2_BYTE 

    Each transfer transfers a 16-bit value.

    +
    TRANSFER_SIZE_16_BYTE 

    Each transfer transfers a 128-bit value.

    TRANSFER_SIZE_4_BYTE 

    Each transfer transfers a 32-bit value.

    +
    TRANSFER_SIZE_32_BYTE 

    Each transfer transfers a 256-bit value.

    +
    TRANSFER_SIZE_64_BYTE 

    Each transfer transfers a 512-bit value.

    +
    TRANSFER_SIZE_128_BYTE 

    Each transfer transfers a 1024-bit value.

    +
    TRANSFER_SIZE_1_BYTE 

    Each transfer transfers a 8-bit value.

    +
    TRANSFER_SIZE_2_BYTE 

    Each transfer transfers a 16-bit value.

    +
    TRANSFER_SIZE_4_BYTE 

    Each transfer transfers a 32-bit value.

    +
    TRANSFER_SIZE_8_BYTE 

    Each transfer transfers a 64-bit value.

    +
    TRANSFER_SIZE_16_BYTE 

    Each transfer transfers a 128-bit value.

    +
    TRANSFER_SIZE_32_BYTE 

    Each transfer transfers a 256-bit value.

    +
    TRANSFER_SIZE_64_BYTE 

    Each transfer transfers a 512-bit value.

    +
    TRANSFER_SIZE_128_BYTE 

    Each transfer transfers a 1024-bit value.

    @@ -625,13 +856,21 @@

    Address mode specifies whether to modify (increment or decrement) pointer after each transfer.

    - + + + + - - -
    Enumerator
    TRANSFER_ADDR_MODE_FIXED 

    Address pointer remains fixed after each transfer.

    +
    Enumerator
    TRANSFER_ADDR_MODE_FIXED 

    Address pointer remains fixed after each transfer.

    +
    TRANSFER_ADDR_MODE_OFFSET 

    Offset is added to the address pointer after each transfer.

    +
    TRANSFER_ADDR_MODE_INCREMENTED 

    Address pointer is incremented by associated transfer_size_t after each transfer.

    +
    TRANSFER_ADDR_MODE_DECREMENTED 

    Address pointer is decremented by associated transfer_size_t after each transfer.

    +
    TRANSFER_ADDR_MODE_INCREMENTED 

    Address pointer is incremented by associated transfer_size_t after each transfer.

    TRANSFER_ADDR_MODE_OFFSET 

    Offset is added to the address pointer after each transfer.

    +
    TRANSFER_ADDR_MODE_FIXED 

    Address pointer remains fixed after each transfer.

    TRANSFER_ADDR_MODE_INCREMENTED 

    Address pointer is incremented by associated transfer_size_t after each transfer.

    +
    TRANSFER_ADDR_MODE_INCREMENTED 

    Address pointer is incremented by associated transfer_size_t after each transfer.

    TRANSFER_ADDR_MODE_DECREMENTED 

    Address pointer is decremented by associated transfer_size_t after each transfer.

    +
    TRANSFER_ADDR_MODE_FIXED 

    Address pointer remains fixed after each transfer.

    @@ -648,11 +887,11 @@

    -

    Repeat area options (source or destination). In TRANSFER_MODE_REPEAT, the selected pointer returns to its original value after transfer_info_t::length transfers. In TRANSFER_MODE_BLOCK, the selected pointer returns to its original value after each transfer.

    +

    Repeat area options (source or destination). In TRANSFER_MODE_REPEAT, the selected pointer returns to its original value after transfer_info_t::length transfers. In TRANSFER_MODE_BLOCK and TRANSFER_MODE_REPEAT_BLOCK, the selected pointer returns to its original value after each transfer.

    - -
    Enumerator
    TRANSFER_REPEAT_AREA_DESTINATION 

    Destination area repeated in TRANSFER_MODE_REPEAT or TRANSFER_MODE_BLOCK.

    +
    Enumerator
    TRANSFER_REPEAT_AREA_DESTINATION 

    Destination area repeated in TRANSFER_MODE_REPEAT or TRANSFER_MODE_BLOCK or TRANSFER_MODE_REPEAT_BLOCK.

    TRANSFER_REPEAT_AREA_SOURCE 

    Source area repeated in TRANSFER_MODE_REPEAT or TRANSFER_MODE_BLOCK.

    +
    TRANSFER_REPEAT_AREA_SOURCE 

    Source area repeated in TRANSFER_MODE_REPEAT or TRANSFER_MODE_BLOCK or TRANSFER_MODE_REPEAT_BLOCK.

    @@ -729,7 +968,7 @@

      - +

    diff --git a/group___t_r_a_n_s_f_e_r___a_p_i.js b/group___t_r_a_n_s_f_e_r___a_p_i.js index 04613f4..ca58c18 100644 --- a/group___t_r_a_n_s_f_e_r___a_p_i.js +++ b/group___t_r_a_n_s_f_e_r___a_p_i.js @@ -7,10 +7,17 @@ var group___t_r_a_n_s_f_e_r___a_p_i = [ "transfer_length_remaining", "group___t_r_a_n_s_f_e_r___a_p_i.html#afd44a3b34e332d28d7573865c58b00df", null ] ] ], [ "transfer_info_t", "group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__info__t", [ - [ "p_src", "group___t_r_a_n_s_f_e_r___a_p_i.html#ad264d20a1b0afc0100c2e3b1d5a1a1c8", null ], - [ "p_dest", "group___t_r_a_n_s_f_e_r___a_p_i.html#a176dc2f3d1edfc321fa248a7e4c3b549", null ], + [ "p_src", "group___t_r_a_n_s_f_e_r___a_p_i.html#a197ef7d84898829f988dca88fc9e481c", null ], + [ "p_dest", "group___t_r_a_n_s_f_e_r___a_p_i.html#acc20817272cf1db573a1dbc54a9cb3bf", null ], [ "num_blocks", "group___t_r_a_n_s_f_e_r___a_p_i.html#a9781e58bb7cb2ee40de446936d523814", null ], - [ "length", "group___t_r_a_n_s_f_e_r___a_p_i.html#aa92c5d06d07e7d13c16f9704a431c7cb", null ] + [ "length", "group___t_r_a_n_s_f_e_r___a_p_i.html#a5aba602d71a6ba4e6be056a90b5ed9e8", null ], + [ "dest_addr_mode", "group___t_r_a_n_s_f_e_r___a_p_i.html#a9e39c449b5d1f8a957b833833c7da06b", null ], + [ "src_addr_mode", "group___t_r_a_n_s_f_e_r___a_p_i.html#a1a73c1297d04667da6b2103db34f88ad", null ], + [ "mode", "group___t_r_a_n_s_f_e_r___a_p_i.html#ae3cc32eab1926d03875e2c9fa4e6190b", null ], + [ "length", "group___t_r_a_n_s_f_e_r___a_p_i.html#a5aba602d71a6ba4e6be056a90b5ed9e8", null ], + [ "src_size", "group___t_r_a_n_s_f_e_r___a_p_i.html#a354b4d97746d9393110fc679d466ad99", null ], + [ "dest_size", "group___t_r_a_n_s_f_e_r___a_p_i.html#a023152eeec3dda49c43b0a5576b07881", null ], + [ "p_next1_src", "group___t_r_a_n_s_f_e_r___a_p_i.html#a07ff7ab703d6c6e5f3e2fdeabce7519a", null ] ] ], [ "transfer_cfg_t", "group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__cfg__t", [ [ "p_info", "group___t_r_a_n_s_f_e_r___a_p_i.html#af99b114594ac2d55aae0c9e11f703164", null ], @@ -25,7 +32,8 @@ var group___t_r_a_n_s_f_e_r___a_p_i = [ "softwareStart", "group___t_r_a_n_s_f_e_r___a_p_i.html#a394ddea028013153254bafa12115dce2", null ], [ "softwareStop", "group___t_r_a_n_s_f_e_r___a_p_i.html#a77207de2ae81eab58858fd28ae88df06", null ], [ "infoGet", "group___t_r_a_n_s_f_e_r___a_p_i.html#ad18824ffdf72b5e6a0c588289620fc84", null ], - [ "close", "group___t_r_a_n_s_f_e_r___a_p_i.html#ade5973e7a8e994f9146e0db84bee8bf4", null ] + [ "close", "group___t_r_a_n_s_f_e_r___a_p_i.html#ade5973e7a8e994f9146e0db84bee8bf4", null ], + [ "reload", "group___t_r_a_n_s_f_e_r___a_p_i.html#a3af1d98295baf9bd92251f55c95f8868", null ] ] ], [ "transfer_instance_t", "group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__instance__t", [ [ "p_ctrl", "group___t_r_a_n_s_f_e_r___a_p_i.html#a655547e7bbc2c8be77ac085f3417a389", null ], @@ -34,20 +42,45 @@ var group___t_r_a_n_s_f_e_r___a_p_i = ] ], [ "transfer_ctrl_t", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga665f80fc984ccf7585606be8eeccbb98", null ], [ "transfer_mode_t", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992f", [ - [ "TRANSFER_MODE_NORMAL", "group___t_r_a_n_s_f_e_r___a_p_i.html#ggadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d", null ], - [ "TRANSFER_MODE_REPEAT", "group___t_r_a_n_s_f_e_r___a_p_i.html#ggadfb7c2a6a73bfdf993e50505aa92992fa607c41bfd08797c08a5ee9bd4dfb9c8b", null ], - [ "TRANSFER_MODE_BLOCK", "group___t_r_a_n_s_f_e_r___a_p_i.html#ggadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55", null ] + [ "TRANSFER_MODE_NORMAL", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d", null ], + [ "TRANSFER_MODE_REPEAT", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fa607c41bfd08797c08a5ee9bd4dfb9c8b", null ], + [ "TRANSFER_MODE_BLOCK", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55", null ], + [ "TRANSFER_MODE_REPEAT_BLOCK", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fafb43c6e62b61f0dbb9a5bcd5575e79e2", null ], + [ "TRANSFER_MODE_NORMAL", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d", null ], + [ "TRANSFER_MODE_BLOCK", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55", null ], + [ "TRANSFER_MODE_NORMAL", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d", null ], + [ "TRANSFER_MODE_BLOCK", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55", null ] ] ], [ "transfer_size_t", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12", [ - [ "TRANSFER_SIZE_1_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#gga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21", null ], - [ "TRANSFER_SIZE_2_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#gga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f", null ], - [ "TRANSFER_SIZE_4_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#gga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412", null ] + [ "TRANSFER_SIZE_1_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21", null ], + [ "TRANSFER_SIZE_2_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f", null ], + [ "TRANSFER_SIZE_4_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412", null ], + [ "TRANSFER_SIZE_1_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21", null ], + [ "TRANSFER_SIZE_2_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f", null ], + [ "TRANSFER_SIZE_4_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412", null ], + [ "TRANSFER_SIZE_8_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a5bb02177f10ea6a06f9fdf3d8f353d6f", null ], + [ "TRANSFER_SIZE_16_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a12fac298210b545231c2c38dfafd07a0", null ], + [ "TRANSFER_SIZE_32_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a7568398002399c1e898dab6f8e8a0418", null ], + [ "TRANSFER_SIZE_64_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a4284e820735faa08a0702f0d430f2924", null ], + [ "TRANSFER_SIZE_128_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12aa5cbd2b9aced79bfb6b5858f8ebbe011", null ], + [ "TRANSFER_SIZE_1_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21", null ], + [ "TRANSFER_SIZE_2_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f", null ], + [ "TRANSFER_SIZE_4_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412", null ], + [ "TRANSFER_SIZE_8_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a5bb02177f10ea6a06f9fdf3d8f353d6f", null ], + [ "TRANSFER_SIZE_16_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a12fac298210b545231c2c38dfafd07a0", null ], + [ "TRANSFER_SIZE_32_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a7568398002399c1e898dab6f8e8a0418", null ], + [ "TRANSFER_SIZE_64_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a4284e820735faa08a0702f0d430f2924", null ], + [ "TRANSFER_SIZE_128_BYTE", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12aa5cbd2b9aced79bfb6b5858f8ebbe011", null ] ] ], [ "transfer_addr_mode_t", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51", [ - [ "TRANSFER_ADDR_MODE_FIXED", "group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47", null ], - [ "TRANSFER_ADDR_MODE_OFFSET", "group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51ab8b3f8ce28fb6f7a57a1b87db0d612c2", null ], - [ "TRANSFER_ADDR_MODE_INCREMENTED", "group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad", null ], - [ "TRANSFER_ADDR_MODE_DECREMENTED", "group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51a56a87e1587844119831414f3d5e6d761", null ] + [ "TRANSFER_ADDR_MODE_FIXED", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47", null ], + [ "TRANSFER_ADDR_MODE_OFFSET", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51ab8b3f8ce28fb6f7a57a1b87db0d612c2", null ], + [ "TRANSFER_ADDR_MODE_INCREMENTED", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad", null ], + [ "TRANSFER_ADDR_MODE_DECREMENTED", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a56a87e1587844119831414f3d5e6d761", null ], + [ "TRANSFER_ADDR_MODE_INCREMENTED", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad", null ], + [ "TRANSFER_ADDR_MODE_FIXED", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47", null ], + [ "TRANSFER_ADDR_MODE_INCREMENTED", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad", null ], + [ "TRANSFER_ADDR_MODE_FIXED", "group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47", null ] ] ], [ "transfer_repeat_area_t", "group___t_r_a_n_s_f_e_r___a_p_i.html#ga769464d2068881ccb44573c96167812b", [ [ "TRANSFER_REPEAT_AREA_DESTINATION", "group___t_r_a_n_s_f_e_r___a_p_i.html#gga769464d2068881ccb44573c96167812ba77aeeab30b003de23742e40a57f19239", null ], diff --git a/group___t_s_u___b.html b/group___t_s_u___b.html new file mode 100644 index 0000000..bb7a7ec --- /dev/null +++ b/group___t_s_u___b.html @@ -0,0 +1,980 @@ + + + + + + + +RZV Flexible Software Package Documentation: Temperature Sensor Unit (r_tsu_b) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Temperature Sensor Unit (r_tsu_b)
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_TSU_B_Open (adc_ctrl_t *p_ctrl, adc_cfg_t const *const p_cfg)
     
    fsp_err_t R_TSU_B_ScanCfg (adc_ctrl_t *p_ctrl, void const *const p_channel_cfg)
     
    fsp_err_t R_TSU_B_ScanStart (adc_ctrl_t *p_ctrl)
     
    fsp_err_t R_TSU_B_ScanGroupStart (adc_ctrl_t *p_ctrl, adc_group_mask_t group_id)
     
    fsp_err_t R_TSU_B_ScanStop (adc_ctrl_t *p_ctrl)
     
    fsp_err_t R_TSU_B_StatusGet (adc_ctrl_t *p_ctrl, adc_status_t *p_status)
     
    fsp_err_t R_TSU_B_Read (adc_ctrl_t *p_ctrl, adc_channel_t const reg_id, uint16_t *const p_data)
     
    fsp_err_t R_TSU_B_Read32 (adc_ctrl_t *p_ctrl, adc_channel_t const reg_id, uint32_t *const p_data)
     
    fsp_err_t R_TSU_B_Close (adc_ctrl_t *p_ctrl)
     
    fsp_err_t R_TSU_B_InfoGet (adc_ctrl_t *p_ctrl, adc_info_t *p_adc_info)
     
    fsp_err_t R_TSU_B_Calibrate (adc_ctrl_t *const p_ctrl, void const *p_extend)
     
    fsp_err_t R_TSU_B_OffsetSet (adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, int32_t offset)
     
    fsp_err_t R_TSU_B_CallbackSet (adc_ctrl_t *const p_api_ctrl, void(*p_callback)(adc_callback_args_t *), void const *const p_context, adc_callback_args_t *const p_callback_memory)
     
    fsp_err_t R_TSU_B_CalculateTemperature (adc_ctrl_t *p_ctrl, uint16_t temperature_code, float *const p_temperature)
     
    +

    Detailed Description

    +

    Driver for the TSU peripheral on RZ microprocessor. This module implements the ADC Interface.

    +

    +Overview

    +

    +Features

    +

    The TSU module supports the following features: *1

    +
      +
    • Temperature code reading function
    • +
    • Temperature code averaging function
    • +
    • Comparison with the upper and lower limit settings
    • +
    • Interrupt function
    • +
    • Conversion start trigger (by software and by an ELC trigger)
    • +
    • Single scan
    • +
    +

    *1 This driver only supports Cortex-M33.

    +

    +Configuration

    +

    Build Time Configurations for r_tsu_b

    +The following build time configurations are defined in fsp_cfg/r_tsu_b_cfg.h:
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    +

    Configurations for Analog > ADC Driver on r_tsu_b

    +This module can be added to the Stacks tab via New Stack > Analog > ADC Driver on r_tsu_b.
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    General > NameName must be a valid C symbolg_tsu0 Module name
    General > UnitUnit must be a non-negative integer0 Specifies the TSU_B Unit to be used.
    General > Average Count
      +
    • +1(Latest read data)
    • +
    • +2
    • +
    • +4
    • +
    • +8
    • +
    +
    1(Latest read data) Average Count Setting.
    General > Trigger mode
      +
    • +Software
    • +
    • +ELC Trigger
    • +
    +
    Software Select the trigger mode.
    General > ELC EventMCU Specific OptionsSpecifies the ELC trigger to be used for this unit.
    Comparison Function > Compare Mode
      +
    • +Disabled
    • +
    • +Outside the range of the setting values
    • +
    • +Within the range of the setting values
    • +
    +
    Disabled Select the compare mode.
    Comparison Function > Lower Limit ValueValue must be between -40 and 12515 Lower Limit Setting (degrees Celsius).
    Comparison Function > Upper Limit ValueValue must be between -40 and 12525 Upper Limit Setting (degrees Celsius).
    Interrupts > CallbackName must be a valid C symbolNULL A user callback function can be provided here. If this callback function is provided, it is called from the interrupt service routine (ISR)
    Interrupts > Conversion Complete Interrupt EnableMCU Specific OptionsEnable or disable the conversion complete interrupt.
    Interrupts > Conversion Complete Interrupt PriorityValue must be between 0 and 25512 Select the interrupt priority for Conversion complete.
    Interrupts > Comparison Result Interrupt EnableMCU Specific OptionsEnable or disable the Comparison Result interrupt.
    Interrupts > Comparison Result Interrupt PriorityValue must be between 0 and 25512 Select the interrupt priority for Comparison Result.
    +

    +

    +Clock Configuration

    +

    The TSU_B clock is OSC. Fix the clock frequency of this unit to 24 MHz.

    +

    +Pin Configuration

    +

    This module does not use I/O pins.

    +

    +Usage Notes

    +

    Using the Temperature Sensor with the TSU

    +

    The TSU_B HAL module supports reading the data from the on-chip temperature sensor. The value returned by the sensor can be converted to degrees Celsius by calling R_TSU_B_CalculateTemperature.

    +

    Comparison function

    +

    This function compares the averaged temperature code and the values set by the LLIM[11:0] bits of the lower limit setting register and the ULIM[11:0] bits of the upper limit setting register. When a value meets the configured condition an interrupt can be produced.

    +

    +Examples

    +

    Basic Example

    +

    This is a basic example of minimal use of the TSU_B in an application.

    +
    const tsu_b_extended_cfg_t g_tsu0_cfg_extend =
    {
    .comparison_mode = TSU_B_COMPARE_CFG_DISABLE,
    .compare_ref_low = 0,
    .compare_ref_high = 0,
    .compare_irq = FSP_INVALID_VECTOR,
    .compare_ipl = 12,
    };
    const adc_cfg_t g_tsu0_cfg =
    {
    .unit = 0,
    .resolution = ADC_RESOLUTION_12_BIT,
    .p_callback = tsu_b_callback,
    .p_context = NULL,
    .p_extend = &g_tsu0_cfg_extend,
    .scan_end_irq = TSU0_S12TSUADI_IRQn,
    .scan_end_ipl = (12),
    };
    volatile bool scan_complete_flag = false;
    void tsu_b_callback (adc_callback_args_t * p_args)
    {
    scan_complete_flag = true;
    }
    void tsu_b_basic_example (void)
    {
    uint32_t calibration_data1;
    uint32_t calibration_data2;
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_TSU_B_Open(&g_tsu0_ctrl, &g_tsu0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Get Calibration data from the MCU if available. */
    adc_info_t tsu_info;
    err = R_TSU_B_InfoGet(&g_tsu0_ctrl, &tsu_info);
    assert(FSP_SUCCESS == err);
    calibration_data1 = tsu_info.calibration_data1;
    calibration_data2 = tsu_info.calibration_data2;
    /* Check the calibration data because of if the calibration data is an incorrect value, the temperature cannot be calculated correctly. */
    if ((calibration_data1 < TSU_B_EXAMPLE_CALIBRATION_DATA_LOWER_LIMIT) || (calibration_data1 > TSU_B_EXAMPLE_CALIBRATION_DATA_UPPER_LIMIT) || (calibration_data2 < TSU_B_EXAMPLE_CALIBRATION_DATA_LOWER_LIMIT) || (calibration_data2 > TSU_B_EXAMPLE_CALIBRATION_DATA_UPPER_LIMIT))
    {
    __BKPT(0);
    }
    /* In software trigger mode, start a scan by calling R_TSU_B_ScanStart(). In other modes, enable external
    * triggers by calling R_TSU_B_ScanStart(). */
    err = R_TSU_B_ScanStart(&g_tsu0_ctrl);
    assert(FSP_SUCCESS == err);
    /* Wait for conversion to complete. */
    while (!scan_complete_flag)
    {
    /* Wait for callback to set flag. */
    }
    /* Read converted data. */
    uint16_t conversion_result;
    err = R_TSU_B_Read(&g_tsu0_ctrl, 0, &conversion_result);
    assert(FSP_SUCCESS == err);
    /* Calculate temperature. */
    float temperature;
    err = R_TSU_B_CalculateTemperature(&g_tsu0_ctrl, conversion_result, &temperature);
    assert(FSP_SUCCESS == err);
    }

    Compare Example

    +

    This example shows how to configure the compare function at runtime as well as how to handle events and obtain comparison results through a callback.

    +
    const tsu_b_extended_cfg_t g_tsu0_cfg_extend =
    {
    .comparison_mode = TSU_B_COMPARE_CFG_INSIDE,
    .compare_ref_low = 20,
    .compare_ref_high = 30,
    .compare_irq = TSU0_S12TSUADCMPI_IRQn,
    .compare_ipl = (12),
    };
    const adc_cfg_t g_tsu0_cfg =
    {
    .unit = 0,
    .resolution = ADC_RESOLUTION_12_BIT,
    .p_callback = tsu_b_compare_callback,
    .p_context = NULL,
    .p_extend = &g_tsu_cfg_extend,
    .scan_end_irq = FSP_INVALID_VECTOR,
    .scan_end_ipl = (12),
    };
    fsp_err_t err = FSP_SUCCESS;
    void tsu_b_compare_callback (adc_callback_args_t * const p_unused)
    {
    (void) p_unused;
    /* Read converted data. */
    uint16_t conversion_result;
    float temperature;
    /* Read converted data. */
    err = R_TSU_B_Read(&g_tsu0_ctrl, 0, &conversion_result);
    assert(FSP_SUCCESS == err);
    /* Calculate temperature. */
    err = R_TSU_B_CalculateTemperature(&g_tsu0_ctrl, conversion_result, &temperature);
    assert(FSP_SUCCESS == err);
    }
    void tsu_b_compare_example (void)
    {
    uint32_t calibration_data1;
    uint32_t calibration_data2;
    /* Initializes the module. */
    err = R_TSU_B_Open(&g_tsu0_ctrl, &g_tsu0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Get Calibration data from the MCU if available. */
    adc_info_t tsu_info;
    err = R_TSU_B_InfoGet(&g_tsu0_ctrl, &tsu_info);
    assert(FSP_SUCCESS == err);
    calibration_data1 = tsu_info.calibration_data1;
    calibration_data2 = tsu_info.calibration_data2;
    /* Check the calibration data because of if the calibration data is an incorrect value, the temperature cannot be calculated correctly. */
    if ((calibration_data1 < TSU_B_EXAMPLE_CALIBRATION_DATA_LOWER_LIMIT) || (calibration_data1 > TSU_B_EXAMPLE_CALIBRATION_DATA_UPPER_LIMIT) || (calibration_data2 < TSU_B_EXAMPLE_CALIBRATION_DATA_LOWER_LIMIT) || (calibration_data2 > TSU_B_EXAMPLE_CALIBRATION_DATA_UPPER_LIMIT))
    {
    __BKPT(0);
    }
    /* In software trigger mode, start a scan by calling R_TSU_B_ScanStart(). In other modes, enable external
    * triggers by calling R_TSU_B_ScanStart(). */
    err = R_TSU_B_ScanStart(&g_tsu0_ctrl);
    assert(FSP_SUCCESS == err);
    while (1)
    ;
    }

    Get temperature Example

    +

    This example shows how to get the temperature multiple times and average it to calculate the temperature.

    +
    #define TSU_B_EXAMPLE_CONVERSION_COUNT (4)
    #define TSU_B_EXAMPLE_TEMPERATURE_LOWER_LIMIT (-41)
    #define TSU_B_EXAMPLE_TEMPERATURE_UPPER_LIMIT (125)
    #define TSU_B_EXAMPLE_CALIBRATION_DATA_LOWER_LIMIT (411)
    #define TSU_B_EXAMPLE_CALIBRATION_DATA_UPPER_LIMIT (3651)
    #define TSU_B_EXAMPLE_TEMPERATURE_POSITIVE_ERROR (5)
    #define TSU_B_EXAMPLE_TEMPERATURE_NEGATIVE_ERROR (-5)
    const tsu_b_extended_cfg_t g_tsu0_cfg_extend =
    {
    .comparison_mode = TSU_B_COMPARE_CFG_DISABLE,
    .compare_ref_low = 0,
    .compare_ref_high = 0,
    .compare_irq = FSP_INVALID_VECTOR,
    .compare_ipl = 12,
    };
    const adc_cfg_t g_tsu0_cfg =
    {
    .unit = 0,
    .resolution = ADC_RESOLUTION_12_BIT,
    .p_callback = tsu_b_callback,
    .p_context = NULL,
    .p_extend = &g_tsu0_cfg_extend,
    .scan_end_irq = TSU0_S12TSUADI_IRQn,
    .scan_end_ipl = (12),
    };
    volatile bool scan_complete_flag = false;
    void tsu_b_callback (adc_callback_args_t * p_args)
    {
    scan_complete_flag = true;
    }
    volatile bool timer_overflow_flag = false;
    void gpt_callback (timer_callback_args_t * p_args)
    {
    timer_overflow_flag = true;
    }
    void tsu_b_get_temperature_example (void)
    {
    uint32_t calibration_data1;
    uint32_t calibration_data2;
    uint8_t conversion_count = 0;
    float temperature_sum = 0.0;
    float Tj;
    uint16_t conversion_result[TSU_B_EXAMPLE_CONVERSION_COUNT];
    float temperature[TSU_B_EXAMPLE_CONVERSION_COUNT];
    fsp_err_t err = FSP_SUCCESS;
    /* Initializes the module. */
    err = R_TSU_B_Open(&g_tsu0_ctrl, &g_tsu0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Get Calibration data from the MCU if available. */
    adc_info_t tsu_info;
    err = R_TSU_B_InfoGet(&g_tsu0_ctrl, &tsu_info);
    assert(FSP_SUCCESS == err);
    calibration_data1 = tsu_info.calibration_data1;
    calibration_data2 = tsu_info.calibration_data2;
    /* Check the calibration data because of if the calibration data is an incorrect value, the temperature cannot be calculated correctly. */
    if ((calibration_data1 < TSU_B_EXAMPLE_CALIBRATION_DATA_LOWER_LIMIT) || (calibration_data1 > TSU_B_EXAMPLE_CALIBRATION_DATA_UPPER_LIMIT) || (calibration_data2 < TSU_B_EXAMPLE_CALIBRATION_DATA_LOWER_LIMIT) || (calibration_data2 > TSU_B_EXAMPLE_CALIBRATION_DATA_UPPER_LIMIT))
    {
    __BKPT(0);
    }
    while(conversion_count < TSU_B_EXAMPLE_CONVERSION_COUNT)
    {
    if(conversion_count == 0)
    {
    /* Initializes the GPT module. Set the period to 500ms. (This value becomes the temperature acquisition interval and can be changed by the user.) */
    err = R_GPT_Open(&g_timer0_ctrl, &g_timer0_cfg);
    assert(FSP_SUCCESS == err);
    /* Start the timer. */
    err = R_GPT_Start(&g_timer0_ctrl);
    assert(FSP_SUCCESS == err);
    }
    while (!timer_overflow_flag)
    {
    /* Wait for callback to set flag. */
    }
    timer_overflow_flag = false;
    /* In software trigger mode, start a scan by calling R_TSU_B_ScanStart(). */
    err = R_TSU_B_ScanStart(&g_tsu0_ctrl);
    assert(FSP_SUCCESS == err);
    /* Wait for conversion to complete. */
    while (!scan_complete_flag)
    {
    /* Wait for callback to set flag. */
    }
    scan_complete_flag = false;
    /* Read converted data. */
    err = R_TSU_B_Read(&g_tsu0_ctrl, 0, &conversion_result[conversion_count]);
    assert(FSP_SUCCESS == err);
    /* Calculate temperature. */
    err = R_TSU_B_CalculateTemperature(&g_tsu0_ctrl, conversion_result[conversion_count], &temperature[conversion_count]);
    assert(FSP_SUCCESS == err);
    /* Confirm that it is within the range of +125 degrees Celsius to -41 degrees Celsius and calculate the average value. */
    if((temperature[conversion_count] > TSU_B_EXAMPLE_TEMPERATURE_LOWER_LIMIT) && (temperature[conversion_count] < TSU_B_EXAMPLE_TEMPERATURE_UPPER_LIMIT))
    {
    temperature_sum += temperature[conversion_count];
    conversion_count++;
    }
    else
    {
    break;
    }
    }
    Tj = temperature_sum / TSU_B_EXAMPLE_CONVERSION_COUNT;
    /* Check that the initial value and Tj are within the error range. */
    if ((TSU_B_EXAMPLE_TEMPERATURE_POSITIVE_ERROR < (Tj - temperature[0])) || (TSU_B_EXAMPLE_TEMPERATURE_NEGATIVE_ERROR > (Tj - temperature[0])))
    {
    __BKPT(0);
    }
    }
    + + + + + +

    +Data Structures

    struct  tsu_b_extended_cfg_t
     
    struct  tsu_b_instance_ctrl_t
     
    + + + + + +

    +Enumerations

    enum  tsu_b_average_t
     
    enum  tsu_b_compare_cfg_t
     
    +

    Data Structure Documentation

    + +

    ◆ tsu_b_extended_cfg_t

    + +
    +
    + + + + +
    struct tsu_b_extended_cfg_t
    +
    +

    Extended configuration structure for ADC.

    +
    + + + + + + + + + + + + + + + + + + + +
    Data Fields
    +tsu_b_average_t +average_count +Average counts.
    +tsu_b_compare_cfg_t +comparison_mode +TSU_B compare function configuration.
    +int16_t +compare_ref_low +Lower reference value.
    +int16_t +compare_ref_high +Upper reference value.
    +IRQn_Type +compare_irq +IRQ number for Comparison Result Interrupts.
    +uint8_t +compare_ipl +Priority for Comparison Result Interrupts.
    + +
    +
    + +

    ◆ tsu_b_instance_ctrl_t

    + +
    +
    + + + + +
    struct tsu_b_instance_ctrl_t
    +
    +

    TSU_B instance control block. DO NOT INITIALIZE. Initialized in adc_api_t::open().

    +
    +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ tsu_b_average_t

    + +
    +
    + + + + +
    enum tsu_b_average_t
    +
    +

    TSU_B data sample addition and averaging options

    + + + + + +
    Enumerator
    TSU_B_AVERAGE_OFF 

    Latest read data.

    +
    TSU_B_AVERAGE_TWO 

    Average two samples.

    +
    TSU_B_AVERAGE_FOUR 

    Average four samples.

    +
    TSU_B_AVERAGE_EIGHT 

    Average eight samples.

    +
    + +
    +
    + +

    ◆ tsu_b_compare_cfg_t

    + +
    +
    + + + + +
    enum tsu_b_compare_cfg_t
    +
    +

    TSU_B comparison settings

    + + + + +
    Enumerator
    TSU_B_COMPARE_CFG_DISABLE 

    Compare function is disabled.

    +
    TSU_B_COMPARE_CFG_OUTSIDE 

    Comparison Mode: Outside.

    +
    TSU_B_COMPARE_CFG_INSIDE 

    Comparison Mode: Inside.

    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_TSU_B_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_TSU_B_Open (adc_ctrl_tp_ctrl,
    adc_cfg_t const *const p_cfg 
    )
    +
    +

    Initializes the TSU_B module and applies configurations.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSModule is ready for use.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_ALREADY_OPENThe instance control structure has already been opened.
    FSP_ERR_IRQ_BSP_DISABLEDA callback is provided, but the interrupt is not enabled.
    FSP_ERR_INVALID_HW_CONDITIONCalibration data is invalid value, so TSU_B is in invalid condition.
    +
    +
    + +
    +
    + +

    ◆ R_TSU_B_ScanCfg()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_TSU_B_ScanCfg (adc_ctrl_tp_ctrl,
    void const *const p_channel_cfg 
    )
    +
    +

    adc_api_t::scanCfg is not supported.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDFunction not supported in this implementation.
    +
    +
    + +
    +
    + +

    ◆ R_TSU_B_ScanStart()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_TSU_B_ScanStart (adc_ctrl_tp_ctrl)
    +
    +

    Starts a software scan or enables the hardware trigger for a scan depending on how the triggers were configured in the R_TSU_B_Open call. If the unit was configured for ELC or external hardware triggering, then this function allows the trigger signal to get to the TSU_B unit. The function is not able to control the generation of the trigger itself. If the unit was configured for software triggering, then this function starts the software triggered scan.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSScan started (software trigger) or hardware triggers enabled.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENTSU_B is not open.
    FSP_ERR_NOT_INITIALIZEDTSU_B is not initialized.
    FSP_ERR_IN_USEAnother scan is still in progress (software trigger).
    +
    +
    + +
    +
    + +

    ◆ R_TSU_B_ScanGroupStart()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_TSU_B_ScanGroupStart (adc_ctrl_tp_ctrl,
    adc_group_mask_t group_id 
    )
    +
    +

    adc_api_t::scanGroupStart is not supported.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDFunction not supported in this implementation.
    +
    +
    + +
    +
    + +

    ◆ R_TSU_B_ScanStop()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_TSU_B_ScanStop (adc_ctrl_tp_ctrl)
    +
    +

    Disables the unit from being triggered by the hardware trigger (ELC or external) based on what type of trigger the unit was configured for in the R_TSU_B_Open function. Stopping a hardware triggered scan via this function does not abort an ongoing scan, but prevents the next scan from occurring.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSHardware triggers disabled.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENTSU_B is not open.
    FSP_ERR_NOT_INITIALIZEDTSU_B is not initialized.
    FSP_ERR_INVALID_MODENot valid for software triggers.
    +
    +
    + +
    +
    + +

    ◆ R_TSU_B_StatusGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_TSU_B_StatusGet (adc_ctrl_tp_ctrl,
    adc_status_tp_status 
    )
    +
    +

    Get current TSU_B status and store it in provided pointer p_status. Provides the status of any scan process that was started, including scans started by ELC or external triggers.

    +
    Return values
    + + + + +
    FSP_SUCCESSModule status stored in the provided pointer p_status
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    +
    +
    + +
    +
    + +

    ◆ R_TSU_B_Read()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_TSU_B_Read (adc_ctrl_tp_ctrl,
    adc_channel_t const reg_id,
    uint16_t *const p_data 
    )
    +
    +

    Reads conversion results from a sensor.

    +
    Return values
    + + + + + +
    FSP_SUCCESSData read into provided p_data.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENTSU_B is not open.
    FSP_ERR_NOT_INITIALIZEDTSU_B is not initialized.
    +
    +
    + +
    +
    + +

    ◆ R_TSU_B_Read32()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_TSU_B_Read32 (adc_ctrl_tp_ctrl,
    adc_channel_t const reg_id,
    uint32_t *const p_data 
    )
    +
    +

    adc_api_t::read32 is not supported.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDFunction not supported in this implementation.
    +
    +
    + +
    +
    + +

    ◆ R_TSU_B_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_TSU_B_Close (adc_ctrl_tp_ctrl)
    +
    +

    This function ends any scan in progress, disables interrupts, and removes power to the A/D peripheral.

    +
    Return values
    + + + + +
    FSP_SUCCESSModule closed.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENUnit is not open.
    +
    +
    + +
    +
    + +

    ◆ R_TSU_B_InfoGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_TSU_B_InfoGet (adc_ctrl_tp_ctrl,
    adc_info_tp_adc_info 
    )
    +
    +

    Get the calibration data for the sensor.

    +
    Return values
    + + + + +
    FSP_SUCCESSInformation stored in p_adc_info.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENTSU_B is not open.
    +
    +
    + +
    +
    + +

    ◆ R_TSU_B_Calibrate()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_TSU_B_Calibrate (adc_ctrl_t *const p_ctrl,
    void const * p_extend 
    )
    +
    +

    adc_api_t::calibrate is not supported.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDFunction not supported in this implementation.
    +
    +
    + +
    +
    + +

    ◆ R_TSU_B_OffsetSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_TSU_B_OffsetSet (adc_ctrl_t *const p_ctrl,
    adc_channel_t const reg_id,
    int32_t offset 
    )
    +
    +

    adc_api_t::offsetSet is not supported.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDFunction not supported in this implementation.
    +
    +
    + +
    +
    + +

    ◆ R_TSU_B_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_TSU_B_CallbackSet (adc_ctrl_t *const p_api_ctrl,
    void(*)(adc_callback_args_t *) p_callback,
    void const *const p_context,
    adc_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback and has option of providing memory for callback structure. Implements adc_api_t::callbackSet

    +
    Return values
    + + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    + +

    ◆ R_TSU_B_CalculateTemperature()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_TSU_B_CalculateTemperature (adc_ctrl_tp_ctrl,
    uint16_t temperature_code,
    float *const p_temperature 
    )
    +
    +

    The value returned from the sensor can be converted into degrees Celsius.

    +
    Return values
    + + + + + +
    FSP_SUCCESSData calculate into provided p_temp.
    FSP_ERR_ASSERTIONAn input argument is invalid.
    FSP_ERR_NOT_OPENTSU_B is not open.
    FSP_ERR_NOT_INITIALIZEDTSU_B is not initialized.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___t_s_u___b.js b/group___t_s_u___b.js new file mode 100644 index 0000000..f8be386 --- /dev/null +++ b/group___t_s_u___b.js @@ -0,0 +1,37 @@ +var group___t_s_u___b = +[ + [ "tsu_b_extended_cfg_t", "group___t_s_u___b.html#structtsu__b__extended__cfg__t", [ + [ "average_count", "group___t_s_u___b.html#a525f475e04de0b02bf01105495f9f474", null ], + [ "comparison_mode", "group___t_s_u___b.html#a3906e15e289a42557f63f5514c81f8d1", null ], + [ "compare_ref_low", "group___t_s_u___b.html#a1fce1fbc4e5f916220040a4146e27c49", null ], + [ "compare_ref_high", "group___t_s_u___b.html#a22491b611c1958bb5405b05b2a7a3feb", null ], + [ "compare_irq", "group___t_s_u___b.html#a3fc59fe6297b3d440cb73510eaf7f21b", null ], + [ "compare_ipl", "group___t_s_u___b.html#a06b6e82fcee558ee4548f37d8620a1f4", null ] + ] ], + [ "tsu_b_instance_ctrl_t", "group___t_s_u___b.html#structtsu__b__instance__ctrl__t", null ], + [ "tsu_b_average_t", "group___t_s_u___b.html#ga5ab9606f8b75e848e5743dd79d08aa29", [ + [ "TSU_B_AVERAGE_OFF", "group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29a0c5fc7fe1db6dc27007a10395c080d74", null ], + [ "TSU_B_AVERAGE_TWO", "group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29a77418279f9f52d5ca8ffa8418e42d8bf", null ], + [ "TSU_B_AVERAGE_FOUR", "group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29af001e8665548dd625eff4fe09f1d0102", null ], + [ "TSU_B_AVERAGE_EIGHT", "group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29afa39988bdc4f045e0cae55754afe8d14", null ] + ] ], + [ "tsu_b_compare_cfg_t", "group___t_s_u___b.html#gae1e53473fd2f49e840ce26b43131aa29", [ + [ "TSU_B_COMPARE_CFG_DISABLE", "group___t_s_u___b.html#ggae1e53473fd2f49e840ce26b43131aa29a21127683f9dd0b510c15ebab44d7bf8a", null ], + [ "TSU_B_COMPARE_CFG_OUTSIDE", "group___t_s_u___b.html#ggae1e53473fd2f49e840ce26b43131aa29ab9a284ff26dcbb57af3e9278b7882702", null ], + [ "TSU_B_COMPARE_CFG_INSIDE", "group___t_s_u___b.html#ggae1e53473fd2f49e840ce26b43131aa29aabcb24a3f71042eff1118cb3ebf8b318", null ] + ] ], + [ "R_TSU_B_Open", "group___t_s_u___b.html#ga97e39892fa51e09d3809f600781f3b98", null ], + [ "R_TSU_B_ScanCfg", "group___t_s_u___b.html#ga978c60f17aa8a2184140272e7588474e", null ], + [ "R_TSU_B_ScanStart", "group___t_s_u___b.html#ga39f1ed741b28eab45f1712935f3883e4", null ], + [ "R_TSU_B_ScanGroupStart", "group___t_s_u___b.html#gaef9ec32a8de4e4286e10f0c87efd450d", null ], + [ "R_TSU_B_ScanStop", "group___t_s_u___b.html#ga874a931c003bbe50ad12e6da4d87143f", null ], + [ "R_TSU_B_StatusGet", "group___t_s_u___b.html#ga15204e44f60f3f948c5b13983635742b", null ], + [ "R_TSU_B_Read", "group___t_s_u___b.html#gada13a2179de16db6073f307afae1e612", null ], + [ "R_TSU_B_Read32", "group___t_s_u___b.html#ga1b591622c668393be2a471acb5af0a09", null ], + [ "R_TSU_B_Close", "group___t_s_u___b.html#gab85e848ca49caaa929dd77dc8921e29f", null ], + [ "R_TSU_B_InfoGet", "group___t_s_u___b.html#ga5e8b4241a1e5e499da79c839aad0628e", null ], + [ "R_TSU_B_Calibrate", "group___t_s_u___b.html#ga11361111b88fa7e72cb9014d440c3ff1", null ], + [ "R_TSU_B_OffsetSet", "group___t_s_u___b.html#gac01f0a25e022187d5a10913234c6dd8e", null ], + [ "R_TSU_B_CallbackSet", "group___t_s_u___b.html#gabfa2e53113bbd7e12dea5dabf227903c", null ], + [ "R_TSU_B_CalculateTemperature", "group___t_s_u___b.html#ga7b164d0defb1b364c993b138a3ca0524", null ] +]; \ No newline at end of file diff --git a/group___u_a_r_t___a_p_i.html b/group___u_a_r_t___a_p_i.html index 481e9e0..c78c80f 100644 --- a/group___u_a_r_t___a_p_i.html +++ b/group___u_a_r_t___a_p_i.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: UART Interface +RZV Flexible Software Package Documentation: UART Interface @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Data Structures | @@ -111,7 +179,8 @@

  • CTS/RTS hardware flow control support (with an associated IOPORT pin)
  • Implemented by:

    + +

    @@ -364,6 +433,8 @@

    χ

     
    fsp_err_t(* close )(uart_ctrl_t *const p_ctrl)
     
    fsp_err_t(* readStop )(uart_ctrl_t *const p_ctrl, uint32_t *remaining_bytes)
     

    Field Documentation

    @@ -379,6 +450,7 @@

    Open UART device.

    Implemented as
    Parameters
    @@ -404,6 +476,7 @@

    Read from UART device. The read buffer is used until the read is complete. When a transfer is complete, the callback is called with event UART_EVENT_RX_COMPLETE. Bytes received outside an active transfer are received in the callback function with event UART_EVENT_RX_CHAR. The maximum transfer size is reported by infoGet().

    Implemented as
    Parameters
    @@ -430,6 +503,7 @@

    Write to UART device. The write buffer is used until write is complete. Do not overwrite write buffer contents until the write is finished. When the write is complete (all bytes are fully transmitted on the wire), the callback called with event UART_EVENT_TX_COMPLETE. The maximum transfer size is reported by infoGet().

    Implemented as
    Parameters
    @@ -457,6 +531,7 @@

    Warning
    Calling this API aborts any in-progress transmission and disables reception until the new baud settings have been applied.

    Implemented as
    Parameters
    @@ -482,6 +557,7 @@

    Get the driver specific information.

    Implemented as
    Parameters
    @@ -507,6 +583,7 @@

    Abort ongoing transfer.

    Implemented as
    Parameters
    @@ -532,6 +609,7 @@

    Specify callback function and optional context pointer and working memory pointer.

    Implemented as
    • R_SCIF_Uart_CallbackSet()
    • +
    • R_SCI_B_Uart_CallbackSet()
    Parameters
    @@ -559,11 +637,38 @@

    Close UART device.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to the UART control block.
    +
    +
    + +

    +
    + +

    ◆ readStop

    + +
    +
    + + + + +
    fsp_err_t(* uart_api_t::readStop) (uart_ctrl_t *const p_ctrl, uint32_t *remaining_bytes)
    +
    diff --git a/group___u_a_r_t___a_p_i.js b/group___u_a_r_t___a_p_i.js index 75f4537..92caac6 100644 --- a/group___u_a_r_t___a_p_i.js +++ b/group___u_a_r_t___a_p_i.js @@ -37,7 +37,8 @@ var group___u_a_r_t___a_p_i = [ "infoGet", "group___u_a_r_t___a_p_i.html#aa6d5231c2b45a6479fc513d087924a50", null ], [ "communicationAbort", "group___u_a_r_t___a_p_i.html#af4aeab25d6aa83e0d47307043c053d11", null ], [ "callbackSet", "group___u_a_r_t___a_p_i.html#a51b74df27fb26e85700d9524cdfc7c01", null ], - [ "close", "group___u_a_r_t___a_p_i.html#a4e7e47514702ff0e3515280590dd9659", null ] + [ "close", "group___u_a_r_t___a_p_i.html#a4e7e47514702ff0e3515280590dd9659", null ], + [ "readStop", "group___u_a_r_t___a_p_i.html#acb47c360a2ac4ddd36e53f0a4ad71b92", null ] ] ], [ "uart_instance_t", "group___u_a_r_t___a_p_i.html#structuart__instance__t", [ [ "p_ctrl", "group___u_a_r_t___a_p_i.html#ae01cedb63e8739651eb14d0ccc9b54a4", null ], @@ -56,9 +57,9 @@ var group___u_a_r_t___a_p_i = [ "UART_EVENT_TX_DATA_EMPTY", "group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da03e2fd44218712f18f3cceb0a0ad7442", null ] ] ], [ "uart_data_bits_t", "group___u_a_r_t___a_p_i.html#gadc68b8fd9ded3990f84129df23fee798", [ + [ "UART_DATA_BITS_9", "group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798a57a012c58e476a76ed8f54db28d94810", null ], [ "UART_DATA_BITS_8", "group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798ad768185f3773e2d5953b28f3345561db", null ], - [ "UART_DATA_BITS_7", "group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798a317e473e32315f1632829d176fbfd545", null ], - [ "UART_DATA_BITS_9", "group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798a57a012c58e476a76ed8f54db28d94810", null ] + [ "UART_DATA_BITS_7", "group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798a317e473e32315f1632829d176fbfd545", null ] ] ], [ "uart_parity_t", "group___u_a_r_t___a_p_i.html#ga6bcc37e31dd40c204b4ac6f6189e8878", [ [ "UART_PARITY_OFF", "group___u_a_r_t___a_p_i.html#gga6bcc37e31dd40c204b4ac6f6189e8878acdbc0c60cf74e4febad92afc44b88641", null ], diff --git a/group___w_d_t.html b/group___w_d_t.html new file mode 100644 index 0000000..4e5bb36 --- /dev/null +++ b/group___w_d_t.html @@ -0,0 +1,613 @@ + + + + + + + +RZV Flexible Software Package Documentation: Watchdog (r_wdt) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_WDT_Refresh (wdt_ctrl_t *const p_ctrl)
     
    fsp_err_t R_WDT_Open (wdt_ctrl_t *const p_ctrl, wdt_cfg_t const *const p_cfg)
     
    fsp_err_t R_WDT_StatusClear (wdt_ctrl_t *const p_ctrl, const wdt_status_t status)
     
    fsp_err_t R_WDT_StatusGet (wdt_ctrl_t *const p_ctrl, wdt_status_t *const p_status)
     
    fsp_err_t R_WDT_CounterGet (wdt_ctrl_t *const p_ctrl, uint32_t *const p_count)
     
    fsp_err_t R_WDT_TimeoutGet (wdt_ctrl_t *const p_ctrl, wdt_timeout_values_t *const p_timeout)
     
    fsp_err_t R_WDT_CallbackSet (wdt_ctrl_t *const p_ctrl, void(*p_callback)(wdt_callback_args_t *), void const *const p_context, wdt_callback_args_t *const p_callback_memory)
     
    +

    Detailed Description

    +

    Driver for the WDT peripheral on RZ MPUs. This module implements the WDT Interface.

    +

    +Overview

    +

    The watchdog timer is used to recover from unexpected errors in an application. The watchdog timer must be refreshed periodically in the permitted count window by the application. If the count is allowed to underflow or refresh occurs outside of the valid refresh period, the WDT resets the device or generates an IRQ.

    +
    +r_wdt_operation_example.png +
    +Watchdog Timer Operation Example
    +

    +Features

    +

    The WDT HAL module has the following key features:

      +
    • When the WDT underflows or is refreshed outside of the permitted refresh window, one of the following events can occur:
        +
      • Resetting of the device
      • +
      • Generation of an IRQ
      • +
      +
    • +
    • The WDT can be started from the application.
    • +
    +

    +Configuration

    +

    When using register start mode, configure the watchdog timer on the Stacks tab.

    +

    Build Time Configurations for r_wdt

    +The following build time configurations are defined in fsp_cfg/r_wdt_cfg.h:
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    +

    Configurations for Monitoring > Watchdog (r_wdt)

    +This module can be added to the Stacks tab via New Stack > Monitoring > Watchdog (r_wdt).
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    NameName must be a valid C symbolg_wdt0 Module name.
    ChannelMCU Specific OptionsCheck User's Manual: Hardware to see which CPU a channel is for.
    TimeoutMCU Specific OptionsSelect the watchdog timeout in cycles.
    Clock Division RatioMCU Specific OptionsSelect the watchdog clock divisor.
    Window Start PositionMCU Specific OptionsSelect the allowed watchdog refresh start point in %.
    Window End PositionMCU Specific OptionsSelect the allowed watchdog refresh end point in %.
    WDT CountingMCU Specific OptionsSelect to enable or disable WDT counting. It is recommended to set "WDT Counting" to "Disabled" to avoid unintentional WDT interrupt occurs when debugging the user program.
    System ResetMCU Specific OptionsSelect to enable or disable system reset due to a request by WDT.
    WDTUDFOUT AssertionMCU Specific OptionsSelect to enable or disable the assertion of WDTUDFOUT due to a request by WDT.
    Cold ResetMCU Specific OptionsSelect to enable or disable the cold reset due to a request by WDT.
    Underflow Interrupt EnableMCU Specific OptionsEnable the WDT underflow interrupt.
    Underflow Interrupt PriorityValue must be an integer between 0 and 2558 Select the underflow interrupt priority.
    WDT CallbackName must be a valid C symbolNULL A user callback function must be provided if the WDT is configured to generate an NMI when the timer underflows or a refresh error occurs. If this callback function is provided, it will be called from the NMI handler each time the watchdog triggers.
    +

    +

    +Clock Configuration

    +

    The WDT clock is based on the OSCCLK frequency. You can not set the OSCCLK frequency using the Clocks tab of the RZ Configuration editor or by using the CGC Interface at run-time. The maximum timeout period with OSCCLK running at 24 MHz is approximately 0.175 seconds.

    +

    +Pin Configuration

    +

    This WDT uses the following pin.

      +
    • WDTUDF_PERROUT: Watchdog timer counter underflow signal output.
    • +
    +

    +Usage Notes

    +

    Period Calculation

    +

    The WDT operates from OSCCLK. With a OSCCLK of 24 MHz, the maximum time from the last refresh to device reset or IRQ generation will be just over 0.175 seconds as detailed below.

    +

    OSCCLK = 24 MHz
    +Clock division ratio = OSCCLK / 256
    +Timeout period = 16384 cycles
    +WDT clock frequency = 24 MHz / 256 = 93.750 kHz
    +Cycle time = 1 / 93.750 kHz = 10.667 us
    +Timeout = 10.667 us x 16384 cycles = 0.175 seconds

    +

    +Limitations

    +

    Developers should be aware of the following limitations when using the WDT:

    +
      +
    • If the WDT is configured to stop the counter in low power mode, then your application must restart the watchdog by calling R_WDT_Refresh() after the MCU wakes from low power mode.
    • +
    • When WDT counting starts, it keeps running even if the user program is stopped at a breakpoint by the debugger. Then an unintentional WDT interrupt occurs. To avoid such cases, it is recommended to set "WDT Counting" to "Disabled" when debugging.
    • +
    +

    WDT Interrupt

    +

    WDT interrupt to CPU are prohibited in specific core.

    + + + + + + + +
    DeviceCore WDT interrupt to CPU
    RZ/V2HCM33 Prohibited
    CR8 Not prohibited
    +

    +Examples

    +

    WDT Basic Example

    +

    This is a basic example of minimal use of the WDT in an application.

    +
    void wdt_basic_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* In auto start mode, the WDT starts counting immediately when the MCU is powered on. */
    /* Initializes the module. */
    err = R_WDT_Open(&g_wdt0_ctrl, &g_wdt0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* In register start mode, start the watchdog by calling R_WDT_Refresh. */
    err = R_WDT_Refresh(&g_wdt0_ctrl);
    assert(FSP_SUCCESS == err);
    while (true)
    {
    /* Application work here. */
    /* Refresh before the counter underflows to prevent reset or NMI. */
    err = R_WDT_Refresh(&g_wdt0_ctrl);
    assert(FSP_SUCCESS == err);
    }
    }

    WDT Advanced Example

    +

    This example demonstrates using a start window and gives an example callback to handle an IRQ generated by an underflow or refresh error.

    +
    #define WDT_TIMEOUT_COUNTS (16384U)
    #define WDT_MAX_COUNTER (WDT_TIMEOUT_COUNTS - 1U)
    #define WDT_START_WINDOW_75 ((WDT_MAX_COUNTER * 3) / 4)
    /* Example callback called when a watchdog NMI occurs. */
    void wdt_callback (wdt_callback_args_t * p_args)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* (Optional) Determine the source of the NMI. */
    err = R_WDT_StatusGet(&g_wdt0_ctrl, &status);
    assert(FSP_SUCCESS == err);
    /* (Optional) Log source of NMI and any other debug information. */
    /* (Optional) Clear the error flags. */
    err = R_WDT_StatusClear(&g_wdt0_ctrl, status);
    assert(FSP_SUCCESS == err);
    /* Call R_WDT_Refresh() to continue using the watchdog after an error. */
    err = R_WDT_Refresh(&g_wdt0_ctrl);
    assert(FSP_SUCCESS == err);
    }
    void wdt_advanced_example (void)
    {
    fsp_err_t err = FSP_SUCCESS;
    /* Enable system reset due to WDT. */
    wdt_extended_cfg_t g_wdt0_cfg_extend_0 =
    {
    .channel = 0,
    .wdt_counting_enable = true,
    .system_reset_enable = true,
    .wdtudfout_assertion_enable = false,
    .cold_reset_enable = false,
    .underflow_ipl = 8,
    .underflow_irq = FSP_INVALID_VECTOR,
    };
    const wdt_cfg_t g_wdt0_cfg_0 =
    {
    .clock_division = WDT_CLOCK_DIVISION_256,
    .window_start = WDT_WINDOW_START_100,
    .window_end = WDT_WINDOW_END_0,
    .reset_control = WDT_RESET_CONTROL_NMI,
    .stop_control = WDT_STOP_CONTROL_DISABLE,
    .p_callback = NULL,
    .p_context = NULL,
    .p_extend = &g_wdt0_cfg_extend_0,
    };
    /* (Optional) Check if the error system reset flag for WDT is set to know if the system is
    * recovering from a WDT reset. */
    if (R_CPG->CPG_ERROR_RST2 & R_CPG_CPG_ERROR_RST2_ERROR_RST0_Msk)
    {
    R_CPG->CPG_ERROR_RST2 = R_CPG_CPG_ERROR_RST2_ERROR_RST0_Msk | R_CPG_CPG_ERROR_RST2_ERROR_RST0_WEN_Msk;
    }
    /* Open the module. */
    err = R_WDT_Open(&g_wdt0_ctrl, &g_wdt0_cfg_0);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Initialize other application code. */
    /* (Register start mode) Call R_WDT_Refresh() to start the WDT in register
    * start mode. Do not call R_WDT_Refresh() in auto start mode unless the
    * counter is in the acceptable refresh window. */
    err = R_WDT_Refresh(&g_wdt0_ctrl);
    assert(FSP_SUCCESS == err);
    while (true)
    {
    /* Application work here. */
    /* (Optional) If there is a chance the application takes less time than
    * the start window, verify the WDT counter is past the start window
    * before refreshing the WDT. */
    uint32_t wdt_counter = 0U;
    do
    {
    /* Read the current WDT counter value. */
    err = R_WDT_CounterGet(&g_wdt0_ctrl, &wdt_counter);
    assert(FSP_SUCCESS == err);
    } while (wdt_counter >= WDT_START_WINDOW_75);
    /* Refresh before the counter underflows to prevent reset or NMI. */
    err = R_WDT_Refresh(&g_wdt0_ctrl);
    assert(FSP_SUCCESS == err);
    }
    }
    + + + + + +

    +Data Structures

    struct  wdt_instance_ctrl_t
     
    struct  wdt_extended_cfg_t
     
    +

    Data Structure Documentation

    + +

    ◆ wdt_instance_ctrl_t

    + +
    +
    + + + + +
    struct wdt_instance_ctrl_t
    +
    +

    WDT private control block. DO NOT MODIFY. Initialization occurs when R_WDT_Open() is called.

    +
    +
    +
    + +

    ◆ wdt_extended_cfg_t

    + +
    +
    + + + + +
    struct wdt_extended_cfg_t
    +
    +

    WDT configuration extension. This extension is required.

    +
    +
    +
    +

    Function Documentation

    + +

    ◆ R_WDT_Refresh()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_WDT_Refresh (wdt_ctrl_t *const p_ctrl)
    +
    +

    Refresh the watchdog timer. Implements wdt_api_t::refresh.

    +

    In addition to refreshing the watchdog counter this function can be used to start the counter in register start mode.

    +

    Example:

    /* Refresh before the counter underflows to prevent reset or NMI. */
    err = R_WDT_Refresh(&g_wdt0_ctrl);
    assert(FSP_SUCCESS == err);
    Return values
    + + + + +
    FSP_SUCCESSWDT successfully refreshed.
    FSP_ERR_ASSERTIONp_ctrl is NULL.
    FSP_ERR_NOT_OPENInstance control block is not initialized.
    +
    +
    + +
    +
    + +

    ◆ R_WDT_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_WDT_Open (wdt_ctrl_t *const p_ctrl,
    wdt_cfg_t const *const p_cfg 
    )
    +
    +

    Configures the WDT driver based on the input configurations. This function sets the callback function, the timeout count value, and enables the overflow interrupt. Implements wdt_api_t::open.

    +

    This function should only be called once as WDT configuration registers can only be written to once so subsequent calls will have no effect.

    +

    Example:

    /* Initializes the module. */
    err = R_WDT_Open(&g_wdt0_ctrl, &g_wdt0_cfg);
    Return values
    + + + + +
    FSP_SUCCESSWDT successfully configured.
    FSP_ERR_ASSERTIONNull pointer, or one or more configuration options is invalid.
    FSP_ERR_ALREADY_OPENModule is already open. This module can only be opened once.
    +
    +
    + +
    +
    + +

    ◆ R_WDT_StatusClear()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_WDT_StatusClear (wdt_ctrl_t *const p_ctrl,
    const wdt_status_t status 
    )
    +
    +

    Clear the WDT status and error flags. Implements wdt_api_t::statusClear.

    +

    Example:

    /* (Optional) Clear the error flags. */
    err = R_WDT_StatusClear(&g_wdt0_ctrl, status);
    assert(FSP_SUCCESS == err);
    Return values
    + + + + +
    FSP_SUCCESSWDT flag(s) successfully cleared.
    FSP_ERR_ASSERTIONNull pointer as a parameter.
    FSP_ERR_NOT_OPENInstance control block is not initialized.
    +
    +
    + +
    +
    + +

    ◆ R_WDT_StatusGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_WDT_StatusGet (wdt_ctrl_t *const p_ctrl,
    wdt_status_t *const p_status 
    )
    +
    +

    Read the WDT status flags. Implements wdt_api_t::statusGet.

    +

    Indicates both status and error conditions.

    +

    Example:

    /* (Optional) Determine the source of the NMI. */
    err = R_WDT_StatusGet(&g_wdt0_ctrl, &status);
    assert(FSP_SUCCESS == err);
    Return values
    + + + + +
    FSP_SUCCESSWDT status successfully read.
    FSP_ERR_ASSERTIONNull pointer as a parameter.
    FSP_ERR_NOT_OPENInstance control block is not initialized.
    +
    +
    + +
    +
    + +

    ◆ R_WDT_CounterGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_WDT_CounterGet (wdt_ctrl_t *const p_ctrl,
    uint32_t *const p_count 
    )
    +
    +

    Read the current count value of the WDT. Implements wdt_api_t::counterGet.

    +

    Example:

    /* Read the current WDT counter value. */
    err = R_WDT_CounterGet(&g_wdt0_ctrl, &wdt_counter);
    assert(FSP_SUCCESS == err);
    Return values
    + + + + +
    FSP_SUCCESSWDT current count successfully read.
    FSP_ERR_ASSERTIONNull pointer passed as a parameter.
    FSP_ERR_NOT_OPENInstance control block is not initialized.
    +
    +
    + +
    +
    + +

    ◆ R_WDT_TimeoutGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_WDT_TimeoutGet (wdt_ctrl_t *const p_ctrl,
    wdt_timeout_values_t *const p_timeout 
    )
    +
    +

    Read timeout information for the watchdog timer. Implements wdt_api_t::timeoutGet.

    +
    Return values
    + + + + +
    FSP_SUCCESSWDT timeout information retrieved successfully.
    FSP_ERR_ASSERTIONNull Pointer.
    FSP_ERR_NOT_OPENInstance control block is not initialized.
    +
    +
    + +
    +
    + +

    ◆ R_WDT_CallbackSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_WDT_CallbackSet (wdt_ctrl_t *const p_ctrl,
    void(*)(wdt_callback_args_t *) p_callback,
    void const *const p_context,
    wdt_callback_args_t *const p_callback_memory 
    )
    +
    +

    Updates the user callback and has option of providing memory for callback structure. Implements wdt_api_t::callbackSet

    +
    Return values
    + + + + + +
    FSP_SUCCESSCallback updated successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENThe control block has not been opened.
    FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___w_d_t.js b/group___w_d_t.js new file mode 100644 index 0000000..09cfffa --- /dev/null +++ b/group___w_d_t.js @@ -0,0 +1,12 @@ +var group___w_d_t = +[ + [ "wdt_instance_ctrl_t", "group___w_d_t.html#structwdt__instance__ctrl__t", null ], + [ "wdt_extended_cfg_t", "group___w_d_t.html#structwdt__extended__cfg__t", null ], + [ "R_WDT_Refresh", "group___w_d_t.html#gaff080d0dcc993cfbe7e99771396feffb", null ], + [ "R_WDT_Open", "group___w_d_t.html#gad64d0778fd0ceccb13a7287bb0d1fca8", null ], + [ "R_WDT_StatusClear", "group___w_d_t.html#gacd5b9ff42df96b9fd4603dda47b946cb", null ], + [ "R_WDT_StatusGet", "group___w_d_t.html#ga17bf328598042575cbe4f126f59bbc1b", null ], + [ "R_WDT_CounterGet", "group___w_d_t.html#gaf6b4f726ecfe6795c7887dc1226450ca", null ], + [ "R_WDT_TimeoutGet", "group___w_d_t.html#gac6e98a5b526d81651da1ffeda3f70263", null ], + [ "R_WDT_CallbackSet", "group___w_d_t.html#ga602ed1a63b61c46df822059ab6a5395e", null ] +]; \ No newline at end of file diff --git a/group___w_d_t___a_p_i.html b/group___w_d_t___a_p_i.html new file mode 100644 index 0000000..4f458d6 --- /dev/null +++ b/group___w_d_t___a_p_i.html @@ -0,0 +1,798 @@ + + + + + + + +RZV Flexible Software Package Documentation: WDT Interface + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    WDT Interface
    +
    +
    +

    Detailed Description

    +

    Interface for watch dog timer functions.

    +

    +Summary

    +

    The WDT interface for the Watchdog Timer (WDT) peripheral provides watchdog functionality including resetting the device or generating an interrupt.

    +

    The watchdog timer interface can be implemented by:

    + + + + + + + + + + + + +

    +Data Structures

    struct  wdt_callback_args_t
     
    struct  wdt_timeout_values_t
     
    struct  wdt_cfg_t
     
    struct  wdt_api_t
     
    struct  wdt_instance_t
     
    + + + +

    +Typedefs

    typedef void wdt_ctrl_t
     
    + + + + + + + + + + + + + + + +

    +Enumerations

    enum  wdt_timeout_t
     
    enum  wdt_clock_division_t
     
    enum  wdt_window_start_t
     
    enum  wdt_window_end_t
     
    enum  wdt_reset_control_t
     
    enum  wdt_stop_control_t
     
    enum  wdt_status_t
     
    +

    Data Structure Documentation

    + +

    ◆ wdt_callback_args_t

    + +
    +
    + + + + +
    struct wdt_callback_args_t
    +
    +

    Callback function parameter data

    +
    + + + + +
    Data Fields
    +void const * +p_context +Placeholder for user data. Set in wdt_api_t::open function in wdt_cfg_t.
    + +
    +
    + +

    ◆ wdt_timeout_values_t

    + +
    +
    + + + + +
    struct wdt_timeout_values_t
    +
    +

    WDT timeout data. Used to return frequency of WDT clock and timeout period

    +
    + + + + + + + +
    Data Fields
    +uint32_t +clock_frequency_hz +Frequency of watchdog clock after divider.
    +uint32_t +timeout_clocks +Timeout period in units of watchdog clock ticks.
    + +
    +
    + +

    ◆ wdt_cfg_t

    + +
    +
    + + + + +
    struct wdt_cfg_t
    +
    +

    WDT configuration parameters.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Data Fields

    +wdt_timeout_t timeout
     Timeout period.
     
    +wdt_clock_division_t clock_division
     Clock divider.
     
    +wdt_window_start_t window_start
     Refresh permitted window start position.
     
    +wdt_window_end_t window_end
     Refresh permitted window end position.
     
    +wdt_reset_control_t reset_control
     Select NMI or reset generated on underflow.
     
    +wdt_stop_control_t stop_control
     Select whether counter operates in sleep mode.
     
    +void(* p_callback )(wdt_callback_args_t *p_args)
     Callback provided when a WDT NMI ISR occurs.
     
    void const * p_context
     
    +void const * p_extend
     Placeholder for user extension.
     
    +

    Field Documentation

    + +

    ◆ p_context

    + +
    +
    + + + + +
    void const* wdt_cfg_t::p_context
    +
    +

    Placeholder for user data. Passed to the user callback in wdt_callback_args_t.

    + +
    +
    + +
    +
    + +

    ◆ wdt_api_t

    + +
    +
    + + + + +
    struct wdt_api_t
    +
    +

    WDT functions implemented at the HAL layer will follow this API.

    +
    + + + + + + + + + + + + + + + +

    Data Fields

    fsp_err_t(* open )(wdt_ctrl_t *const p_ctrl, wdt_cfg_t const *const p_cfg)
     
    fsp_err_t(* refresh )(wdt_ctrl_t *const p_ctrl)
     
    fsp_err_t(* statusGet )(wdt_ctrl_t *const p_ctrl, wdt_status_t *const p_status)
     
    fsp_err_t(* statusClear )(wdt_ctrl_t *const p_ctrl, const wdt_status_t status)
     
    fsp_err_t(* counterGet )(wdt_ctrl_t *const p_ctrl, uint32_t *const p_count)
     
    fsp_err_t(* timeoutGet )(wdt_ctrl_t *const p_ctrl, wdt_timeout_values_t *const p_timeout)
     
    fsp_err_t(* callbackSet )(wdt_ctrl_t *const p_api_ctrl, void(*p_callback)(wdt_callback_args_t *), void const *const p_context, wdt_callback_args_t *const p_callback_memory)
     
    +

    Field Documentation

    + +

    ◆ open

    + +
    +
    + + + + +
    fsp_err_t(* wdt_api_t::open) (wdt_ctrl_t *const p_ctrl, wdt_cfg_t const *const p_cfg)
    +
    +

    Initialize the WDT in register start mode. In auto-start mode with NMI output it registers the NMI callback.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control structure.
    [in]p_cfgPointer to pin configuration structure.
    +
    +
    + +
    +
    + +

    ◆ refresh

    + +
    +
    + + + + +
    fsp_err_t(* wdt_api_t::refresh) (wdt_ctrl_t *const p_ctrl)
    +
    +

    Refresh the watchdog timer.

    Implemented as
    +
    +
    Parameters
    + + +
    [in]p_ctrlPointer to control structure.
    +
    +
    + +
    +
    + +

    ◆ statusGet

    + +
    +
    + + + + +
    fsp_err_t(* wdt_api_t::statusGet) (wdt_ctrl_t *const p_ctrl, wdt_status_t *const p_status)
    +
    +

    Read the status of the WDT.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control structure.
    [out]p_statusPointer to variable to return status information through.
    +
    +
    + +
    +
    + +

    ◆ statusClear

    + +
    +
    + + + + +
    fsp_err_t(* wdt_api_t::statusClear) (wdt_ctrl_t *const p_ctrl, const wdt_status_t status)
    +
    +

    Clear the status flags of the WDT.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control structure.
    [in]statusStatus condition(s) to clear.
    +
    +
    + +
    +
    + +

    ◆ counterGet

    + +
    +
    + + + + +
    fsp_err_t(* wdt_api_t::counterGet) (wdt_ctrl_t *const p_ctrl, uint32_t *const p_count)
    +
    +

    Read the current WDT counter value.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control structure.
    [out]p_countPointer to variable to return current WDT counter value.
    +
    +
    + +
    +
    + +

    ◆ timeoutGet

    + +
    +
    + + + + +
    fsp_err_t(* wdt_api_t::timeoutGet) (wdt_ctrl_t *const p_ctrl, wdt_timeout_values_t *const p_timeout)
    +
    +

    Read the watchdog timeout values.

    Implemented as
    +
    +
    Parameters
    + + + +
    [in]p_ctrlPointer to control structure.
    [out]p_timeoutPointer to structure to return timeout values.
    +
    +
    + +
    +
    + +

    ◆ callbackSet

    + +
    +
    + + + + +
    fsp_err_t(* wdt_api_t::callbackSet) (wdt_ctrl_t *const p_api_ctrl, void(*p_callback)(wdt_callback_args_t *), void const *const p_context, wdt_callback_args_t *const p_callback_memory)
    +
    +

    Specify callback function and optional context pointer and working memory pointer.

    Implemented as
    +
    +
    Parameters
    + + + + + +
    [in]p_ctrlPointer to the WDT control block.
    [in]p_callbackCallback function
    [in]p_contextPointer to send to callback function
    [in]p_working_memoryPointer to volatile memory where callback structure can be allocated. Callback arguments allocated here are only valid during the callback.
    +
    +
    + +
    +
    + +
    +
    + +

    ◆ wdt_instance_t

    + +
    +
    + + + + +
    struct wdt_instance_t
    +
    +

    This structure encompasses everything that is needed to use an instance of this interface.

    +
    + + + + + + + + + + +
    Data Fields
    +wdt_ctrl_t * +p_ctrl +Pointer to the control structure for this instance.
    +wdt_cfg_t const * +p_cfg +Pointer to the configuration structure for this instance.
    +wdt_api_t const * +p_api +Pointer to the API structure for this instance.
    + +
    +
    +

    Typedef Documentation

    + +

    ◆ wdt_ctrl_t

    + +
    +
    + + + + +
    typedef void wdt_ctrl_t
    +
    +

    WDT control block. Allocate an instance specific control block to pass into the WDT API calls.

    Implemented as
    +
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ wdt_timeout_t

    + +
    +
    + + + + +
    enum wdt_timeout_t
    +
    +

    WDT time-out periods.

    + + + + + + + + +
    Enumerator
    WDT_TIMEOUT_128 

    128 clock cycles

    +
    WDT_TIMEOUT_512 

    512 clock cycles

    +
    WDT_TIMEOUT_1024 

    1024 clock cycles

    +
    WDT_TIMEOUT_2048 

    2048 clock cycles

    +
    WDT_TIMEOUT_4096 

    4096 clock cycles

    +
    WDT_TIMEOUT_8192 

    8192 clock cycles

    +
    WDT_TIMEOUT_16384 

    16384 clock cycles

    +
    + +
    +
    + +

    ◆ wdt_clock_division_t

    + +
    +
    + + + + +
    enum wdt_clock_division_t
    +
    +

    WDT clock division ratio.

    + + + + + + + + + + + +
    Enumerator
    WDT_CLOCK_DIVISION_1 

    CLK/1.

    +
    WDT_CLOCK_DIVISION_4 

    CLK/4.

    +
    WDT_CLOCK_DIVISION_16 

    CLK/16.

    +
    WDT_CLOCK_DIVISION_32 

    CLK/32.

    +
    WDT_CLOCK_DIVISION_64 

    CLK/64.

    +
    WDT_CLOCK_DIVISION_128 

    CLK/128.

    +
    WDT_CLOCK_DIVISION_256 

    CLK/256.

    +
    WDT_CLOCK_DIVISION_512 

    CLK/512.

    +
    WDT_CLOCK_DIVISION_2048 

    CLK/2048.

    +
    WDT_CLOCK_DIVISION_8192 

    CLK/8192.

    +
    + +
    +
    + +

    ◆ wdt_window_start_t

    + +
    +
    + + + + +
    enum wdt_window_start_t
    +
    +

    WDT refresh permitted period window start position.

    + + + + + +
    Enumerator
    WDT_WINDOW_START_25 

    Start position = 25%.

    +
    WDT_WINDOW_START_50 

    Start position = 50%.

    +
    WDT_WINDOW_START_75 

    Start position = 75%.

    +
    WDT_WINDOW_START_100 

    Start position = 100%.

    +
    + +
    +
    + +

    ◆ wdt_window_end_t

    + +
    +
    + + + + +
    enum wdt_window_end_t
    +
    +

    WDT refresh permitted period window end position.

    + + + + + +
    Enumerator
    WDT_WINDOW_END_75 

    End position = 75%.

    +
    WDT_WINDOW_END_50 

    End position = 50%.

    +
    WDT_WINDOW_END_25 

    End position = 25%.

    +
    WDT_WINDOW_END_0 

    End position = 0%.

    +
    + +
    +
    + +

    ◆ wdt_reset_control_t

    + +
    +
    + + + + +
    enum wdt_reset_control_t
    +
    +

    WDT Counter underflow and refresh error control.

    + + + +
    Enumerator
    WDT_RESET_CONTROL_NMI 

    NMI request when counter underflows.

    +
    WDT_RESET_CONTROL_RESET 

    Reset request when counter underflows.

    +
    + +
    +
    + +

    ◆ wdt_stop_control_t

    + +
    +
    + + + + +
    enum wdt_stop_control_t
    +
    +

    WDT Counter operation in sleep mode.

    + + + +
    Enumerator
    WDT_STOP_CONTROL_DISABLE 

    Count will not stop when device enters sleep mode.

    +
    WDT_STOP_CONTROL_ENABLE 

    Count will automatically stop when device enters sleep mode.

    +
    + +
    +
    + +

    ◆ wdt_status_t

    + +
    +
    + + + + +
    enum wdt_status_t
    +
    +

    WDT status

    + + + + + + +
    Enumerator
    WDT_STATUS_NO_ERROR 

    No status flags set.

    +
    WDT_STATUS_UNDERFLOW 

    Underflow flag set.

    +
    WDT_STATUS_REFRESH_ERROR 

    Refresh error flag set. Refresh outside of permitted window.

    +
    WDT_STATUS_UNDERFLOW_AND_REFRESH_ERROR 

    Underflow and refresh error flags set.

    +
    WDT_STATUS_OVERFLOW 

    Overflow flag set.

    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___w_d_t___a_p_i.js b/group___w_d_t___a_p_i.js new file mode 100644 index 0000000..0bb4cc4 --- /dev/null +++ b/group___w_d_t___a_p_i.js @@ -0,0 +1,84 @@ +var group___w_d_t___a_p_i = +[ + [ "wdt_callback_args_t", "group___w_d_t___a_p_i.html#structwdt__callback__args__t", [ + [ "p_context", "group___w_d_t___a_p_i.html#a64eb19cb40d1c2e0d7a81d773289af4d", null ] + ] ], + [ "wdt_timeout_values_t", "group___w_d_t___a_p_i.html#structwdt__timeout__values__t", [ + [ "clock_frequency_hz", "group___w_d_t___a_p_i.html#a4afd304a6d5116ff17d004a9db0b68de", null ], + [ "timeout_clocks", "group___w_d_t___a_p_i.html#a3f910dce98e58fc8a05152a21f404f74", null ] + ] ], + [ "wdt_cfg_t", "group___w_d_t___a_p_i.html#structwdt__cfg__t", [ + [ "timeout", "group___w_d_t___a_p_i.html#a32ddaf9b3fd7bab2b654e660588ac680", null ], + [ "clock_division", "group___w_d_t___a_p_i.html#aa7829044aff936488b3e21bbd127ab76", null ], + [ "window_start", "group___w_d_t___a_p_i.html#a9616c365a4d3f1d374fb5a7125cef0e5", null ], + [ "window_end", "group___w_d_t___a_p_i.html#a5f9d35ace3a2cca8b1b8ae834aae70cb", null ], + [ "reset_control", "group___w_d_t___a_p_i.html#aaa3b53f7c79a5f385cc6a8f987623b10", null ], + [ "stop_control", "group___w_d_t___a_p_i.html#a4be884c6982d93cdb759e8d3994b62a3", null ], + [ "p_callback", "group___w_d_t___a_p_i.html#a123b3dbdef324ba5e27939fef7575cb6", null ], + [ "p_context", "group___w_d_t___a_p_i.html#a7d1afa07628f9a7c0b9e3c74206d44e9", null ], + [ "p_extend", "group___w_d_t___a_p_i.html#a7291179f9c5dea0f40d384398f2d81fe", null ] + ] ], + [ "wdt_api_t", "group___w_d_t___a_p_i.html#structwdt__api__t", [ + [ "open", "group___w_d_t___a_p_i.html#af03fc1703319e1adacabc412c7e3de31", null ], + [ "refresh", "group___w_d_t___a_p_i.html#a0d1533024396b8280b7240c781a09a44", null ], + [ "statusGet", "group___w_d_t___a_p_i.html#a317b972273cef3bc94087727b3ee17c5", null ], + [ "statusClear", "group___w_d_t___a_p_i.html#af66d798489c7ace801fee8b5a9c833c2", null ], + [ "counterGet", "group___w_d_t___a_p_i.html#a724c02d7265d5eaa846cf97a3556f5d6", null ], + [ "timeoutGet", "group___w_d_t___a_p_i.html#ac2b6d848e8be0ff1a0a1be43289ad925", null ], + [ "callbackSet", "group___w_d_t___a_p_i.html#a28dc9b161653da57c10267f775bda125", null ] + ] ], + [ "wdt_instance_t", "group___w_d_t___a_p_i.html#structwdt__instance__t", [ + [ "p_ctrl", "group___w_d_t___a_p_i.html#ac301430918784342b3f136d2afc705a7", null ], + [ "p_cfg", "group___w_d_t___a_p_i.html#a39a1f436f29b8db08e214bd85c6e53ff", null ], + [ "p_api", "group___w_d_t___a_p_i.html#a54e6814335b4dec365a1efb61cf82fe1", null ] + ] ], + [ "wdt_ctrl_t", "group___w_d_t___a_p_i.html#gacb273fc13cd5efef455f45486b436efe", null ], + [ "wdt_timeout_t", "group___w_d_t___a_p_i.html#ga880fcf63a5220c6618a0cf380268a76c", [ + [ "WDT_TIMEOUT_128", "group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76ca03952a0bb059b3ed8291d777d3ac36ff", null ], + [ "WDT_TIMEOUT_512", "group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76cadf9f61c33547bd76c982a981e428b27d", null ], + [ "WDT_TIMEOUT_1024", "group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76caadc98a5e3f05b010d9a4d8ce9b3c5c8f", null ], + [ "WDT_TIMEOUT_2048", "group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76ca228d47dafe4a9026129b377155831621", null ], + [ "WDT_TIMEOUT_4096", "group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76ca43fb8078a97d4935af9a4c49a8e268d1", null ], + [ "WDT_TIMEOUT_8192", "group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76cafb02fadb0bfdbf020583711d850670bf", null ], + [ "WDT_TIMEOUT_16384", "group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76cacd016302c00b39880d3828d18467833e", null ] + ] ], + [ "wdt_clock_division_t", "group___w_d_t___a_p_i.html#ga6b0f563a6311763e6204add68a018089", [ + [ "WDT_CLOCK_DIVISION_1", "group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089adced8472c808262dd429d0151c3b2797", null ], + [ "WDT_CLOCK_DIVISION_4", "group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a676cc419b2a32f1d5bc621da6c27eed8", null ], + [ "WDT_CLOCK_DIVISION_16", "group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089ad8412b1a44d913b0ed2d8a00a7b7ebbd", null ], + [ "WDT_CLOCK_DIVISION_32", "group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a1387532a717e5c3e03489a1eb4319b3b", null ], + [ "WDT_CLOCK_DIVISION_64", "group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089aad499bbad13bd81c4246370b18470955", null ], + [ "WDT_CLOCK_DIVISION_128", "group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a0746eb0ddedfafa127e0e42b64136661", null ], + [ "WDT_CLOCK_DIVISION_256", "group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a85b86587793408cd7b12fc4eb18e93c0", null ], + [ "WDT_CLOCK_DIVISION_512", "group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089adf7e020a0f0702f5c0bbb2cd5bdb4a67", null ], + [ "WDT_CLOCK_DIVISION_2048", "group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a723dd4048f03d861e42890fc8bd0913a", null ], + [ "WDT_CLOCK_DIVISION_8192", "group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a379cad22ab77f5b144788ae4fb82e7af", null ] + ] ], + [ "wdt_window_start_t", "group___w_d_t___a_p_i.html#ga9e0c1284f5d75d4a090d988536e3f633", [ + [ "WDT_WINDOW_START_25", "group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633a54d48a740d3d733e9011271800984229", null ], + [ "WDT_WINDOW_START_50", "group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633af678a5920dbf49ca5cc9b235fe2b50a6", null ], + [ "WDT_WINDOW_START_75", "group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633ab268e222207739405538345ae67483c8", null ], + [ "WDT_WINDOW_START_100", "group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633a8677bab323b9b04737bf003bc8c68703", null ] + ] ], + [ "wdt_window_end_t", "group___w_d_t___a_p_i.html#ga62d4360afabd1652aa7a1b9f624d7f61", [ + [ "WDT_WINDOW_END_75", "group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61a35cf30e3a9e6f2f3c76726a7acc753ec", null ], + [ "WDT_WINDOW_END_50", "group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61ab9dbf43bd2759f8fbb331dfb86dcc576", null ], + [ "WDT_WINDOW_END_25", "group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61a77562b1a64c2bf2e4385c3fad6f439c6", null ], + [ "WDT_WINDOW_END_0", "group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61ad9fd7f9a41a89a9d67f0b8c37cbfdc12", null ] + ] ], + [ "wdt_reset_control_t", "group___w_d_t___a_p_i.html#ga7624d80dde311cb1289f558ea464fa63", [ + [ "WDT_RESET_CONTROL_NMI", "group___w_d_t___a_p_i.html#gga7624d80dde311cb1289f558ea464fa63a9025ac51aeed3fac87e3733965b06215", null ], + [ "WDT_RESET_CONTROL_RESET", "group___w_d_t___a_p_i.html#gga7624d80dde311cb1289f558ea464fa63a71f32c409072999582d4e4afb789b096", null ] + ] ], + [ "wdt_stop_control_t", "group___w_d_t___a_p_i.html#ga803dd68cafce3a3d9ca5630b8c4838da", [ + [ "WDT_STOP_CONTROL_DISABLE", "group___w_d_t___a_p_i.html#gga803dd68cafce3a3d9ca5630b8c4838daac3a7223139a46596bf979e607c7c26f2", null ], + [ "WDT_STOP_CONTROL_ENABLE", "group___w_d_t___a_p_i.html#gga803dd68cafce3a3d9ca5630b8c4838daa7dda22fd5a14857cc859222620b71368", null ] + ] ], + [ "wdt_status_t", "group___w_d_t___a_p_i.html#ga46c1d04f78b75ad1ad21314cac574935", [ + [ "WDT_STATUS_NO_ERROR", "group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935a0f1543f47bca7e987fe86ab04dd16e46", null ], + [ "WDT_STATUS_UNDERFLOW", "group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935a67430b92ca3930bb185d76449309004b", null ], + [ "WDT_STATUS_REFRESH_ERROR", "group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935a4b045e0cf22adf889286b3184bb212bf", null ], + [ "WDT_STATUS_UNDERFLOW_AND_REFRESH_ERROR", "group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935ae49ea1e31c6a71b8acf1617f144dfcad", null ], + [ "WDT_STATUS_OVERFLOW", "group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935ad930e4c90d18d3d5caebe11d602dd630", null ] + ] ] +]; \ No newline at end of file diff --git a/group___x_s_p_i___q_s_p_i.html b/group___x_s_p_i___q_s_p_i.html new file mode 100644 index 0000000..e981655 --- /dev/null +++ b/group___x_s_p_i___q_s_p_i.html @@ -0,0 +1,1092 @@ + + + + + + + +RZV Flexible Software Package Documentation: Expanded Serial Peripheral Interface (xSPI) QSPI (r_xspi_qspi) + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    +
    RZV Flexible Software Package Documentation +  Release v2.0.0 +
    +

    + +
    + + + + + +   + + +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + + + +
    + +
    +
    +
    +
    + +
    +
    Expanded Serial Peripheral Interface (xSPI) QSPI (r_xspi_qspi)
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Functions

    fsp_err_t R_XSPI_QSPI_Open (spi_flash_ctrl_t *p_ctrl, spi_flash_cfg_t const *const p_cfg)
     
    fsp_err_t R_XSPI_QSPI_Close (spi_flash_ctrl_t *p_ctrl)
     
    fsp_err_t R_XSPI_QSPI_DirectWrite (spi_flash_ctrl_t *p_ctrl, uint8_t const *const p_src, uint32_t const bytes, bool const read_after_write)
     
    fsp_err_t R_XSPI_QSPI_DirectRead (spi_flash_ctrl_t *p_ctrl, uint8_t *const p_dest, uint32_t const bytes)
     
    fsp_err_t R_XSPI_QSPI_SpiProtocolSet (spi_flash_ctrl_t *p_ctrl, spi_flash_protocol_t spi_protocol)
     
    fsp_err_t R_XSPI_QSPI_XipEnter (spi_flash_ctrl_t *p_ctrl)
     
    fsp_err_t R_XSPI_QSPI_XipExit (spi_flash_ctrl_t *p_ctrl)
     
    fsp_err_t R_XSPI_QSPI_Write (spi_flash_ctrl_t *p_ctrl, uint8_t const *const p_src, uint8_t *const p_dest, uint32_t byte_count)
     
    fsp_err_t R_XSPI_QSPI_Erase (spi_flash_ctrl_t *p_ctrl, uint8_t *const p_device_address, uint32_t byte_count)
     
    fsp_err_t R_XSPI_QSPI_StatusGet (spi_flash_ctrl_t *p_ctrl, spi_flash_status_t *const p_status)
     
    fsp_err_t R_XSPI_QSPI_BankSet (spi_flash_ctrl_t *p_ctrl, uint32_t bank)
     
    fsp_err_t R_XSPI_QSPI_DirectTransfer (spi_flash_ctrl_t *p_ctrl, spi_flash_direct_transfer_t *const p_transfer, spi_flash_direct_transfer_dir_t direction)
     
    fsp_err_t R_XSPI_QSPI_AutoCalibrate (spi_flash_ctrl_t *p_ctrl)
     
    +

    Detailed Description

    +

    Driver for the xSPI peripheral on RZ microprocessor. This module implements the SPI Flash Interface.

    +

    +Overview

    +

    +Features

    +

    The xSPI QSPI driver has the following key features:

      +
    • Memory mapped read access to the QSPI flash
    • +
    • Programming the QSPI flash device
    • +
    • Erasing the QSPI flash device
    • +
    • Sending device specific commands and reading back responses, not
    • +
    • Supports each xSPI protocol
    • +
    • Entering and exiting XIP mode
    • +
    • 3 or 4 byte addressing
    • +
    • Supports combination function during write access of memory-mapping mode
    • +
    • Configurable prefetch function during read transaction in memory-mapping mode
    • +
    +
    Note
    The available chip select lines may differ between devices. A full list of selectable chip select lines is available in the User's Manual for your device.
    +

    +Configuration

    +

    Build Time Configurations for r_xspi_qspi

    +The following build time configurations are defined in driver/r_xspi_qspi_cfg.h:
    +

    + + + + +
    ConfigurationOptionsDefaultDescription
    Parameter Checking Enable
      +
    • +Default (BSP)
    • +
    • +Enabled
    • +
    • +Disabled
    • +
    +
    Default (BSP) If selected code for parameter checking is included in the build.
    +

    Configurations for Storage > QSPI Driver on r_xspi_qspi

    +This module can be added to the Stacks tab via New Stack > Storage > QSPI Driver on r_xspi_qspi.
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfigurationOptionsDefaultDescription
    General > NameName must be a valid C symbolg_qspi0 Module name.
    General > unitUnit should be 00 Specify the xSPI unit number.
    General > Chip Select
      +
    • +Chip Select 0
    • +
    • +Chip Select 1
    • +
    +
    Chip Select 0 Specify the XSPI chip select line to use.
    General > SPI Protocol
      +
    • +1S-1S-1S
    • +
    • +4S-4D-4D
    • +
    • +1S-2S-2S
    • +
    • +2S-2S-2S
    • +
    • +1S-4S-4S
    • +
    • +4S-4S-4S
    • +
    +
    1S-1S-1S Select the initial SPI protocol. SPI protocol can be changed in R_XSPI_QSPI_SpiProtocolSet().
    General > Address Bytes
      +
    • +3
    • +
    • +4
    • +
    +
    3 Select the number of address bytes. If 4-byte mode is selected, the application must issue the EN4B command using R_XSPI_QSPI_DirectTransfer().
    General > Dummy Clocks for ReadRefer to the RZV Configuration tool for available options.0 Select the number of dummy clocks for read operations.
    General > Prefetch Function
      +
    • +Disable
    • +
    • +Enable
    • +
    +
    Disable Prefetch function settings.
    Command Definitions > Page Program CommandMust be an 8-bit QSPI command0x02 The command to program a page.
    Command Definitions > Read CommandMust be an 8-bit QSPI command0x03 The command to read.
    Command Definitions > Write Enable CommandMust be an 8-bit QSPI command0x06 The command to enable write.
    Command Definitions > Status CommandMust be an 8-bit QSPI command0x05 The command to query the status of a write or erase command.
    Command Definitions > Write Status BitMust be an integer between 0 and 70 Which bit contains the write in progress status returned from the Write Status Command.
    Command Definitions > Sector Erase CommandMust be an 8-bit QSPI command0x20 The command to erase a sector. Set Sector Erase Size to 0 if unused.
    Command Definitions > Sector Erase SizeMust be an integer greater than or equal to 04096 The sector erase size. Set Sector Erase Size to 0 if Sector Erase is not supported.
    Command Definitions > Block Erase CommandMust be an 8-bit QSPI command0xD8 The command to erase a block. Set Block Erase Size to 0 if unused.
    Command Definitions > Block Erase SizeMust be an integer greater than or equal to 065536 The block erase size. Set Block Erase Size to 0 if Block Erase is not supported.
    Command Definitions > Block Erase 32KB CommandMust be an 8-bit QSPI command0x52 The command to erase a 32KB block. Set Block Erase Size to 0 if unused.
    Command Definitions > Block Erase 32KB SizeMust be an integer greater than or equal to 032768 The block erase 32KB size. Set Block Erase 32KB Size to 0 if Block Erase 32KB is not supported.
    Command Definitions > Chip Erase CommandMust be an 8-bit QSPI command0xC7 The command to erase the entire chip. Set Chip Erase Command to 0 if unused.
    Command Definitions > XIP Enter M7-M0Must be an 8-bit QSPI command0x20 How to set M7-M0 to enter XIP mode.
    Command Definitions > XIP Exit M7-M0Must be an 8-bit QSPI command0xFF How to set M7-M0 exit XIP mode.
    Bus Timing > CS minimum idle termRefer to the RZV Configuration tool for available options.7 CYCLES Define the CS minimum idle term.
    Bus Timing > CS asserting extension
      +
    • +No Extension
    • +
    • +Extend 1 cycle
    • +
    +
    No Extension Define the CS asserting extension
    Bus Timing > CS negating extension
      +
    • +No Extension
    • +
    • +Extend 1 cycle
    • +
    +
    No Extension Define the CS negating extension
    Extra > Stop controller on close
      +
    • +True
    • +
    • +False
    • +
    +
    False Define to stop controller on close
    Extra > Pre initialize functionName must be a valid C symbolNULL Function name or "NULL"
    Extra > Post initialize functionName must be a valid C symbolNULL Function name or "NULL"
    +

    +

    +Clock Configuration

    +

    The QSPI clock is derived from XSPI_CLKn. You can set the clock frequency using the Clocks tab of the FSP Configuration editor or by using the CGC Interface at run-time.

    +

    +Pin Configuration

    +

    The following pins are available to connect to an external QSPI device:

      +
    • XSPIn_CKP: QSPI clock output
    • +
    • XSPIn_CS0, XSPIn_CS1: QSPI slave select
    • +
    • XSPIn_IO0: Data 0 I/O
    • +
    • XSPIn_IO1: Data 1 I/O
    • +
    • XSPIn_IO2: Data 2 I/O
    • +
    • XSPIn_IO3: Data 3 I/O
    • +
    +
    Note
    It is recommended to configure the pins with IOPORT_CFG_DRIVE_HIGH.
    +

    +Usage Notes

    +

    +xSPI_QSPI Memory Mapped Access

    +

    After R_XSPI_QSPI_Open() completes successfully, the QSPI flash device contents are mapped to address 0x70000000(Non-secure External address space) or 0x60000000(Secure External address space).

    +

    The address map for the external address space xSPI is as follows:

    + + + + + + + + + + + +
    Address Space
    0x60000000 to 0x67FFFFFF CS0 Secure space
    0x68000000 to 0x6FFFFFFF CS1 Secure space
    0x70000000 to 0x77FFFFFF CS0 Non-secure space
    0x78000000 to 0x7FFFFFFF CS1 Non-secure space
    +

    +Examples

    +

    Basic Example

    +

    This is a basic example of minimal use of the QSPI in an application. When using the section definition in the example below, the user must define it separately in the linker configuration file.

    +
    #define QSPI_EXAMPLE_DATA_LENGTH (1024)
    #define QSPI_EXAMPLE_ERASE_SIZE (4096)
    #define QSPI_EXAMPLE_WRITE_SIZE (64)
    uint8_t g_dest[QSPI_EXAMPLE_DATA_LENGTH];
    uint8_t * gp_src = (uint8_t *) BSP_FEATURE_XSPI_START_ADDRESS;
    void r_qspi_basic_example (void)
    {
    fsp_err_t err;
    /* Open the QSPI instance. */
    err = R_XSPI_QSPI_Open(&g_qspi0_ctrl, &g_qspi0_cfg);
    handle_error(err);
    /* (Optional) Send device specific initialization commands. */
    r_qspi_example_init();
    /* After R_XSPI_QSPI_Open() and any required device specific initialization, data can be read directly from the QSPI flash. */
    memcpy(&g_dest[0], gp_src, QSPI_EXAMPLE_DATA_LENGTH);
    /* After R_XSPI_QSPI_Open() and any required device specific initialization, sector can be erase from the QSPI flash.
    * The erase size must exactly match one of the settings in the configurator.
    */
    err = R_XSPI_QSPI_Erase(&g_qspi0_ctrl, gp_src, QSPI_EXAMPLE_ERASE_SIZE);
    handle_error(err);
    /* After R_XSPI_QSPI_Open() and any required device specific initialization, page can be write to the QSPI flash.
    * The write size must be less than or equal to the page size or 64 bytes, whichever is smaller.
    */
    err = R_XSPI_QSPI_Write(&g_qspi0_ctrl, &g_dest[0], gp_src, QSPI_EXAMPLE_WRITE_SIZE);
    handle_error(err);
    }

    Initialization Command Structure Example

    +

    This is an example of the types of commands that can be used to initialize the QSPI.

    +
    /* Example for Adesto/Dialog/Renesas AT25SL/AT25QL QSPI flash. Not suitable for AT25SF/AT25QF. */
    #define QSPI_COMMAND_WRITE_ENABLE (0x06U)
    #define QSPI_COMMAND_WRITE_STATUS_REGISTER (0x01U)
    #define QSPI_COMMAND_ENTER_QPI_MODE (0x38U)
    #define QSPI_EXAMPLE_STATUS_REGISTER_1 (0x00U)
    #define QSPI_EXAMPLE_STATUS_REGISTER_2 (0x02U)
    static void r_qspi_example_init (void)
    {
    fsp_err_t err;
    spi_flash_direct_transfer_t qspi_direct_transfer =
    {
    .command = QSPI_COMMAND_WRITE_ENABLE,
    .address = 0U,
    .data = 0U,
    .command_length = 1U,
    .address_length = 0U,
    .data_length = 0U,
    .dummy_cycles = 0U
    };
    /* Send the Write Enable (WREN) command to enable writing to the status register */
    err = R_XSPI_QSPI_DirectTransfer(&g_qspi0_ctrl, &qspi_direct_transfer, SPI_FLASH_DIRECT_TRANSFER_DIR_WRITE);
    handle_error(err);
    /* Example for write status register command that take two value. Values are set in the data field.
    * For the AT25QL, set QE to 1 and other bits to their default setting.
    */
    qspi_direct_transfer.command = QSPI_COMMAND_WRITE_STATUS_REGISTER;
    qspi_direct_transfer.data = QSPI_EXAMPLE_STATUS_REGISTER_2 << 8 | QSPI_EXAMPLE_STATUS_REGISTER_1;
    qspi_direct_transfer.data_length = 2U;
    err = R_XSPI_QSPI_DirectTransfer(&g_qspi0_ctrl, &qspi_direct_transfer, SPI_FLASH_DIRECT_TRANSFER_DIR_WRITE);
    handle_error(err);
    /* Wait for complete to update. */
    do
    {
    err = R_XSPI_QSPI_StatusGet(&g_qspi0_ctrl, &status);
    handle_error(err);
    } while (true == status.write_in_progress);
    /* Execute the Enable QPI command to enter QSPI mode. After entering QPI mode on the device, change the SPI
    * protocol to QPI mode on the MCU peripheral. */
    qspi_direct_transfer.command = QSPI_COMMAND_ENTER_QPI_MODE;
    qspi_direct_transfer.data = 0U;
    qspi_direct_transfer.data_length = 0U;
    err = R_XSPI_QSPI_DirectTransfer(&g_qspi0_ctrl, &qspi_direct_transfer, SPI_FLASH_DIRECT_TRANSFER_DIR_WRITE);
    handle_error(err);
    }

    Reading Status Register Example (R_XSPI_QSPI_DirectTransfer)

    +

    This is an example of using R_XSPI_QSPI_DirectTransfer to send the read status register command and read back the status register from the device.

    +
    #define QSPI_COMMAND_READ_STATUS_REGISTER (0x05U)
    void r_qspi_direct_example (void)
    {
    spi_flash_direct_transfer_t qspi_direct_transfer =
    {
    .command = QSPI_COMMAND_READ_STATUS_REGISTER,
    .address = 0U,
    .data = 0U,
    .command_length = 1U,
    .address_length = 0U,
    .data_length = 1U,
    .dummy_cycles = 0U
    };
    /* Open the QSPI instance. */
    fsp_err_t err = R_XSPI_QSPI_Open(&g_qspi0_ctrl, &g_qspi0_cfg);
    handle_error(err);
    /* Read the Status Register */
    err = R_XSPI_QSPI_DirectTransfer(&g_qspi0_ctrl, &qspi_direct_transfer, SPI_FLASH_DIRECT_TRANSFER_DIR_READ);
    handle_error(err);
    /* Status register contents are available in variable 'qspi_direct_transfer.data'. */
    }

    Querying Device Size Example (R_XSPI_QSPI_DirectTransfer)

    +

    This is an example of using R_XSPI_QSPI_DirectTransfer to query the device size.

    +
    #define QSPI_EXAMPLE_COMMAND_READ_ID (0x9F)
    #define QSPI_EXAMPLE_COMMAND_READ_SFDP (0x5A)
    void r_qspi_size_example (void)
    {
    /* Many QSPI devices support more than one way to query the device size. Consult the datasheet for your
    * QSPI device to determine which of these methods are supported (if any). */
    uint32_t device_size_bytes;
    fsp_err_t err;
    #ifdef QSPI_EXAMPLE_COMMAND_READ_ID
    spi_flash_direct_transfer_t qspi_rdid_direct_transfer =
    {
    .command = QSPI_EXAMPLE_COMMAND_READ_ID,
    .address = 0U,
    .data = 0U,
    .command_length = 1U,
    .address_length = 0U,
    .data_length = 3U,
    .dummy_cycles = 0U
    };
    /* This example shows how to get the device size by reading the manufacturer ID. */
    /* Read 3 bytes. The third byte often represents the size of the QSPI, where the size of the QSPI = 2 ^ N. */
    err = R_XSPI_QSPI_DirectTransfer(&g_qspi0_ctrl, &qspi_rdid_direct_transfer, SPI_FLASH_DIRECT_TRANSFER_DIR_READ);
    handle_error(err);
    device_size_bytes = 1U << (qspi_rdid_direct_transfer.data >> 16);
    FSP_PARAMETER_NOT_USED(device_size_bytes);
    #endif
    #ifdef QSPI_EXAMPLE_COMMAND_READ_SFDP
    spi_flash_direct_transfer_t qspi_rdsfdp_direct_transfer =
    {
    .command = QSPI_EXAMPLE_COMMAND_READ_SFDP,
    .address = 0x00000CU,
    .data = 0U,
    .command_length = 1U,
    .address_length = 3U,
    .data_length = 3U,
    .dummy_cycles = 8U
    };
    /* Read the Parameter Table Pointer (PTP) of 1st Parameter header to locate the JEDEC flash parameters table.
    * Reference JESD216 "Serial Flash Discoverable Parameters (SFDP)". */
    /* Send the standard 0x5A command followed by 3 address bytes (1st Parameter header's PTP is at address 0xC).
    * 3 byte address of JEDEC flash parameters are read back and stored in qspi_rdsfdp_direct_transfer.data */
    err = R_XSPI_QSPI_DirectTransfer(&g_qspi0_ctrl, &qspi_rdsfdp_direct_transfer, SPI_FLASH_DIRECT_TRANSFER_DIR_READ);
    handle_error(err);
    /* Read the JEDEC flash parameters' memory density. */
    /* Send the standard 0x5A command followed by 3 address bytes of Flash memory density (offset 0x04 from JEDEC
    * flash parameters address). Read 4 bytes. */
    qspi_rdsfdp_direct_transfer.command = QSPI_EXAMPLE_COMMAND_READ_SFDP;
    qspi_rdsfdp_direct_transfer.address = qspi_rdsfdp_direct_transfer.data + 0x04;
    qspi_rdsfdp_direct_transfer.data = 0U;
    qspi_rdsfdp_direct_transfer.command_length = 1U;
    qspi_rdsfdp_direct_transfer.address_length = 3U;
    qspi_rdsfdp_direct_transfer.data_length = 4U;
    qspi_rdsfdp_direct_transfer.dummy_cycles = 8U;
    err = R_XSPI_QSPI_DirectTransfer(&g_qspi0_ctrl, &qspi_rdsfdp_direct_transfer, SPI_FLASH_DIRECT_TRANSFER_DIR_READ);
    handle_error(err);
    /* Calculate device size based on memory density */
    uint32_t memory_density = qspi_rdsfdp_direct_transfer.data;
    if ((1U << 31) & memory_density)
    {
    /* For densities 4 gigabits and above, bit-31 is set to 1b. The field 30:0 defines 'N' where the density is
    * computed as 2^N bits (N must be >= 32). This code subtracts 3 from N to divide by 8 to get the size in
    * bytes instead of bits. */
    device_size_bytes = 1U << ((memory_density & ~(1U << 31)) - 3U);
    }
    else
    {
    /* For densities 2 gigabits or less, bit-31 is set to 0b. The field 30:0 defines the size in bits. This
    * code divides the memory density by 8 to get the size in bytes instead of bits. */
    device_size_bytes = (memory_density / 8) + 1;
    }
    FSP_PARAMETER_NOT_USED(device_size_bytes);
    #endif
    }
    + + + +

    +Data Structures

    struct  xspi_qspi_instance_ctrl_t
     
    + + + + + + + + + + + + + +

    +Enumerations

    enum  xspi_qspi_chip_select_t
     
    enum  xspi_qspi_memory_size_t
     
    enum  xspi_qspi_command_interval_clocks_t
     
    enum  xspi_qspi_cs_pullup_clocks_t
     
    enum  xspi_qspi_cs_pulldown_clocks_t
     
    enum  xspi_qspi_prefetch_function_t
     
    +

    Data Structure Documentation

    + +

    ◆ xspi_qspi_instance_ctrl_t

    + +
    +
    + + + + +
    struct xspi_qspi_instance_ctrl_t
    +
    +

    Instance control block. DO NOT INITIALIZE. Initialization occurs when spi_flash_api_t::open is called

    +
    +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ xspi_qspi_chip_select_t

    + +
    +
    + + + + +
    enum xspi_qspi_chip_select_t
    +
    + + + +
    Enumerator
    XSPI_QSPI_CHIP_SELECT_0 

    Device connected to Chip-Select 0.

    +
    XSPI_QSPI_CHIP_SELECT_1 

    Device connected to Chip-Select 1.

    +
    + +
    +
    + +

    ◆ xspi_qspi_memory_size_t

    + +
    +
    + + + + +
    enum xspi_qspi_memory_size_t
    +
    + + + + + + + + +
    Enumerator
    XSPI_QSPI_MEMORY_SIZE_1MB 

    Memory size 1MB.

    +
    XSPI_QSPI_MEMORY_SIZE_2MB 

    Memory size 2MB.

    +
    XSPI_QSPI_MEMORY_SIZE_4MB 

    Memory size 4MB.

    +
    XSPI_QSPI_MEMORY_SIZE_8MB 

    Memory size 8MB.

    +
    XSPI_QSPI_MEMORY_SIZE_16MB 

    Memory size 16MB.

    +
    XSPI_QSPI_MEMORY_SIZE_32MB 

    Memory size 32MB.

    +
    XSPI_QSPI_MEMORY_SIZE_64MB 

    Memory size 64MB.

    +
    + +
    +
    + +

    ◆ xspi_qspi_command_interval_clocks_t

    + +
    +
    + + + + + + + + + + + + + + + + + +
    Enumerator
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_1 

    1 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_2 

    2 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_3 

    3 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_4 

    4 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_5 

    5 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_6 

    6 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_7 

    7 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_8 

    8 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_9 

    9 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_10 

    10 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_11 

    11 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_12 

    12 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_13 

    13 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_14 

    14 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_15 

    15 interval clocks

    +
    XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_16 

    16 interval clocks

    +
    + +
    +
    + +

    ◆ xspi_qspi_cs_pullup_clocks_t

    + +
    +
    + + + +
    Enumerator
    XSPI_QSPI_CS_PULLUP_CLOCKS_NO_EXTENSION 

    CS asserting No extension.

    +
    XSPI_QSPI_CS_PULLUP_CLOCKS_1 

    CS asserting Extend 1 cycle.

    +
    + +
    +
    + +

    ◆ xspi_qspi_cs_pulldown_clocks_t

    + +
    +
    + + + +
    Enumerator
    XSPI_QSPI_CS_PULLDOWN_CLOCKS_NO_EXTENSION 

    CS negating No extension.

    +
    XSPI_QSPI_CS_PULLDOWN_CLOCKS_1 

    CS negating Extend 1 cycle.

    +
    + +
    +
    + +

    ◆ xspi_qspi_prefetch_function_t

    + +
    +
    + + + +
    Enumerator
    XSPI_QSPI_PREFETCH_FUNCTION_DISABLE 

    Prefetch function disable.

    +
    XSPI_QSPI_PREFETCH_FUNCTION_ENABLE 

    Prefetch function enable.

    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ R_XSPI_QSPI_Open()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_XSPI_QSPI_Open (spi_flash_ctrl_tp_ctrl,
    spi_flash_cfg_t const *const p_cfg 
    )
    +
    +

    Open the QSPI driver module. After the driver is open, the QSPI can be accessed like internal flash memory starting at address 0x60000000 or 0x40000000.

    +

    Implements spi_flash_api_t::open.

    +

    Example:

    /* Open the QSPI instance. */
    err = R_XSPI_QSPI_Open(&g_qspi0_ctrl, &g_qspi0_cfg);
    handle_error(err);
    Return values
    + + + + + +
    FSP_SUCCESSConfiguration was successful.
    FSP_ERR_ASSERTIONThe parameter p_instance_ctrl or p_cfg is NULL.
    FSP_ERR_ALREADY_OPENDriver has already been opened with the same p_instance_ctrl.
    FSP_ERR_IP_CHANNEL_NOT_PRESENTThe requested channel does not exist on this MCU.
    +
    +
    + +
    +
    + +

    ◆ R_XSPI_QSPI_Close()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_XSPI_QSPI_Close (spi_flash_ctrl_tp_ctrl)
    +
    +

    Close the QSPI driver module.

    +

    Implements spi_flash_api_t::close.

    +
    Return values
    + + + + +
    FSP_SUCCESSConfiguration was successful.
    FSP_ERR_ASSERTIONp_instance_ctrl is NULL.
    FSP_ERR_NOT_OPENDriver is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_XSPI_QSPI_DirectWrite()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_XSPI_QSPI_DirectWrite (spi_flash_ctrl_tp_ctrl,
    uint8_t const *const p_src,
    uint32_t const bytes,
    bool const read_after_write 
    )
    +
    +

    Writes raw data directly to the QSPI.

    +

    Implements spi_flash_api_t::directWrite.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDAPI not supported.
    +
    +
    + +
    +
    + +

    ◆ R_XSPI_QSPI_DirectRead()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_XSPI_QSPI_DirectRead (spi_flash_ctrl_tp_ctrl,
    uint8_t *const p_dest,
    uint32_t const bytes 
    )
    +
    +

    Reads raw data directly from the QSPI.

    +

    Implements spi_flash_api_t::directRead.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDAPI not supported.
    +
    +
    + +
    +
    + +

    ◆ R_XSPI_QSPI_SpiProtocolSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_XSPI_QSPI_SpiProtocolSet (spi_flash_ctrl_tp_ctrl,
    spi_flash_protocol_t spi_protocol 
    )
    +
    +

    Sets the SPI protocol.

    +

    Implements spi_flash_api_t::spiProtocolSet.

    +
    Return values
    + + + + + +
    FSP_SUCCESSSPI protocol updated on MCU peripheral.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENDriver is not opened.
    FSP_ERR_INVALID_ARGUMENTInvalid SPI protocol requested.
    +
    +
    + +
    +
    + +

    ◆ R_XSPI_QSPI_XipEnter()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_XSPI_QSPI_XipEnter (spi_flash_ctrl_tp_ctrl)
    +
    +

    Enters XIP (execute in place) mode.

    +

    Implements spi_flash_api_t::xipEnter.

    +
    Return values
    + + + + +
    FSP_SUCCESSThe flash was programmed successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENDriver is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_XSPI_QSPI_XipExit()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_XSPI_QSPI_XipExit (spi_flash_ctrl_tp_ctrl)
    +
    +

    Exits XIP (execute in place) mode.

    +

    Implements spi_flash_api_t::xipExit.

    +
    Return values
    + + + + +
    FSP_SUCCESSThe flash was programmed successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENDriver is not opened.
    +
    +
    + +
    +
    + +

    ◆ R_XSPI_QSPI_Write()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_XSPI_QSPI_Write (spi_flash_ctrl_tp_ctrl,
    uint8_t const *const p_src,
    uint8_t *const p_dest,
    uint32_t byte_count 
    )
    +
    +

    Program a page of data to the flash.

    +

    Implements spi_flash_api_t::write.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSThe flash was programmed successfully.
    FSP_ERR_ASSERTIONp_instance_ctrl, p_dest or p_src is NULL, or byte_count crosses a page boundary.
    FSP_ERR_NOT_OPENDriver is not opened.
    FSP_ERR_INVALID_MODEThis function can't be called when XIP mode is enabled.
    FSP_ERR_DEVICE_BUSYThe device is busy.
    +
    +
    +
    Note
    In this API, data can be written up to 64 bytes at a time.
    + +
    +
    + +

    ◆ R_XSPI_QSPI_Erase()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_XSPI_QSPI_Erase (spi_flash_ctrl_tp_ctrl,
    uint8_t *const p_device_address,
    uint32_t byte_count 
    )
    +
    +

    Erase a block or sector of flash. The byte_count must exactly match one of the erase sizes defined in spi_flash_cfg_t. For chip erase, byte_count must be SPI_FLASH_ERASE_SIZE_CHIP_ERASE.

    +

    Implements spi_flash_api_t::erase.

    +
    Return values
    + + + + + + +
    FSP_SUCCESSThe command to erase the flash was executed successfully.
    FSP_ERR_ASSERTIONp_instance_ctrl or p_device_address is NULL, or byte_count doesn't match an erase size defined in spi_flash_cfg_t, or device is in XIP mode.
    FSP_ERR_NOT_OPENDriver is not opened.
    FSP_ERR_INVALID_MODEThis function can't be called when XIP mode is enabled.
    FSP_ERR_DEVICE_BUSYThe device is busy.
    +
    +
    + +
    +
    + +

    ◆ R_XSPI_QSPI_StatusGet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_XSPI_QSPI_StatusGet (spi_flash_ctrl_tp_ctrl,
    spi_flash_status_t *const p_status 
    )
    +
    +

    Gets the write or erase status of the flash.

    +

    Implements spi_flash_api_t::statusGet.

    +
    Return values
    + + + + + +
    FSP_SUCCESSThe write status is in p_status.
    FSP_ERR_ASSERTIONp_instance_ctrl or p_status is NULL.
    FSP_ERR_NOT_OPENDriver is not opened.
    FSP_ERR_INVALID_MODEThis function can't be called when XIP mode is enabled.
    +
    +
    + +
    +
    + +

    ◆ R_XSPI_QSPI_BankSet()

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_XSPI_QSPI_BankSet (spi_flash_ctrl_tp_ctrl,
    uint32_t bank 
    )
    +
    +

    Selects the bank to access.

    +

    Implements spi_flash_api_t::bankSet.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDAPI not supported.
    +
    +
    + +
    +
    + +

    ◆ R_XSPI_QSPI_DirectTransfer()

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    fsp_err_t R_XSPI_QSPI_DirectTransfer (spi_flash_ctrl_tp_ctrl,
    spi_flash_direct_transfer_t *const p_transfer,
    spi_flash_direct_transfer_dir_t direction 
    )
    +
    +

    Read/Write raw data directly with the SerialFlash.

    +

    Implements spi_flash_api_t::directTransfer.

    +

    Example:

    /* Send the Write Enable (WREN) command to enable writing to the status register */
    err = R_XSPI_QSPI_DirectTransfer(&g_qspi0_ctrl, &qspi_direct_transfer, SPI_FLASH_DIRECT_TRANSFER_DIR_WRITE);
    handle_error(err);
    Return values
    + + + + + +
    FSP_SUCCESSThe flash was programmed successfully.
    FSP_ERR_ASSERTIONA required pointer is NULL.
    FSP_ERR_NOT_OPENDriver is not opened.
    FSP_ERR_INVALID_MODEThis function must be called after R_XSPI_QSPI_DirectWrite with read_after_write set to true.
    +
    +
    + +
    +
    + +

    ◆ R_XSPI_QSPI_AutoCalibrate()

    + +
    +
    + + + + + + + + +
    fsp_err_t R_XSPI_QSPI_AutoCalibrate (spi_flash_ctrl_tp_ctrl)
    +
    +

    AutoCalibrate the SPI flash driver module.

    +

    Implements spi_flash_api_t::autoCalibrate.

    +
    Return values
    + + +
    FSP_ERR_UNSUPPORTEDAPI not supported.
    +
    +
    + +
    +
    +
    +
    + + + + + diff --git a/group___x_s_p_i___q_s_p_i.js b/group___x_s_p_i___q_s_p_i.js new file mode 100644 index 0000000..8bb4d25 --- /dev/null +++ b/group___x_s_p_i___q_s_p_i.js @@ -0,0 +1,60 @@ +var group___x_s_p_i___q_s_p_i = +[ + [ "xspi_qspi_instance_ctrl_t", "group___x_s_p_i___q_s_p_i.html#structxspi__qspi__instance__ctrl__t", null ], + [ "xspi_qspi_chip_select_t", "group___x_s_p_i___q_s_p_i.html#ga9605c020c75bee5805972f74d27ffd2e", [ + [ "XSPI_QSPI_CHIP_SELECT_0", "group___x_s_p_i___q_s_p_i.html#gga9605c020c75bee5805972f74d27ffd2eacf34145ba6a0b294cbdeeab976c150bf", null ], + [ "XSPI_QSPI_CHIP_SELECT_1", "group___x_s_p_i___q_s_p_i.html#gga9605c020c75bee5805972f74d27ffd2eaa1bbf9d876e73b7627f55c2deaf857c9", null ] + ] ], + [ "xspi_qspi_memory_size_t", "group___x_s_p_i___q_s_p_i.html#ga760382ea0170990436140690f193bd65", [ + [ "XSPI_QSPI_MEMORY_SIZE_1MB", "group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a8afb5fb7a7a5339b758f53fceb91268b", null ], + [ "XSPI_QSPI_MEMORY_SIZE_2MB", "group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a0e615937696c1873b137727947c525f5", null ], + [ "XSPI_QSPI_MEMORY_SIZE_4MB", "group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a1551217a1fa6407d02e750cefc928d54", null ], + [ "XSPI_QSPI_MEMORY_SIZE_8MB", "group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a214e6e08bb13c027a5f5d94464d263b6", null ], + [ "XSPI_QSPI_MEMORY_SIZE_16MB", "group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a9ac43acaa7d21c3ba76800735a579208", null ], + [ "XSPI_QSPI_MEMORY_SIZE_32MB", "group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a67f21ed518757add425655b28b865f4c", null ], + [ "XSPI_QSPI_MEMORY_SIZE_64MB", "group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a2c0d20ccd99bfe1c7171778ebb3818f1", null ] + ] ], + [ "xspi_qspi_command_interval_clocks_t", "group___x_s_p_i___q_s_p_i.html#ga8428f80201f33286966d2a84e0fb1f19", [ + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_1", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a4543d64f407a096d164d15e3365603e8", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_2", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a760752bfe782b735d449bc5c679e470b", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_3", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a7387eebf4b950e72afb60bbbea754971", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_4", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a79078d67905481f14a81061cdd17e9f1", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_5", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19aecaadb970c633b9360fdfce5e5c7c527", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_6", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19ab03ff44395500c6b4f9d4bcca356bac2", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_7", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a6f389a6a78b28558ed2c8a5a830d64a6", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_8", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a86bb1c93ed0d8bc69e66a31adbe493d8", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_9", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19acf18d60fd2f71e556ada7debeb513525", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_10", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a89788712416b1af5ccd9082d62d30b43", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_11", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a5fd5dda031287b82ff5dad2e40dffde4", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_12", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a58c5ad4643d6d653624543356554ee3c", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_13", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a6439af4e411e4d03f3c8d3f15722e9dd", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_14", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a8ceda90ab2581dba8ad9529b5fae8145", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_15", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a7700b8b6feef66da31cac305527bc77d", null ], + [ "XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_16", "group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a41c8bb40efff3fa720011b912c303f47", null ] + ] ], + [ "xspi_qspi_cs_pullup_clocks_t", "group___x_s_p_i___q_s_p_i.html#ga50d177e87a5a9279f0e1e37d73f7a58f", [ + [ "XSPI_QSPI_CS_PULLUP_CLOCKS_NO_EXTENSION", "group___x_s_p_i___q_s_p_i.html#gga50d177e87a5a9279f0e1e37d73f7a58fa3d1564719853f7d8fa5f0bcea21107c0", null ], + [ "XSPI_QSPI_CS_PULLUP_CLOCKS_1", "group___x_s_p_i___q_s_p_i.html#gga50d177e87a5a9279f0e1e37d73f7a58fa11ba4008e1f95981db11d99da3aeca65", null ] + ] ], + [ "xspi_qspi_cs_pulldown_clocks_t", "group___x_s_p_i___q_s_p_i.html#gae60133dc12f4f7ae05fff3e117a2669a", [ + [ "XSPI_QSPI_CS_PULLDOWN_CLOCKS_NO_EXTENSION", "group___x_s_p_i___q_s_p_i.html#ggae60133dc12f4f7ae05fff3e117a2669aae9c45150b1ef316f0de9bccb1fc3f270", null ], + [ "XSPI_QSPI_CS_PULLDOWN_CLOCKS_1", "group___x_s_p_i___q_s_p_i.html#ggae60133dc12f4f7ae05fff3e117a2669aab743d88ab010960508bead3d47c4c117", null ] + ] ], + [ "xspi_qspi_prefetch_function_t", "group___x_s_p_i___q_s_p_i.html#ga8c59ecaa03a56fa5db80924c81ff6fcc", [ + [ "XSPI_QSPI_PREFETCH_FUNCTION_DISABLE", "group___x_s_p_i___q_s_p_i.html#gga8c59ecaa03a56fa5db80924c81ff6fccafd2c195951167330e5b7a90ae262d361", null ], + [ "XSPI_QSPI_PREFETCH_FUNCTION_ENABLE", "group___x_s_p_i___q_s_p_i.html#gga8c59ecaa03a56fa5db80924c81ff6fcca152b74d0c0cf97d6a36343f724a8d6ee", null ] + ] ], + [ "R_XSPI_QSPI_Open", "group___x_s_p_i___q_s_p_i.html#ga6e1ddbaec6b1d04c6425b3a271d9093a", null ], + [ "R_XSPI_QSPI_Close", "group___x_s_p_i___q_s_p_i.html#gaad19b3c8e517b9e614ee8697f8cef4e7", null ], + [ "R_XSPI_QSPI_DirectWrite", "group___x_s_p_i___q_s_p_i.html#ga1bfceb0eafe5923f05b90899c095bd2d", null ], + [ "R_XSPI_QSPI_DirectRead", "group___x_s_p_i___q_s_p_i.html#ga2f5bbf5d76d76c31840f4ce82d3393d2", null ], + [ "R_XSPI_QSPI_SpiProtocolSet", "group___x_s_p_i___q_s_p_i.html#gac03a7edb53183d589372bd8be1ecf870", null ], + [ "R_XSPI_QSPI_XipEnter", "group___x_s_p_i___q_s_p_i.html#ga373731d45a2fdd625ee69b602ebc4d86", null ], + [ "R_XSPI_QSPI_XipExit", "group___x_s_p_i___q_s_p_i.html#gaedf789bc1d1335f9b2356eaaaa58694e", null ], + [ "R_XSPI_QSPI_Write", "group___x_s_p_i___q_s_p_i.html#gaf2619573525414afefc46ebc2fd53bec", null ], + [ "R_XSPI_QSPI_Erase", "group___x_s_p_i___q_s_p_i.html#ga35a0c5d80a5ae30d48b46b37153f7e76", null ], + [ "R_XSPI_QSPI_StatusGet", "group___x_s_p_i___q_s_p_i.html#gaad73cce9b2ac857fbd0423223ae3388e", null ], + [ "R_XSPI_QSPI_BankSet", "group___x_s_p_i___q_s_p_i.html#ga384be6c60819abe2478a7b35c9a7a98e", null ], + [ "R_XSPI_QSPI_DirectTransfer", "group___x_s_p_i___q_s_p_i.html#ga5e5bf2c3854fb149c7ac6f96fce9ee98", null ], + [ "R_XSPI_QSPI_AutoCalibrate", "group___x_s_p_i___q_s_p_i.html#ga6fceaa55b924ce5ecf7a00a962b5d529", null ] +]; \ No newline at end of file diff --git a/index.html b/index.html index 5971050..a93067e 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Introduction +RZV Flexible Software Package Documentation: Introduction @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Introduction
    @@ -110,19 +178,19 @@

    Overview

    -

    This manual describes how to use the Renesas Flexible Software Package (FSP) for writing applications for the RZ microprocessors.

    +

    This manual describes how to use the Renesas Flexible Software Package (FSP) for writing applications for the RA microcontroller series.

    Using this Manual

    This manual provides a wide variety of information, so it can be helpful to know where to start. Here is a short description of each main section and how they can be used.

    -

    Starting Development - Provides a step by step guide on how to use e2 studio and FSP to develop a project for RZ MPUs. This is a good place to start to get up to speed quickly and efficiently.

    +

    Starting Development - Provides a step by step guide on how to use e2 studio and FSP to develop a project for RA MCUs. This is a good place to start to get up to speed quickly and efficiently.

    FSP Architecture - Provides useful background material on key FSP concepts such as Modules, Stacks, and API standards. Reference this section to extend or refresh your knowledge of FSP concepts.

    -

    API Reference - Provides detailed information on each module and interface including features, API functions, configuration settings, usage notes, function prototypes and code examples. Board Support Package (BSP) related API functions are also included.

    +

    API Reference - Provides detailed information on each module and interface including features, API functions, configuration settings, usage notes, function prototypes and code examples. Board Support Package (BSP) related API functions are also included.

    Documentation Standard

    Each Modules section user guide outlines the following:

    • Features: A bullet list of high level features provided by the module.
    • -
    • Configuration: A description of module specific configurations available in the RZ Configuration editor.
    • +
    • Configuration: A description of module specific configurations available in the RA Configuration editor.
    • Usage Notes: Module specific documentation and limitations.
    • Examples: Example code provided to help the user get started.
    • API Reference: Usage notes for each API in the module, including the function prototype and hyperlinks to the interface documentation for parameter definitions.
    • @@ -147,20 +215,20 @@

      FSP provides uniform and intuitive APIs that are well documented. Each module is supported with detailed user documentation including example code.

      Scalability

      -

      FSP modules can be used on any MPU in the RZ microprocessors, provided the MPU has any peripherals required by the module.

      +

      FSP modules can be used on any MCU in the RA family, provided the MCU has any peripherals required by the module.

      Build Time Configurations

      FSP modules also have build time configurations that can be used to optimize the size of the module for the feature set required by the application.

      e2 studio IDE

      -

      FSP provides a host of efficiency enhancing tools for developing projects targeting the Renesas RZ microprocessors. The e2 studio IDE provides a familiar development cockpit from which the key steps of project creation, module selection and configuration, code development, code generation, and debugging are all managed.

      +

      FSP provides a host of efficiency enhancing tools for developing projects targeting the Renesas RA series of MCU devices. The e2 studio IDE provides a familiar development cockpit from which the key steps of project creation, module selection and configuration, code development, code generation, and debugging are all managed.

    diff --git a/modules.html b/modules.html index 74f5765..585b189 100644 --- a/modules.html +++ b/modules.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: API Reference +RZV Flexible Software Package Documentation: API Reference @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    API Reference
    @@ -98,47 +166,88 @@
    [detail level 123]
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     BSPCommon code shared by FSP drivers
     Common Error Codes
     MPU Board Support PackageThe BSP is responsible for getting the MPU from reset to the user's application. Before reaching the user's application, the BSP sets up the stacks, heap, interrupts and C runtime environment
     RZV2L
     BSP I/O accessThis module provides basic read/write access to port pins
     ModulesModules are the smallest unit of software available in the FSP. Each module implements one interface
     Controller Area Network - Flexible Data (r_canfd)Driver for the CANFD peripheral on RZ MPUs. This module implements the CAN Interface
     General PWM Timer (r_gpt)Driver for the GPT peripheral on RZ MPUs. This module implements the Timer Interface
     General Timer (r_gtm)Driver for the GTM peripherals on RZ MPUs. This module implements the Timer Interface
     External IRQ (r_intc_irq)Driver for the INTC_IRQ peripheral on RZ/V2L. This module implements the External IRQ Interface
     I/O Ports (r_ioport)Driver for the I/O Ports peripheral on RZ MPUs. This module implements the I/O Port Interface
     Message Handling Unit for non secure channels (r_mhu_ns)Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels)
     Message Handling Unit for non-secure software interrupt receive (r_mhu_ns_swint_get)Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Get)
     Message Handling Unit for non-secure software interrupt generation (r_mhu_ns_swint_set)Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Set)
     Message Handling Unit for secure channels (r_mhu_s)Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels)
     Port Output Enable for GPT (r_poeg)Driver for the POEG peripheral on RZ MPUs. This module implements the POEG Interface
     I2C Master on RIIC (r_riic_master)Driver for the RIIC peripheral on RZ MPUs. This module implements the I2C Master Interface
     Renesas Serial Peripheral Interface (r_rspi)Driver for the RSPI peripheral on RZ MPUs. This module implements the SPI Interface
     Serial Communications Interface (SCIF) UART (r_scif_uart)Driver for the SCIF peripheral on RZ MPUs. This module implements the UART Interface
     I2C Communication Device (rm_comms_i2c)Middleware to implement the I2C communications interface. This module implements the Communicatons Middleware Interface
     FreeRTOS Port (rm_freertos_port)FreeRTOS port for RZ MPUs
     HS300X Temperature/Humidity Sensor (rm_hs300x)Middleware to implement the HS300X sensor interface. This module implements the HS300X Middleware Interface
     HS400X Temperature/Humidity Sensor (rm_hs400x)Middleware to implement the HS400X sensor interface. This module implements the HS400X Middleware Interface
     OB1203 Light/Proximity/PPG Sensor (rm_ob1203)Middleware to implement the OB1203 sensor interface. This module implements the OB1203 Middleware Interface
     ZMOD4XXX Gas Sensor (rm_zmod4xxx)Middleware to implement the ZMOD4XXX sensor interface. This module implements the ZMOD4XXX Middleware Interface
     InterfacesThe FSP interfaces provide APIs for common functionality. They can be implemented by one or more modules. Modules can use other modules as dependencies using this interface layer
     CAN InterfaceInterface for CAN peripheral
     External IRQ InterfaceInterface for detecting external interrupts
     I2C Master InterfaceInterface for I2C master communication
     I/O Port InterfaceInterface for accessing I/O ports and configuring I/O functionality
     MHU Interface (for secure and non secure channels)Interface for Message Handling Unit
     MHU Interface (Software Interrupt Get)Interface for Message Handling Unit (Software Interrupt Get)
     MHU Interface (Software Interrupt Set)Interface for Message Handling Unit (Software Interrupt Set)
     POEG InterfaceInterface for the Port Output Enable for GPT
     SPI InterfaceInterface for SPI communications
     Timer InterfaceInterface for timer functions
     Transfer InterfaceInterface for data transfer functions
     UART InterfaceInterface for UART communications
     Communicatons Middleware InterfaceInterface for Communications Middleware functions
     HS300X Middleware InterfaceInterface for HS300X Middleware functions
     HS400X Middleware InterfaceInterface for HS400X Middleware functions
     OB1203 Middleware InterfaceInterface for OB1203 Middleware functions
     ZMOD4XXX Middleware InterfaceInterface for ZMOD4XXX Middleware functions
     MPU Board Support PackageThe BSP is responsible for getting the MCU from reset to the user's application. Before reaching the user's application, the BSP sets up the stacks, heap, clocks, interrupts, C runtime environment, and stack monitor
     RZV2H
     RZV2L
     BSP I/O accessThis module provides basic read/write access to port pins
     ModulesModules are the smallest unit of software available in the FSP. Each module implements one interface
     AnalogAnalog Modules
     Analog to Digital Converter (r_adc_c)Driver for the ADC peripheral on RZ MPUs. This module implements the ADC Interface
     Analog to Digital Converter (r_adc_e)Driver for the and ADC12 peripherals on RZ microprocessor. This module implements the ADC Interface
     Temperature Sensor Unit (r_tsu_b)Driver for the TSU peripheral on RZ microprocessor. This module implements the ADC Interface
     ConnectivityConnectivity Modules
     Controller Area Network - Flexible Data (r_canfd)Driver for the CANFD peripheral on RZ MPUs. This module implements the CAN Interface
     I3C (r_i3c_b)Driver for the I3C peripheral on RZ MPU. This module implements the I3C Interface
     Message Handling Unit for non secure channels (r_mhu_b_ns)Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels)
     Message Handling Unit for non-secure software interrupt receive (r_mhu_b_ns_swint_get)Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Get)
     Message Handling Unit for non-secure software interrupt generation (r_mhu_b_ns_swint_set)Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Set)
     Message Handling Unit for secure channels (r_mhu_b_s)Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels)
     Message Handling Unit for non secure channels (r_mhu_ns)Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels)
     Message Handling Unit for non-secure software interrupt receive (r_mhu_ns_swint_get)Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Get)
     Message Handling Unit for non-secure software interrupt generation (r_mhu_ns_swint_set)Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (Software Interrupt Set)
     Message Handling Unit for secure channels (r_mhu_s)Driver for the MHU peripherals on RZ MPUs. This module implements the MHU Interface (for secure and non secure channels)
     PDM Interface (r_pdm)Driver for the PDM peripheral on RZ MPUs. This module implements the PDM Interface
     I2C Master on RIIC (r_riic_master)Driver for the RIIC peripheral on RZ MPUs. This module implements the I2C Master Interface
     I2C Slave (r_riic_slave)Driver for the RIIC peripheral on RZ MPUs. This module implements the I2C Slave Interface
     Renesas Serial Peripheral Interface (r_rspi)Driver for the RSPI peripheral on RZ MPUs. This module implements the SPI Interface
     I2C Master (r_sci_b_i2c)Driver for the SCI_B peripheral on RZ MPUs. This module implements the I2C Master Interface
     UART (r_sci_b_uart)Driver for the SCI peripheral on RZ MPUs. This module implements the UART Interface
     Serial Communications Interface (SCIF) UART (r_scif_uart)Driver for the SCIF peripheral on RZ MPUs. This module implements the UART Interface
     SPI (r_spi_b)Driver for the SPI peripheral on RZ MPUs. This module implements the SPI Interface
     I2C Communication Device (rm_comms_i2c)Middleware to implement the I2C communications interface. This module implements the Communicatons Middleware Interface
     InputInput Modules
     External IRQ (r_intc_irq)Driver for the INTC_IRQ peripheral on RZ MPUs. This module implements the External IRQ Interface
     External IRQ (r_intc_nmi)Driver for the INTC_NMI peripheral on RZ MPUs. This module implements the External IRQ Interface
     External IRQ (r_intc_tint)Driver for the Interrupt Controller peripheral on RZ MPUs. This module implements the External IRQ Interface
     MonitoringMonitoring Modules
     CRC (r_crc)Driver for the CRC peripheral on RZ MPUs. This module implements the CRC Interface
     Watchdog (r_wdt)Driver for the WDT peripheral on RZ MPUs. This module implements the WDT Interface
     RTOSRTOS Modules
     FreeRTOS Port (rm_freertos_port)FreeRTOS port for RZ MPUs
     SensorSensor Modules
     HS300X Temperature/Humidity Sensor (rm_hs300x)Middleware to implement the HS300X sensor interface. This module implements the HS300X Middleware Interface
     HS400X Temperature/Humidity Sensor (rm_hs400x)Middleware to implement the HS400X sensor interface. This module implements the HS400X Middleware Interface
     ZMOD4XXX Gas Sensor (rm_zmod4xxx)Middleware to implement the ZMOD4XXX sensor interface. This module implements the ZMOD4XXX Middleware Interface
     StorageStorage Modules
     Expanded Serial Peripheral Interface (xSPI) QSPI (r_xspi_qspi)Driver for the xSPI peripheral on RZ microprocessor. This module implements the SPI Flash Interface
     SystemSystem Modules
     Event Link Controller (r_elc)Driver for the ELC peripheral on RZ microprocessor. This module implements the ELC Interface
     I/O Ports (r_ioport)Driver for the I/O Ports peripheral on RZ MPUs. This module implements the I/O Port Interface
     TimersTimers Modules
     Compare Match Timer W (r_cmtw)Driver for the CMTW peripheral on RZ MPUs. This module implements the Timer Interface
     General PWM Timer (r_gpt)Driver for the GPT peripheral on RZ MPUs. This module implements the Timer Interface
     General Timer (r_gtm)Driver for the GTM peripherals on RZ MPUs. This module implements the Timer Interface
     Multi-Function Timer Pulse Unit 3 (r_mtu3)Driver for the MTU3 peripherals on RZ microprocessor. This module implements the Timer Interface
     Port Output Enable for GPT (r_poeg)Driver for the POEG peripheral on RZ MPUs. This module implements the POEG Interface
     Realtime Clock (r_rtc)Driver for the RTC peripheral on RZ MPUs. This module implements the RTC Interface
     TransferTransfer Modules
     Direct Memory Access Controller (r_dmac_b)Driver for the DMAC peripheral on RZ MPUs. This module implements the Transfer Interface
     InterfacesThe FSP interfaces provide APIs for common functionality. They can be implemented by one or more modules. Modules can use other modules as dependencies using this interface layer
     ADC InterfaceInterface for A/D Converters
     CAN InterfaceInterface for CAN peripheral
     CRC InterfaceInterface for cyclic redundancy checking
     ELC InterfaceInterface for the Event Link Controller
     External IRQ InterfaceInterface for detecting external interrupts
     I2C Master InterfaceInterface for I2C master communication
     I2C Slave InterfaceInterface for I2C slave communication
     I3C InterfaceInterface for I3C
     I/O Port InterfaceInterface for accessing I/O ports and configuring I/O functionality
     MHU Interface (for secure and non secure channels)Interface for Message Handling Unit
     MHU Interface (Software Interrupt Get)Interface for Message Handling Unit (Software Interrupt Get)
     MHU Interface (Software Interrupt Set)Interface for Message Handling Unit (Software Interrupt Set)
     PDM InterfaceInterface for PDM audio communication
     POEG InterfaceInterface for the Port Output Enable for GPT
     RTC InterfaceInterface for accessing the Realtime Clock
     SPI InterfaceInterface for SPI communications
     SPI Flash InterfaceInterface for accessing external SPI flash devices
     Timer InterfaceInterface for timer functions
     Transfer InterfaceInterface for data transfer functions
     UART InterfaceInterface for UART communications
     WDT InterfaceInterface for watch dog timer functions
     Communicatons Middleware InterfaceInterface for Communications Middleware functions
     HS300X Middleware InterfaceInterface for HS300X Middleware functions
     HS400X Middleware InterfaceInterface for HS400X Middleware functions
     ZMOD4XXX Middleware InterfaceInterface for ZMOD4XXX Middleware functions
    @@ -147,7 +256,7 @@ diff --git a/navtreedata.js b/navtreedata.js index 0e21b1f..7ba8980 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -1,6 +1,6 @@ var NAVTREE = [ - [ "RZ/V Flexible Software Package Documentation", "index.html", [ + [ "RZV Flexible Software Package Documentation", "index.html", [ [ "Introduction", "index.html", [ [ "Overview", "index.html#introduction-overview", null ], [ "Using this Manual", "index.html#how-to-read", null ], @@ -20,40 +20,7 @@ var NAVTREE = [ "C99 Use", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#c99-use", null ], [ "Doxygen", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#doxygen", null ], [ "Weak Symbols", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#weak-symbols", null ], - [ "Memory Allocation", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#memory-allocation", null ], - [ "FSP Terms", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-terms", null ] - ] ], - [ "FSP Modules", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-modules", null ], - [ "FSP Stacks", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-stacks", null ], - [ "FSP Interfaces", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-interfaces", [ - [ "FSP Interface Enumerations", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-interface-enumerations", null ], - [ "FSP Interface Callback Functions", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-interface-callback-functions", null ], - [ "FSP Interface Data Structures", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-internface-data-structures", [ - [ "FSP Interface Configuration Structure", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-interface-configuration-structure", null ], - [ "FSP Interface API Structure", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-interface-api-structure", null ], - [ "FSP Interface Instance Structure", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-instance-structure", null ] - ] ] - ] ], - [ "FSP Instances", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-instances", [ - [ "FSP Instance Control Structure", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#control-structure", null ], - [ "FSP Interface Extensions", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-interface-extensions", [ - [ "FSP Extended Configuration Structure", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-extended-configuration-structure", null ] - ] ], - [ "FSP Instance API", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-instance-api", null ] - ] ], - [ "FSP API Standards", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-api-standards", [ - [ "FSP Function Names", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-function-names", null ], - [ "Use of const in API parameters", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#use-of-const-in-api-parameters", null ], - [ "FSP Version Information", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-version-information", null ] - ] ], - [ "FSP Build Time Configurations", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-build-time-configurations", null ], - [ "FSP File Structure", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-file-structure", null ], - [ "FSP Architecture in Practice", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-architecture-in-practice", [ - [ "FSP Connecting Layers", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-connecting-layers", null ], - [ "Using FSP Modules in an Application", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#using-fsp-modules-in-an-application", [ - [ "Create a Module Instance in the RZ Configuration Editor", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#create-a-module-instance", null ], - [ "Use the Instance API in the Application", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#use-the-instance-api", null ] - ] ] + [ "Memory Allocation", "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#memory-allocation", null ] ] ] ] ], [ "API Reference", "modules.html", "modules" ], @@ -64,15 +31,22 @@ var NAVTREE = var NAVTREEINDEX = [ "_c_o_p_y_r_i_g_h_t.html", -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eacee8ac33d0115b3997767c64527115ab", -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ga3dc909b21d5ebe0d1d671221e4190246", -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea188e17e95c4825d3604cfe19e60ac21f", -"group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8afb9e29f050c27973d20c0273f88c6207", -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a479e63b946d94636f905fd9bace227e9", -"group___r_m___h_s300_x___a_p_i.html#gaaab827d822b03dfceb75bb3071a4fad1", -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a6ace2781bd3f2b78dc2f1b8f51dbf245", -"group___r_s_p_i.html#af4b65717f05932609172a0828cee1db4", -"group___t_r_a_n_s_f_e_r___a_p_i.html#a12d4ba0d43dd22fda6b1b238d2fa17b6" +"group___a_d_c___c.html#structadc__c__extended__cfg__t", +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab4d640dac1a6dff63f33c79ee1e20c9e", +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ae2e4b37d45024125cbb660f1b3a3090e", +"group___c_m_t_w.html#gga0d3145595cde1b2a26d8812cbb1aac5ca89b0a65698f2c9dad74c7ba53ba9de5d", +"group___g_p_t.html#ga338dd3c38477ee40c90c13f3a4c9ecfd", +"group___i2_c___s_l_a_v_e___a_p_i.html#a4fa45eb7423e7b93f78839b2bb612776", +"group___i3_c___b.html#gaa9ce3fda0950ce2aaa0cd8cf51fb5f95", +"group___i_o_p_o_r_t___a_p_i.html#af5b820497125b07a94537deb03a37f0d", +"group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa0b50c080f4d0da8eaebb4f8fbdcaffa4", +"group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba8a559716ca4f1164b677818843e90715", +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af39326ab50613d8779ebc84e5da8ffbc", +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a026e4a40776c79cd6cf745c8446b4bfd", +"group___s_c_i___b___i2_c.html#ga0d1ab3b59b204adb64bff01d4c83d10f", +"group___s_p_i___b.html#a5e759f1a2e0e50733ffe773b84e009b0", +"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebab7b635fbf34ede5a3e2f55b5a60ac21b", +"group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a85b86587793408cd7b12fc4eb18e93c0" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex0.js b/navtreeindex0.js index 0aed5a0..7f338b8 100644 --- a/navtreeindex0.js +++ b/navtreeindex0.js @@ -3,251 +3,251 @@ var NAVTREEINDEX0 = "_c_o_p_y_r_i_g_h_t.html":[4], "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html":[2], "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#c99-use":[2,0,0], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#control-structure":[2,4,0], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#create-a-module-instance":[2,8,1,0], "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#doxygen":[2,0,1], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-api-standards":[2,5], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-architecture-in-practice":[2,8], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-build-time-configurations":[2,6], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-connecting-layers":[2,8,0], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-extended-configuration-structure":[2,4,1,0], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-file-structure":[2,7], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-function-names":[2,5,0], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-instance-api":[2,4,2], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-instance-structure":[2,3,2,2], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-instances":[2,4], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-interface-api-structure":[2,3,2,1], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-interface-callback-functions":[2,3,1], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-interface-configuration-structure":[2,3,2,0], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-interface-enumerations":[2,3,0], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-interface-extensions":[2,4,1], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-interfaces":[2,3], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-internface-data-structures":[2,3,2], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-modules":[2,1], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-stacks":[2,2], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-terms":[2,0,4], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#fsp-version-information":[2,5,2], "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#memory-allocation":[2,0,3], "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#renesas-ra-software-package-fsp-architecture":[2,0], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#use-of-const-in-api-parameters":[2,5,1], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#use-the-instance-api":[2,8,1,1], -"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#using-fsp-modules-in-an-application":[2,8,1], "_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html#weak-symbols":[2,0,2], "_s_t_a_r_t__d_e_v.html":[1], -"group___b_s_p___i_o.html":[3,0,2], -"group___b_s_p___i_o.html#ga0ad2123f7a5152cf108883163581f11b":[3,0,2,6], -"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80a":[3,0,2,3], -"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46e":[3,0,2,2], -"group___b_s_p___i_o.html#ga33cef14f93543bcb3531b4f2e377c5c4":[3,0,2,5], -"group___b_s_p___i_o.html#ga45a10c059c82e2062c0b72fa801dd78b":[3,0,2,1], -"group___b_s_p___i_o.html#ga6764c3fac52569cadd44b83a6d3f432d":[3,0,2,4], -"group___b_s_p___i_o.html#gab4ef0cc3fce421d48310f23c614aadc0":[3,0,2,0], -"group___b_s_p___i_o.html#gab5aab592b5fbbfa18d542c0812850b98":[3,0,2,7], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa01a4990336c06cef1fea22c9ff2bfb2d":[3,0,2,3,115], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa03979860d2850a4790a85a7012fff5b4":[3,0,2,3,131], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa03dceeb58f56dc9a21b5bfa3176ab217":[3,0,2,3,113], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0623a8fae8511929239804f47b76dbab":[3,0,2,3,24], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0ae62012d023d55c6d1141e1f09d09d8":[3,0,2,3,2], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0cd29a6c518b2c8e67932c1e8d6a62d4":[3,0,2,3,85], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0ed7d51f576b741e15330313031c2216":[3,0,2,3,29], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0ef28251d02b2be71736cd6709324cf7":[3,0,2,3,129], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0f2b7d0278bf5dcbe1a9d7b9cefd0c15":[3,0,2,3,76], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa125041643933f0bc07f32f14887bdf9c":[3,0,2,3,25], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa12bccfc806539758e2b3a47e6ea93ca9":[3,0,2,3,159], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa1628f1c03dc3bfe49f118a6bb2400c53":[3,0,2,3,44], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa16ff4369ccc2eb0e6447af953bc94500":[3,0,2,3,40], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa1787bfc47089bd96d33fff7bad1153d1":[3,0,2,3,60], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa191310dd2b5e6a16244b452a76983735":[3,0,2,3,35], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa1e9673eef7a96cf9f46b8f75421075dd":[3,0,2,3,155], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2014abe37005233fad759d8de134796a":[3,0,2,3,30], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa23d463236f6411d0c90196dabcc9c5cf":[3,0,2,3,34], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa252a1fcd0f46a31afcf798e301bdba16":[3,0,2,3,100], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa25fdf456c4b05c5e15f51d615c3fa673":[3,0,2,3,77], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa26c218a01d621d492389ce4f74597f55":[3,0,2,3,48], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2818abb4ea0fa720d53bf0a0ba923870":[3,0,2,3,112], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2a3374a2fd5198a534ee4a728349e13f":[3,0,2,3,59], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2c579ae3361bf6dfb4191b4da60910fe":[3,0,2,3,99], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2d28483ae8cdc5474deca88e6bfe1dee":[3,0,2,3,88], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2df8908dd4850253d394bc3b7e685a75":[3,0,2,3,66], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2f376ba6a57ea3ac2d60a499a0f57c46":[3,0,2,3,65], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2fae9399a986654ad829fd957a0b5129":[3,0,2,3,81], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa30e6ff3f5eca3d04bec3d714e474f3df":[3,0,2,3,3], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa37a5927be9bc40f6df0f64adc84d6006":[3,0,2,3,101], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa38e1abc8d5cae949e3f1e82f9f107cc3":[3,0,2,3,120], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa39f4c9b8a1bfe125213595ecc0b45df0":[3,0,2,3,55], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa3afa25e16d31202f5367150ce88e768e":[3,0,2,3,137], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa3bf300bb3aa746665b49bc8200bd7963":[3,0,2,3,123], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa3c395ad7ae5d1d25edc8ba2a536d0525":[3,0,2,3,41], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa405fdd3dc66955a4858cc69a19016933":[3,0,2,3,140], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa40b055b032c42ad42b0d1878a4a52d73":[3,0,2,3,54], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa41f8c9cb94f726c7030df2052fd79774":[3,0,2,3,28], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa430a0d48fb4e6fc1f5a358a5c1b17d8f":[3,0,2,3,111], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa456bca4a2c1ee49955d22b162753d000":[3,0,2,3,127], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa49e414efa6d0d02c604aac05bb9778db":[3,0,2,3,56], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa4a41ab4915afe1b7a374411fe9eb196e":[3,0,2,3,61], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa4f0e2180e0a141f1ef73934fa9c340d0":[3,0,2,3,86], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa4f69d60a8685d441c35495d9d7dd09b8":[3,0,2,3,97], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5116644c1d06c3af3240908b62f1a1e1":[3,0,2,3,126], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa51d3b48ed479b2ee3a46dc996d04b435":[3,0,2,3,93], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa52b16585d757e097a7ff851e74748973":[3,0,2,3,107], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa52d01ece7c8204d5780ce72179f09c76":[3,0,2,3,8], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5394e222d99a1ca17622c3d1c8a5c94d":[3,0,2,3,152], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa53d05b3cda0c467bb7f5ed5999f2ab8f":[3,0,2,3,45], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5590555e0fa70d287a8a215b9a703de7":[3,0,2,3,132], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa57c5991f29df32eb1f4cd1c82082725b":[3,0,2,3,118], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa57ff3c85ce33930afe04e3802c55227f":[3,0,2,3,64], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa59817ac0e653810d530b8bb4a74305d6":[3,0,2,3,82], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5c7fa78ba5a0152298956fda6cf85c5e":[3,0,2,3,50], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5dfe885cc0ee6d129a7759c8ffecfd7e":[3,0,2,3,49], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5f53758d43bb074b01e3cba77cbb5cde":[3,0,2,3,121], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa60d189d33295043480ca9e91989fb126":[3,0,2,3,122], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa614cf023157b36d3e2162e11318abc31":[3,0,2,3,62], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa62ce6a7aef8164ea6bce7a9209b2506f":[3,0,2,3,0], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa62d85ff211777b182617b334c8f7e7b0":[3,0,2,3,73], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa635ed7a090bf9052c6cfc6c225335c9a":[3,0,2,3,4], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa63642ca9b2805ff92be0aa0bf7a66a9a":[3,0,2,3,89], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa65598f991476837f7822ce44244e349e":[3,0,2,3,154], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6569ae616e2c7ec066f05618be44d35a":[3,0,2,3,15], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa67d5209707eab3f61c4eb9bbbd1ce73f":[3,0,2,3,142], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6828c5428be0bd1a3a5b79e111871411":[3,0,2,3,163], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6c298d5d898981f883b4b01f90e5c996":[3,0,2,3,20], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6d353753e9a3f1ec95967f7e7fb630f5":[3,0,2,3,146], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6f5ee1365a8b7fc827fd3ceb3a4a8cb7":[3,0,2,3,90], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7127f17a3754e1842aafd8c5b5d2062a":[3,0,2,3,147], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa72604af4694f399a0eca581ec5b897b8":[3,0,2,3,92], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa73326eeb5a58de9766418893bcc1a284":[3,0,2,3,133], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa73f9c0b7f80c8385d77008b1e785eb88":[3,0,2,3,104], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7901524777e247b132a543d19b8ddd4f":[3,0,2,3,160], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7a1d5c0e646b87a381b9f1a829e2909b":[3,0,2,3,153], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7bf44c9d323051836f7cbdc7e9da06de":[3,0,2,3,33], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8248388efb79c97a26893bb2de4c8d5b":[3,0,2,3,157], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa829088e17268397d6ddb14182a380e51":[3,0,2,3,98], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa841054432251d0c7343d32144cee6789":[3,0,2,3,119], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa876a99deff86f8d09f1d96112a1b2dc3":[3,0,2,3,135], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa88e147f4775b65d5c96a282684a408c8":[3,0,2,3,17], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8b11501a458d5b7a82e5bdc80cb9252a":[3,0,2,3,151], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8c0b73a965fe066d0d58a4fb513d84dc":[3,0,2,3,164], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8d452d6083512df8aa8bcef4815ad8b8":[3,0,2,3,79], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8ef0f2b6cc6de032c23c371dafc6004f":[3,0,2,3,23], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa9068c73f5a59c1a55f6e57bd406edf6c":[3,0,2,3,1], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa922ad01a7323cb74f484964dc5d66697":[3,0,2,3,37], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa939175dd8a48d965dd7c667764cc1fd5":[3,0,2,3,6], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa9406041975509fcccff7d7dd93e786f3":[3,0,2,3,84], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa95398234ddf9c5235901f089d4e81662":[3,0,2,3,14], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa98b1d268ef5f45e6751c0a99139acc5c":[3,0,2,3,53], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa9ddc4ada31ca968e9b166cd11b440143":[3,0,2,3,51], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa62438f5462fd98d683368b464b18e4c":[3,0,2,3,149], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa7c30f479d99f883ee4b4fa27b6ae4f5":[3,0,2,3,156], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa7c6e61f76d6c3cc9a9dfd2f091bb0b3":[3,0,2,3,95], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa8daf070713048cb35f873e0490068df":[3,0,2,3,130], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa9e537caa46d62591f1a698b30897ee2":[3,0,2,3,39], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaab1bcef9f45fb16232cc5913697eed32":[3,0,2,3,12], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaae0e1e9e69f942b9db5e95ff83323ad4":[3,0,2,3,38], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaaedcbffa95e268f197778af394a4bf35":[3,0,2,3,19], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaaee42cef11c4a58e9e5aa68fd382299b":[3,0,2,3,67], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaaf1af3c7ee0c71fde7bfd1cd49949123":[3,0,2,3,46], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab0e97936a0410619b613d3e8ac4b0de1":[3,0,2,3,150], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab20b0a224aa92ffab0e0405e33c7e61c":[3,0,2,3,91], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab466c8da8ed341f72fdc9e4059d9025c":[3,0,2,3,158], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab4d640dac1a6dff63f33c79ee1e20c9e":[3,0,2,3,52], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab5b1771adf3821c23b1c4cfbeea5b4f5":[3,0,2,3,74], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab951cf766f9cd671ae093a141bc0c49a":[3,0,2,3,26], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaba0a89ecb1ad6357f0ca6ca8067ff000":[3,0,2,3,83], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaba9b7c124ac20c50a71563d64a068fc9":[3,0,2,3,161], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabaaa47451e1390c478c5b2a1725e6496":[3,0,2,3,27], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabc8eb75642cdbdaac75d88a34278250b":[3,0,2,3,69], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabcc1e97ac8b56e357b24ec536ddb4269":[3,0,2,3,148], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabccd7e7760466f8c666ae02e8d84267e":[3,0,2,3,128], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabfeca2fc1cd38d80e5e31eb3c5032b83":[3,0,2,3,108], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac17f65dbf85a6c6e746f1bf21aa934db":[3,0,2,3,71], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac2479bdb7c292438a9d7c3dd4f48a16a":[3,0,2,3,42], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac300c1ff8aaf37d2d3c840341888909a":[3,0,2,3,106], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac47b0fc7594eb9f9b3b8b8ad31b464ec":[3,0,2,3,47], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac53d38f374d54699a1622468faedc544":[3,0,2,3,70], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5d15277bbd25881faf865b00f8c46c1":[3,0,2,3,109], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5e1dcfb012ca07ec05c7a5da14ad055":[3,0,2,3,138], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5e49717d4d34dea314976288c20c6ee":[3,0,2,3,110], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5f9f37be21799183925449eda63b433":[3,0,2,3,80], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac76bc2a911b588e27633978b1fe3f3f4":[3,0,2,3,7], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aacaf9e71dadad94b9b321585c69de0cd1":[3,0,2,3,94], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaceb466e44e04e3b0ab04a7f10003a8be":[3,0,2,3,10], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aacf43fded0d1c0e1888ec9ae765ddf5f2":[3,0,2,3,11], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad20c513c1e1b64b683255e3b3b34b09a":[3,0,2,3,32], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad24ad8bbfa5f6d10db6ff8dc75eadef5":[3,0,2,3,31], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad2f6c4dec46159cddb6d967a551c7c2a":[3,0,2,3,139], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad47cbb33ca5c9f12ee8dca084e3062d3":[3,0,2,3,18], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad77d8a140615854897936e80b31f0670":[3,0,2,3,162], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad9a5407f94f35c91c7d98c0c91ffd975":[3,0,2,3,72], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadab728bf7f83ae6d642836403d5d2dc1":[3,0,2,3,43], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadb3e4e605bcb1d788367185e4058982f":[3,0,2,3,21], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadc72aebfb0e4a967a56c0e6b9d00ef18":[3,0,2,3,68], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadd39c324258c968a575e24a4fa7ff354":[3,0,2,3,78], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aade0f69819cb635c9127516bcb86f5886":[3,0,2,3,136], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae35842723dba01d6ced15e6349ad2d8e":[3,0,2,3,36], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae3e273b0a415a41e1f4e3ae91817c186":[3,0,2,3,16], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae3f2fd01c62e1ae8522ed5137ad07e5e":[3,0,2,3,103], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae4d19f207d3548baf4e742bfca68ae46":[3,0,2,3,102], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae758bfc092956cb39f9013b921753657":[3,0,2,3,144], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae8415d4c07fce74af51a792896f3777e":[3,0,2,3,75], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae97fc09171edc1a3c841cab7a1020fb2":[3,0,2,3,125], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae9d15e574de9e35f7e1197c95d05dad9":[3,0,2,3,13], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaea414f512f3b2c84888d93d506fbe172":[3,0,2,3,5], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaeaedf55bf5c303fdb8fd62b7df65f2e4":[3,0,2,3,143], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaeb156edee3b3c89b68b51df1f396a61f":[3,0,2,3,9], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaef51c0ad05848a82f97fa49a29f66f37":[3,0,2,3,145], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaeffcc1d1f99236ae009d76eab5e0913d":[3,0,2,3,96], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf0ecf908b8d4ce84a33b69ca4fdabca4":[3,0,2,3,87], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf117a1aa77a1a547745adf145d8dc77e":[3,0,2,3,57], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf2cf666df832a706dfdd973aac8406d8":[3,0,2,3,134], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf4eff0573f5c549da8c41d0b38166e66":[3,0,2,3,58], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf8c5571fbe78f2c5e6a767c13aec041c":[3,0,2,3,63], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf98bbb6311738366fe772c4a0e320824":[3,0,2,3,116], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf9970a4d1a41e6482fad460393a196a1":[3,0,2,3,22], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafbb3e071ee0dcccf61805c9bebb7befa":[3,0,2,3,117], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafbc2d3122913859d09d249bf264d4136":[3,0,2,3,141], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafc63a732535ea65c522c06582757d4bb":[3,0,2,3,114], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafd917ebff207c1b9456898a143d10c38":[3,0,2,3,124], -"group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaff015065db131ce31c3e483ab8e9bb38":[3,0,2,3,105], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea002722322e8a845391a87dcc7eb9cc45":[3,0,2,2,16], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea0650c44272c455fb11576525fe44580f":[3,0,2,2,45], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea0a6ffd6c20eaaa32409b9ca0dee293e8":[3,0,2,2,10], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea11fccb10e338ed526b52e66f3b0e6f92":[3,0,2,2,0], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea1465c0a3f756e587525c11d00e3883f9":[3,0,2,2,1], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea16bc2ebb264e5d30df602590dd0d4736":[3,0,2,2,42], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea175a84c2aa70454b4e6d4ab1c1bf09a6":[3,0,2,2,19], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea20eb52e6abf9b112dc5af6931984dec1":[3,0,2,2,5], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea21028efff67589ec637595607faf5c60":[3,0,2,2,44], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea2657a0bb753f5a81301eda96ca631aa6":[3,0,2,2,28], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea26ec6accacb5dbb180a419780a88afe0":[3,0,2,2,21], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea2873610326361727fdadf7c95b1eb66f":[3,0,2,2,22], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea322678e3244fafb07badc6d529c62995":[3,0,2,2,36], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea35098d51c380e353369db8e0881952a6":[3,0,2,2,6], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea397323ae563e9bd7c503dc1c675fa395":[3,0,2,2,15], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea3f042a23f398537b95fd88334a3b4d9e":[3,0,2,2,8], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea40a254bc0f42f443d78c717bed44a682":[3,0,2,2,24], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea41155aec80e8d3232eee7e5bd8576425":[3,0,2,2,48], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4654504be6ba72162f37014a9d73037c":[3,0,2,2,34], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4944568317a214298b34be9bc3f26e48":[3,0,2,2,2], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4a80f7746adba5117728d74884967ff0":[3,0,2,2,23], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4c75f0f2e7ca9e74a85f3b382e830b69":[3,0,2,2,31], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4ea757a862c98494a0aaad6369a1f990":[3,0,2,2,29], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea566070ed168bf63dc412bdaf12d939e3":[3,0,2,2,27], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea584e14f51456fd94e7c7f0a9ed66b2bf":[3,0,2,2,9], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea58562456ff71481a2de2866016b017f2":[3,0,2,2,41], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea5e76257ac865ad0481c5ed353a4212c9":[3,0,2,2,40], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea5f6e2b131b2f5b5dbd759533379d6105":[3,0,2,2,25], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea6bf1e63d623c3adb59409fcc5c540be7":[3,0,2,2,33], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea6d0ed5fd6b8112e4fe087bd4211e9cf8":[3,0,2,2,37], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea775af46386b8ac7e29159624b9224295":[3,0,2,2,14], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea78ad7bb48a9750a3ba08672b6baeef7e":[3,0,2,2,12], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea7faeb64a7250a38ddbc971bc030b07cb":[3,0,2,2,30], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea8807e320a0f7ce2bbc6b61cf25a0b072":[3,0,2,2,4], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea8e4609c67698b2386ef7db4443b90bbb":[3,0,2,2,46], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea97a779742ba7c411dfa7edb66e9569e7":[3,0,2,2,3], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea994e790d360e9af8b4c681e3ce0bec74":[3,0,2,2,39], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eab007ee52e771b0d17a8e54fa3fb6e93b":[3,0,2,2,7], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eab5a70226eac6e8cdcdbf5d248637a917":[3,0,2,2,32], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eabb06fb72ab7089198e72a6fea4a109e2":[3,0,2,2,20], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eabc16d0f819ca9bb6eb8638e9b5e6c99e":[3,0,2,2,26], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eabf85020df009d581e4fadb6e8a1dbddb":[3,0,2,2,11] +"group___a_d_c___a_p_i.html":[3,2,0], +"group___a_d_c___a_p_i.html#a035d5a1d93fe00c7683afbc4e5a59729":[3,2,0,3,1], +"group___a_d_c___a_p_i.html#a06d242e573821f38b3a7543dd9eb5548":[3,2,0,2,4], +"group___a_d_c___a_p_i.html#a0d5d2d55cc37383172efd4d4c1e0171f":[3,2,0,5,3], +"group___a_d_c___a_p_i.html#a0e6dc3fd369994f549bf634f482fa4ae":[3,2,0,3,11], +"group___a_d_c___a_p_i.html#a0ffb4b8f70b79eef55805cedcbde013b":[3,2,0,2,7], +"group___a_d_c___a_p_i.html#a1020d90e58d3bf86cee2f46a62e62fc4":[3,2,0,4,8], +"group___a_d_c___a_p_i.html#a1e9351a3cb3ab91b4953b29cac73f5cc":[3,2,0,1,3], +"group___a_d_c___a_p_i.html#a276869569116678c7838ef506fceb77b":[3,2,0,0,0], +"group___a_d_c___a_p_i.html#a2e4f7b7ce1a5858b39f7a85ad16ab655":[3,2,0,1,5], +"group___a_d_c___a_p_i.html#a2f9e091ca57ca2c58262f66ab5c341c9":[3,2,0,4,2], +"group___a_d_c___a_p_i.html#a305b2c2466cd88fdddf6134db542dc7e":[3,2,0,4,9], +"group___a_d_c___a_p_i.html#a366d981b2bfa6c2ade3a3f8f8c00ff70":[3,2,0,2,9], +"group___a_d_c___a_p_i.html#a3756c0cebdc1c304d48db67a5bcd16a6":[3,2,0,1,0], +"group___a_d_c___a_p_i.html#a391a11955d9d3b8d84ca87bbfe72df86":[3,2,0,2,3], +"group___a_d_c___a_p_i.html#a3f426d9b4992a45674c0e8ead528202b":[3,2,0,3,12], +"group___a_d_c___a_p_i.html#a3f8dd9f7ffefcbc0180fc7252c0482c9":[3,2,0,2,1], +"group___a_d_c___a_p_i.html#a4356f10e7c706f14370fed8599c6d4d0":[3,2,0,5,2], +"group___a_d_c___a_p_i.html#a44289d7822720544751eb22e3d7d38ea":[3,2,0,4,1], +"group___a_d_c___a_p_i.html#a50ca40e036fb0058265aca9e500911c0":[3,2,0,1,4], +"group___a_d_c___a_p_i.html#a5463ef8731c3b8a0094fbfff74c73449":[3,2,0,3,13], +"group___a_d_c___a_p_i.html#a5869042d58165926402aa499eefb68f2":[3,2,0,2,5], +"group___a_d_c___a_p_i.html#a5da30f972881cd9d64f3a7add1ccd522":[3,2,0,3,0], +"group___a_d_c___a_p_i.html#a68c6287d395bac7964e20441638c69ac":[3,2,0,1,2], +"group___a_d_c___a_p_i.html#a68d06edf3f5b759698d3ce981e773ef0":[3,2,0,5,1], +"group___a_d_c___a_p_i.html#a6926363295e23a6121e91095b9f6e28d":[3,2,0,3,2], +"group___a_d_c___a_p_i.html#a6ac6c18163aca50f9dc288ac08f2edee":[3,2,0,3,7], +"group___a_d_c___a_p_i.html#a7b1ea18a97eee3565ef6cfb084222453":[3,2,0,1,1], +"group___a_d_c___a_p_i.html#a81338d39975b7fe87d5e06c55a8c5dc5":[3,2,0,4,7], +"group___a_d_c___a_p_i.html#a83cce8ff1af572c11ef31442f2679124":[3,2,0,4,11], +"group___a_d_c___a_p_i.html#a85b0300314b3d3c1b37db311b92ade6b":[3,2,0,2,2], +"group___a_d_c___a_p_i.html#a8d081aba32f84d62e7d48389b1d10b3e":[3,2,0,4,10], +"group___a_d_c___a_p_i.html#a90346240a89666209a78bdcb020278bd":[3,2,0,4,4], +"group___a_d_c___a_p_i.html#a90f47e90b6be16f8705cbfc9789120be":[3,2,0,2,8], +"group___a_d_c___a_p_i.html#a9a540c52a5052a12b3b879d78543efd5":[3,2,0,4,6], +"group___a_d_c___a_p_i.html#aa1ffab52d024ec83ada3d3b5763ed2b3":[3,2,0,3,4], +"group___a_d_c___a_p_i.html#aa36a14783685f411c4c0a7904a3de8eb":[3,2,0,3,3], +"group___a_d_c___a_p_i.html#aa41f2d4a44ef47bfa9c33777cc7ff35a":[3,2,0,3,8], +"group___a_d_c___a_p_i.html#aa536102e4b637a09aa6c6744d8598c8f":[3,2,0,5,0], +"group___a_d_c___a_p_i.html#aae60e54e2e18efa5e341cf0669476681":[3,2,0,2,0], +"group___a_d_c___a_p_i.html#ab5e230f8dd33c81d381547b0eec041af":[3,2,0,3,10], +"group___a_d_c___a_p_i.html#ab82e85d4750158ef07146b6c8145e347":[3,2,0,3,9], +"group___a_d_c___a_p_i.html#aba6e98fa10321ce7c1b6a7173b0b0d8b":[3,2,0,3,6], +"group___a_d_c___a_p_i.html#abaf272ea2350e486390dc250ae8f9af3":[3,2,0,2,6], +"group___a_d_c___a_p_i.html#acc68017ee284386b5d13c027bc10bf87":[3,2,0,4,12], +"group___a_d_c___a_p_i.html#ad4835aef4411a9e3f3f68bf0a79c18f1":[3,2,0,3,5], +"group___a_d_c___a_p_i.html#ae54bb53ea323ac24a3b63769e0196a57":[3,2,0,4,5], +"group___a_d_c___a_p_i.html#aeae126b8a09e1ec34e8e3afb4a3344ff":[3,2,0,4,3], +"group___a_d_c___a_p_i.html#afa184c06541e3fd9f90fc12ed775f468":[3,2,0,4,0], +"group___a_d_c___a_p_i.html#afec4154b488a160a33ceebca6affc94e":[3,2,0,2,10], +"group___a_d_c___a_p_i.html#ga1ac380ffe2ebef256338616747d330e3":[3,2,0,10], +"group___a_d_c___a_p_i.html#ga2783ab2e29809bf0a50bc66c6fa8d3c6":[3,2,0,15], +"group___a_d_c___a_p_i.html#ga625267e574e3f26d9d55918652e91176":[3,2,0,13], +"group___a_d_c___a_p_i.html#ga760a8dafdcddcfadfea0aa3e01159164":[3,2,0,7], +"group___a_d_c___a_p_i.html#gaab0104c9c876400deb5772a77c1c5d76":[3,2,0,9], +"group___a_d_c___a_p_i.html#gaafc4060027875f8fe46242b0656d7814":[3,2,0,12], +"group___a_d_c___a_p_i.html#gae2177d6e5bf43e3749cc60f835456847":[3,2,0,11], +"group___a_d_c___a_p_i.html#gaee17c30275c1c9376cc485a62ea121eb":[3,2,0,14], +"group___a_d_c___a_p_i.html#gaf88bfcbfc4a19c82f8bb423218d13cda":[3,2,0,8], +"group___a_d_c___a_p_i.html#gaff9488cd90102a90e5c5cbd45394d426":[3,2,0,6], +"group___a_d_c___a_p_i.html#gga1ac380ffe2ebef256338616747d330e3a2a4fc2c9166f5013e45f534136a15990":[3,2,0,10,1], +"group___a_d_c___a_p_i.html#gga1ac380ffe2ebef256338616747d330e3a627b041b2095033f96a9a97dc474d26a":[3,2,0,10,0], +"group___a_d_c___a_p_i.html#gga1ac380ffe2ebef256338616747d330e3a63f9a00e836c78964fa67c434a6718bc":[3,2,0,10,2], +"group___a_d_c___a_p_i.html#gga2783ab2e29809bf0a50bc66c6fa8d3c6a4766863227ec2104751a15e3eb148d86":[3,2,0,15,2], +"group___a_d_c___a_p_i.html#gga2783ab2e29809bf0a50bc66c6fa8d3c6a618306d7336575e80aa3d79865a52c2d":[3,2,0,15,0], +"group___a_d_c___a_p_i.html#gga2783ab2e29809bf0a50bc66c6fa8d3c6abe1c11b191e48669cc5129aca45800d7":[3,2,0,15,1], +"group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a095b0310fe37230c34f3d1b4d48d4e42":[3,2,0,13,8], +"group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a0dc20198ed1fcd90b6b5cee6da08677f":[3,2,0,13,4], +"group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a10bc5348770837fad29ae361a75ede8e":[3,2,0,13,3], +"group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a21f524469d82b63154be5f2f1f9dd95d":[3,2,0,13,7], +"group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a3bbc61292808df4caf5c0991e7b9f73c":[3,2,0,13,2], +"group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a4ce5371decbc45bfe70580f4d8717e39":[3,2,0,13,5], +"group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a5affde6af0ba379220ade2c4ca8a027e":[3,2,0,13,1], +"group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176acc7f6d39b3a21eb846e58e1a8ce4142d":[3,2,0,13,6], +"group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176af4886d3826fb26d4bbdfaeb2195a5ddc":[3,2,0,13,0], +"group___a_d_c___a_p_i.html#gga760a8dafdcddcfadfea0aa3e01159164a1ac4130959b24d8426fd8f59326a5630":[3,2,0,7,0], +"group___a_d_c___a_p_i.html#gga760a8dafdcddcfadfea0aa3e01159164a39fdd1c003301890e59b5188a6cc6658":[3,2,0,7,1], +"group___a_d_c___a_p_i.html#gga760a8dafdcddcfadfea0aa3e01159164adb8344d57ee438ee90c65b79ff4f3e12":[3,2,0,7,2], +"group___a_d_c___a_p_i.html#ggaab0104c9c876400deb5772a77c1c5d76a7c98a604f4c957ba7151784fa3cd61a7":[3,2,0,9,1], +"group___a_d_c___a_p_i.html#ggaab0104c9c876400deb5772a77c1c5d76ae70affd23c02c0bc52dc0fe55c9c4879":[3,2,0,9,0], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a0e198353a76bf512e4dcc8224710d6b0":[3,2,0,12,9], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a203b48944d019f4fda969a6fc2a9e492":[3,2,0,12,1], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a22aa8198d9a4012a012ddd838adf256c":[3,2,0,12,17], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a2602b0a06ce1ce485d0812de6f6f4091":[3,2,0,12,31], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a2875a590dc7e8502581ff68a075ce019":[3,2,0,12,8], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a31855ff8fefcff144e9dc4911466ce52":[3,2,0,12,25], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a358c6f5e7243a7ed09640253d83d2131":[3,2,0,12,4], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a42838efffa3e21e6b970eee65de86e40":[3,2,0,12,12], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a511e70765f3a63d0dea47ea585329641":[3,2,0,12,33], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a514ca4fdb7e9862d3d9ebe1d4e926349":[3,2,0,12,19], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a558a69bc271b849d3c3a2cca05ebbba0":[3,2,0,12,28], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a61914b17568b94ef0651ee10e79e6892":[3,2,0,12,16], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a69dddf5b6edfe54ac25b653d8f62d104":[3,2,0,12,0], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a6ca054f67bee5197eec92a0379cffb6e":[3,2,0,12,3], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a7ae985a21367ea6d7488517948fc625d":[3,2,0,12,24], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a7f3900d4031a3f01889fbe4179d8cade":[3,2,0,12,14], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a9009b78e30e87985cbfb40296a0bab16":[3,2,0,12,23], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a9db3195dade30ed8b254187c22616898":[3,2,0,12,10], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa2718519e5964f136de3e5234e36264c":[3,2,0,12,13], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa5b37816645da11ff633a7e2d539da12":[3,2,0,12,22], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa66d57680818caebf7be4d68f8c505be":[3,2,0,12,30], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa9c18e09bdb5cdf44c8c89ecdd7770d3":[3,2,0,12,26], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aadc3763b403f4b9ab667602137a9de57":[3,2,0,12,29], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ab5ff3c915ec02ae6ac3980a1312a4815":[3,2,0,12,2], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814acf3be71bfeb9d342e6d845db91782b79":[3,2,0,12,6], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ad002942933ed78124a50b3276f9d88cc":[3,2,0,12,27], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ad6ef86ca1b448f220905d771f258586a":[3,2,0,12,7], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814add27743e52a0719102130818d31d545a":[3,2,0,12,5], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ae47fe79b66fda5fcb9f02d6a648c8dc9":[3,2,0,12,18], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814af6193eda0e4807c9d560aac13e302093":[3,2,0,12,11], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814afa75046e6f6f23ed8e6573c7bc8563d2":[3,2,0,12,15], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814afaf1207b06cd7dc48c7f10ed6c95fb4a":[3,2,0,12,21], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814afdcbeb5840bd281a4a2ec3f1f64ed52b":[3,2,0,12,20], +"group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aff4cf0b5a9bfd1fc634f6b097e34fe73":[3,2,0,12,32], +"group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a0194955f4f59f8d6952adc058539632b":[3,2,0,11,11], +"group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a0df21824c256f4cb9689cb1d6a3dd91a":[3,2,0,11,10], +"group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a214f2bd1b932acbaacba970b138f23d2":[3,2,0,11,7], +"group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a227823940dfc7793973e6716ec17742e":[3,2,0,11,9], +"group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a32297df4b82ea56a5536bb03fe907e64":[3,2,0,11,0], +"group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a4d62358854590ae9bed21fc8c8c96e09":[3,2,0,11,6], +"group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a8f67ee666423bc068d379ae85da36252":[3,2,0,11,1], +"group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847aa3091bf90a88f96ed9b5a6ab499680bb":[3,2,0,11,4], +"group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ab32572630797968579adeed03f19bcd3":[3,2,0,11,12], +"group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ab7538351ad7e4ed3d866212b0e3b3099":[3,2,0,11,2], +"group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ac42d84c9087c3228125a5a2ae90f958f":[3,2,0,11,8], +"group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ae30b20571a57953009f49eb5cbc2866a":[3,2,0,11,5], +"group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ae8d9c9c99ceb10f095bb4449fd2706b1":[3,2,0,11,3], +"group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba0b145ee64281e271a0c2b075484b175a":[3,2,0,14,8], +"group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba298a89e90d290117e69acb7569409a8a":[3,2,0,14,6], +"group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba434af3ad0c8079644a51035acd8fd835":[3,2,0,14,3], +"group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba584a4fb88b98b8689d5a64e104fcbc6b":[3,2,0,14,4], +"group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba6cc9000330017d217de6ca0e3eb70af5":[3,2,0,14,0], +"group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba8a271a13324d7b13e732aeef6b5ef0dc":[3,2,0,14,5], +"group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebaad618fc3cf12d1bb5575659bb56ffb84":[3,2,0,14,9], +"group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebadd19ea2551df6c56813bf9d9dfa3d218":[3,2,0,14,7], +"group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebaeedbedf9fc1fc6055524220d6e0af60d":[3,2,0,14,1], +"group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebaf727cf72c6c097e87f3e02209f1c2f1f":[3,2,0,14,2], +"group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebafcbf5a874521ebcfb98323c2a7990847":[3,2,0,14,10], +"group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaa24283bc621bcaa68a73c8eab142030b8":[3,2,0,8,1], +"group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaa814e543d0745170516a09fb6de621ca8":[3,2,0,8,3], +"group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaa8ebd681650d751af22a7849be9ab8bc1":[3,2,0,8,2], +"group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaab35c4dcc6cda85146a9ffd339c5de1c4":[3,2,0,8,0], +"group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaac28428ad60debb0ae5bfd0540c90f33c":[3,2,0,8,4], +"group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaaebcd8848d34004d66f084b9f80a07d24":[3,2,0,8,5], +"group___a_d_c___a_p_i.html#structadc__api__t":[3,2,0,4], +"group___a_d_c___a_p_i.html#structadc__callback__args__t":[3,2,0,1], +"group___a_d_c___a_p_i.html#structadc__cfg__t":[3,2,0,3], +"group___a_d_c___a_p_i.html#structadc__info__t":[3,2,0,2], +"group___a_d_c___a_p_i.html#structadc__instance__t":[3,2,0,5], +"group___a_d_c___a_p_i.html#structadc__status__t":[3,2,0,0], +"group___a_d_c___c.html":[3,1,0,0], +"group___a_d_c___c.html#a1124a6766edf4954d95d01d6d8e46548":[3,1,0,0,1,0], +"group___a_d_c___c.html#a46131143e44246e03f3a6ca768512a05":[3,1,0,0,0,1], +"group___a_d_c___c.html#a7eb4fc71a82fcf1ecd7574070c4243e3":[3,1,0,0,0,2], +"group___a_d_c___c.html#a81f2c8156907fdc5b0055cd8443f3f25":[3,1,0,0,0,4], +"group___a_d_c___c.html#a8b7c376994f8e824a958c1d1d0f8b302":[3,1,0,0,0,0], +"group___a_d_c___c.html#a8ccf8c0714c173bc9e9d536df5df56f9":[3,1,0,0,0,5], +"group___a_d_c___c.html#a9f46b83d1e4e113f06b392ca92eda623":[3,1,0,0,0,7], +"group___a_d_c___c.html#ac0f2be271c165544bd8c8502f5d4739c":[3,1,0,0,1,1], +"group___a_d_c___c.html#adc8e8849121eeb6991ae00b028a8a4b5":[3,1,0,0,0,3], +"group___a_d_c___c.html#af94b7b8c31dab35dcb7bf1bfe1670d6d":[3,1,0,0,0,6], +"group___a_d_c___c.html#ga002b131506372adc9b7117ac980dd077":[3,1,0,0,21], +"group___a_d_c___c.html#ga034ccf534ec5fed75f8c33ad29c8e3be":[3,1,0,0,10], +"group___a_d_c___c.html#ga0971485949f985d827aeaa69feff4f5a":[3,1,0,0,19], +"group___a_d_c___c.html#ga11e9ba160e344dc72ab9e862f7ce70db":[3,1,0,0,15], +"group___a_d_c___c.html#ga1644c43f8469049a20a1c183682b2eda":[3,1,0,0,25], +"group___a_d_c___c.html#ga1a6bcd25e5366666a3f25062e4b9d615":[3,1,0,0,23], +"group___a_d_c___c.html#ga1d98d3b28202140cc37796dd60fde5e3":[3,1,0,0,18], +"group___a_d_c___c.html#ga1f6acb79f1626e0bd35e6f90752a015c":[3,1,0,0,8], +"group___a_d_c___c.html#ga2a5b64c160eb0b849ea5043bde9188cb":[3,1,0,0,16], +"group___a_d_c___c.html#ga2f01cf47970d9f474abd9f8b68a36abf":[3,1,0,0,3], +"group___a_d_c___c.html#ga50e12110f82b457bdd59bd0dbc0d0d89":[3,1,0,0,7], +"group___a_d_c___c.html#ga51e75a0613a836dda17e8dff336fa5b9":[3,1,0,0,22], +"group___a_d_c___c.html#ga52f7eee41184b0a91cfa9e73b1833122":[3,1,0,0,12], +"group___a_d_c___c.html#ga5cbf5113221d2cdbf11f36eb8b7ea21a":[3,1,0,0,24], +"group___a_d_c___c.html#ga5f0ecdfeeb82907f1d20e68284fe8861":[3,1,0,0,13], +"group___a_d_c___c.html#ga63b54f9f14640dd93668df6b63fa5208":[3,1,0,0,4], +"group___a_d_c___c.html#ga71b8dbb9de7e428dbdc0bdd56c2331a4":[3,1,0,0,14], +"group___a_d_c___c.html#ga7491e0c2eab4266fd44d7f92a3c69324":[3,1,0,0,5], +"group___a_d_c___c.html#gaa825c3919bb78f2b06cfb42e726f507b":[3,1,0,0,9], +"group___a_d_c___c.html#gab74afcc80bd6ce8980feeadb9352449e":[3,1,0,0,11], +"group___a_d_c___c.html#gad2ba1ea2171aafa77a4ea3de325ad11c":[3,1,0,0,17], +"group___a_d_c___c.html#gad95fbc1b2b5d7ced0f332c6cab3be5a0":[3,1,0,0,20], +"group___a_d_c___c.html#gaddac3354631a273d32f50f65b271de49":[3,1,0,0,6], +"group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3bea0cea22fe02a308fa8dcb8622af5be267":[3,1,0,0,10,0], +"group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3bea45fc2724e94b772f7c82f16c108b876f":[3,1,0,0,10,4], +"group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3bea58499b9e7e17eae5511957f130890953":[3,1,0,0,10,1], +"group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3beaf0ee05127742344df84853d642f4d0e9":[3,1,0,0,10,3], +"group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3beaff4e1eb7b74d3c422f01aafae1b9117f":[3,1,0,0,10,2], +"group___a_d_c___c.html#gga1f6acb79f1626e0bd35e6f90752a015ca63cedcfd78a812f8f284c2c256d60579":[3,1,0,0,8,0], +"group___a_d_c___c.html#gga1f6acb79f1626e0bd35e6f90752a015caa84e18043bb7ffa605aeedc5fd6c22f9":[3,1,0,0,8,1], +"group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa3ee0541dd2c83923941c6d60f9cc06fb":[3,1,0,0,3,6], +"group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa526b225d2249c0e6b598d0cb15d23baf":[3,1,0,0,3,1], +"group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa6a92d5b950930e683faec6d0f27a14fd":[3,1,0,0,3,7], +"group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa79ec471da64631d27a588d73ef193efe":[3,1,0,0,3,0], +"group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaa6022698b4c9597d629c54a2b24c35c1":[3,1,0,0,3,2], +"group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaaa22536b05ed63aca9faf6123faeb56b":[3,1,0,0,3,5], +"group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfad5324a7d55619eeb7c59ebc1d410e3f2":[3,1,0,0,3,4], +"group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfae30eb419b469cf9b915ca07da7335fc9":[3,1,0,0,3,9], +"group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaed4a79299f7d28f3332bf8f311bbad01":[3,1,0,0,3,3], +"group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaf0025fb0928e54bb073bbfba22c27670":[3,1,0,0,3,8], +"group___a_d_c___c.html#gga50e12110f82b457bdd59bd0dbc0d0d89a3b4fe16ae64b00c994f7273547ab9048":[3,1,0,0,7,0], +"group___a_d_c___c.html#gga50e12110f82b457bdd59bd0dbc0d0d89adbdd34fbb2bc27ddafe211baae444392":[3,1,0,0,7,1], +"group___a_d_c___c.html#gga63b54f9f14640dd93668df6b63fa5208a7fa4ed8065306ec04e54e7feda2e1dbc":[3,1,0,0,4,1], +"group___a_d_c___c.html#gga63b54f9f14640dd93668df6b63fa5208a96075d0fcdc8e5e9fe36ffed03f611e4":[3,1,0,0,4,0], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a0187bd6ce59d816a9c14d48a7ed745f7":[3,1,0,0,5,16], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a05fe5bc9f3a1fb82348c6bfd772224be":[3,1,0,0,5,21], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a077311023b7c7723482d4c5c7d370be1":[3,1,0,0,5,25], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a105e8fb8e9ac187017ea47c68e8053fa":[3,1,0,0,5,6], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a2bdbc28656119e798974fb9c2c6a4e63":[3,1,0,0,5,12], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a336c6d7ff3ca435273e8c40ad4c6ea03":[3,1,0,0,5,24], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a38fcc2885633e438bc40bd92a2b84dca":[3,1,0,0,5,1], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a3966e7fc0d3839758c715ad9a5581587":[3,1,0,0,5,15], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a3dec3d6634fe8fa6337ea9a60025d722":[3,1,0,0,5,28], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a3e9a5e2d5a289cd86dc466fb491976cf":[3,1,0,0,5,11], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a44ab6a715d5c6b4962ee09cd97b9738c":[3,1,0,0,5,3], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a5109da7296762f3d8a619d31a51ea5a3":[3,1,0,0,5,23], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a558ad6214f6a2921415737991d2092d1":[3,1,0,0,5,5], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a60b1a080cb97f8c36886c8d8313f82b9":[3,1,0,0,5,9], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a656f9dceef714b697245a7f5bff691c3":[3,1,0,0,5,19], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a6a3e1e29efd6b0726b986a61d26fbb9c":[3,1,0,0,5,13], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a74a5af0cf4d4a397f09877b9fe6f9324":[3,1,0,0,5,22], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a843cb5544350c5c93a91b9c5f68e1e73":[3,1,0,0,5,7], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aa27f6fb1909ccf43a35c88409bfb906e":[3,1,0,0,5,20], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aa329f8ae24c1e72627aec16e56add4a8":[3,1,0,0,5,10], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aa6f5ef5945ac95eb9850812798d478c3":[3,1,0,0,5,14], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aad2f3ddd5eb3347f71232e5bb3b561d1":[3,1,0,0,5,26], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aad43bb4fbe4b2c0936b28843970e03a8":[3,1,0,0,5,27], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324abca8fe161c59c71c347623b294e66974":[3,1,0,0,5,4], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324abf1cba1bc639bd489c1434a8811f73d2":[3,1,0,0,5,2], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324abf5e08f2640ebc195c73e47c8e65643f":[3,1,0,0,5,18], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324ae5fb7188a5493c2087429cf22d4cd2f4":[3,1,0,0,5,0], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324af3c255cbb8e850ba514039dadc6bf92a":[3,1,0,0,5,17], +"group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324af54943db6ac19bc3469392b7dd1bf193":[3,1,0,0,5,8], +"group___a_d_c___c.html#ggaa825c3919bb78f2b06cfb42e726f507baa23674fef20210a76d33298be9253183":[3,1,0,0,9,1], +"group___a_d_c___c.html#ggaa825c3919bb78f2b06cfb42e726f507bacd2e2ea3702a77919d90e1620f8ecea9":[3,1,0,0,9,0], +"group___a_d_c___c.html#ggab74afcc80bd6ce8980feeadb9352449ea06c8e5e55d072c7d8f0825b701dd27ab":[3,1,0,0,11,0], +"group___a_d_c___c.html#ggab74afcc80bd6ce8980feeadb9352449ea85786ffac329aa37580a8c071e1ebf13":[3,1,0,0,11,1], +"group___a_d_c___c.html#ggaddac3354631a273d32f50f65b271de49a3d564c924b8980dfce73223e9447f870":[3,1,0,0,6,0], +"group___a_d_c___c.html#ggaddac3354631a273d32f50f65b271de49ac22d5d31e0596d826fbff03b476f0166":[3,1,0,0,6,2], +"group___a_d_c___c.html#ggaddac3354631a273d32f50f65b271de49ae5220b5deefd335b667937754602a1c1":[3,1,0,0,6,1], +"group___a_d_c___c.html#structadc__c__channel__cfg__t":[3,1,0,0,1] }; diff --git a/navtreeindex1.js b/navtreeindex1.js index 6ba064f..154c5d1 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -1,253 +1,253 @@ var NAVTREEINDEX1 = { -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eacee8ac33d0115b3997767c64527115ab":[3,0,2,2,38], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ead05a1353527cf2773715624fabd00a00":[3,0,2,2,17], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ead099a4e210a23e9a0370fd9a4cb13f3f":[3,0,2,2,43], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ead500583b0bed23efc4b23cfaf604dfdb":[3,0,2,2,47], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eae0f99efe8ef380f164802966936f7847":[3,0,2,2,13], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eae6713d42094e3ab520aabae92ebd40bc":[3,0,2,2,18], -"group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eaf9d2db9d60f629faac9184c294f65984":[3,0,2,2,35], -"group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78ba682fd05ca96b45840c4cd5d9fd35e405":[3,0,2,1,3], -"group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78ba73a617ab836493568a0cf0aa4ba86484":[3,0,2,1,1], -"group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78bab665c3052bb5373b7821ab8898ee859b":[3,0,2,1,2], -"group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78bafea764c1f74ea85192b085e96d1b3684":[3,0,2,1,0], -"group___b_s_p___i_o.html#ggab4ef0cc3fce421d48310f23c614aadc0abb31064742440cdbdd638330a1cf7a9f":[3,0,2,0,0], -"group___b_s_p___i_o.html#ggab4ef0cc3fce421d48310f23c614aadc0acf9a28559b5a18ed9b8af4c2a7df10ef":[3,0,2,0,1], -"group___b_s_p___m_c_u.html":[3,0,1], -"group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f":[3,0,1,27], -"group___b_s_p___m_c_u.html#ga1300de3839c776da2d29a95c154e0c7a":[3,0,1,29], -"group___b_s_p___m_c_u.html#ga23338e06b1e1537017ef4f3f94cda354":[3,0,1,7], -"group___b_s_p___m_c_u.html#ga44d44e7bd7f7e06f05b1f420479d3e74":[3,0,1,23], -"group___b_s_p___m_c_u.html#ga49c8711ce69459021327e37557a1a9f1":[3,0,1,18], -"group___b_s_p___m_c_u.html#ga4e0c522c1bb26af24accaf20e6b87d12":[3,0,1,19], -"group___b_s_p___m_c_u.html#ga4e36b09bee515ff1b813e7ba0412e60d":[3,0,1,8], -"group___b_s_p___m_c_u.html#ga4f65c534e6da6ae5733380827f882898":[3,0,1,9], -"group___b_s_p___m_c_u.html#ga50cae0c65c54074c32d30eb4108d9a09":[3,0,1,32], -"group___b_s_p___m_c_u.html#ga577e9b015e1b0794934fa4f2b229e52f":[3,0,1,5], -"group___b_s_p___m_c_u.html#ga5cd95eba95dc2c1bad0bf05398c9779c":[3,0,1,28], -"group___b_s_p___m_c_u.html#ga662624feaff3850ffbe7fb118ab140d7":[3,0,1,26], -"group___b_s_p___m_c_u.html#ga6fe6dc3c0813eeae8665430a31c005b4":[3,0,1,14], -"group___b_s_p___m_c_u.html#ga72e70676360e6a4d753a8d235e6b93a2":[3,0,1,16], -"group___b_s_p___m_c_u.html#ga740c87d0bffe0692e1cdae0b96ab9ee9":[3,0,1,21], -"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950":[3,0,1,13], -"group___b_s_p___m_c_u.html#ga7f0f0fcc055b280ef901734d5481214d":[3,0,1,11], -"group___b_s_p___m_c_u.html#ga8c791e904efc648fb8b69b56d7dd37ba":[3,0,1,2], -"group___b_s_p___m_c_u.html#ga93f514700ccf00d08dbdcff7f1224eb2":[3,0,1,25], -"group___b_s_p___m_c_u.html#ga960f46c44b67ba8ad5377cfc8e4e6a75":[3,0,1,3], -"group___b_s_p___m_c_u.html#ga992632ae2e45c2f962855fe4bbe98a63":[3,0,1,30], -"group___b_s_p___m_c_u.html#gaa3cd3e43291e81e795d642b79b6088e6":[3,0,1,37], -"group___b_s_p___m_c_u.html#gaa4fa8ae9390afa996af2dabee6552732":[3,0,1,4], -"group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8":[3,0,1,38], -"group___b_s_p___m_c_u.html#gacafcf7aae8e82ba63c6d74db1f574aad":[3,0,1,24], -"group___b_s_p___m_c_u.html#gad743b8c468bec4c2d15645c4e4b45f1f":[3,0,1,12], -"group___b_s_p___m_c_u.html#gaddc2260c1ce320f3aa1f1cb05b9a5620":[3,0,1,6], -"group___b_s_p___m_c_u.html#gade0e6b9fc5ca580d5bf6c8ae2a6af8d9":[3,0,1,31], -"group___b_s_p___m_c_u.html#gadecec24d538312129b60def6152f5992":[3,0,1,10], -"group___b_s_p___m_c_u.html#gadee5f5e0c5fa723426f73d7d5a07f9b2":[3,0,1,33], -"group___b_s_p___m_c_u.html#gae05dfbdf57eb8b0bea46f555a2845d7b":[3,0,1,36], -"group___b_s_p___m_c_u.html#gae685ec20bc3579295878f1586478b54c":[3,0,1,1], -"group___b_s_p___m_c_u.html#gae8a3e014a73051cf3acf3ff54e54cdbc":[3,0,1,22], -"group___b_s_p___m_c_u.html#gaed27ea47f0c85a1af9bb515600d5e2ba":[3,0,1,35], -"group___b_s_p___m_c_u.html#gaf3219448adfd1531cf69f68697ab184b":[3,0,1,34], -"group___b_s_p___m_c_u.html#gaf3ee66233fc75acfcc21a97d7a767aa1":[3,0,1,17], -"group___b_s_p___m_c_u.html#gafd98e2a6f080d6a52a3ef72e3d731b2b":[3,0,1,15], -"group___b_s_p___m_c_u.html#gafdfd4e716271df720f7abe57bdca2e5d":[3,0,1,20], -"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7":[3,0,1,14,1], -"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2":[3,0,1,14,0], -"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811":[3,0,1,14,2], -"group___b_s_p___m_c_u.html#gga72e70676360e6a4d753a8d235e6b93a2a7478d3bbfdc1220e125de34635c0f47a":[3,0,1,16,0], -"group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a17e007a04505fb7a7614067e3d5e7447":[3,0,1,13,6], -"group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a3403f62d1f8cc29a868e5da9a86a46f7":[3,0,1,13,3], -"group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a372bbc7267801454ac9a1bf3677ef60c":[3,0,1,13,10], -"group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a4704af5ed32cbd6532fd28a44d0d028e":[3,0,1,13,4], -"group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a494addfd4ceb1fabb0bea0893b444641":[3,0,1,13,9], -"group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a837b8847e248ed296512f20813008cd5":[3,0,1,13,5], -"group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a83fe18962b058df65adb9ce089719ebb":[3,0,1,13,1], -"group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950aacbead3e070986a6c40c32d2485d5c4e":[3,0,1,13,11], -"group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950abfff39a6b8ca24d18832ad7153cc0880":[3,0,1,13,8], -"group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950acbce1d6d73ea0d9a18c42b2389c69888":[3,0,1,13,7], -"group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950acfc9bb8ff007a7b82cf4fd845dfce053":[3,0,1,13,2], -"group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950afe554013bd2f3cbbd8462cea8eeee4ca":[3,0,1,13,0], -"group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2ba59fcc4e8d51046d4a1bd63c87ac64913":[3,0,1,15,1], -"group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2baa0312618f2508347a9a815b5887c12ae":[3,0,1,15,2], -"group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2bacc709da08ef4acc99bf6e2e84946be5d":[3,0,1,15,0], -"group___b_s_p___m_c_u___r_z_v2_l.html":[3,0,1,0], -"group___c_a_n___a_p_i.html":[3,2,0], -"group___c_a_n___a_p_i.html#a064fa2cd7b88461619693b1e2cad9530":[3,2,0,6,1], -"group___c_a_n___a_p_i.html#a0715ca299b94eea0ef2843b99e0d32e5":[3,2,0,4,4], -"group___c_a_n___a_p_i.html#a08080bddad2f04a8074b995da354f259":[3,2,0,2,0], -"group___c_a_n___a_p_i.html#a0cb83f81e41146d1e688f88a69231d38":[3,2,0,4,12], -"group___c_a_n___a_p_i.html#a0dcc61e0202ace6d5b91665464415adc":[3,2,0,5,1], -"group___c_a_n___a_p_i.html#a0eeb3995e651ce4b77e8860ab50597a9":[3,2,0,5,6], -"group___c_a_n___a_p_i.html#a12f266c39b851a037b4d30ae5661e46b":[3,2,0,4,0], -"group___c_a_n___a_p_i.html#a27833816de50e1ad5b16b42856653ad8":[3,2,0,1,4], -"group___c_a_n___a_p_i.html#a31ab501a9df967965b8085592b4d2ba1":[3,2,0,4,5], -"group___c_a_n___a_p_i.html#a32ec8d31d80a709bae881f2e28d36d6c":[3,2,0,5,3], -"group___c_a_n___a_p_i.html#a33ae62d869abaf989823b7bb1563de41":[3,2,0,0,0], -"group___c_a_n___a_p_i.html#a34bf75f61795800b3df706b240fd7907":[3,2,0,4,10], -"group___c_a_n___a_p_i.html#a3699700f0a08a75159483ac2825dca90":[3,2,0,4,3], -"group___c_a_n___a_p_i.html#a39e131d3f8e8d6d8a14e9f248c1ac1e1":[3,2,0,2,2], -"group___c_a_n___a_p_i.html#a4144eba26f77850571fca0498bec60ef":[3,2,0,1,1], -"group___c_a_n___a_p_i.html#a4157f4d2f2bd13acd53ebc43c557c4f8":[3,2,0,0,2], -"group___c_a_n___a_p_i.html#a44ef1a1a3726114b30f228c54b0d44ce":[3,2,0,5,0], -"group___c_a_n___a_p_i.html#a48fa3cf4c8c7e608c25ac8b907450096":[3,2,0,2,1], -"group___c_a_n___a_p_i.html#a49d4261f37f08f5a11cc3fc12c56cdc3":[3,2,0,1,0], -"group___c_a_n___a_p_i.html#a564584ef9e48317f93f432a0b86b9af8":[3,2,0,4,9], -"group___c_a_n___a_p_i.html#a663ed64c927057ab0ac45d02505dc758":[3,2,0,2,3], -"group___c_a_n___a_p_i.html#a66e92277959e9e01a6ce2105dcdcbae6":[3,2,0,4,11], -"group___c_a_n___a_p_i.html#a70c47efed0012e4512b7d7eca31e3e58":[3,2,0,4,7], -"group___c_a_n___a_p_i.html#a751918f74effc746b381a75c971af879":[3,2,0,4,1], -"group___c_a_n___a_p_i.html#a7630cfae3a82f8ecd7bbce599ef992ee":[3,2,0,6,2], -"group___c_a_n___a_p_i.html#a79046fddb934fd7ea0d0cc70b8d7f26d":[3,2,0,1,3], -"group___c_a_n___a_p_i.html#a8e79eb818c5aca4f925f2323f52d08f1":[3,2,0,4,2], -"group___c_a_n___a_p_i.html#a9d3924b6ba4efb4c978a04d0e9a4fbc6":[3,2,0,3,1], -"group___c_a_n___a_p_i.html#aa0c1d24b5896560908adb0ac9761aa28":[3,2,0,3,0], -"group___c_a_n___a_p_i.html#aa3a9393d2130549479111743b1750b41":[3,2,0,5,7], -"group___c_a_n___a_p_i.html#aa6a30551456873fb921b933bd3ddbe23":[3,2,0,3,2], -"group___c_a_n___a_p_i.html#aa8706fd62e652e6582d3c9eb155fb610":[3,2,0,2,4], -"group___c_a_n___a_p_i.html#aafe4728b44b6abbb0f5d540e16d0be40":[3,2,0,0,1], -"group___c_a_n___a_p_i.html#aba27908c89442250d365d4a44304e3c1":[3,2,0,5,5], -"group___c_a_n___a_p_i.html#ac958a7179da3a9f365a3bf55707fac6d":[3,2,0,4,6], -"group___c_a_n___a_p_i.html#ad70086e98bfe0871e3f73d1f253138db":[3,2,0,1,5], -"group___c_a_n___a_p_i.html#ae4d4d032f3e4f0688879027286ae4dbe":[3,2,0,6,0], -"group___c_a_n___a_p_i.html#aeb8eee8b6e6ea6a433c1ff5d89f68c4b":[3,2,0,0,3], -"group___c_a_n___a_p_i.html#af01f0306a9ad2e430154d9d6a4e3404f":[3,2,0,3,3], -"group___c_a_n___a_p_i.html#af58b9f3fe19ed69e0a635cd271c68404":[3,2,0,1,2], -"group___c_a_n___a_p_i.html#af6c0a7c4a078f852e7c332369f8de9e2":[3,2,0,5,2], -"group___c_a_n___a_p_i.html#afb37a7735c6ac61a151a083b2d25153b":[3,2,0,5,4], -"group___c_a_n___a_p_i.html#afe91f3dd74163cacafbfb96ab2104df0":[3,2,0,4,8], -"group___c_a_n___a_p_i.html#ga42c6d0b24e77b50c47ec54bafcac7604":[3,2,0,14], -"group___c_a_n___a_p_i.html#ga5bf3c71a3b53b409e9ee682c69189a39":[3,2,0,15], -"group___c_a_n___a_p_i.html#ga6e2484e96eefbe59327b13e2589a0049":[3,2,0,7], -"group___c_a_n___a_p_i.html#ga93f2b2c53f782b0c21beeb1339a108b7":[3,2,0,10], -"group___c_a_n___a_p_i.html#ga99db0880f7c03215e00781d3e57db3a3":[3,2,0,16], -"group___c_a_n___a_p_i.html#gab798132b937282be9589b6ed177ea999":[3,2,0,12], -"group___c_a_n___a_p_i.html#gabc98e244722dcea05b5ce91bdb4c70c8":[3,2,0,11], -"group___c_a_n___a_p_i.html#gac29bd7d00b06d7457ae786471c296ba7":[3,2,0,9], -"group___c_a_n___a_p_i.html#gacc2e5bc68e8b707c069ca27f521695db":[3,2,0,8], -"group___c_a_n___a_p_i.html#gad3ffe1ae0429fcd1053a969d96c47610":[3,2,0,13], -"group___c_a_n___a_p_i.html#gga42c6d0b24e77b50c47ec54bafcac7604ad8aab020d2b6d64777a0be580f44ddb4":[3,2,0,14,0], -"group___c_a_n___a_p_i.html#gga42c6d0b24e77b50c47ec54bafcac7604af25ce6de3b35f5abe47186351372b8b7":[3,2,0,14,1], -"group___c_a_n___a_p_i.html#gga5bf3c71a3b53b409e9ee682c69189a39a5c90a69c9ba1a8116b6ec45ff238e117":[3,2,0,15,1], -"group___c_a_n___a_p_i.html#gga5bf3c71a3b53b409e9ee682c69189a39a7c0cedacb23a57e50692191f61915cbd":[3,2,0,15,0], -"group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a1a181f00a1eab8aaae36031a9e403e88":[3,2,0,10,4], -"group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a53216c2055f64910bb7a47d5aa239f90":[3,2,0,10,3], -"group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a892393a146c929398882d92a7c9303eb":[3,2,0,10,2], -"group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a8e80b696c1567281ef11cc0d659b29bc":[3,2,0,10,1], -"group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7ae7dee8043ba34d7a3d09f5246bd870f0":[3,2,0,10,0], -"group___c_a_n___a_p_i.html#gga99db0880f7c03215e00781d3e57db3a3a1c100296f7b9384c8e09b55fd611242d":[3,2,0,16,1], -"group___c_a_n___a_p_i.html#gga99db0880f7c03215e00781d3e57db3a3a5f4004ddfe179e388be8bb240527450e":[3,2,0,16,0], -"group___c_a_n___a_p_i.html#ggab798132b937282be9589b6ed177ea999a7dc9d3f494129db1c953915d1b781faa":[3,2,0,12,1], -"group___c_a_n___a_p_i.html#ggab798132b937282be9589b6ed177ea999aabdf871d5bbaf279c8dcf743ca64b488":[3,2,0,12,2], -"group___c_a_n___a_p_i.html#ggab798132b937282be9589b6ed177ea999af93ba7d9a4356ffa8c9b49f26c4f1b3d":[3,2,0,12,0], -"group___c_a_n___a_p_i.html#ggabc98e244722dcea05b5ce91bdb4c70c8a5d29b837d94d14fb99868c2d0a5220b0":[3,2,0,11,0], -"group___c_a_n___a_p_i.html#ggabc98e244722dcea05b5ce91bdb4c70c8abc5a87ed8edf218a6b44e4cceb48c0cb":[3,2,0,11,1], -"group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7a38a4c4896b9a14a3fa8411468b5017ee":[3,2,0,9,2], -"group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7a91f40057ea820ca0cf30a52393d5d741":[3,2,0,9,1], -"group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7abde5d9e8f5711b6fe8374671c96e6f72":[3,2,0,9,0], -"group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7adaf544ef1adfe3c7db5634e04f765aa3":[3,2,0,9,3], -"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4a9b30162960edad175a755686a65a50":[3,2,0,8,3], -"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4cf2031ec5e169907edd2bd5d0caee00":[3,2,0,8,0], -"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba8adaa142ed94841f5f282232ce414333":[3,2,0,8,10], -"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba973c55ab2a29a1554f488fedf29fea8a":[3,2,0,8,7], -"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbaa0bc5e15cee037a1d102b517ef63e161":[3,2,0,8,8], -"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbaacf601c286d90d108d59de289cdfd80c":[3,2,0,8,4], -"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbab16a5328b930c53524aecbc4d580bb24":[3,2,0,8,6], -"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbabd3cace64bccbd9bdc6219453b7cfbbd":[3,2,0,8,5], -"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbac169b4940b7cb76562efd7439fc76949":[3,2,0,8,9], -"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbad11062356307dd2b72a96a00a4929037":[3,2,0,8,2], -"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbafd0c186a8462372ff19061f8ff97160f":[3,2,0,8,1], -"group___c_a_n___a_p_i.html#ggad3ffe1ae0429fcd1053a969d96c47610a10c7ad0f4e083496ad3a3032fc533920":[3,2,0,13,1], -"group___c_a_n___a_p_i.html#ggad3ffe1ae0429fcd1053a969d96c47610a1da44b52c2731b02cf02ca55eec08899":[3,2,0,13,0], -"group___c_a_n___a_p_i.html#structcan__api__t":[3,2,0,5], -"group___c_a_n___a_p_i.html#structcan__bit__timing__cfg__t":[3,2,0,0], -"group___c_a_n___a_p_i.html#structcan__callback__args__t":[3,2,0,2], -"group___c_a_n___a_p_i.html#structcan__cfg__t":[3,2,0,4], -"group___c_a_n___a_p_i.html#structcan__frame__t":[3,2,0,1], -"group___c_a_n___a_p_i.html#structcan__instance__t":[3,2,0,6], -"group___c_a_n___a_p_i.html#structcan__mailbox__t":[3,2,0,3], -"group___c_a_n_f_d.html":[3,1,0], -"group___c_a_n_f_d.html#a0c05dacb48970397676e54a01c81d0e1":[3,1,0,2,2], -"group___c_a_n_f_d.html#a1a95c697fe49bba12e5ddb7e21b04572":[3,1,0,2,1], -"group___c_a_n_f_d.html#a2bb06b2a4db018ac90193053131ee648":[3,1,0,1,5], -"group___c_a_n_f_d.html#a375e575afb5d17c01809a10d32ae59a5":[3,1,0,1,3], -"group___c_a_n_f_d.html#a3b38e8d28731a86eb521db8a5c5ae85e":[3,1,0,2,4], -"group___c_a_n_f_d.html#a3bcb58bb257835c3618f28751aad29a5":[3,1,0,2,0], -"group___c_a_n_f_d.html#a4cb13ba7074112d39a102638b7895a94":[3,1,0,2,5], -"group___c_a_n_f_d.html#a6ce35aac50e44ac4353bfd20e12639a4":[3,1,0,1,4], -"group___c_a_n_f_d.html#a924d2187cf551c85ded2b148e26bbfd9":[3,1,0,2,3], -"group___c_a_n_f_d.html#aaaef4497ea35ba92d6d85cc5cc4a380a":[3,1,0,2,6], -"group___c_a_n_f_d.html#ac6305ab75909afd62029f3c76b235549":[3,1,0,1,0], -"group___c_a_n_f_d.html#aeb6bbed0e4cb76c06a947e009894608a":[3,1,0,1,2], -"group___c_a_n_f_d.html#afd7545e297144152431f5b1f3628fff7":[3,1,0,1,1], -"group___c_a_n_f_d.html#ga00c7557917ce6e78eb2969d7b5855890":[3,1,0,16], -"group___c_a_n_f_d.html#ga0d7e38baf7141e9bad96675f5169e44b":[3,1,0,8], -"group___c_a_n_f_d.html#ga1598f08872dd960675f060c7e8c35cf4":[3,1,0,4], -"group___c_a_n_f_d.html#ga16ff5e9e44e32191944292aea98ab4cb":[3,1,0,17], -"group___c_a_n_f_d.html#ga664d1e07613b250a3084681a613334be":[3,1,0,12], -"group___c_a_n_f_d.html#ga6c4d104c3a9cce6b74a05035f0af6d87":[3,1,0,10], -"group___c_a_n_f_d.html#ga7387d2e68262798a52c3a820ce12ea47":[3,1,0,13], -"group___c_a_n_f_d.html#ga888e511bc0fbb0ba049b49250400631f":[3,1,0,7], -"group___c_a_n_f_d.html#ga96f34361e525a46f121b11d627c3a1a8":[3,1,0,18], -"group___c_a_n_f_d.html#ga9a43dfa148767d10e12b22cb317111a9":[3,1,0,14], -"group___c_a_n_f_d.html#ga9bc23367cb7fb757b5ce2f29323524c0":[3,1,0,3], -"group___c_a_n_f_d.html#gaa7408bbf08466fb0f6025a8dfd93c714":[3,1,0,5], -"group___c_a_n_f_d.html#gaa79e3baad3f67bc4a3d1741dea29a3ae":[3,1,0,15], -"group___c_a_n_f_d.html#gacccf33f0942180054dd71c26c512844d":[3,1,0,6], -"group___c_a_n_f_d.html#gad89cfc4708b4a1cf7a57e4fcd3ffacfc":[3,1,0,11], -"group___c_a_n_f_d.html#gae6c27cee7d37eff10c6bfa5250eafc8d":[3,1,0,9], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a0fe1987f2df69fa7787ccae5a020968e":[3,1,0,4,3], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a1e8de2fee13f446d6d7f218420af1a75":[3,1,0,4,1], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a30a620f848af57cf1da8fce485c518ee":[3,1,0,4,2], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a38ec5eabdb1b8b29cece678ae973e1b8":[3,1,0,4,7], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a47a1524b5138710ca7fd5b55325a823d":[3,1,0,4,8], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a4fa7f77f606948c2409343b262b9a6a6":[3,1,0,4,0], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a529535a14f0b9aa29b20ba5b22abb225":[3,1,0,4,11], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a5c4e3bece7c60441a51d3899e73a158f":[3,1,0,4,14], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a5d38f69b80c5a2ca136cc2372885dd15":[3,1,0,4,17], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a62b2afdb4d00175d7ee90c4f86b917d9":[3,1,0,4,6], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abc967223593d6928cfa24aef349f5e64":[3,1,0,4,10], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abee1888c27382c7121781db44c31bc2b":[3,1,0,4,16], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abee54fb0333c85f37a216959e18b7a11":[3,1,0,4,9], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ac0191e933ec767fbc545ff93697aaafb":[3,1,0,4,5], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ac1b7da9fdca7a6fa3c9b9ba33371f4a8":[3,1,0,4,15], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4acdd82b46241db3cd909c4950a263cb36":[3,1,0,4,12], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ad1f966b89bb8ff0403a70e3a0170383f":[3,1,0,4,4], -"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4afe7d23457db11eedaa48cec9b1d9b3a6":[3,1,0,4,13], -"group___c_a_n_f_d.html#gga6c4d104c3a9cce6b74a05035f0af6d87a46bb2a869fc5c7b63b16bc822d4ec712":[3,1,0,10,2], -"group___c_a_n_f_d.html#gga6c4d104c3a9cce6b74a05035f0af6d87a4a5ce70c8fb9ab5d9e320a79dd59aebf":[3,1,0,10,1], -"group___c_a_n_f_d.html#gga6c4d104c3a9cce6b74a05035f0af6d87ad719b21681eae000b3bf7f55ef225470":[3,1,0,10,0], -"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a028b55778be2605790aedf97f8491c8d":[3,1,0,3,7], -"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a0591ba665da851a63de95c9d819673d5":[3,1,0,3,6], -"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a0a2d6442a22874bd0016a444f6f8d16a":[3,1,0,3,2], -"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a23dd8461a4d2bf187fba45b46a3fff93":[3,1,0,3,4], -"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a3d1b4528bdce56d189277bedac424cc4":[3,1,0,3,1], -"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a3e66a7f94e0abd296376c545e7388f2e":[3,1,0,3,5], -"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a5701150882ad9d87efee5ade0a4c658c":[3,1,0,3,8], -"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a9d1022be800bc150d6daf64245c198ec":[3,1,0,3,0], -"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0aa108c9efbacb5e55777e0e0339a9be07":[3,1,0,3,3], -"group___c_a_n_f_d.html#structcanfd__afl__entry__t":[3,1,0,0], -"group___c_a_n_f_d.html#structcanfd__extended__cfg__t":[3,1,0,2], -"group___c_a_n_f_d.html#structcanfd__global__cfg__t":[3,1,0,1], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html":[3,2,1], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a1b7ba67ea2063df052d7cff54d642455":[3,2,1,1,0], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a1c64bba3bbf9346831933b4d70b3ae9c":[3,2,1,3,2], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a21219682d6af73d780e49a7e67e53f22":[3,2,1,1,1], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a4237b56a314b7e145aefb59e6e1def1b":[3,2,1,1,7], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a4a407b8899a042692026e65d98535f6e":[3,2,1,2,3], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a568e65aafea692dff0f64c3b66df2c2a":[3,2,1,1,2], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a639337eee77555b934cbf8238e0f8449":[3,2,1,2,0], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a6ecb5664f627d1b731a4fd0a74e5f2bc":[3,2,1,2,2], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a7bf006f685a26836095b1660bf2eb263":[3,2,1,3,0], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a9cb81e4b2d313458c747cdc401179a66":[3,2,1,2,1], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#aa77181dcffe927e006c2ed112c1a62ad":[3,2,1,1,5], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ab32ad9ad3e7627390225d731f2834fd7":[3,2,1,3,1], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#abce89fd1740fefc7c2d179ca751df78f":[3,2,1,1,8], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ac8dadd8ef06c625a7b02c2eb06da7959":[3,2,1,1,6], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ac9c027f165cdd6273959c0338cfb212d":[3,2,1,1,3], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#acab3057d607bc3efd20955126a8e92d7":[3,2,1,1,4], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#acd4a73f25f8415f6ca33f31392d92fd9":[3,2,1,0,1], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ad0c4d6063af093a3a19a63924aae61ac":[3,2,1,2,4], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ade4504697e9cde129dfbe8796985f66a":[3,2,1,0,0], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ga2d1960d763da14da209e16fbb972d57c":[3,2,1,5] +"group___a_d_c___c.html#structadc__c__extended__cfg__t":[3,1,0,0,0], +"group___a_d_c___c.html#structadc__c__instance__ctrl__t":[3,1,0,0,2], +"group___a_d_c___e.html":[3,1,0,1], +"group___a_d_c___e.html#a042144a8278f131dc71decdf379d953f":[3,1,0,1,1,6], +"group___a_d_c___e.html#a0b20ef241f551191d580f929c32c8c7a":[3,1,0,1,0,10], +"group___a_d_c___e.html#a1dc98d81c9cfb1b1eb10db8ef7c638fe":[3,1,0,1,0,9], +"group___a_d_c___e.html#a2001b0e3ee79d759d058d8ed20435133":[3,1,0,1,0,8], +"group___a_d_c___e.html#a25be89b9a53299121d6cc6e6c1572a01":[3,1,0,1,1,2], +"group___a_d_c___e.html#a2e6ad852231e189d342c3845fe03562a":[3,1,0,1,2,4], +"group___a_d_c___e.html#a3b26e887178253580e298519f7f520e9":[3,1,0,1,0,7], +"group___a_d_c___e.html#a3c4857e589eda67d890287c4cbf8cbe6":[3,1,0,1,0,12], +"group___a_d_c___e.html#a4356be4b57def3aafa8b6fe95866dd1d":[3,1,0,1,1,1], +"group___a_d_c___e.html#a4736acec261319aba40517a3be0c5182":[3,1,0,1,0,0], +"group___a_d_c___e.html#a511e34c7b68581d758834dbb70202595":[3,1,0,1,2,1], +"group___a_d_c___e.html#a51c9f7b4d98b8fe863268a2af3da0d59":[3,1,0,1,0,11], +"group___a_d_c___e.html#a642af1b42820cb4369fe31638fda33ce":[3,1,0,1,0,4], +"group___a_d_c___e.html#a7f0c336facf23a64f292eda3c287b402":[3,1,0,1,2,3], +"group___a_d_c___e.html#a84260f8c568691040fbb5c0a31e3b1f3":[3,1,0,1,0,5], +"group___a_d_c___e.html#a85b7d0f9f9a95aeaaca2550b57dbf352":[3,1,0,1,0,6], +"group___a_d_c___e.html#a88a1a95d7b36e46463b0efdfc37620e3":[3,1,0,1,2,5], +"group___a_d_c___e.html#a97b0e510305931084fd702330874f861":[3,1,0,1,1,3], +"group___a_d_c___e.html#a9fb46ca6ae270967f11502395de49e07":[3,1,0,1,0,3], +"group___a_d_c___e.html#aa3bddc5993e3dda400ba4204565e30c9":[3,1,0,1,1,8], +"group___a_d_c___e.html#aa55fa691b0ddcda47c101f93e1ef7a91":[3,1,0,1,1,7], +"group___a_d_c___e.html#ad1de0a6834ea185e7db99c38886c4fc6":[3,1,0,1,1,0], +"group___a_d_c___e.html#ae8ee1fc70ecc64d4dafcc3498e0c5458":[3,1,0,1,1,5], +"group___a_d_c___e.html#aec17abb4a74dbf2f86694f27b5b96cd9":[3,1,0,1,0,1], +"group___a_d_c___e.html#aef801f1c817a80fe191ccaf67f425ebe":[3,1,0,1,0,2], +"group___a_d_c___e.html#aefe48cc53f1703d427fbef6177a008b9":[3,1,0,1,2,2], +"group___a_d_c___e.html#af8597107fafe5604cb585525909755e3":[3,1,0,1,2,0], +"group___a_d_c___e.html#af918f90028f93af577340c7310bb17b1":[3,1,0,1,1,4], +"group___a_d_c___e.html#ga0384d4b99b0e7b5dfb5d0ddf8ed6be83":[3,1,0,1,22], +"group___a_d_c___e.html#ga04662c7da4042227d066baa5b109090b":[3,1,0,1,4], +"group___a_d_c___e.html#ga1768d1f5986545eb95ab8273559eaee5":[3,1,0,1,21], +"group___a_d_c___e.html#ga1e0b524d58f582130181a3772222886a":[3,1,0,1,23], +"group___a_d_c___e.html#ga1f1da31e1c595123236987ef670a2cbc":[3,1,0,1,14], +"group___a_d_c___e.html#ga30f9dd58525ca2a59080a79222fbaf28":[3,1,0,1,15], +"group___a_d_c___e.html#ga4134f7cacd8b7ef6961cf6016097fb8b":[3,1,0,1,10], +"group___a_d_c___e.html#ga422cf88cc9da3ba156d8714d12ab76ce":[3,1,0,1,6], +"group___a_d_c___e.html#ga48312e85efd2f501384dd2df0b8f0288":[3,1,0,1,11], +"group___a_d_c___e.html#ga60b7cc39514b62e1b0ea3eabaa7c27de":[3,1,0,1,25], +"group___a_d_c___e.html#ga646be994090e719609305eaa76b1df52":[3,1,0,1,17], +"group___a_d_c___e.html#ga647576a53ba70232efbd36994a8cd98c":[3,1,0,1,12], +"group___a_d_c___e.html#ga70abfa718ea4f6fd5d14acbaf8730cbf":[3,1,0,1,24], +"group___a_d_c___e.html#ga722dc99ac11774e87c083e66fce79127":[3,1,0,1,20], +"group___a_d_c___e.html#gaa7e9c8ba1296fac868aa6decfa2225b4":[3,1,0,1,13], +"group___a_d_c___e.html#gaab99f6d8921a70ed3609a0d3ddabd09a":[3,1,0,1,26], +"group___a_d_c___e.html#gab0e11d4b95e596d916dc4eb65e22d4d3":[3,1,0,1,5], +"group___a_d_c___e.html#gabaf26ddcab6a7151b670a3b62f1e87fa":[3,1,0,1,16], +"group___a_d_c___e.html#gac0b5736dc0689efc4adc399542f3071c":[3,1,0,1,9], +"group___a_d_c___e.html#gacf047cf112ab4235c12408eedb1328dc":[3,1,0,1,18], +"group___a_d_c___e.html#gae49c0a7e6cc3e0a75850e2529e2f557f":[3,1,0,1,8], +"group___a_d_c___e.html#gaea1afc188601253968598bb4b19a682a":[3,1,0,1,19], +"group___a_d_c___e.html#gaecc60f4098d74dddf3a8e98aa65e43af":[3,1,0,1,7], +"group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba2b9c1663e5009446b538d2eb5e9f02e3":[3,1,0,1,4,2], +"group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba8c387adca9c3324765fda24f66b46aa1":[3,1,0,1,4,4], +"group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba9ac287179e8ac16a2a512f6532172940":[3,1,0,1,4,8], +"group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba9d92286744ee3853f98595513297c3c1":[3,1,0,1,4,7], +"group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090baaa6c0c0b4952290fdb21abca0a006076":[3,1,0,1,4,5], +"group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090baad56d2d61a689b0d664177fa6e024b7a":[3,1,0,1,4,3], +"group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090bab138f4d7f28ddb62f69104fcf4f0c0cc":[3,1,0,1,4,0], +"group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090baecaf6f7008e94a40b5a5c3f1f3961392":[3,1,0,1,4,1], +"group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090bafb09eb3f26f0227861ef0d5c7c82a2e7":[3,1,0,1,4,6], +"group___a_d_c___e.html#gga422cf88cc9da3ba156d8714d12ab76cea669d6e0019644b0499020a2cc9cbb6f6":[3,1,0,1,6,0], +"group___a_d_c___e.html#gga422cf88cc9da3ba156d8714d12ab76ceab705431542744d64ac830f66defa61d0":[3,1,0,1,6,1], +"group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4a189d0a824d5db27f10917dbe522a78b7":[3,1,0,1,13,0], +"group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4a1c4f07380c5b0a7df77e5d1f5f59845b":[3,1,0,1,13,3], +"group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4a4e40d19905cc52d4ee598eae53ab2fe6":[3,1,0,1,13,1], +"group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4aad16e88624cce006078aaec2f455fc4e":[3,1,0,1,13,2], +"group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a27eeeb12c5a0d9a0b1009520131be315":[3,1,0,1,5,2], +"group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a4036c2cdaa57bf8599e36eb21d0a78a1":[3,1,0,1,5,3], +"group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a44670148ec252d460b93341446298d65":[3,1,0,1,5,6], +"group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a8f16edf862670199e9a68347ece4840c":[3,1,0,1,5,4], +"group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3ab352925f95e9869bd239f31df58168b2":[3,1,0,1,5,0], +"group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3ad2dd39b24e9646d5807104257b69cc3d":[3,1,0,1,5,1], +"group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3adf05c281263ac034b85ee28759a22b09":[3,1,0,1,5,5], +"group___a_d_c___e.html#ggac0b5736dc0689efc4adc399542f3071ca865382fe418d7ab432b18c196f7ae8f1":[3,1,0,1,9,0], +"group___a_d_c___e.html#ggac0b5736dc0689efc4adc399542f3071caa05d4613945e60b38cd50a7ab720c2fc":[3,1,0,1,9,1], +"group___a_d_c___e.html#ggac0b5736dc0689efc4adc399542f3071cad3f6769a1a87595c24fe45ca41394de2":[3,1,0,1,9,2], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa106f24545d7f52d7e2e0ec800848bf56":[3,1,0,1,8,36], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa215583c964e85bacdc90056b67ab9589":[3,1,0,1,8,34], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa28c50276ed742ce0db678377e18687e5":[3,1,0,1,8,40], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa28e3a1a968ca839641207e0eaac50ad2":[3,1,0,1,8,49], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa293d75611b1da95391d9b6af22cd68b0":[3,1,0,1,8,10], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa2b4b59316fb8fefb58e73185e11e8d63":[3,1,0,1,8,50], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa2fb982d751259b10f0d892e87cf34a94":[3,1,0,1,8,38], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa31fdff2f29081b257445d6ba6d2a74e6":[3,1,0,1,8,25], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa374edc9decb2c4cddcf99deca385a67c":[3,1,0,1,8,44], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa378bf8e67b6b93ec9880b0dda5a49cf1":[3,1,0,1,8,15], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa3bceacf3e88dccada7241e842a82665d":[3,1,0,1,8,27], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa448af995c6515a9a4e86f04c46e8ada7":[3,1,0,1,8,2], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa4c426f6a8605e9e919fbb77e0b01920e":[3,1,0,1,8,1], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa5a16fcb8681d0cf1e741a9b307e88847":[3,1,0,1,8,13], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa5df525e46011f8befd1d42b25775206e":[3,1,0,1,8,18], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa5e524a4c78dec3eff0b12583fa1079ea":[3,1,0,1,8,41], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6163627f725cdbfdad6ebcc2e6b31846":[3,1,0,1,8,32], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6a63b6c2445f9c3f512a74456c0c5f44":[3,1,0,1,8,0], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6ec9fbdf997ccc7090fbbfdd85e2b3da":[3,1,0,1,8,46], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6f493cf9c678ef4a1d368bb63bc6f2e0":[3,1,0,1,8,19], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa727a862780e0fef71d313c712d46ed94":[3,1,0,1,8,29], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa790de35506dc40dd6e2395b561d33c38":[3,1,0,1,8,48], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa8096ea25dd100d856524b905fc388603":[3,1,0,1,8,33], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa8e90c5409cf4bccaf56eb5694907e35f":[3,1,0,1,8,31], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9902642a17e4068b11f05666619ace88":[3,1,0,1,8,3], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9a63067d741002399d546646cf9ea13d":[3,1,0,1,8,16], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9b6442c9b1add0999304ae38d9dbf368":[3,1,0,1,8,20], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9eff0146776bc2fd811f148a504234da":[3,1,0,1,8,26], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9f1b97c0b0b5f733c16aac91cd6a1a5d":[3,1,0,1,8,23], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa09082c6edf97f871bc12b2b61c718f6":[3,1,0,1,8,45], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa2c4758623e3a2aad4209c63491ca898":[3,1,0,1,8,24], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa53fb29d181177973f0f9faa327a0424":[3,1,0,1,8,14], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa574e696333924728cae8e361f78f29f":[3,1,0,1,8,8], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa695ee73260f9b9f31d86d6ac565720d":[3,1,0,1,8,5], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faaca5902231d50599b6034a6ff45a5143":[3,1,0,1,8,21], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faae2c129cfe845f45768c8e2021d14343":[3,1,0,1,8,6], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faae587f46b153bbf2e99864de3797cdef":[3,1,0,1,8,22], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fab20a730f226f3e7fbcf6921adf5bb5bc":[3,1,0,1,8,28], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fab97a0c9ee7c73c5e134a0e51411929a3":[3,1,0,1,8,9], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fabbbd1ff618da6a0f205ac2b1e63e64b5":[3,1,0,1,8,39], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fabd1c0ab8049d40a082f9d6cc460eae9d":[3,1,0,1,8,7], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fac1ce41a1b9c81fd268303ceae19f1b33":[3,1,0,1,8,35], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fac4ad89f15ce5582effbff589f28dd335":[3,1,0,1,8,43], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fac5a7fe7f78684f5e2e58c7c1c6ef73c3":[3,1,0,1,8,11], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fad04c5806b31c04576c04c05466ecb7fd":[3,1,0,1,8,37], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fad91a9db8f7c795e2d11b825125758495":[3,1,0,1,8,42], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faf121c0c74e2ab94d451fbff265037e16":[3,1,0,1,8,47], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faf889da8954112cedca0f84bbb5a603c9":[3,1,0,1,8,30], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faf8d4132591c78893ad583429c32ac4e8":[3,1,0,1,8,17], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fafb7c42eaa57827783bb2eef236f31c00":[3,1,0,1,8,4], +"group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faff0811af228d90a5fe900fa96028078e":[3,1,0,1,8,12], +"group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa27bb19af29f2a9b6790f28d4749f0658":[3,1,0,1,7,5], +"group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa2b861d5fc5c79f234750c1ccd015dd82":[3,1,0,1,7,4], +"group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa4bc3e3609dc57526346083b466e065ee":[3,1,0,1,7,0], +"group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa94e2ddc531f07eb9c834a363f903b31e":[3,1,0,1,7,1], +"group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afac49f6eae45a6a5db0bce4b0a53b0a5ab":[3,1,0,1,7,6], +"group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afac9d1cff44911bca45ae969e50ab63ff8":[3,1,0,1,7,3], +"group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afaf26242454336838e0df3880b319ab436":[3,1,0,1,7,2], +"group___a_d_c___e.html#structadc__e__channel__cfg__t":[3,1,0,1,2], +"group___a_d_c___e.html#structadc__e__extended__cfg__t":[3,1,0,1,0], +"group___a_d_c___e.html#structadc__e__instance__ctrl__t":[3,1,0,1,3], +"group___a_d_c___e.html#structadc__e__window__cfg__t":[3,1,0,1,1], +"group___b_s_p___i_o.html":[3,0,2], +"group___b_s_p___i_o.html#ga0ad2123f7a5152cf108883163581f11b":[3,0,2,18], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80a":[3,0,2,3], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa01a4990336c06cef1fea22c9ff2bfb2d":[3,0,2,3,115], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa03979860d2850a4790a85a7012fff5b4":[3,0,2,3,131], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa03dceeb58f56dc9a21b5bfa3176ab217":[3,0,2,3,113], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0623a8fae8511929239804f47b76dbab":[3,0,2,3,24], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0ae62012d023d55c6d1141e1f09d09d8":[3,0,2,3,2], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0cd29a6c518b2c8e67932c1e8d6a62d4":[3,0,2,3,85], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0ed7d51f576b741e15330313031c2216":[3,0,2,3,29], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0ef28251d02b2be71736cd6709324cf7":[3,0,2,3,129], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0f2b7d0278bf5dcbe1a9d7b9cefd0c15":[3,0,2,3,76], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa125041643933f0bc07f32f14887bdf9c":[3,0,2,3,25], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa12bccfc806539758e2b3a47e6ea93ca9":[3,0,2,3,159], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa1628f1c03dc3bfe49f118a6bb2400c53":[3,0,2,3,44], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa16ff4369ccc2eb0e6447af953bc94500":[3,0,2,3,40], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa1787bfc47089bd96d33fff7bad1153d1":[3,0,2,3,60], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa191310dd2b5e6a16244b452a76983735":[3,0,2,3,35], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa1e9673eef7a96cf9f46b8f75421075dd":[3,0,2,3,155], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2014abe37005233fad759d8de134796a":[3,0,2,3,30], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa23d463236f6411d0c90196dabcc9c5cf":[3,0,2,3,34], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa252a1fcd0f46a31afcf798e301bdba16":[3,0,2,3,100], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa25fdf456c4b05c5e15f51d615c3fa673":[3,0,2,3,77], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa26c218a01d621d492389ce4f74597f55":[3,0,2,3,48], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2818abb4ea0fa720d53bf0a0ba923870":[3,0,2,3,112], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2a3374a2fd5198a534ee4a728349e13f":[3,0,2,3,59], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2c579ae3361bf6dfb4191b4da60910fe":[3,0,2,3,99], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2d28483ae8cdc5474deca88e6bfe1dee":[3,0,2,3,88], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2df8908dd4850253d394bc3b7e685a75":[3,0,2,3,66], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2f376ba6a57ea3ac2d60a499a0f57c46":[3,0,2,3,65], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2fae9399a986654ad829fd957a0b5129":[3,0,2,3,81], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa30e6ff3f5eca3d04bec3d714e474f3df":[3,0,2,3,3], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa37a5927be9bc40f6df0f64adc84d6006":[3,0,2,3,101], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa38e1abc8d5cae949e3f1e82f9f107cc3":[3,0,2,3,120], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa39f4c9b8a1bfe125213595ecc0b45df0":[3,0,2,3,55], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa3afa25e16d31202f5367150ce88e768e":[3,0,2,3,137], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa3bf300bb3aa746665b49bc8200bd7963":[3,0,2,3,123], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa3c395ad7ae5d1d25edc8ba2a536d0525":[3,0,2,3,41], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa405fdd3dc66955a4858cc69a19016933":[3,0,2,3,140], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa40b055b032c42ad42b0d1878a4a52d73":[3,0,2,3,54], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa41f8c9cb94f726c7030df2052fd79774":[3,0,2,3,28], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa430a0d48fb4e6fc1f5a358a5c1b17d8f":[3,0,2,3,111], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa456bca4a2c1ee49955d22b162753d000":[3,0,2,3,127], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa49e414efa6d0d02c604aac05bb9778db":[3,0,2,3,56], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa4a41ab4915afe1b7a374411fe9eb196e":[3,0,2,3,61], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa4f0e2180e0a141f1ef73934fa9c340d0":[3,0,2,3,86], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa4f69d60a8685d441c35495d9d7dd09b8":[3,0,2,3,97], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5116644c1d06c3af3240908b62f1a1e1":[3,0,2,3,126], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa51d3b48ed479b2ee3a46dc996d04b435":[3,0,2,3,93], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa52b16585d757e097a7ff851e74748973":[3,0,2,3,107], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa52d01ece7c8204d5780ce72179f09c76":[3,0,2,3,8], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5394e222d99a1ca17622c3d1c8a5c94d":[3,0,2,3,152], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa53d05b3cda0c467bb7f5ed5999f2ab8f":[3,0,2,3,45], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5590555e0fa70d287a8a215b9a703de7":[3,0,2,3,132], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa57c5991f29df32eb1f4cd1c82082725b":[3,0,2,3,118], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa57ff3c85ce33930afe04e3802c55227f":[3,0,2,3,64], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa59817ac0e653810d530b8bb4a74305d6":[3,0,2,3,82], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5c7fa78ba5a0152298956fda6cf85c5e":[3,0,2,3,50], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5dfe885cc0ee6d129a7759c8ffecfd7e":[3,0,2,3,49], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5f53758d43bb074b01e3cba77cbb5cde":[3,0,2,3,121], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa60d189d33295043480ca9e91989fb126":[3,0,2,3,122], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa614cf023157b36d3e2162e11318abc31":[3,0,2,3,62], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa62ce6a7aef8164ea6bce7a9209b2506f":[3,0,2,3,0], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa62d85ff211777b182617b334c8f7e7b0":[3,0,2,3,73], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa635ed7a090bf9052c6cfc6c225335c9a":[3,0,2,3,4], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa63642ca9b2805ff92be0aa0bf7a66a9a":[3,0,2,3,89], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa65598f991476837f7822ce44244e349e":[3,0,2,3,154], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6569ae616e2c7ec066f05618be44d35a":[3,0,2,3,15], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa67d5209707eab3f61c4eb9bbbd1ce73f":[3,0,2,3,142], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6828c5428be0bd1a3a5b79e111871411":[3,0,2,3,163], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6c298d5d898981f883b4b01f90e5c996":[3,0,2,3,20], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6d353753e9a3f1ec95967f7e7fb630f5":[3,0,2,3,146], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6f5ee1365a8b7fc827fd3ceb3a4a8cb7":[3,0,2,3,90], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7127f17a3754e1842aafd8c5b5d2062a":[3,0,2,3,147], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa72604af4694f399a0eca581ec5b897b8":[3,0,2,3,92], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa73326eeb5a58de9766418893bcc1a284":[3,0,2,3,133], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa73f9c0b7f80c8385d77008b1e785eb88":[3,0,2,3,104], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7901524777e247b132a543d19b8ddd4f":[3,0,2,3,160], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7a1d5c0e646b87a381b9f1a829e2909b":[3,0,2,3,153], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7bf44c9d323051836f7cbdc7e9da06de":[3,0,2,3,33], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8248388efb79c97a26893bb2de4c8d5b":[3,0,2,3,157], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa829088e17268397d6ddb14182a380e51":[3,0,2,3,98], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa841054432251d0c7343d32144cee6789":[3,0,2,3,119], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa876a99deff86f8d09f1d96112a1b2dc3":[3,0,2,3,135], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa88e147f4775b65d5c96a282684a408c8":[3,0,2,3,17], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8b11501a458d5b7a82e5bdc80cb9252a":[3,0,2,3,151], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8c0b73a965fe066d0d58a4fb513d84dc":[3,0,2,3,164], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8d452d6083512df8aa8bcef4815ad8b8":[3,0,2,3,79], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8ef0f2b6cc6de032c23c371dafc6004f":[3,0,2,3,23], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa9068c73f5a59c1a55f6e57bd406edf6c":[3,0,2,3,1], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa922ad01a7323cb74f484964dc5d66697":[3,0,2,3,37], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa939175dd8a48d965dd7c667764cc1fd5":[3,0,2,3,6], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa9406041975509fcccff7d7dd93e786f3":[3,0,2,3,84], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa95398234ddf9c5235901f089d4e81662":[3,0,2,3,14], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa98b1d268ef5f45e6751c0a99139acc5c":[3,0,2,3,53], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa9ddc4ada31ca968e9b166cd11b440143":[3,0,2,3,51], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa62438f5462fd98d683368b464b18e4c":[3,0,2,3,149], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa7c30f479d99f883ee4b4fa27b6ae4f5":[3,0,2,3,156], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa7c6e61f76d6c3cc9a9dfd2f091bb0b3":[3,0,2,3,95], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa8daf070713048cb35f873e0490068df":[3,0,2,3,130], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa9e537caa46d62591f1a698b30897ee2":[3,0,2,3,39], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaab1bcef9f45fb16232cc5913697eed32":[3,0,2,3,12], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaae0e1e9e69f942b9db5e95ff83323ad4":[3,0,2,3,38], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaaedcbffa95e268f197778af394a4bf35":[3,0,2,3,19], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaaee42cef11c4a58e9e5aa68fd382299b":[3,0,2,3,67], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaaf1af3c7ee0c71fde7bfd1cd49949123":[3,0,2,3,46], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab0e97936a0410619b613d3e8ac4b0de1":[3,0,2,3,150], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab20b0a224aa92ffab0e0405e33c7e61c":[3,0,2,3,91], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab466c8da8ed341f72fdc9e4059d9025c":[3,0,2,3,158] }; diff --git a/navtreeindex10.js b/navtreeindex10.js new file mode 100644 index 0000000..58cf73e --- /dev/null +++ b/navtreeindex10.js @@ -0,0 +1,253 @@ +var NAVTREEINDEX10 = +{ +"group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba8a559716ca4f1164b677818843e90715":[3,2,13,9,3], +"group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0bab361929a40b68a2e6bbac0b5e9213c5a":[3,2,13,9,2], +"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a22c1283422f02a8c1a9c8b3aeeb9f156":[3,2,13,7,4], +"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a23e020fd551b49c524d0f5ae343b6df4":[3,2,13,7,7], +"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a386ea44b929de5b16b1c459a37f866c3":[3,2,13,7,1], +"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a38cfaa9e507532303a483369539418ce":[3,2,13,7,8], +"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a4840d0ad9f40a09c2785be816c7e2884":[3,2,13,7,3], +"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a4d37b4728c36a854139814813c4f1591":[3,2,13,7,5], +"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a5844408e52ce8a8d819d594d4134de0b":[3,2,13,7,0], +"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9aa4d56aee202d76e9efdf3bcfc181a12d":[3,2,13,7,9], +"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9aedd4f2c94c2539026d15543c0f1457cc":[3,2,13,7,2], +"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9aeeaef1204479de8858543006572c56f1":[3,2,13,7,6], +"group___p_o_e_g___a_p_i.html#structpoeg__api__t":[3,2,13,3], +"group___p_o_e_g___a_p_i.html#structpoeg__callback__args__t":[3,2,13,1], +"group___p_o_e_g___a_p_i.html#structpoeg__cfg__t":[3,2,13,2], +"group___p_o_e_g___a_p_i.html#structpoeg__instance__t":[3,2,13,4], +"group___p_o_e_g___a_p_i.html#structpoeg__status__t":[3,2,13,0], +"group___r_e_n_e_s_a_s___a_n_a_l_o_g___m_o_d_u_l_e_s.html":[3,1,0], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html":[3,0], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#a3d5dd6d84edfe02a1eb1f1f1ac2f3054":[3,0,3,0], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#aab846c0e3717a3e7d14af45cab70b44a":[3,0,4,2], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#ab0da275520918e23dd615e2a747528f1":[3,0,4,0], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#ae5c5e6dae38b284e8cf0bd1fb0efac03":[3,0,4,1], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#af1425da40a9f2d21ab702a1c7feae026":[3,0,4,3], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#ga6e7b87c8da88649d8760d1d6336da667":[3,0,8], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#ga76ff1de6269e865d79cef73dff4cfd7d":[3,0,7], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#ga790070b6104a40ce96c57f21ff3146c4":[3,0,5], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#gaae3916d7763a27427478d0f63e5c7428":[3,0,6], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#gae557c5332b1c3c628d6cd2bd71b252d8":[3,0,10], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#gaec6a87a6b154fa720455c22bd39eebe5":[3,0,9], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#structfsp__pack__version__t_8____unnamed____":[3,0,4], +"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#unionfsp__pack__version__t":[3,0,3], +"group___r_e_n_e_s_a_s___c_o_n_n_e_c_t_i_v_i_t_y___m_o_d_u_l_e_s.html":[3,1,1], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html":[3,0,0], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#a30a9a2b73548d20c22d0ba1f8aa42e27":[3,0,0,0,0], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#a361dcae2b6acd1b9a06bada602c57813":[3,0,0,1,3], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#a40292f8c4346751f08433b8e59ea657b":[3,0,0,1,1], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#a96e96c3d29b2faf6ae8f3ecce1917bbd":[3,0,0,1,2], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ad2d6666b93b9c6e95bc8e1d81fd9379e":[3,0,0,1,0], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ga0e229cde7ac6e617ed7eac38d45c4dd7":[3,0,0,4], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ga5560627aa81e2dc7e758b3a9853ca230":[3,0,0,5], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ga91dbefc93c284cc4ae3960bc1b371bb8":[3,0,0,3], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#gadfb1288da0fcc7ae1dc88c58601374f8":[3,0,0,6], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#gaf0afcbc9a110ac9366a811d96ee06029":[3,0,0,2], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a007f3ee6fdd7d7da64d199bd33eea883":[3,0,0,6,170], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a009dbf608109840cd7b1b82f08bf392b":[3,0,0,6,147], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a03165ce74cc447e345998cc45810bb8f":[3,0,0,6,201], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0333bd5f03a8366cc8c1c8628ebdee24":[3,0,0,6,194], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a05030ff414a0d988a0f6b3ea086cb3ea":[3,0,0,6,103], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a05ef199ce97212663fa6c3edc947d3bd":[3,0,0,6,78], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a06b56b3cf883cf010a7e5818246998b5":[3,0,0,6,27], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0800521190fb997b5bdd6e442510dc21":[3,0,0,6,84], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a08758cf67b1b1f99e0609f7d7d16942e":[3,0,0,6,3], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a092517cd93432a76ae16c3cc3ff4bc29":[3,0,0,6,118], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a094ba75816525a5f0d620bdce195cc9e":[3,0,0,6,156], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0a6057def8440b3e3dd6ff5fe9d4d4a7":[3,0,0,6,29], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0a63d0b8578305acef83fc2541a7791a":[3,0,0,6,79], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0ae9f5e2b29a1355c61d1a6837fcc8a7":[3,0,0,6,68], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0b11740f5efdcaa58bd9606a1e29fa53":[3,0,0,6,33], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0bbf60d9eede358d4ebbdbd17eaf8854":[3,0,0,6,176], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0dfea4f4a09d2cb04031624c5c3bd753":[3,0,0,6,163], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0f14549511d9e5e2bf488ef4abf284cf":[3,0,0,6,63], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a1009b837effcd110d0c0fb1106d90898":[3,0,0,6,46], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a118e5ad68156cb8174e39b421abcf467":[3,0,0,6,64], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a1350c1ec5c0dc121c93983b2367a61ab":[3,0,0,6,167], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a151982a9bc9ba19d87b6a5a8b7679397":[3,0,0,6,174], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a15c30a4a6eb7992e2ecc7c319c93b61e":[3,0,0,6,81], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a1638d9aa9cae9a4a26945f4e06770278":[3,0,0,6,100], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a17e6e9756acd02df02d6975161aa9998":[3,0,0,6,135], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a18b27ed6db9097ea399215224ad62d82":[3,0,0,6,157], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a19beacb3a5e19f362431d08a1fcaaa5d":[3,0,0,6,125], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a20165a34bc804ee7750960ad81853f20":[3,0,0,6,50], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2273c35317c397d5b1b3e2709facadd0":[3,0,0,6,7], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a23d4ede168571c3084157c0f99f6c60c":[3,0,0,6,23], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a25f62aa698b401155e31627fbc50b006":[3,0,0,6,70], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2afd955eba937108cc5cfaaae48f2364":[3,0,0,6,55], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2b8bd9b82940ba39e5d6c8351a8e6528":[3,0,0,6,35], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2c7fd435f27316b840546c51d0e7658d":[3,0,0,6,182], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2ca996df0892e635d629e5215a57fe52":[3,0,0,6,52], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2d42e0616d35e614532c95bf780fe3a1":[3,0,0,6,87], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2da63a5a8255b07061d01793d951b3af":[3,0,0,6,73], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2e783b2cf8434d9da89bdaa2a96de2bf":[3,0,0,6,91], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2ed5fe9a48f6c1a6e50b36b17158fc62":[3,0,0,6,141], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3224cc4e49b921121dd1c25e4b680d58":[3,0,0,6,142], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a36f32f07063bd03749f0410256fa95db":[3,0,0,6,34], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a378b2876a363d8c3a3c7ccc15c0221f9":[3,0,0,6,204], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a384fc7e9a644424c3e7743f24ad5c40f":[3,0,0,6,5], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a395e4056cceddf0f1606de74a028ed9e":[3,0,0,6,96], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a39f6c51c69fd754c9a16551bbd8a7b59":[3,0,0,6,112], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3c31107bd8ebd37bb8ff621758c25ecb":[3,0,0,6,80], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3da0834b14d2abd22cb01d7dade29d75":[3,0,0,6,11], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3e6f68238ad78176d339b01ee9f396a2":[3,0,0,6,107], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3f7ac1a0a2f4f1263320ce7a845852cc":[3,0,0,6,18], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a407432ab3c4ab46df3dbf12e27bd3ca8":[3,0,0,6,200], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a40dc55384fe2838d6893037f2923d3d8":[3,0,0,6,42], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a41282c4e46d7f2cc7869fcfd782fab54":[3,0,0,6,67], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a41434bdcf52a833b4fe1cc5ae322fe7a":[3,0,0,6,208], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a445a886afbb0951782907ac56e93d729":[3,0,0,6,211], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a47437bfbf555a04e9bad25b75425657f":[3,0,0,6,2], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a479e63b946d94636f905fd9bace227e9":[3,0,0,6,180], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a47bedb95f9926c8f1330bcf7846a548e":[3,0,0,6,209], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a4a5158a88f2ea654f62435a7b5ae72d2":[3,0,0,6,166], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a4b6b9e437964146efbcb4ad42397d265":[3,0,0,6,9], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a4c0707d4a6169b664b80e107659336b0":[3,0,0,6,195], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a504225c32f7ce922fe8bd6eb3b71cb5a":[3,0,0,6,75], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a50831305d5da65885b19304af8688f1a":[3,0,0,6,6], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a514ca2eb6423e25bed3982d27c9d979b":[3,0,0,6,191], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a517f6eb396408044e70353bedd2983e8":[3,0,0,6,177], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5197e695e1cbbce294aca76ed3ca570b":[3,0,0,6,26], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a52e6bb08e856dae157893d1b6097f958":[3,0,0,6,154], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5324a3aee60be60cf0426cca90586892":[3,0,0,6,101], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a53bf2288d2174c426d5626885a9cf3a5":[3,0,0,6,129], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a55211caeb32fda85000d88eab4c4766d":[3,0,0,6,130], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a558889b250c4c0dfa10cbce827f5b47e":[3,0,0,6,181], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5612cd93ed5b3c657ace3c0a8831c4b5":[3,0,0,6,111], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5711df02b0d0b9e2027bef9de27948a4":[3,0,0,6,162], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a58142c5af0984c7c4ede26c86aaf1376":[3,0,0,6,113], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a585fcafaa5e5dbe0209e063f5ecf8898":[3,0,0,6,210], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5875afbb6b583cfef9a6c83a053b7be6":[3,0,0,6,44], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5889b6693b9fe40f24d1454a12707004":[3,0,0,6,145], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a58fa157c6894a408dab3175d77b6e250":[3,0,0,6,89], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a59b955195cb913a404830ddca3d0176a":[3,0,0,6,193], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5b3fa149fddaa9617a7d3cacf67810a4":[3,0,0,6,32], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5c0d0b6394458760c2cdc05cdb237136":[3,0,0,6,132], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a61a8e059198001f46af73f2930e6c144":[3,0,0,6,65], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a61cdc8708028a97a52556794d4c2e050":[3,0,0,6,165], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a61d141714727223ba19d6303429ad330":[3,0,0,6,131], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6240bb179602fe6d111b3cb464ca4612":[3,0,0,6,117], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a629a12ea100187a63ddb2f8ee9a5c823":[3,0,0,6,119], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a65e4f50a62eb7dfb835d2013187fdc2e":[3,0,0,6,86], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a67eb0b2abc1ed0bc49f5287997cd4b88":[3,0,0,6,104], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6955ee4b9476caa9941a4a30608b2d9f":[3,0,0,6,161], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6c274324b8822d301de1de5077d385fc":[3,0,0,6,43], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6d11b644cafb53d7d39f701de5ca026d":[3,0,0,6,36], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e0d94ec73cc2ff2c1076b7f2e39508a":[3,0,0,6,148], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e304d49fbb08fc3b56558769148cf36":[3,0,0,6,40], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e88aef301d6f509e663b741e2193e5d":[3,0,0,6,25], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e8dcc9b22b1e904997c8b4781dc0a24":[3,0,0,6,144], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a74865c26e4916c9348c2ee5c0201f9d9":[3,0,0,6,205], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a75d640ca7358ecbd243474c9355fd084":[3,0,0,6,92], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7c0bcb38871c57b0cbaf0a7f94b4a3b6":[3,0,0,6,199], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7cfb255a9b41bb7d578b892b94ec362c":[3,0,0,6,124], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7dfc1b7578f229e739a22ecb69e4710a":[3,0,0,6,108], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7ee7b868f3bfce9f09e5a45c47cce101":[3,0,0,6,128], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7f2691c6eef5893eae43b55495efff89":[3,0,0,6,184], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7ff828228ccab4f53b2438ddd1c7e11a":[3,0,0,6,115], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a842991deab0b4cbc07585d4f437c21dd":[3,0,0,6,152], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8559df95856f0d5961b284bdbecbec4a":[3,0,0,6,10], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a86b1991ace24bc346dbb056d094c9886":[3,0,0,6,151], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a878fb55f61df59b8df5381f405d731c1":[3,0,0,6,69], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a88587e0a35f8081d546cd72e48ddc198":[3,0,0,6,172], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a886c9fb19f0d44f37da9259c09098e94":[3,0,0,6,137], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a897263b6cfdd866f230ba767b01fd457":[3,0,0,6,122], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a89727736be0655b4f42ea4bb77f43942":[3,0,0,6,109], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a899d80c2fd828410b2d01a7a96528f8c":[3,0,0,6,66], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8a7b105a86fb8f28033c5d351d8a702d":[3,0,0,6,83], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8c8e1207d2980ba3dd772db6889d7504":[3,0,0,6,54], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8e9e74ef9b1b0cd4caaa8dd3d41da83b":[3,0,0,6,56], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8f76d058261cd655519cbc81f1586bc4":[3,0,0,6,38], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9208c6be68de64b05a8bac94d68b1316":[3,0,0,6,188], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a922f76a3a941dd4d49cc55d382cb16f4":[3,0,0,6,19], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9611e83ff233e8a071999952f0836b1f":[3,0,0,6,192], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a96657076ca10ddfd97018bfbbeb94132":[3,0,0,6,76], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a96b579c4bf9998918494fe0ed7ba5570":[3,0,0,6,149], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a98ed4aa9d85ee3b480d9f4b834b6f41c":[3,0,0,6,190], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9949d6ad0b2b4e41a620c15c2bfa393f":[3,0,0,6,95], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a998bd409cde19062422795ab5ea13c77":[3,0,0,6,155], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9a2d74abb0d93c43f58d08212e2da72a":[3,0,0,6,102], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9a874eddeb97d535b197a7fe3723a2f6":[3,0,0,6,93], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9a88e15efe487b892de5976439b4cb1f":[3,0,0,6,74], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9b382a4ee94f03de684126c67d14ee50":[3,0,0,6,187], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9c9987a7651a37b59bb02cc1ed4361b2":[3,0,0,6,47], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa080f63e010614e89f77e98db762a4a5":[3,0,0,6,71], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa24ae037217ddad097ab29975cbd03af":[3,0,0,6,168], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa31a53c0ea5b86a8cb2bb9b3ccb99964":[3,0,0,6,0], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa41c9b39372bc0ead5b051502bcf262c":[3,0,0,6,90], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa4ed46a9d166f29b87a6f2ff89c458b7":[3,0,0,6,94], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa5cbda3787ddf5092d0fdf14b8e4fe57":[3,0,0,6,37], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa895abb7c999f8a17f0b5c634abe6ae7":[3,0,0,6,133], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa98c3f2932465676d70f00748856f61c":[3,0,0,6,189], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aab6cc8f1186d7e953d0a25806106b01c":[3,0,0,6,127], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aac8334069ce27d25543b199d6b0afdb3":[3,0,0,6,60], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aace5674d992838bd8dac5926188ea88c":[3,0,0,6,175], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aad12dc3bfd3947b7586c089ee6c15383":[3,0,0,6,173], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aad936f5a80f8c3fe3faa8d6220189098":[3,0,0,6,120], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aada459ccb2b85a8dc33fabc987e173e4":[3,0,0,6,30], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab0136751a5a85aedba8975720d6d6976":[3,0,0,6,61], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab17e4b925713a575bdc269db3bb06f9b":[3,0,0,6,49], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab1bebebe633bb879bba020add20a433b":[3,0,0,6,82], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab33453ae13bd3c15751b3962f5188364":[3,0,0,6,139], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab3731e454e03487e43cfcad91be7643f":[3,0,0,6,138], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab3cce6d31e8a198b0e3ef9bbb7489ad2":[3,0,0,6,85], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab4725f604ee9846237af90d47c659f5a":[3,0,0,6,98], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab4d37806bc2d73603698a975fad28672":[3,0,0,6,206], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab5ae9d00d5529018895ddf39b2c3e5eb":[3,0,0,6,72], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab635959cb1f794d46c032e602353e5ac":[3,0,0,6,59], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab802905d674ed99f0d219346a3ab54dc":[3,0,0,6,169], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab80d8e8c73b02af44003f87ea5f92a08":[3,0,0,6,41], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abca9038b509e767223fcd461b1be22aa":[3,0,0,6,183], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abd2265d139f387f507a3179e8289357d":[3,0,0,6,153], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abf03281ffe5a1adc5b3081f7adfe3f4e":[3,0,0,6,17], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abf96e28ad6ffcefb3753b3236b7d8f74":[3,0,0,6,123], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac15b49615174ed00b88a0fc3e7338e2d":[3,0,0,6,20], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac2e2eac0e5d38ed6ec2c7b8891782df0":[3,0,0,6,77], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac3355a82b4fc612941c6d2b8f4f52f90":[3,0,0,6,126], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac40178530b30251630ed759810117676":[3,0,0,6,150], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac42e16e1358505398e631062a1afbd45":[3,0,0,6,203], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac430678f17170002d5d8e71194803049":[3,0,0,6,88], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac555b9f56bc564142de5f6f1c5e81462":[3,0,0,6,8], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac62322154b85b6e0db84e59b6a117a38":[3,0,0,6,14], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac967d11d3c3211ff7ce1c364a6376ed0":[3,0,0,6,62], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac9c3ed9557b71ed6dbcabf4a4c4129ad":[3,0,0,6,22], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aca11a0f89f57a43b6cf1a9d60fa3c013":[3,0,0,6,1], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acbadb8600c31a85deacc8092d6e4b4d7":[3,0,0,6,143], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acbae29129db25e1b1d6c599f91f0dac4":[3,0,0,6,207], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acf83225e14023205bc71ddddf1ef7a43":[3,0,0,6,136], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acfa47fcf9dd431fe1022c0c54f651936":[3,0,0,6,186], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acfbdf09c1ae8d64e7eb388094bf54b9b":[3,0,0,6,202], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad03cea0891ae4463c964ed25a336caf0":[3,0,0,6,16], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad0991da0bb1261a103f9b86c179446cc":[3,0,0,6,51], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad1049f36b3561899a547421a6117138c":[3,0,0,6,178], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad40d6aaad44e18804d771e2a7872a2de":[3,0,0,6,212], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad4f4dc559cd966b28e349da4416af20e":[3,0,0,6,146], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad55fb9b2a3604266a75f735f4cd7f52c":[3,0,0,6,4], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad59d257fc10762fe60683c45a3f1b90a":[3,0,0,6,158], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad7a753235aa6ea399b96239f2f0f8efb":[3,0,0,6,196], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad8118a39d8349c891f0d443764d915a5":[3,0,0,6,53], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad8f0d03dcdebc03a19c8e4112c30b46b":[3,0,0,6,134], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad9c985872f1eee4c41ae4a30789c0761":[3,0,0,6,179], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8add81216e0221e6d8583d35b1b471199b":[3,0,0,6,31], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8addc1c8d5b6fc9f6d5f0c3ebb9840db76":[3,0,0,6,105], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8adeb727c2591c971117d47d29edec70e6":[3,0,0,6,160], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8adec9d5635d494955de400ca230d64886":[3,0,0,6,12], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae00382cd27990b19544bd0b72cb6dd33":[3,0,0,6,57], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae13f3c9685ff3f32dcb2966ac77c05df":[3,0,0,6,106], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae1e9fb09fdb6841cf4379097812e6156":[3,0,0,6,159], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae3da08cfbb0c6451f5ccf26d3cfdef12":[3,0,0,6,185], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae4ebd9838f9e69e526fae8ff7fad27f2":[3,0,0,6,21], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae62ec11818d3693b55fa3e4ecf55e8e0":[3,0,0,6,15], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae74f6f5d5f827f9891901781c754455b":[3,0,0,6,13], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae7b57f9284c226e7b524bcd9ee23cca9":[3,0,0,6,39], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aea550d03d45b87a810329a6138a0b022":[3,0,0,6,48], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aea683aeff347b767dcdcc7d3630f6395":[3,0,0,6,114], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aec3eea83b4e2e3c9ec447d4612d31e59":[3,0,0,6,164], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aedf5bd340743b4cad2a5b5370bdf3184":[3,0,0,6,24], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aee232d80cec4c18cfae78bdfb718c7cf":[3,0,0,6,45], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aef76cb06aecdf33a1186e2b1dd830b1a":[3,0,0,6,99], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af05386b34afb25ea06b40f7dd5d6ecf7":[3,0,0,6,97], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af06dbb8a78ccfbd897d25476da1190ac":[3,0,0,6,171], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af1bec53bb97a928b39bb4e9d5f66eb04":[3,0,0,6,198] +}; diff --git a/navtreeindex11.js b/navtreeindex11.js new file mode 100644 index 0000000..a536e1b --- /dev/null +++ b/navtreeindex11.js @@ -0,0 +1,253 @@ +var NAVTREEINDEX11 = +{ +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af39326ab50613d8779ebc84e5da8ffbc":[3,0,0,6,28], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af70132beb6b5b4cdaeaed4c70bd553c4":[3,0,0,6,197], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af95284232b2ca5804c03171d71080bc4":[3,0,0,6,110], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afa6bc60b26c1b7b906b9854b4db5060d":[3,0,0,6,140], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afe0f3347d7aed817201dac3bbad6fc75":[3,0,0,6,121], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afe6413d0677423f2f3d0fd0026899323":[3,0,0,6,58], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8affc315c6031ade6b6642d2649281f2e0":[3,0,0,6,116], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#structfsp__version__t_8____unnamed____":[3,0,0,1], +"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#unionfsp__version__t":[3,0,0,0], +"group___r_e_n_e_s_a_s___i_n_p_u_t___m_o_d_u_l_e_s.html":[3,1,2], +"group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.html":[3,2], +"group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.html":[3,1], +"group___r_e_n_e_s_a_s___m_o_n_i_t_o_r_i_n_g___m_o_d_u_l_e_s.html":[3,1,3], +"group___r_e_n_e_s_a_s___r_t_o_s___m_o_d_u_l_e_s.html":[3,1,4], +"group___r_e_n_e_s_a_s___s_e_n_s_o_r___m_o_d_u_l_e_s.html":[3,1,5], +"group___r_e_n_e_s_a_s___s_t_o_r_a_g_e___m_o_d_u_l_e_s.html":[3,1,6], +"group___r_e_n_e_s_a_s___s_y_s_t_e_m___m_o_d_u_l_e_s.html":[3,1,7], +"group___r_e_n_e_s_a_s___t_i_m_e_r_s___m_o_d_u_l_e_s.html":[3,1,8], +"group___r_e_n_e_s_a_s___t_r_a_n_s_f_e_r___m_o_d_u_l_e_s.html":[3,1,9], +"group___r_i_i_c___m_a_s_t_e_r.html":[3,1,1,11], +"group___r_i_i_c___m_a_s_t_e_r.html#a020f8656c45afc7d90378c7ef26a6955":[3,1,1,11,0,1], +"group___r_i_i_c___m_a_s_t_e_r.html#a213bb6cc78cf57022dbc0b0b2087c0b4":[3,1,1,11,0,0], +"group___r_i_i_c___m_a_s_t_e_r.html#a248dede6dc400b36d660ee00bf2b814b":[3,1,1,11,2,1], +"group___r_i_i_c___m_a_s_t_e_r.html#a2c8ba3ce75de64703a61dd700ae6bcb6":[3,1,1,11,2,7], +"group___r_i_i_c___m_a_s_t_e_r.html#a3e7ce84039e9c21f7a3cdc63060efdd1":[3,1,1,11,2,4], +"group___r_i_i_c___m_a_s_t_e_r.html#a505dbb8fdf8f4ffac481adab9c08b3fc":[3,1,1,11,0,2], +"group___r_i_i_c___m_a_s_t_e_r.html#a81efa4dd941b358e014354ffbf02ac16":[3,1,1,11,2,3], +"group___r_i_i_c___m_a_s_t_e_r.html#a8e22c7138ff92050165303b0525e95ba":[3,1,1,11,2,6], +"group___r_i_i_c___m_a_s_t_e_r.html#a96e7311f8d945a850954b4f6d4db1dba":[3,1,1,11,2,8], +"group___r_i_i_c___m_a_s_t_e_r.html#aa0e87db942a63d7eb72077bf75f34d87":[3,1,1,11,2,2], +"group___r_i_i_c___m_a_s_t_e_r.html#ac4f06d6bc304b3105524646725c0e736":[3,1,1,11,2,0], +"group___r_i_i_c___m_a_s_t_e_r.html#ad923980f5252b98f5a994166c32fde87":[3,1,1,11,2,5], +"group___r_i_i_c___m_a_s_t_e_r.html#ga0e3fee8948f4df299977350491d537fa":[3,1,1,11,5], +"group___r_i_i_c___m_a_s_t_e_r.html#ga2a0ac14ddd932a9cab8faf253dcdbbb5":[3,1,1,11,6], +"group___r_i_i_c___m_a_s_t_e_r.html#ga492a86497c72e8f9bcf70d8dcd03c762":[3,1,1,11,7], +"group___r_i_i_c___m_a_s_t_e_r.html#ga56dab8b87d138f1e86f718dff839bbb0":[3,1,1,11,10], +"group___r_i_i_c___m_a_s_t_e_r.html#ga786eaee89f66ecbf8f4faea575ee6e56":[3,1,1,11,12], +"group___r_i_i_c___m_a_s_t_e_r.html#ga9789e54472d093bd5348f202205d28ec":[3,1,1,11,4], +"group___r_i_i_c___m_a_s_t_e_r.html#ga978fc692cf57fadf35e57123b717be3d":[3,1,1,11,8], +"group___r_i_i_c___m_a_s_t_e_r.html#gaaa8f27a523bc16f11c179ff05f9aed78":[3,1,1,11,11], +"group___r_i_i_c___m_a_s_t_e_r.html#gaf8ecd43a76bfa058281bb8b6b3981d3f":[3,1,1,11,3], +"group___r_i_i_c___m_a_s_t_e_r.html#gafd5de8a9b0160931adaba85f614839f3":[3,1,1,11,9], +"group___r_i_i_c___m_a_s_t_e_r.html#gga9789e54472d093bd5348f202205d28eca0773c9356e560a84576f1d5498234a09":[3,1,1,11,4,0], +"group___r_i_i_c___m_a_s_t_e_r.html#gga9789e54472d093bd5348f202205d28eca62238f63df0d06f25af5b158bbfb2169":[3,1,1,11,4,1], +"group___r_i_i_c___m_a_s_t_e_r.html#ggaf8ecd43a76bfa058281bb8b6b3981d3fa4afacd0b267f604d06e2b83891c0e577":[3,1,1,11,3,1], +"group___r_i_i_c___m_a_s_t_e_r.html#ggaf8ecd43a76bfa058281bb8b6b3981d3facc441997b6e18766361457d26227b4bd":[3,1,1,11,3,0], +"group___r_i_i_c___m_a_s_t_e_r.html#structiic__master__clock__settings__t":[3,1,1,11,0], +"group___r_i_i_c___m_a_s_t_e_r.html#structiic__master__instance__ctrl__t":[3,1,1,11,1], +"group___r_i_i_c___m_a_s_t_e_r.html#structriic__master__extended__cfg__t":[3,1,1,11,2], +"group___r_i_i_c___s_l_a_v_e.html":[3,1,1,12], +"group___r_i_i_c___s_l_a_v_e.html#a01d8a48ff4d983d8d8995d6dbd4e5ac6":[3,1,1,12,1,2], +"group___r_i_i_c___s_l_a_v_e.html#a17643f2f26d82852032bd200631567ad":[3,1,1,12,1,5], +"group___r_i_i_c___s_l_a_v_e.html#a41382084c8a91226db001a7321176112":[3,1,1,12,0,1], +"group___r_i_i_c___s_l_a_v_e.html#a55c817a372e45b76fca43326c627c33f":[3,1,1,12,1,4], +"group___r_i_i_c___s_l_a_v_e.html#a5710872e90c0db5ed2c177e883979cc7":[3,1,1,12,1,3], +"group___r_i_i_c___s_l_a_v_e.html#a8fbc88f3fad23597ec529cccaf5d5bc1":[3,1,1,12,0,2], +"group___r_i_i_c___s_l_a_v_e.html#aad289375a5899c38eddfb299556c01e9":[3,1,1,12,1,1], +"group___r_i_i_c___s_l_a_v_e.html#aaf746e05cd94560cf30860aa9df619cf":[3,1,1,12,1,0], +"group___r_i_i_c___s_l_a_v_e.html#ae84939949fde82ff8600981d24e69d0f":[3,1,1,12,0,0], +"group___r_i_i_c___s_l_a_v_e.html#ga405ee8b79780785120d761af083f9557":[3,1,1,12,4], +"group___r_i_i_c___s_l_a_v_e.html#ga46f545b8b7e7d94c773e2563f3cd2534":[3,1,1,12,3], +"group___r_i_i_c___s_l_a_v_e.html#ga4a85c440574e6f2f837f3e19188d1a67":[3,1,1,12,5], +"group___r_i_i_c___s_l_a_v_e.html#gab0124cdb3b51609214466122053a7d15":[3,1,1,12,2], +"group___r_i_i_c___s_l_a_v_e.html#gaeb7fb4539537de4f9388e6cdaab5f94d":[3,1,1,12,6], +"group___r_i_i_c___s_l_a_v_e.html#structiic__slave__clock__settings__t":[3,1,1,12,0], +"group___r_i_i_c___s_l_a_v_e.html#structriic__slave__extended__cfg__t":[3,1,1,12,1], +"group___r_m___c_o_m_m_s___a_p_i.html":[3,2,21], +"group___r_m___c_o_m_m_s___a_p_i.html#a40779e10d71d444a436dc2382003bc0b":[3,2,21,3,2], +"group___r_m___c_o_m_m_s___a_p_i.html#a468f1e4f571140989fa274d8f40a5bb1":[3,2,21,3,4], +"group___r_m___c_o_m_m_s___a_p_i.html#a5376df7fa8ffa67c59162a527046a7e0":[3,2,21,2,0], +"group___r_m___c_o_m_m_s___a_p_i.html#a8bcd1db3bbb96b2dd0cb252d2b580f53":[3,2,21,2,2], +"group___r_m___c_o_m_m_s___a_p_i.html#aa7c637235b98c380a288bb1e5bbb4569":[3,2,21,2,1], +"group___r_m___c_o_m_m_s___a_p_i.html#abd464feb634b589687a0b8f55d0a078a":[3,2,21,3,1], +"group___r_m___c_o_m_m_s___a_p_i.html#ac2f5d7d5bc7207eb617bcc8b668dc5b3":[3,2,21,2,4], +"group___r_m___c_o_m_m_s___a_p_i.html#acfd68d17c8cad67545ef754a1f5f1322":[3,2,21,2,3], +"group___r_m___c_o_m_m_s___a_p_i.html#aef6d79b01056d9ea88e9fa5f0cd3f229":[3,2,21,3,0], +"group___r_m___c_o_m_m_s___a_p_i.html#af5486a540964c7c37f3115739be3e6cb":[3,2,21,3,3], +"group___r_m___c_o_m_m_s___a_p_i.html#ga2f3ec78f69db27d891220c31183a7936":[3,2,21,6], +"group___r_m___c_o_m_m_s___a_p_i.html#gaa137827e6f43e420c5eb269149c82f20":[3,2,21,5], +"group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__api__t":[3,2,21,3], +"group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__callback__args__t":[3,2,21,1], +"group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__cfg__t":[3,2,21,2], +"group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__instance__t":[3,2,21,4], +"group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__write__read__params__t":[3,2,21,0], +"group___r_m___c_o_m_m_s___i2_c.html":[3,1,1,18], +"group___r_m___c_o_m_m_s___i2_c.html#a2bb5f217d51637d4e27b8da6761c2021":[3,1,1,18,0,6], +"group___r_m___c_o_m_m_s___i2_c.html#a4323a08a846785496c0fdea5f1219f1e":[3,1,1,18,0,4], +"group___r_m___c_o_m_m_s___i2_c.html#a709194cfb42435320dd9a2f263850811":[3,1,1,18,0,5], +"group___r_m___c_o_m_m_s___i2_c.html#a88d8fbd6294057b09ea0231637643011":[3,1,1,18,0,0], +"group___r_m___c_o_m_m_s___i2_c.html#a8f3ef7c72a9bc7468fd60dc052b07c74":[3,1,1,18,0,1], +"group___r_m___c_o_m_m_s___i2_c.html#a98016cae64f53d4c8451a93fec50480d":[3,1,1,18,0,2], +"group___r_m___c_o_m_m_s___i2_c.html#ab623109ad8cbac1510e511ec6d93972f":[3,1,1,18,0,3], +"group___r_m___c_o_m_m_s___i2_c.html#ga0560f3c49dbff678d8cbda3e5b8bf44b":[3,1,1,18,1], +"group___r_m___c_o_m_m_s___i2_c.html#ga58164da5f2284c73a72902f85814438e":[3,1,1,18,5], +"group___r_m___c_o_m_m_s___i2_c.html#ga5f84cbe68338541d75b220fb374f192b":[3,1,1,18,3], +"group___r_m___c_o_m_m_s___i2_c.html#ga6fcbfc873b11a9f4c743ab36f52d1b09":[3,1,1,18,6], +"group___r_m___c_o_m_m_s___i2_c.html#ga85e5f34d0ec4c6e2633a37fcdba7a255":[3,1,1,18,2], +"group___r_m___c_o_m_m_s___i2_c.html#gada9c139b138ed7c6d4b9bbeae0ffcb52":[3,1,1,18,4], +"group___r_m___c_o_m_m_s___i2_c.html#structrm__comms__i2c__instance__ctrl__t":[3,1,1,18,0], +"group___r_m___f_r_e_e_r_t_o_s___p_o_r_t.html":[3,1,4,0], +"group___r_m___h_s300_x.html":[3,1,5,0], +"group___r_m___h_s300_x.html#a25114349d2d5b03b5062ef4c4af8bde9":[3,1,5,0,1,4], +"group___r_m___h_s300_x.html#a36436afd1ed74c2bbf34eab8e5af34bc":[3,1,5,0,1,3], +"group___r_m___h_s300_x.html#a36c21d0366384c0913491c536e81c280":[3,1,5,0,1,2], +"group___r_m___h_s300_x.html#a486df3e0ed2af6c8c038e1357572da53":[3,1,5,0,1,5], +"group___r_m___h_s300_x.html#a4b4fc8fbfadc717fb4842f0db0ffff8b":[3,1,5,0,0,3], +"group___r_m___h_s300_x.html#a5031dbec8375c4b2be896166fa3457b4":[3,1,5,0,1,0], +"group___r_m___h_s300_x.html#a60925699b63829347739382ba48b1d13":[3,1,5,0,1,1], +"group___r_m___h_s300_x.html#a61d14cc82dc42f81c05cf010858ef146":[3,1,5,0,0,0], +"group___r_m___h_s300_x.html#a74a8a836f1fe14defcd836a93734b887":[3,1,5,0,0,2], +"group___r_m___h_s300_x.html#a77ac61db4e87b179e4c59aa1f152ce02":[3,1,5,0,0,1], +"group___r_m___h_s300_x.html#ga09a980a63a6863d373370361f8f607da":[3,1,5,0,2], +"group___r_m___h_s300_x.html#ga3360174eadfe24421084be0881b7c4f6":[3,1,5,0,9], +"group___r_m___h_s300_x.html#ga6b1687477a1eceb91a00b77bf34b31c3":[3,1,5,0,4], +"group___r_m___h_s300_x.html#gaa3d8795e62cc694a4b93382a713ed452":[3,1,5,0,5], +"group___r_m___h_s300_x.html#gaa5596bf0a35a1e1c15aa214abdbcb653":[3,1,5,0,10], +"group___r_m___h_s300_x.html#gaa9adabc57bc72f5440aca8fa1addde26":[3,1,5,0,3], +"group___r_m___h_s300_x.html#gaad0bf1f3d2428b136553060792c65632":[3,1,5,0,7], +"group___r_m___h_s300_x.html#gabc4a07b3c9843357f322c6b9dc8e8abe":[3,1,5,0,8], +"group___r_m___h_s300_x.html#gac41a24eae1e4f6ebdb80c2eae32cec63":[3,1,5,0,6], +"group___r_m___h_s300_x.html#structrm__hs300x__instance__ctrl__t":[3,1,5,0,1], +"group___r_m___h_s300_x.html#structrm__hs300x__programmnig__mode__params__t":[3,1,5,0,0], +"group___r_m___h_s300_x___a_p_i.html":[3,2,22], +"group___r_m___h_s300_x___a_p_i.html#a069acb3e5dd3bc2445f053a7dae626bf":[3,2,22,5,5], +"group___r_m___h_s300_x___a_p_i.html#a103e89eaa5092238a9c039914b0eb629":[3,2,22,5,4], +"group___r_m___h_s300_x___a_p_i.html#a1812c8a229f28823abb6dc167dd1f94f":[3,2,22,5,7], +"group___r_m___h_s300_x___a_p_i.html#a1b8c3e526c2265e4bebf5aaf2b1a29fc":[3,2,22,5,3], +"group___r_m___h_s300_x___a_p_i.html#a1e0d9168e53864f3fc70cf99077f6210":[3,2,22,5,2], +"group___r_m___h_s300_x___a_p_i.html#a2bef066ec906f14e411982dc7f51c64d":[3,2,22,4,2], +"group___r_m___h_s300_x___a_p_i.html#a2ee1168f444f962fd1807aa6a48776cb":[3,2,22,4,1], +"group___r_m___h_s300_x___a_p_i.html#a42be32706089d71251045106dfeb9e82":[3,2,22,6,2], +"group___r_m___h_s300_x___a_p_i.html#a5fb2270412b0a4972ba9e3b37daf33ab":[3,2,22,5,1], +"group___r_m___h_s300_x___a_p_i.html#a6b1439ba4f4605e2194d7c4dfc0ce1f8":[3,2,22,5,8], +"group___r_m___h_s300_x___a_p_i.html#a70416ff9548ecd27d828617bd5dfdb8c":[3,2,22,6,0], +"group___r_m___h_s300_x___a_p_i.html#a7e4a14435b06b381e41e2838af87a38c":[3,2,22,4,3], +"group___r_m___h_s300_x___a_p_i.html#a88c8aa8e31fa829fb91cbae763baa284":[3,2,22,5,6], +"group___r_m___h_s300_x___a_p_i.html#a9e58f685584c3b52c8a504f8e8cee696":[3,2,22,1,1], +"group___r_m___h_s300_x___a_p_i.html#aae2bbfa1e2723b7547a49fdfdc8125a2":[3,2,22,2,0], +"group___r_m___h_s300_x___a_p_i.html#abdb7abf73635db350cf99e4041e1eb37":[3,2,22,5,0], +"group___r_m___h_s300_x___a_p_i.html#ac66a33236b3cb4b5106c22b063c43858":[3,2,22,4,0], +"group___r_m___h_s300_x___a_p_i.html#ad8d48666aaa654a2cf4b1067abb9fa63":[3,2,22,1,0], +"group___r_m___h_s300_x___a_p_i.html#adc885d33644960e6c14860dfe1cc1cbe":[3,2,22,6,1], +"group___r_m___h_s300_x___a_p_i.html#ga655f98816c2ac07b37b6b81ad8981c02":[3,2,22,10], +"group___r_m___h_s300_x___a_p_i.html#ga8004126f1557c3e3740fbb64b7d86fa7":[3,2,22,7], +"group___r_m___h_s300_x___a_p_i.html#gaaab827d822b03dfceb75bb3071a4fad1":[3,2,22,9], +"group___r_m___h_s300_x___a_p_i.html#gad56a7deec64851bc4919a7367823eecd":[3,2,22,8], +"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__api__t":[3,2,22,5], +"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__callback__args__t":[3,2,22,0], +"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__cfg__t":[3,2,22,4], +"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__data__t":[3,2,22,3], +"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__instance__t":[3,2,22,6], +"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__raw__data__t":[3,2,22,1], +"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__sensor__data__t":[3,2,22,2], +"group___r_m___h_s400_x.html":[3,1,5,1], +"group___r_m___h_s400_x.html#a39ddb6ae741d5506489bb4a87d466edf":[3,1,5,1,0,1], +"group___r_m___h_s400_x.html#a45b5fb27d54a8998d37ae8f90bc6bc47":[3,1,5,1,1,0], +"group___r_m___h_s400_x.html#a54d7d67e8c118457e17bdd80acb565c6":[3,1,5,1,0,0], +"group___r_m___h_s400_x.html#a5a901725d640aab3b802cffa3159276e":[3,1,5,1,1,5], +"group___r_m___h_s400_x.html#a5ad7e2630eddb4d77b167363ae3e6cfe":[3,1,5,1,1,9], +"group___r_m___h_s400_x.html#a5af51eb4d4038952763bba41f2dee7b7":[3,1,5,1,1,4], +"group___r_m___h_s400_x.html#a6288740f2724536ce15942ec1e46ee3b":[3,1,5,1,1,10], +"group___r_m___h_s400_x.html#a72f6d28fd2d5889d5733ce5ad5b345db":[3,1,5,1,1,8], +"group___r_m___h_s400_x.html#a8a565adac63233a59d03487d1417b33b":[3,1,5,1,1,1], +"group___r_m___h_s400_x.html#a977c323e9b1fba0858f58d4e9baf0ad5":[3,1,5,1,1,2], +"group___r_m___h_s400_x.html#ac470e112ef6556c406bda75049c7f3d6":[3,1,5,1,1,7], +"group___r_m___h_s400_x.html#aefb5d5f935001b4f4e33272387317282":[3,1,5,1,1,6], +"group___r_m___h_s400_x.html#afae51fca4d0796c27b1234c4d050f9e9":[3,1,5,1,1,3], +"group___r_m___h_s400_x.html#ga21afc7bb8b35ca56c4918ddd26a1549a":[3,1,5,1,4], +"group___r_m___h_s400_x.html#ga746a0ada3830ba954f47de6ed4f9746c":[3,1,5,1,6], +"group___r_m___h_s400_x.html#gaa263adbe024135888d31e141ce18d52c":[3,1,5,1,2], +"group___r_m___h_s400_x.html#gaa9dfab1c5a32803f66b8713adfd76d1d":[3,1,5,1,7], +"group___r_m___h_s400_x.html#gac7959f33340cb226d60a3b31ffd8e3e1":[3,1,5,1,5], +"group___r_m___h_s400_x.html#gadf41bfc87749833ce99276321fabb35c":[3,1,5,1,3], +"group___r_m___h_s400_x.html#structrm__hs400x__init__process__params__t":[3,1,5,1,0], +"group___r_m___h_s400_x.html#structrm__hs400x__instance__ctrl__t":[3,1,5,1,1], +"group___r_m___h_s400_x___a_p_i.html":[3,2,23], +"group___r_m___h_s400_x___a_p_i.html#a1275c87fc13e4effb686e72343b85ad2":[3,2,23,5,4], +"group___r_m___h_s400_x___a_p_i.html#a16b20fc56880ef23d5b8a4b2f169c50e":[3,2,23,6,4], +"group___r_m___h_s400_x___a_p_i.html#a2345337ea54f3db1a45733a57dd3a358":[3,2,23,5,0], +"group___r_m___h_s400_x___a_p_i.html#a2928df5b91141ebb9aff254547966843":[3,2,23,6,5], +"group___r_m___h_s400_x___a_p_i.html#a36931367054e059ebbebccfda169927d":[3,2,23,5,3], +"group___r_m___h_s400_x___a_p_i.html#a4a9e3392df8193428e1907f2e4a315b9":[3,2,23,5,2], +"group___r_m___h_s400_x___a_p_i.html#a5ecc1b981019560e1035eb47bb02e52f":[3,2,23,7,2], +"group___r_m___h_s400_x___a_p_i.html#a631d9b338b2183a1ae2ce36b9adb844b":[3,2,23,2,1], +"group___r_m___h_s400_x___a_p_i.html#a66bd54ec8371b1b45b530c455e5d9ea0":[3,2,23,6,3], +"group___r_m___h_s400_x___a_p_i.html#a7050fd08733d97f90d0ce05faf6b2848":[3,2,23,5,6], +"group___r_m___h_s400_x___a_p_i.html#a9b456f4ea4caeb04061bca271c5cab66":[3,2,23,7,0], +"group___r_m___h_s400_x___a_p_i.html#a9fa007f86deb655f999b5d0b1c4d65cb":[3,2,23,7,1], +"group___r_m___h_s400_x___a_p_i.html#aa1d22106aaa7182a9cea0652eff5bf69":[3,2,23,2,0], +"group___r_m___h_s400_x___a_p_i.html#ac6a5f8689aeda6f82bbd41d1794a66e3":[3,2,23,6,2], +"group___r_m___h_s400_x___a_p_i.html#ad726639457424c9f13522ab301833898":[3,2,23,5,1], +"group___r_m___h_s400_x___a_p_i.html#adb5595b01588645a3e9a9cfd1edb074a":[3,2,23,3,0], +"group___r_m___h_s400_x___a_p_i.html#ae6e90a1467d0a6ca0911845360356fc5":[3,2,23,5,5], +"group___r_m___h_s400_x___a_p_i.html#ae818086f1405c4519041c442fa5a0489":[3,2,23,2,2], +"group___r_m___h_s400_x___a_p_i.html#af43342d596f670dae68958a5011afed6":[3,2,23,6,1], +"group___r_m___h_s400_x___a_p_i.html#af60c3ba93861728b92487a5e727381d8":[3,2,23,6,0], +"group___r_m___h_s400_x___a_p_i.html#ga0593682edecc45c93a952cee4da7de1b":[3,2,23,11], +"group___r_m___h_s400_x___a_p_i.html#ga2d357850845781daeef921064d664a4b":[3,2,23,8], +"group___r_m___h_s400_x___a_p_i.html#ga5b0c2c5ce80e20f899cce8ac4d85cf84":[3,2,23,10], +"group___r_m___h_s400_x___a_p_i.html#ga6ab3f5a23c4ddfcbf416027512700d69":[3,2,23,12], +"group___r_m___h_s400_x___a_p_i.html#gadb5e6e3edfdfe9ee37e4ed7941513032":[3,2,23,9], +"group___r_m___h_s400_x___a_p_i.html#gga6ab3f5a23c4ddfcbf416027512700d69a065a54759d825775527b92f4c02342ef":[3,2,23,12,2], +"group___r_m___h_s400_x___a_p_i.html#gga6ab3f5a23c4ddfcbf416027512700d69a71fd810a9f93f8190420c5717a999ba2":[3,2,23,12,1], +"group___r_m___h_s400_x___a_p_i.html#gga6ab3f5a23c4ddfcbf416027512700d69aaeebce78040edb12cb5737d5708df752":[3,2,23,12,0], +"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__api__t":[3,2,23,6], +"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__callback__args__t":[3,2,23,0], +"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__cfg__t":[3,2,23,5], +"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__data__t":[3,2,23,4], +"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__instance__t":[3,2,23,7], +"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__raw__data__t":[3,2,23,2], +"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__resolutions__t":[3,2,23,1], +"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__sensor__data__t":[3,2,23,3], +"group___r_m___z_m_o_d4_x_x_x.html":[3,1,5,2], +"group___r_m___z_m_o_d4_x_x_x.html#a0438d7a16c46e81db655c9627a2e3fac":[3,1,5,2,1,13], +"group___r_m___z_m_o_d4_x_x_x.html#a0a1702cc41dc3a4c35e5c81f95b55295":[3,1,5,2,1,1], +"group___r_m___z_m_o_d4_x_x_x.html#a10f677f5de3207f7c9f30effb6662608":[3,1,5,2,1,5], +"group___r_m___z_m_o_d4_x_x_x.html#a21b842e14881cd866264417021fedcda":[3,1,5,2,1,0], +"group___r_m___z_m_o_d4_x_x_x.html#a23c402c7d22a24110fcf3c5fbbf36c48":[3,1,5,2,1,4], +"group___r_m___z_m_o_d4_x_x_x.html#a55df2cbb3cdc4bbeb75db1dba936d2b1":[3,1,5,2,1,7], +"group___r_m___z_m_o_d4_x_x_x.html#a57301a9ef64a2317881cdc7d89783fb5":[3,1,5,2,1,12], +"group___r_m___z_m_o_d4_x_x_x.html#a6151d069461571549ecbf52193ab8624":[3,1,5,2,1,11], +"group___r_m___z_m_o_d4_x_x_x.html#a68cd23f22e6e0fea3b8d8869ea3954f5":[3,1,5,2,1,9], +"group___r_m___z_m_o_d4_x_x_x.html#a6f86201d4a114d5714f700501338e5f7":[3,1,5,2,1,6], +"group___r_m___z_m_o_d4_x_x_x.html#a747d96b26c6228fd7505c18b11eb93cb":[3,1,5,2,0,0], +"group___r_m___z_m_o_d4_x_x_x.html#a80d7ca92199a768859b409e3eab26a76":[3,1,5,2,0,3], +"group___r_m___z_m_o_d4_x_x_x.html#a8c18d9f7ecb1e2fcec2f623136d92d9e":[3,1,5,2,0,2], +"group___r_m___z_m_o_d4_x_x_x.html#a993f572e2bc8acef02a151b7e1a38808":[3,1,5,2,1,10], +"group___r_m___z_m_o_d4_x_x_x.html#aa547817f19f270a3d32f32d17d38cc56":[3,1,5,2,1,3], +"group___r_m___z_m_o_d4_x_x_x.html#ae7072ae56668c282a2a667ad097a5667":[3,1,5,2,0,1], +"group___r_m___z_m_o_d4_x_x_x.html#af89ee122a3cd7e3ab844bae5addfe9df":[3,1,5,2,1,2], +"group___r_m___z_m_o_d4_x_x_x.html#afc82544a966e7f146ceee4ef404b7582":[3,1,5,2,1,8], +"group___r_m___z_m_o_d4_x_x_x.html#ga1a9e4762c544db1dc924fdff62bf9cc7":[3,1,5,2,5], +"group___r_m___z_m_o_d4_x_x_x.html#ga21bde6c18d166c38790d044a3325d7b9":[3,1,5,2,4], +"group___r_m___z_m_o_d4_x_x_x.html#ga2d4f33091a3b32dc0bda323c24a4eb15":[3,1,5,2,3], +"group___r_m___z_m_o_d4_x_x_x.html#ga3ee9369b728a5687fcc637114b563875":[3,1,5,2,10], +"group___r_m___z_m_o_d4_x_x_x.html#ga564266f1fd972d2a4b0d607925a8be48":[3,1,5,2,17], +"group___r_m___z_m_o_d4_x_x_x.html#ga5a6c9c9dcb25bc3964b07ed7fe002477":[3,1,5,2,8], +"group___r_m___z_m_o_d4_x_x_x.html#ga8dcfe9a7b0b9419f1ecfce5d82c3fc33":[3,1,5,2,15], +"group___r_m___z_m_o_d4_x_x_x.html#gaa2b8de7170ff85a0f991dfdb6fb71317":[3,1,5,2,11], +"group___r_m___z_m_o_d4_x_x_x.html#gaad8d1b8d7b71762b60c6078f9059bf1d":[3,1,5,2,6], +"group___r_m___z_m_o_d4_x_x_x.html#gac455a0f48d2eb704341bd83bb37fff94":[3,1,5,2,9], +"group___r_m___z_m_o_d4_x_x_x.html#gacebf611dd2d5d0b091db57023ea373b6":[3,1,5,2,2], +"group___r_m___z_m_o_d4_x_x_x.html#gadaee5fde2afbb40e28f40b1de50daf45":[3,1,5,2,16], +"group___r_m___z_m_o_d4_x_x_x.html#gaeafe7943df31f237ac45310796df64b2":[3,1,5,2,14], +"group___r_m___z_m_o_d4_x_x_x.html#gaed61c1d9714552e574a4e6037d926180":[3,1,5,2,12], +"group___r_m___z_m_o_d4_x_x_x.html#gaf200a9dc7ca8bf0601c2a2b96c341ecf":[3,1,5,2,13], +"group___r_m___z_m_o_d4_x_x_x.html#gafabd01cfcb93ac2bcdc4378dc94ec804":[3,1,5,2,7], +"group___r_m___z_m_o_d4_x_x_x.html#structrm__zmod4xxx__init__process__params__t":[3,1,5,2,0], +"group___r_m___z_m_o_d4_x_x_x.html#structrm__zmod4xxx__instance__ctrl__t":[3,1,5,2,1], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html":[3,2,24] +}; diff --git a/navtreeindex12.js b/navtreeindex12.js new file mode 100644 index 0000000..eaa8d89 --- /dev/null +++ b/navtreeindex12.js @@ -0,0 +1,253 @@ +var NAVTREEINDEX12 = +{ +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a026e4a40776c79cd6cf745c8446b4bfd":[3,2,24,5,2], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a032f14a6414a147c3e05a28064d97069":[3,2,24,10,13], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a04d026df23f93a2ccd598b7fc7546c5d":[3,2,24,3,1], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a107e482f18f60935d5454a87539565b2":[3,2,24,4,1], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a27c6d482aef38fe699598bd294eae220":[3,2,24,10,3], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a2ef43c9ece4e53557648b8a77ec406f5":[3,2,24,9,5], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a322cc10b5fcff9b42f07c575c48da56f":[3,2,24,6,0], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a32901d3e447bf2fc0642b3c54be98d9a":[3,2,24,7,0], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a37597974b2ae3e5ba15c57fce44b2c83":[3,2,24,10,14], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a492587fbeb536fcd7994596a6f2c4176":[3,2,24,7,1], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a4bf54edf41460cfb0e6a8bd1cf9a825e":[3,2,24,3,2], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a504a4e2266dc1ae46f27b752ade032e9":[3,2,24,10,12], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5ba1799ed3669a41fd7f0f436706367b":[3,2,24,10,0], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5ce0b0a7d1b59a0ad9088449e884cbb4":[3,2,24,11,0], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5cf69c31fc52e26757bedf1ec76581f3":[3,2,24,10,2], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6457c0270c680c86d593bbd286c425dc":[3,2,24,3,6], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6486c18c874aacc219e4015104c62431":[3,2,24,3,0], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a692f0a4eaad2c9e8e8cdbb0a2e792dd9":[3,2,24,9,1], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6dc721959ed25ffaade04a78ba4c1ba6":[3,2,24,3,4], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6de91ae7e87c6ad5197ceff295b7fdf3":[3,2,24,3,3], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6e96d0abcbc4a4479d92d6e8e8d410de":[3,2,24,10,5], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a7b78eb5d21388e5e0c8cd7f0f72b39a9":[3,2,24,5,0], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a7f440ae56f5434038f3268db25554db6":[3,2,24,2,5], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a84160c2d9ba22577f86b7bbdb3521845":[3,2,24,7,2], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8cce7b013ebccc3b0b0aed0e9436e922":[3,2,24,9,0], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8d8907540984f151e5d47932c1db9b18":[3,2,24,2,0], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8f0e582715db0dc1589f314944c2a41a":[3,2,24,10,4], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8f25d9bf4ff36c9dcf976a029ef49c10":[3,2,24,9,4], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a92ce32ead1c82ad9b1c355827fe027a9":[3,2,24,3,5], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a92ddaabd0705326f5e1fcf0a4ced9ba7":[3,2,24,11,2], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aa05768468433346424e7c695a0e0a4ed":[3,2,24,10,11], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aa95d3545e0fcfe3070532d2b1e4923b0":[3,2,24,4,0], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aa97465cfe97ce3dcf9b872b0425687a9":[3,2,24,2,3], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aac9344fd8efc73b82c65e1adcec5f88c":[3,2,24,11,1], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aafd6e3d578d566d09fcae0b3b0c81851":[3,2,24,8,1], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ab2709d5696a54a4d979adb8c85d8610c":[3,2,24,5,1], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abc68dcd903ac59de8c478b0d22d25bfa":[3,2,24,9,2], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abcdbe1de7b8f7c882f5f7bdbb60a2274":[3,2,24,6,1], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abd2e11efbf4f5c3ae54f469394235ae8":[3,2,24,2,2], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abdc449da78d2149a7b552ef545a1b069":[3,2,24,2,1], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abe7c7a383889bcc45958fb2f24afe497":[3,2,24,8,0], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ad1d9b01a5d84a3a4a06dfd714f485911":[3,2,24,10,10], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ad56aa9708d3f48a92253eeda652edede":[3,2,24,10,9], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aeb49c4d0925d19ef93f1b7836acbcaf1":[3,2,24,7,3], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aed55023e17ab93d307606c0d880df721":[3,2,24,10,7], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af1ff5841c01173a03ff6ccb7bd731ddc":[3,2,24,10,6], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af2123328d6c1ced0cc62d9c98f5a8a7a":[3,2,24,10,8], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af76dfeb408164a58e2571d56bcb40101":[3,2,24,9,3], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af9e1e5ff4fd276f7d7bfeb341854b0c2":[3,2,24,10,1], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#affea8dbc2bf312f939b04a070ba9a16d":[3,2,24,2,4], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ga47f50ad1a54e470fb44b443351c39beb":[3,2,24,14], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ga65db663ec670e25cc0294f22f96abb5c":[3,2,24,12], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#gadd54ca8592a0f7cb81913d2250e89060":[3,2,24,13], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ggadd54ca8592a0f7cb81913d2250e89060a55d1b247ecb594b099b15e120ae6b6a4":[3,2,24,13,0], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ggadd54ca8592a0f7cb81913d2250e89060aa55c18d81d34427bcfd2f631e6b2a3a4":[3,2,24,13,1], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__api__t":[3,2,24,10], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__callback__args__t":[3,2,24,0], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__cfg__t":[3,2,24,9], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__iaq__1st__data__t":[3,2,24,2], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__iaq__2nd__data__t":[3,2,24,3], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__instance__t":[3,2,24,11], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__oaq__1st__data__t":[3,2,24,6], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__oaq__2nd__data__t":[3,2,24,7], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__odor__data__t":[3,2,24,4], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__raq__data__t":[3,2,24,8], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__raw__data__t":[3,2,24,1], +"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__sulfur__odor__data__t":[3,2,24,5], +"group___r_s_p_i.html":[3,1,1,13], +"group___r_s_p_i.html#a0cbb7690023ca0e3a82dd9acf79e34f3":[3,1,1,13,1,3], +"group___r_s_p_i.html#a1e9156851592aa749ab8d971c24da93e":[3,1,1,13,2,0], +"group___r_s_p_i.html#a2f8227792623b013057699e8e4edec1e":[3,1,1,13,0,1], +"group___r_s_p_i.html#a4a5671a7b1a0b31742f3fb3ffb832532":[3,1,1,13,1,5], +"group___r_s_p_i.html#a4d6543f22a352c931855cd85e19cfe45":[3,1,1,13,1,7], +"group___r_s_p_i.html#a4ed0f4d1ff28b7be854d963b057035d7":[3,1,1,13,2,8], +"group___r_s_p_i.html#a5a46d5fbf91bb380c5a211c33e2c5b54":[3,1,1,13,2,6], +"group___r_s_p_i.html#a5c0b630ca16e1aa5a398850f669513db":[3,1,1,13,2,2], +"group___r_s_p_i.html#a6341f3c3ed5db4208c5481e3cb600f26":[3,1,1,13,1,0], +"group___r_s_p_i.html#a7074247ca15863980c0b6794efd3ef3b":[3,1,1,13,1,1], +"group___r_s_p_i.html#a84b7d73e4143987055afde28fe246f05":[3,1,1,13,2,10], +"group___r_s_p_i.html#a98166008c3a0b7f73b1c0e8e162c9969":[3,1,1,13,2,5], +"group___r_s_p_i.html#aa3d8783d295b5448fcc8dd2de1201169":[3,1,1,13,0,0], +"group___r_s_p_i.html#ab1dfe38550f42599c7c40f7af8a6d7c7":[3,1,1,13,1,2], +"group___r_s_p_i.html#ab6addb584c6cedbffe24dc9983b8aa07":[3,1,1,13,2,4], +"group___r_s_p_i.html#ac9029124a35943dc5f347657d28d3c16":[3,1,1,13,1,8], +"group___r_s_p_i.html#aca5de5e6709e812f9f9f528a42f97e15":[3,1,1,13,2,9], +"group___r_s_p_i.html#ace6d2dd7ac73c2171a7c2f0edb11db22":[3,1,1,13,1,4], +"group___r_s_p_i.html#ae3192998dbe33aee6614dd5f5850d289":[3,1,1,13,1,6], +"group___r_s_p_i.html#aeac6ab8d657da805d12554dd8090af67":[3,1,1,13,2,3], +"group___r_s_p_i.html#af07a6630edcb186c8ccb2b74d228f729":[3,1,1,13,2,7], +"group___r_s_p_i.html#af4b65717f05932609172a0828cee1db4":[3,1,1,13,2,1], +"group___r_s_p_i.html#ga01e482fc0ce65e7462177bb7f5852ac2":[3,1,1,13,15], +"group___r_s_p_i.html#ga2342f44b16c4072b5e9302c4f05b4f94":[3,1,1,13,3], +"group___r_s_p_i.html#ga431fc619396f9d5cf2f1c495c2ed59ca":[3,1,1,13,8], +"group___r_s_p_i.html#ga8e48fdc14874a5cba28661ae549203ab":[3,1,1,13,7], +"group___r_s_p_i.html#ga8f68c8c6c98ee871ad72bbb94c559775":[3,1,1,13,6], +"group___r_s_p_i.html#ga9aee5ad3abd18ef054128c8542ec7f68":[3,1,1,13,13], +"group___r_s_p_i.html#gaa303bc3394f99cd07e2ae96139651529":[3,1,1,13,9], +"group___r_s_p_i.html#gaae19ba80f9290f4ad12e794cf1bac9f2":[3,1,1,13,5], +"group___r_s_p_i.html#gabf563431c100264a744239953798e1ea":[3,1,1,13,10], +"group___r_s_p_i.html#gad52ea6e5651ab88e2cbacfec46f6a4b3":[3,1,1,13,12], +"group___r_s_p_i.html#gad663d0a4eb35992cbf804cc5da21cb45":[3,1,1,13,14], +"group___r_s_p_i.html#gae3deb1d097bc300a5ed42849ebb200c6":[3,1,1,13,4], +"group___r_s_p_i.html#gae60c894cc73159eb48885dd1ab0864eb":[3,1,1,13,11], +"group___r_s_p_i.html#gga2342f44b16c4072b5e9302c4f05b4f94a33e3a44f24010fc5a3f737b1fc451ed7":[3,1,1,13,3,0], +"group___r_s_p_i.html#gga2342f44b16c4072b5e9302c4f05b4f94af642f0a0ebd5e10f1e0f749f2a7b6861":[3,1,1,13,3,1], +"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa0075abb73fd4b57739d3dc2ce736e8f7":[3,1,1,13,8,1], +"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa036ea6f9fcfa956509de0e99167c61e7":[3,1,1,13,8,3], +"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa5514129ce285974d810db5f22e2518d1":[3,1,1,13,8,2], +"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa6e2d61b897292531bcf0a4dd66e7ce74":[3,1,1,13,8,0], +"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caacd53b2a36ff3174ca39d448d47626dbf":[3,1,1,13,8,6], +"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caad83aa485a255af67211f9455b77dcdd5":[3,1,1,13,8,4], +"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caaf0c6136c76672af71b2a3a586013f395":[3,1,1,13,8,7], +"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caaf2e133c6790fa395dcb1cbe1be0b90b0":[3,1,1,13,8,5], +"group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba39b767be6e7e52887162d6a45ef4ec1c":[3,1,1,13,7,1], +"group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba922c57b7e36774c42a3eb3efc1e91f75":[3,1,1,13,7,0], +"group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba9d9724c3300e18d9ed1985559558d0bf":[3,1,1,13,7,2], +"group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203abacfc42fd65ae0d7a0f60aed988a4fa1e8":[3,1,1,13,7,3], +"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a113a034f110841c3f8fb0c726238c7ea":[3,1,1,13,6,1], +"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a278ef944fd2a6485be24ddc58e154e00":[3,1,1,13,6,2], +"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a5ac1f6ea1b0b10b12ff8e91ec32f9ce9":[3,1,1,13,6,7], +"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a76dd1b81a9f64fcccfd74406bf67d712":[3,1,1,13,6,4], +"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a7e2364c6d0f338da53c4eb5e96c6e0fe":[3,1,1,13,6,5], +"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a97aed5f01b2294bc3fd7a64645f67a69":[3,1,1,13,6,3], +"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775acf6c2af3c3fd7da891cd64c6ac082ed7":[3,1,1,13,6,0], +"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775ad0ac09d0f4cbd2e59603fbfaf8195cc8":[3,1,1,13,6,6], +"group___r_s_p_i.html#ggaae19ba80f9290f4ad12e794cf1bac9f2aabdf42d404217b46fab49e661dc6f128":[3,1,1,13,5,1], +"group___r_s_p_i.html#ggaae19ba80f9290f4ad12e794cf1bac9f2ab841c4b6e56bf3a45f323d77f93b2d03":[3,1,1,13,5,0], +"group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a2a42bca9fb7a5f485d0c21c70d83c6bc":[3,1,1,13,4,1], +"group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a334fbae8188c8d89825231b5126c432d":[3,1,1,13,4,2], +"group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a671c871f2ed8584714caf4c0d562da4e":[3,1,1,13,4,0], +"group___r_s_p_i.html#structrspi__extended__cfg__t":[3,1,1,13,1], +"group___r_s_p_i.html#structrspi__instance__ctrl__t":[3,1,1,13,2], +"group___r_s_p_i.html#structrspi__rspck__div__setting__t":[3,1,1,13,0], +"group___r_t_c.html":[3,1,8,5], +"group___r_t_c.html#a02ff7a87b8c7fdf8ec2ecc4ad4a817c6":[3,1,8,5,1,1], +"group___r_t_c.html#a531f0ac7759fe0ec50841022ae9a9bfe":[3,1,8,5,1,0], +"group___r_t_c.html#ac36b179a4311fe95bde1820384dd35cc":[3,1,8,5,0,0], +"group___r_t_c.html#ad1e0ef1397b14d5d1571f960d536c50d":[3,1,8,5,1,2], +"group___r_t_c.html#ae7f72a6fbe27e9a3ef60c99022798c9b":[3,1,8,5,0,1], +"group___r_t_c.html#af6b87d21311028e2eb25ce5f2b90f73e":[3,1,8,5,0,2], +"group___r_t_c.html#ga0fd1ee1e11ed683d7509f251bbd1f282":[3,1,8,5,10], +"group___r_t_c.html#ga17801e1ecb103e17bf1fd092c6a48461":[3,1,8,5,2], +"group___r_t_c.html#ga311898f6b0ddd44d9b4c1b34defb0cf4":[3,1,8,5,12], +"group___r_t_c.html#ga3bf6329a0ea01943e385499fcac01e1e":[3,1,8,5,6], +"group___r_t_c.html#ga5c39b02432cedcb7a29ae8bdc8fcefb8":[3,1,8,5,8], +"group___r_t_c.html#ga6e0f357923c34057c8c938a52f6e8da8":[3,1,8,5,11], +"group___r_t_c.html#gaa08e35bcfca849283de15698beb6b150":[3,1,8,5,5], +"group___r_t_c.html#gaa6b50d916a9243792c0ea8b13744d25f":[3,1,8,5,13], +"group___r_t_c.html#gaabcfafd522c18288ac274f6b56f76366":[3,1,8,5,7], +"group___r_t_c.html#gac1135140182189d9c1defa5846a375c8":[3,1,8,5,4], +"group___r_t_c.html#gacbb2641ed2236f071c001df6b025e0f2":[3,1,8,5,9], +"group___r_t_c.html#gae6b2cd0b0827d0fdef1dd148ddc354bb":[3,1,8,5,3], +"group___r_t_c.html#structrtc__extended__cfg__t":[3,1,8,5,0], +"group___r_t_c.html#structrtc__instance__ctrl__t":[3,1,8,5,1], +"group___r_t_c___a_p_i.html":[3,2,14], +"group___r_t_c___a_p_i.html#a07468cd075199669905fb25eecddcf9b":[3,2,14,2,0], +"group___r_t_c___a_p_i.html#a0a64ff37fefef5f044209c6f85564b70":[3,2,14,4,1], +"group___r_t_c___a_p_i.html#a1037fb218fb45e450dd41965a9ca1df7":[3,2,14,2,5], +"group___r_t_c___a_p_i.html#a16c0bd22c4022b133fc1eee5333086a9":[3,2,14,1,0], +"group___r_t_c___a_p_i.html#a2116bd7b5fa4535556de190e370b548a":[3,2,14,2,2], +"group___r_t_c___a_p_i.html#a2a07242a217b804f8dc04fb078d4a6a1":[3,2,14,0,1], +"group___r_t_c___a_p_i.html#a322799f85ff64bfe8d6dd4fd611e1ed7":[3,2,14,1,2], +"group___r_t_c___a_p_i.html#a3953fbf4c2ae68580302f22001c8f89e":[3,2,14,1,3], +"group___r_t_c___a_p_i.html#a40c6580113cd30f538f7985b2e6bed46":[3,2,14,2,4], +"group___r_t_c___a_p_i.html#a4d6b36efa20644739ef4a2697a745660":[3,2,14,4,0], +"group___r_t_c___a_p_i.html#a4d9b154cadb980b95d1153a8f1b6c7e2":[3,2,14,4,7], +"group___r_t_c___a_p_i.html#a5119270ac476dc4c0aa6869df0627de9":[3,2,14,5,2], +"group___r_t_c___a_p_i.html#a5a13e1acf6e07bfd87dc81bf65272951":[3,2,14,5,7], +"group___r_t_c___a_p_i.html#a5bda4cf6957658e03d59db0cf11933e5":[3,2,14,5,5], +"group___r_t_c___a_p_i.html#a63a958dd039662f8d13d38a64da9b61e":[3,2,14,5,9], +"group___r_t_c___a_p_i.html#a66dc93f732aa8ec1b07d036602974cb0":[3,2,14,4,11], +"group___r_t_c___a_p_i.html#a6a99d08314611e1fe129bef873c56ac2":[3,2,14,4,3], +"group___r_t_c___a_p_i.html#a72e36c98782bcb50ce83f7d05b3fc024":[3,2,14,3,1], +"group___r_t_c___a_p_i.html#a744ab95029f4675df63aec891d0f7269":[3,2,14,4,6], +"group___r_t_c___a_p_i.html#a784a723ee3542eecfa96de492dd511dc":[3,2,14,4,5], +"group___r_t_c___a_p_i.html#a7a6c940847c6f730a5c5df3355dca1eb":[3,2,14,5,10], +"group___r_t_c___a_p_i.html#a7c550dd3aaa641771433b71675a41acf":[3,2,14,2,7], +"group___r_t_c___a_p_i.html#a84d9e4ba135ac56c779ca525660d5c2a":[3,2,14,4,10], +"group___r_t_c___a_p_i.html#a8d5beb93c07f858029d0d77e8e5b770e":[3,2,14,6,2], +"group___r_t_c___a_p_i.html#a99fb3242d7bb1eb482cb436a49c1b18d":[3,2,14,2,3], +"group___r_t_c___a_p_i.html#a9a389b61ac0714083083fd04d9223479":[3,2,14,5,3], +"group___r_t_c___a_p_i.html#aaad6019c8b72db02966fc040676810b4":[3,2,14,5,6], +"group___r_t_c___a_p_i.html#aabad6d91d22b402ad2cbee664bd5c502":[3,2,14,4,4], +"group___r_t_c___a_p_i.html#aafcde8ffb1e01cccbfa0eb9d0506674a":[3,2,14,5,0], +"group___r_t_c___a_p_i.html#ab20077ad52e2ef1a05a206d3cf216662":[3,2,14,2,6], +"group___r_t_c___a_p_i.html#ab654c3b3c410b61980950ddf0581cd27":[3,2,14,2,1], +"group___r_t_c___a_p_i.html#aba0edee87eb628db01fb1fa070a0c144":[3,2,14,3,0], +"group___r_t_c___a_p_i.html#acb6915cb2c55dd196d4c35cbf805bab2":[3,2,14,4,9], +"group___r_t_c___a_p_i.html#acc669b027e055903ca6effb673182925":[3,2,14,6,0], +"group___r_t_c___a_p_i.html#ad37b36597532fc87e610ceeb849cad4d":[3,2,14,0,0], +"group___r_t_c___a_p_i.html#add77caaa41f0376590df0a6312a16053":[3,2,14,4,8], +"group___r_t_c___a_p_i.html#ae1635364719444ad65541ce00953983e":[3,2,14,5,8], +"group___r_t_c___a_p_i.html#ae9bd30168ad8a2932e542beaed85b2e1":[3,2,14,2,8], +"group___r_t_c___a_p_i.html#ae9c6c82e443f75c0ad7ec40b178a3972":[3,2,14,4,2], +"group___r_t_c___a_p_i.html#aef7d57fb6eb6e5e781743071793de36e":[3,2,14,5,4], +"group___r_t_c___a_p_i.html#af0318e2dbaf3a320504823c4cb1f2ce5":[3,2,14,1,1], +"group___r_t_c___a_p_i.html#af39ca95036c2304e17a64a8fac0e1a0b":[3,2,14,6,1], +"group___r_t_c___a_p_i.html#af5b8ce71ff3d65a0f9a556151e6d3b5c":[3,2,14,5,1], +"group___r_t_c___a_p_i.html#ga023e9e2043784cf17e3d3bf056ce14f1":[3,2,14,10], +"group___r_t_c___a_p_i.html#ga324429d0f16e2a72abae17610d776f0e":[3,2,14,8], +"group___r_t_c___a_p_i.html#ga4cbfe07cf288ae153c30b4fef99163e7":[3,2,14,14], +"group___r_t_c___a_p_i.html#ga704067eae956dc872d24edf9b85b397f":[3,2,14,13], +"group___r_t_c___a_p_i.html#gaa9758f6f29579df6e9f5c64ff486c097":[3,2,14,15], +"group___r_t_c___a_p_i.html#gab1079685ed8a9d30f32062b3bfedd041":[3,2,14,12], +"group___r_t_c___a_p_i.html#gacbf0a3d09430a65ca1b3179819183f01":[3,2,14,16], +"group___r_t_c___a_p_i.html#gad2e192ed9a33b6c005c2c19ccbd6a21b":[3,2,14,9], +"group___r_t_c___a_p_i.html#gad8eef26a825fa4a0c5a417f8be08ccc6":[3,2,14,11], +"group___r_t_c___a_p_i.html#gaf7de6d99d4c7fd767ebeaabf873fe56d":[3,2,14,7], +"group___r_t_c___a_p_i.html#gga4cbfe07cf288ae153c30b4fef99163e7a7b90f3b3332c2ba8fffd0921fddf1888":[3,2,14,14,0], +"group___r_t_c___a_p_i.html#gga4cbfe07cf288ae153c30b4fef99163e7ae772455e50f01892e6dffabf509ae66c":[3,2,14,14,1], +"group___r_t_c___a_p_i.html#gga704067eae956dc872d24edf9b85b397fa29f7a1f47e70b2bfc3050aad3459b366":[3,2,14,13,2], +"group___r_t_c___a_p_i.html#gga704067eae956dc872d24edf9b85b397fac08633933a5c2a53ee1031ddd6247335":[3,2,14,13,1], +"group___r_t_c___a_p_i.html#gga704067eae956dc872d24edf9b85b397faf14f20829e9678dd1187c0213e474b39":[3,2,14,13,0], +"group___r_t_c___a_p_i.html#ggaa9758f6f29579df6e9f5c64ff486c097a4c96e106ab367f0a811813e6077c3a8c":[3,2,14,15,0], +"group___r_t_c___a_p_i.html#ggaa9758f6f29579df6e9f5c64ff486c097abb5d066f25aa8878ef57848e7a8a28aa":[3,2,14,15,1], +"group___r_t_c___a_p_i.html#ggaa9758f6f29579df6e9f5c64ff486c097afe53e47d736acd5bd710bc610d1fd8bc":[3,2,14,15,2], +"group___r_t_c___a_p_i.html#ggab1079685ed8a9d30f32062b3bfedd041a1f6935d0b857ca464bac48d0532b9b48":[3,2,14,12,0], +"group___r_t_c___a_p_i.html#ggab1079685ed8a9d30f32062b3bfedd041a894d35c1f934f700232ecd554c95b38d":[3,2,14,12,1], +"group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a19822146d83f4839005318b6ab299074":[3,2,14,16,4], +"group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a202eb83ad25aebbdd9c6cee8def4619b":[3,2,14,16,2], +"group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a2d83137f7be0a550f9e8533090186f17":[3,2,14,16,6], +"group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a2f22d5de616b4249e26741a2d1af200d":[3,2,14,16,0], +"group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a35f83abe856065e723ec538a5e708a6d":[3,2,14,16,8], +"group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a5d684a2ff7ceabe98acb755095705f4e":[3,2,14,16,7], +"group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a61b490784dbe69ffd6740dfd21ba318c":[3,2,14,16,3], +"group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a7d5fa9813737ea5f426a38c26349d244":[3,2,14,16,5], +"group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01ac05b73777b54b84cc0ed8c6ee4013f33":[3,2,14,16,9], +"group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01ac5e572907bd22dee0bcc223b701be0c7":[3,2,14,16,1], +"group___r_t_c___a_p_i.html#ggad2e192ed9a33b6c005c2c19ccbd6a21ba32818d089c15c50d17a13dce861db7d8":[3,2,14,9,2], +"group___r_t_c___a_p_i.html#ggad2e192ed9a33b6c005c2c19ccbd6a21bab2d201ffa3ef8219d41fec7009c5a3d4":[3,2,14,9,0], +"group___r_t_c___a_p_i.html#ggad2e192ed9a33b6c005c2c19ccbd6a21bad269f3ac02b4c6a8cd6b0be90b62ba30":[3,2,14,9,1], +"group___r_t_c___a_p_i.html#ggad8eef26a825fa4a0c5a417f8be08ccc6a7b64e5bbc3adc81add25128016631364":[3,2,14,11,0], +"group___r_t_c___a_p_i.html#ggad8eef26a825fa4a0c5a417f8be08ccc6abd7cdef56193166a8a680504e1f3f5fa":[3,2,14,11,1], +"group___r_t_c___a_p_i.html#structrtc__alarm__time__t":[3,2,14,2], +"group___r_t_c___a_p_i.html#structrtc__api__t":[3,2,14,5], +"group___r_t_c___a_p_i.html#structrtc__callback__args__t":[3,2,14,0], +"group___r_t_c___a_p_i.html#structrtc__cfg__t":[3,2,14,4], +"group___r_t_c___a_p_i.html#structrtc__error__adjustment__cfg__t":[3,2,14,1], +"group___r_t_c___a_p_i.html#structrtc__info__t":[3,2,14,3], +"group___r_t_c___a_p_i.html#structrtc__instance__t":[3,2,14,6], +"group___s_c_i___b___i2_c.html":[3,1,1,14], +"group___s_c_i___b___i2_c.html#a02a85aeaa241753166390cb796c7ead4":[3,1,1,14,0,5], +"group___s_c_i___b___i2_c.html#a076a2fea614be4cba22bc7e9a9e8f2bc":[3,1,1,14,2,0], +"group___s_c_i___b___i2_c.html#a2f29638add1a4e0525c842c79b2806f5":[3,1,1,14,0,4], +"group___s_c_i___b___i2_c.html#a3d3a9e1e75d107d851de3e84c4179161":[3,1,1,14,0,2], +"group___s_c_i___b___i2_c.html#a68f4a0d78c3d47e252f292aa0025b3a9":[3,1,1,14,0,1], +"group___s_c_i___b___i2_c.html#abb1e023e83c78d6f4b07b07e172acfe2":[3,1,1,14,0,6], +"group___s_c_i___b___i2_c.html#ac94d1da59cc2217ab818bd222134d3d5":[3,1,1,14,0,0], +"group___s_c_i___b___i2_c.html#af010e505a82e39cbfbc3e2c0b99ce397":[3,1,1,14,0,3], +"group___s_c_i___b___i2_c.html#ga0209d1279b18f095fb8147fee7933c55":[3,1,1,14,3] +}; diff --git a/navtreeindex13.js b/navtreeindex13.js new file mode 100644 index 0000000..74f222b --- /dev/null +++ b/navtreeindex13.js @@ -0,0 +1,253 @@ +var NAVTREEINDEX13 = +{ +"group___s_c_i___b___i2_c.html#ga0d1ab3b59b204adb64bff01d4c83d10f":[3,1,1,14,6], +"group___s_c_i___b___i2_c.html#ga1d57041c70f924d2968792d59d1b980b":[3,1,1,14,5], +"group___s_c_i___b___i2_c.html#ga286e5448d62d962610e1c7e104eb3fe9":[3,1,1,14,9], +"group___s_c_i___b___i2_c.html#ga677766a68a258bb7a2e97090cff1c03b":[3,1,1,14,11], +"group___s_c_i___b___i2_c.html#gaa214ca399eb4bb9cb198237f608b4767":[3,1,1,14,7], +"group___s_c_i___b___i2_c.html#gaa8c8d381f7c639650bf775c3eec125b9":[3,1,1,14,10], +"group___s_c_i___b___i2_c.html#gadddbf1fa35661d53916faae95db97202":[3,1,1,14,8], +"group___s_c_i___b___i2_c.html#gae457daf3146cc92adfadc471b5bebd27":[3,1,1,14,4], +"group___s_c_i___b___i2_c.html#structsci__b__i2c__clock__settings__t":[3,1,1,14,0], +"group___s_c_i___b___i2_c.html#structsci__b__i2c__extended__cfg__t":[3,1,1,14,2], +"group___s_c_i___b___i2_c.html#structsci__b__i2c__instance__ctrl__t":[3,1,1,14,1], +"group___s_c_i___b___u_a_r_t.html":[3,1,1,15], +"group___s_c_i___b___u_a_r_t.html#a02639fcb8ec9d81d9930ce6e65caef8e":[3,1,1,15,4,8], +"group___s_c_i___b___u_a_r_t.html#a04aa2b43cd4a2879826033bc80c06bff":[3,1,1,15,4,7], +"group___s_c_i___b___u_a_r_t.html#a10b4002e82c8ca1eee90e84e3cdff02d":[3,1,1,15,2,1], +"group___s_c_i___b___u_a_r_t.html#a1a570791ada82c7304bd70fd0431014f":[3,1,1,15,4,5], +"group___s_c_i___b___u_a_r_t.html#a498f325e7dd1865b3e14c1af392ef4c8":[3,1,1,15,4,0], +"group___s_c_i___b___u_a_r_t.html#a4b5314fe6a1f23955d5f340ab5447236":[3,1,1,15,4,6], +"group___s_c_i___b___u_a_r_t.html#a5a3eac41864f40971ab15613ab7741df":[3,1,1,15,3,0], +"group___s_c_i___b___u_a_r_t.html#a989ca4836b86b478612a9c33d5aacb03":[3,1,1,15,4,4], +"group___s_c_i___b___u_a_r_t.html#a99de4af724a14ceba347cb317614cc91":[3,1,1,15,2,0], +"group___s_c_i___b___u_a_r_t.html#aa1e49fb13b37283c189e265be1b67fef":[3,1,1,15,4,3], +"group___s_c_i___b___u_a_r_t.html#add11aada0e4e3d121e4e86597ec0ed58":[3,1,1,15,4,2], +"group___s_c_i___b___u_a_r_t.html#adeab6a6a24f0ccbf45a24fd0185f1e3b":[3,1,1,15,2,3], +"group___s_c_i___b___u_a_r_t.html#ae12a126a40d35e484cb1c89474494b15":[3,1,1,15,4,1], +"group___s_c_i___b___u_a_r_t.html#ae2e7a853b139015cb777e556e9add242":[3,1,1,15,2,2], +"group___s_c_i___b___u_a_r_t.html#ga0563689caceebd791581b050e4961351":[3,1,1,15,11], +"group___s_c_i___b___u_a_r_t.html#ga0fc68d0039faa0c546bc0a3e19f64934":[3,1,1,15,9], +"group___s_c_i___b___u_a_r_t.html#ga12439cb11f88f10d53b36e6fbf966ce6":[3,1,1,15,8], +"group___s_c_i___b___u_a_r_t.html#ga3bcc863f7888e3aaee224f8854988414":[3,1,1,15,12], +"group___s_c_i___b___u_a_r_t.html#ga43307f95dde50ba9e4cf9b25f0d31d84":[3,1,1,15,7], +"group___s_c_i___b___u_a_r_t.html#ga4c327408aaf082057bae8c89127e396c":[3,1,1,15,19], +"group___s_c_i___b___u_a_r_t.html#ga60643fd4c7b00970ad9d295302498f13":[3,1,1,15,13], +"group___s_c_i___b___u_a_r_t.html#ga60ee90741cf1240c127d75acf9df50ed":[3,1,1,15,22], +"group___s_c_i___b___u_a_r_t.html#ga6c7272b892e958ee32afb345eb1d1bd0":[3,1,1,15,5], +"group___s_c_i___b___u_a_r_t.html#ga91e1364f8fd7b00073ccdb72a1bd34e9":[3,1,1,15,18], +"group___s_c_i___b___u_a_r_t.html#gaa0e296b71701a2d0045add3c75d2fdd7":[3,1,1,15,14], +"group___s_c_i___b___u_a_r_t.html#gaafe9521b01cb274f8c8e45a4f62b020f":[3,1,1,15,20], +"group___s_c_i___b___u_a_r_t.html#gabc9e9188d0150ff75f69f3217312691f":[3,1,1,15,21], +"group___s_c_i___b___u_a_r_t.html#gac7f2f9b2d11f95e1f0c627b7523bfa89":[3,1,1,15,6], +"group___s_c_i___b___u_a_r_t.html#gacab2c97394068299908eb68925eb9fc2":[3,1,1,15,10], +"group___s_c_i___b___u_a_r_t.html#gad8456e403e88d52e1e858b62e19a2d0b":[3,1,1,15,15], +"group___s_c_i___b___u_a_r_t.html#gad9ae4780db497c17ae0c1677573f0320":[3,1,1,15,16], +"group___s_c_i___b___u_a_r_t.html#gafe20c9d0e52f1186c60033a5a1910119":[3,1,1,15,17], +"group___s_c_i___b___u_a_r_t.html#gga0563689caceebd791581b050e4961351a18e7bfd946135c6768a8918b7d7dd954":[3,1,1,15,11,1], +"group___s_c_i___b___u_a_r_t.html#gga0563689caceebd791581b050e4961351a86f62195b4aa840c0d10ac01299fe4cd":[3,1,1,15,11,0], +"group___s_c_i___b___u_a_r_t.html#gga0fc68d0039faa0c546bc0a3e19f64934a21e61dfcb71ea33310c7f1aeada055a2":[3,1,1,15,9,0], +"group___s_c_i___b___u_a_r_t.html#gga0fc68d0039faa0c546bc0a3e19f64934a970ad9148c96d1db288edc7a370c20ad":[3,1,1,15,9,1], +"group___s_c_i___b___u_a_r_t.html#gga12439cb11f88f10d53b36e6fbf966ce6a966b25af49006a6c4ddc1979382f8189":[3,1,1,15,8,0], +"group___s_c_i___b___u_a_r_t.html#gga12439cb11f88f10d53b36e6fbf966ce6aa0a9f4e8ad3d8ed3a85359792e082f3a":[3,1,1,15,8,1], +"group___s_c_i___b___u_a_r_t.html#gga3bcc863f7888e3aaee224f8854988414a4e3532db5f60d5a8779e0a5b6f1813f4":[3,1,1,15,12,1], +"group___s_c_i___b___u_a_r_t.html#gga3bcc863f7888e3aaee224f8854988414a637f7cea2b6601327efb3c85365a4dbd":[3,1,1,15,12,0], +"group___s_c_i___b___u_a_r_t.html#gga43307f95dde50ba9e4cf9b25f0d31d84a73839ba4bf30c0e127ba11f0ba4130a2":[3,1,1,15,7,1], +"group___s_c_i___b___u_a_r_t.html#gga43307f95dde50ba9e4cf9b25f0d31d84aa8f1e72bd48f194a0cd82112024850e1":[3,1,1,15,7,0], +"group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0a84f9bc793954950b01385a933f8b588f":[3,1,1,15,5,1], +"group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0acf92ad58648eb51823b24f83fe3831eb":[3,1,1,15,5,2], +"group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0ae6341abde349fd5354d9fccfd3b82448":[3,1,1,15,5,3], +"group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0ae7e751b6add47042b86579de38c7a594":[3,1,1,15,5,0], +"group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89a6336e452a610c15b03b15585894b3bed":[3,1,1,15,6,1], +"group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89a8578df672d3b0f890b958db33d0e25b2":[3,1,1,15,6,0], +"group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89aabd2461e141009a78626768f0ac07583":[3,1,1,15,6,3], +"group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89ab135f56a360b5266eb0988bb59650276":[3,1,1,15,6,2], +"group___s_c_i___b___u_a_r_t.html#ggacab2c97394068299908eb68925eb9fc2add22e1606ec4ab3accaa55c69d8f657a":[3,1,1,15,10,1], +"group___s_c_i___b___u_a_r_t.html#ggacab2c97394068299908eb68925eb9fc2aecd04009e4cd1a48fabc0df33c320e91":[3,1,1,15,10,0], +"group___s_c_i___b___u_a_r_t.html#structsci__b__baud__setting__t":[3,1,1,15,1], +"group___s_c_i___b___u_a_r_t.html#structsci__b__uart__extended__cfg__t":[3,1,1,15,4], +"group___s_c_i___b___u_a_r_t.html#structsci__b__uart__half__data__setting__t":[3,1,1,15,3], +"group___s_c_i___b___u_a_r_t.html#structsci__b__uart__instance__ctrl__t":[3,1,1,15,0], +"group___s_c_i___b___u_a_r_t.html#structsci__b__uart__rs485__setting__t":[3,1,1,15,2], +"group___s_c_i_f___u_a_r_t.html":[3,1,1,16], +"group___s_c_i_f___u_a_r_t.html#a04920b030d567052f3b4efb1f85753e9":[3,1,1,16,3,6], +"group___s_c_i_f___u_a_r_t.html#a0ff4c8c790a3ebefd5cf18b65b5072c2":[3,1,1,16,3,3], +"group___s_c_i_f___u_a_r_t.html#a1067241f2267052cd8240d136c0cba9c":[3,1,1,16,3,5], +"group___s_c_i_f___u_a_r_t.html#a172e0b3047c07502b68ff88471e787ee":[3,1,1,16,3,1], +"group___s_c_i_f___u_a_r_t.html#a17bbc99632889e12269013e35f1dcfba":[3,1,1,16,3,9], +"group___s_c_i_f___u_a_r_t.html#a1c9c1ba263a956a8224a1156d6bc03a1":[3,1,1,16,3,7], +"group___s_c_i_f___u_a_r_t.html#a2e764fad5f11c412720a531a8e1b6815":[3,1,1,16,2,2], +"group___s_c_i_f___u_a_r_t.html#a3fa97958f621b33bee457ec6bc136bed":[3,1,1,16,3,0], +"group___s_c_i_f___u_a_r_t.html#a7ecf6bb47dcdafcd7e569695d0be405b":[3,1,1,16,2,0], +"group___s_c_i_f___u_a_r_t.html#aa593c3c46c8e09dc0d1167b4a52797ee":[3,1,1,16,3,2], +"group___s_c_i_f___u_a_r_t.html#aa761132ebac67c5cbbc3d6a505b97efe":[3,1,1,16,3,8], +"group___s_c_i_f___u_a_r_t.html#aa990e9d3a5b69c41397f92a86a30174d":[3,1,1,16,3,4], +"group___s_c_i_f___u_a_r_t.html#aafcbd1f2c02e2f81d81371bb9e6b895d":[3,1,1,16,2,1], +"group___s_c_i_f___u_a_r_t.html#acbf8ff1fb27039b0240beceeff67d048":[3,1,1,16,1,1], +"group___s_c_i_f___u_a_r_t.html#acc601128ecd5e04fcc306b249a2bb7bf":[3,1,1,16,1,0], +"group___s_c_i_f___u_a_r_t.html#ga023aa56b9ce183733d7933bf750fab6f":[3,1,1,16,6], +"group___s_c_i_f___u_a_r_t.html#ga07a261385112a6909e86c441411e2e53":[3,1,1,16,13], +"group___s_c_i_f___u_a_r_t.html#ga0bd2440ef30f2feca9a2d129989bffce":[3,1,1,16,9], +"group___s_c_i_f___u_a_r_t.html#ga0d573f7ffdec42630a06605b64c00482":[3,1,1,16,17], +"group___s_c_i_f___u_a_r_t.html#ga2a791c5e359c3fe2d85339fc3f915bc3":[3,1,1,16,12], +"group___s_c_i_f___u_a_r_t.html#ga3a8c9e8d2860a4f467aca2ae92675d4c":[3,1,1,16,5], +"group___s_c_i_f___u_a_r_t.html#ga42409976902f41a6c92890ca8d9eb28a":[3,1,1,16,14], +"group___s_c_i_f___u_a_r_t.html#ga540d3842dd9db9c39e36c230583e29b1":[3,1,1,16,18], +"group___s_c_i_f___u_a_r_t.html#ga5d3f2e170b79de59f46ae864fc993e95":[3,1,1,16,10], +"group___s_c_i_f___u_a_r_t.html#ga6880b7cd58a44c99fe197b1b0a14e737":[3,1,1,16,21], +"group___s_c_i_f___u_a_r_t.html#ga6ed81db7a7e6f618870e1479734c5860":[3,1,1,16,15], +"group___s_c_i_f___u_a_r_t.html#ga94601e39cbf40b77e5e4236385b58704":[3,1,1,16,7], +"group___s_c_i_f___u_a_r_t.html#ga9522502f434bcaa2bbaf9cb1321ce542":[3,1,1,16,8], +"group___s_c_i_f___u_a_r_t.html#gaa31fbf8041a381d6da9c454be58ad613":[3,1,1,16,4], +"group___s_c_i_f___u_a_r_t.html#gaaee66fa30e6f9f0efb538ecb91a9ad89":[3,1,1,16,11], +"group___s_c_i_f___u_a_r_t.html#gad29ba19ecddc66108d794c93f9c1165f":[3,1,1,16,19], +"group___s_c_i_f___u_a_r_t.html#gaef7c79f4e4ed3370d27f6cc73d744270":[3,1,1,16,20], +"group___s_c_i_f___u_a_r_t.html#gafc4582fe6a3b46c7e933d709204c01f3":[3,1,1,16,16], +"group___s_c_i_f___u_a_r_t.html#gga023aa56b9ce183733d7933bf750fab6faa7f57854411216312fad5f3d6abb3551":[3,1,1,16,6,1], +"group___s_c_i_f___u_a_r_t.html#gga023aa56b9ce183733d7933bf750fab6fae2a15d92815c84415931688271be5392":[3,1,1,16,6,0], +"group___s_c_i_f___u_a_r_t.html#gga0bd2440ef30f2feca9a2d129989bffcea7cfd9e1ff7eca0657388f7cf9ce708fc":[3,1,1,16,9,0], +"group___s_c_i_f___u_a_r_t.html#gga0bd2440ef30f2feca9a2d129989bffceac1a061d1cb22d6b336e23185af20e089":[3,1,1,16,9,1], +"group___s_c_i_f___u_a_r_t.html#gga3a8c9e8d2860a4f467aca2ae92675d4ca1a384dea42c4cc16ceca1923546709c7":[3,1,1,16,5,0], +"group___s_c_i_f___u_a_r_t.html#gga3a8c9e8d2860a4f467aca2ae92675d4ca749fe7aee711151eef0226933d9a5829":[3,1,1,16,5,2], +"group___s_c_i_f___u_a_r_t.html#gga3a8c9e8d2860a4f467aca2ae92675d4caa7ed834f5731674f7b20ea22c79da715":[3,1,1,16,5,1], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a020affbf40082d7c07ab5fa8a0fe802e":[3,1,1,16,10,16], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a19329bac313a91e73554cf5571941a7e":[3,1,1,16,10,17], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a2488b7b352248b736ad778549ba64f3f":[3,1,1,16,10,14], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a2b6427033846f866ffd254b632b07a9b":[3,1,1,16,10,4], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a479ec5b31c57f9fae8c4d6a7aac71b50":[3,1,1,16,10,11], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a6532d2cfae53c35e93bf72db2e17e954":[3,1,1,16,10,10], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a849bd498e980ed5291b9fade846d748f":[3,1,1,16,10,15], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a8c61ea1a1f8a53bd2ef81a135ce6fb65":[3,1,1,16,10,3], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a8ecbc830c93a7b39eef1409cf89bc98a":[3,1,1,16,10,12], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a94ab8d8849528a45bd87bc014ff2352a":[3,1,1,16,10,7], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ab85d375110c92593e11c02c28acf75a0":[3,1,1,16,10,1], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ac1a24c19641762ce694726ef9da404e1":[3,1,1,16,10,6], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ac644a3e7327d3998cf0e300c6fa38b4e":[3,1,1,16,10,8], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ad8eb49bdf41e9867d8a6d0986b9343a6":[3,1,1,16,10,0], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95adf5efc0954d8d3ee2e132940e8010e16":[3,1,1,16,10,2], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ae66c9b5ef3fc1aac931dd80766cdfe3c":[3,1,1,16,10,18], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ae81d37bcbe15cf0adbee5556a96ce7f3":[3,1,1,16,10,9], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ae9eba978351e7f07759323c1e3d2e3e5":[3,1,1,16,10,13], +"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95af3ba973f1fdbd89fb035e63925eba079":[3,1,1,16,10,5], +"group___s_c_i_f___u_a_r_t.html#gga94601e39cbf40b77e5e4236385b58704ad3f821ad6438fb954b659c75d156d662":[3,1,1,16,7,1], +"group___s_c_i_f___u_a_r_t.html#gga94601e39cbf40b77e5e4236385b58704ad882f64a494b61ff64e551ad3011a5b7":[3,1,1,16,7,0], +"group___s_c_i_f___u_a_r_t.html#gga9522502f434bcaa2bbaf9cb1321ce542aa05bec8fad1420e777b184f55300b484":[3,1,1,16,8,0], +"group___s_c_i_f___u_a_r_t.html#gga9522502f434bcaa2bbaf9cb1321ce542acd3ee665f5225c5bb017bb64d33cf127":[3,1,1,16,8,1], +"group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613a51c6cc623adda130f372f24e12128e4b":[3,1,1,16,4,0], +"group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613a754b82d17863d7a0ff2b782285e9ca5b":[3,1,1,16,4,1], +"group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613a98d63305c87c9cf86a5c6123464723a4":[3,1,1,16,4,2], +"group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613af4a4b829fd6e162e8572760595be226b":[3,1,1,16,4,3], +"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a6568db3143c7183716313ed5b5825713":[3,1,1,16,11,8], +"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a72f3e438f603dd31866ee7002856934a":[3,1,1,16,11,7], +"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a94a36bf05c3529a4eb80aa4386fd1bf3":[3,1,1,16,11,4], +"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a9b2d1ca1de149e8561561ac69573e3de":[3,1,1,16,11,0], +"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ab8da90640e88e64a86e25159a0b8683e":[3,1,1,16,11,1], +"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89abad73882425c2d7ce6934938f6dcaebc":[3,1,1,16,11,3], +"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ad0db387e28a0ed3d63add574f599e026":[3,1,1,16,11,5], +"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ad36001398f868aef10e35c4992f37afb":[3,1,1,16,11,2], +"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89afd80607e5a941b03255635196a53a004":[3,1,1,16,11,6], +"group___s_c_i_f___u_a_r_t.html#structsci__uart__rs485__setting__t":[3,1,1,16,2], +"group___s_c_i_f___u_a_r_t.html#structscif__baud__setting__t":[3,1,1,16,1], +"group___s_c_i_f___u_a_r_t.html#structscif__uart__extended__cfg__t":[3,1,1,16,3], +"group___s_c_i_f___u_a_r_t.html#structscif__uart__instance__ctrl__t":[3,1,1,16,0], +"group___s_p_i___a_p_i.html":[3,2,15], +"group___s_p_i___a_p_i.html#a01c7aacdcdf219dcfa88c2b40e7d25b1":[3,2,15,3,4], +"group___s_p_i___a_p_i.html#a158d5d33a79faa329d9c6d0d02d9bd86":[3,2,15,2,5], +"group___s_p_i___a_p_i.html#a1fdddcdf63a3270438eac756a7f4d6a4":[3,2,15,0,0], +"group___s_p_i___a_p_i.html#a312e4358f12551a3f7aaa5f0a09c0501":[3,2,15,2,14], +"group___s_p_i___a_p_i.html#a330c7d1944ff925e619c40ee4f796b86":[3,2,15,2,0], +"group___s_p_i___a_p_i.html#a3594e8fa704cc11af1fa448fb0e0971b":[3,2,15,2,12], +"group___s_p_i___a_p_i.html#a370e9869ca57c5a81ab7957e90a69f13":[3,2,15,2,6], +"group___s_p_i___a_p_i.html#a38e81bf48ececd7cc34ecf215b923c42":[3,2,15,2,2], +"group___s_p_i___a_p_i.html#a3fa6490704fecf976812df4a6ba9a494":[3,2,15,4,2], +"group___s_p_i___a_p_i.html#a43d0988501f90910690a3357bda1a936":[3,2,15,3,1], +"group___s_p_i___a_p_i.html#a493a388c1b9907a10e54ab57021f5ea4":[3,2,15,2,7], +"group___s_p_i___a_p_i.html#a65879b76a785f6afaf3e295120de9bf2":[3,2,15,2,3], +"group___s_p_i___a_p_i.html#a6a253b9d5669bb4be218a6143db2df13":[3,2,15,2,4], +"group___s_p_i___a_p_i.html#a6ed153d8e5e54e417fda95b044ac2fd6":[3,2,15,3,3], +"group___s_p_i___a_p_i.html#a78b80f52103ccfc52dbc78bffbc832b6":[3,2,15,2,18], +"group___s_p_i___a_p_i.html#a792a14261f15cfbf582d683c16f3da72":[3,2,15,4,1], +"group___s_p_i___a_p_i.html#a91d7ce46956168e975b7c9f5fc738724":[3,2,15,2,13], +"group___s_p_i___a_p_i.html#a97177a6162ebad73907c7f23c1411426":[3,2,15,3,0], +"group___s_p_i___a_p_i.html#aa23ca0243886b64c90aa17744d72aee5":[3,2,15,3,5], +"group___s_p_i___a_p_i.html#ab38fb6af687bdf7e0ea9143499849bc6":[3,2,15,2,15], +"group___s_p_i___a_p_i.html#ab81d9fc86a397dbd72e57bca4b0aa107":[3,2,15,2,9], +"group___s_p_i___a_p_i.html#abd5918ae9720bacf1708e2a2dfed564b":[3,2,15,4,0], +"group___s_p_i___a_p_i.html#ac13df7ba09c4fdff952d8ead0d1b7645":[3,2,15,2,11], +"group___s_p_i___a_p_i.html#ac54861ff0fab10bfb9cd8834c31ad9c0":[3,2,15,2,17], +"group___s_p_i___a_p_i.html#acd490330020cce12382d6ba1b1ad8bbe":[3,2,15,2,1], +"group___s_p_i___a_p_i.html#acdafc89def1a4325004c5f7022e9488f":[3,2,15,0,2], +"group___s_p_i___a_p_i.html#ae1e14270178c91fb89697630627c1eee":[3,2,15,0,1], +"group___s_p_i___a_p_i.html#ae716333870904cc1af1425fae1a8c1e4":[3,2,15,2,10], +"group___s_p_i___a_p_i.html#ae9becc8fedef1f029e6adc788611a276":[3,2,15,2,16], +"group___s_p_i___a_p_i.html#af053cb19a14773a51d1e060c5a624555":[3,2,15,3,2], +"group___s_p_i___a_p_i.html#afc54b2134c7201c559d31d4a9d1ab724":[3,2,15,2,8], +"group___s_p_i___a_p_i.html#ga28c820896d3da6e8173ed07f7ca89cb0":[3,2,15,9], +"group___s_p_i___a_p_i.html#ga6ba4a8eef274a5b227fc2ab6ee61f8fd":[3,2,15,6], +"group___s_p_i___a_p_i.html#ga6e4960e8b344a8a8ec60f0c11d60f54c":[3,2,15,12], +"group___s_p_i___a_p_i.html#ga90f5b39d4872c0c09255af5dcea6cd3e":[3,2,15,11], +"group___s_p_i___a_p_i.html#gac4b206a51636d91c5cffcbcee458c3cb":[3,2,15,7], +"group___s_p_i___a_p_i.html#gacb036be7f805dbb8d2092486d1aeb242":[3,2,15,5], +"group___s_p_i___a_p_i.html#gad24d01aba46c370e11e3f2df7d9b6776":[3,2,15,10], +"group___s_p_i___a_p_i.html#gae514c0ed7b5a86723aa9451d623d35ab":[3,2,15,8], +"group___s_p_i___a_p_i.html#gga28c820896d3da6e8173ed07f7ca89cb0a1901f5e3018e5ab36c30d721854d65a2":[3,2,15,9,0], +"group___s_p_i___a_p_i.html#gga28c820896d3da6e8173ed07f7ca89cb0acb77929e5ac9f1f0fe2adf3aece45958":[3,2,15,9,1], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda05c6f46ea4bb0182d526a6bf451d68e1":[3,2,15,6,11], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda09bb056981764315ea1d3f979f453129":[3,2,15,6,25], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda0b55867d8d019e07982c011e04f1f4ac":[3,2,15,6,26], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda0f15c66b4564dce0f4811d754186ad12":[3,2,15,6,14], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda11d6d5a759ae229607060f7cf6d8102d":[3,2,15,6,24], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda1a4f404e28d648b608c5711b5552090b":[3,2,15,6,8], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda2b1e938b3bb827bcacb1a6d74f4c60f7":[3,2,15,6,18], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda303f3f218214fd2a69e4fc2511974024":[3,2,15,6,19], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda3cca9398fbfe913a5c52cd7359864be6":[3,2,15,6,1], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda5696f5183bed267a4d0023bdc19bb357":[3,2,15,6,20], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda56b072a3333dd1637f9b1488f7fb208b":[3,2,15,6,22], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda62f8d41fec9f532ac41463037534e582":[3,2,15,6,12], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda6a007a4d6a949aeb0ce52aa4f31d3b88":[3,2,15,6,0], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda6d44c4678bc27af2e39a8a22e78e6cf0":[3,2,15,6,21], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda75ce94ca33921b755ff60ae3cf781d2a":[3,2,15,6,9], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda88f58430f3fecf9a39ec42943e0bb733":[3,2,15,6,7], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda8de43c8612ae97eaf447c95718e7f461":[3,2,15,6,10], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda8df31a66c303df4aba56807aae14c4c9":[3,2,15,6,23], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaa0e0e171fd2f36e3fa41cfb960842396":[3,2,15,6,16], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaaf752ab8e386cd474ee33d83df10ad88":[3,2,15,6,13], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdabe79ca891b6f1b7b60317f5425a6b9cf":[3,2,15,6,27], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdad0a9bce1bfca6895716ee32d198f949d":[3,2,15,6,17], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdad6fa8af050db98465c43fd25fb8e8090":[3,2,15,6,4], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdae5193130db6bdfdf9bb780abf606beb1":[3,2,15,6,2], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdae54951e7d79149bda93b99f18ea2e7a0":[3,2,15,6,3], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf0519b353e4cfb4440088212f4aca8cc":[3,2,15,6,5], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf1aefd864f4f60e49990d4fad936ce21":[3,2,15,6,6], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf69633d9ed10c0d07cea1ded1b562aed":[3,2,15,6,28], +"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf8e4023bcac026b1d1930114105da401":[3,2,15,6,15], +"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca0176b7b836076f7cb6eb900e29a61d0b":[3,2,15,12,7], +"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca02af67a21905e378eb464ba80117142c":[3,2,15,12,1], +"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca055c216253298b6af279e64eb542b689":[3,2,15,12,5], +"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca1a718a357bce9eb804a3b3a350ca894c":[3,2,15,12,4], +"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca2b456074a7304b0ac4be1cbe69d6dad1":[3,2,15,12,0], +"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca65e04eb27a5e00a37e1cf2b9a3ed4d32":[3,2,15,12,2], +"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca71a3d6fe1922346e01054bb11993b26a":[3,2,15,12,3], +"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54caeaac307aea3da421c6cc960b146899ce":[3,2,15,12,6], +"group___s_p_i___a_p_i.html#gga90f5b39d4872c0c09255af5dcea6cd3ea2f62df128ff20f3a9632c7f72732491a":[3,2,15,11,0], +"group___s_p_i___a_p_i.html#gga90f5b39d4872c0c09255af5dcea6cd3ea8b9afce8db1ee080e7f9d65aa1aaeae5":[3,2,15,11,1], +"group___s_p_i___a_p_i.html#ggac4b206a51636d91c5cffcbcee458c3cbad1131ed33ad43ab3f667070b04454439":[3,2,15,7,1], +"group___s_p_i___a_p_i.html#ggac4b206a51636d91c5cffcbcee458c3cbae68a8adf6e5b67a7bdbe9526b15dae99":[3,2,15,7,0], +"group___s_p_i___a_p_i.html#ggad24d01aba46c370e11e3f2df7d9b6776a7966b9fbe2b8517dc1dbec4aeb783f7c":[3,2,15,10,0], +"group___s_p_i___a_p_i.html#ggad24d01aba46c370e11e3f2df7d9b6776ada1c119cee344e3a48f8ff33350d707b":[3,2,15,10,1], +"group___s_p_i___a_p_i.html#ggae514c0ed7b5a86723aa9451d623d35aba52bdac64004112bc083e6dbcc4f5d9b7":[3,2,15,8,0], +"group___s_p_i___a_p_i.html#ggae514c0ed7b5a86723aa9451d623d35aba6a695897644ab53c608247fd67209e82":[3,2,15,8,1], +"group___s_p_i___a_p_i.html#structspi__api__t":[3,2,15,3], +"group___s_p_i___a_p_i.html#structspi__callback__args__t":[3,2,15,0], +"group___s_p_i___a_p_i.html#structspi__cfg__t":[3,2,15,2], +"group___s_p_i___a_p_i.html#structspi__instance__t":[3,2,15,4], +"group___s_p_i___a_p_i.html#structspi__write__read__guard__args__t":[3,2,15,1], +"group___s_p_i___b.html":[3,1,1,17], +"group___s_p_i___b.html#a01bfd62b304e044b1cecefb0310c7823":[3,1,1,17,2,5], +"group___s_p_i___b.html#a0688f8d078659fb2901ffe44d64d3045":[3,1,1,17,2,4], +"group___s_p_i___b.html#a11eb6d582a56acdabafd9c6d50ce18d6":[3,1,1,17,2,6], +"group___s_p_i___b.html#a2ce9db0edb9ad0167232b35d5bc714dc":[3,1,1,17,2,8], +"group___s_p_i___b.html#a399719eab6e46125db42de61d7fffe9d":[3,1,1,17,1,0], +"group___s_p_i___b.html#a4d55d0c12d644e533249a943486a9b17":[3,1,1,17,2,1], +"group___s_p_i___b.html#a5bc3997ed557ba51b18f3e7118601381":[3,1,1,17,1,2] +}; diff --git a/navtreeindex14.js b/navtreeindex14.js new file mode 100644 index 0000000..9eec81b --- /dev/null +++ b/navtreeindex14.js @@ -0,0 +1,253 @@ +var NAVTREEINDEX14 = +{ +"group___s_p_i___b.html#a5e759f1a2e0e50733ffe773b84e009b0":[3,1,1,17,1,8], +"group___s_p_i___b.html#a63826f2e79dbe1834c3d99084558f71f":[3,1,1,17,2,0], +"group___s_p_i___b.html#a67df9d0b11ff15890c138596faaa6c03":[3,1,1,17,0,0], +"group___s_p_i___b.html#a6bc3a03629a2f20e5b468f6ca7f54697":[3,1,1,17,0,1], +"group___s_p_i___b.html#a73e08678d0e9902c81c88b6f6ca19c02":[3,1,1,17,2,2], +"group___s_p_i___b.html#a7e337db8e24ef889f9a1ccfec9d5a9e9":[3,1,1,17,1,1], +"group___s_p_i___b.html#a7f95eeca760420ef6d71e453f43e7154":[3,1,1,17,2,3], +"group___s_p_i___b.html#a8ca3851c76d9a5c02dd07e24309660ff":[3,1,1,17,1,12], +"group___s_p_i___b.html#a91917729fb266000e5c493d9a4021c43":[3,1,1,17,1,11], +"group___s_p_i___b.html#a992f7cfe75bd98e8fe2c9120d0c7b26b":[3,1,1,17,2,7], +"group___s_p_i___b.html#aa76a96bdfe3843e023c076e906cdedbb":[3,1,1,17,1,9], +"group___s_p_i___b.html#ab0743a388a256b112510805f0d0b3ac7":[3,1,1,17,1,3], +"group___s_p_i___b.html#ac63d012fd878d53e0f390837e604ca2f":[3,1,1,17,1,4], +"group___s_p_i___b.html#ad0e864b3954e9abc6b864bb20c56b146":[3,1,1,17,1,10], +"group___s_p_i___b.html#af621a3a18d5499079a962d880cded254":[3,1,1,17,1,6], +"group___s_p_i___b.html#af6ddf830c6529dbf66c75a231242faa1":[3,1,1,17,1,7], +"group___s_p_i___b.html#af73d771092b53a6fe3556e39064ba38e":[3,1,1,17,1,5], +"group___s_p_i___b.html#ga2adf0b091362e84b71f1bd3a1d821f40":[3,1,1,17,15], +"group___s_p_i___b.html#ga355039269814474fa2d7a016207df18e":[3,1,1,17,10], +"group___s_p_i___b.html#ga3d063bb158a1005df5c7bde81538b373":[3,1,1,17,6], +"group___s_p_i___b.html#ga4312b8a1c4aee284f3007621403a0b6d":[3,1,1,17,18], +"group___s_p_i___b.html#ga44658a0ea656e093e0eac61186aef274":[3,1,1,17,16], +"group___s_p_i___b.html#ga500334da91202c65f50e5ba4cef38dcf":[3,1,1,17,8], +"group___s_p_i___b.html#ga566538943bf7a87f8ba8add6616d41db":[3,1,1,17,7], +"group___s_p_i___b.html#ga588348788f8ed3f933befc5a1cbe9b90":[3,1,1,17,19], +"group___s_p_i___b.html#ga8232020978a99300962810b2e9f9dc86":[3,1,1,17,12], +"group___s_p_i___b.html#ga8e700b9cda9c467dde6090fb4c4a6969":[3,1,1,17,17], +"group___s_p_i___b.html#gaaaaa1d37089a7f8d222de49d8295c116":[3,1,1,17,5], +"group___s_p_i___b.html#gaacc78eca6792fd5aeb2aef6a458d8fb7":[3,1,1,17,3], +"group___s_p_i___b.html#gab338db9c94dc09edc2ceddf87904845d":[3,1,1,17,13], +"group___s_p_i___b.html#gabb41b27e51f28d09548219c18435346b":[3,1,1,17,11], +"group___s_p_i___b.html#gabcc557f95c75b12b462962f6c709e229":[3,1,1,17,14], +"group___s_p_i___b.html#gac08d1276c78868e2844221679e6be657":[3,1,1,17,9], +"group___s_p_i___b.html#gae6d270a0823aeddcacb4a5006546e391":[3,1,1,17,4], +"group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea273da42218915f084f5167cf6d0605b8":[3,1,1,17,10,3], +"group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea49b6fe18afd4d62f4aea24c3fdac48d2":[3,1,1,17,10,1], +"group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea4e646f9d36c3b20d6cb0974e7741e3f5":[3,1,1,17,10,2], +"group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea54a1d1391831fd7afe9fa1839370665d":[3,1,1,17,10,7], +"group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea679f5372399b3a86e5ba849f4db0504b":[3,1,1,17,10,5], +"group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea731a04cd52441636e5caaebaae3ea515":[3,1,1,17,10,0], +"group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea76b1672b4ffcee90924aa69e2faa407d":[3,1,1,17,10,4], +"group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea93cd345b5c636461c54b93905fd35ba9":[3,1,1,17,10,6], +"group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373a881b605b37191ce8363c1e34bae1bc23":[3,1,1,17,6,1], +"group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373a9c1720bf8ab08c5ba6f54fabaa2030f3":[3,1,1,17,6,3], +"group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373ad96087ca4208105609349dab7e3b2cc4":[3,1,1,17,6,0], +"group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373aeb71783e644812cc42d83f59780ac8e4":[3,1,1,17,6,2], +"group___s_p_i___b.html#gga500334da91202c65f50e5ba4cef38dcfa7e2ae6f701908c5a9e8c2e791c985222":[3,1,1,17,8,1], +"group___s_p_i___b.html#gga500334da91202c65f50e5ba4cef38dcfa9a6b54da3fd6b5d0621e95e431582fde":[3,1,1,17,8,0], +"group___s_p_i___b.html#gga500334da91202c65f50e5ba4cef38dcfa9ce206b45bd35f5038a68ffc58573bdb":[3,1,1,17,8,2], +"group___s_p_i___b.html#gga566538943bf7a87f8ba8add6616d41dba34d640ed44fb4472192b408225814c8e":[3,1,1,17,7,2], +"group___s_p_i___b.html#gga566538943bf7a87f8ba8add6616d41dba84ed2b07cb18a4e99da47e9d579d7186":[3,1,1,17,7,0], +"group___s_p_i___b.html#gga566538943bf7a87f8ba8add6616d41dbadcee5907d986759f1f6d761c093bda65":[3,1,1,17,7,1], +"group___s_p_i___b.html#gga8232020978a99300962810b2e9f9dc86a74c4d474dc8844704917781a861159aa":[3,1,1,17,12,0], +"group___s_p_i___b.html#gga8232020978a99300962810b2e9f9dc86af7408a6172952573cc49aae43aff1a43":[3,1,1,17,12,1], +"group___s_p_i___b.html#ggaaaaa1d37089a7f8d222de49d8295c116a17d87ee36cef5eb5820a80a88de4138b":[3,1,1,17,5,0], +"group___s_p_i___b.html#ggaaaaa1d37089a7f8d222de49d8295c116ace10a6e8df5d3a4140ac10cd1a0b293d":[3,1,1,17,5,1], +"group___s_p_i___b.html#ggaacc78eca6792fd5aeb2aef6a458d8fb7a0cad981405018e399b84bce877574709":[3,1,1,17,3,0], +"group___s_p_i___b.html#ggaacc78eca6792fd5aeb2aef6a458d8fb7a7f839e42cba15c37a4698c894630739b":[3,1,1,17,3,1], +"group___s_p_i___b.html#ggac08d1276c78868e2844221679e6be657a6d5c072358543e275822669ab01f3cce":[3,1,1,17,9,0], +"group___s_p_i___b.html#ggac08d1276c78868e2844221679e6be657ac9e89947b2b88db4111a3338b6a0213d":[3,1,1,17,9,1], +"group___s_p_i___b.html#ggae6d270a0823aeddcacb4a5006546e391ae3954204fe4e76df8af7fcf26786f861":[3,1,1,17,4,0], +"group___s_p_i___b.html#ggae6d270a0823aeddcacb4a5006546e391af257ec37578d4668398933881df14b13":[3,1,1,17,4,1], +"group___s_p_i___b.html#structrspck__div__setting__t":[3,1,1,17,0], +"group___s_p_i___b.html#structspi__b__extended__cfg__t":[3,1,1,17,1], +"group___s_p_i___b.html#structspi__b__instance__ctrl__t":[3,1,1,17,2], +"group___s_p_i___f_l_a_s_h___a_p_i.html":[3,2,16], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a0f241a48dd8f386e19a6e0fe44e8a2d9":[3,2,16,4,6], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a14581133205383b71df54a65439c0dcf":[3,2,16,4,10], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a16810f14e3fff6ed04f36eca44353785":[3,2,16,4,12], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a1eea2761178ddd8ca7ef3aacd5c80507":[3,2,16,4,7], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a21da248768dd75281ea7b29f2d243afd":[3,2,16,4,3], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a24bbe669d6ca4a02fe6d806d321a044c":[3,2,16,2,14], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a27e2c004e2548fea4eca6793027b9d25":[3,2,16,2,10], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a27f37ac5d1f031fd33f3b2ff5b914751":[3,2,16,0,0], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a315a0b4fc25c20262fdbf762c389c109":[3,2,16,2,13], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a31a1d575f3d8876154d4e217caebf110":[3,2,16,4,1], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a3328711e7e70c8379f4373d2861d785a":[3,2,16,4,4], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a3366fdcb333cb6950ff38bb35618c401":[3,2,16,4,2], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a3a7c2aae058a733f879ae294c63ce2c6":[3,2,16,4,9], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a40a6269760d8c4aaf75bf84613d1f551":[3,2,16,2,1], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a5120cdb55dcd4ce8da04eb8baa69254d":[3,2,16,1,0], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a521505cf1d98e638aef0e72ca5eb6463":[3,2,16,1,4], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a52ae9ed9880e98f7a02107c2b31b673b":[3,2,16,1,1], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a59655a41dc087373e0a03d23a99f301a":[3,2,16,2,15], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a5e3c48eb88187944722f745231f955f3":[3,2,16,1,6], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a61e667a9ae9af76c5f8fd9f1973c6838":[3,2,16,4,5], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a63de64208374fd3c6ea1db4ffb07111f":[3,2,16,1,5], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a6b2d213cfd3ca4a9a0f1c3dfd11414ec":[3,2,16,2,3], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a6b8a1ae0eed7bca555c94959c1314ae3":[3,2,16,4,0], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a6db8c831a8c3ef08a0f511c7229a503e":[3,2,16,2,6], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a6f3cdf4d6de603634118801dcb54a6d5":[3,2,16,2,0], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a72bf5b8dca157ef7a4a2c66b12c945e9":[3,2,16,2,5], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a74f26946c33e77fda5b6e2d26b2c9fee":[3,2,16,5,1], +"group___s_p_i___f_l_a_s_h___a_p_i.html#a7c61a9a4dbc8bb415233c42cfdc34d6d":[3,2,16,2,11], +"group___s_p_i___f_l_a_s_h___a_p_i.html#aa393a0e23c69a916e8c30e9dc4e5513b":[3,2,16,5,2], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ab20fca5fa35e25becd87abc7539a4246":[3,2,16,1,2], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ab5c6cc5c82e73038ddcef82a906b966f":[3,2,16,4,8], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ab612f8046209bbb2b29e5d3eee98831f":[3,2,16,2,4], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ab7cca7ee8e821effe8d7e8902e6a7514":[3,2,16,5,0], +"group___s_p_i___f_l_a_s_h___a_p_i.html#abfd1deab895e3f8c8f38a51d74c79b17":[3,2,16,2,7], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ac9e56afeabf97f6a1642b7468a67cf25":[3,2,16,2,2], +"group___s_p_i___f_l_a_s_h___a_p_i.html#accd8433fbfc03e8a8bdb209c583c6ce9":[3,2,16,2,12], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ad04434e2c049da61d3389355d5961f31":[3,2,16,4,11], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ad2403240c3b40bb518d0623283712248":[3,2,16,2,16], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ad4a653cf90fd97dc9d0a5f8fce3c3795":[3,2,16,1,3], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ad630dd9c52ab12c077c5b27485b46017":[3,2,16,2,8], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ae20d4bed523ca4e802f5da6fdec4ca43":[3,2,16,3,0], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ae5c4c2c2b0cebe9a54e530cbc2554b6e":[3,2,16,2,9], +"group___s_p_i___f_l_a_s_h___a_p_i.html#afb42b93f396ec30b863646150e9bb91d":[3,2,16,0,1], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ga0f14c8b55d2948c30b99ab157e16488f":[3,2,16,6], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ga17c347a498a8a9d38ffc36c0de49a535":[3,2,16,8], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ga289ef915326b8e75e7d0dd331c2d0797":[3,2,16,9], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ga80ecf65e658f5b36bfe0bf2d88dd3ca5":[3,2,16,12], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gaa1e03cbf0d565f4ae7ad2e41d85802fe":[3,2,16,11], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gaae5c8f99b61e37b40b13f52e146f0bc5":[3,2,16,10], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gae289e2a797dab4712dfc07986f6a3544":[3,2,16,7], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a1b7d1595891e2e14a3dc9e718b5188c3":[3,2,16,8,0], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a21ac68039ffa6d214173ada7fe558a05":[3,2,16,8,10], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a3066069aa9be28b050e57faa29cf5be5":[3,2,16,8,4], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a54c52d62f8a1e16099da8ab9a203a1be":[3,2,16,8,5], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a668b4a0330a7e2de10b77f25fbea4567":[3,2,16,8,8], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a6d421df12293ebbae4fa97b4cf152081":[3,2,16,8,7], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535aa8b956dd00ae8afcb2e4497fb1b9ab58":[3,2,16,8,2], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535abf7718fe53c0e4daa1dcad6f4d6d215e":[3,2,16,8,1], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535acd8ffe88180ff5b8288dee7739e581a8":[3,2,16,8,9], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535acf8fc61585bd2209fc3953d8d2eb4606":[3,2,16,8,6], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535afd83f451b4164b209b240ebb0f4bb158":[3,2,16,8,3], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga289ef915326b8e75e7d0dd331c2d0797a186abc2724fdf1c4fac86d0d83cb5303":[3,2,16,9,1], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga289ef915326b8e75e7d0dd331c2d0797ab4c7c4e57259098044562889ba84709f":[3,2,16,9,0], +"group___s_p_i___f_l_a_s_h___a_p_i.html#gga289ef915326b8e75e7d0dd331c2d0797aed752a37fe0a5f0b6dfb6781d67319bb":[3,2,16,9,2], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea047f2b71267ffaee5a6912d58854302b":[3,2,16,11,30], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea1db4bf767cc8df4e417a13151bf2ef91":[3,2,16,11,11], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea245eb3e209ead164289e776f8a1c3db5":[3,2,16,11,22], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea27f73312dc3edb2114956dd060693c96":[3,2,16,11,23], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea32e0c7ab537261464e48be07bda963f0":[3,2,16,11,19], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea3490679f14cbe6dca290459020f75c71":[3,2,16,11,20], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea34ec51de93041c3710730907347e29ce":[3,2,16,11,17], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea36b30b484ac7ba6d951f42664c17bccc":[3,2,16,11,25], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea59162e7f319c830647330780799e12d4":[3,2,16,11,8], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea5a76c99649b40742470d90e7b0c8c474":[3,2,16,11,5], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea5c661aa719d0f2846d0a4a3bea4e3f37":[3,2,16,11,15], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea6cf608f95e25bdbde4af0fd0caa0844e":[3,2,16,11,26], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea76793d9f869335cb3f6c46c30539d6a9":[3,2,16,11,29], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea801c037b43cbd06e07774303a64b0e7e":[3,2,16,11,6], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea85dec8f02ca9a503cc9d554131c51f92":[3,2,16,11,9], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea941cef4707042e59f64a679053c9d097":[3,2,16,11,7], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea94649b553a8dfb3df7d2dfcf5964c099":[3,2,16,11,13], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea95bef5ad77102b394b5ca8bd38bb73be":[3,2,16,11,4], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feab4afe95b4c411fbe7b17252fce3e9776":[3,2,16,11,16], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feab4dcd627f0f4766d0e7fbf76a2160a98":[3,2,16,11,2], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feab7bb5a56f34654e4d07779b33ed62c4e":[3,2,16,11,10], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feabaf62da3a1a577e312e0b0be000770cc":[3,2,16,11,24], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feabf7dd140ea6e3b47246e8dd6c2b812bc":[3,2,16,11,27], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feac6f24dbd14abddeb713c6d3b349a2586":[3,2,16,11,12], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feaca19d746031e96849279c7f9c9365f73":[3,2,16,11,3], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feaccd9eab44effb89164d68dc55c73e10f":[3,2,16,11,18], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feacf3e6ceb051173c3017ce7c715c96c77":[3,2,16,11,28], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fead65e7e0db08823212d8aca1feaae5279":[3,2,16,11,21], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fead706a5a9ba8b806ffeb13adc5979823b":[3,2,16,11,14], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feaed09e7b9b5d0d7b7be12e3677eba59a1":[3,2,16,11,0], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feafaa464bb01a99230e64495288b7592c1":[3,2,16,11,31], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feafac1c75f76f2f0a4027b1544fecb48b4":[3,2,16,11,1], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaae5c8f99b61e37b40b13f52e146f0bc5a724520599856ece833bddc89d146d68e":[3,2,16,10,0], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaae5c8f99b61e37b40b13f52e146f0bc5a78b1e4dfcdf7632ea626d7c1d74dd317":[3,2,16,10,2], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggaae5c8f99b61e37b40b13f52e146f0bc5add8eaf5b2c9b3749d5425cc8596aa564":[3,2,16,10,1], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544a912b5c3ede07dc88c2241c7abb92fb52":[3,2,16,7,0], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544aa0d4e30b32b497827cf2924036320193":[3,2,16,7,2], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544abbf688966c22416d5835ad02cc322187":[3,2,16,7,4], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544adba367ad1ab093f75047ed401e8c7cd1":[3,2,16,7,5], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544af6d14d59f1598cf51a11f1629bf2be6c":[3,2,16,7,3], +"group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544afb88c529acf619eb6e3d0ffb752f8386":[3,2,16,7,1], +"group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__api__t":[3,2,16,4], +"group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__cfg__t":[3,2,16,2], +"group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__direct__transfer__t":[3,2,16,1], +"group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__erase__command__t":[3,2,16,0], +"group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__instance__t":[3,2,16,5], +"group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__status__t":[3,2,16,3], +"group___t_i_m_e_r___a_p_i.html":[3,2,17], +"group___t_i_m_e_r___a_p_i.html#a07302c8caf4d9b811e7350a96615d98d":[3,2,17,3,5], +"group___t_i_m_e_r___a_p_i.html#a08b897cfbf2d0cefafe8d3abb1afc747":[3,2,17,1,2], +"group___t_i_m_e_r___a_p_i.html#a11321e8dde7c33a4e6835a1bf64f7689":[3,2,17,4,9], +"group___t_i_m_e_r___a_p_i.html#a13cb48d1657a9eda3380c111ba33aa2a":[3,2,17,4,4], +"group___t_i_m_e_r___a_p_i.html#a1b2c51a519145c2482ca2fb6b4b3d749":[3,2,17,4,10], +"group___t_i_m_e_r___a_p_i.html#a30a4d58bdfa5834a17d497c7f3906c75":[3,2,17,3,9], +"group___t_i_m_e_r___a_p_i.html#a37fb0f08b16d9e2408909c4f2cc7acbb":[3,2,17,3,6], +"group___t_i_m_e_r___a_p_i.html#a552ef9466567fbe3c7c945e1efe3643c":[3,2,17,5,2], +"group___t_i_m_e_r___a_p_i.html#a592d3bb6a865ababe1c433ab7b83aa48":[3,2,17,3,2], +"group___t_i_m_e_r___a_p_i.html#a61b9aabfcafc5e362dce56af7ea36bcf":[3,2,17,0,1], +"group___t_i_m_e_r___a_p_i.html#a641f967b15711f0e91bc0f41fc8ebfe6":[3,2,17,5,0], +"group___t_i_m_e_r___a_p_i.html#a7d2f434f07723a53b504751e9e5ac540":[3,2,17,3,7], +"group___t_i_m_e_r___a_p_i.html#a819ed0740ca426ace0d6b67e16c6ddfc":[3,2,17,4,7], +"group___t_i_m_e_r___a_p_i.html#a83bdbe351fc323e334f96bbf41420a07":[3,2,17,0,0], +"group___t_i_m_e_r___a_p_i.html#a85205f345201aaf1d25b5ee1257f8345":[3,2,17,1,1], +"group___t_i_m_e_r___a_p_i.html#a8abd12cdf1a993cf8054be6ba9d96a6f":[3,2,17,0,2], +"group___t_i_m_e_r___a_p_i.html#a8b69fad02aee5d83b941ed02fca18aca":[3,2,17,4,5], +"group___t_i_m_e_r___a_p_i.html#a9519afc7ea8aec3aaf1eb787b39cc97c":[3,2,17,3,0], +"group___t_i_m_e_r___a_p_i.html#a952d4e8952d0cc32bad22546064a8c44":[3,2,17,2,1], +"group___t_i_m_e_r___a_p_i.html#a9da65b46c59a0543ec977f634bb0265d":[3,2,17,3,3], +"group___t_i_m_e_r___a_p_i.html#a9e8b8140010a28082aedd758390fac97":[3,2,17,4,11], +"group___t_i_m_e_r___a_p_i.html#aa892b6997a1972de6a6ebd48e0fb9233":[3,2,17,3,1], +"group___t_i_m_e_r___a_p_i.html#aa98df70bd7724ce80c42c0f4c263ef59":[3,2,17,3,4], +"group___t_i_m_e_r___a_p_i.html#ab1c62157861ef1ea8393bb3cafd72102":[3,2,17,4,3], +"group___t_i_m_e_r___a_p_i.html#ab3892976d7757fae081e19023e155006":[3,2,17,2,0], +"group___t_i_m_e_r___a_p_i.html#ad6aac1202b591958b40f1bc018abd387":[3,2,17,3,8], +"group___t_i_m_e_r___a_p_i.html#ae9aad84a01ccd7ce0039ed491faeff19":[3,2,17,4,6], +"group___t_i_m_e_r___a_p_i.html#aeaea79f26305c493566e4b45ae9e294c":[3,2,17,4,8], +"group___t_i_m_e_r___a_p_i.html#aebe4bd4819b5d24a8d4fa847359b6afa":[3,2,17,5,1], +"group___t_i_m_e_r___a_p_i.html#aed0139dbf5102e39719ddbc51f16a21e":[3,2,17,4,2], +"group___t_i_m_e_r___a_p_i.html#af333f19bba6c3962a91fe3beb90482a8":[3,2,17,1,0], +"group___t_i_m_e_r___a_p_i.html#af49a90087a53c8019d642a3f7abaa8ad":[3,2,17,4,0], +"group___t_i_m_e_r___a_p_i.html#afcc7e85d01c3d7dc0c6e09954631f47f":[3,2,17,4,1], +"group___t_i_m_e_r___a_p_i.html#ga1360292eee5d5a5288646fd1eb37c83e":[3,2,17,9], +"group___t_i_m_e_r___a_p_i.html#ga2da99b474151cb687d5882ad21b09c2a":[3,2,17,6], +"group___t_i_m_e_r___a_p_i.html#ga6d4cd64aed5c0009ac26803efc9c13b2":[3,2,17,10], +"group___t_i_m_e_r___a_p_i.html#ga820b425b44d7b551afd1797ecca7a5ad":[3,2,17,12], +"group___t_i_m_e_r___a_p_i.html#ga8d600bb7885c5490bb7e8f989aa2ff83":[3,2,17,11], +"group___t_i_m_e_r___a_p_i.html#gaa3525eef2e1fa1bc8809b2d3aaf0de5d":[3,2,17,8], +"group___t_i_m_e_r___a_p_i.html#gac3bee51f7c9078f794c5ac19522f91eb":[3,2,17,7], +"group___t_i_m_e_r___a_p_i.html#gga1360292eee5d5a5288646fd1eb37c83ea92e859c83369128798902fd7a86a3320":[3,2,17,9,0], +"group___t_i_m_e_r___a_p_i.html#gga1360292eee5d5a5288646fd1eb37c83eaba4825c92c8291b64e827943330007b7":[3,2,17,9,1], +"group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a140f07675d67258a7ca9a95a9a793e3a":[3,2,17,10,1], +"group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a204001ad413e9ad0db08a66d004a555a":[3,2,17,10,5], +"group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a6a3c462f9e9cc1b26ab68f38efd79b14":[3,2,17,10,4], +"group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a78838cf8d728f8c64bb8012d522d1e2e":[3,2,17,10,0], +"group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2aa2eb9fa5372856039d5d53dfbbbe6040":[3,2,17,10,6], +"group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2aca44e952a6930f39ac05393522392eac":[3,2,17,10,2], +"group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2afe99f13968cabc479896dfd0bc67fb6a":[3,2,17,10,3], +"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada1cc7525fed9c5374c3a530e17453e670":[3,2,17,12,6], +"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada2bcc6bb5346907da7e45b74449588132":[3,2,17,12,9], +"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada387f7122153dd7d860762a6f73485fb8":[3,2,17,12,0], +"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada6680e947eb6455f9d0ee007645ea707d":[3,2,17,12,8], +"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada6cf9f5fb4095fd15027e6d06a811a3f5":[3,2,17,12,2], +"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada8828520a3958955a4e2835785787c801":[3,2,17,12,7], +"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adaa2da1d2d669ae1f3baf715e96a803be3":[3,2,17,12,3], +"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adacccb03dab14c93d036cdff662b1686a1":[3,2,17,12,5], +"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adae36be19b8ae1b3b3918e39c738e62c82":[3,2,17,12,4], +"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adaee99148dc7c32f0764c7cb3b3e45ca30":[3,2,17,12,10], +"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adafa4194764952e26c833bdaa26587f245":[3,2,17,12,1], +"group___t_i_m_e_r___a_p_i.html#gga8d600bb7885c5490bb7e8f989aa2ff83a6a5c25392297a9e6adcc2a31d210e654":[3,2,17,11,0], +"group___t_i_m_e_r___a_p_i.html#gga8d600bb7885c5490bb7e8f989aa2ff83aa6e92d4dfd3483ec2ca281fae716c3db":[3,2,17,11,1], +"group___t_i_m_e_r___a_p_i.html#ggaa3525eef2e1fa1bc8809b2d3aaf0de5da7dddd2791567467dc7bcf74ca2fc2cbb":[3,2,17,8,0], +"group___t_i_m_e_r___a_p_i.html#ggaa3525eef2e1fa1bc8809b2d3aaf0de5dab2eba551f1a7140323af63a66a137b49":[3,2,17,8,1], +"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba1618c4f47f889499fe72ef5a3c2cf4eb":[3,2,17,7,6], +"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba25cd94f46448cd5938f32c6a25438091":[3,2,17,7,9], +"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba4bc1252f63147f4a01f7b7ba88afac1d":[3,2,17,7,2], +"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba58d231c0801a39b29b761e77dbdae2cf":[3,2,17,7,10], +"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba5935edbb3d0b6d8b6f74a8402e758adf":[3,2,17,7,5], +"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba73d4afde72c0b28a768c8e6d25c050f8":[3,2,17,7,1], +"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba83346d837d9c89b9b1bed8c9a0078660":[3,2,17,7,7], +"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba83cb2de8ac629fcd95525e94b94089f0":[3,2,17,7,4] +}; diff --git a/navtreeindex15.js b/navtreeindex15.js new file mode 100644 index 0000000..d9fe4cd --- /dev/null +++ b/navtreeindex15.js @@ -0,0 +1,253 @@ +var NAVTREEINDEX15 = +{ +"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebab7b635fbf34ede5a3e2f55b5a60ac21b":[3,2,17,7,3], +"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebadc420bfc9860b5d461f10e557f9bb043":[3,2,17,7,8], +"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebae310bef0d640f06765c01b4b91a5b84c":[3,2,17,7,0], +"group___t_i_m_e_r___a_p_i.html#structtimer__api__t":[3,2,17,4], +"group___t_i_m_e_r___a_p_i.html#structtimer__callback__args__t":[3,2,17,0], +"group___t_i_m_e_r___a_p_i.html#structtimer__cfg__t":[3,2,17,3], +"group___t_i_m_e_r___a_p_i.html#structtimer__info__t":[3,2,17,1], +"group___t_i_m_e_r___a_p_i.html#structtimer__instance__t":[3,2,17,5], +"group___t_i_m_e_r___a_p_i.html#structtimer__status__t":[3,2,17,2], +"group___t_r_a_n_s_f_e_r___a_p_i.html":[3,2,18], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a023152eeec3dda49c43b0a5576b07881":[3,2,18,1,9], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a07ff7ab703d6c6e5f3e2fdeabce7519a":[3,2,18,1,10], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a12d4ba0d43dd22fda6b1b238d2fa17b6":[3,2,18,4,2], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a197ef7d84898829f988dca88fc9e481c":[3,2,18,1,0], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a1a73c1297d04667da6b2103db34f88ad":[3,2,18,1,5], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a1e38b8ef4e4fa3e59efb257102e72b72":[3,2,18,3,1], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a3188207ba386da0ec85946e134b4327a":[3,2,18,3,4], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a354b4d97746d9393110fc679d466ad99":[3,2,18,1,8], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a394ddea028013153254bafa12115dce2":[3,2,18,3,5], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a3af1d98295baf9bd92251f55c95f8868":[3,2,18,3,9], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a5aba602d71a6ba4e6be056a90b5ed9e8":[3,2,18,1,7], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a5aba602d71a6ba4e6be056a90b5ed9e8":[3,2,18,1,3], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a655547e7bbc2c8be77ac085f3417a389":[3,2,18,4,0], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a77207de2ae81eab58858fd28ae88df06":[3,2,18,3,6], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a7dcf4353ecf5e5df7024e1a3d5db7c09":[3,2,18,2,1], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a7fd4d96709c77a309492d13fd43fd048":[3,2,18,3,3], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a84d48960cdfe867ef54fd4635a85ceeb":[3,2,18,3,0], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a8ffd253e9be22795d2736d6dc683d710":[3,2,18,4,1], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a9781e58bb7cb2ee40de446936d523814":[3,2,18,1,2], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a9c096c8d0e78dfbf8b3809a4598b8619":[3,2,18,3,2], +"group___t_r_a_n_s_f_e_r___a_p_i.html#a9e39c449b5d1f8a957b833833c7da06b":[3,2,18,1,4], +"group___t_r_a_n_s_f_e_r___a_p_i.html#aaa2d7970aa8501e9d3929c7bdf05d357":[3,2,18,0,1], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ab480a287279e160d73f60173605485ca":[3,2,18,0,0], +"group___t_r_a_n_s_f_e_r___a_p_i.html#acc20817272cf1db573a1dbc54a9cb3bf":[3,2,18,1,1], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ad18824ffdf72b5e6a0c588289620fc84":[3,2,18,3,7], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ade5973e7a8e994f9146e0db84bee8bf4":[3,2,18,3,8], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ae3cc32eab1926d03875e2c9fa4e6190b":[3,2,18,1,6], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ae8ae839a9fa2fea09d9390e11b2edd9c":[3,2,18,0,2], +"group___t_r_a_n_s_f_e_r___a_p_i.html#af99b114594ac2d55aae0c9e11f703164":[3,2,18,2,0], +"group___t_r_a_n_s_f_e_r___a_p_i.html#afd44a3b34e332d28d7573865c58b00df":[3,2,18,0,3], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga11917a0ab2cb8b878937c97691b07fd9":[3,2,18,12], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga665f80fc984ccf7585606be8eeccbb98":[3,2,18,5], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga68f81dc8b9ca46fbe3a1e556c020436d":[3,2,18,10], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12":[3,2,18,7], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a12fac298210b545231c2c38dfafd07a0":[3,2,18,7,7], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a12fac298210b545231c2c38dfafd07a0":[3,2,18,7,15], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412":[3,2,18,7,5], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412":[3,2,18,7,13], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412":[3,2,18,7,2], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a4284e820735faa08a0702f0d430f2924":[3,2,18,7,9], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a4284e820735faa08a0702f0d430f2924":[3,2,18,7,17], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a5bb02177f10ea6a06f9fdf3d8f353d6f":[3,2,18,7,6], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a5bb02177f10ea6a06f9fdf3d8f353d6f":[3,2,18,7,14], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a7568398002399c1e898dab6f8e8a0418":[3,2,18,7,8], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a7568398002399c1e898dab6f8e8a0418":[3,2,18,7,16], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f":[3,2,18,7,4], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f":[3,2,18,7,1], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f":[3,2,18,7,12], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12aa5cbd2b9aced79bfb6b5858f8ebbe011":[3,2,18,7,10], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12aa5cbd2b9aced79bfb6b5858f8ebbe011":[3,2,18,7,18], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21":[3,2,18,7,11], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21":[3,2,18,7,0], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21":[3,2,18,7,3], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ga769464d2068881ccb44573c96167812b":[3,2,18,9], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gad71bdadb7f486bb5d3ca6ff508dc0b08":[3,2,18,11], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51":[3,2,18,8], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a56a87e1587844119831414f3d5e6d761":[3,2,18,8,3], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad":[3,2,18,8,2], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad":[3,2,18,8,4], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad":[3,2,18,8,6], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51ab8b3f8ce28fb6f7a57a1b87db0d612c2":[3,2,18,8,1], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47":[3,2,18,8,7], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47":[3,2,18,8,5], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47":[3,2,18,8,0], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992f":[3,2,18,6], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fa607c41bfd08797c08a5ee9bd4dfb9c8b":[3,2,18,6,1], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55":[3,2,18,6,7], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55":[3,2,18,6,2], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55":[3,2,18,6,5], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d":[3,2,18,6,0], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d":[3,2,18,6,6], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d":[3,2,18,6,4], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fafb43c6e62b61f0dbb9a5bcd5575e79e2":[3,2,18,6,3], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gga11917a0ab2cb8b878937c97691b07fd9aa9b89e5adf9e24c9203f9fdf6c6aa331":[3,2,18,12,1], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gga11917a0ab2cb8b878937c97691b07fd9aca210983d734307a694af55fbf11ed7e":[3,2,18,12,0], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gga68f81dc8b9ca46fbe3a1e556c020436dab853bdecc90c476b995644c273e0ee75":[3,2,18,10,2], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gga68f81dc8b9ca46fbe3a1e556c020436dadab837d29a543149d35ed2fd28d8e4e8":[3,2,18,10,1], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gga68f81dc8b9ca46fbe3a1e556c020436dae974453c306b4959252905e362d75067":[3,2,18,10,0], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gga769464d2068881ccb44573c96167812ba2002ef7bbc49f7c9ebfac1618ba3c391":[3,2,18,9,1], +"group___t_r_a_n_s_f_e_r___a_p_i.html#gga769464d2068881ccb44573c96167812ba77aeeab30b003de23742e40a57f19239":[3,2,18,9,0], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ggad71bdadb7f486bb5d3ca6ff508dc0b08a0929782b61686db69e12b3cb18175b35":[3,2,18,11,1], +"group___t_r_a_n_s_f_e_r___a_p_i.html#ggad71bdadb7f486bb5d3ca6ff508dc0b08ada378ad830e44cc0c25d4fe2413e11de":[3,2,18,11,0], +"group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__api__t":[3,2,18,3], +"group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__cfg__t":[3,2,18,2], +"group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__info__t":[3,2,18,1], +"group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__instance__t":[3,2,18,4], +"group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__properties__t":[3,2,18,0], +"group___t_s_u___b.html":[3,1,0,2], +"group___t_s_u___b.html#a06b6e82fcee558ee4548f37d8620a1f4":[3,1,0,2,0,5], +"group___t_s_u___b.html#a1fce1fbc4e5f916220040a4146e27c49":[3,1,0,2,0,2], +"group___t_s_u___b.html#a22491b611c1958bb5405b05b2a7a3feb":[3,1,0,2,0,3], +"group___t_s_u___b.html#a3906e15e289a42557f63f5514c81f8d1":[3,1,0,2,0,1], +"group___t_s_u___b.html#a3fc59fe6297b3d440cb73510eaf7f21b":[3,1,0,2,0,4], +"group___t_s_u___b.html#a525f475e04de0b02bf01105495f9f474":[3,1,0,2,0,0], +"group___t_s_u___b.html#ga11361111b88fa7e72cb9014d440c3ff1":[3,1,0,2,14], +"group___t_s_u___b.html#ga15204e44f60f3f948c5b13983635742b":[3,1,0,2,9], +"group___t_s_u___b.html#ga1b591622c668393be2a471acb5af0a09":[3,1,0,2,11], +"group___t_s_u___b.html#ga39f1ed741b28eab45f1712935f3883e4":[3,1,0,2,6], +"group___t_s_u___b.html#ga5ab9606f8b75e848e5743dd79d08aa29":[3,1,0,2,2], +"group___t_s_u___b.html#ga5e8b4241a1e5e499da79c839aad0628e":[3,1,0,2,13], +"group___t_s_u___b.html#ga7b164d0defb1b364c993b138a3ca0524":[3,1,0,2,17], +"group___t_s_u___b.html#ga874a931c003bbe50ad12e6da4d87143f":[3,1,0,2,8], +"group___t_s_u___b.html#ga978c60f17aa8a2184140272e7588474e":[3,1,0,2,5], +"group___t_s_u___b.html#ga97e39892fa51e09d3809f600781f3b98":[3,1,0,2,4], +"group___t_s_u___b.html#gab85e848ca49caaa929dd77dc8921e29f":[3,1,0,2,12], +"group___t_s_u___b.html#gabfa2e53113bbd7e12dea5dabf227903c":[3,1,0,2,16], +"group___t_s_u___b.html#gac01f0a25e022187d5a10913234c6dd8e":[3,1,0,2,15], +"group___t_s_u___b.html#gada13a2179de16db6073f307afae1e612":[3,1,0,2,10], +"group___t_s_u___b.html#gae1e53473fd2f49e840ce26b43131aa29":[3,1,0,2,3], +"group___t_s_u___b.html#gaef9ec32a8de4e4286e10f0c87efd450d":[3,1,0,2,7], +"group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29a0c5fc7fe1db6dc27007a10395c080d74":[3,1,0,2,2,0], +"group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29a77418279f9f52d5ca8ffa8418e42d8bf":[3,1,0,2,2,1], +"group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29af001e8665548dd625eff4fe09f1d0102":[3,1,0,2,2,2], +"group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29afa39988bdc4f045e0cae55754afe8d14":[3,1,0,2,2,3], +"group___t_s_u___b.html#ggae1e53473fd2f49e840ce26b43131aa29a21127683f9dd0b510c15ebab44d7bf8a":[3,1,0,2,3,0], +"group___t_s_u___b.html#ggae1e53473fd2f49e840ce26b43131aa29aabcb24a3f71042eff1118cb3ebf8b318":[3,1,0,2,3,2], +"group___t_s_u___b.html#ggae1e53473fd2f49e840ce26b43131aa29ab9a284ff26dcbb57af3e9278b7882702":[3,1,0,2,3,1], +"group___t_s_u___b.html#structtsu__b__extended__cfg__t":[3,1,0,2,0], +"group___t_s_u___b.html#structtsu__b__instance__ctrl__t":[3,1,0,2,1], +"group___u_a_r_t___a_p_i.html":[3,2,19], +"group___u_a_r_t___a_p_i.html#a07af9be02a70a457bc4d5207c77e3bee":[3,2,19,4,1], +"group___u_a_r_t___a_p_i.html#a07bd6b0ef728681a3abee96ada2ea79d":[3,2,19,2,2], +"group___u_a_r_t___a_p_i.html#a0f61af63801e663a8401a9af9c890522":[3,2,19,0,0], +"group___u_a_r_t___a_p_i.html#a14a3cdcd373af5dfc69a30206276a44f":[3,2,19,2,5], +"group___u_a_r_t___a_p_i.html#a2ef1ef69636aec9cbfbac44db4a67db6":[3,2,19,2,15], +"group___u_a_r_t___a_p_i.html#a37d3e833ad3e9a21467936db2a22e27d":[3,2,19,2,4], +"group___u_a_r_t___a_p_i.html#a3cc235c856acbf3100cc0557a2953510":[3,2,19,2,10], +"group___u_a_r_t___a_p_i.html#a465fe0c740b4c6f289956849180e2621":[3,2,19,2,12], +"group___u_a_r_t___a_p_i.html#a4e7e47514702ff0e3515280590dd9659":[3,2,19,3,7], +"group___u_a_r_t___a_p_i.html#a51b74df27fb26e85700d9524cdfc7c01":[3,2,19,3,6], +"group___u_a_r_t___a_p_i.html#a52fad103c0d9a1cc38510e74f7f1c198":[3,2,19,2,9], +"group___u_a_r_t___a_p_i.html#a558f63e26549462cf3a893ed73fd26ad":[3,2,19,1,1], +"group___u_a_r_t___a_p_i.html#a5cd3c3cd9abff685e954033d13e82bd2":[3,2,19,0,1], +"group___u_a_r_t___a_p_i.html#a60b6abd0d74f5305fda32373371d8b3a":[3,2,19,2,13], +"group___u_a_r_t___a_p_i.html#a6442033274bd3402ab162947f5a22784":[3,2,19,2,11], +"group___u_a_r_t___a_p_i.html#a75ba1611c4bba17f25f1957348991829":[3,2,19,3,1], +"group___u_a_r_t___a_p_i.html#a79df568ef30629847da05d9b073f1602":[3,2,19,2,7], +"group___u_a_r_t___a_p_i.html#a828d44762a5e4d11aead4d811a1c5c70":[3,2,19,1,2], +"group___u_a_r_t___a_p_i.html#a83efd5806d31817983f75bab4d415c87":[3,2,19,2,14], +"group___u_a_r_t___a_p_i.html#a8b0f901bcc26bd6836fe620235585f98":[3,2,19,3,3], +"group___u_a_r_t___a_p_i.html#a8f5b1d9fc38fbb83007d904b814bf66b":[3,2,19,2,0], +"group___u_a_r_t___a_p_i.html#a962363eebf6d497894b5ca569ebb87bb":[3,2,19,3,0], +"group___u_a_r_t___a_p_i.html#a9a87e8764518ac3268cf1c9df3b6aad3":[3,2,19,3,2], +"group___u_a_r_t___a_p_i.html#aa6d5231c2b45a6479fc513d087924a50":[3,2,19,3,4], +"group___u_a_r_t___a_p_i.html#ab5d2042b5bedd324dea60d379ff4140a":[3,2,19,2,3], +"group___u_a_r_t___a_p_i.html#ab93490806d8ebfbe84a8d2e9def3a138":[3,2,19,2,6], +"group___u_a_r_t___a_p_i.html#acb47c360a2ac4ddd36e53f0a4ad71b92":[3,2,19,3,8], +"group___u_a_r_t___a_p_i.html#ace2b32a59ca156c32cee5860fb5db311":[3,2,19,4,2], +"group___u_a_r_t___a_p_i.html#aceec311122c92321f879530c32fc0e00":[3,2,19,2,8], +"group___u_a_r_t___a_p_i.html#acf60bc172eb7d382b406364f64b928f6":[3,2,19,1,0], +"group___u_a_r_t___a_p_i.html#adb701292c23e393a8152e57da1cc6cb3":[3,2,19,2,1], +"group___u_a_r_t___a_p_i.html#ae01cedb63e8739651eb14d0ccc9b54a4":[3,2,19,4,0], +"group___u_a_r_t___a_p_i.html#af0950404b4fc6329f9d6f7802b850531":[3,2,19,2,16], +"group___u_a_r_t___a_p_i.html#af39b34ea2c03d20876045cbe6cba70a7":[3,2,19,1,3], +"group___u_a_r_t___a_p_i.html#af4aeab25d6aa83e0d47307043c053d11":[3,2,19,3,5], +"group___u_a_r_t___a_p_i.html#ga6bcc37e31dd40c204b4ac6f6189e8878":[3,2,19,8], +"group___u_a_r_t___a_p_i.html#ga6da57a73bbdbf830b845d4116f8341d7":[3,2,19,9], +"group___u_a_r_t___a_p_i.html#gac36c5a0dffa37b418fb9425a76c57740":[3,2,19,10], +"group___u_a_r_t___a_p_i.html#gad04bd656a84140eaef1e8aa0f86564a8":[3,2,19,5], +"group___u_a_r_t___a_p_i.html#gadc68b8fd9ded3990f84129df23fee798":[3,2,19,7], +"group___u_a_r_t___a_p_i.html#gaf739f04f788018b4b59fb7ad75da0a8d":[3,2,19,6], +"group___u_a_r_t___a_p_i.html#gga6bcc37e31dd40c204b4ac6f6189e8878acdbc0c60cf74e4febad92afc44b88641":[3,2,19,8,0], +"group___u_a_r_t___a_p_i.html#gga6bcc37e31dd40c204b4ac6f6189e8878ad908a637b1dd23f93b149dd2d8bdfdb8":[3,2,19,8,1], +"group___u_a_r_t___a_p_i.html#gga6bcc37e31dd40c204b4ac6f6189e8878ad90cc425f5ba447773a44a75be6593e2":[3,2,19,8,2], +"group___u_a_r_t___a_p_i.html#gga6da57a73bbdbf830b845d4116f8341d7a00c73c92b3d624bc86cfa63636dd99b3":[3,2,19,9,1], +"group___u_a_r_t___a_p_i.html#gga6da57a73bbdbf830b845d4116f8341d7a44b3bfbe90aebe2b23227f5c011f41cc":[3,2,19,9,0], +"group___u_a_r_t___a_p_i.html#ggac36c5a0dffa37b418fb9425a76c57740a01ae18be82be0fa74527fe8f23499895":[3,2,19,10,1], +"group___u_a_r_t___a_p_i.html#ggac36c5a0dffa37b418fb9425a76c57740a915c39567f2bb1393e506373749767e1":[3,2,19,10,2], +"group___u_a_r_t___a_p_i.html#ggac36c5a0dffa37b418fb9425a76c57740a91dcd653bcf1b052bd7bd9ee7210ad83":[3,2,19,10,0], +"group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798a317e473e32315f1632829d176fbfd545":[3,2,19,7,2], +"group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798a57a012c58e476a76ed8f54db28d94810":[3,2,19,7,0], +"group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798ad768185f3773e2d5953b28f3345561db":[3,2,19,7,1], +"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da03e2fd44218712f18f3cceb0a0ad7442":[3,2,19,6,7], +"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da089ae47ff2f451fdc369c8d04c50c8ea":[3,2,19,6,6], +"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da2ea6d7a4ff18bf123facf225a6954329":[3,2,19,6,3], +"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da56867c1db03ea3ee2c704604ac94b767":[3,2,19,6,1], +"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da794925d1c74f16bde84152508e66a6bd":[3,2,19,6,2], +"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da92ecf40776a80db956fb45b8a5ae02cb":[3,2,19,6,4], +"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8dab21c836f6c9fa84f41fc41a8cf9c2d1e":[3,2,19,6,5], +"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8dabe2b1428416bd300ee15a2608df30837":[3,2,19,6,0], +"group___u_a_r_t___a_p_i.html#structuart__api__t":[3,2,19,3], +"group___u_a_r_t___a_p_i.html#structuart__callback__args__t":[3,2,19,1], +"group___u_a_r_t___a_p_i.html#structuart__cfg__t":[3,2,19,2], +"group___u_a_r_t___a_p_i.html#structuart__info__t":[3,2,19,0], +"group___u_a_r_t___a_p_i.html#structuart__instance__t":[3,2,19,4], +"group___w_d_t.html":[3,1,3,1], +"group___w_d_t.html#ga17bf328598042575cbe4f126f59bbc1b":[3,1,3,1,5], +"group___w_d_t.html#ga602ed1a63b61c46df822059ab6a5395e":[3,1,3,1,8], +"group___w_d_t.html#gac6e98a5b526d81651da1ffeda3f70263":[3,1,3,1,7], +"group___w_d_t.html#gacd5b9ff42df96b9fd4603dda47b946cb":[3,1,3,1,4], +"group___w_d_t.html#gad64d0778fd0ceccb13a7287bb0d1fca8":[3,1,3,1,3], +"group___w_d_t.html#gaf6b4f726ecfe6795c7887dc1226450ca":[3,1,3,1,6], +"group___w_d_t.html#gaff080d0dcc993cfbe7e99771396feffb":[3,1,3,1,2], +"group___w_d_t.html#structwdt__extended__cfg__t":[3,1,3,1,1], +"group___w_d_t.html#structwdt__instance__ctrl__t":[3,1,3,1,0], +"group___w_d_t___a_p_i.html":[3,2,20], +"group___w_d_t___a_p_i.html#a0d1533024396b8280b7240c781a09a44":[3,2,20,3,1], +"group___w_d_t___a_p_i.html#a123b3dbdef324ba5e27939fef7575cb6":[3,2,20,2,6], +"group___w_d_t___a_p_i.html#a28dc9b161653da57c10267f775bda125":[3,2,20,3,6], +"group___w_d_t___a_p_i.html#a317b972273cef3bc94087727b3ee17c5":[3,2,20,3,2], +"group___w_d_t___a_p_i.html#a32ddaf9b3fd7bab2b654e660588ac680":[3,2,20,2,0], +"group___w_d_t___a_p_i.html#a39a1f436f29b8db08e214bd85c6e53ff":[3,2,20,4,1], +"group___w_d_t___a_p_i.html#a3f910dce98e58fc8a05152a21f404f74":[3,2,20,1,1], +"group___w_d_t___a_p_i.html#a4afd304a6d5116ff17d004a9db0b68de":[3,2,20,1,0], +"group___w_d_t___a_p_i.html#a4be884c6982d93cdb759e8d3994b62a3":[3,2,20,2,5], +"group___w_d_t___a_p_i.html#a54e6814335b4dec365a1efb61cf82fe1":[3,2,20,4,2], +"group___w_d_t___a_p_i.html#a5f9d35ace3a2cca8b1b8ae834aae70cb":[3,2,20,2,3], +"group___w_d_t___a_p_i.html#a64eb19cb40d1c2e0d7a81d773289af4d":[3,2,20,0,0], +"group___w_d_t___a_p_i.html#a724c02d7265d5eaa846cf97a3556f5d6":[3,2,20,3,4], +"group___w_d_t___a_p_i.html#a7291179f9c5dea0f40d384398f2d81fe":[3,2,20,2,8], +"group___w_d_t___a_p_i.html#a7d1afa07628f9a7c0b9e3c74206d44e9":[3,2,20,2,7], +"group___w_d_t___a_p_i.html#a9616c365a4d3f1d374fb5a7125cef0e5":[3,2,20,2,2], +"group___w_d_t___a_p_i.html#aa7829044aff936488b3e21bbd127ab76":[3,2,20,2,1], +"group___w_d_t___a_p_i.html#aaa3b53f7c79a5f385cc6a8f987623b10":[3,2,20,2,4], +"group___w_d_t___a_p_i.html#ac2b6d848e8be0ff1a0a1be43289ad925":[3,2,20,3,5], +"group___w_d_t___a_p_i.html#ac301430918784342b3f136d2afc705a7":[3,2,20,4,0], +"group___w_d_t___a_p_i.html#af03fc1703319e1adacabc412c7e3de31":[3,2,20,3,0], +"group___w_d_t___a_p_i.html#af66d798489c7ace801fee8b5a9c833c2":[3,2,20,3,3], +"group___w_d_t___a_p_i.html#ga46c1d04f78b75ad1ad21314cac574935":[3,2,20,12], +"group___w_d_t___a_p_i.html#ga62d4360afabd1652aa7a1b9f624d7f61":[3,2,20,9], +"group___w_d_t___a_p_i.html#ga6b0f563a6311763e6204add68a018089":[3,2,20,7], +"group___w_d_t___a_p_i.html#ga7624d80dde311cb1289f558ea464fa63":[3,2,20,10], +"group___w_d_t___a_p_i.html#ga803dd68cafce3a3d9ca5630b8c4838da":[3,2,20,11], +"group___w_d_t___a_p_i.html#ga880fcf63a5220c6618a0cf380268a76c":[3,2,20,6], +"group___w_d_t___a_p_i.html#ga9e0c1284f5d75d4a090d988536e3f633":[3,2,20,8], +"group___w_d_t___a_p_i.html#gacb273fc13cd5efef455f45486b436efe":[3,2,20,5], +"group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935a0f1543f47bca7e987fe86ab04dd16e46":[3,2,20,12,0], +"group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935a4b045e0cf22adf889286b3184bb212bf":[3,2,20,12,2], +"group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935a67430b92ca3930bb185d76449309004b":[3,2,20,12,1], +"group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935ad930e4c90d18d3d5caebe11d602dd630":[3,2,20,12,4], +"group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935ae49ea1e31c6a71b8acf1617f144dfcad":[3,2,20,12,3], +"group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61a35cf30e3a9e6f2f3c76726a7acc753ec":[3,2,20,9,0], +"group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61a77562b1a64c2bf2e4385c3fad6f439c6":[3,2,20,9,2], +"group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61ab9dbf43bd2759f8fbb331dfb86dcc576":[3,2,20,9,1], +"group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61ad9fd7f9a41a89a9d67f0b8c37cbfdc12":[3,2,20,9,3], +"group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a0746eb0ddedfafa127e0e42b64136661":[3,2,20,7,5], +"group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a1387532a717e5c3e03489a1eb4319b3b":[3,2,20,7,3], +"group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a379cad22ab77f5b144788ae4fb82e7af":[3,2,20,7,9], +"group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a676cc419b2a32f1d5bc621da6c27eed8":[3,2,20,7,1], +"group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a723dd4048f03d861e42890fc8bd0913a":[3,2,20,7,8] +}; diff --git a/navtreeindex16.js b/navtreeindex16.js new file mode 100644 index 0000000..6f406d4 --- /dev/null +++ b/navtreeindex16.js @@ -0,0 +1,94 @@ +var NAVTREEINDEX16 = +{ +"group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a85b86587793408cd7b12fc4eb18e93c0":[3,2,20,7,6], +"group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089aad499bbad13bd81c4246370b18470955":[3,2,20,7,4], +"group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089ad8412b1a44d913b0ed2d8a00a7b7ebbd":[3,2,20,7,2], +"group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089adced8472c808262dd429d0151c3b2797":[3,2,20,7,0], +"group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089adf7e020a0f0702f5c0bbb2cd5bdb4a67":[3,2,20,7,7], +"group___w_d_t___a_p_i.html#gga7624d80dde311cb1289f558ea464fa63a71f32c409072999582d4e4afb789b096":[3,2,20,10,1], +"group___w_d_t___a_p_i.html#gga7624d80dde311cb1289f558ea464fa63a9025ac51aeed3fac87e3733965b06215":[3,2,20,10,0], +"group___w_d_t___a_p_i.html#gga803dd68cafce3a3d9ca5630b8c4838daa7dda22fd5a14857cc859222620b71368":[3,2,20,11,1], +"group___w_d_t___a_p_i.html#gga803dd68cafce3a3d9ca5630b8c4838daac3a7223139a46596bf979e607c7c26f2":[3,2,20,11,0], +"group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76ca03952a0bb059b3ed8291d777d3ac36ff":[3,2,20,6,0], +"group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76ca228d47dafe4a9026129b377155831621":[3,2,20,6,3], +"group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76ca43fb8078a97d4935af9a4c49a8e268d1":[3,2,20,6,4], +"group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76caadc98a5e3f05b010d9a4d8ce9b3c5c8f":[3,2,20,6,2], +"group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76cacd016302c00b39880d3828d18467833e":[3,2,20,6,6], +"group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76cadf9f61c33547bd76c982a981e428b27d":[3,2,20,6,1], +"group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76cafb02fadb0bfdbf020583711d850670bf":[3,2,20,6,5], +"group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633a54d48a740d3d733e9011271800984229":[3,2,20,8,0], +"group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633a8677bab323b9b04737bf003bc8c68703":[3,2,20,8,3], +"group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633ab268e222207739405538345ae67483c8":[3,2,20,8,2], +"group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633af678a5920dbf49ca5cc9b235fe2b50a6":[3,2,20,8,1], +"group___w_d_t___a_p_i.html#structwdt__api__t":[3,2,20,3], +"group___w_d_t___a_p_i.html#structwdt__callback__args__t":[3,2,20,0], +"group___w_d_t___a_p_i.html#structwdt__cfg__t":[3,2,20,2], +"group___w_d_t___a_p_i.html#structwdt__instance__t":[3,2,20,4], +"group___w_d_t___a_p_i.html#structwdt__timeout__values__t":[3,2,20,1], +"group___x_s_p_i___q_s_p_i.html":[3,1,6,0], +"group___x_s_p_i___q_s_p_i.html#ga1bfceb0eafe5923f05b90899c095bd2d":[3,1,6,0,9], +"group___x_s_p_i___q_s_p_i.html#ga2f5bbf5d76d76c31840f4ce82d3393d2":[3,1,6,0,10], +"group___x_s_p_i___q_s_p_i.html#ga35a0c5d80a5ae30d48b46b37153f7e76":[3,1,6,0,15], +"group___x_s_p_i___q_s_p_i.html#ga373731d45a2fdd625ee69b602ebc4d86":[3,1,6,0,12], +"group___x_s_p_i___q_s_p_i.html#ga384be6c60819abe2478a7b35c9a7a98e":[3,1,6,0,17], +"group___x_s_p_i___q_s_p_i.html#ga50d177e87a5a9279f0e1e37d73f7a58f":[3,1,6,0,4], +"group___x_s_p_i___q_s_p_i.html#ga5e5bf2c3854fb149c7ac6f96fce9ee98":[3,1,6,0,18], +"group___x_s_p_i___q_s_p_i.html#ga6e1ddbaec6b1d04c6425b3a271d9093a":[3,1,6,0,7], +"group___x_s_p_i___q_s_p_i.html#ga6fceaa55b924ce5ecf7a00a962b5d529":[3,1,6,0,19], +"group___x_s_p_i___q_s_p_i.html#ga760382ea0170990436140690f193bd65":[3,1,6,0,2], +"group___x_s_p_i___q_s_p_i.html#ga8428f80201f33286966d2a84e0fb1f19":[3,1,6,0,3], +"group___x_s_p_i___q_s_p_i.html#ga8c59ecaa03a56fa5db80924c81ff6fcc":[3,1,6,0,6], +"group___x_s_p_i___q_s_p_i.html#ga9605c020c75bee5805972f74d27ffd2e":[3,1,6,0,1], +"group___x_s_p_i___q_s_p_i.html#gaad19b3c8e517b9e614ee8697f8cef4e7":[3,1,6,0,8], +"group___x_s_p_i___q_s_p_i.html#gaad73cce9b2ac857fbd0423223ae3388e":[3,1,6,0,16], +"group___x_s_p_i___q_s_p_i.html#gac03a7edb53183d589372bd8be1ecf870":[3,1,6,0,11], +"group___x_s_p_i___q_s_p_i.html#gae60133dc12f4f7ae05fff3e117a2669a":[3,1,6,0,5], +"group___x_s_p_i___q_s_p_i.html#gaedf789bc1d1335f9b2356eaaaa58694e":[3,1,6,0,13], +"group___x_s_p_i___q_s_p_i.html#gaf2619573525414afefc46ebc2fd53bec":[3,1,6,0,14], +"group___x_s_p_i___q_s_p_i.html#gga50d177e87a5a9279f0e1e37d73f7a58fa11ba4008e1f95981db11d99da3aeca65":[3,1,6,0,4,1], +"group___x_s_p_i___q_s_p_i.html#gga50d177e87a5a9279f0e1e37d73f7a58fa3d1564719853f7d8fa5f0bcea21107c0":[3,1,6,0,4,0], +"group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a0e615937696c1873b137727947c525f5":[3,1,6,0,2,1], +"group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a1551217a1fa6407d02e750cefc928d54":[3,1,6,0,2,2], +"group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a214e6e08bb13c027a5f5d94464d263b6":[3,1,6,0,2,3], +"group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a2c0d20ccd99bfe1c7171778ebb3818f1":[3,1,6,0,2,6], +"group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a67f21ed518757add425655b28b865f4c":[3,1,6,0,2,5], +"group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a8afb5fb7a7a5339b758f53fceb91268b":[3,1,6,0,2,0], +"group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a9ac43acaa7d21c3ba76800735a579208":[3,1,6,0,2,4], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a41c8bb40efff3fa720011b912c303f47":[3,1,6,0,3,15], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a4543d64f407a096d164d15e3365603e8":[3,1,6,0,3,0], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a58c5ad4643d6d653624543356554ee3c":[3,1,6,0,3,11], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a5fd5dda031287b82ff5dad2e40dffde4":[3,1,6,0,3,10], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a6439af4e411e4d03f3c8d3f15722e9dd":[3,1,6,0,3,12], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a6f389a6a78b28558ed2c8a5a830d64a6":[3,1,6,0,3,6], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a7387eebf4b950e72afb60bbbea754971":[3,1,6,0,3,2], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a760752bfe782b735d449bc5c679e470b":[3,1,6,0,3,1], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a7700b8b6feef66da31cac305527bc77d":[3,1,6,0,3,14], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a79078d67905481f14a81061cdd17e9f1":[3,1,6,0,3,3], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a86bb1c93ed0d8bc69e66a31adbe493d8":[3,1,6,0,3,7], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a89788712416b1af5ccd9082d62d30b43":[3,1,6,0,3,9], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a8ceda90ab2581dba8ad9529b5fae8145":[3,1,6,0,3,13], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19ab03ff44395500c6b4f9d4bcca356bac2":[3,1,6,0,3,5], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19acf18d60fd2f71e556ada7debeb513525":[3,1,6,0,3,8], +"group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19aecaadb970c633b9360fdfce5e5c7c527":[3,1,6,0,3,4], +"group___x_s_p_i___q_s_p_i.html#gga8c59ecaa03a56fa5db80924c81ff6fcca152b74d0c0cf97d6a36343f724a8d6ee":[3,1,6,0,6,1], +"group___x_s_p_i___q_s_p_i.html#gga8c59ecaa03a56fa5db80924c81ff6fccafd2c195951167330e5b7a90ae262d361":[3,1,6,0,6,0], +"group___x_s_p_i___q_s_p_i.html#gga9605c020c75bee5805972f74d27ffd2eaa1bbf9d876e73b7627f55c2deaf857c9":[3,1,6,0,1,1], +"group___x_s_p_i___q_s_p_i.html#gga9605c020c75bee5805972f74d27ffd2eacf34145ba6a0b294cbdeeab976c150bf":[3,1,6,0,1,0], +"group___x_s_p_i___q_s_p_i.html#ggae60133dc12f4f7ae05fff3e117a2669aab743d88ab010960508bead3d47c4c117":[3,1,6,0,5,1], +"group___x_s_p_i___q_s_p_i.html#ggae60133dc12f4f7ae05fff3e117a2669aae9c45150b1ef316f0de9bccb1fc3f270":[3,1,6,0,5,0], +"group___x_s_p_i___q_s_p_i.html#structxspi__qspi__instance__ctrl__t":[3,1,6,0,0], +"index.html":[], +"index.html":[0], +"index.html#build-time-configurations":[0,3,4], +"index.html#documentation-standard":[0,2], +"index.html#e2-studio-ide":[0,3,5], +"index.html#ease-of-use-fsp":[0,3,2], +"index.html#how-to-read":[0,1], +"index.html#introduction-overview":[0,0], +"index.html#introduction-to-fsp":[0,3], +"index.html#purpose-fsp":[0,3,0], +"index.html#quality-fsp":[0,3,1], +"index.html#scalability":[0,3,3], +"modules.html":[3], +"pages.html":[] +}; diff --git a/navtreeindex2.js b/navtreeindex2.js index 5350338..1fff5f9 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -1,253 +1,253 @@ var NAVTREEINDEX2 = { -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ga3dc909b21d5ebe0d1d671221e4190246":[3,2,1,4], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ga692e093fc800ee08e3f84fae648372d8":[3,2,1,6], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57ca0a2ebac83c3e8ca3da64e703dda65b71":[3,2,1,5,2], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57ca2d7a4f8fd21fad6f5a671336152d46b0":[3,2,1,5,1], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57caace14d51313fed5f17da4b9828fd5412":[3,2,1,5,0], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57cae0ae8739569bb4721c7ed289397b9c4f":[3,2,1,5,3], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8a0ec86c6eb31ac0c5e2a789e3bcefe334":[3,2,1,6,2], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8a50e18b67ca2b1d8c0efb69dac660c581":[3,2,1,6,3], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8a8efd589848d944d15906446d30500c1a":[3,2,1,6,0], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8aea6e72eaa11987f54579a14bb4b3a7e9":[3,2,1,6,1], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__api__t":[3,2,1,2], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__callback__args__t":[3,2,1,0], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__cfg__t":[3,2,1,1], -"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__instance__t":[3,2,1,3], -"group___g_p_t.html":[3,1,1], -"group___g_p_t.html#a078a97f54349c6895fbebc67857c479a":[3,1,1,2,8], -"group___g_p_t.html#a22eb63abdf43064c9c83d81287c67c88":[3,1,1,3,12], -"group___g_p_t.html#a2ecf880963c441f20c3c8a2ac7a854ea":[3,1,1,3,8], -"group___g_p_t.html#a3b894424ab45e17d02938de9c211911a":[3,1,1,3,2], -"group___g_p_t.html#a41333514ba7ccb2b4e2d6475a51dcc26":[3,1,1,3,3], -"group___g_p_t.html#a4d31e40df7ea5e4be69fcbbe559a8213":[3,1,1,2,9], -"group___g_p_t.html#a55e5f85f57b77fd7ee5a1de7ff39da27":[3,1,1,3,13], -"group___g_p_t.html#a5805853871548d015520f71f3ab00e93":[3,1,1,0,1], -"group___g_p_t.html#a5f0b69cc2d3cfe89baefcf348563df21":[3,1,1,0,0], -"group___g_p_t.html#a630c77adb426ddddb5eac8b974fd7c85":[3,1,1,3,11], -"group___g_p_t.html#a78476af74debd54ee8394dd0aa6d2505":[3,1,1,3,1], -"group___g_p_t.html#a7e5402bac34e2c3d3006b68ee0b8ab2a":[3,1,1,3,9], -"group___g_p_t.html#aa34079abac90aaced078650c626c9820":[3,1,1,2,13], -"group___g_p_t.html#aa39314cc7482a5855e27b0c2daa111ea":[3,1,1,2,4], -"group___g_p_t.html#aad7e19c30d43b6d0f88943c27e9afa4c":[3,1,1,3,5], -"group___g_p_t.html#aae4ebebdd346531add1c9ce3bee52106":[3,1,1,3,10], -"group___g_p_t.html#aaf087f74d802f87ccac4e0a04e90cc04":[3,1,1,2,2], -"group___g_p_t.html#aafd7df5d2639958e4602b2f05b877707":[3,1,1,2,6], -"group___g_p_t.html#ab5abdaac972544ec4e58df69d1f8a08f":[3,1,1,2,11], -"group___g_p_t.html#abc2a1fdb7655945b5ef571c60bf7b4b0":[3,1,1,2,7], -"group___g_p_t.html#ac1bab8a37aeb13d8f27d05e44d567bc9":[3,1,1,2,3], -"group___g_p_t.html#ac516350c554b9851aa9c66615e89b93b":[3,1,1,2,10], -"group___g_p_t.html#aca22811f5aebe0ee236214b53f9f6bbd":[3,1,1,3,6], -"group___g_p_t.html#ad323c6db6a695028d2926dfbf0a0dda8":[3,1,1,3,0], -"group___g_p_t.html#ad5614740946c3c06e1633d369d08f5c3":[3,1,1,3,4], -"group___g_p_t.html#ad6a0d3919d4334ec367619aecd96b0f0":[3,1,1,2,5], -"group___g_p_t.html#ad908895a31952a884009f3a63fdac8d0":[3,1,1,2,0], -"group___g_p_t.html#ae96b1fce9515b779078f947aa3885618":[3,1,1,3,7], -"group___g_p_t.html#af69392faec97dd6cf86b0634e6b79b44":[3,1,1,2,1], -"group___g_p_t.html#af8c63e238ee298b4f1dac545a597eff7":[3,1,1,2,12], -"group___g_p_t.html#ga0e6638508ec1d5441713195c877bb7a7":[3,1,1,28], -"group___g_p_t.html#ga1e6af74d7faaf735f5847a34121eff71":[3,1,1,18], -"group___g_p_t.html#ga2769f9fda49613246bc84dba41aa4863":[3,1,1,19], -"group___g_p_t.html#ga28d354e417a7a6666e0819387d8e7d8a":[3,1,1,16], -"group___g_p_t.html#ga2a09de185d3b7f1c301b33330931bac4":[3,1,1,31], -"group___g_p_t.html#ga2a838fffcbafd97778bbe3ffbfbf54b1":[3,1,1,12], -"group___g_p_t.html#ga2fc5d6a737a00948802e2bb77fbe8d8c":[3,1,1,32], -"group___g_p_t.html#ga311c91c55f20338f7082fa4369e7c80f":[3,1,1,30], -"group___g_p_t.html#ga338dd3c38477ee40c90c13f3a4c9ecfd":[3,1,1,22], -"group___g_p_t.html#ga4126139a9c63f1963ffdaea6cc697fe9":[3,1,1,27], -"group___g_p_t.html#ga454c639e426428470ce78115af5d3648":[3,1,1,5], -"group___g_p_t.html#ga4781e2b42b2ef339318ea0a70b250cd5":[3,1,1,7], -"group___g_p_t.html#ga5eb494add3d40775dbc48c5498e15a3a":[3,1,1,20], -"group___g_p_t.html#ga6dfe4ddfb53ba52c674039fd20b6c2b6":[3,1,1,8], -"group___g_p_t.html#ga6e14d15c781e316e640c280b4983be28":[3,1,1,21], -"group___g_p_t.html#ga7e57d68f5f5d9757bab01857e8252ade":[3,1,1,10], -"group___g_p_t.html#ga82d61d33edf38d50f1247d1d55ec506b":[3,1,1,11], -"group___g_p_t.html#ga88d6114404f61d9ca10684f393deb613":[3,1,1,13], -"group___g_p_t.html#ga97d0a9c1a8fb6b88d1c12756dd8ce2d2":[3,1,1,17], -"group___g_p_t.html#ga9928e374919fa53240edaca52412beaa":[3,1,1,15], -"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196a":[3,1,1,6], -"group___g_p_t.html#gaa6234faf45320a83382d7ea1923a2c49":[3,1,1,26], -"group___g_p_t.html#gaabd4a03d16b1b4254cc44c7779f44c60":[3,1,1,4], -"group___g_p_t.html#gac13c16f82e0b7cafcdb8eb6892722943":[3,1,1,9], -"group___g_p_t.html#gac737ceea25e4989a9afbf47969a71ba3":[3,1,1,14], -"group___g_p_t.html#gaca62ac33de2c05918b0fc359aeaebd97":[3,1,1,25], -"group___g_p_t.html#gad14bacf6fb7fce88f3e877160be529ea":[3,1,1,24], -"group___g_p_t.html#gae204e5d6c9305923e98724005dcdf03d":[3,1,1,29], -"group___g_p_t.html#gafedbfd8bc3f534d06969588ff10a351b":[3,1,1,23], -"group___g_p_t.html#gga28d354e417a7a6666e0819387d8e7d8aa55d1a551ce5c866c2917374f34c9dad1":[3,1,1,16,0], -"group___g_p_t.html#gga28d354e417a7a6666e0819387d8e7d8aaa04f95e24c83e681190e0553b33ef108":[3,1,1,16,1], -"group___g_p_t.html#gga2a838fffcbafd97778bbe3ffbfbf54b1a6f5dba4e42352f1bea9dccd3201021cc":[3,1,1,12,0], -"group___g_p_t.html#gga2a838fffcbafd97778bbe3ffbfbf54b1abc17524a1e6137946784a36c5d31f27b":[3,1,1,12,1], -"group___g_p_t.html#gga454c639e426428470ce78115af5d3648a3270f1165e7a86c5b12eecb9501390f4":[3,1,1,5,0], -"group___g_p_t.html#gga454c639e426428470ce78115af5d3648adc8ebfd0f787322b884ca5d087b3a6a3":[3,1,1,5,1], -"group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a89dfc5c48b1c33a2aec0382baa92d808":[3,1,1,7,3], -"group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a9b2d993dbb736347b473101f14c1fde6":[3,1,1,7,0], -"group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5aa30751bb9a5224fae95f55fd664c26e9":[3,1,1,7,2], -"group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5ac7c1be27c3e25a2486b1368df7092e1d":[3,1,1,7,4], -"group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5afbdc1a92e9b7d18e91ad7440144b022b":[3,1,1,7,1], -"group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a0d5922b5221be7b92ce2218c2d8fb50c":[3,1,1,8,4], -"group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a2818f2fff3a64fd3086a7230dabd7a14":[3,1,1,8,0], -"group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a2bd0475913403dab220b5e7d6c1acf72":[3,1,1,8,1], -"group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a850b0227fd4a50c51c146d44efe7c838":[3,1,1,8,3], -"group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6afd744cee1c5e631263a043ec92af7510":[3,1,1,8,2], -"group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea236f4400f00369f754b3b88c8efc35a7":[3,1,1,10,2], -"group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea3004c3e75921fa586fdf0538b7ef5abe":[3,1,1,10,3], -"group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea36ab56234fbe2b5bb676c0962382bd96":[3,1,1,10,1], -"group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adeaa35910cb9d2f17f2488b4efdcb1b1fe9":[3,1,1,10,0], -"group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506ba1756f7251a83337222f68cc80bc33dfb":[3,1,1,11,0], -"group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506ba2cd233e999331d566eafc32cd29ae9d0":[3,1,1,11,3], -"group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506bab3661e69b77c3086864f7872d264be75":[3,1,1,11,1], -"group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506babb7208f6cf212d2da6b806bf7f094ca5":[3,1,1,11,2], -"group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a297710907b10befa05faa051f2e32be0":[3,1,1,13,2], -"group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a75e3083840b7df9aa2883cded3cd2704":[3,1,1,13,3], -"group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a8525d45b1517b92b3b6d6f5b5a301083":[3,1,1,13,1], -"group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a88ebf7e3d8a17fa38f3a3251e76b76d4":[3,1,1,13,0], -"group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa43c4146c6bbaa9877dc6f1a34b6ccacf":[3,1,1,15,1], -"group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa872ee214e5d3998245ac518730f9dde6":[3,1,1,15,3], -"group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa9bc6d33154685e53dab457675e8161e8":[3,1,1,15,2], -"group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa9dee91a158ffa61d322cbbdac1ed99bd":[3,1,1,15,0], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa037a151c14fea20ef0530f5a995f99e5":[3,1,1,6,16], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa1435f9ba57da19cfc255ea6f64ea7853":[3,1,1,6,9], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa2ea3ebb2e30c10d0c5c087e198175220":[3,1,1,6,1], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa3c659f3a22223a65ffdc96524249eec7":[3,1,1,6,15], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa4b546eda998208d87d6da5d0ad2f927a":[3,1,1,6,13], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa58b8714367e4bb5ec9eb6902c98fdb2e":[3,1,1,6,11], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa5daee2c8037bdc04a019192efdd8af09":[3,1,1,6,5], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa7af2b58b26be8c9b04ec5c31fdd66bab":[3,1,1,6,3], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaa03328ca033b8043537b813ecabe1c50":[3,1,1,6,10], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaaa3e97349fb24f8ba0a431392a92f95e":[3,1,1,6,7], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aab4c7fdaf7cfdd2d3730525965e68c982":[3,1,1,6,2], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aab844b52adc17cebabf04603fa993f176":[3,1,1,6,12], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaceecdd0276a5d1591246c1a2a294ddd3":[3,1,1,6,6], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aad01f879dc9132b0e05827cc7f4219a81":[3,1,1,6,4], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aad6f7ad7ca2dce583089104f23e27ed2c":[3,1,1,6,8], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aae376db52803d52361481b2384c3a3bd8":[3,1,1,6,0], -"group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaf6245811e4016299ba0acf0575389ba6":[3,1,1,6,14], -"group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60a2b44d1e05050c34cc6e8d9ee4093294d":[3,1,1,4,2], -"group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60aebd74a7b9507fb082ec4cce60ebe9369":[3,1,1,4,1], -"group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60aec2d2c471241869efb57a9a48a5d0eda":[3,1,1,4,0], -"group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943a41eefcd7c70c85413a47d006127e112e":[3,1,1,9,2], -"group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943a7d98bec67e920f1f0f8a98ac18aaa7b5":[3,1,1,9,3], -"group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943ae96e3845c4ea884a6d610a745a2c343c":[3,1,1,9,0], -"group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943ae9be405a3d64f348534f67710b37658c":[3,1,1,9,1], -"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a0168263b8e97f370e2d999e40e57689a":[3,1,1,14,1], -"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a1f87ae8bbf43b55f063cbcdbdc329d18":[3,1,1,14,7], -"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a21aec2bf2296497576f4f746e83078e9":[3,1,1,14,5], -"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a3551066dcaffb033a40d7e329169a345":[3,1,1,14,3], -"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a46d2a195d3c9ab5c94c949ce243fbc46":[3,1,1,14,6], -"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a6a175bfcdc5102e24b2f10726968262e":[3,1,1,14,0], -"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3ab30f5da89de49b73e5d27e376a6702d9":[3,1,1,14,4], -"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3af6d98ec31f682d5439b5381dcb5305e4":[3,1,1,14,2], -"group___g_p_t.html#structgpt__extended__cfg__t":[3,1,1,3], -"group___g_p_t.html#structgpt__extended__pwm__cfg__t":[3,1,1,2], -"group___g_p_t.html#structgpt__instance__ctrl__t":[3,1,1,1], -"group___g_p_t.html#structgpt__output__pin__t":[3,1,1,0], -"group___g_t_m.html":[3,1,2], -"group___g_t_m.html#ga0213edecdcc056ecf3353c3b59a85bd9":[3,1,2,15], -"group___g_t_m.html#ga25c4fd1a5cbb556a97d22f7c5d4e7df5":[3,1,2,10], -"group___g_t_m.html#ga329fac4f1af8dee4e45200fd0ce5a9a5":[3,1,2,14], -"group___g_t_m.html#ga406683b70b461dec28c6a707eab2993d":[3,1,2,7], -"group___g_t_m.html#ga4368d6d5d2ae11cdb0f18cf8bdc75e24":[3,1,2,5], -"group___g_t_m.html#ga553dfdd88e36aaf3c58088a5a7774156":[3,1,2,11], -"group___g_t_m.html#ga853124c4bd7f079cb4040694fa13c22c":[3,1,2,9], -"group___g_t_m.html#ga89c7ca62fbb288cd5f44e5c773c699cf":[3,1,2,13], -"group___g_t_m.html#ga95721f8cb1f66dd8556d03b94abc40ed":[3,1,2,4], -"group___g_t_m.html#ga98e91cf35dfcff3ed975ee2b07bdd379":[3,1,2,6], -"group___g_t_m.html#gaa95357cd0d4d8c43f7a2523d4c3b24f7":[3,1,2,12], -"group___g_t_m.html#gaae830979c17ceebe80264f0727e8a6b6":[3,1,2,2], -"group___g_t_m.html#gab3167c9bca77864d1f1c325314462618":[3,1,2,3], -"group___g_t_m.html#gae0fe404d6571eb59c9f05f43f55eed25":[3,1,2,8], -"group___g_t_m.html#ggaae830979c17ceebe80264f0727e8a6b6a352d18878ec62f684b774ce2033e86ea":[3,1,2,2,0], -"group___g_t_m.html#ggaae830979c17ceebe80264f0727e8a6b6af322eef944e25834f753b1e1d401684a":[3,1,2,2,1], -"group___g_t_m.html#ggab3167c9bca77864d1f1c325314462618a056044e8d54ec9b0d6f7a2c17efea293":[3,1,2,3,1], -"group___g_t_m.html#ggab3167c9bca77864d1f1c325314462618a84b337d4b35086b476f3eaa2709b4241":[3,1,2,3,0], -"group___g_t_m.html#structgtm__extended__cfg__t":[3,1,2,1], -"group___g_t_m.html#structgtm__instance__ctrl__t":[3,1,2,0], -"group___i2_c___m_a_s_t_e_r___a_p_i.html":[3,2,2], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a0a0800aaa24f36b2eac8b315a0c5437e":[3,2,2,3,3], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a14a4f6b4fb30067212155c989e5a65d2":[3,2,2,2,1], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a156cf3b414b73e4e9e782c55d131ba39":[3,2,2,2,4], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a1a0c2ac15d2c2eb6a50baed682498620":[3,2,2,3,5], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a3258c94576c0bc4a69095906a314386d":[3,2,2,4,2], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a37cfd76fa962aea67e76d6efaf16dfd7":[3,2,2,2,12], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a3a8cc9e360253e44176a6d3cecb5ece8":[3,2,2,0,1], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a518c35fc22e49d6969fb6e15aa1e09cd":[3,2,2,3,6], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a5d0a5cd0ccc684addfc096545cd3ebc6":[3,2,2,2,6], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a61db7ac4bf7c96d6cbc28c4db281fd6f":[3,2,2,4,0], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a6a35b07fde984333fdce6859dfd56e64":[3,2,2,3,0], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a6b8f5358d8bbec687ddcdb32c88a5f59":[3,2,2,2,13], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a6e1d2e41f4dc058c06c1f5aae0c7bce5":[3,2,2,3,4], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a7b874b282654d0649f041beb36ab9962":[3,2,2,3,1], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a7d093cf28da6a99e56dbeb7b82ad3f5f":[3,2,2,3,7], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a80f1272727c156915cd589c2a881a58f":[3,2,2,2,10], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#a9b5480f5b23ea41b38671f1b7cab8540":[3,2,2,2,8], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#aaff14ac14a40b21573f86fa65abe34f1":[3,2,2,4,1], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#ab2ca2f7ee7e55628bcdd9e3492d7dfd2":[3,2,2,3,2], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#ab51668940cafabfefc502f06fddc9ae4":[3,2,2,2,0], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#ab98d1221b3a246270ef56a57d947ac0c":[3,2,2,0,0], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#abd8565fa7ddc83acb87329275bb56b48":[3,2,2,2,5], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#ac2de0a7db69741ace3fd1e6995bddb57":[3,2,2,2,7], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#adb20031cbc34b2595676ff8004e49448":[3,2,2,2,2], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#adbd429cb907c4f2484900e4b0845b8f8":[3,2,2,2,11], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#af4efbe8e4cb1c08ab54d9818ced03d75":[3,2,2,2,3], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#af5a9589a49c68b926de7deaefc272267":[3,2,2,1,0], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#afc60a909796633071932179988fc8d53":[3,2,2,2,9], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#ga515f0c8b583f8851ce4d6474168769af":[3,2,2,8], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#ga6203bcd8d8127b8fd442a2d33d112940":[3,2,2,7], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#ga87f5194ba16044322815db81dc442138":[3,2,2,5], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#gaa30dd03665bdc1134233e8e2b1631f0a":[3,2,2,6], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#gga515f0c8b583f8851ce4d6474168769afa1b3d50a1a4fbf045307febd9eca1521a":[3,2,2,8,1], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#gga515f0c8b583f8851ce4d6474168769afa22226fd293eb8a7f80e4a80ca8699a4d":[3,2,2,8,0], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#gga515f0c8b583f8851ce4d6474168769afa9273437457da4f6369e937d257c0211b":[3,2,2,8,2], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#gga6203bcd8d8127b8fd442a2d33d112940a90fd4eafcbdc39a9f466f9342246ac4d":[3,2,2,7,1], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#gga6203bcd8d8127b8fd442a2d33d112940ab42fbd73d951db4694494c5acfa19dd8":[3,2,2,7,0], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#ggaa30dd03665bdc1134233e8e2b1631f0aa929a32b2615c7c54efa382f06e901cc0":[3,2,2,6,0], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#ggaa30dd03665bdc1134233e8e2b1631f0aae2e38e76a2477e68f2685b403bdeb9a9":[3,2,2,6,1], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#ggaa30dd03665bdc1134233e8e2b1631f0aaee266782cacb431c8623f7276063228b":[3,2,2,6,2], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__api__t":[3,2,2,3], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__callback__args__t":[3,2,2,0], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__cfg__t":[3,2,2,2], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__instance__t":[3,2,2,4], -"group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__status__t":[3,2,2,1], -"group___i_n_t_c___i_r_q.html":[3,1,3], -"group___i_n_t_c___i_r_q.html#a54e8132da6a0a3e951c50e71cf10d90b":[3,1,3,0,3], -"group___i_n_t_c___i_r_q.html#aa4a57502905a2ee4b4f45d7e7514f1de":[3,1,3,0,0], -"group___i_n_t_c___i_r_q.html#ac51a182b3e008a22c06576a5d7e83ce3":[3,1,3,0,2], -"group___i_n_t_c___i_r_q.html#afb8eedbc54d5d2b44e6f7392a1e375c1":[3,1,3,0,1], -"group___i_n_t_c___i_r_q.html#ga40d3aae06a43698ad595661ba287c279":[3,1,3,1], -"group___i_n_t_c___i_r_q.html#ga72be4cc60c1dbd8e2924568cf4cfb7ba":[3,1,3,2], -"group___i_n_t_c___i_r_q.html#gab5e021772ee4e4e203ae1f6190a690e0":[3,1,3,3], -"group___i_n_t_c___i_r_q.html#gace7f959c11f27f74e34702079aec5fac":[3,1,3,5], -"group___i_n_t_c___i_r_q.html#gaf37cb360e6d2cf2a02fd27351f03c9b4":[3,1,3,4], -"group___i_n_t_c___i_r_q.html#structintc__irq__instance__ctrl__t":[3,1,3,0], -"group___i_o_p_o_r_t.html":[3,1,4], -"group___i_o_p_o_r_t.html#ga01fe1fa97720d982173bf110032fa21f":[3,1,4,6], -"group___i_o_p_o_r_t.html#ga1b17ca2e38acde207881e7e4ba2a7e28":[3,1,4,9], -"group___i_o_p_o_r_t.html#ga24938047dccc62c4426ff543489454de":[3,1,4,2], -"group___i_o_p_o_r_t.html#ga31825f3f0295317e5b446d74f791cd68":[3,1,4,14], -"group___i_o_p_o_r_t.html#ga383b2f8df036fceeb7c5344c5654d2c3":[3,1,4,18], -"group___i_o_p_o_r_t.html#ga3a0a7f66458384069f25931ecb83840e":[3,1,4,1], -"group___i_o_p_o_r_t.html#ga3daa7097b08c7f623a741e2e481cf89f":[3,1,4,4], -"group___i_o_p_o_r_t.html#ga89947e3a2708547f57c5fc020b45c777":[3,1,4,16], -"group___i_o_p_o_r_t.html#ga8d3f8c4c90241587fee076b6fb0623ff":[3,1,4,12], -"group___i_o_p_o_r_t.html#ga91d4fde6e5f7cdf57b99af5b5f89f1cc":[3,1,4,3], -"group___i_o_p_o_r_t.html#gaa561f3c4df61925e4c24b420b78a5583":[3,1,4,7], -"group___i_o_p_o_r_t.html#gab518fc544fe2b59722e30bd0a28ef430":[3,1,4,5], -"group___i_o_p_o_r_t.html#gab83a07936c37ad904c329f8209d735e1":[3,1,4,10], -"group___i_o_p_o_r_t.html#gab84c08b8ac66d18c5636ebc772133e77":[3,1,4,13], -"group___i_o_p_o_r_t.html#gacfd358d1a3bbaa2c6bbc980664cd2d30":[3,1,4,17], -"group___i_o_p_o_r_t.html#gadb3ad72c9add6d73eb896c58c36f34ee":[3,1,4,8], -"group___i_o_p_o_r_t.html#gae310ec091b58570972ea46f1f263985d":[3,1,4,11], -"group___i_o_p_o_r_t.html#gaee86fd299af255bc3020d38d691db7b6":[3,1,4,15], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea008601cafccc5ef423b7b0fa2f10e774":[3,1,4,1,9], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea01acb4cdb777dba092b2a380406c03fe":[3,1,4,1,107], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea03ce087f738cf60211d1b784d2104298":[3,1,4,1,89], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea06732f1dfb71eb77e409a304e9e07dd5":[3,1,4,1,78], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea09fb47b073ce0bc40744acb625938fcd":[3,1,4,1,132], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea0c7644372a96f31edee311d1a3a8b2f2":[3,1,4,1,11], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea0e30454819b72aefa2250971389f2765":[3,1,4,1,163], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea11ccfc96a5b692f76fe8438000a4ee1c":[3,1,4,1,82], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1215ed3fe9e45dc1fed620151a4c0fac":[3,1,4,1,77], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea144be6f5fc2b813888b674368ec9f39a":[3,1,4,1,147], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea16d2b07cec666834a1ffca8c722dd575":[3,1,4,1,127] +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab4d640dac1a6dff63f33c79ee1e20c9e":[3,0,2,3,52], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab5b1771adf3821c23b1c4cfbeea5b4f5":[3,0,2,3,74], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab951cf766f9cd671ae093a141bc0c49a":[3,0,2,3,26], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaba0a89ecb1ad6357f0ca6ca8067ff000":[3,0,2,3,83], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaba9b7c124ac20c50a71563d64a068fc9":[3,0,2,3,161], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabaaa47451e1390c478c5b2a1725e6496":[3,0,2,3,27], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabc8eb75642cdbdaac75d88a34278250b":[3,0,2,3,69], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabcc1e97ac8b56e357b24ec536ddb4269":[3,0,2,3,148], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabccd7e7760466f8c666ae02e8d84267e":[3,0,2,3,128], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabfeca2fc1cd38d80e5e31eb3c5032b83":[3,0,2,3,108], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac17f65dbf85a6c6e746f1bf21aa934db":[3,0,2,3,71], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac2479bdb7c292438a9d7c3dd4f48a16a":[3,0,2,3,42], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac300c1ff8aaf37d2d3c840341888909a":[3,0,2,3,106], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac47b0fc7594eb9f9b3b8b8ad31b464ec":[3,0,2,3,47], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac53d38f374d54699a1622468faedc544":[3,0,2,3,70], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5d15277bbd25881faf865b00f8c46c1":[3,0,2,3,109], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5e1dcfb012ca07ec05c7a5da14ad055":[3,0,2,3,138], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5e49717d4d34dea314976288c20c6ee":[3,0,2,3,110], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5f9f37be21799183925449eda63b433":[3,0,2,3,80], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac76bc2a911b588e27633978b1fe3f3f4":[3,0,2,3,7], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aacaf9e71dadad94b9b321585c69de0cd1":[3,0,2,3,94], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaceb466e44e04e3b0ab04a7f10003a8be":[3,0,2,3,10], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aacf43fded0d1c0e1888ec9ae765ddf5f2":[3,0,2,3,11], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad20c513c1e1b64b683255e3b3b34b09a":[3,0,2,3,32], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad24ad8bbfa5f6d10db6ff8dc75eadef5":[3,0,2,3,31], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad2f6c4dec46159cddb6d967a551c7c2a":[3,0,2,3,139], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad47cbb33ca5c9f12ee8dca084e3062d3":[3,0,2,3,18], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad77d8a140615854897936e80b31f0670":[3,0,2,3,162], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad9a5407f94f35c91c7d98c0c91ffd975":[3,0,2,3,72], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadab728bf7f83ae6d642836403d5d2dc1":[3,0,2,3,43], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadb3e4e605bcb1d788367185e4058982f":[3,0,2,3,21], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadc72aebfb0e4a967a56c0e6b9d00ef18":[3,0,2,3,68], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadd39c324258c968a575e24a4fa7ff354":[3,0,2,3,78], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aade0f69819cb635c9127516bcb86f5886":[3,0,2,3,136], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae35842723dba01d6ced15e6349ad2d8e":[3,0,2,3,36], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae3e273b0a415a41e1f4e3ae91817c186":[3,0,2,3,16], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae3f2fd01c62e1ae8522ed5137ad07e5e":[3,0,2,3,103], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae4d19f207d3548baf4e742bfca68ae46":[3,0,2,3,102], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae758bfc092956cb39f9013b921753657":[3,0,2,3,144], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae8415d4c07fce74af51a792896f3777e":[3,0,2,3,75], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae97fc09171edc1a3c841cab7a1020fb2":[3,0,2,3,125], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae9d15e574de9e35f7e1197c95d05dad9":[3,0,2,3,13], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaea414f512f3b2c84888d93d506fbe172":[3,0,2,3,5], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaeaedf55bf5c303fdb8fd62b7df65f2e4":[3,0,2,3,143], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaeb156edee3b3c89b68b51df1f396a61f":[3,0,2,3,9], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaef51c0ad05848a82f97fa49a29f66f37":[3,0,2,3,145], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaeffcc1d1f99236ae009d76eab5e0913d":[3,0,2,3,96], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf0ecf908b8d4ce84a33b69ca4fdabca4":[3,0,2,3,87], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf117a1aa77a1a547745adf145d8dc77e":[3,0,2,3,57], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf2cf666df832a706dfdd973aac8406d8":[3,0,2,3,134], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf4eff0573f5c549da8c41d0b38166e66":[3,0,2,3,58], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf8c5571fbe78f2c5e6a767c13aec041c":[3,0,2,3,63], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf98bbb6311738366fe772c4a0e320824":[3,0,2,3,116], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf9970a4d1a41e6482fad460393a196a1":[3,0,2,3,22], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafbb3e071ee0dcccf61805c9bebb7befa":[3,0,2,3,117], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafbc2d3122913859d09d249bf264d4136":[3,0,2,3,141], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafc63a732535ea65c522c06582757d4bb":[3,0,2,3,114], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafd917ebff207c1b9456898a143d10c38":[3,0,2,3,124], +"group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaff015065db131ce31c3e483ab8e9bb38":[3,0,2,3,105], +"group___b_s_p___i_o.html#ga0eaa3fb56a6c45bb8725d7ccc3c7c67e":[3,0,2,9], +"group___b_s_p___i_o.html#ga12a7886e4da364860e1bd6236cdba973":[3,0,2,22], +"group___b_s_p___i_o.html#ga1366a1a0609b52482af37acf4b1354b8":[3,0,2,20], +"group___b_s_p___i_o.html#ga273b018bc22b835afd630e6b46a3cc4e":[3,0,2,24], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46e":[3,0,2,2], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea002722322e8a845391a87dcc7eb9cc45":[3,0,2,2,16], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea0650c44272c455fb11576525fe44580f":[3,0,2,2,45], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea0a6ffd6c20eaaa32409b9ca0dee293e8":[3,0,2,2,10], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea11fccb10e338ed526b52e66f3b0e6f92":[3,0,2,2,0], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea1465c0a3f756e587525c11d00e3883f9":[3,0,2,2,1], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea16bc2ebb264e5d30df602590dd0d4736":[3,0,2,2,42], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea175a84c2aa70454b4e6d4ab1c1bf09a6":[3,0,2,2,19], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea20eb52e6abf9b112dc5af6931984dec1":[3,0,2,2,5], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea21028efff67589ec637595607faf5c60":[3,0,2,2,44], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea2657a0bb753f5a81301eda96ca631aa6":[3,0,2,2,28], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea26ec6accacb5dbb180a419780a88afe0":[3,0,2,2,21], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea2873610326361727fdadf7c95b1eb66f":[3,0,2,2,22], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea322678e3244fafb07badc6d529c62995":[3,0,2,2,36], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea35098d51c380e353369db8e0881952a6":[3,0,2,2,6], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea397323ae563e9bd7c503dc1c675fa395":[3,0,2,2,15], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea3f042a23f398537b95fd88334a3b4d9e":[3,0,2,2,8], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea40a254bc0f42f443d78c717bed44a682":[3,0,2,2,24], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea41155aec80e8d3232eee7e5bd8576425":[3,0,2,2,48], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4654504be6ba72162f37014a9d73037c":[3,0,2,2,34], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4944568317a214298b34be9bc3f26e48":[3,0,2,2,2], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4a80f7746adba5117728d74884967ff0":[3,0,2,2,23], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4c75f0f2e7ca9e74a85f3b382e830b69":[3,0,2,2,31], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4ea757a862c98494a0aaad6369a1f990":[3,0,2,2,29], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea566070ed168bf63dc412bdaf12d939e3":[3,0,2,2,27], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea584e14f51456fd94e7c7f0a9ed66b2bf":[3,0,2,2,9], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea58562456ff71481a2de2866016b017f2":[3,0,2,2,41], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea5e76257ac865ad0481c5ed353a4212c9":[3,0,2,2,40], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea5f6e2b131b2f5b5dbd759533379d6105":[3,0,2,2,25], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea6bf1e63d623c3adb59409fcc5c540be7":[3,0,2,2,33], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea6d0ed5fd6b8112e4fe087bd4211e9cf8":[3,0,2,2,37], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea775af46386b8ac7e29159624b9224295":[3,0,2,2,14], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea78ad7bb48a9750a3ba08672b6baeef7e":[3,0,2,2,12], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea7faeb64a7250a38ddbc971bc030b07cb":[3,0,2,2,30], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea8807e320a0f7ce2bbc6b61cf25a0b072":[3,0,2,2,4], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea8e4609c67698b2386ef7db4443b90bbb":[3,0,2,2,46], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea97a779742ba7c411dfa7edb66e9569e7":[3,0,2,2,3], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea994e790d360e9af8b4c681e3ce0bec74":[3,0,2,2,39], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eab007ee52e771b0d17a8e54fa3fb6e93b":[3,0,2,2,7], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eab5a70226eac6e8cdcdbf5d248637a917":[3,0,2,2,32], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eabb06fb72ab7089198e72a6fea4a109e2":[3,0,2,2,20], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eabc16d0f819ca9bb6eb8638e9b5e6c99e":[3,0,2,2,26], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eabf85020df009d581e4fadb6e8a1dbddb":[3,0,2,2,11], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eacee8ac33d0115b3997767c64527115ab":[3,0,2,2,38], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ead05a1353527cf2773715624fabd00a00":[3,0,2,2,17], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ead099a4e210a23e9a0370fd9a4cb13f3f":[3,0,2,2,43], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ead500583b0bed23efc4b23cfaf604dfdb":[3,0,2,2,47], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eae0f99efe8ef380f164802966936f7847":[3,0,2,2,13], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eae6713d42094e3ab520aabae92ebd40bc":[3,0,2,2,18], +"group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eaf9d2db9d60f629faac9184c294f65984":[3,0,2,2,35], +"group___b_s_p___i_o.html#ga33cef14f93543bcb3531b4f2e377c5c4":[3,0,2,17], +"group___b_s_p___i_o.html#ga3c75c9c53842401896a9feb2e969c5b0":[3,0,2,29], +"group___b_s_p___i_o.html#ga45a10c059c82e2062c0b72fa801dd78b":[3,0,2,1], +"group___b_s_p___i_o.html#ga583ef49050efabf390c97e6e4633e173":[3,0,2,23], +"group___b_s_p___i_o.html#ga5909e53671d51b521963bb4a9c5bb961":[3,0,2,6], +"group___b_s_p___i_o.html#ga59bb3fd83a257bd92926ea266faa9fd8":[3,0,2,25], +"group___b_s_p___i_o.html#ga65987c1da1d49f85463de102d5d24c2e":[3,0,2,14], +"group___b_s_p___i_o.html#ga6764c3fac52569cadd44b83a6d3f432d":[3,0,2,16], +"group___b_s_p___i_o.html#ga78e68e2247154764cd7d387d3b191095":[3,0,2,13], +"group___b_s_p___i_o.html#ga7a9217abd402bee215bab2874db8dbcd":[3,0,2,5], +"group___b_s_p___i_o.html#ga96797df60510eb9bc4a73613de51fae5":[3,0,2,11], +"group___b_s_p___i_o.html#ga9d18d53cf22913ba5379a9b2b78f8af9":[3,0,2,21], +"group___b_s_p___i_o.html#gaa07b15ea5255e2d6ad2a8fb9231adcda":[3,0,2,28], +"group___b_s_p___i_o.html#gab4ef0cc3fce421d48310f23c614aadc0":[3,0,2,0], +"group___b_s_p___i_o.html#gab5aab592b5fbbfa18d542c0812850b98":[3,0,2,19], +"group___b_s_p___i_o.html#gabb6374b9eb754bff909bb9b0d25a04fb":[3,0,2,15], +"group___b_s_p___i_o.html#gac10820a16ee9dcbe7fbbd21ad81eee9f":[3,0,2,7], +"group___b_s_p___i_o.html#gac4cc2c33eed8a21f90fac99d323a2b85":[3,0,2,10], +"group___b_s_p___i_o.html#gaca40cd8c80dc5bf04d65d3d5db9e3d7c":[3,0,2,8], +"group___b_s_p___i_o.html#gad0c359892ab6323f72558fb6f0efbb39":[3,0,2,4], +"group___b_s_p___i_o.html#gaea02bfef9058ac480e59f4175124c4da":[3,0,2,27], +"group___b_s_p___i_o.html#gaee8fdb90b591063571f73dc23d4306b4":[3,0,2,26], +"group___b_s_p___i_o.html#gaf63bd80b976004bd5ed7fd251fcdf1b4":[3,0,2,12], +"group___b_s_p___i_o.html#gga0eaa3fb56a6c45bb8725d7ccc3c7c67ea188654c0888f5e6daa99f0f456128ce4":[3,0,2,9,1], +"group___b_s_p___i_o.html#gga0eaa3fb56a6c45bb8725d7ccc3c7c67ea74ec767baac2681f30afba30a09b80f5":[3,0,2,9,0], +"group___b_s_p___i_o.html#gga0eaa3fb56a6c45bb8725d7ccc3c7c67eaaadd11c1476569d301871c45eae8d9eb":[3,0,2,9,2], +"group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78ba682fd05ca96b45840c4cd5d9fd35e405":[3,0,2,1,3], +"group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78ba73a617ab836493568a0cf0aa4ba86484":[3,0,2,1,1], +"group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78bab665c3052bb5373b7821ab8898ee859b":[3,0,2,1,2], +"group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78bafea764c1f74ea85192b085e96d1b3684":[3,0,2,1,0], +"group___b_s_p___i_o.html#gga5909e53671d51b521963bb4a9c5bb961a9a5b3ea4f1555314b07a3bf5567d96b5":[3,0,2,6,0], +"group___b_s_p___i_o.html#gga5909e53671d51b521963bb4a9c5bb961ad6d758c60ce16e34187d1c3ea956c983":[3,0,2,6,1], +"group___b_s_p___i_o.html#gga65987c1da1d49f85463de102d5d24c2ea018ff64d40ae82d9f9014b637ba79869":[3,0,2,14,2], +"group___b_s_p___i_o.html#gga65987c1da1d49f85463de102d5d24c2eaf8967b77658e57030b8e3b5611049e09":[3,0,2,14,1], +"group___b_s_p___i_o.html#gga65987c1da1d49f85463de102d5d24c2eafc7271d2760ab1dcd2e368e2eb7f9a7a":[3,0,2,14,0], +"group___b_s_p___i_o.html#gga78e68e2247154764cd7d387d3b191095a32152264d3d4ea0b5e8f3e4bb36346a8":[3,0,2,13,0], +"group___b_s_p___i_o.html#gga78e68e2247154764cd7d387d3b191095a4e41231154d741945cb439385369bdf3":[3,0,2,13,1], +"group___b_s_p___i_o.html#gga78e68e2247154764cd7d387d3b191095a9305c0e423f1fbafdd0e0e19e08bdbae":[3,0,2,13,2], +"group___b_s_p___i_o.html#gga7a9217abd402bee215bab2874db8dbcdac1123d8c4918b71283ddd440f9f6b679":[3,0,2,5,1], +"group___b_s_p___i_o.html#gga7a9217abd402bee215bab2874db8dbcdadf0b3becd8ccf61e2336c87d51ebdb92":[3,0,2,5,0], +"group___b_s_p___i_o.html#gga96797df60510eb9bc4a73613de51fae5a2a654e5a38c212f306093f5e60218a22":[3,0,2,11,0], +"group___b_s_p___i_o.html#gga96797df60510eb9bc4a73613de51fae5a96490fa59d311791525aa664edd21abd":[3,0,2,11,1], +"group___b_s_p___i_o.html#ggab4ef0cc3fce421d48310f23c614aadc0abb31064742440cdbdd638330a1cf7a9f":[3,0,2,0,0], +"group___b_s_p___i_o.html#ggab4ef0cc3fce421d48310f23c614aadc0acf9a28559b5a18ed9b8af4c2a7df10ef":[3,0,2,0,1], +"group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fba0b0d404e8b95a60f5f6f8ce3f3b71ff4":[3,0,2,15,2], +"group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fba13b74446c67d06c3feffa96cd34a6dc3":[3,0,2,15,3], +"group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fbad943f5284b3332ff337bc791ab36ffd4":[3,0,2,15,1], +"group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fbaf7dda67eeadcf51f16aff39c09f7614b":[3,0,2,15,0], +"group___b_s_p___i_o.html#ggac10820a16ee9dcbe7fbbd21ad81eee9fa7b2e7dbd3b7011e86d86d71652eb843a":[3,0,2,7,1], +"group___b_s_p___i_o.html#ggac10820a16ee9dcbe7fbbd21ad81eee9fa87d2f4e20a62d305f5a9cd99e28093b1":[3,0,2,7,0], +"group___b_s_p___i_o.html#ggac4cc2c33eed8a21f90fac99d323a2b85a00b60308d9f46162d50bb8014fe345d0":[3,0,2,10,0], +"group___b_s_p___i_o.html#ggac4cc2c33eed8a21f90fac99d323a2b85a341c63122ad909d8ea4a615bdb3a9f8d":[3,0,2,10,1], +"group___b_s_p___i_o.html#ggaca40cd8c80dc5bf04d65d3d5db9e3d7ca37e1061cff55bbab7d5ddae4071322dd":[3,0,2,8,2], +"group___b_s_p___i_o.html#ggaca40cd8c80dc5bf04d65d3d5db9e3d7ca731b6ae8493cc93ec326574439aa983d":[3,0,2,8,0], +"group___b_s_p___i_o.html#ggaca40cd8c80dc5bf04d65d3d5db9e3d7caf71bc73917bb7416833e3dca8a41a1b0":[3,0,2,8,1], +"group___b_s_p___i_o.html#ggad0c359892ab6323f72558fb6f0efbb39a78721ea751aeb12179ca343858f91c7b":[3,0,2,4,0], +"group___b_s_p___i_o.html#ggad0c359892ab6323f72558fb6f0efbb39a982209b33546c7b97b98e0e182fee582":[3,0,2,4,1], +"group___b_s_p___i_o.html#ggaf63bd80b976004bd5ed7fd251fcdf1b4a36240372d534ab9cbe23287aa4020805":[3,0,2,12,1], +"group___b_s_p___i_o.html#ggaf63bd80b976004bd5ed7fd251fcdf1b4a7bfb9e2a71ee2dcc6910de37e977ccc8":[3,0,2,12,0], +"group___b_s_p___m_c_u.html":[3,0,1], +"group___b_s_p___m_c_u.html#ga006a2ccfdf5e149ab69755b3aceb5379":[3,0,1,30], +"group___b_s_p___m_c_u.html#ga054640ac1e1672fbe931e334358fcf0c":[3,0,1,12], +"group___b_s_p___m_c_u.html#ga06a1c99445f01a3287e05cddacbe2e69":[3,0,1,28], +"group___b_s_p___m_c_u.html#ga077b44c9ad717bbb1ef2304599995397":[3,0,1,15], +"group___b_s_p___m_c_u.html#ga0b8dc4e44bb023105461f1563d302eea":[3,0,1,32], +"group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f":[3,0,1,69], +"group___b_s_p___m_c_u.html#ga1273625a09a1d570dea0c5189f6b5fe8":[3,0,1,79], +"group___b_s_p___m_c_u.html#ga19696083f874c068c503afc369b343c5":[3,0,1,18], +"group___b_s_p___m_c_u.html#ga22d14eac2a0c6e915d5e46fcdb19ebd1":[3,0,1,14], +"group___b_s_p___m_c_u.html#ga23338e06b1e1537017ef4f3f94cda354":[3,0,1,40], +"group___b_s_p___m_c_u.html#ga23338e06b1e1537017ef4f3f94cda354":[3,0,1,50], +"group___b_s_p___m_c_u.html#ga2804a023941a956288c32ad08b2cf59e":[3,0,1,71], +"group___b_s_p___m_c_u.html#ga31421c06dc6abf9bf8fdc5e2317eb011":[3,0,1,26], +"group___b_s_p___m_c_u.html#ga357da2217bfe606d9c18d5c36ab45df6":[3,0,1,13], +"group___b_s_p___m_c_u.html#ga3b2dc069b8a84fc43d0f495a785bcdd0":[3,0,1,27], +"group___b_s_p___m_c_u.html#ga3cbe4efd62cee1db0288da2045d21319":[3,0,1,3], +"group___b_s_p___m_c_u.html#ga3de23334bfd3a83d11de893a68d8e03f":[3,0,1,5], +"group___b_s_p___m_c_u.html#ga42dc365010b8db945264f8a51c8851ae":[3,0,1,31], +"group___b_s_p___m_c_u.html#ga436fdb330cf3ddb8918bdc21ace3d7df":[3,0,1,8], +"group___b_s_p___m_c_u.html#ga44d44e7bd7f7e06f05b1f420479d3e74":[3,0,1,65], +"group___b_s_p___m_c_u.html#ga49c8711ce69459021327e37557a1a9f1":[3,0,1,60], +"group___b_s_p___m_c_u.html#ga4b9ba26ad9063f200e6b8e3a7c33959c":[3,0,1,33], +"group___b_s_p___m_c_u.html#ga4e0c522c1bb26af24accaf20e6b87d12":[3,0,1,61], +"group___b_s_p___m_c_u.html#ga4e36b09bee515ff1b813e7ba0412e60d":[3,0,1,41], +"group___b_s_p___m_c_u.html#ga4e36b09bee515ff1b813e7ba0412e60d":[3,0,1,51], +"group___b_s_p___m_c_u.html#ga4f65c534e6da6ae5733380827f882898":[3,0,1,42], +"group___b_s_p___m_c_u.html#ga4f65c534e6da6ae5733380827f882898":[3,0,1,52], +"group___b_s_p___m_c_u.html#ga50cae0c65c54074c32d30eb4108d9a09":[3,0,1,78], +"group___b_s_p___m_c_u.html#ga50ee7397627ca4c3f0858d6cb9696d90":[3,0,1,17], +"group___b_s_p___m_c_u.html#ga577e9b015e1b0794934fa4f2b229e52f":[3,0,1,38], +"group___b_s_p___m_c_u.html#ga577e9b015e1b0794934fa4f2b229e52f":[3,0,1,48], +"group___b_s_p___m_c_u.html#ga5cd95eba95dc2c1bad0bf05398c9779c":[3,0,1,70], +"group___b_s_p___m_c_u.html#ga6197c46ef462451012619c6c95a04322":[3,0,1,20], +"group___b_s_p___m_c_u.html#ga65c99544cc40603a2259ca9403f0f42c":[3,0,1,29], +"group___b_s_p___m_c_u.html#ga662624feaff3850ffbe7fb118ab140d7":[3,0,1,68], +"group___b_s_p___m_c_u.html#ga6a8598c7564c37b201a19003d188de7f":[3,0,1,73], +"group___b_s_p___m_c_u.html#ga6c36d1d91a0e4e4a8373b2075f682145":[3,0,1,2], +"group___b_s_p___m_c_u.html#ga6c82e0b49d6583b7cb16bc15026ecfff":[3,0,1,4], +"group___b_s_p___m_c_u.html#ga6fe6dc3c0813eeae8665430a31c005b4":[3,0,1,57], +"group___b_s_p___m_c_u.html#ga6fe6dc3c0813eeae8665430a31c005b4":[3,0,1,58], +"group___b_s_p___m_c_u.html#ga72e70676360e6a4d753a8d235e6b93a2":[3,0,1,56], +"group___b_s_p___m_c_u.html#ga740c87d0bffe0692e1cdae0b96ab9ee9":[3,0,1,63], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950":[3,0,1,54], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a17e007a04505fb7a7614067e3d5e7447":[3,0,1,54,6], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a17e007a04505fb7a7614067e3d5e7447":[3,0,1,54,20], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a308404027f3f10d27b8cb240dec71244":[3,0,1,54,36], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a3403f62d1f8cc29a868e5da9a86a46f7":[3,0,1,54,3], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a3403f62d1f8cc29a868e5da9a86a46f7":[3,0,1,54,17], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a372bbc7267801454ac9a1bf3677ef60c":[3,0,1,54,10], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a372bbc7267801454ac9a1bf3677ef60c":[3,0,1,54,25], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a41268ed3e6b973a85d0dcabaf5d1abf2":[3,0,1,54,31], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a4704af5ed32cbd6532fd28a44d0d028e":[3,0,1,54,4], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a4704af5ed32cbd6532fd28a44d0d028e":[3,0,1,54,18], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a494addfd4ceb1fabb0bea0893b444641":[3,0,1,54,9], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a494addfd4ceb1fabb0bea0893b444641":[3,0,1,54,23], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a55e1c8e5259f5bc822c320abb058142b":[3,0,1,54,28], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a66f3b5b31f294d50f964990b205cb92b":[3,0,1,54,33], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a7e7705b2505050da600c075db4723581":[3,0,1,54,13], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a837b8847e248ed296512f20813008cd5":[3,0,1,54,5], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a837b8847e248ed296512f20813008cd5":[3,0,1,54,19], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a83fe18962b058df65adb9ce089719ebb":[3,0,1,54,1], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a83fe18962b058df65adb9ce089719ebb":[3,0,1,54,15], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a8e412d35ce1643636ba6bc355914c5e0":[3,0,1,54,32], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a9b738d0f557574bb4d659abc2dc0fbf8":[3,0,1,54,29], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950aacbead3e070986a6c40c32d2485d5c4e":[3,0,1,54,11], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950aacbead3e070986a6c40c32d2485d5c4e":[3,0,1,54,26], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950aaff0832d2687261b54f54189c224db06":[3,0,1,54,34], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950abfff39a6b8ca24d18832ad7153cc0880":[3,0,1,54,8], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950abfff39a6b8ca24d18832ad7153cc0880":[3,0,1,54,22], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ac49bfca1e1ccf88f53586fc28bd54250":[3,0,1,54,27], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acbce1d6d73ea0d9a18c42b2389c69888":[3,0,1,54,7], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acbce1d6d73ea0d9a18c42b2389c69888":[3,0,1,54,21], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acfc9bb8ff007a7b82cf4fd845dfce053":[3,0,1,54,2], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acfc9bb8ff007a7b82cf4fd845dfce053":[3,0,1,54,16], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ad8802ee74d9cafca9a1c4d5faea8e253":[3,0,1,54,12], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ad8802ee74d9cafca9a1c4d5faea8e253":[3,0,1,54,30], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950adf8c428fc9e6594881035cfc67a66373":[3,0,1,54,24] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index b97ed35..3d56db7 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,253 +1,253 @@ var NAVTREEINDEX3 = { -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea188e17e95c4825d3604cfe19e60ac21f":[3,1,4,1,122], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1e9e542e62fb69020948426b6175570c":[3,1,4,1,159], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1f88aed824ad7ccc4e75d3534d8dce7f":[3,1,4,1,36], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1f9e0e7feeda6f22885010e0b6ad4483":[3,1,4,1,133], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2232cca0e019d0de7c090e0a4f46b040":[3,1,4,1,3], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea24ad0afca1280d4bdaba9d099cc04f1e":[3,1,4,1,50], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2517ff700ae9cbd08c9afa4bf2c6a5ba":[3,1,4,1,76], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea25f5bd78838dffd5c27b17afb70fa691":[3,1,4,1,116], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea268e2121d6a01e09280e75fa1ada4d3a":[3,1,4,1,69], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2857769c0ab24657b2319590a25ec47a":[3,1,4,1,33], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea28d2b880c59b99ca445fdcd5cbce2683":[3,1,4,1,119], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2a58348e464d6088768d03d709d8a26c":[3,1,4,1,34], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2a8900e165fe1de4b6b842c2526d5e83":[3,1,4,1,42], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2bba85a684b1b2acad5488f8aa9a0b49":[3,1,4,1,54], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2da4f3380840124904c73877d5d9f947":[3,1,4,1,19], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea34d2b60eeb41747629287e896ff2e023":[3,1,4,1,61], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea35b4a0ced608f3e7d26f9e7bc046b796":[3,1,4,1,113], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea35c44d77c4fd2847baaf885a720bb5a8":[3,1,4,1,72], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3675fc32067ccd2882654241b29e62de":[3,1,4,1,40], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea37557bcc8dbdc94c0ec3384e4b951e46":[3,1,4,1,121], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3b2d043c3624ad44607cfff3d830508f":[3,1,4,1,84], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3c4788599942e153b3248cde5f1d9cc1":[3,1,4,1,144], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3cacfd8ce91b532493d14c75c7075a03":[3,1,4,1,46], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3d09e5b1493cc84079d401d2e7c357d5":[3,1,4,1,48], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3d8aad86bb03fe49685ce30174d42629":[3,1,4,1,90], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea419e03f7c7ca6e7e8c32710146ef628c":[3,1,4,1,15], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4317b9d3d9ac6a4648cd4baffd7c2f27":[3,1,4,1,136], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea43352cc8543ee207ea9d59a9a61cea97":[3,1,4,1,2], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea434f1230c094bb875142ba381405c771":[3,1,4,1,60], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea48b61b705d3aeb5b03e79a6affe47c46":[3,1,4,1,161], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea48de60bd8662827861ae919950ff59a5":[3,1,4,1,145], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea49442ae10c29c3813e551bfb47857c3a":[3,1,4,1,83], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4a316ebb9212390c839de79bf78fb699":[3,1,4,1,23], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4d53f3410d7a514538dc6133769182ca":[3,1,4,1,142], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4edac109686b07e6e4f372f2e51e80e0":[3,1,4,1,39], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4f113e86f2c0cb4e67e7e58cbedbbafc":[3,1,4,1,138], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5093fb5b46c33af09c41b85aa6357edd":[3,1,4,1,135], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea51bd16052f2785769c23c64d60bac96c":[3,1,4,1,38], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea520361cb7a3c75b3b53de8064c568081":[3,1,4,1,26], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea52513b77dbaf4f5b8960a87a81a06e79":[3,1,4,1,27], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5296b9fb15049795284d6f7b06d7adbc":[3,1,4,1,20], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea55123dd39739862f468305f1d80cd696":[3,1,4,1,21], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea55571b3fd29a380dcc685d2a96e7b911":[3,1,4,1,92], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea558ff8f715d38ea04d3eee1632ddea0e":[3,1,4,1,143], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea574b809835bddedd610d50bf74d696e1":[3,1,4,1,5], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5b0b18f88c4783b6bc28b3e7b51e4c03":[3,1,4,1,29], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5bc69a638a2c0de8a9c301288d090335":[3,1,4,1,137], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5dcde61ab3cc4c135683427b8874cbf5":[3,1,4,1,155], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea602aaee12cfedbbd7a45ac52491a931e":[3,1,4,1,104], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea61161beff96648267c82588e10c0a6fa":[3,1,4,1,101], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea61f68231948579e8c2a62470e8fb0a68":[3,1,4,1,126], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea63e82c02108d13c80fe9c63345a342b1":[3,1,4,1,91], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea67387cf0604bf4cd33ad3f2ba4498cc9":[3,1,4,1,139], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6bdb72b4c7d733a09d7fa449a6e82a43":[3,1,4,1,162], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6cb7a1bbfe93cd71b79a9d586268fa57":[3,1,4,1,164], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6d00496a003e48a7d8b1170bafb9157d":[3,1,4,1,102], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6db1f2c8912880f0a5b12de3bc150e7c":[3,1,4,1,105], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6f2d280a974fcb51540e44652a540b7c":[3,1,4,1,63], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea73e637eb4faa0c0306364c7df1af095f":[3,1,4,1,10], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea75ae1e764d349da782bab9cbf1d9ecb0":[3,1,4,1,103], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea75c267849ebce9a4c50430b38915fe5e":[3,1,4,1,131], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea7603fc9dff5daf10f6ea048074d8a3b1":[3,1,4,1,85], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea766a886ad8d781f1e027033bb4728169":[3,1,4,1,7], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea772c204e2baf5217fdb0ec708673b035":[3,1,4,1,70], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea78ae1323844721ac089c94334a2eed20":[3,1,4,1,128], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea818baced7ae6d55d2d9ae53f3fa05727":[3,1,4,1,57], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea82ef8efec0a83b34ead4bc3f43128a6d":[3,1,4,1,41], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea837ea61cf43956e07dac2caf276ea8db":[3,1,4,1,123], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea848a705c8ca2c2633e8f53e020f42015":[3,1,4,1,47], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea856ede443f9ef018a2847711a5f3c92e":[3,1,4,1,134], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85a5b29dc69dbbd49b7c313f0876e668":[3,1,4,1,120], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85b1edd2ae53a6c8fc908cd8d8e32949":[3,1,4,1,52], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85e6369b71fe56afa6d76ff489edd066":[3,1,4,1,109], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85ebd2058b57e8af5d514057de0eb65b":[3,1,4,1,110], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8602d2422a4f422bf4183484822b032a":[3,1,4,1,141], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8f143ad244f73b8f02c3f4eac606935c":[3,1,4,1,71], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8f5be37feb4892e7259c405b9e80cfc8":[3,1,4,1,31], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8f7dc4da027a768087f66e29357decf6":[3,1,4,1,86], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9135241bca61a6acb3c444856b652b69":[3,1,4,1,22], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea93f0a6b6849fcd4e5776d7b73a27de41":[3,1,4,1,79], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9417750d44193bb9c16e528c62c17e51":[3,1,4,1,125], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9476c736ebc3faaf91c4807939a24dee":[3,1,4,1,25], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea964a485a68f15cec5cbea9107d537f30":[3,1,4,1,158], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea96a332bc30621413ab2d9fdfd85563c4":[3,1,4,1,100], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea97a8121677c7b7269587a0f58e1fd207":[3,1,4,1,160], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9863a865ad695de365f91f935d1052fc":[3,1,4,1,112], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea99dff2c1a30315ab757bcc4dd902ff78":[3,1,4,1,30], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9e8641427dce87cbb4b8e94da9988bb6":[3,1,4,1,0], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa0925fbbe23680defb4e6302c0aa2349":[3,1,4,1,66], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa43e0035d6e67601f3e32afe2c866302":[3,1,4,1,1], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa47d77df21bad7b6b52e916e4f778382":[3,1,4,1,17], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa4b7d5b6cd1e1348d889ff4d629def77":[3,1,4,1,55], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa5c2f062b6dc22153c51224f5bf74831":[3,1,4,1,59], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa6c3592451584e70f36ab179635d2f7f":[3,1,4,1,94], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa84fc759a1a78a36a4a23f4ebb194d8f":[3,1,4,1,115], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa92561cb3f93b3f0957bfa8d3b1e1546":[3,1,4,1,146], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaae17894663a054577834088bf4699d84":[3,1,4,1,62], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaae6d884cdb41ce1709161c3bdf9ce945":[3,1,4,1,151], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab18dacb19cfb46999a130cb41b5bd011":[3,1,4,1,24], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab21e3adba1d1c2a7610f65d78a5a2de5":[3,1,4,1,51], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab2667bb41ffb795c8bc65735c2f5d424":[3,1,4,1,156], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab47a9b3b4be29d08e9dfbb455c4ffcce":[3,1,4,1,130], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab52bfe38ab8f85dc73ff58c440224ab5":[3,1,4,1,16], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab567b92c616b560f30e93d16d3391119":[3,1,4,1,108], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab7c4762a756f042c67897dd2c1e01979":[3,1,4,1,37], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eabb4c2bfccb51a7c79562e6e90100f27b":[3,1,4,1,64], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eabc7758254f4520983e755e6657dd3db8":[3,1,4,1,49], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac1e3d1a4944c6d997a33ea1801378cd8":[3,1,4,1,43], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac331aec700b594f3cb5d1f46cf9f37b4":[3,1,4,1,117], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac411c9ef9aa6eec58b0f007ff106dc2d":[3,1,4,1,124], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac4cfe7af0a59bdf8c0fb629e42e9908b":[3,1,4,1,154], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac53340cbc4667d63cb9964a2f3a0ab3a":[3,1,4,1,74], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac8db29b7a712c7a4396332b902f87eab":[3,1,4,1,14], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac9c963ad72529582b6a7c9610c577438":[3,1,4,1,81], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacca4bf7e56b59adf9ef018f42dde6620":[3,1,4,1,65], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaccddb043ca627fb3f174e3c212c021c9":[3,1,4,1,4], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacd8f65d2924a0afc8ce467f8d68e3325":[3,1,4,1,106], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacdf0005bb30c87ca6fe3175d331a9caf":[3,1,4,1,98], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eace68a0576d4a5ff8df48808cfdeb8d98":[3,1,4,1,45], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaceef8d66de036d8243971e09c734745d":[3,1,4,1,80], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacfb029998452b9cb9186499e7057ed70":[3,1,4,1,99], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead1d820e91b2a4527e30edd99baf4ddb5":[3,1,4,1,93], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead42cf49d73c876c64dcab5d7408931df":[3,1,4,1,44], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead6f7b58c3226756f42a3e7683b536b13":[3,1,4,1,13], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead7622903be00b10039f5987e3bf6f8e6":[3,1,4,1,68], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead846eb09dca598f33cb0e67f8f2d5939":[3,1,4,1,96], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadae61ab83263cd30bde872e7d64e5a7e":[3,1,4,1,111], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadb1891675452e2fac89e1191ee42f0e0":[3,1,4,1,152], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadb25625b3e64951140630eb72d8ec9d7":[3,1,4,1,73], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadd6ef9d4c32065ffd10115120f10875d":[3,1,4,1,87], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadddbae4c2e5a5d5984627fc9f218418b":[3,1,4,1,153], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eade503295c3201143266caecb21087c0e":[3,1,4,1,6], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae05c2ca8144ab1655c21d4b4500e95b7":[3,1,4,1,97], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae1efb56949dcafe26fb4533344e05de4":[3,1,4,1,88], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae2c00b6bf6c44eb8b0204dac0733bdc8":[3,1,4,1,148], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae37036d2a5563a74c41d0244d07b1b7c":[3,1,4,1,157], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae7e423a820f12cdf7f716128b4025952":[3,1,4,1,149], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaec9b4eece5b92f63ca357e879d1a5b99":[3,1,4,1,12], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaecc9e48293365e0dd2b321efb6f5d39a":[3,1,4,1,28], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaed350ead2aa5cfc5b02fe968eed69c6e":[3,1,4,1,8], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaefb8b85fc7868573c775a508f79299fb":[3,1,4,1,118], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf0a8acc41485bd9ee6b1fd7477bae513":[3,1,4,1,35], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf0d44ed8ffe15d0e262f3acc77033796":[3,1,4,1,114], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf0f0d0ddab21c0d394a1fea1d6255815":[3,1,4,1,75], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf30a0d759b8157b155be988101c69710":[3,1,4,1,67], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf3fb451820b03a63a245bc2d30c73ab3":[3,1,4,1,150], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf4e2eb49a1d436176d92a273cf201e55":[3,1,4,1,129], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf5a5f64311459a33954c219ccf68ba86":[3,1,4,1,140], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf7c2e37ea2ed8dbf8bd1ce4d5639c7cf":[3,1,4,1,53], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf7f5fc685631de387d29708b82032d42":[3,1,4,1,18], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf804b7f7a2d663c0ec96f1fc04d87c8b":[3,1,4,1,56], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf8a2fbf190a7253cf15b62fb4b1ed250":[3,1,4,1,58], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eafe21679da09abea718bb09af6174304e":[3,1,4,1,32], -"group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaff56dcaf2d1f75b737a2148013ae7cb9":[3,1,4,1,95], -"group___i_o_p_o_r_t.html#structioport__instance__ctrl__t":[3,1,4,0], -"group___i_o_p_o_r_t___a_p_i.html":[3,2,3], -"group___i_o_p_o_r_t___a_p_i.html#a024de5a09c01dd710ba447a9ffa3271b":[3,2,3,1,1], -"group___i_o_p_o_r_t___a_p_i.html#a15e2e35a9ea2163402cb38c29aaa6399":[3,2,3,2,12], -"group___i_o_p_o_r_t___a_p_i.html#a16b14ace200c93eabd87c57f2269e8fa":[3,2,3,2,6], -"group___i_o_p_o_r_t___a_p_i.html#a1efa98e218609e4171542ebfae213765":[3,2,3,3,2], -"group___i_o_p_o_r_t___a_p_i.html#a52c0dcf252f3502911337a9f99e17986":[3,2,3,2,5], -"group___i_o_p_o_r_t___a_p_i.html#a5a71c5cffcdcacab2425d46603451cf2":[3,2,3,2,16], -"group___i_o_p_o_r_t___a_p_i.html#a5e6a7a38da64dabdfc229f1727616bd0":[3,2,3,0,1], -"group___i_o_p_o_r_t___a_p_i.html#a6992c39238d4c6d0ed1469ff2e13492b":[3,2,3,2,7], -"group___i_o_p_o_r_t___a_p_i.html#a72162206113e825e83aa709c106cd94e":[3,2,3,2,3], -"group___i_o_p_o_r_t___a_p_i.html#a81b125b5439058c024dbac0f57405f69":[3,2,3,2,1], -"group___i_o_p_o_r_t___a_p_i.html#a88e49491b8dabcddac71cf6d2f0fb213":[3,2,3,2,8], -"group___i_o_p_o_r_t___a_p_i.html#aad4fb5941cd80d4ed9db0262f29b30cf":[3,2,3,2,11], -"group___i_o_p_o_r_t___a_p_i.html#ab369548c3b66d80747df3ed29ca336f0":[3,2,3,2,13], -"group___i_o_p_o_r_t___a_p_i.html#ac0de7591b4c5680e87ab2d219e2748c2":[3,2,3,2,15], -"group___i_o_p_o_r_t___a_p_i.html#ac962e87038418a6a525ac9f763687c19":[3,2,3,2,2], -"group___i_o_p_o_r_t___a_p_i.html#acef812bbce3afd1f4295fa7ff8b9ebfc":[3,2,3,3,1], -"group___i_o_p_o_r_t___a_p_i.html#ae9cd5d4b83ebe842e9f258aef4850c59":[3,2,3,2,0], -"group___i_o_p_o_r_t___a_p_i.html#aebcf56ec700ec3e402c0ab437bc82d45":[3,2,3,2,9], -"group___i_o_p_o_r_t___a_p_i.html#aed708d8a848a6e142ce5bf8cc085360f":[3,2,3,2,4], -"group___i_o_p_o_r_t___a_p_i.html#af318c6344f0b7679df2ca79bf24bad6e":[3,2,3,3,0], -"group___i_o_p_o_r_t___a_p_i.html#af5b820497125b07a94537deb03a37f0d":[3,2,3,1,0], -"group___i_o_p_o_r_t___a_p_i.html#afaba07fd298740d7a58a74720e259af2":[3,2,3,2,10], -"group___i_o_p_o_r_t___a_p_i.html#afad905247e7c42fcb42d412a4e2d2d15":[3,2,3,2,14], -"group___i_o_p_o_r_t___a_p_i.html#afbba86b25693590a1057e1ba1257341c":[3,2,3,0,0], -"group___i_o_p_o_r_t___a_p_i.html#ga1e307d6ac8fce46a7b7c5a97acb66883":[3,2,3,7], -"group___i_o_p_o_r_t___a_p_i.html#ga25ef8d1291cc073dd48f57b16d91c13e":[3,2,3,15], -"group___i_o_p_o_r_t___a_p_i.html#ga5948fec6dc0aecb3c09f9acec96fefca":[3,2,3,8], -"group___i_o_p_o_r_t___a_p_i.html#ga6714c32ad1f21415d3c99d4f2d027616":[3,2,3,11], -"group___i_o_p_o_r_t___a_p_i.html#ga76937b0cdeebfff6a5b22e5e89cb18b0":[3,2,3,12], -"group___i_o_p_o_r_t___a_p_i.html#gac617eebcb7c2c1e45fa8e04fc473e574":[3,2,3,14], -"group___i_o_p_o_r_t___a_p_i.html#gacaee6fc466858446638e79354043bb78":[3,2,3,13], -"group___i_o_p_o_r_t___a_p_i.html#gae6d3ffb13bd84935331f3b9f01607f41":[3,2,3,10], -"group___i_o_p_o_r_t___a_p_i.html#gaebbb969fda93422aaf1878d6f4ff8fe8":[3,2,3,6], -"group___i_o_p_o_r_t___a_p_i.html#gaf5da96a68757260a2cb370fec69f0836":[3,2,3,4], -"group___i_o_p_o_r_t___a_p_i.html#gaf6a78fbc73b4e8acef86a12c21df2da0":[3,2,3,9], -"group___i_o_p_o_r_t___a_p_i.html#gafc061c58bb812cb2a8f25222353634cd":[3,2,3,5], -"group___i_o_p_o_r_t___a_p_i.html#gga1e307d6ac8fce46a7b7c5a97acb66883ac4b47bead8a8ae7f860fa697732f007b":[3,2,3,7,0], -"group___i_o_p_o_r_t___a_p_i.html#gga1e307d6ac8fce46a7b7c5a97acb66883ac8a8a59efed7b48b78174be7cf112c70":[3,2,3,7,1], -"group___i_o_p_o_r_t___a_p_i.html#gga1e307d6ac8fce46a7b7c5a97acb66883ae671312651ad5b7f9836caf35f55aa24":[3,2,3,7,2], -"group___i_o_p_o_r_t___a_p_i.html#gga25ef8d1291cc073dd48f57b16d91c13ea5d94e8d4ba61664a407a0d84538fc298":[3,2,3,15,1], -"group___i_o_p_o_r_t___a_p_i.html#gga25ef8d1291cc073dd48f57b16d91c13eaf67cf250303fd4692c46717f0b7a9412":[3,2,3,15,0], -"group___i_o_p_o_r_t___a_p_i.html#gga5948fec6dc0aecb3c09f9acec96fefcaa236f9aab97155ac9eea90a479056715d":[3,2,3,8,2], -"group___i_o_p_o_r_t___a_p_i.html#gga5948fec6dc0aecb3c09f9acec96fefcaa32067b0d8f31d117a52dd59b41349084":[3,2,3,8,1], -"group___i_o_p_o_r_t___a_p_i.html#gga5948fec6dc0aecb3c09f9acec96fefcaac0d7aa925c74601ab0941f130f7cc8c6":[3,2,3,8,0], -"group___i_o_p_o_r_t___a_p_i.html#gga6714c32ad1f21415d3c99d4f2d027616a5a7a7ae01402ba9752bf3fb5754e0668":[3,2,3,11,1], -"group___i_o_p_o_r_t___a_p_i.html#gga6714c32ad1f21415d3c99d4f2d027616a6edc05a8291b6b885b81f57ae55f38b3":[3,2,3,11,2], -"group___i_o_p_o_r_t___a_p_i.html#gga6714c32ad1f21415d3c99d4f2d027616ac0c0bb5c9fed3261177e8eaa3d89a838":[3,2,3,11,0], -"group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0a2e9d8318bfb8eccfcb8b4a38ac7718d0":[3,2,3,12,3], -"group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0a668aedbed44c6aad2dff4aeafd6cfe31":[3,2,3,12,0], -"group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0a85ecf006ee7e49708ac094d230bc9769":[3,2,3,12,1], -"group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0ac781714cf092bfaa8269439712564efa":[3,2,3,12,2], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a0c5a07dad389d25a576c734a391ec148":[3,2,3,14,12], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a10595587e1c5984cecf3578625c05040":[3,2,3,14,19], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a14a3759e7b9db28ecd3e34968619c616":[3,2,3,14,17], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a1913e3b0734a4be613eb2fba8ec888c5":[3,2,3,14,4], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a2066555437a19b9e6e721fb494c8f5c3":[3,2,3,14,30], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a23f3f6712eefca788aa61da4976fd565":[3,2,3,14,20], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a3691c62fc89eb3e7df1eae9064206c4e":[3,2,3,14,14], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a3945f91ccb0beb4f87613fa0d9884965":[3,2,3,14,6], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a39721a40c76adc1584a6716a0187a344":[3,2,3,14,27], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a3a85f3deec88b01065fd3478ba691860":[3,2,3,14,3], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a47135d68ccd71227f089cdc67ff242b6":[3,2,3,14,28], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a4b93b19150d018ab8ba5ef74e2852499":[3,2,3,14,5], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a4f3c70e0bd324aecc0fed994903b63b0":[3,2,3,14,9], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a627d716bdff4fe54f3cbf9f2a5b87bf9":[3,2,3,14,0], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a6b8456cbcd1ab14dcec4c749b9b16c6b":[3,2,3,14,29], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a816a25b17c72bca7e267d47eb7f45dbc":[3,2,3,14,21], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a8d0959d2bac4007c7966402e1edd5cf7":[3,2,3,14,26], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a8d597c18cc5d24abc1b70f2526f2b6cb":[3,2,3,14,1], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a925954d59fa1101a4784a0d64a64d133":[3,2,3,14,7], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a968aea46146f3db05b2f9d2e1c29650f":[3,2,3,14,18], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a97baa43b94e675e2a4ae7a90dd4a94c6":[3,2,3,14,8], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a9a30d0a8eb346f1c1951396c0559ef64":[3,2,3,14,22], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a9c17101eaef4bf0fd2beb880a29317a8":[3,2,3,14,15], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ab4d8c12714fab80d21b5b5a636f3cf97":[3,2,3,14,2], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ab7e5fcab2fd99046fcedb85c34070e2c":[3,2,3,14,23], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ac78c3e06c1adb07cd707118f321ef94e":[3,2,3,14,13], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ac882c17c38a2a20dfd0b5e1dd3eaeaf4":[3,2,3,14,11], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574accc921bf1d788c6f10b0225b65144f00":[3,2,3,14,16], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ace057086d321233881c1f335b6764bc2":[3,2,3,14,25], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574af0dbea168d9df29c6a4180e202370f22":[3,2,3,14,24], -"group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574af4952693675255ac32a0813a1100e038":[3,2,3,14,10], -"group___i_o_p_o_r_t___a_p_i.html#ggacaee6fc466858446638e79354043bb78a21cfd34dda01172d7b86269be63708bb":[3,2,3,13,1], -"group___i_o_p_o_r_t___a_p_i.html#ggacaee6fc466858446638e79354043bb78a398ef6c7ab1704004f04168fb31cf38a":[3,2,3,13,2], -"group___i_o_p_o_r_t___a_p_i.html#ggacaee6fc466858446638e79354043bb78abcf9bf493cbb116eec49bc9e21424872":[3,2,3,13,0], -"group___i_o_p_o_r_t___a_p_i.html#ggae6d3ffb13bd84935331f3b9f01607f41a1cd8b8b65dec65682133ede683eecbc1":[3,2,3,10,0], -"group___i_o_p_o_r_t___a_p_i.html#ggae6d3ffb13bd84935331f3b9f01607f41a513793fc0a151e2f1a3d5240f6b97531":[3,2,3,10,1], -"group___i_o_p_o_r_t___a_p_i.html#ggae6d3ffb13bd84935331f3b9f01607f41a8b98f9c193ab3ffd01e8a96b05001bc5":[3,2,3,10,2], -"group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a44817e0b76e81f0353e70fce82f556fa":[3,2,3,6,3], -"group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a576f1af4e835f4533486d91cca50d8e9":[3,2,3,6,0], -"group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a5a8bf28d2e93cb6235e9a7beea2bfa0e":[3,2,3,6,1], -"group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a9885514f43d9d1c466ae689ef3608a9a":[3,2,3,6,6], -"group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8aa285c9c361e0be95e5e87e788bd8b2de":[3,2,3,6,5], -"group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ad7f23c31f6b56d6cf7b1024b8ea46b03":[3,2,3,6,2] +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ae2e4b37d45024125cbb660f1b3a3090e":[3,0,1,54,35], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950afe554013bd2f3cbbd8462cea8eeee4ca":[3,0,1,54,0], +"group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950afe554013bd2f3cbbd8462cea8eeee4ca":[3,0,1,54,14], +"group___b_s_p___m_c_u.html#ga862122b7dfd27bc54da4f2e3b80b25d2":[3,0,1,22], +"group___b_s_p___m_c_u.html#ga86b4ea9d1a1c90ec107f408cddc889cd":[3,0,1,21], +"group___b_s_p___m_c_u.html#ga8c791e904efc648fb8b69b56d7dd37ba":[3,0,1,35], +"group___b_s_p___m_c_u.html#ga8c791e904efc648fb8b69b56d7dd37ba":[3,0,1,45], +"group___b_s_p___m_c_u.html#ga8d17b9855a7a617558dd4edd05ccc72a":[3,0,1,16], +"group___b_s_p___m_c_u.html#ga93f514700ccf00d08dbdcff7f1224eb2":[3,0,1,67], +"group___b_s_p___m_c_u.html#ga960f46c44b67ba8ad5377cfc8e4e6a75":[3,0,1,36], +"group___b_s_p___m_c_u.html#ga960f46c44b67ba8ad5377cfc8e4e6a75":[3,0,1,46], +"group___b_s_p___m_c_u.html#ga992632ae2e45c2f962855fe4bbe98a63":[3,0,1,72], +"group___b_s_p___m_c_u.html#gaa36ef60e30f86593d24e7e25c6d026f1":[3,0,1,10], +"group___b_s_p___m_c_u.html#gaa3cd3e43291e81e795d642b79b6088e6":[3,0,1,80], +"group___b_s_p___m_c_u.html#gaa3cd3e43291e81e795d642b79b6088e6":[3,0,1,81], +"group___b_s_p___m_c_u.html#gaa4fa8ae9390afa996af2dabee6552732":[3,0,1,37], +"group___b_s_p___m_c_u.html#gaa4fa8ae9390afa996af2dabee6552732":[3,0,1,47], +"group___b_s_p___m_c_u.html#gaa638ec6a3ddaef0fb36cf8cc36510fb2":[3,0,1,19], +"group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8":[3,0,1,83], +"group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8":[3,0,1,82], +"group___b_s_p___m_c_u.html#gac27f5c8e3abd9d557b79ff1bdde2f932":[3,0,1,74], +"group___b_s_p___m_c_u.html#gacafcf7aae8e82ba63c6d74db1f574aad":[3,0,1,66], +"group___b_s_p___m_c_u.html#gad629661332b7063f9af17336dc879078":[3,0,1,11], +"group___b_s_p___m_c_u.html#gaddc2260c1ce320f3aa1f1cb05b9a5620":[3,0,1,39], +"group___b_s_p___m_c_u.html#gaddc2260c1ce320f3aa1f1cb05b9a5620":[3,0,1,49], +"group___b_s_p___m_c_u.html#gade0e6b9fc5ca580d5bf6c8ae2a6af8d9":[3,0,1,75], +"group___b_s_p___m_c_u.html#gadecec24d538312129b60def6152f5992":[3,0,1,43], +"group___b_s_p___m_c_u.html#gadecec24d538312129b60def6152f5992":[3,0,1,53], +"group___b_s_p___m_c_u.html#gae18fecd6a1f359727e18613fc19420f6":[3,0,1,7], +"group___b_s_p___m_c_u.html#gae601568d46eef4eb5d36dffe9773412e":[3,0,1,6], +"group___b_s_p___m_c_u.html#gae685ec20bc3579295878f1586478b54c":[3,0,1,34], +"group___b_s_p___m_c_u.html#gae685ec20bc3579295878f1586478b54c":[3,0,1,44], +"group___b_s_p___m_c_u.html#gae7636d5d0d2d310a45dc83b7a580ff2e":[3,0,1,9], +"group___b_s_p___m_c_u.html#gae7fdc2a01ee790e00cb199366aecb023":[3,0,1,24], +"group___b_s_p___m_c_u.html#gae8a3e014a73051cf3acf3ff54e54cdbc":[3,0,1,64], +"group___b_s_p___m_c_u.html#gae90c804167db296853dc17af83649fe4":[3,0,1,23], +"group___b_s_p___m_c_u.html#gaed27ea47f0c85a1af9bb515600d5e2ba":[3,0,1,77], +"group___b_s_p___m_c_u.html#gaf3219448adfd1531cf69f68697ab184b":[3,0,1,76], +"group___b_s_p___m_c_u.html#gaf3ee66233fc75acfcc21a97d7a767aa1":[3,0,1,59], +"group___b_s_p___m_c_u.html#gaf942d58c6fc1e4c35940f38daa8a5027":[3,0,1,25], +"group___b_s_p___m_c_u.html#gafd98e2a6f080d6a52a3ef72e3d731b2b":[3,0,1,55], +"group___b_s_p___m_c_u.html#gafdfd4e716271df720f7abe57bdca2e5d":[3,0,1,62], +"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7":[3,0,1,57,4], +"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7":[3,0,1,58,1], +"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7":[3,0,1,58,4], +"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7":[3,0,1,57,1], +"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2":[3,0,1,57,0], +"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2":[3,0,1,57,3], +"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2":[3,0,1,58,0], +"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2":[3,0,1,58,3], +"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811":[3,0,1,57,2], +"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811":[3,0,1,57,5], +"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811":[3,0,1,58,2], +"group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811":[3,0,1,58,5], +"group___b_s_p___m_c_u.html#gga72e70676360e6a4d753a8d235e6b93a2a7478d3bbfdc1220e125de34635c0f47a":[3,0,1,56,0], +"group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2ba59fcc4e8d51046d4a1bd63c87ac64913":[3,0,1,55,1], +"group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2baa0312618f2508347a9a815b5887c12ae":[3,0,1,55,2], +"group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2bacc709da08ef4acc99bf6e2e84946be5d":[3,0,1,55,0], +"group___b_s_p___m_c_u___r_z_v2_h.html":[3,0,1,0], +"group___b_s_p___m_c_u___r_z_v2_h.html#gaebe723200f2a7f181f08324128b9d7b5":[3,0,1,0,0], +"group___b_s_p___m_c_u___r_z_v2_l.html":[3,0,1,1], +"group___c_a_n___a_p_i.html":[3,2,1], +"group___c_a_n___a_p_i.html#a064fa2cd7b88461619693b1e2cad9530":[3,2,1,6,1], +"group___c_a_n___a_p_i.html#a0715ca299b94eea0ef2843b99e0d32e5":[3,2,1,4,4], +"group___c_a_n___a_p_i.html#a08080bddad2f04a8074b995da354f259":[3,2,1,3,0], +"group___c_a_n___a_p_i.html#a0dcc61e0202ace6d5b91665464415adc":[3,2,1,5,1], +"group___c_a_n___a_p_i.html#a0eeb3995e651ce4b77e8860ab50597a9":[3,2,1,5,6], +"group___c_a_n___a_p_i.html#a12f266c39b851a037b4d30ae5661e46b":[3,2,1,4,0], +"group___c_a_n___a_p_i.html#a1ea2aaf80adb9f24fdee9828cae02e05":[3,2,1,0,5], +"group___c_a_n___a_p_i.html#a27833816de50e1ad5b16b42856653ad8":[3,2,1,2,4], +"group___c_a_n___a_p_i.html#a31ab501a9df967965b8085592b4d2ba1":[3,2,1,4,5], +"group___c_a_n___a_p_i.html#a32ec8d31d80a709bae881f2e28d36d6c":[3,2,1,5,3], +"group___c_a_n___a_p_i.html#a33ae62d869abaf989823b7bb1563de41":[3,2,1,1,0], +"group___c_a_n___a_p_i.html#a3699700f0a08a75159483ac2825dca90":[3,2,1,4,3], +"group___c_a_n___a_p_i.html#a39e131d3f8e8d6d8a14e9f248c1ac1e1":[3,2,1,3,2], +"group___c_a_n___a_p_i.html#a4144eba26f77850571fca0498bec60ef":[3,2,1,2,1], +"group___c_a_n___a_p_i.html#a4157f4d2f2bd13acd53ebc43c557c4f8":[3,2,1,1,2], +"group___c_a_n___a_p_i.html#a44ef1a1a3726114b30f228c54b0d44ce":[3,2,1,5,0], +"group___c_a_n___a_p_i.html#a48fa3cf4c8c7e608c25ac8b907450096":[3,2,1,3,1], +"group___c_a_n___a_p_i.html#a49d4261f37f08f5a11cc3fc12c56cdc3":[3,2,1,2,0], +"group___c_a_n___a_p_i.html#a59787b23ec15fa38f51d167e10389081":[3,2,1,0,4], +"group___c_a_n___a_p_i.html#a663ed64c927057ab0ac45d02505dc758":[3,2,1,3,3], +"group___c_a_n___a_p_i.html#a751918f74effc746b381a75c971af879":[3,2,1,4,1], +"group___c_a_n___a_p_i.html#a7630cfae3a82f8ecd7bbce599ef992ee":[3,2,1,6,2], +"group___c_a_n___a_p_i.html#a79046fddb934fd7ea0d0cc70b8d7f26d":[3,2,1,2,2], +"group___c_a_n___a_p_i.html#a7cd7ac782cdb433247cc0f28f2755f81":[3,2,1,0,2], +"group___c_a_n___a_p_i.html#a88ba0583ec46ae65985a733c38975c38":[3,2,1,4,7], +"group___c_a_n___a_p_i.html#a8e79eb818c5aca4f925f2323f52d08f1":[3,2,1,4,2], +"group___c_a_n___a_p_i.html#aa8706fd62e652e6582d3c9eb155fb610":[3,2,1,3,4], +"group___c_a_n___a_p_i.html#aafe4728b44b6abbb0f5d540e16d0be40":[3,2,1,1,1], +"group___c_a_n___a_p_i.html#aba27908c89442250d365d4a44304e3c1":[3,2,1,5,5], +"group___c_a_n___a_p_i.html#ac495ac44fdee552f013eea5ba0e86b06":[3,2,1,4,8], +"group___c_a_n___a_p_i.html#ac958a7179da3a9f365a3bf55707fac6d":[3,2,1,4,6], +"group___c_a_n___a_p_i.html#ad70086e98bfe0871e3f73d1f253138db":[3,2,1,2,5], +"group___c_a_n___a_p_i.html#ada0fe3e8eb824d0ebb36332f98e3c771":[3,2,1,0,3], +"group___c_a_n___a_p_i.html#ade07c155f14547df76ac44249e0d0feb":[3,2,1,0,1], +"group___c_a_n___a_p_i.html#ae4d4d032f3e4f0688879027286ae4dbe":[3,2,1,6,0], +"group___c_a_n___a_p_i.html#aeb8eee8b6e6ea6a433c1ff5d89f68c4b":[3,2,1,1,3], +"group___c_a_n___a_p_i.html#aec9d4439f59b61933c2205e4d3ea9210":[3,2,1,0,0], +"group___c_a_n___a_p_i.html#af58b9f3fe19ed69e0a635cd271c68404":[3,2,1,2,3], +"group___c_a_n___a_p_i.html#af6c0a7c4a078f852e7c332369f8de9e2":[3,2,1,5,2], +"group___c_a_n___a_p_i.html#afb37a7735c6ac61a151a083b2d25153b":[3,2,1,5,4], +"group___c_a_n___a_p_i.html#ga6e2484e96eefbe59327b13e2589a0049":[3,2,1,7], +"group___c_a_n___a_p_i.html#ga93f2b2c53f782b0c21beeb1339a108b7":[3,2,1,10], +"group___c_a_n___a_p_i.html#gabc98e244722dcea05b5ce91bdb4c70c8":[3,2,1,11], +"group___c_a_n___a_p_i.html#gac29bd7d00b06d7457ae786471c296ba7":[3,2,1,9], +"group___c_a_n___a_p_i.html#gacc2e5bc68e8b707c069ca27f521695db":[3,2,1,8], +"group___c_a_n___a_p_i.html#gad3ffe1ae0429fcd1053a969d96c47610":[3,2,1,12], +"group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a1a181f00a1eab8aaae36031a9e403e88":[3,2,1,10,4], +"group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a53216c2055f64910bb7a47d5aa239f90":[3,2,1,10,3], +"group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a892393a146c929398882d92a7c9303eb":[3,2,1,10,2], +"group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a8e80b696c1567281ef11cc0d659b29bc":[3,2,1,10,1], +"group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7ae7dee8043ba34d7a3d09f5246bd870f0":[3,2,1,10,0], +"group___c_a_n___a_p_i.html#ggabc98e244722dcea05b5ce91bdb4c70c8a5d29b837d94d14fb99868c2d0a5220b0":[3,2,1,11,0], +"group___c_a_n___a_p_i.html#ggabc98e244722dcea05b5ce91bdb4c70c8abc5a87ed8edf218a6b44e4cceb48c0cb":[3,2,1,11,1], +"group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7a38a4c4896b9a14a3fa8411468b5017ee":[3,2,1,9,2], +"group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7a91f40057ea820ca0cf30a52393d5d741":[3,2,1,9,1], +"group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7abde5d9e8f5711b6fe8374671c96e6f72":[3,2,1,9,0], +"group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7adaf544ef1adfe3c7db5634e04f765aa3":[3,2,1,9,3], +"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4a9b30162960edad175a755686a65a50":[3,2,1,8,3], +"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4b9bfbf96c82d53ce3dd47e9a3237359":[3,2,1,8,12], +"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4cf2031ec5e169907edd2bd5d0caee00":[3,2,1,8,0], +"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba838c3a494516ccd0326bc1dad93e35d8":[3,2,1,8,11], +"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba8adaa142ed94841f5f282232ce414333":[3,2,1,8,10], +"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba973c55ab2a29a1554f488fedf29fea8a":[3,2,1,8,7], +"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbaa0bc5e15cee037a1d102b517ef63e161":[3,2,1,8,8], +"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbaacf601c286d90d108d59de289cdfd80c":[3,2,1,8,4], +"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbab16a5328b930c53524aecbc4d580bb24":[3,2,1,8,6], +"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbabd3cace64bccbd9bdc6219453b7cfbbd":[3,2,1,8,5], +"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbac169b4940b7cb76562efd7439fc76949":[3,2,1,8,9], +"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbad11062356307dd2b72a96a00a4929037":[3,2,1,8,2], +"group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbafd0c186a8462372ff19061f8ff97160f":[3,2,1,8,1], +"group___c_a_n___a_p_i.html#ggad3ffe1ae0429fcd1053a969d96c47610a10c7ad0f4e083496ad3a3032fc533920":[3,2,1,12,1], +"group___c_a_n___a_p_i.html#ggad3ffe1ae0429fcd1053a969d96c47610a1da44b52c2731b02cf02ca55eec08899":[3,2,1,12,0], +"group___c_a_n___a_p_i.html#structcan__api__t":[3,2,1,5], +"group___c_a_n___a_p_i.html#structcan__bit__timing__cfg__t":[3,2,1,1], +"group___c_a_n___a_p_i.html#structcan__callback__args__t":[3,2,1,3], +"group___c_a_n___a_p_i.html#structcan__cfg__t":[3,2,1,4], +"group___c_a_n___a_p_i.html#structcan__frame__t":[3,2,1,2], +"group___c_a_n___a_p_i.html#structcan__info__t":[3,2,1,0], +"group___c_a_n___a_p_i.html#structcan__instance__t":[3,2,1,6], +"group___c_a_n_f_d.html":[3,1,1,0], +"group___c_a_n_f_d.html#a0c05dacb48970397676e54a01c81d0e1":[3,1,1,0,2,2], +"group___c_a_n_f_d.html#a2bb06b2a4db018ac90193053131ee648":[3,1,1,0,1,5], +"group___c_a_n_f_d.html#a375e575afb5d17c01809a10d32ae59a5":[3,1,1,0,1,3], +"group___c_a_n_f_d.html#a3b38e8d28731a86eb521db8a5c5ae85e":[3,1,1,0,2,4], +"group___c_a_n_f_d.html#a3bcb58bb257835c3618f28751aad29a5":[3,1,1,0,2,0], +"group___c_a_n_f_d.html#a4cb13ba7074112d39a102638b7895a94":[3,1,1,0,2,5], +"group___c_a_n_f_d.html#a6ce35aac50e44ac4353bfd20e12639a4":[3,1,1,0,1,4], +"group___c_a_n_f_d.html#a924d2187cf551c85ded2b148e26bbfd9":[3,1,1,0,2,3], +"group___c_a_n_f_d.html#aaaef4497ea35ba92d6d85cc5cc4a380a":[3,1,1,0,2,6], +"group___c_a_n_f_d.html#ab3421077c295a40773c6cad2fb638176":[3,1,1,0,2,1], +"group___c_a_n_f_d.html#ac6305ab75909afd62029f3c76b235549":[3,1,1,0,1,0], +"group___c_a_n_f_d.html#aeb6bbed0e4cb76c06a947e009894608a":[3,1,1,0,1,2], +"group___c_a_n_f_d.html#afd7545e297144152431f5b1f3628fff7":[3,1,1,0,1,1], +"group___c_a_n_f_d.html#ga00c7557917ce6e78eb2969d7b5855890":[3,1,1,0,16], +"group___c_a_n_f_d.html#ga0d7e38baf7141e9bad96675f5169e44b":[3,1,1,0,8], +"group___c_a_n_f_d.html#ga1598f08872dd960675f060c7e8c35cf4":[3,1,1,0,4], +"group___c_a_n_f_d.html#ga16ff5e9e44e32191944292aea98ab4cb":[3,1,1,0,17], +"group___c_a_n_f_d.html#ga664d1e07613b250a3084681a613334be":[3,1,1,0,12], +"group___c_a_n_f_d.html#ga6c4d104c3a9cce6b74a05035f0af6d87":[3,1,1,0,10], +"group___c_a_n_f_d.html#ga7387d2e68262798a52c3a820ce12ea47":[3,1,1,0,13], +"group___c_a_n_f_d.html#ga888e511bc0fbb0ba049b49250400631f":[3,1,1,0,7], +"group___c_a_n_f_d.html#ga96f34361e525a46f121b11d627c3a1a8":[3,1,1,0,18], +"group___c_a_n_f_d.html#ga9a43dfa148767d10e12b22cb317111a9":[3,1,1,0,14], +"group___c_a_n_f_d.html#ga9bc23367cb7fb757b5ce2f29323524c0":[3,1,1,0,3], +"group___c_a_n_f_d.html#gaa7408bbf08466fb0f6025a8dfd93c714":[3,1,1,0,5], +"group___c_a_n_f_d.html#gaa79e3baad3f67bc4a3d1741dea29a3ae":[3,1,1,0,15], +"group___c_a_n_f_d.html#gacccf33f0942180054dd71c26c512844d":[3,1,1,0,6], +"group___c_a_n_f_d.html#gad89cfc4708b4a1cf7a57e4fcd3ffacfc":[3,1,1,0,11], +"group___c_a_n_f_d.html#gae6c27cee7d37eff10c6bfa5250eafc8d":[3,1,1,0,9], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a0fe1987f2df69fa7787ccae5a020968e":[3,1,1,0,4,3], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a12b3e818b05c74a2e138ea58893151af":[3,1,1,0,4,20], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a1e8de2fee13f446d6d7f218420af1a75":[3,1,1,0,4,1], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a30a620f848af57cf1da8fce485c518ee":[3,1,1,0,4,2], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a38ec5eabdb1b8b29cece678ae973e1b8":[3,1,1,0,4,7], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a46568698565919a0a2f47cb8f3641799":[3,1,1,0,4,19], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a47a1524b5138710ca7fd5b55325a823d":[3,1,1,0,4,8], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a4fa7f77f606948c2409343b262b9a6a6":[3,1,1,0,4,0], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a529535a14f0b9aa29b20ba5b22abb225":[3,1,1,0,4,11], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a5c4e3bece7c60441a51d3899e73a158f":[3,1,1,0,4,14], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a5d38f69b80c5a2ca136cc2372885dd15":[3,1,1,0,4,17], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a62b2afdb4d00175d7ee90c4f86b917d9":[3,1,1,0,4,6], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a632b3d6e96c5d7f468dfd4c0b33b1f86":[3,1,1,0,4,23], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4aabb74eb7c63e572823fdc251ee430510":[3,1,1,0,4,18], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abad26cd9692b98e885b8f80eea26c9d9":[3,1,1,0,4,21], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abc967223593d6928cfa24aef349f5e64":[3,1,1,0,4,10], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abee1888c27382c7121781db44c31bc2b":[3,1,1,0,4,16], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abee54fb0333c85f37a216959e18b7a11":[3,1,1,0,4,9], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ac0191e933ec767fbc545ff93697aaafb":[3,1,1,0,4,5], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ac1b7da9fdca7a6fa3c9b9ba33371f4a8":[3,1,1,0,4,15], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4acc2641aa9a3f9543af9d27313ba09001":[3,1,1,0,4,22], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4acdd82b46241db3cd909c4950a263cb36":[3,1,1,0,4,12], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ad1f966b89bb8ff0403a70e3a0170383f":[3,1,1,0,4,4], +"group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4afe7d23457db11eedaa48cec9b1d9b3a6":[3,1,1,0,4,13], +"group___c_a_n_f_d.html#gga6c4d104c3a9cce6b74a05035f0af6d87a46bb2a869fc5c7b63b16bc822d4ec712":[3,1,1,0,10,2], +"group___c_a_n_f_d.html#gga6c4d104c3a9cce6b74a05035f0af6d87a4a5ce70c8fb9ab5d9e320a79dd59aebf":[3,1,1,0,10,1], +"group___c_a_n_f_d.html#gga6c4d104c3a9cce6b74a05035f0af6d87ad719b21681eae000b3bf7f55ef225470":[3,1,1,0,10,0], +"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a028b55778be2605790aedf97f8491c8d":[3,1,1,0,3,7], +"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a0591ba665da851a63de95c9d819673d5":[3,1,1,0,3,6], +"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a0a2d6442a22874bd0016a444f6f8d16a":[3,1,1,0,3,2], +"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a23dd8461a4d2bf187fba45b46a3fff93":[3,1,1,0,3,4], +"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a3d1b4528bdce56d189277bedac424cc4":[3,1,1,0,3,1], +"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a3e66a7f94e0abd296376c545e7388f2e":[3,1,1,0,3,5], +"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a5701150882ad9d87efee5ade0a4c658c":[3,1,1,0,3,8], +"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a9d1022be800bc150d6daf64245c198ec":[3,1,1,0,3,0], +"group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0aa108c9efbacb5e55777e0e0339a9be07":[3,1,1,0,3,3], +"group___c_a_n_f_d.html#structcanfd__afl__entry__t":[3,1,1,0,0], +"group___c_a_n_f_d.html#structcanfd__extended__cfg__t":[3,1,1,0,2], +"group___c_a_n_f_d.html#structcanfd__global__cfg__t":[3,1,1,0,1], +"group___c_m_t_w.html":[3,1,8,0], +"group___c_m_t_w.html#a1734ae8129ed557f34e735fc4a0488b6":[3,1,8,0,1,2], +"group___c_m_t_w.html#a1844763704e5a3427c31651cdd536751":[3,1,8,0,1,4], +"group___c_m_t_w.html#a320a41da7945c9c63d38b84e665c276a":[3,1,8,0,1,15], +"group___c_m_t_w.html#a33d09d1a1606e992bc2c088911604059":[3,1,8,0,1,14], +"group___c_m_t_w.html#a3a0c098d3426a1478a29e44aeca8a882":[3,1,8,0,1,13], +"group___c_m_t_w.html#a54ef905d95c6fb3e06eb0eb04e8856d3":[3,1,8,0,1,8], +"group___c_m_t_w.html#a77d38169188404361f4dbb3f6c792655":[3,1,8,0,1,3], +"group___c_m_t_w.html#a79ee13b79b31f931ffe1f9d73aa6eb0e":[3,1,8,0,1,16], +"group___c_m_t_w.html#a7c6f42e3fb0d459fa5ca352450144dd1":[3,1,8,0,1,9], +"group___c_m_t_w.html#a894b3a66e1ef230347ba974268d67354":[3,1,8,0,1,12], +"group___c_m_t_w.html#a933229c6416b5aad6494477e36d38b47":[3,1,8,0,1,10], +"group___c_m_t_w.html#a9b7a216779c89527ce522c447d65dcb4":[3,1,8,0,1,6], +"group___c_m_t_w.html#aa87d2050e778f2be4cec1eedf08cad19":[3,1,8,0,1,11], +"group___c_m_t_w.html#aab0750f8c5088df9c26d7e827d08db67":[3,1,8,0,1,17], +"group___c_m_t_w.html#ac2924a866fbfae428b2d6feb8edde25f":[3,1,8,0,1,1], +"group___c_m_t_w.html#acffcc4d2d31fd8b21b8cada853629afa":[3,1,8,0,1,7], +"group___c_m_t_w.html#ae4c3df19de12bbe9ba4c36f78dd6be78":[3,1,8,0,1,5], +"group___c_m_t_w.html#af9073998c0c28e05a8f12da3eddf30ed":[3,1,8,0,1,0], +"group___c_m_t_w.html#ga0d3145595cde1b2a26d8812cbb1aac5c":[3,1,8,0,6], +"group___c_m_t_w.html#ga10851764cdad9c5c580e146501bc4352":[3,1,8,0,11], +"group___c_m_t_w.html#ga414c89c292c18a33619337489cd43787":[3,1,8,0,14], +"group___c_m_t_w.html#ga46ea17c23eab6d920c84290eb5769f6b":[3,1,8,0,3], +"group___c_m_t_w.html#ga78987d5578215cbf098221602bbbc193":[3,1,8,0,19], +"group___c_m_t_w.html#ga7b086a5e535460e7855000cc6141b22e":[3,1,8,0,18], +"group___c_m_t_w.html#ga7bf1b1875884b0e1c847a3b54c440763":[3,1,8,0,2], +"group___c_m_t_w.html#ga842bb3b9c5c12cdfff41dd8595defc70":[3,1,8,0,17], +"group___c_m_t_w.html#ga874d0098275f48ec3c84e8587d262fce":[3,1,8,0,12], +"group___c_m_t_w.html#ga928fd6d8249fe9c66e870849a6975ca9":[3,1,8,0,10], +"group___c_m_t_w.html#gaa50bb9ff96b3f0e38459a7e3e65c0a18":[3,1,8,0,9], +"group___c_m_t_w.html#gaa69aac2c20f895bd57f0d4dfa9da9c84":[3,1,8,0,7], +"group___c_m_t_w.html#gab8cb04d74fe011e5742d07cddb9a8447":[3,1,8,0,4], +"group___c_m_t_w.html#gabc760f97e8a609485ae6194571d41127":[3,1,8,0,21], +"group___c_m_t_w.html#gac59c2dfa9436df60eb01971c996875aa":[3,1,8,0,8], +"group___c_m_t_w.html#gacbdfc3716f8d5bd47edaa801eb50d1b7":[3,1,8,0,16], +"group___c_m_t_w.html#gadba23fc3303d81ce926ba6ebe9245e6a":[3,1,8,0,13], +"group___c_m_t_w.html#gadd9a734062792a507971568dac4c3013":[3,1,8,0,20], +"group___c_m_t_w.html#gae56c5935864ef5ef23eeae25a95ab079":[3,1,8,0,15], +"group___c_m_t_w.html#gaf5f1958607aa6c7f52f4e47195e3a61f":[3,1,8,0,5], +"group___c_m_t_w.html#gga0d3145595cde1b2a26d8812cbb1aac5ca1c9cd650977b70a3211d7a190085b0c5":[3,1,8,0,6,0] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index 2044192..ba35d4e 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,253 +1,253 @@ var NAVTREEINDEX4 = { -"group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8afb9e29f050c27973d20c0273f88c6207":[3,2,3,6,4], -"group___i_o_p_o_r_t___a_p_i.html#ggaf6a78fbc73b4e8acef86a12c21df2da0a96f5c107a00efb1c4ccf9905540f1ee6":[3,2,3,9,1], -"group___i_o_p_o_r_t___a_p_i.html#ggaf6a78fbc73b4e8acef86a12c21df2da0ab054bb3020a4a296f0da7a11362c017c":[3,2,3,9,2], -"group___i_o_p_o_r_t___a_p_i.html#ggaf6a78fbc73b4e8acef86a12c21df2da0ad6e933716d34a0fbba5b3d9f589f7637":[3,2,3,9,0], -"group___i_o_p_o_r_t___a_p_i.html#structioport__api__t":[3,2,3,2], -"group___i_o_p_o_r_t___a_p_i.html#structioport__cfg__t":[3,2,3,1], -"group___i_o_p_o_r_t___a_p_i.html#structioport__instance__t":[3,2,3,3], -"group___i_o_p_o_r_t___a_p_i.html#structioport__pin__cfg__t":[3,2,3,0], -"group___m_h_u___a_p_i.html":[3,2,4], -"group___m_h_u___a_p_i.html#a06429bf95953ff61b299d881100cc112":[3,2,4,0,2], -"group___m_h_u___a_p_i.html#a2a3e7eaaacf7c526d9fe10427817f68d":[3,2,4,0,0], -"group___m_h_u___a_p_i.html#a2f882461a857251d03cbc5d63a6d52cb":[3,2,4,3,1], -"group___m_h_u___a_p_i.html#a435b9195d22768cde4eda0f37246a84f":[3,2,4,2,3], -"group___m_h_u___a_p_i.html#a5a66c1be79665ce4b5d802f568d371cf":[3,2,4,3,0], -"group___m_h_u___a_p_i.html#a699f2d0b2fc8919da61e4dfae837890f":[3,2,4,1,0], -"group___m_h_u___a_p_i.html#a71110c354941eb9204f6af5969ce7132":[3,2,4,2,2], -"group___m_h_u___a_p_i.html#a7845968f2caba53ceb0d64761b12bc6e":[3,2,4,1,1], -"group___m_h_u___a_p_i.html#a8820bea933c4deea77e01e48b6f76865":[3,2,4,1,4], -"group___m_h_u___a_p_i.html#ac3886717d220de2c7861063acceee859":[3,2,4,2,0], -"group___m_h_u___a_p_i.html#ad3cc3a49b8f6d7cbbcc6a72833f51e2c":[3,2,4,1,5], -"group___m_h_u___a_p_i.html#adf5e843397d8bc69ace33912995215f6":[3,2,4,0,1], -"group___m_h_u___a_p_i.html#ae6ee1dfc1a00326e8b26dfc9701f0b31":[3,2,4,1,3], -"group___m_h_u___a_p_i.html#af10328b8b91b88072cc88d78d4e19585":[3,2,4,3,2], -"group___m_h_u___a_p_i.html#af6d5343757b4e233873d1707ceac8998":[3,2,4,1,2], -"group___m_h_u___a_p_i.html#af6d608ef42020cdccb89d9d0bd7a28b0":[3,2,4,2,1], -"group___m_h_u___a_p_i.html#ga2f810fc1366dd26cd5632846a65407ae":[3,2,4,5], -"group___m_h_u___a_p_i.html#gab4529354e4994392568d5ebd6aabfcd7":[3,2,4,4], -"group___m_h_u___a_p_i.html#gga2f810fc1366dd26cd5632846a65407aea0aed9dce78e782b034f672d0bf54cb2b":[3,2,4,5,1], -"group___m_h_u___a_p_i.html#gga2f810fc1366dd26cd5632846a65407aea72dd7fd31939b7f67d6b212b7b22917d":[3,2,4,5,0], -"group___m_h_u___a_p_i.html#structmhu__api__t":[3,2,4,2], -"group___m_h_u___a_p_i.html#structmhu__callback__args__t":[3,2,4,0], -"group___m_h_u___a_p_i.html#structmhu__cfg__t":[3,2,4,1], -"group___m_h_u___a_p_i.html#structmhu__instance__t":[3,2,4,3], -"group___m_h_u___n_s.html":[3,1,5], -"group___m_h_u___n_s.html#a1ee2e9cadf1df4a9e3803a139c910f9a":[3,1,5,0,1], -"group___m_h_u___n_s.html#a61e5f2158fbbd11d05252a83571927dd":[3,1,5,0,2], -"group___m_h_u___n_s.html#aa08a8ce470c0b9e6e561b50e40fc0cb7":[3,1,5,0,0], -"group___m_h_u___n_s.html#aa4455658de7b85e233e61bfee994a130":[3,1,5,0,5], -"group___m_h_u___n_s.html#ad5bfc684776aa1244294eae3b1363f93":[3,1,5,0,3], -"group___m_h_u___n_s.html#ae91cb79beb29ca1cb2aa807962dc988e":[3,1,5,0,4], -"group___m_h_u___n_s.html#af5fdb525ff4a77b4cddb17d066e8c246":[3,1,5,0,6], -"group___m_h_u___n_s.html#ga13943d092624696482858ac43db16ac5":[3,1,5,4], -"group___m_h_u___n_s.html#ga1a325703fa61f7fff4e762b092cef2ad":[3,1,5,5], -"group___m_h_u___n_s.html#ga38a24972860d1453ec85d28970d3eca4":[3,1,5,1], -"group___m_h_u___n_s.html#ga40504624dee60aaebfb8710b91483930":[3,1,5,3], -"group___m_h_u___n_s.html#gae5992c9313b0a0de777234abca176aaf":[3,1,5,2], -"group___m_h_u___n_s.html#structmhu__ns__instance__ctrl__t":[3,1,5,0], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html":[3,1,6], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#a5ba254765d8e48946ae9b95ff7645fb3":[3,1,6,0,0], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#aa0f0b0ca2034ddc5dbe9d143f1389799":[3,1,6,0,2], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ac3fa10e51c1700db408b9e2febca0c45":[3,1,6,0,1], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ace404a079830f35bbd0c8338b94da292":[3,1,6,0,3], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga0d89407bf3cb2dbc8d34e7a1f8dc1820":[3,1,6,4], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga3015e5dbd9204be24c79c0a69510e7ee":[3,1,6,1], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga81d3b1a8847d43fbd10ee226377bb309":[3,1,6,3], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#gaaf04bfeb26451f6fc7da14fe1825e705":[3,1,6,2], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#structmhu__ns__swint__get__instance__ctrl__t":[3,1,6,0], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html":[3,2,5], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a0485d0bdeaa7786fa0a1059fa2b17172":[3,2,5,1,1], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a13087ad031ff2d00bf58b47538a7d91a":[3,2,5,3,1], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a28544f4e5e43a96c4bb2cb7fe4879fcd":[3,2,5,1,0], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a2b7fe6de692d763e2ed654f7cb34976e":[3,2,5,1,2], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a713e559aa5c0cb0309b7650a91391264":[3,2,5,3,2], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a7e503fe06a35c9645b5081bbfa0179ce":[3,2,5,1,3], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a94dc2c05c8c387042d23a95b08a2f760":[3,2,5,2,0], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a9613c5884f49c02ae6aa41b09a999bc0":[3,2,5,0,1], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ab94275a9966c5a59c8bc8a06cbb2647c":[3,2,5,1,4], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ac3fe2eadbd870c342ddda1aaef641568":[3,2,5,0,0], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#af7a697adf7a1b68f31c055c8f2fe0836":[3,2,5,3,0], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#af92e9fdbc56bd0c806ef58a4b69e86db":[3,2,5,2,2], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#afca2a6032121c770e1bd8a07db1c062a":[3,2,5,2,1], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ga22364d066f195eb04e841c0e1d4147f1":[3,2,5,4], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__api__t":[3,2,5,2], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__callback__args__t":[3,2,5,0], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__cfg__t":[3,2,5,1], -"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__instance__t":[3,2,5,3], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html":[3,1,7], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#a2c2dcafbf0c66a844564cf48c5486f3f":[3,1,7,0,1], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#a8d75e2e88164656cab2e3b921a1568e4":[3,1,7,0,2], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#ad84054d463ebb6b159ff2ce6c70bd908":[3,1,7,0,3], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#af4778eb4d67e116a2743c2212d263637":[3,1,7,0,0], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#ga192b92d34e30e2170c6fa7002589db8e":[3,1,7,2], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#gaa38f2de3d81a051565c900098d904543":[3,1,7,1], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#gaccf0e3ebba04709c5fa1818c6b9bff31":[3,1,7,3], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#structmhu__ns__swint__set__instance__ctrl__t":[3,1,7,0], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html":[3,2,6], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a43558a76b254d006a32b55d251341171":[3,2,6,0,0], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a451a6c711c6a8ea92bd71bcc0ee418b8":[3,2,6,2,0], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a4a58ec04b7950333b9de087d35219991":[3,2,6,3,1], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a572d5e4e24cf7fffbcf39a137f4fd176":[3,2,6,2,2], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a6a3e82bf49e890836b3b4d71e7c31e8a":[3,2,6,2,1], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a7d3d94f9b3b9162cc59931ac56c36a73":[3,2,6,1,1], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a8f8ecb7c58b29ead3b75fc071a965175":[3,2,6,0,1], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a911cd4a50f86d1e71e566889625bc77d":[3,2,6,1,0], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#ab88ce5c4258642652c78ac702a56d15f":[3,2,6,3,2], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#ad486d0fcb0595022f8d9dfcd9860e06f":[3,2,6,3,0], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#gafb79b34149ed743c1378fc3b74ab3287":[3,2,6,4], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__api__t":[3,2,6,2], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__callback__args__t":[3,2,6,0], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__cfg__t":[3,2,6,1], -"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__instance__t":[3,2,6,3], -"group___m_h_u___s.html":[3,1,8], -"group___m_h_u___s.html#a1304f9353f2506daf66e4d6612fbb158":[3,1,8,0,0], -"group___m_h_u___s.html#a397d3be13f6769fe0add08595aa197e2":[3,1,8,0,5], -"group___m_h_u___s.html#a3d2e07d0382637914e5a1ff73d8135ca":[3,1,8,0,3], -"group___m_h_u___s.html#a4c3b32cb29fa8cc15747360380fa4e82":[3,1,8,0,4], -"group___m_h_u___s.html#a721510fae53319c0919a0114969aad51":[3,1,8,0,1], -"group___m_h_u___s.html#a74b1dc369c621b29c80cfec96a0189a2":[3,1,8,0,6], -"group___m_h_u___s.html#af745bc664f80d4fd4cf848e357801eca":[3,1,8,0,2], -"group___m_h_u___s.html#ga7b8e03e44542ae70f5b20e37e058fdd6":[3,1,8,4], -"group___m_h_u___s.html#gaaaee4d1fe5df68815f36021a1daefe46":[3,1,8,3], -"group___m_h_u___s.html#gabb304fbb568e37940fe39bec2fb6a1af":[3,1,8,5], -"group___m_h_u___s.html#gace961f8d144fe82cf739f96762a681a3":[3,1,8,2], -"group___m_h_u___s.html#gad777d9161d5147e0eb546d107cf64259":[3,1,8,1], -"group___m_h_u___s.html#structmhu__s__instance__ctrl__t":[3,1,8,0], -"group___p_o_e_g.html":[3,1,9], -"group___p_o_e_g.html#ga299d7e0c935c5305d72077fdf1963c2d":[3,1,9,3], -"group___p_o_e_g.html#ga42b42cd05ed30c698ba2dab5a32154dd":[3,1,9,4], -"group___p_o_e_g.html#ga6713a1b99790d8e56d475bb377b5cb0c":[3,1,9,5], -"group___p_o_e_g.html#ga84d0272a9da17941d62d264ff3a7b678":[3,1,9,1], -"group___p_o_e_g.html#ga84dddc58a538b5a7c9c22b7f4412755a":[3,1,9,6], -"group___p_o_e_g.html#gacc13125edbed3049ff434195ed6dc66e":[3,1,9,2], -"group___p_o_e_g.html#structpoeg__instance__ctrl__t":[3,1,9,0], -"group___p_o_e_g___a_p_i.html":[3,2,7], -"group___p_o_e_g___a_p_i.html#a1576cf3362e4341bf14ec8ba9592abc4":[3,2,7,3,5], -"group___p_o_e_g___a_p_i.html#a3952f94b0ec56e7d66d5e806578be4f4":[3,2,7,4,1], -"group___p_o_e_g___a_p_i.html#a41c511a6b1b828d54f180b729ae4fe55":[3,2,7,3,0], -"group___p_o_e_g___a_p_i.html#a475ca15f8e94a914ea5889e66b4d5ccc":[3,2,7,4,0], -"group___p_o_e_g___a_p_i.html#a4c643319683a792e608a1331f00c0d9c":[3,2,7,2,4], -"group___p_o_e_g___a_p_i.html#a540e9ef986cf2ad028ef51ba52454aab":[3,2,7,2,5], -"group___p_o_e_g___a_p_i.html#a5765dcf518892b71b73b5ae38942bd7f":[3,2,7,3,4], -"group___p_o_e_g___a_p_i.html#a57cfcbb853533296afebab7d58f231c2":[3,2,7,2,7], -"group___p_o_e_g___a_p_i.html#a685fb10923443de2749de75bebcae85b":[3,2,7,2,1], -"group___p_o_e_g___a_p_i.html#a70ca0636c969217533571c505f2e68ca":[3,2,7,2,3], -"group___p_o_e_g___a_p_i.html#a7d01f09a832b9940b264b0cf10a3863c":[3,2,7,3,2], -"group___p_o_e_g___a_p_i.html#a7f4c9f27604cdf1b772dc2d4ed8c3a2f":[3,2,7,2,2], -"group___p_o_e_g___a_p_i.html#a7f90a7d598df48543335416c0a4ab1a0":[3,2,7,2,6], -"group___p_o_e_g___a_p_i.html#a87c6c18eb74b68a3849822c777864f79":[3,2,7,1,0], -"group___p_o_e_g___a_p_i.html#aa5e1aa9d5416c9ca24132cddae7565f3":[3,2,7,4,2], -"group___p_o_e_g___a_p_i.html#ab377a80211d85f8c90b578e93dfd7964":[3,2,7,3,1], -"group___p_o_e_g___a_p_i.html#ace17b160cb26724e59f6aa82e39ed80b":[3,2,7,2,0], -"group___p_o_e_g___a_p_i.html#aeae55874b243b6034a81711e3494bc6d":[3,2,7,0,0], -"group___p_o_e_g___a_p_i.html#afe1feb1a5288478eea8d339ffaa1c68e":[3,2,7,3,3], -"group___p_o_e_g___a_p_i.html#ga092fdb789d4a41f502e902a7a8e88ac7":[3,2,7,5], -"group___p_o_e_g___a_p_i.html#ga6964e3b0b8b2d32d2428d86b32dfeef2":[3,2,7,6], -"group___p_o_e_g___a_p_i.html#gaab60100277a3b044c01007e6142704b9":[3,2,7,8], -"group___p_o_e_g___a_p_i.html#gab482b24d14d1c94f6f4ba9f5e39f8d0b":[3,2,7,9], -"group___p_o_e_g___a_p_i.html#gad3a55ae7d23b90cc2621a83116d2e7d9":[3,2,7,7], -"group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a1f07ec79529092ff47798e894f315adf":[3,2,7,6,5], -"group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a580261ea46ea6dc549e4fbfd99a8c31c":[3,2,7,6,2], -"group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a6c587d6eeb64a3823a355199778e6a18":[3,2,7,6,3], -"group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a929680a05ecd96bb24dd053fb6dcc8b5":[3,2,7,6,0], -"group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a965ed912f63e0044d9646693c909135b":[3,2,7,6,1], -"group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2ad3a9db10800397084958747e9cb2260a":[3,2,7,6,4], -"group___p_o_e_g___a_p_i.html#ggaab60100277a3b044c01007e6142704b9a6e980721d614a696895f9733ed1c5b0e":[3,2,7,8,0], -"group___p_o_e_g___a_p_i.html#ggaab60100277a3b044c01007e6142704b9a71e691b21c906dc492af3fcbbe5b9713":[3,2,7,8,1], -"group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba2ade356ffb1863fce2543f4b3440d526":[3,2,7,9,0], -"group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba38f961191fa339ca693af2b31132e9cf":[3,2,7,9,1], -"group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba88875580846aa38277404a473822fa54":[3,2,7,9,4], -"group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba8a559716ca4f1164b677818843e90715":[3,2,7,9,3], -"group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0bab361929a40b68a2e6bbac0b5e9213c5a":[3,2,7,9,2], -"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a22c1283422f02a8c1a9c8b3aeeb9f156":[3,2,7,7,4], -"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a23e020fd551b49c524d0f5ae343b6df4":[3,2,7,7,7], -"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a386ea44b929de5b16b1c459a37f866c3":[3,2,7,7,1], -"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a38cfaa9e507532303a483369539418ce":[3,2,7,7,8], -"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a4840d0ad9f40a09c2785be816c7e2884":[3,2,7,7,3], -"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a4d37b4728c36a854139814813c4f1591":[3,2,7,7,5], -"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a5844408e52ce8a8d819d594d4134de0b":[3,2,7,7,0], -"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9aa4d56aee202d76e9efdf3bcfc181a12d":[3,2,7,7,9], -"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9aedd4f2c94c2539026d15543c0f1457cc":[3,2,7,7,2], -"group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9aeeaef1204479de8858543006572c56f1":[3,2,7,7,6], -"group___p_o_e_g___a_p_i.html#structpoeg__api__t":[3,2,7,3], -"group___p_o_e_g___a_p_i.html#structpoeg__callback__args__t":[3,2,7,1], -"group___p_o_e_g___a_p_i.html#structpoeg__cfg__t":[3,2,7,2], -"group___p_o_e_g___a_p_i.html#structpoeg__instance__t":[3,2,7,4], -"group___p_o_e_g___a_p_i.html#structpoeg__status__t":[3,2,7,0], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html":[3,0], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#a3d5dd6d84edfe02a1eb1f1f1ac2f3054":[3,0,3,0], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#aab846c0e3717a3e7d14af45cab70b44a":[3,0,4,2], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#ab0da275520918e23dd615e2a747528f1":[3,0,4,0], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#ae5c5e6dae38b284e8cf0bd1fb0efac03":[3,0,4,1], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#af1425da40a9f2d21ab702a1c7feae026":[3,0,4,3], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#ga6e7b87c8da88649d8760d1d6336da667":[3,0,8], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#ga76ff1de6269e865d79cef73dff4cfd7d":[3,0,7], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#ga790070b6104a40ce96c57f21ff3146c4":[3,0,5], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#gaae3916d7763a27427478d0f63e5c7428":[3,0,6], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#gae557c5332b1c3c628d6cd2bd71b252d8":[3,0,10], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#gaec6a87a6b154fa720455c22bd39eebe5":[3,0,9], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#structfsp__pack__version__t_8____unnamed____":[3,0,4], -"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#unionfsp__pack__version__t":[3,0,3], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html":[3,0,0], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#a30a9a2b73548d20c22d0ba1f8aa42e27":[3,0,0,0,0], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#a361dcae2b6acd1b9a06bada602c57813":[3,0,0,1,3], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#a40292f8c4346751f08433b8e59ea657b":[3,0,0,1,1], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#a96e96c3d29b2faf6ae8f3ecce1917bbd":[3,0,0,1,2], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ad2d6666b93b9c6e95bc8e1d81fd9379e":[3,0,0,1,0], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ga0e229cde7ac6e617ed7eac38d45c4dd7":[3,0,0,4], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ga5560627aa81e2dc7e758b3a9853ca230":[3,0,0,5], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ga91dbefc93c284cc4ae3960bc1b371bb8":[3,0,0,3], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#gadfb1288da0fcc7ae1dc88c58601374f8":[3,0,0,6], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#gaf0afcbc9a110ac9366a811d96ee06029":[3,0,0,2], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a007f3ee6fdd7d7da64d199bd33eea883":[3,0,0,6,151], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a009dbf608109840cd7b1b82f08bf392b":[3,0,0,6,130], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0333bd5f03a8366cc8c1c8628ebdee24":[3,0,0,6,175], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a05030ff414a0d988a0f6b3ea086cb3ea":[3,0,0,6,102], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a05ef199ce97212663fa6c3edc947d3bd":[3,0,0,6,77], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a06b56b3cf883cf010a7e5818246998b5":[3,0,0,6,27], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0800521190fb997b5bdd6e442510dc21":[3,0,0,6,83], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a08758cf67b1b1f99e0609f7d7d16942e":[3,0,0,6,3], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a094ba75816525a5f0d620bdce195cc9e":[3,0,0,6,139], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0a6057def8440b3e3dd6ff5fe9d4d4a7":[3,0,0,6,29], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0a63d0b8578305acef83fc2541a7791a":[3,0,0,6,78], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0ae9f5e2b29a1355c61d1a6837fcc8a7":[3,0,0,6,67], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0b11740f5efdcaa58bd9606a1e29fa53":[3,0,0,6,33], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0bbf60d9eede358d4ebbdbd17eaf8854":[3,0,0,6,157], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0dfea4f4a09d2cb04031624c5c3bd753":[3,0,0,6,145], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0f14549511d9e5e2bf488ef4abf284cf":[3,0,0,6,62], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a1009b837effcd110d0c0fb1106d90898":[3,0,0,6,45], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a118e5ad68156cb8174e39b421abcf467":[3,0,0,6,63], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a1350c1ec5c0dc121c93983b2367a61ab":[3,0,0,6,148], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a151982a9bc9ba19d87b6a5a8b7679397":[3,0,0,6,155], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a15c30a4a6eb7992e2ecc7c319c93b61e":[3,0,0,6,80], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a1638d9aa9cae9a4a26945f4e06770278":[3,0,0,6,99], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a19beacb3a5e19f362431d08a1fcaaa5d":[3,0,0,6,123], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a20165a34bc804ee7750960ad81853f20":[3,0,0,6,49], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2273c35317c397d5b1b3e2709facadd0":[3,0,0,6,7], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a23d4ede168571c3084157c0f99f6c60c":[3,0,0,6,23], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a25f62aa698b401155e31627fbc50b006":[3,0,0,6,69], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2afd955eba937108cc5cfaaae48f2364":[3,0,0,6,54], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2c7fd435f27316b840546c51d0e7658d":[3,0,0,6,163], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2ca996df0892e635d629e5215a57fe52":[3,0,0,6,51], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2d42e0616d35e614532c95bf780fe3a1":[3,0,0,6,86], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2da63a5a8255b07061d01793d951b3af":[3,0,0,6,72], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2e783b2cf8434d9da89bdaa2a96de2bf":[3,0,0,6,90], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2ed5fe9a48f6c1a6e50b36b17158fc62":[3,0,0,6,124], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3224cc4e49b921121dd1c25e4b680d58":[3,0,0,6,125], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a36f32f07063bd03749f0410256fa95db":[3,0,0,6,34], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a378b2876a363d8c3a3c7ccc15c0221f9":[3,0,0,6,182], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a384fc7e9a644424c3e7743f24ad5c40f":[3,0,0,6,5], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a395e4056cceddf0f1606de74a028ed9e":[3,0,0,6,95], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a39f6c51c69fd754c9a16551bbd8a7b59":[3,0,0,6,111], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3c31107bd8ebd37bb8ff621758c25ecb":[3,0,0,6,79], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3da0834b14d2abd22cb01d7dade29d75":[3,0,0,6,11], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3e6f68238ad78176d339b01ee9f396a2":[3,0,0,6,106], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3f7ac1a0a2f4f1263320ce7a845852cc":[3,0,0,6,18], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a40dc55384fe2838d6893037f2923d3d8":[3,0,0,6,41], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a41282c4e46d7f2cc7869fcfd782fab54":[3,0,0,6,66], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a41434bdcf52a833b4fe1cc5ae322fe7a":[3,0,0,6,186], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a445a886afbb0951782907ac56e93d729":[3,0,0,6,189], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a47437bfbf555a04e9bad25b75425657f":[3,0,0,6,2] +"group___c_m_t_w.html#gga0d3145595cde1b2a26d8812cbb1aac5ca89b0a65698f2c9dad74c7ba53ba9de5d":[3,1,8,0,6,1], +"group___c_m_t_w.html#gga46ea17c23eab6d920c84290eb5769f6ba0f66391fe40f9d325a877e7f7a93bfde":[3,1,8,0,3,1], +"group___c_m_t_w.html#gga46ea17c23eab6d920c84290eb5769f6ba5d4a192f5904e23a4aacfa1675613806":[3,1,8,0,3,0], +"group___c_m_t_w.html#gga46ea17c23eab6d920c84290eb5769f6bad4b944e10a406b9159fa59d5a666a284":[3,1,8,0,3,2], +"group___c_m_t_w.html#gga7bf1b1875884b0e1c847a3b54c440763a6f1ff1a299555fef86ec60c3e4f2d28c":[3,1,8,0,2,2], +"group___c_m_t_w.html#gga7bf1b1875884b0e1c847a3b54c440763a70169e2f2026cef455de71078bf2250c":[3,1,8,0,2,0], +"group___c_m_t_w.html#gga7bf1b1875884b0e1c847a3b54c440763abd14459296fab9fec238c00996728beb":[3,1,8,0,2,1], +"group___c_m_t_w.html#ggaa69aac2c20f895bd57f0d4dfa9da9c84a47a43fe08c66afb2854454bde1e0a235":[3,1,8,0,7,1], +"group___c_m_t_w.html#ggaa69aac2c20f895bd57f0d4dfa9da9c84aef9e4feabd4045f976f8b85a535a1e6e":[3,1,8,0,7,0], +"group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a017587b5ab692912de7865167cb32be8":[3,1,8,0,4,4], +"group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a283a72ceb7ff6900d1d4d5184097ea34":[3,1,8,0,4,2], +"group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a29bae60b7e43072850cb4c44dffc3b1d":[3,1,8,0,4,0], +"group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a30c9445b77896f4583ee052861df0be0":[3,1,8,0,4,5], +"group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a7b1981140600ccabecbec2cce85ea30f":[3,1,8,0,4,1], +"group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447adc588629f6353dc88c3661d3d3eeb57b":[3,1,8,0,4,3], +"group___c_m_t_w.html#ggaf5f1958607aa6c7f52f4e47195e3a61fa7031caa0b57b3e17a531d44ef8e7fa0f":[3,1,8,0,5,2], +"group___c_m_t_w.html#ggaf5f1958607aa6c7f52f4e47195e3a61fa7cb7514798b0fde43e9d028d7718f4f4":[3,1,8,0,5,1], +"group___c_m_t_w.html#ggaf5f1958607aa6c7f52f4e47195e3a61fac8abb25fd9d25d55bcdebb8780553f1d":[3,1,8,0,5,0], +"group___c_m_t_w.html#structcmtw__extended__cfg__t":[3,1,8,0,1], +"group___c_m_t_w.html#structcmtw__instance__ctrl__t":[3,1,8,0,0], +"group___c_r_c.html":[3,1,3,0], +"group___c_r_c.html#ga5bb7766a9c3217d2da7b77ea203b8c74":[3,1,3,0,5], +"group___c_r_c.html#ga5bda4df2557aeaaf312b23fb31568f20":[3,1,3,0,7], +"group___c_r_c.html#ga606b389497fa4cba30b0d8f9a658331f":[3,1,3,0,6], +"group___c_r_c.html#ga89b0be959ce83ac6ca053329b1fddb75":[3,1,3,0,4], +"group___c_r_c.html#gab1ba556ab77f9f3d32ed5a448ebc7f9c":[3,1,3,0,3], +"group___c_r_c.html#gae4cc2bba5d6aeaadd9f4d43948fca5ac":[3,1,3,0,2], +"group___c_r_c.html#structcrc__extended__cfg__t":[3,1,3,0,0], +"group___c_r_c.html#structcrc__instance__ctrl__t":[3,1,3,0,1], +"group___c_r_c___a_p_i.html":[3,2,2], +"group___c_r_c___a_p_i.html#a0c748a9f3b2eb21585c97e3493f285ac":[3,2,2,2,2], +"group___c_r_c___a_p_i.html#a1647f8768f919a79d36f7dba45ff0bb4":[3,2,2,1,2], +"group___c_r_c___a_p_i.html#a43ca783a75a91815659195f46717b4ca":[3,2,2,3,0], +"group___c_r_c___a_p_i.html#a4d4efcfb06b59c92801320f31e8f2eb7":[3,2,2,2,3], +"group___c_r_c___a_p_i.html#a7783105d71a3cf701d7928cba9585e6d":[3,2,2,2,1], +"group___c_r_c___a_p_i.html#a77a51a5aaddd34da23595f1b522cab3d":[3,2,2,1,1], +"group___c_r_c___a_p_i.html#a93f724f6e008179d16750067ce740f91":[3,2,2,1,0], +"group___c_r_c___a_p_i.html#aa38d898bb2b40f121ce3ec1b54bf921f":[3,2,2,1,4], +"group___c_r_c___a_p_i.html#ab171c85217e275bda7426309bd832b02":[3,2,2,2,4], +"group___c_r_c___a_p_i.html#aba878011b00301dd2d99582eda689dcd":[3,2,2,3,1], +"group___c_r_c___a_p_i.html#ababb93aa2ede5ba3d5750bd3203ce7e3":[3,2,2,2,5], +"group___c_r_c___a_p_i.html#ad1c70317b3a73fc3cb102e6c673111be":[3,2,2,2,0], +"group___c_r_c___a_p_i.html#af1f280c0dc14a01fa8c8a3aa1f76feeb":[3,2,2,1,3], +"group___c_r_c___a_p_i.html#afbbb090a3e9cfa08f51cdd89a3389fac":[3,2,2,3,2], +"group___c_r_c___a_p_i.html#ga4c9c5ebe6bb4522f76618993434459e0":[3,2,2,4], +"group___c_r_c___a_p_i.html#ga5d770a90efa92855a81b5ae47b50db70":[3,2,2,6], +"group___c_r_c___a_p_i.html#ga7daa8fa0df9f42a98afcf766a63d931d":[3,2,2,5], +"group___c_r_c___a_p_i.html#gad26e18afbb5663c0bcb91d62d418e2e3":[3,2,2,7], +"group___c_r_c___a_p_i.html#gga5d770a90efa92855a81b5ae47b50db70a929efb1d3d263f589cf6a6c650d5e393":[3,2,2,6,1], +"group___c_r_c___a_p_i.html#gga5d770a90efa92855a81b5ae47b50db70a938646e39c9f235ae7a23c19e03f6d53":[3,2,2,6,0], +"group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da3743dfb69b7a6127e74de34390f3a55c":[3,2,2,5,0], +"group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da5f95f86fa3c29357706b0eb54223ef62":[3,2,2,5,2], +"group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da6b5637781ae91033928a2e082c823465":[3,2,2,5,1], +"group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da8854edee82722360b9adbfbfda3843b1":[3,2,2,5,4], +"group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931dac9c97ab1a8814206b952a35066a861c2":[3,2,2,5,3], +"group___c_r_c___a_p_i.html#ggad26e18afbb5663c0bcb91d62d418e2e3a961727790a4640f4be3e6229068c6c62":[3,2,2,7,1], +"group___c_r_c___a_p_i.html#ggad26e18afbb5663c0bcb91d62d418e2e3af13bda1509e0658baf48a48eb9f1c03c":[3,2,2,7,0], +"group___c_r_c___a_p_i.html#structcrc__api__t":[3,2,2,2], +"group___c_r_c___a_p_i.html#structcrc__cfg__t":[3,2,2,1], +"group___c_r_c___a_p_i.html#structcrc__input__t":[3,2,2,0], +"group___c_r_c___a_p_i.html#structcrc__instance__t":[3,2,2,3], +"group___d_m_a_c___b.html":[3,1,9,0], +"group___d_m_a_c___b.html#a128e8c1345cc9470629fcb55871311a5":[3,1,9,0,3,15], +"group___d_m_a_c___b.html#a14515bc1b8a66a78c2fdc035fde0e2fa":[3,1,9,0,3,4], +"group___d_m_a_c___b.html#a3043a2a8f1838e56d4fcd50b5492e06f":[3,1,9,0,3,0], +"group___d_m_a_c___b.html#a33a766bacb611723bb0bdfec3758e1f4":[3,1,9,0,3,14], +"group___d_m_a_c___b.html#a3c0c11bbddaa1a47bf8b03b68de9f865":[3,1,9,0,0,1], +"group___d_m_a_c___b.html#a3c6118081755b89a56d716b3278d2f02":[3,1,9,0,3,9], +"group___d_m_a_c___b.html#a4948302219c9409176bcc0ca3a2484d8":[3,1,9,0,3,7], +"group___d_m_a_c___b.html#a543a2e4f1901f1c745ae7f1eb0eff1a5":[3,1,9,0,1,0], +"group___d_m_a_c___b.html#a6107a37da59835c2457754f90258b9c3":[3,1,9,0,4,0], +"group___d_m_a_c___b.html#a6b46edce846a6cb215c5f1c61f38fb23":[3,1,9,0,3,11], +"group___d_m_a_c___b.html#a6f25480c361b6c3dd254878c06d4171c":[3,1,9,0,3,10], +"group___d_m_a_c___b.html#a7413254141ea747d2f333335c5c07aff":[3,1,9,0,1,1], +"group___d_m_a_c___b.html#a7d92e1d7d0c259a61117cfae07481967":[3,1,9,0,3,5], +"group___d_m_a_c___b.html#a810513506f2aa216b17f288ab8ef8bb5":[3,1,9,0,3,16], +"group___d_m_a_c___b.html#a8266dbee310dbc0398cdb9d6bb1273a9":[3,1,9,0,3,1], +"group___d_m_a_c___b.html#a84613315363012283b6c3abdfd89faff":[3,1,9,0,3,8], +"group___d_m_a_c___b.html#a8d1d6c80ac5dad8f955773d399390485":[3,1,9,0,4,2], +"group___d_m_a_c___b.html#aa22d8061d429688b3aec06dbc938863f":[3,1,9,0,4,1], +"group___d_m_a_c___b.html#aa811f82a3883a3b8ea7af93d5964cc4e":[3,1,9,0,3,12], +"group___d_m_a_c___b.html#aac2bd3fe82819a7f868aa155b25459e9":[3,1,9,0,1,2], +"group___d_m_a_c___b.html#aafb07b9e0d848a6f8e56de3b8a378522":[3,1,9,0,0,0], +"group___d_m_a_c___b.html#ad212e04a4018fe8852fa8eb5ee9cd557":[3,1,9,0,3,13], +"group___d_m_a_c___b.html#ad9ca631bfb2e8c33238e11cc75b0ebc3":[3,1,9,0,3,3], +"group___d_m_a_c___b.html#ae5d6ef616f8c71b5511e8f0d21399585":[3,1,9,0,3,6], +"group___d_m_a_c___b.html#ae98f5d3627d5c804de9b552f29ce5783":[3,1,9,0,3,2], +"group___d_m_a_c___b.html#ga096bd7a43751a80690fd7ed3454b78a7":[3,1,9,0,13], +"group___d_m_a_c___b.html#ga13da20adc7b96463ae04f4c5cea24154":[3,1,9,0,19], +"group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355b":[3,1,9,0,10], +"group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355ba1e4a1303234cd1b4bd879da0a5497c81":[3,1,9,0,10,1], +"group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355ba71d49967fcb329386f7ad75c057af39f":[3,1,9,0,10,2], +"group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355ba9b733b38f6216a7bafaa62855dcdea06":[3,1,9,0,10,0], +"group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355baac86700726f22406c000acd5464a0737":[3,1,9,0,10,4], +"group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355babdf24e175dde86c8a869f358d5bb30b1":[3,1,9,0,10,3], +"group___d_m_a_c___b.html#ga16f1e4bdd626e2ffc16b8852ca8d8c29":[3,1,9,0,12], +"group___d_m_a_c___b.html#ga1ea3acbac3625e15f0b656d9b220cc8a":[3,1,9,0,7], +"group___d_m_a_c___b.html#ga2c6e7a22349d33428d977fec5547e3ea":[3,1,9,0,17], +"group___d_m_a_c___b.html#ga3aa063ea10c545145d43d90b46a5d34b":[3,1,9,0,18], +"group___d_m_a_c___b.html#ga46c5c66fc820831bb56b5f6554f2890e":[3,1,9,0,9], +"group___d_m_a_c___b.html#ga632bf5ab4aab7000686ef9f18a613362":[3,1,9,0,24], +"group___d_m_a_c___b.html#ga77c350dbc52956dc8b1ce4987e721e05":[3,1,9,0,8], +"group___d_m_a_c___b.html#ga7edc253186828189c91ba0b183733c1b":[3,1,9,0,23], +"group___d_m_a_c___b.html#ga94e377366e55d6e30cf97102474a5320":[3,1,9,0,15], +"group___d_m_a_c___b.html#gaa15ccc56c79f1686821605ef2b8f36b9":[3,1,9,0,11], +"group___d_m_a_c___b.html#gaa8077eb6959e1d019b7cf7a105fea64c":[3,1,9,0,6], +"group___d_m_a_c___b.html#gaae171cb7c85d650ef946358a06f25f19":[3,1,9,0,22], +"group___d_m_a_c___b.html#gab359dcd5cfb24ecd20655106c9397d63":[3,1,9,0,14], +"group___d_m_a_c___b.html#gac246f431e5d9b090d51fa82e1cf4c525":[3,1,9,0,16], +"group___d_m_a_c___b.html#gad36329d847d5154489a049a3c91300ce":[3,1,9,0,5], +"group___d_m_a_c___b.html#gad7d2d7ade93dc5fdb468f3ca4eb23904":[3,1,9,0,21], +"group___d_m_a_c___b.html#gadb30ad1a9a46b41838123869c5d9d5b7":[3,1,9,0,25], +"group___d_m_a_c___b.html#gae209f9912564241da474026944c2d6a6":[3,1,9,0,20], +"group___d_m_a_c___b.html#gga096bd7a43751a80690fd7ed3454b78a7a61c972e3ce54cbcb765c280c977e2857":[3,1,9,0,13,1], +"group___d_m_a_c___b.html#gga096bd7a43751a80690fd7ed3454b78a7a7de91e47558887cbcf23934645dca258":[3,1,9,0,13,0], +"group___d_m_a_c___b.html#gga16f1e4bdd626e2ffc16b8852ca8d8c29a93d8c7e5e86dacbe867b641d45c9a2b7":[3,1,9,0,12,0], +"group___d_m_a_c___b.html#gga16f1e4bdd626e2ffc16b8852ca8d8c29adb00461b1b26e0bfbacec0a4ddabcdb1":[3,1,9,0,12,1], +"group___d_m_a_c___b.html#gga1ea3acbac3625e15f0b656d9b220cc8aa63dd08ef2be01ac99472a7b9d39fabc0":[3,1,9,0,7,1], +"group___d_m_a_c___b.html#gga1ea3acbac3625e15f0b656d9b220cc8aac41c065b08dd64341516cdc406f0a43a":[3,1,9,0,7,0], +"group___d_m_a_c___b.html#gga46c5c66fc820831bb56b5f6554f2890ea2c0a3fc39b5304639b9b27528b37d368":[3,1,9,0,9,2], +"group___d_m_a_c___b.html#gga46c5c66fc820831bb56b5f6554f2890eaf0702197abc49f459a920cfd07e079b9":[3,1,9,0,9,1], +"group___d_m_a_c___b.html#gga46c5c66fc820831bb56b5f6554f2890eaf2b54be1c14b4eaa12570b6bc5fec740":[3,1,9,0,9,0], +"group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a0c2745aba41ca5690310193c4bdf4e45":[3,1,9,0,8,3], +"group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a2c9e0298925cbd56844ad036ce1a912c":[3,1,9,0,8,7], +"group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a4c2cfb773f20e835d60f56c0a629c8cf":[3,1,9,0,8,1], +"group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a58ff436dad7b5de72f7dc3a260cbd330":[3,1,9,0,8,4], +"group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a721e23f79b32c72da736ec54d5421bec":[3,1,9,0,8,0], +"group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a805502107f3f216852993a50431d770b":[3,1,9,0,8,5], +"group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a85e3931c705b484424a1edb2e1524e84":[3,1,9,0,8,2], +"group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05aefe1c8b1b4337a4110e65e2ac44a9c45":[3,1,9,0,8,6], +"group___d_m_a_c___b.html#gga94e377366e55d6e30cf97102474a5320a3baaab03184466785a334292da53798b":[3,1,9,0,15,1], +"group___d_m_a_c___b.html#gga94e377366e55d6e30cf97102474a5320a7f8b6c67b1c4def19957ece68927e144":[3,1,9,0,15,0], +"group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9a1299d6d4187c1bb2488f36aaaa595010":[3,1,9,0,11,4], +"group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9a33a92c25dc8e8d12113e6deb4675c873":[3,1,9,0,11,1], +"group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9a4fb00d6fcdbad47c1093e14b8ae9e548":[3,1,9,0,11,3], +"group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9ab15a854ed45d602e8d626578289ce9ba":[3,1,9,0,11,0], +"group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9ab7d1e90900549b57f72f0de1b45ea896":[3,1,9,0,11,2], +"group___d_m_a_c___b.html#ggab359dcd5cfb24ecd20655106c9397d63a481ea85a54aca23ab1215c7b14a969fb":[3,1,9,0,14,1], +"group___d_m_a_c___b.html#ggab359dcd5cfb24ecd20655106c9397d63ae7628013b57a05b3524bfa6b58eece1e":[3,1,9,0,14,0], +"group___d_m_a_c___b.html#structdmac__b__callback__args__t":[3,1,9,0,0], +"group___d_m_a_c___b.html#structdmac__b__extended__cfg__t":[3,1,9,0,3], +"group___d_m_a_c___b.html#structdmac__b__extended__info__t":[3,1,9,0,4], +"group___d_m_a_c___b.html#structdmac__b__instance__ctrl__t":[3,1,9,0,2], +"group___d_m_a_c___b.html#structdmac__b__register__set__setting__t":[3,1,9,0,1], +"group___e_l_c.html":[3,1,7,0], +"group___e_l_c.html#ga2b2ed9cb9e86bf6c75d85977c4c135ff":[3,1,7,0,5], +"group___e_l_c.html#ga35864de459d2ef45a03da4343729712f":[3,1,7,0,1], +"group___e_l_c.html#ga4b40a4cb59194b6315cf608cd5e36bd9":[3,1,7,0,4], +"group___e_l_c.html#ga4bcac22edb575069ba86d87ce9aea84c":[3,1,7,0,6], +"group___e_l_c.html#gaa8735a16325cfeff3c47a50345d11d82":[3,1,7,0,3], +"group___e_l_c.html#gac5e6b998138cc28bcbd8b17a5eb26674":[3,1,7,0,2], +"group___e_l_c.html#gad52f538fbce405f18a46f6e42cce9ebf":[3,1,7,0,7], +"group___e_l_c.html#structelc__instance__ctrl__t":[3,1,7,0,0], +"group___e_l_c___a_p_i.html":[3,2,3], +"group___e_l_c___a_p_i.html#a05af30d0ca7743f5a033b10d664ded59":[3,2,3,1,3], +"group___e_l_c___a_p_i.html#a4ca08e8e0db93700e8e4f651f4492977":[3,2,3,1,1], +"group___e_l_c___a_p_i.html#a5201eaeb1fbc56f6c78b9db34fb580e3":[3,2,3,1,2], +"group___e_l_c___a_p_i.html#a5ec2e92543d9a74fd4e33b20b9782ef5":[3,2,3,1,5], +"group___e_l_c___a_p_i.html#a666a726dd9209856799d03b62b703029":[3,2,3,2,0], +"group___e_l_c___a_p_i.html#a90896863b4141cbbd2eb4d2eea7e58e4":[3,2,3,2,1], +"group___e_l_c___a_p_i.html#a91eea8824e8ea3d204860d16abb8d78a":[3,2,3,1,6], +"group___e_l_c___a_p_i.html#a9919c68bc6249d294d121715277a53dd":[3,2,3,2,2], +"group___e_l_c___a_p_i.html#ac4f753f3fcae95e036d24e3d6a84d1f5":[3,2,3,1,0], +"group___e_l_c___a_p_i.html#ad58380dc39c1d257fc9128dda007865d":[3,2,3,0,0], +"group___e_l_c___a_p_i.html#aded8ab0cdd59a636f2a5cc60313c54c5":[3,2,3,1,4], +"group___e_l_c___a_p_i.html#ga5fed76c06664ddad69c5a7ccb0330f0e":[3,2,3,5], +"group___e_l_c___a_p_i.html#ga5fed76c06664ddad69c5a7ccb0330f0ea4ba5ce998b49ee8ba5fd264f53146d6d":[3,2,3,5,1], +"group___e_l_c___a_p_i.html#ga5fed76c06664ddad69c5a7ccb0330f0ea862eb8abb2f512a4b4caaa1ee6900d27":[3,2,3,5,0], +"group___e_l_c___a_p_i.html#ga71d9612a7e093ba6bbef8ff708266596":[3,2,3,3], +"group___e_l_c___a_p_i.html#gaa5bf5e18ceb8cf51ac6dce985f9230a7":[3,2,3,4], +"group___e_l_c___a_p_i.html#structelc__api__t":[3,2,3,1], +"group___e_l_c___a_p_i.html#structelc__cfg__t":[3,2,3,0], +"group___e_l_c___a_p_i.html#structelc__instance__t":[3,2,3,2], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html":[3,2,4], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a1b7ba67ea2063df052d7cff54d642455":[3,2,4,1,0], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a1c64bba3bbf9346831933b4d70b3ae9c":[3,2,4,3,2], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a21219682d6af73d780e49a7e67e53f22":[3,2,4,1,1], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a4237b56a314b7e145aefb59e6e1def1b":[3,2,4,1,7], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a4a407b8899a042692026e65d98535f6e":[3,2,4,2,3], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a568e65aafea692dff0f64c3b66df2c2a":[3,2,4,1,2], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a639337eee77555b934cbf8238e0f8449":[3,2,4,2,0], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a6ecb5664f627d1b731a4fd0a74e5f2bc":[3,2,4,2,2], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a7bf006f685a26836095b1660bf2eb263":[3,2,4,3,0], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a9cb81e4b2d313458c747cdc401179a66":[3,2,4,2,1], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#aa77181dcffe927e006c2ed112c1a62ad":[3,2,4,1,5], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ab32ad9ad3e7627390225d731f2834fd7":[3,2,4,3,1], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#abce89fd1740fefc7c2d179ca751df78f":[3,2,4,1,8], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ac8dadd8ef06c625a7b02c2eb06da7959":[3,2,4,1,6], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ac9c027f165cdd6273959c0338cfb212d":[3,2,4,1,3], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#acab3057d607bc3efd20955126a8e92d7":[3,2,4,1,4], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#acd4a73f25f8415f6ca33f31392d92fd9":[3,2,4,0,1], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ad0c4d6063af093a3a19a63924aae61ac":[3,2,4,2,4], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ade4504697e9cde129dfbe8796985f66a":[3,2,4,0,0], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ga2d1960d763da14da209e16fbb972d57c":[3,2,4,5], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ga3dc909b21d5ebe0d1d671221e4190246":[3,2,4,4], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ga692e093fc800ee08e3f84fae648372d8":[3,2,4,6], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57ca0a2ebac83c3e8ca3da64e703dda65b71":[3,2,4,5,2], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57ca2d7a4f8fd21fad6f5a671336152d46b0":[3,2,4,5,1], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57caace14d51313fed5f17da4b9828fd5412":[3,2,4,5,0], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57cae0ae8739569bb4721c7ed289397b9c4f":[3,2,4,5,3], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8a0ec86c6eb31ac0c5e2a789e3bcefe334":[3,2,4,6,2], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8a50e18b67ca2b1d8c0efb69dac660c581":[3,2,4,6,3], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8a8efd589848d944d15906446d30500c1a":[3,2,4,6,0], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8aea6e72eaa11987f54579a14bb4b3a7e9":[3,2,4,6,1], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__api__t":[3,2,4,2], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__callback__args__t":[3,2,4,0], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__cfg__t":[3,2,4,1], +"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__instance__t":[3,2,4,3], +"group___g_p_t.html":[3,1,8,1], +"group___g_p_t.html#a078a97f54349c6895fbebc67857c479a":[3,1,8,1,3,8], +"group___g_p_t.html#a22eb63abdf43064c9c83d81287c67c88":[3,1,8,1,4,13], +"group___g_p_t.html#a2ecf880963c441f20c3c8a2ac7a854ea":[3,1,8,1,4,8], +"group___g_p_t.html#a3b894424ab45e17d02938de9c211911a":[3,1,8,1,4,2], +"group___g_p_t.html#a41333514ba7ccb2b4e2d6475a51dcc26":[3,1,8,1,4,3], +"group___g_p_t.html#a4d31e40df7ea5e4be69fcbbe559a8213":[3,1,8,1,3,9], +"group___g_p_t.html#a55e5f85f57b77fd7ee5a1de7ff39da27":[3,1,8,1,4,15], +"group___g_p_t.html#a5805853871548d015520f71f3ab00e93":[3,1,8,1,0,1], +"group___g_p_t.html#a5f0b69cc2d3cfe89baefcf348563df21":[3,1,8,1,0,0], +"group___g_p_t.html#a630c77adb426ddddb5eac8b974fd7c85":[3,1,8,1,4,12], +"group___g_p_t.html#a78476af74debd54ee8394dd0aa6d2505":[3,1,8,1,4,1], +"group___g_p_t.html#a7e5402bac34e2c3d3006b68ee0b8ab2a":[3,1,8,1,4,9], +"group___g_p_t.html#aa34079abac90aaced078650c626c9820":[3,1,8,1,3,13], +"group___g_p_t.html#aa39314cc7482a5855e27b0c2daa111ea":[3,1,8,1,3,4], +"group___g_p_t.html#aad7e19c30d43b6d0f88943c27e9afa4c":[3,1,8,1,4,5], +"group___g_p_t.html#aae4ebebdd346531add1c9ce3bee52106":[3,1,8,1,4,10], +"group___g_p_t.html#aaf087f74d802f87ccac4e0a04e90cc04":[3,1,8,1,3,2], +"group___g_p_t.html#aafd7df5d2639958e4602b2f05b877707":[3,1,8,1,3,6], +"group___g_p_t.html#ab5abdaac972544ec4e58df69d1f8a08f":[3,1,8,1,3,11], +"group___g_p_t.html#abc2a1fdb7655945b5ef571c60bf7b4b0":[3,1,8,1,3,7], +"group___g_p_t.html#ac1bab8a37aeb13d8f27d05e44d567bc9":[3,1,8,1,3,3], +"group___g_p_t.html#ac516350c554b9851aa9c66615e89b93b":[3,1,8,1,3,10], +"group___g_p_t.html#aca22811f5aebe0ee236214b53f9f6bbd":[3,1,8,1,4,6], +"group___g_p_t.html#ad323c6db6a695028d2926dfbf0a0dda8":[3,1,8,1,4,0], +"group___g_p_t.html#ad5614740946c3c06e1633d369d08f5c3":[3,1,8,1,4,4], +"group___g_p_t.html#ad6a0d3919d4334ec367619aecd96b0f0":[3,1,8,1,3,5], +"group___g_p_t.html#ad8b8b467339a151f016017d175df2f9c":[3,1,8,1,4,16], +"group___g_p_t.html#ad908895a31952a884009f3a63fdac8d0":[3,1,8,1,3,0], +"group___g_p_t.html#ae96b1fce9515b779078f947aa3885618":[3,1,8,1,4,7], +"group___g_p_t.html#af0ca97f849a3dbbee00c59d75acb4bb0":[3,1,8,1,4,11], +"group___g_p_t.html#af69392faec97dd6cf86b0634e6b79b44":[3,1,8,1,3,1], +"group___g_p_t.html#af8c63e238ee298b4f1dac545a597eff7":[3,1,8,1,3,12], +"group___g_p_t.html#afbc788de7ed38b81ebb727b2c05d0525":[3,1,8,1,4,14], +"group___g_p_t.html#ga0e6638508ec1d5441713195c877bb7a7":[3,1,8,1,32], +"group___g_p_t.html#ga1e6af74d7faaf735f5847a34121eff71":[3,1,8,1,22], +"group___g_p_t.html#ga2769f9fda49613246bc84dba41aa4863":[3,1,8,1,23], +"group___g_p_t.html#ga28d354e417a7a6666e0819387d8e7d8a":[3,1,8,1,18], +"group___g_p_t.html#ga2a09de185d3b7f1c301b33330931bac4":[3,1,8,1,36], +"group___g_p_t.html#ga2a838fffcbafd97778bbe3ffbfbf54b1":[3,1,8,1,14], +"group___g_p_t.html#ga2fc5d6a737a00948802e2bb77fbe8d8c":[3,1,8,1,37], +"group___g_p_t.html#ga311c91c55f20338f7082fa4369e7c80f":[3,1,8,1,34] }; diff --git a/navtreeindex5.js b/navtreeindex5.js index 96ff0e4..b9c1860 100644 --- a/navtreeindex5.js +++ b/navtreeindex5.js @@ -1,253 +1,253 @@ var NAVTREEINDEX5 = { -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a479e63b946d94636f905fd9bace227e9":[3,0,0,6,161], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a47bedb95f9926c8f1330bcf7846a548e":[3,0,0,6,187], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a4a5158a88f2ea654f62435a7b5ae72d2":[3,0,0,6,147], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a4b6b9e437964146efbcb4ad42397d265":[3,0,0,6,9], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a4c0707d4a6169b664b80e107659336b0":[3,0,0,6,176], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a504225c32f7ce922fe8bd6eb3b71cb5a":[3,0,0,6,74], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a50831305d5da65885b19304af8688f1a":[3,0,0,6,6], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a514ca2eb6423e25bed3982d27c9d979b":[3,0,0,6,172], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a517f6eb396408044e70353bedd2983e8":[3,0,0,6,158], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5197e695e1cbbce294aca76ed3ca570b":[3,0,0,6,26], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a52e6bb08e856dae157893d1b6097f958":[3,0,0,6,137], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5324a3aee60be60cf0426cca90586892":[3,0,0,6,100], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a558889b250c4c0dfa10cbce827f5b47e":[3,0,0,6,162], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5612cd93ed5b3c657ace3c0a8831c4b5":[3,0,0,6,110], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5711df02b0d0b9e2027bef9de27948a4":[3,0,0,6,144], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a58142c5af0984c7c4ede26c86aaf1376":[3,0,0,6,112], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a585fcafaa5e5dbe0209e063f5ecf8898":[3,0,0,6,188], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5875afbb6b583cfef9a6c83a053b7be6":[3,0,0,6,43], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5889b6693b9fe40f24d1454a12707004":[3,0,0,6,128], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a58fa157c6894a408dab3175d77b6e250":[3,0,0,6,88], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a59b955195cb913a404830ddca3d0176a":[3,0,0,6,174], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5b3fa149fddaa9617a7d3cacf67810a4":[3,0,0,6,32], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a61a8e059198001f46af73f2930e6c144":[3,0,0,6,64], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a61cdc8708028a97a52556794d4c2e050":[3,0,0,6,146], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6240bb179602fe6d111b3cb464ca4612":[3,0,0,6,116], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a629a12ea100187a63ddb2f8ee9a5c823":[3,0,0,6,117], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a65e4f50a62eb7dfb835d2013187fdc2e":[3,0,0,6,85], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a67eb0b2abc1ed0bc49f5287997cd4b88":[3,0,0,6,103], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6955ee4b9476caa9941a4a30608b2d9f":[3,0,0,6,143], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6c274324b8822d301de1de5077d385fc":[3,0,0,6,42], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6d11b644cafb53d7d39f701de5ca026d":[3,0,0,6,35], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e0d94ec73cc2ff2c1076b7f2e39508a":[3,0,0,6,131], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e304d49fbb08fc3b56558769148cf36":[3,0,0,6,39], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e88aef301d6f509e663b741e2193e5d":[3,0,0,6,25], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e8dcc9b22b1e904997c8b4781dc0a24":[3,0,0,6,127], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a74865c26e4916c9348c2ee5c0201f9d9":[3,0,0,6,183], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a75d640ca7358ecbd243474c9355fd084":[3,0,0,6,91], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7cfb255a9b41bb7d578b892b94ec362c":[3,0,0,6,122], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7dfc1b7578f229e739a22ecb69e4710a":[3,0,0,6,107], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7f2691c6eef5893eae43b55495efff89":[3,0,0,6,165], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7ff828228ccab4f53b2438ddd1c7e11a":[3,0,0,6,114], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a842991deab0b4cbc07585d4f437c21dd":[3,0,0,6,135], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8559df95856f0d5961b284bdbecbec4a":[3,0,0,6,10], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a86b1991ace24bc346dbb056d094c9886":[3,0,0,6,134], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a878fb55f61df59b8df5381f405d731c1":[3,0,0,6,68], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a88587e0a35f8081d546cd72e48ddc198":[3,0,0,6,153], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a897263b6cfdd866f230ba767b01fd457":[3,0,0,6,120], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a89727736be0655b4f42ea4bb77f43942":[3,0,0,6,108], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a899d80c2fd828410b2d01a7a96528f8c":[3,0,0,6,65], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8a7b105a86fb8f28033c5d351d8a702d":[3,0,0,6,82], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8c8e1207d2980ba3dd772db6889d7504":[3,0,0,6,53], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8e9e74ef9b1b0cd4caaa8dd3d41da83b":[3,0,0,6,55], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8f76d058261cd655519cbc81f1586bc4":[3,0,0,6,37], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9208c6be68de64b05a8bac94d68b1316":[3,0,0,6,169], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a922f76a3a941dd4d49cc55d382cb16f4":[3,0,0,6,19], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9611e83ff233e8a071999952f0836b1f":[3,0,0,6,173], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a96657076ca10ddfd97018bfbbeb94132":[3,0,0,6,75], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a96b579c4bf9998918494fe0ed7ba5570":[3,0,0,6,132], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a98ed4aa9d85ee3b480d9f4b834b6f41c":[3,0,0,6,171], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9949d6ad0b2b4e41a620c15c2bfa393f":[3,0,0,6,94], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a998bd409cde19062422795ab5ea13c77":[3,0,0,6,138], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9a2d74abb0d93c43f58d08212e2da72a":[3,0,0,6,101], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9a874eddeb97d535b197a7fe3723a2f6":[3,0,0,6,92], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9a88e15efe487b892de5976439b4cb1f":[3,0,0,6,73], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9b382a4ee94f03de684126c67d14ee50":[3,0,0,6,168], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9c9987a7651a37b59bb02cc1ed4361b2":[3,0,0,6,46], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa080f63e010614e89f77e98db762a4a5":[3,0,0,6,70], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa24ae037217ddad097ab29975cbd03af":[3,0,0,6,149], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa31a53c0ea5b86a8cb2bb9b3ccb99964":[3,0,0,6,0], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa41c9b39372bc0ead5b051502bcf262c":[3,0,0,6,89], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa4ed46a9d166f29b87a6f2ff89c458b7":[3,0,0,6,93], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa5cbda3787ddf5092d0fdf14b8e4fe57":[3,0,0,6,36], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa98c3f2932465676d70f00748856f61c":[3,0,0,6,170], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aac8334069ce27d25543b199d6b0afdb3":[3,0,0,6,59], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aace5674d992838bd8dac5926188ea88c":[3,0,0,6,156], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aad12dc3bfd3947b7586c089ee6c15383":[3,0,0,6,154], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aad936f5a80f8c3fe3faa8d6220189098":[3,0,0,6,118], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aada459ccb2b85a8dc33fabc987e173e4":[3,0,0,6,30], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab0136751a5a85aedba8975720d6d6976":[3,0,0,6,60], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab17e4b925713a575bdc269db3bb06f9b":[3,0,0,6,48], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab1bebebe633bb879bba020add20a433b":[3,0,0,6,81], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab3cce6d31e8a198b0e3ef9bbb7489ad2":[3,0,0,6,84], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab4725f604ee9846237af90d47c659f5a":[3,0,0,6,97], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab4d37806bc2d73603698a975fad28672":[3,0,0,6,184], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab5ae9d00d5529018895ddf39b2c3e5eb":[3,0,0,6,71], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab635959cb1f794d46c032e602353e5ac":[3,0,0,6,58], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab802905d674ed99f0d219346a3ab54dc":[3,0,0,6,150], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab80d8e8c73b02af44003f87ea5f92a08":[3,0,0,6,40], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abca9038b509e767223fcd461b1be22aa":[3,0,0,6,164], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abd2265d139f387f507a3179e8289357d":[3,0,0,6,136], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abf03281ffe5a1adc5b3081f7adfe3f4e":[3,0,0,6,17], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abf96e28ad6ffcefb3753b3236b7d8f74":[3,0,0,6,121], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac15b49615174ed00b88a0fc3e7338e2d":[3,0,0,6,20], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac2e2eac0e5d38ed6ec2c7b8891782df0":[3,0,0,6,76], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac40178530b30251630ed759810117676":[3,0,0,6,133], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac42e16e1358505398e631062a1afbd45":[3,0,0,6,181], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac430678f17170002d5d8e71194803049":[3,0,0,6,87], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac555b9f56bc564142de5f6f1c5e81462":[3,0,0,6,8], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac62322154b85b6e0db84e59b6a117a38":[3,0,0,6,14], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac967d11d3c3211ff7ce1c364a6376ed0":[3,0,0,6,61], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac9c3ed9557b71ed6dbcabf4a4c4129ad":[3,0,0,6,22], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aca11a0f89f57a43b6cf1a9d60fa3c013":[3,0,0,6,1], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acbadb8600c31a85deacc8092d6e4b4d7":[3,0,0,6,126], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acbae29129db25e1b1d6c599f91f0dac4":[3,0,0,6,185], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acfa47fcf9dd431fe1022c0c54f651936":[3,0,0,6,167], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acfbdf09c1ae8d64e7eb388094bf54b9b":[3,0,0,6,180], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad03cea0891ae4463c964ed25a336caf0":[3,0,0,6,16], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad0991da0bb1261a103f9b86c179446cc":[3,0,0,6,50], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad1049f36b3561899a547421a6117138c":[3,0,0,6,159], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad40d6aaad44e18804d771e2a7872a2de":[3,0,0,6,190], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad4f4dc559cd966b28e349da4416af20e":[3,0,0,6,129], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad55fb9b2a3604266a75f735f4cd7f52c":[3,0,0,6,4], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad59d257fc10762fe60683c45a3f1b90a":[3,0,0,6,140], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad7a753235aa6ea399b96239f2f0f8efb":[3,0,0,6,177], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad8118a39d8349c891f0d443764d915a5":[3,0,0,6,52], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad9c985872f1eee4c41ae4a30789c0761":[3,0,0,6,160], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8add81216e0221e6d8583d35b1b471199b":[3,0,0,6,31], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8addc1c8d5b6fc9f6d5f0c3ebb9840db76":[3,0,0,6,104], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8adeb727c2591c971117d47d29edec70e6":[3,0,0,6,142], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8adec9d5635d494955de400ca230d64886":[3,0,0,6,12], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae00382cd27990b19544bd0b72cb6dd33":[3,0,0,6,56], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae13f3c9685ff3f32dcb2966ac77c05df":[3,0,0,6,105], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae1e9fb09fdb6841cf4379097812e6156":[3,0,0,6,141], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae3da08cfbb0c6451f5ccf26d3cfdef12":[3,0,0,6,166], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae4ebd9838f9e69e526fae8ff7fad27f2":[3,0,0,6,21], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae62ec11818d3693b55fa3e4ecf55e8e0":[3,0,0,6,15], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae74f6f5d5f827f9891901781c754455b":[3,0,0,6,13], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae7b57f9284c226e7b524bcd9ee23cca9":[3,0,0,6,38], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aea550d03d45b87a810329a6138a0b022":[3,0,0,6,47], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aea683aeff347b767dcdcc7d3630f6395":[3,0,0,6,113], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aedf5bd340743b4cad2a5b5370bdf3184":[3,0,0,6,24], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aee232d80cec4c18cfae78bdfb718c7cf":[3,0,0,6,44], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aef76cb06aecdf33a1186e2b1dd830b1a":[3,0,0,6,98], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af05386b34afb25ea06b40f7dd5d6ecf7":[3,0,0,6,96], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af06dbb8a78ccfbd897d25476da1190ac":[3,0,0,6,152], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af1bec53bb97a928b39bb4e9d5f66eb04":[3,0,0,6,179], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af39326ab50613d8779ebc84e5da8ffbc":[3,0,0,6,28], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af70132beb6b5b4cdaeaed4c70bd553c4":[3,0,0,6,178], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af95284232b2ca5804c03171d71080bc4":[3,0,0,6,109], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afe0f3347d7aed817201dac3bbad6fc75":[3,0,0,6,119], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afe6413d0677423f2f3d0fd0026899323":[3,0,0,6,57], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8affc315c6031ade6b6642d2649281f2e0":[3,0,0,6,115], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#structfsp__version__t_8____unnamed____":[3,0,0,1], -"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#unionfsp__version__t":[3,0,0,0], -"group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.html":[3,2], -"group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.html":[3,1], -"group___r_i_i_c___m_a_s_t_e_r.html":[3,1,10], -"group___r_i_i_c___m_a_s_t_e_r.html#a020f8656c45afc7d90378c7ef26a6955":[3,1,10,0,1], -"group___r_i_i_c___m_a_s_t_e_r.html#a213bb6cc78cf57022dbc0b0b2087c0b4":[3,1,10,0,0], -"group___r_i_i_c___m_a_s_t_e_r.html#a2c8ba3ce75de64703a61dd700ae6bcb6":[3,1,10,2,6], -"group___r_i_i_c___m_a_s_t_e_r.html#a3e7ce84039e9c21f7a3cdc63060efdd1":[3,1,10,2,3], -"group___r_i_i_c___m_a_s_t_e_r.html#a505dbb8fdf8f4ffac481adab9c08b3fc":[3,1,10,0,2], -"group___r_i_i_c___m_a_s_t_e_r.html#a81efa4dd941b358e014354ffbf02ac16":[3,1,10,2,2], -"group___r_i_i_c___m_a_s_t_e_r.html#a8e22c7138ff92050165303b0525e95ba":[3,1,10,2,5], -"group___r_i_i_c___m_a_s_t_e_r.html#a96e7311f8d945a850954b4f6d4db1dba":[3,1,10,2,7], -"group___r_i_i_c___m_a_s_t_e_r.html#aa0e87db942a63d7eb72077bf75f34d87":[3,1,10,2,1], -"group___r_i_i_c___m_a_s_t_e_r.html#ac4f06d6bc304b3105524646725c0e736":[3,1,10,2,0], -"group___r_i_i_c___m_a_s_t_e_r.html#ad923980f5252b98f5a994166c32fde87":[3,1,10,2,4], -"group___r_i_i_c___m_a_s_t_e_r.html#ga0e3fee8948f4df299977350491d537fa":[3,1,10,4], -"group___r_i_i_c___m_a_s_t_e_r.html#ga2a0ac14ddd932a9cab8faf253dcdbbb5":[3,1,10,5], -"group___r_i_i_c___m_a_s_t_e_r.html#ga492a86497c72e8f9bcf70d8dcd03c762":[3,1,10,6], -"group___r_i_i_c___m_a_s_t_e_r.html#ga56dab8b87d138f1e86f718dff839bbb0":[3,1,10,9], -"group___r_i_i_c___m_a_s_t_e_r.html#ga786eaee89f66ecbf8f4faea575ee6e56":[3,1,10,11], -"group___r_i_i_c___m_a_s_t_e_r.html#ga978fc692cf57fadf35e57123b717be3d":[3,1,10,7], -"group___r_i_i_c___m_a_s_t_e_r.html#gaaa8f27a523bc16f11c179ff05f9aed78":[3,1,10,10], -"group___r_i_i_c___m_a_s_t_e_r.html#gaf8ecd43a76bfa058281bb8b6b3981d3f":[3,1,10,3], -"group___r_i_i_c___m_a_s_t_e_r.html#gafd5de8a9b0160931adaba85f614839f3":[3,1,10,8], -"group___r_i_i_c___m_a_s_t_e_r.html#ggaf8ecd43a76bfa058281bb8b6b3981d3fa4afacd0b267f604d06e2b83891c0e577":[3,1,10,3,1], -"group___r_i_i_c___m_a_s_t_e_r.html#ggaf8ecd43a76bfa058281bb8b6b3981d3facc441997b6e18766361457d26227b4bd":[3,1,10,3,0], -"group___r_i_i_c___m_a_s_t_e_r.html#structiic__master__clock__settings__t":[3,1,10,0], -"group___r_i_i_c___m_a_s_t_e_r.html#structiic__master__instance__ctrl__t":[3,1,10,1], -"group___r_i_i_c___m_a_s_t_e_r.html#structriic__master__extended__cfg__t":[3,1,10,2], -"group___r_m___c_o_m_m_s___a_p_i.html":[3,2,12], -"group___r_m___c_o_m_m_s___a_p_i.html#a40779e10d71d444a436dc2382003bc0b":[3,2,12,3,2], -"group___r_m___c_o_m_m_s___a_p_i.html#a468f1e4f571140989fa274d8f40a5bb1":[3,2,12,3,4], -"group___r_m___c_o_m_m_s___a_p_i.html#a5376df7fa8ffa67c59162a527046a7e0":[3,2,12,2,0], -"group___r_m___c_o_m_m_s___a_p_i.html#a8bcd1db3bbb96b2dd0cb252d2b580f53":[3,2,12,2,2], -"group___r_m___c_o_m_m_s___a_p_i.html#aa7c637235b98c380a288bb1e5bbb4569":[3,2,12,2,1], -"group___r_m___c_o_m_m_s___a_p_i.html#abd464feb634b589687a0b8f55d0a078a":[3,2,12,3,1], -"group___r_m___c_o_m_m_s___a_p_i.html#ac2f5d7d5bc7207eb617bcc8b668dc5b3":[3,2,12,2,4], -"group___r_m___c_o_m_m_s___a_p_i.html#acfd68d17c8cad67545ef754a1f5f1322":[3,2,12,2,3], -"group___r_m___c_o_m_m_s___a_p_i.html#aef6d79b01056d9ea88e9fa5f0cd3f229":[3,2,12,3,0], -"group___r_m___c_o_m_m_s___a_p_i.html#af5486a540964c7c37f3115739be3e6cb":[3,2,12,3,3], -"group___r_m___c_o_m_m_s___a_p_i.html#ga2f3ec78f69db27d891220c31183a7936":[3,2,12,6], -"group___r_m___c_o_m_m_s___a_p_i.html#gaa137827e6f43e420c5eb269149c82f20":[3,2,12,5], -"group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__api__t":[3,2,12,3], -"group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__callback__args__t":[3,2,12,1], -"group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__cfg__t":[3,2,12,2], -"group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__instance__t":[3,2,12,4], -"group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__write__read__params__t":[3,2,12,0], -"group___r_m___c_o_m_m_s___i2_c.html":[3,1,13], -"group___r_m___c_o_m_m_s___i2_c.html#a2bb5f217d51637d4e27b8da6761c2021":[3,1,13,0,6], -"group___r_m___c_o_m_m_s___i2_c.html#a4323a08a846785496c0fdea5f1219f1e":[3,1,13,0,4], -"group___r_m___c_o_m_m_s___i2_c.html#a709194cfb42435320dd9a2f263850811":[3,1,13,0,5], -"group___r_m___c_o_m_m_s___i2_c.html#a88d8fbd6294057b09ea0231637643011":[3,1,13,0,0], -"group___r_m___c_o_m_m_s___i2_c.html#a8f3ef7c72a9bc7468fd60dc052b07c74":[3,1,13,0,1], -"group___r_m___c_o_m_m_s___i2_c.html#a98016cae64f53d4c8451a93fec50480d":[3,1,13,0,2], -"group___r_m___c_o_m_m_s___i2_c.html#ab623109ad8cbac1510e511ec6d93972f":[3,1,13,0,3], -"group___r_m___c_o_m_m_s___i2_c.html#ga0560f3c49dbff678d8cbda3e5b8bf44b":[3,1,13,1], -"group___r_m___c_o_m_m_s___i2_c.html#ga58164da5f2284c73a72902f85814438e":[3,1,13,5], -"group___r_m___c_o_m_m_s___i2_c.html#ga5f84cbe68338541d75b220fb374f192b":[3,1,13,3], -"group___r_m___c_o_m_m_s___i2_c.html#ga6fcbfc873b11a9f4c743ab36f52d1b09":[3,1,13,6], -"group___r_m___c_o_m_m_s___i2_c.html#ga85e5f34d0ec4c6e2633a37fcdba7a255":[3,1,13,2], -"group___r_m___c_o_m_m_s___i2_c.html#gada9c139b138ed7c6d4b9bbeae0ffcb52":[3,1,13,4], -"group___r_m___c_o_m_m_s___i2_c.html#structrm__comms__i2c__instance__ctrl__t":[3,1,13,0], -"group___r_m___f_r_e_e_r_t_o_s___p_o_r_t.html":[3,1,14], -"group___r_m___h_s300_x.html":[3,1,15], -"group___r_m___h_s300_x.html#a25114349d2d5b03b5062ef4c4af8bde9":[3,1,15,1,4], -"group___r_m___h_s300_x.html#a36436afd1ed74c2bbf34eab8e5af34bc":[3,1,15,1,3], -"group___r_m___h_s300_x.html#a36c21d0366384c0913491c536e81c280":[3,1,15,1,2], -"group___r_m___h_s300_x.html#a486df3e0ed2af6c8c038e1357572da53":[3,1,15,1,5], -"group___r_m___h_s300_x.html#a4b4fc8fbfadc717fb4842f0db0ffff8b":[3,1,15,0,3], -"group___r_m___h_s300_x.html#a5031dbec8375c4b2be896166fa3457b4":[3,1,15,1,0], -"group___r_m___h_s300_x.html#a60925699b63829347739382ba48b1d13":[3,1,15,1,1], -"group___r_m___h_s300_x.html#a61d14cc82dc42f81c05cf010858ef146":[3,1,15,0,0], -"group___r_m___h_s300_x.html#a74a8a836f1fe14defcd836a93734b887":[3,1,15,0,2], -"group___r_m___h_s300_x.html#a77ac61db4e87b179e4c59aa1f152ce02":[3,1,15,0,1], -"group___r_m___h_s300_x.html#ga09a980a63a6863d373370361f8f607da":[3,1,15,2], -"group___r_m___h_s300_x.html#ga3360174eadfe24421084be0881b7c4f6":[3,1,15,9], -"group___r_m___h_s300_x.html#ga6b1687477a1eceb91a00b77bf34b31c3":[3,1,15,4], -"group___r_m___h_s300_x.html#gaa3d8795e62cc694a4b93382a713ed452":[3,1,15,5], -"group___r_m___h_s300_x.html#gaa5596bf0a35a1e1c15aa214abdbcb653":[3,1,15,10], -"group___r_m___h_s300_x.html#gaa9adabc57bc72f5440aca8fa1addde26":[3,1,15,3], -"group___r_m___h_s300_x.html#gaad0bf1f3d2428b136553060792c65632":[3,1,15,7], -"group___r_m___h_s300_x.html#gabc4a07b3c9843357f322c6b9dc8e8abe":[3,1,15,8], -"group___r_m___h_s300_x.html#gac41a24eae1e4f6ebdb80c2eae32cec63":[3,1,15,6], -"group___r_m___h_s300_x.html#structrm__hs300x__instance__ctrl__t":[3,1,15,1], -"group___r_m___h_s300_x.html#structrm__hs300x__programmnig__mode__params__t":[3,1,15,0], -"group___r_m___h_s300_x___a_p_i.html":[3,2,13], -"group___r_m___h_s300_x___a_p_i.html#a069acb3e5dd3bc2445f053a7dae626bf":[3,2,13,5,5], -"group___r_m___h_s300_x___a_p_i.html#a103e89eaa5092238a9c039914b0eb629":[3,2,13,5,4], -"group___r_m___h_s300_x___a_p_i.html#a1812c8a229f28823abb6dc167dd1f94f":[3,2,13,5,7], -"group___r_m___h_s300_x___a_p_i.html#a1b8c3e526c2265e4bebf5aaf2b1a29fc":[3,2,13,5,3], -"group___r_m___h_s300_x___a_p_i.html#a1e0d9168e53864f3fc70cf99077f6210":[3,2,13,5,2], -"group___r_m___h_s300_x___a_p_i.html#a2bef066ec906f14e411982dc7f51c64d":[3,2,13,4,2], -"group___r_m___h_s300_x___a_p_i.html#a2ee1168f444f962fd1807aa6a48776cb":[3,2,13,4,1], -"group___r_m___h_s300_x___a_p_i.html#a42be32706089d71251045106dfeb9e82":[3,2,13,6,2], -"group___r_m___h_s300_x___a_p_i.html#a5fb2270412b0a4972ba9e3b37daf33ab":[3,2,13,5,1], -"group___r_m___h_s300_x___a_p_i.html#a6b1439ba4f4605e2194d7c4dfc0ce1f8":[3,2,13,5,8], -"group___r_m___h_s300_x___a_p_i.html#a70416ff9548ecd27d828617bd5dfdb8c":[3,2,13,6,0], -"group___r_m___h_s300_x___a_p_i.html#a7e4a14435b06b381e41e2838af87a38c":[3,2,13,4,3], -"group___r_m___h_s300_x___a_p_i.html#a88c8aa8e31fa829fb91cbae763baa284":[3,2,13,5,6], -"group___r_m___h_s300_x___a_p_i.html#a9e58f685584c3b52c8a504f8e8cee696":[3,2,13,1,1], -"group___r_m___h_s300_x___a_p_i.html#aae2bbfa1e2723b7547a49fdfdc8125a2":[3,2,13,2,0], -"group___r_m___h_s300_x___a_p_i.html#abdb7abf73635db350cf99e4041e1eb37":[3,2,13,5,0], -"group___r_m___h_s300_x___a_p_i.html#ac66a33236b3cb4b5106c22b063c43858":[3,2,13,4,0], -"group___r_m___h_s300_x___a_p_i.html#ad8d48666aaa654a2cf4b1067abb9fa63":[3,2,13,1,0], -"group___r_m___h_s300_x___a_p_i.html#adc885d33644960e6c14860dfe1cc1cbe":[3,2,13,6,1], -"group___r_m___h_s300_x___a_p_i.html#ga655f98816c2ac07b37b6b81ad8981c02":[3,2,13,10], -"group___r_m___h_s300_x___a_p_i.html#ga8004126f1557c3e3740fbb64b7d86fa7":[3,2,13,7] +"group___g_p_t.html#ga338dd3c38477ee40c90c13f3a4c9ecfd":[3,1,8,1,26], +"group___g_p_t.html#ga4126139a9c63f1963ffdaea6cc697fe9":[3,1,8,1,31], +"group___g_p_t.html#ga454c639e426428470ce78115af5d3648":[3,1,8,1,7], +"group___g_p_t.html#ga4781e2b42b2ef339318ea0a70b250cd5":[3,1,8,1,9], +"group___g_p_t.html#ga5eb494add3d40775dbc48c5498e15a3a":[3,1,8,1,24], +"group___g_p_t.html#ga6a1389fe5c3bef2301d294b88263628e":[3,1,8,1,20], +"group___g_p_t.html#ga6dfe4ddfb53ba52c674039fd20b6c2b6":[3,1,8,1,10], +"group___g_p_t.html#ga6e14d15c781e316e640c280b4983be28":[3,1,8,1,25], +"group___g_p_t.html#ga749be81f99469c5607a684976d9ae374":[3,1,8,1,19], +"group___g_p_t.html#ga7e57d68f5f5d9757bab01857e8252ade":[3,1,8,1,12], +"group___g_p_t.html#ga82d61d33edf38d50f1247d1d55ec506b":[3,1,8,1,13], +"group___g_p_t.html#ga88d6114404f61d9ca10684f393deb613":[3,1,8,1,15], +"group___g_p_t.html#ga8abd050b841fe99c9b641a22c69501c5":[3,1,8,1,6], +"group___g_p_t.html#ga97d0a9c1a8fb6b88d1c12756dd8ce2d2":[3,1,8,1,21], +"group___g_p_t.html#ga9928e374919fa53240edaca52412beaa":[3,1,8,1,17], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196a":[3,1,8,1,8], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa010a99aa6c4e838ac1bce47abcbe38e5":[3,1,8,1,8,22], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa037a151c14fea20ef0530f5a995f99e5":[3,1,8,1,8,16], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa037a151c14fea20ef0530f5a995f99e5":[3,1,8,1,8,41], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa087fd01a23f8a61c4c04c9655d1fdbbe":[3,1,8,1,8,51], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa1435f9ba57da19cfc255ea6f64ea7853":[3,1,8,1,8,9], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa1435f9ba57da19cfc255ea6f64ea7853":[3,1,8,1,8,34], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa159f75f7237097f61a1b1fcc93a5db0b":[3,1,8,1,8,53], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa19df9d1f4ee5e610a74642fc14a212a3":[3,1,8,1,8,24], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa245bff8d720e94d00c4e61a5e3a172a7":[3,1,8,1,8,48], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa2ea3ebb2e30c10d0c5c087e198175220":[3,1,8,1,8,1], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa2ea3ebb2e30c10d0c5c087e198175220":[3,1,8,1,8,26], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa38a04d6c6afff6e35d872de818c6592d":[3,1,8,1,8,56], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa39e2ab9ce863edbf4bf639ec46db913b":[3,1,8,1,8,45], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa3c659f3a22223a65ffdc96524249eec7":[3,1,8,1,8,15], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa3c659f3a22223a65ffdc96524249eec7":[3,1,8,1,8,40], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa4b546eda998208d87d6da5d0ad2f927a":[3,1,8,1,8,13], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa4b546eda998208d87d6da5d0ad2f927a":[3,1,8,1,8,38], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa51db9e1734d93f834b00868a9246db95":[3,1,8,1,8,23], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa58b8714367e4bb5ec9eb6902c98fdb2e":[3,1,8,1,8,11], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa58b8714367e4bb5ec9eb6902c98fdb2e":[3,1,8,1,8,36], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa5daee2c8037bdc04a019192efdd8af09":[3,1,8,1,8,5], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa5daee2c8037bdc04a019192efdd8af09":[3,1,8,1,8,30], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa760dcf7503c7ca6b790b398622372599":[3,1,8,1,8,50], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7af2b58b26be8c9b04ec5c31fdd66bab":[3,1,8,1,8,3], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7af2b58b26be8c9b04ec5c31fdd66bab":[3,1,8,1,8,28], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7b3ab8f76f2a808dbace3ede3e3faf06":[3,1,8,1,8,18], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7bc36dd829d3ab2b0748a9f7626388a8":[3,1,8,1,8,57], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa8a81917a5ac9b747df42b174e5ae1ee6":[3,1,8,1,8,17], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa8acc300684e40644a6fc935903221a7b":[3,1,8,1,8,54], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa9da09ff5cad371696a109a74ee0dc1ce":[3,1,8,1,8,43], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa9ffb65a99521fcebfb3db2d31d44502d":[3,1,8,1,8,46], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa03328ca033b8043537b813ecabe1c50":[3,1,8,1,8,10], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa03328ca033b8043537b813ecabe1c50":[3,1,8,1,8,35], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa23869f7d7ae4b5d82dac3d2301959b9":[3,1,8,1,8,20], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa68f70eae7db74c62888d368d01dce62":[3,1,8,1,8,52], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaaa3e97349fb24f8ba0a431392a92f95e":[3,1,8,1,8,7], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaaa3e97349fb24f8ba0a431392a92f95e":[3,1,8,1,8,32], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab4c7fdaf7cfdd2d3730525965e68c982":[3,1,8,1,8,2], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab4c7fdaf7cfdd2d3730525965e68c982":[3,1,8,1,8,27], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab844b52adc17cebabf04603fa993f176":[3,1,8,1,8,12], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab844b52adc17cebabf04603fa993f176":[3,1,8,1,8,37], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aac7fdbcdd823ba55b00c647d518693382":[3,1,8,1,8,47], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaceecdd0276a5d1591246c1a2a294ddd3":[3,1,8,1,8,6], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaceecdd0276a5d1591246c1a2a294ddd3":[3,1,8,1,8,31], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad01f879dc9132b0e05827cc7f4219a81":[3,1,8,1,8,4], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad01f879dc9132b0e05827cc7f4219a81":[3,1,8,1,8,29], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad0244ee6154cc4f48355fba3b0ccdd77":[3,1,8,1,8,42], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad0fa16e65ad15a166b4fa319fbeb80ad":[3,1,8,1,8,44], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad6f7ad7ca2dce583089104f23e27ed2c":[3,1,8,1,8,8], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad6f7ad7ca2dce583089104f23e27ed2c":[3,1,8,1,8,33], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aadbf5c5ffebe54747c212d082bdb888f0":[3,1,8,1,8,55], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aae376db52803d52361481b2384c3a3bd8":[3,1,8,1,8,0], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aae376db52803d52361481b2384c3a3bd8":[3,1,8,1,8,25], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaeb63eaa38e2640b48259ddf029c27f54":[3,1,8,1,8,19], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaf6245811e4016299ba0acf0575389ba6":[3,1,8,1,8,14], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaf6245811e4016299ba0acf0575389ba6":[3,1,8,1,8,39], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aafd603c07d1f03e02659c92e6e8991341":[3,1,8,1,8,49], +"group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaff70b0b5e755028cd77f859abb16fe06":[3,1,8,1,8,21], +"group___g_p_t.html#gaa6234faf45320a83382d7ea1923a2c49":[3,1,8,1,30], +"group___g_p_t.html#gaabd4a03d16b1b4254cc44c7779f44c60":[3,1,8,1,5], +"group___g_p_t.html#gac13c16f82e0b7cafcdb8eb6892722943":[3,1,8,1,11], +"group___g_p_t.html#gac737ceea25e4989a9afbf47969a71ba3":[3,1,8,1,16], +"group___g_p_t.html#gaca62ac33de2c05918b0fc359aeaebd97":[3,1,8,1,29], +"group___g_p_t.html#gad14bacf6fb7fce88f3e877160be529ea":[3,1,8,1,28], +"group___g_p_t.html#gada982ef1873ca00147f9692b42aba8f0":[3,1,8,1,38], +"group___g_p_t.html#gae204e5d6c9305923e98724005dcdf03d":[3,1,8,1,33], +"group___g_p_t.html#gafedbfd8bc3f534d06969588ff10a351b":[3,1,8,1,27], +"group___g_p_t.html#gaff2d30ece9bd30b5a9cc2117623834c6":[3,1,8,1,35], +"group___g_p_t.html#gga28d354e417a7a6666e0819387d8e7d8aa55d1a551ce5c866c2917374f34c9dad1":[3,1,8,1,18,0], +"group___g_p_t.html#gga28d354e417a7a6666e0819387d8e7d8aaa04f95e24c83e681190e0553b33ef108":[3,1,8,1,18,1], +"group___g_p_t.html#gga2a838fffcbafd97778bbe3ffbfbf54b1a6f5dba4e42352f1bea9dccd3201021cc":[3,1,8,1,14,0], +"group___g_p_t.html#gga2a838fffcbafd97778bbe3ffbfbf54b1abc17524a1e6137946784a36c5d31f27b":[3,1,8,1,14,1], +"group___g_p_t.html#gga454c639e426428470ce78115af5d3648a3270f1165e7a86c5b12eecb9501390f4":[3,1,8,1,7,0], +"group___g_p_t.html#gga454c639e426428470ce78115af5d3648adc8ebfd0f787322b884ca5d087b3a6a3":[3,1,8,1,7,1], +"group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a01e1b277b55e4fafcb0c196099b51b5f":[3,1,8,1,9,1], +"group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a1be3c4269df18da7b54a4b884d792c59":[3,1,8,1,9,3], +"group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a70176680620465fca73aeda240eb441a":[3,1,8,1,9,4], +"group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a9b2d993dbb736347b473101f14c1fde6":[3,1,8,1,9,0], +"group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5aced01a5e1d1ad4aa3f9235dcc503d655":[3,1,8,1,9,2], +"group___g_p_t.html#gga6a1389fe5c3bef2301d294b88263628ea51901797e055f1ec3e4dbe96bff03086":[3,1,8,1,20,0], +"group___g_p_t.html#gga6a1389fe5c3bef2301d294b88263628eab5c109cf3de710e61c90c3be2d72d9b7":[3,1,8,1,20,1], +"group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a0d5922b5221be7b92ce2218c2d8fb50c":[3,1,8,1,10,4], +"group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a2818f2fff3a64fd3086a7230dabd7a14":[3,1,8,1,10,0], +"group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a2bd0475913403dab220b5e7d6c1acf72":[3,1,8,1,10,1], +"group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a850b0227fd4a50c51c146d44efe7c838":[3,1,8,1,10,3], +"group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6afd744cee1c5e631263a043ec92af7510":[3,1,8,1,10,2], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a0198b5305a0a6853fc433ecf75d44f7f":[3,1,8,1,19,11], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a0287632773cfa466bfa3016d67f14da5":[3,1,8,1,19,9], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a03edb9eb3fdef9a37dbc4f44a077db5a":[3,1,8,1,19,26], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a046f632a922738bb125dd671e28fc7d8":[3,1,8,1,19,27], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a061a1822b878e73e25a3f5cc90ea0eea":[3,1,8,1,19,14], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a15baac27b4f36979352681a5b5969517":[3,1,8,1,19,24], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a1948c35883b0b199c8e6f89a64e53475":[3,1,8,1,19,12], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a196975439836e309f6244a8c0446f047":[3,1,8,1,19,10], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a1aeb241069f6fc33d5b9043bf2870596":[3,1,8,1,19,30], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a1f1aee9567a12196581000383e8d107b":[3,1,8,1,19,3], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a39fed861a0d36f04aa30f3f960e3d2d0":[3,1,8,1,19,2], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a44d17777c6bee08909a70b95f86dc991":[3,1,8,1,19,13], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a5e6950d7178ff3af05f8f4932436b488":[3,1,8,1,19,6], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a61477e753d166ccb25b77eced2e6f325":[3,1,8,1,19,1], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a6984fb835233689f0aaebc39c5f9c000":[3,1,8,1,19,7], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a84dede23a60f4e4b02604d18a7e3c80a":[3,1,8,1,19,21], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a8b235f3b68210961a821c11efa5bb205":[3,1,8,1,19,4], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a8d0ff19f209e9c72f76c20b23a00c7a2":[3,1,8,1,19,31], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a8d827fe46b88273f1a3ecaafe74a6d72":[3,1,8,1,19,15], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a95c8ef43442706c12c2ff0d94e1fb4da":[3,1,8,1,19,18], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a9a0fa3e6bcc2de24f85ef0b9a1b4d914":[3,1,8,1,19,29], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374aa29b8aeb45e93b8086d68f3ce7d60681":[3,1,8,1,19,22], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ab000f412ff95dd16ff74748a96a305f8":[3,1,8,1,19,25], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374abc73975b9e30401bbdbb7c5da506025b":[3,1,8,1,19,17], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ac0195c74dd5aa183fe0ff13f3d037a47":[3,1,8,1,19,16], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ac1341d99df3034c6cebc7d6885fc46b8":[3,1,8,1,19,19], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ac9942874a382d4e1f171bcd74db0ac62":[3,1,8,1,19,28], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374acdb2fab565c1d8a20bdfb3822f326e81":[3,1,8,1,19,8], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ad781616613593d77ed681403590659e4":[3,1,8,1,19,20], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ae167098278c50165bf61eec5987d4c53":[3,1,8,1,19,0], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374af0aae115f89d76e4f3f48a0d36cf361b":[3,1,8,1,19,5], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374af894b19d25eebc010ed5fc6ccea2cb29":[3,1,8,1,19,32], +"group___g_p_t.html#gga749be81f99469c5607a684976d9ae374afa386802f529b7a1e6440335f29c0803":[3,1,8,1,19,23], +"group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea236f4400f00369f754b3b88c8efc35a7":[3,1,8,1,12,2], +"group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea3004c3e75921fa586fdf0538b7ef5abe":[3,1,8,1,12,3], +"group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea36ab56234fbe2b5bb676c0962382bd96":[3,1,8,1,12,1], +"group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adeaa35910cb9d2f17f2488b4efdcb1b1fe9":[3,1,8,1,12,0], +"group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506ba1756f7251a83337222f68cc80bc33dfb":[3,1,8,1,13,0], +"group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506ba2cd233e999331d566eafc32cd29ae9d0":[3,1,8,1,13,3], +"group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506bab3661e69b77c3086864f7872d264be75":[3,1,8,1,13,1], +"group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506babb7208f6cf212d2da6b806bf7f094ca5":[3,1,8,1,13,2], +"group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a297710907b10befa05faa051f2e32be0":[3,1,8,1,15,2], +"group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a75e3083840b7df9aa2883cded3cd2704":[3,1,8,1,15,3], +"group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a8525d45b1517b92b3b6d6f5b5a301083":[3,1,8,1,15,1], +"group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a88ebf7e3d8a17fa38f3a3251e76b76d4":[3,1,8,1,15,0], +"group___g_p_t.html#gga8abd050b841fe99c9b641a22c69501c5a23c94706bd1a34c9f1b9cfffea30f4cc":[3,1,8,1,6,0], +"group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa43c4146c6bbaa9877dc6f1a34b6ccacf":[3,1,8,1,17,1], +"group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa872ee214e5d3998245ac518730f9dde6":[3,1,8,1,17,3], +"group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa9bc6d33154685e53dab457675e8161e8":[3,1,8,1,17,2], +"group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa9dee91a158ffa61d322cbbdac1ed99bd":[3,1,8,1,17,0], +"group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60a2b44d1e05050c34cc6e8d9ee4093294d":[3,1,8,1,5,2], +"group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60a59f7576cde98e497d35b98a926732e52":[3,1,8,1,5,6], +"group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60ac68b7e1ef5c48c55960faacd7eb538b9":[3,1,8,1,5,3], +"group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60acb3ba96929217eb6bb1ec5b2f1ccf9d4":[3,1,8,1,5,4], +"group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60ae3e479af00c84f4ccf6e7376b4b44c8d":[3,1,8,1,5,5], +"group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60aebd74a7b9507fb082ec4cce60ebe9369":[3,1,8,1,5,1], +"group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60aec2d2c471241869efb57a9a48a5d0eda":[3,1,8,1,5,0], +"group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943a41eefcd7c70c85413a47d006127e112e":[3,1,8,1,11,2], +"group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943a7d98bec67e920f1f0f8a98ac18aaa7b5":[3,1,8,1,11,3], +"group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943ae96e3845c4ea884a6d610a745a2c343c":[3,1,8,1,11,0], +"group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943ae9be405a3d64f348534f67710b37658c":[3,1,8,1,11,1], +"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a0168263b8e97f370e2d999e40e57689a":[3,1,8,1,16,1], +"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a1f87ae8bbf43b55f063cbcdbdc329d18":[3,1,8,1,16,7], +"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a21aec2bf2296497576f4f746e83078e9":[3,1,8,1,16,5], +"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a3551066dcaffb033a40d7e329169a345":[3,1,8,1,16,3], +"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a46d2a195d3c9ab5c94c949ce243fbc46":[3,1,8,1,16,6], +"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a6a175bfcdc5102e24b2f10726968262e":[3,1,8,1,16,0], +"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3ab30f5da89de49b73e5d27e376a6702d9":[3,1,8,1,16,4], +"group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3af6d98ec31f682d5439b5381dcb5305e4":[3,1,8,1,16,2], +"group___g_p_t.html#structgpt__extended__cfg__t":[3,1,8,1,4], +"group___g_p_t.html#structgpt__extended__pwm__cfg__t":[3,1,8,1,3], +"group___g_p_t.html#structgpt__gtior__setting__t":[3,1,8,1,1], +"group___g_p_t.html#structgpt__instance__ctrl__t":[3,1,8,1,2], +"group___g_p_t.html#structgpt__output__pin__t":[3,1,8,1,0], +"group___g_t_m.html":[3,1,8,2], +"group___g_t_m.html#ga0213edecdcc056ecf3353c3b59a85bd9":[3,1,8,2,15], +"group___g_t_m.html#ga25c4fd1a5cbb556a97d22f7c5d4e7df5":[3,1,8,2,10], +"group___g_t_m.html#ga329fac4f1af8dee4e45200fd0ce5a9a5":[3,1,8,2,14], +"group___g_t_m.html#ga406683b70b461dec28c6a707eab2993d":[3,1,8,2,7], +"group___g_t_m.html#ga4368d6d5d2ae11cdb0f18cf8bdc75e24":[3,1,8,2,5], +"group___g_t_m.html#ga553dfdd88e36aaf3c58088a5a7774156":[3,1,8,2,11], +"group___g_t_m.html#ga853124c4bd7f079cb4040694fa13c22c":[3,1,8,2,9], +"group___g_t_m.html#ga89c7ca62fbb288cd5f44e5c773c699cf":[3,1,8,2,13], +"group___g_t_m.html#ga95721f8cb1f66dd8556d03b94abc40ed":[3,1,8,2,4], +"group___g_t_m.html#ga98e91cf35dfcff3ed975ee2b07bdd379":[3,1,8,2,6], +"group___g_t_m.html#gaa95357cd0d4d8c43f7a2523d4c3b24f7":[3,1,8,2,12], +"group___g_t_m.html#gaae830979c17ceebe80264f0727e8a6b6":[3,1,8,2,2], +"group___g_t_m.html#gab3167c9bca77864d1f1c325314462618":[3,1,8,2,3], +"group___g_t_m.html#gae0fe404d6571eb59c9f05f43f55eed25":[3,1,8,2,8], +"group___g_t_m.html#ggaae830979c17ceebe80264f0727e8a6b6a352d18878ec62f684b774ce2033e86ea":[3,1,8,2,2,0], +"group___g_t_m.html#ggaae830979c17ceebe80264f0727e8a6b6af322eef944e25834f753b1e1d401684a":[3,1,8,2,2,1], +"group___g_t_m.html#ggab3167c9bca77864d1f1c325314462618a056044e8d54ec9b0d6f7a2c17efea293":[3,1,8,2,3,1], +"group___g_t_m.html#ggab3167c9bca77864d1f1c325314462618a84b337d4b35086b476f3eaa2709b4241":[3,1,8,2,3,0], +"group___g_t_m.html#structgtm__extended__cfg__t":[3,1,8,2,1], +"group___g_t_m.html#structgtm__instance__ctrl__t":[3,1,8,2,0], +"group___i2_c___m_a_s_t_e_r___a_p_i.html":[3,2,5], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a0a0800aaa24f36b2eac8b315a0c5437e":[3,2,5,3,3], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a14a4f6b4fb30067212155c989e5a65d2":[3,2,5,2,1], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a156cf3b414b73e4e9e782c55d131ba39":[3,2,5,2,4], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a1a0c2ac15d2c2eb6a50baed682498620":[3,2,5,3,5], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a3258c94576c0bc4a69095906a314386d":[3,2,5,4,2], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a37cfd76fa962aea67e76d6efaf16dfd7":[3,2,5,2,12], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a3a8cc9e360253e44176a6d3cecb5ece8":[3,2,5,0,1], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a518c35fc22e49d6969fb6e15aa1e09cd":[3,2,5,3,6], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a5d0a5cd0ccc684addfc096545cd3ebc6":[3,2,5,2,6], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a61db7ac4bf7c96d6cbc28c4db281fd6f":[3,2,5,4,0], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a6a35b07fde984333fdce6859dfd56e64":[3,2,5,3,0], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a6b8f5358d8bbec687ddcdb32c88a5f59":[3,2,5,2,13], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a6e1d2e41f4dc058c06c1f5aae0c7bce5":[3,2,5,3,4], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a7b874b282654d0649f041beb36ab9962":[3,2,5,3,1], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a7d093cf28da6a99e56dbeb7b82ad3f5f":[3,2,5,3,7], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a80f1272727c156915cd589c2a881a58f":[3,2,5,2,10], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#a9b5480f5b23ea41b38671f1b7cab8540":[3,2,5,2,8], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#aaff14ac14a40b21573f86fa65abe34f1":[3,2,5,4,1], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#ab2ca2f7ee7e55628bcdd9e3492d7dfd2":[3,2,5,3,2], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#ab51668940cafabfefc502f06fddc9ae4":[3,2,5,2,0], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#ab98d1221b3a246270ef56a57d947ac0c":[3,2,5,0,0], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#abd8565fa7ddc83acb87329275bb56b48":[3,2,5,2,5], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#ac2de0a7db69741ace3fd1e6995bddb57":[3,2,5,2,7], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#adb20031cbc34b2595676ff8004e49448":[3,2,5,2,2], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#adbd429cb907c4f2484900e4b0845b8f8":[3,2,5,2,11], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#af4efbe8e4cb1c08ab54d9818ced03d75":[3,2,5,2,3], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#af5a9589a49c68b926de7deaefc272267":[3,2,5,1,0], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#afc60a909796633071932179988fc8d53":[3,2,5,2,9], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#ga515f0c8b583f8851ce4d6474168769af":[3,2,5,8], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#ga6203bcd8d8127b8fd442a2d33d112940":[3,2,5,7], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#ga87f5194ba16044322815db81dc442138":[3,2,5,5], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#gaa30dd03665bdc1134233e8e2b1631f0a":[3,2,5,6], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#gga515f0c8b583f8851ce4d6474168769afa1b3d50a1a4fbf045307febd9eca1521a":[3,2,5,8,1], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#gga515f0c8b583f8851ce4d6474168769afa22226fd293eb8a7f80e4a80ca8699a4d":[3,2,5,8,0], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#gga515f0c8b583f8851ce4d6474168769afa9273437457da4f6369e937d257c0211b":[3,2,5,8,2], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#gga6203bcd8d8127b8fd442a2d33d112940a90fd4eafcbdc39a9f466f9342246ac4d":[3,2,5,7,1], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#gga6203bcd8d8127b8fd442a2d33d112940ab42fbd73d951db4694494c5acfa19dd8":[3,2,5,7,0], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#ggaa30dd03665bdc1134233e8e2b1631f0aa929a32b2615c7c54efa382f06e901cc0":[3,2,5,6,0], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#ggaa30dd03665bdc1134233e8e2b1631f0aae2e38e76a2477e68f2685b403bdeb9a9":[3,2,5,6,1], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#ggaa30dd03665bdc1134233e8e2b1631f0aaee266782cacb431c8623f7276063228b":[3,2,5,6,2], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__api__t":[3,2,5,3], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__callback__args__t":[3,2,5,0], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__cfg__t":[3,2,5,2], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__instance__t":[3,2,5,4], +"group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__status__t":[3,2,5,1], +"group___i2_c___s_l_a_v_e___a_p_i.html":[3,2,6], +"group___i2_c___s_l_a_v_e___a_p_i.html#a23919938fff411b2275548e6c0dc0c7a":[3,2,6,2,4], +"group___i2_c___s_l_a_v_e___a_p_i.html#a2708ed5dc2491d0551dd4a8688d919cb":[3,2,6,1,0], +"group___i2_c___s_l_a_v_e___a_p_i.html#a2abbee554bf1c554d96c8863eb3db77a":[3,2,6,1,1], +"group___i2_c___s_l_a_v_e___a_p_i.html#a3f978820e80073c05ef95e3b1ef31601":[3,2,6,2,0], +"group___i2_c___s_l_a_v_e___a_p_i.html#a43903d76b59b527cef993d5cdbe9a2b9":[3,2,6,0,1], +"group___i2_c___s_l_a_v_e___a_p_i.html#a459e8abd8d66a321b5c56f12590e8354":[3,2,6,1,3] }; diff --git a/navtreeindex6.js b/navtreeindex6.js index ecf0620..849a344 100644 --- a/navtreeindex6.js +++ b/navtreeindex6.js @@ -1,253 +1,253 @@ var NAVTREEINDEX6 = { -"group___r_m___h_s300_x___a_p_i.html#gaaab827d822b03dfceb75bb3071a4fad1":[3,2,13,9], -"group___r_m___h_s300_x___a_p_i.html#gad56a7deec64851bc4919a7367823eecd":[3,2,13,8], -"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__api__t":[3,2,13,5], -"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__callback__args__t":[3,2,13,0], -"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__cfg__t":[3,2,13,4], -"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__data__t":[3,2,13,3], -"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__instance__t":[3,2,13,6], -"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__raw__data__t":[3,2,13,1], -"group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__sensor__data__t":[3,2,13,2], -"group___r_m___h_s400_x.html":[3,1,16], -"group___r_m___h_s400_x.html#a39ddb6ae741d5506489bb4a87d466edf":[3,1,16,0,1], -"group___r_m___h_s400_x.html#a45b5fb27d54a8998d37ae8f90bc6bc47":[3,1,16,1,0], -"group___r_m___h_s400_x.html#a54d7d67e8c118457e17bdd80acb565c6":[3,1,16,0,0], -"group___r_m___h_s400_x.html#a5a901725d640aab3b802cffa3159276e":[3,1,16,1,5], -"group___r_m___h_s400_x.html#a5ad7e2630eddb4d77b167363ae3e6cfe":[3,1,16,1,9], -"group___r_m___h_s400_x.html#a5af51eb4d4038952763bba41f2dee7b7":[3,1,16,1,4], -"group___r_m___h_s400_x.html#a6288740f2724536ce15942ec1e46ee3b":[3,1,16,1,10], -"group___r_m___h_s400_x.html#a72f6d28fd2d5889d5733ce5ad5b345db":[3,1,16,1,8], -"group___r_m___h_s400_x.html#a8a565adac63233a59d03487d1417b33b":[3,1,16,1,1], -"group___r_m___h_s400_x.html#a977c323e9b1fba0858f58d4e9baf0ad5":[3,1,16,1,2], -"group___r_m___h_s400_x.html#ac470e112ef6556c406bda75049c7f3d6":[3,1,16,1,7], -"group___r_m___h_s400_x.html#aefb5d5f935001b4f4e33272387317282":[3,1,16,1,6], -"group___r_m___h_s400_x.html#afae51fca4d0796c27b1234c4d050f9e9":[3,1,16,1,3], -"group___r_m___h_s400_x.html#ga21afc7bb8b35ca56c4918ddd26a1549a":[3,1,16,4], -"group___r_m___h_s400_x.html#ga746a0ada3830ba954f47de6ed4f9746c":[3,1,16,6], -"group___r_m___h_s400_x.html#gaa263adbe024135888d31e141ce18d52c":[3,1,16,2], -"group___r_m___h_s400_x.html#gaa9dfab1c5a32803f66b8713adfd76d1d":[3,1,16,7], -"group___r_m___h_s400_x.html#gac7959f33340cb226d60a3b31ffd8e3e1":[3,1,16,5], -"group___r_m___h_s400_x.html#gadf41bfc87749833ce99276321fabb35c":[3,1,16,3], -"group___r_m___h_s400_x.html#structrm__hs400x__init__process__params__t":[3,1,16,0], -"group___r_m___h_s400_x.html#structrm__hs400x__instance__ctrl__t":[3,1,16,1], -"group___r_m___h_s400_x___a_p_i.html":[3,2,14], -"group___r_m___h_s400_x___a_p_i.html#a1275c87fc13e4effb686e72343b85ad2":[3,2,14,5,4], -"group___r_m___h_s400_x___a_p_i.html#a16b20fc56880ef23d5b8a4b2f169c50e":[3,2,14,6,4], -"group___r_m___h_s400_x___a_p_i.html#a2345337ea54f3db1a45733a57dd3a358":[3,2,14,5,0], -"group___r_m___h_s400_x___a_p_i.html#a2928df5b91141ebb9aff254547966843":[3,2,14,6,5], -"group___r_m___h_s400_x___a_p_i.html#a36931367054e059ebbebccfda169927d":[3,2,14,5,3], -"group___r_m___h_s400_x___a_p_i.html#a4a9e3392df8193428e1907f2e4a315b9":[3,2,14,5,2], -"group___r_m___h_s400_x___a_p_i.html#a5ecc1b981019560e1035eb47bb02e52f":[3,2,14,7,2], -"group___r_m___h_s400_x___a_p_i.html#a631d9b338b2183a1ae2ce36b9adb844b":[3,2,14,2,1], -"group___r_m___h_s400_x___a_p_i.html#a66bd54ec8371b1b45b530c455e5d9ea0":[3,2,14,6,3], -"group___r_m___h_s400_x___a_p_i.html#a7050fd08733d97f90d0ce05faf6b2848":[3,2,14,5,6], -"group___r_m___h_s400_x___a_p_i.html#a9b456f4ea4caeb04061bca271c5cab66":[3,2,14,7,0], -"group___r_m___h_s400_x___a_p_i.html#a9fa007f86deb655f999b5d0b1c4d65cb":[3,2,14,7,1], -"group___r_m___h_s400_x___a_p_i.html#aa1d22106aaa7182a9cea0652eff5bf69":[3,2,14,2,0], -"group___r_m___h_s400_x___a_p_i.html#ac6a5f8689aeda6f82bbd41d1794a66e3":[3,2,14,6,2], -"group___r_m___h_s400_x___a_p_i.html#ad726639457424c9f13522ab301833898":[3,2,14,5,1], -"group___r_m___h_s400_x___a_p_i.html#adb5595b01588645a3e9a9cfd1edb074a":[3,2,14,3,0], -"group___r_m___h_s400_x___a_p_i.html#ae6e90a1467d0a6ca0911845360356fc5":[3,2,14,5,5], -"group___r_m___h_s400_x___a_p_i.html#ae818086f1405c4519041c442fa5a0489":[3,2,14,2,2], -"group___r_m___h_s400_x___a_p_i.html#af43342d596f670dae68958a5011afed6":[3,2,14,6,1], -"group___r_m___h_s400_x___a_p_i.html#af60c3ba93861728b92487a5e727381d8":[3,2,14,6,0], -"group___r_m___h_s400_x___a_p_i.html#ga0593682edecc45c93a952cee4da7de1b":[3,2,14,11], -"group___r_m___h_s400_x___a_p_i.html#ga2d357850845781daeef921064d664a4b":[3,2,14,8], -"group___r_m___h_s400_x___a_p_i.html#ga5b0c2c5ce80e20f899cce8ac4d85cf84":[3,2,14,10], -"group___r_m___h_s400_x___a_p_i.html#ga6ab3f5a23c4ddfcbf416027512700d69":[3,2,14,12], -"group___r_m___h_s400_x___a_p_i.html#gadb5e6e3edfdfe9ee37e4ed7941513032":[3,2,14,9], -"group___r_m___h_s400_x___a_p_i.html#gga6ab3f5a23c4ddfcbf416027512700d69a065a54759d825775527b92f4c02342ef":[3,2,14,12,2], -"group___r_m___h_s400_x___a_p_i.html#gga6ab3f5a23c4ddfcbf416027512700d69a71fd810a9f93f8190420c5717a999ba2":[3,2,14,12,1], -"group___r_m___h_s400_x___a_p_i.html#gga6ab3f5a23c4ddfcbf416027512700d69aaeebce78040edb12cb5737d5708df752":[3,2,14,12,0], -"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__api__t":[3,2,14,6], -"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__callback__args__t":[3,2,14,0], -"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__cfg__t":[3,2,14,5], -"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__data__t":[3,2,14,4], -"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__instance__t":[3,2,14,7], -"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__raw__data__t":[3,2,14,2], -"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__resolutions__t":[3,2,14,1], -"group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__sensor__data__t":[3,2,14,3], -"group___r_m___o_b1203.html":[3,1,17], -"group___r_m___o_b1203.html#a002e10b810510f6ddacf3636941b8ad3":[3,1,17,1,13], -"group___r_m___o_b1203.html#a022942b085717470822f277c4b31ba3a":[3,1,17,1,7], -"group___r_m___o_b1203.html#a0afb601514b214fc0f69648150d139b4":[3,1,17,1,23], -"group___r_m___o_b1203.html#a0b8c9711655d57482f2fa4885b6fe358":[3,1,17,1,17], -"group___r_m___o_b1203.html#a16876cb1e3093f468775969f97c77a78":[3,1,17,2,7], -"group___r_m___o_b1203.html#a189057778d7cbd48ac1ad8a1df064a77":[3,1,17,2,12], -"group___r_m___o_b1203.html#a1ee453fb8ab99c99f7c66a81ec8930fc":[3,1,17,1,15], -"group___r_m___o_b1203.html#a1f6bcc914fc1ce1cc6f6698aa8221cad":[3,1,17,2,1], -"group___r_m___o_b1203.html#a28ff7aa34215ceac46c9837869566943":[3,1,17,2,10], -"group___r_m___o_b1203.html#a2abd97a96166d245c48e6e0787693fb4":[3,1,17,1,32], -"group___r_m___o_b1203.html#a2dff0d73a95082059f417d185b80cb8a":[3,1,17,1,4], -"group___r_m___o_b1203.html#a3d101a3a796221fc394abb203998d492":[3,1,17,1,11], -"group___r_m___o_b1203.html#a4a9e23f9ea29a94ce55aecf2a6a90efd":[3,1,17,1,37], -"group___r_m___o_b1203.html#a5304c578e8d3e84524754223a865b89c":[3,1,17,1,27], -"group___r_m___o_b1203.html#a552c03c8de87ba18c02d7d92ccb492d4":[3,1,17,1,5], -"group___r_m___o_b1203.html#a5a121bd4d0dd5525fe4fa1940c2807f7":[3,1,17,1,18], -"group___r_m___o_b1203.html#a5b83bc78a2501b848235a640aff20547":[3,1,17,1,34], -"group___r_m___o_b1203.html#a5c280d0afc580954d5ed17337c03f5ef":[3,1,17,1,33], -"group___r_m___o_b1203.html#a5f59be16765f431c4a5793bfb2d6bf7b":[3,1,17,1,22], -"group___r_m___o_b1203.html#a602e9dc2a52e58a964e3d31d40f804bd":[3,1,17,1,20], -"group___r_m___o_b1203.html#a6474b07ae9f3ac43315f3614be9de2d6":[3,1,17,2,5], -"group___r_m___o_b1203.html#a6b1b27c35ae14887c24ac87fc09ae5b2":[3,1,17,1,36], -"group___r_m___o_b1203.html#a6c0b5939aa98532a28c344960a62379d":[3,1,17,2,9], -"group___r_m___o_b1203.html#a6d8a552db7926950c4b1c419a48fdf4e":[3,1,17,1,29], -"group___r_m___o_b1203.html#a6ea712faa60b5098695c5bf9dee22fa9":[3,1,17,1,3], -"group___r_m___o_b1203.html#a717ea530db97b35669792d4402106037":[3,1,17,1,6], -"group___r_m___o_b1203.html#a761b053d6f0276e7cdbef4ab857141b9":[3,1,17,2,13], -"group___r_m___o_b1203.html#a7653a25ab1427a9ed18b79cdef7bfb16":[3,1,17,1,38], -"group___r_m___o_b1203.html#a76a478bfae379eccb11d7da016c0b223":[3,1,17,1,19], -"group___r_m___o_b1203.html#a7d96e3fa4f80d77e18d6311b58abb351":[3,1,17,1,2], -"group___r_m___o_b1203.html#a8315472488bcdc83146c0e0c873d8037":[3,1,17,2,2], -"group___r_m___o_b1203.html#a84152ba34a94d2cc53b01a0195d1e499":[3,1,17,1,26], -"group___r_m___o_b1203.html#a8671a1b4dd57a4e872515a27904d712b":[3,1,17,2,4], -"group___r_m___o_b1203.html#a86d8b953af37f657dfeb162cd0591de0":[3,1,17,1,30], -"group___r_m___o_b1203.html#a8b1238b9262829b92acf3b488fba8164":[3,1,17,1,21], -"group___r_m___o_b1203.html#a8b9c2e8ea5903f1d3c42cf99539a6f37":[3,1,17,1,1], -"group___r_m___o_b1203.html#a8c18e88241e0b27b67d0f7fbaf65d94a":[3,1,17,2,8], -"group___r_m___o_b1203.html#a8c2e28fd8857be8e771d04d82bc956ea":[3,1,17,1,28], -"group___r_m___o_b1203.html#a8f73599ce4c7f63c4c823e74f7c567cb":[3,1,17,1,16], -"group___r_m___o_b1203.html#a92cbb312b5e1e41706b4e68b38357f02":[3,1,17,1,14], -"group___r_m___o_b1203.html#a95edd35c1ca18bb45030ea849f72c079":[3,1,17,1,24], -"group___r_m___o_b1203.html#aa3cb62edd73814ba315627754fd85266":[3,1,17,1,9], -"group___r_m___o_b1203.html#aa936e3ee9a75bee3c5a4aad146f04c7e":[3,1,17,2,15], -"group___r_m___o_b1203.html#abaf0ccf0e2e10792107bdcb85790bad7":[3,1,17,2,14], -"group___r_m___o_b1203.html#ac1299c7dc5347bb69d968283a73e655d":[3,1,17,0,1], -"group___r_m___o_b1203.html#ac5d15bf27b5bcd1a6b721a0f67374372":[3,1,17,1,10], -"group___r_m___o_b1203.html#ada67105cd21a7dae41a9e6a46e96dd1d":[3,1,17,1,0], -"group___r_m___o_b1203.html#ae35c158322080273b5df3e059528f752":[3,1,17,1,31], -"group___r_m___o_b1203.html#ae36a5f755dda4ad54a211d7beceaa1fe":[3,1,17,1,35], -"group___r_m___o_b1203.html#ae462f5fde180d3b4bc191a7b0b36de1a":[3,1,17,1,25], -"group___r_m___o_b1203.html#ae4fbc64795865bea8bc3d64f34a96c74":[3,1,17,2,3], -"group___r_m___o_b1203.html#aea4edefdaa00495d377261f39c36b33f":[3,1,17,0,0], -"group___r_m___o_b1203.html#aeb793e75865a9f62297d91034603aaf1":[3,1,17,1,8], -"group___r_m___o_b1203.html#af1adb0f5fdb98f08dc0795c8946b04e5":[3,1,17,2,0], -"group___r_m___o_b1203.html#af53827a211cd1402bd8945e8c5f16f5f":[3,1,17,2,11], -"group___r_m___o_b1203.html#af65f28877e8b54a1b22601e42ab7d1db":[3,1,17,2,6], -"group___r_m___o_b1203.html#afd0c72c77c52c3eeb6c3c82649807cac":[3,1,17,1,12], -"group___r_m___o_b1203.html#ga13ab57714aafa9a3023a32f83c88e1dd":[3,1,17,17], -"group___r_m___o_b1203.html#ga1de710492d4da21656a5cbd62eb2b721":[3,1,17,9], -"group___r_m___o_b1203.html#ga306ea4427230d2c7c2e2c0ae53346a0b":[3,1,17,11], -"group___r_m___o_b1203.html#ga34d3b67d431ab9cdb45fa561196d8e85":[3,1,17,3], -"group___r_m___o_b1203.html#ga554b7652ea5ee0de096b21e6580f164f":[3,1,17,13], -"group___r_m___o_b1203.html#ga5666b0538afdae80059de7271667694c":[3,1,17,14], -"group___r_m___o_b1203.html#ga56f8661c39d7b7b41e0799d528f08c92":[3,1,17,8], -"group___r_m___o_b1203.html#ga5888f249d9e67a2af39ce7977065d359":[3,1,17,10], -"group___r_m___o_b1203.html#ga6ffbbe58d90adb8001d2f6424987e71b":[3,1,17,16], -"group___r_m___o_b1203.html#gaabca4420cac85f4ea23be2454863d443":[3,1,17,5], -"group___r_m___o_b1203.html#gab851b2d1c598510756bea3608f3261a3":[3,1,17,6], -"group___r_m___o_b1203.html#gad3e86f2d3ee11e505e5df6fc8e1b5c1f":[3,1,17,7], -"group___r_m___o_b1203.html#gae791e9a53d7642b5ab9bed5ddfb195fa":[3,1,17,15], -"group___r_m___o_b1203.html#gaff536e258d187d8efd6fac712ca885e1":[3,1,17,4], -"group___r_m___o_b1203.html#gaffe63df6ba35eb27989b694af004a87b":[3,1,17,12], -"group___r_m___o_b1203.html#structrm__ob1203__init__process__params__t":[3,1,17,0], -"group___r_m___o_b1203.html#structrm__ob1203__instance__ctrl__t":[3,1,17,2], -"group___r_m___o_b1203.html#structrm__ob1203__mode__extended__cfg__t":[3,1,17,1], -"group___r_m___o_b1203___a_p_i.html":[3,2,15], -"group___r_m___o_b1203___a_p_i.html#a0596b99630a0a42868fd6832e2123f60":[3,2,15,2,4], -"group___r_m___o_b1203___a_p_i.html#a08c6a80cb4cea1048712c81229fc6d57":[3,2,15,9,1], -"group___r_m___o_b1203___a_p_i.html#a08e4bed45dd5f045f149e7429e2bb8b5":[3,2,15,2,0], -"group___r_m___o_b1203___a_p_i.html#a098de06ea0c6b7261ccca0d471f964f6":[3,2,15,5,0], -"group___r_m___o_b1203___a_p_i.html#a198466f69342eda1f86d4853d0157f22":[3,2,15,11,5], -"group___r_m___o_b1203___a_p_i.html#a1ae36e22e66dbb0319f3f42931dfd9f7":[3,2,15,9,3], -"group___r_m___o_b1203___a_p_i.html#a212ec348b354cb3cce33fc0d313feec8":[3,2,15,10,6], -"group___r_m___o_b1203___a_p_i.html#a2f7c11ddb2c3d8c9cf91c25e3183daa1":[3,2,15,11,8], -"group___r_m___o_b1203___a_p_i.html#a32be3218edf3a0a22e3fd7403ae8d5e7":[3,2,15,11,10], -"group___r_m___o_b1203___a_p_i.html#a36749f94b25fce91140f34d29c8e30bb":[3,2,15,7,1], -"group___r_m___o_b1203___a_p_i.html#a3d137e0be66735864d9a95669fa2c1f3":[3,2,15,11,0], -"group___r_m___o_b1203___a_p_i.html#a45f7c3c0573f56bf411ac2953b7c5883":[3,2,15,5,3], -"group___r_m___o_b1203___a_p_i.html#a464bef4e7cf70926e60bbed2c0b492af":[3,2,15,5,2], -"group___r_m___o_b1203___a_p_i.html#a4c7f200673051f7f58eb32ff1e377eea":[3,2,15,9,2], -"group___r_m___o_b1203___a_p_i.html#a4cbf8f98a7e43f101dceb15005784375":[3,2,15,10,4], -"group___r_m___o_b1203___a_p_i.html#a53330895d99a2275d9c0017cde87f7be":[3,2,15,5,5], -"group___r_m___o_b1203___a_p_i.html#a53a1af5cbd0dd954d6e5cffbd217d834":[3,2,15,5,1], -"group___r_m___o_b1203___a_p_i.html#a59afad08ce30308e6606c3362b903b47":[3,2,15,12,1], -"group___r_m___o_b1203___a_p_i.html#a5bdd78a4533b146b93676fb1f630eaee":[3,2,15,12,0], -"group___r_m___o_b1203___a_p_i.html#a7d3decdc87199472697b5aec3387d406":[3,2,15,11,12], -"group___r_m___o_b1203___a_p_i.html#a82fdd4f8e1ef45d2f06a355d60979968":[3,2,15,11,11], -"group___r_m___o_b1203___a_p_i.html#a883db336eabdcd2eec7d787f2664e9d7":[3,2,15,6,0], -"group___r_m___o_b1203___a_p_i.html#a895aed77cf1aba3014b6d0b631e8a10d":[3,2,15,7,0], -"group___r_m___o_b1203___a_p_i.html#a8a9cdc12354f28a3e33700e5df67de20":[3,2,15,10,1], -"group___r_m___o_b1203___a_p_i.html#a9365629cc58e4f4c9cf33420b07416f5":[3,2,15,11,2], -"group___r_m___o_b1203___a_p_i.html#a95b8a8c5eb90336511e811dcc960546c":[3,2,15,10,5], -"group___r_m___o_b1203___a_p_i.html#a9ac32b72f200c27a6a0c01c0cea30fd3":[3,2,15,3,0], -"group___r_m___o_b1203___a_p_i.html#a9ad151287228fa18a0314b5869cd876a":[3,2,15,10,0], -"group___r_m___o_b1203___a_p_i.html#a9b7d68fb7a2baf7cca79ff3026e36cd5":[3,2,15,11,6], -"group___r_m___o_b1203___a_p_i.html#a9f902d2c8bf975288a49f443f20092ae":[3,2,15,11,7], -"group___r_m___o_b1203___a_p_i.html#aa3ca0efc07f8e5cdf3086fe422239b60":[3,2,15,11,4], -"group___r_m___o_b1203___a_p_i.html#ab0b7710c3ff54f649c0f544612570e84":[3,2,15,12,2], -"group___r_m___o_b1203___a_p_i.html#ab55258f8d19ebb8ccc07a2524ddaaa63":[3,2,15,9,0], -"group___r_m___o_b1203___a_p_i.html#ab5f700a5790ea992d82af3a1c7216d66":[3,2,15,2,1], -"group___r_m___o_b1203___a_p_i.html#ab734102cdf18606c10541df451fcf963":[3,2,15,4,0], -"group___r_m___o_b1203___a_p_i.html#abd612814bfe809e1435fab3ba2c6b2e2":[3,2,15,11,9], -"group___r_m___o_b1203___a_p_i.html#ac420d009e91e7281052cd9d34a057394":[3,2,15,8,1], -"group___r_m___o_b1203___a_p_i.html#ac6f9b82ccffba821d2d1d59cc044d024":[3,2,15,2,3], -"group___r_m___o_b1203___a_p_i.html#ace63f4f8958af6e1424ad4fa176bbcf2":[3,2,15,11,13], -"group___r_m___o_b1203___a_p_i.html#ad08d19d7beac8dd1f6a672ab4006eb71":[3,2,15,1,0], -"group___r_m___o_b1203___a_p_i.html#ad778eb596d6af74ccedec46ed4dec9f7":[3,2,15,11,3], -"group___r_m___o_b1203___a_p_i.html#adf018d2e314ba41ba4dfb56ebd411501":[3,2,15,10,3], -"group___r_m___o_b1203___a_p_i.html#adf71a33aec370fd165af3dff0c4d8b7a":[3,2,15,5,4], -"group___r_m___o_b1203___a_p_i.html#aed354d575a3add4a27f6fd3770b029f9":[3,2,15,2,2], -"group___r_m___o_b1203___a_p_i.html#af510fc446832c663bed37b3ab42a90b3":[3,2,15,8,0], -"group___r_m___o_b1203___a_p_i.html#af8fdc3428fcbe22e4878a27ccde17b0b":[3,2,15,10,2], -"group___r_m___o_b1203___a_p_i.html#af9780f361fb17b04000550de7543134a":[3,2,15,11,1], -"group___r_m___o_b1203___a_p_i.html#afb392158117d2cc57e8c0ec5042b1361":[3,2,15,11,14], -"group___r_m___o_b1203___a_p_i.html#ga02afdc6d89538793ab3f1ebd2a84ff6f":[3,2,15,20], -"group___r_m___o_b1203___a_p_i.html#ga073572d75f036110608bf2a723c62fc8":[3,2,15,17], -"group___r_m___o_b1203___a_p_i.html#ga0c0d347b4e6af84c4f4148ea68280337":[3,2,15,18], -"group___r_m___o_b1203___a_p_i.html#ga110a5efe8990e8dd03692e565f452910":[3,2,15,28], -"group___r_m___o_b1203___a_p_i.html#ga35f1462a48dabaf6cf97ece29efe6271":[3,2,15,16], -"group___r_m___o_b1203___a_p_i.html#ga3de882d54ed2555e788d24da2059217d":[3,2,15,27], -"group___r_m___o_b1203___a_p_i.html#ga41b9839d52cdeaa01260dc24932d6fe3":[3,2,15,36], -"group___r_m___o_b1203___a_p_i.html#ga4569d4be03632003ce030d966d4e02c5":[3,2,15,22], -"group___r_m___o_b1203___a_p_i.html#ga463e63a319a589ebdcf29b0b482b2f00":[3,2,15,34], -"group___r_m___o_b1203___a_p_i.html#ga4d79e3bac567b22223b4e219a6ee7f34":[3,2,15,30], -"group___r_m___o_b1203___a_p_i.html#ga5bb022affce59b47909e01ae68d01f5c":[3,2,15,35], -"group___r_m___o_b1203___a_p_i.html#ga649fde9081cd4c40cac825f132598091":[3,2,15,14], -"group___r_m___o_b1203___a_p_i.html#ga6c3b7fc2670bb119c9eb07acecf69847":[3,2,15,15], -"group___r_m___o_b1203___a_p_i.html#ga7dc5ec94376eb3c1fa0a16b549c56f5d":[3,2,15,32], -"group___r_m___o_b1203___a_p_i.html#ga8ee7cd0bc32e3c09662791b7e86ffe83":[3,2,15,25], -"group___r_m___o_b1203___a_p_i.html#ga904954d6bf969490d7fc31d1589fba5c":[3,2,15,29], -"group___r_m___o_b1203___a_p_i.html#gaa246c1288f2d4941973249afa6acb4d4":[3,2,15,19], -"group___r_m___o_b1203___a_p_i.html#gaac3af213866be23053d28609f06bf748":[3,2,15,24], -"group___r_m___o_b1203___a_p_i.html#gab0d74efedf983faf97798d0136376219":[3,2,15,21], -"group___r_m___o_b1203___a_p_i.html#gab55b5fd0ddd115230c80a2ef140cfdc8":[3,2,15,33], -"group___r_m___o_b1203___a_p_i.html#gac6e75ff65e4c3354fac0f8a44b8545bf":[3,2,15,13], -"group___r_m___o_b1203___a_p_i.html#gad65df49755c15c3a73ea8eb8ca2a9e3a":[3,2,15,23], -"group___r_m___o_b1203___a_p_i.html#gaeae8a766bbc25cd6e1097c44f03c8dea":[3,2,15,26], -"group___r_m___o_b1203___a_p_i.html#gaf6e99ef0d49ecff17a9ffd16f0b096e6":[3,2,15,31], -"group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa1358cf29768b43f045fdef6e4ceb6ba9":[3,2,15,20,0], -"group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa37b9289fd92d4c206f21a06ea2a99ca5":[3,2,15,20,2], -"group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa802f734955e3c3bd8e129cdda3ec7cf5":[3,2,15,20,1], -"group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa9a996f750da299f4113478e15feb8ffa":[3,2,15,20,3], -"group___r_m___o_b1203___a_p_i.html#gga073572d75f036110608bf2a723c62fc8a31d155e569e27e89cb1fda28b9c873c2":[3,2,15,17,1], -"group___r_m___o_b1203___a_p_i.html#gga073572d75f036110608bf2a723c62fc8aff55255344406d1efbf027168091d6ad":[3,2,15,17,0], -"group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337a4bc0b692b6ccf21d3063c0b49f49f26b":[3,2,15,18,3], -"group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337a59270ba96c793b7dd2c76e740e3feb29":[3,2,15,18,4], -"group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337a9f0e97293c93ac039f14b52d12c5048b":[3,2,15,18,5], -"group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337ae914fde809d1209287046352826f65d5":[3,2,15,18,2], -"group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337aea40c00eb88fbcade796b8bbdc7276db":[3,2,15,18,0], -"group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337af8b045c45eaa68438347223926bdb6ab":[3,2,15,18,1], -"group___r_m___o_b1203___a_p_i.html#gga110a5efe8990e8dd03692e565f452910a2fd48413cb54c599b6b162424e4536e1":[3,2,15,28,1], -"group___r_m___o_b1203___a_p_i.html#gga110a5efe8990e8dd03692e565f452910a95d8846c0785f83c63ab55edbfb06517":[3,2,15,28,0], -"group___r_m___o_b1203___a_p_i.html#gga35f1462a48dabaf6cf97ece29efe6271a13e03529af4c330ca76c006610e52c77":[3,2,15,16,1], -"group___r_m___o_b1203___a_p_i.html#gga35f1462a48dabaf6cf97ece29efe6271afd6cb7d5faabb578298d1b16364250ab":[3,2,15,16,0], -"group___r_m___o_b1203___a_p_i.html#gga3de882d54ed2555e788d24da2059217dac0f8b2f67cbdedb8ebaec4564742ab0b":[3,2,15,27,0], -"group___r_m___o_b1203___a_p_i.html#gga3de882d54ed2555e788d24da2059217daf2c7dbd03421e0cecfcdadac5fdde530":[3,2,15,27,1], -"group___r_m___o_b1203___a_p_i.html#gga41b9839d52cdeaa01260dc24932d6fe3a2673055a75c804ebb0186e805471c07b":[3,2,15,36,1], -"group___r_m___o_b1203___a_p_i.html#gga41b9839d52cdeaa01260dc24932d6fe3af28a76cfc08665e307291b6ca78afdb1":[3,2,15,36,0], -"group___r_m___o_b1203___a_p_i.html#gga4569d4be03632003ce030d966d4e02c5a44bb84ec3d4ec69d6e51912dc260b5b0":[3,2,15,22,0], -"group___r_m___o_b1203___a_p_i.html#gga4569d4be03632003ce030d966d4e02c5a94909f671cbef1a6b4fc76b6a9a1598d":[3,2,15,22,1], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a0591b79b06cb0090a0f18f1690bf4ed1":[3,2,15,34,16], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a13648173ac9d85546b5b8fb1b3c70f0b":[3,2,15,34,13], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a174595a8a0904152de8b1b8e4f588b8b":[3,2,15,34,21], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a22e8a697d05a88e2a1d3c9224bf927c8":[3,2,15,34,20], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a25feb157e54b23c386c4c0e397bea4a5":[3,2,15,34,12], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a27d90b64352a53d0700ba95b3145258e":[3,2,15,34,2], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a2bdfe1777f9dbc98e07788109ec41d53":[3,2,15,34,22], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a314ab60d336fc12e5dfc2ae041443742":[3,2,15,34,0], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a467ccc7a5975e9b7c91887e843bb9d55":[3,2,15,34,4], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a57210f78a3b7ed1c3dd1ed2f99b226ad":[3,2,15,34,3], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a5df8af19ddf7e0e5b29382ca3a862548":[3,2,15,34,1] +"group___i2_c___s_l_a_v_e___a_p_i.html#a4fa45eb7423e7b93f78839b2bb612776":[3,2,6,1,10], +"group___i2_c___s_l_a_v_e___a_p_i.html#a527fc26638e91d2daf652c2b30b5ab5a":[3,2,6,2,3], +"group___i2_c___s_l_a_v_e___a_p_i.html#a54f03c15c476b1e03c2e09232db9b92f":[3,2,6,1,2], +"group___i2_c___s_l_a_v_e___a_p_i.html#a63e78c999abc0cf1eea4a506bb14b720":[3,2,6,3,2], +"group___i2_c___s_l_a_v_e___a_p_i.html#a6b56336af0eaf92db7006a028876c575":[3,2,6,1,14], +"group___i2_c___s_l_a_v_e___a_p_i.html#a6cc910e14348a5c42bb4ffbf41dad5ba":[3,2,6,1,13], +"group___i2_c___s_l_a_v_e___a_p_i.html#a7b1c0bee47fa93f32b4466b72c30f68c":[3,2,6,1,4], +"group___i2_c___s_l_a_v_e___a_p_i.html#a8480d2ef5f292fa836adfbaef1a0689c":[3,2,6,0,0], +"group___i2_c___s_l_a_v_e___a_p_i.html#a8a7c8ec91840338adbabcea5b5400f19":[3,2,6,2,2], +"group___i2_c___s_l_a_v_e___a_p_i.html#a923331b5e9e6564b4246e559d66bc3c9":[3,2,6,1,8], +"group___i2_c___s_l_a_v_e___a_p_i.html#aaf45b7d102061452a09f5db26bdd1148":[3,2,6,1,11], +"group___i2_c___s_l_a_v_e___a_p_i.html#ab197d0cd3aae178af5cc7add1a40ad44":[3,2,6,3,1], +"group___i2_c___s_l_a_v_e___a_p_i.html#ab8f7ff67f811463a59921e4fbe11898e":[3,2,6,0,2], +"group___i2_c___s_l_a_v_e___a_p_i.html#ac194239c95dc0a5a71e220937295d67c":[3,2,6,1,12], +"group___i2_c___s_l_a_v_e___a_p_i.html#ac88cda39460d4a3d029e5c6e93bf7204":[3,2,6,1,6], +"group___i2_c___s_l_a_v_e___a_p_i.html#ad1cc54031228e56ffcbf398278e39e98":[3,2,6,1,7], +"group___i2_c___s_l_a_v_e___a_p_i.html#ad497920d5c927eff7d183500d8c21dd9":[3,2,6,1,5], +"group___i2_c___s_l_a_v_e___a_p_i.html#ad9693d9cbb58cc0abb6e4e85548e4e18":[3,2,6,2,1], +"group___i2_c___s_l_a_v_e___a_p_i.html#ae2d56c946cfbfae06c21f48be15d32cb":[3,2,6,3,0], +"group___i2_c___s_l_a_v_e___a_p_i.html#ae7a71b00ee0f0392feea934f395599a3":[3,2,6,1,9], +"group___i2_c___s_l_a_v_e___a_p_i.html#ga8e76d805f1f518bf83a84f9df65beb1b":[3,2,6,6], +"group___i2_c___s_l_a_v_e___a_p_i.html#gaa26f7dd0df29bb18d57fa02c7f64588d":[3,2,6,5], +"group___i2_c___s_l_a_v_e___a_p_i.html#gad8b613f0d4e9d1b9511ca0b6d6ab7e8c":[3,2,6,7], +"group___i2_c___s_l_a_v_e___a_p_i.html#gaf676f2e6f026d5f3c96fcb18fdc71972":[3,2,6,4], +"group___i2_c___s_l_a_v_e___a_p_i.html#gga8e76d805f1f518bf83a84f9df65beb1ba545d1daef7aa30b4ca41077f570f8c42":[3,2,6,6,0], +"group___i2_c___s_l_a_v_e___a_p_i.html#gga8e76d805f1f518bf83a84f9df65beb1bafbc283c8ddb82d4704460fc1f9509552":[3,2,6,6,1], +"group___i2_c___s_l_a_v_e___a_p_i.html#ggaa26f7dd0df29bb18d57fa02c7f64588da0a93f42422a9c37f9eee450c8e497ab9":[3,2,6,5,1], +"group___i2_c___s_l_a_v_e___a_p_i.html#ggaa26f7dd0df29bb18d57fa02c7f64588dad673e065daa619986628967645f3e5d8":[3,2,6,5,2], +"group___i2_c___s_l_a_v_e___a_p_i.html#ggaa26f7dd0df29bb18d57fa02c7f64588dafbf6971c770f59039c152748515d3da6":[3,2,6,5,0], +"group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca0831b0e3a2fa5ee83aa651e6659d7cdf":[3,2,6,7,0], +"group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca1017e760b355f9eef573d163c87893d9":[3,2,6,7,2], +"group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca25d53326260faa954236b7af69b94852":[3,2,6,7,7], +"group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca35bbc925e0a13c90e6398f8df78a440a":[3,2,6,7,3], +"group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca6b2e105a581ceb4a55850b03d1d6fe2c":[3,2,6,7,6], +"group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca833bea612872cc350d74f6edb66e9fad":[3,2,6,7,5], +"group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca9b0eb2a5a4dfdc44adf3838a6c2901c7":[3,2,6,7,4], +"group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8cac04326f0bdc42f852e082d2fc0e7ad65":[3,2,6,7,1], +"group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__api__t":[3,2,6,2], +"group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__callback__args__t":[3,2,6,0], +"group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__cfg__t":[3,2,6,1], +"group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__instance__t":[3,2,6,3], +"group___i3_c___a_p_i.html":[3,2,7], +"group___i3_c___a_p_i.html#a0148d668a40c53ea6aeba6b14050593e":[3,2,7,0,1], +"group___i3_c___a_p_i.html#a028f83c75b6bdc0155b5ee9abc822225":[3,2,7,2,0], +"group___i3_c___a_p_i.html#a0b27ccf4720531545b0c2e118032539b":[3,2,7,7,8], +"group___i3_c___a_p_i.html#a1319595692f1d7d2035df8f8fd63445a":[3,2,7,4,0], +"group___i3_c___a_p_i.html#a149831362decabc4676bd5e8265821dd":[3,2,7,5,1], +"group___i3_c___a_p_i.html#a177e6729548170be6b6ddbe444fc6716":[3,2,7,6,1], +"group___i3_c___a_p_i.html#a1e24e768130b9ea12f10743ff3143fa7":[3,2,7,7,4], +"group___i3_c___a_p_i.html#a24de9f1da7fb32c695bd512994144a0b":[3,2,7,2,2], +"group___i3_c___a_p_i.html#a28a15d1d237c21fbf3c61486fc5e7f9d":[3,2,7,5,3], +"group___i3_c___a_p_i.html#a28a3c4290b712ff83b77fd4f7412c322":[3,2,7,4,3], +"group___i3_c___a_p_i.html#a2ad3482a64914b52deb037ed89a5b023":[3,2,7,8,0], +"group___i3_c___a_p_i.html#a38189a6ab614f521924609c5bb5f30b9":[3,2,7,5,5], +"group___i3_c___a_p_i.html#a39518a413d0c9056e41d4da97ce3884e":[3,2,7,7,6], +"group___i3_c___a_p_i.html#a3b19cf7a70e74781374af0efaddc3c87":[3,2,7,5,4], +"group___i3_c___a_p_i.html#a3b2a78b5f633df2cfb07133ad5ae9c91":[3,2,7,7,11], +"group___i3_c___a_p_i.html#a3b2cd9c5022352d0b3275882dee97363":[3,2,7,0,0], +"group___i3_c___a_p_i.html#a446d4dde4f518d873b98362d3ab68303":[3,2,7,6,4], +"group___i3_c___a_p_i.html#a476eb1c4e5a0defaa54d3b4a11ce099a":[3,2,7,6,2], +"group___i3_c___a_p_i.html#a55133c6895655f647bad807fd6e0d136":[3,2,7,4,2], +"group___i3_c___a_p_i.html#a558180776a16d59f446a936574353300":[3,2,7,5,0], +"group___i3_c___a_p_i.html#a683afb29ae34336a1817776683062d2d":[3,2,7,2,1], +"group___i3_c___a_p_i.html#a71fb8d5e49ee1c39fdc190b5c5fd7e1c":[3,2,7,4,1], +"group___i3_c___a_p_i.html#a75de96de8cb5a6dbe2e142f1113a5a8b":[3,2,7,2,3], +"group___i3_c___a_p_i.html#a77ccba404f1ec93b31a33e6c7ebed26f":[3,2,7,3,0], +"group___i3_c___a_p_i.html#a78bf93c241804116b1a4efc18e6c1028":[3,2,7,7,10], +"group___i3_c___a_p_i.html#a7fffc4906ca2c92ccf77cda8fabc6714":[3,2,7,2,4], +"group___i3_c___a_p_i.html#a8065fa3e9d1d82e9ebaa60e1731d7ecc":[3,2,7,6,0], +"group___i3_c___a_p_i.html#a840484cae7a68cf6161ec707c33c0a5c":[3,2,7,7,7], +"group___i3_c___a_p_i.html#a8627c2815356dbf8a9120b45a4e5e954":[3,2,7,2,5], +"group___i3_c___a_p_i.html#a8a5c800bff7722549723dea066fe19eb":[3,2,7,6,3], +"group___i3_c___a_p_i.html#a9076df3ea1eaa0842da95560f98309af":[3,2,7,8,1], +"group___i3_c___a_p_i.html#a963e13cc6b3cf1903a01ed87901eb6a9":[3,2,7,7,0], +"group___i3_c___a_p_i.html#aa4990a726981eee5fc979850314eeb04":[3,2,7,5,7], +"group___i3_c___a_p_i.html#aac576dcfc7c8ada6d77bba14314a8859":[3,2,7,8,2], +"group___i3_c___a_p_i.html#aafe9264685a5693c48c24cbcc470d6d7":[3,2,7,5,2], +"group___i3_c___a_p_i.html#ab4281472412829fccfae413a1c079838":[3,2,7,1,0], +"group___i3_c___a_p_i.html#ac551df467b9752c621533d829cdd1e4d":[3,2,7,5,8], +"group___i3_c___a_p_i.html#ac790719d9f6a87b3458bfab85ffda558":[3,2,7,7,3], +"group___i3_c___a_p_i.html#acf39141678838e40af4bee849660f210":[3,2,7,3,1], +"group___i3_c___a_p_i.html#ad013ffb59c95539c84fe217b90d897ad":[3,2,7,7,9], +"group___i3_c___a_p_i.html#ad1a5e82be324c969d8397e687eb66c08":[3,2,7,7,2], +"group___i3_c___a_p_i.html#adbfee07190ec081f9dc3820bba928cef":[3,2,7,7,1], +"group___i3_c___a_p_i.html#add62a38afe9e63edc664fa8cd7d736e3":[3,2,7,5,6], +"group___i3_c___a_p_i.html#adfe6b41d24ce5d158df818ab5591b88a":[3,2,7,3,2], +"group___i3_c___a_p_i.html#ae4936b8865757d9656167fac18db6e1e":[3,2,7,4,4], +"group___i3_c___a_p_i.html#ae57d3fa9fa4a966a5c8cac38b0ea0660":[3,2,7,7,5], +"group___i3_c___a_p_i.html#aee21d22f092a6c93976b94635642e33f":[3,2,7,7,12], +"group___i3_c___a_p_i.html#af7ddfcf173feb4b04c3cd90189cd9941":[3,2,7,1,1], +"group___i3_c___a_p_i.html#ga63111d6c1096458d5059f5f6fac3f579":[3,2,7,9], +"group___i3_c___a_p_i.html#ga6ebef50cdf52650f03e1b449325779fc":[3,2,7,14], +"group___i3_c___a_p_i.html#ga81ac58196d67e74a0a3702c3e760ede7":[3,2,7,15], +"group___i3_c___a_p_i.html#ga890e3f0ba27c4a963dc5901bfbed439c":[3,2,7,12], +"group___i3_c___a_p_i.html#gaa7585dee427a1d95926f88dd55ecf305":[3,2,7,13], +"group___i3_c___a_p_i.html#gaaeacda02a21254776fcbc47ab1ff265c":[3,2,7,11], +"group___i3_c___a_p_i.html#gae0fcac252ef200a5a24cdadfa123dc52":[3,2,7,10], +"group___i3_c___a_p_i.html#gga6ebef50cdf52650f03e1b449325779fca747529dae6e854111df4e95e9ba3c91a":[3,2,7,14,0], +"group___i3_c___a_p_i.html#gga81ac58196d67e74a0a3702c3e760ede7a29e66a0c093804099f1680935b8390a7":[3,2,7,15,0], +"group___i3_c___a_p_i.html#gga81ac58196d67e74a0a3702c3e760ede7a6aec7546d7484201fa4442c4b37b3d8c":[3,2,7,15,2], +"group___i3_c___a_p_i.html#gga81ac58196d67e74a0a3702c3e760ede7ae53f3f0966395df095e951839052c6ca":[3,2,7,15,1], +"group___i3_c___a_p_i.html#gga890e3f0ba27c4a963dc5901bfbed439ca55632ac0c5b5d0e704a0b7c6b405beba":[3,2,7,12,0], +"group___i3_c___a_p_i.html#gga890e3f0ba27c4a963dc5901bfbed439caf0202c7dc1948d7191c5005fc9d38b47":[3,2,7,12,1], +"group___i3_c___a_p_i.html#ggaa7585dee427a1d95926f88dd55ecf305a68c12b56610277eac342a9aa5b5fcb1b":[3,2,7,13,0], +"group___i3_c___a_p_i.html#ggaa7585dee427a1d95926f88dd55ecf305a6b32868175ba9fb454f459441be611be":[3,2,7,13,1], +"group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca178a51755c49a2a63cf7b376b2578f2a":[3,2,7,11,6], +"group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca2e5a0467001efaba19b6c2de17d182be":[3,2,7,11,7], +"group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca2f461eca70d64741f14d4b92445608d3":[3,2,7,11,11], +"group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca401943802babdddf23fdc32573c220d2":[3,2,7,11,3], +"group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca49e2d860a954f25bfee5d3f6755d3b54":[3,2,7,11,4], +"group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca68834ad7d19b19947bafc01ce50a8e3f":[3,2,7,11,10], +"group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca9379590b2f8f1411715ba425c6c15a4b":[3,2,7,11,8], +"group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca9af3b8a5b489c8cd30b2f563b4323f5e":[3,2,7,11,1], +"group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265caa2355b778aac9f8345b76e1aa6bbcfb5":[3,2,7,11,5], +"group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265cabfc8612eeb0cd4e93456d6844686c135":[3,2,7,11,9], +"group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265cac5b7d7a4cdbe9197e4c6034008270fa8":[3,2,7,11,2], +"group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265cadfebca77a845caf0935ca9647c66eb67":[3,2,7,11,0], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a08c0920a5a317949946c27ecd501ec7d":[3,2,7,10,12], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a196c567a68ade8d03a9863b6fa472eca":[3,2,7,10,29], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a1b45b49fd85d7ac9804cdb5d44a3d226":[3,2,7,10,20], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a1f75c76bf09458b99003305112107dc7":[3,2,7,10,1], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a29237e5c8191b16f48c66cf5a484b812":[3,2,7,10,40], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a343b8fc7c704fa205b530aa9ac1c0c16":[3,2,7,10,34], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a497ea998fd00601fece9bc4f537c5069":[3,2,7,10,11], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a56334065601b234cb7a51495a87dc79f":[3,2,7,10,13], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a56c1f2be3412ee3af9678b2bdf95102a":[3,2,7,10,30], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a5fd66e6e9c4409de3d8d7e0161fb8cdd":[3,2,7,10,36], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a66d0ccdd8df6e8ee6335d86b56b3fb2c":[3,2,7,10,23], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a66ec92cc7e4fd378938a6d623bd44b6b":[3,2,7,10,42], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a696a95c054c95406323e9cefa14b1b93":[3,2,7,10,39], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a6cfb1fec206cea9e4004277a49345c45":[3,2,7,10,16], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a6f12cb17e3064ffd538da94b08c21b95":[3,2,7,10,27], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a73ea75bd16a55fb64d2cb4788ec9b94e":[3,2,7,10,2], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a7b5746e3c19c17b4ca7485b06da59adc":[3,2,7,10,24], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a83759ef85966ef3d6098e0eda089ab19":[3,2,7,10,37], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8a571cf772f5717fa91172048322e739":[3,2,7,10,4], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8b91860514ba2dab9ad0188c1265c2ce":[3,2,7,10,19], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8db31c2c1ca8424755d3d59ce623fb08":[3,2,7,10,28], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8dd9c7bcb05442fcf0a4751608a4a57f":[3,2,7,10,32], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a9b8ecc4370c7361e6a7a074e03390be0":[3,2,7,10,3], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a9f16a8d29a4f814f9b9627603817df7d":[3,2,7,10,5], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aa2cd6c5a0491fd3fe6be81521d4dc75e":[3,2,7,10,26], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aa92f265992e1acc07c57946f1c8d10d2":[3,2,7,10,41], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aaa285307604c96afab5e8477583b25d0":[3,2,7,10,7], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ab14dcd17df603d88deb2c9d2a6112cea":[3,2,7,10,18], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ab56b79fda699c783a225ebcdeef12e17":[3,2,7,10,17], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52abbab4c6a19959b0ce8e01d97db4f04e7":[3,2,7,10,8], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ac9fac028a90f4a7afe693f23838e9869":[3,2,7,10,31], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52acc5d7a5de1e6f3169a5b89f675feca40":[3,2,7,10,0], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ad329d0765a5a641db81f8292335f9e99":[3,2,7,10,33], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ae23ff44b4be0d920a3cd686dbaefa2d4":[3,2,7,10,10], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ae6bfede59f2548525cd5440894c556ae":[3,2,7,10,14], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ae75b0aea11da4b68f572fe92b464cd96":[3,2,7,10,15], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aec2e7382aa38f0a4c99bfcfeb609910d":[3,2,7,10,9], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af2896458dc1ef08bcb97926be03678e3":[3,2,7,10,25], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af39fa810aa779ab934064116903c409f":[3,2,7,10,38], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af3d7fa76699eb260edb16b1365a83a80":[3,2,7,10,21], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af74c0d73517685e8be6ae66f6a07c05c":[3,2,7,10,35], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af979c7917ae589e3a9a2617f161f5a04":[3,2,7,10,22], +"group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52afd8c362bd9653f12f39c6d508dc6b370":[3,2,7,10,6], +"group___i3_c___a_p_i.html#structi3c__api__t":[3,2,7,7], +"group___i3_c___a_p_i.html#structi3c__callback__args__t":[3,2,7,5], +"group___i3_c___a_p_i.html#structi3c__cfg__t":[3,2,7,6], +"group___i3_c___a_p_i.html#structi3c__command__descriptor__t":[3,2,7,4], +"group___i3_c___a_p_i.html#structi3c__device__cfg__t":[3,2,7,3], +"group___i3_c___a_p_i.html#structi3c__device__status__t":[3,2,7,0], +"group___i3_c___a_p_i.html#structi3c__device__table__cfg__t":[3,2,7,2], +"group___i3_c___a_p_i.html#structi3c__instance__t":[3,2,7,8], +"group___i3_c___a_p_i.html#structi3c__slave__info__t":[3,2,7,1], +"group___i3_c___b.html":[3,1,1,1], +"group___i3_c___b.html#a0dbd28cc4de1cbcf7dd3427feef969a2":[3,1,1,1,3,13], +"group___i3_c___b.html#a0f2fd857b12b9284dddf430463764016":[3,1,1,1,5,6], +"group___i3_c___b.html#a111fd70be18b905f2dcd177090e28e95":[3,1,1,1,0,3], +"group___i3_c___b.html#a118058cb130acafed14c05752db449be":[3,1,1,1,3,4], +"group___i3_c___b.html#a130da5bdcc977cc2ac80d2958ee0ed2c":[3,1,1,1,0,0], +"group___i3_c___b.html#a16e3b94303d38db979568546ac53a4b3":[3,1,1,1,5,1], +"group___i3_c___b.html#a19839c4573b756f918d79ed7b95db193":[3,1,1,1,4,12], +"group___i3_c___b.html#a1be04ad63b14c5df7547285f9c92ba66":[3,1,1,1,4,2], +"group___i3_c___b.html#a1ea9841cd4b6b18cd9acc7d7f53fa64d":[3,1,1,1,5,14], +"group___i3_c___b.html#a2144b0ec9924455ca87e11f869af3da6":[3,1,1,1,4,9], +"group___i3_c___b.html#a2182f261e10335bf21ca40bc09bcd68d":[3,1,1,1,5,15], +"group___i3_c___b.html#a231f4fdcb227e5433b99eb4681092ea1":[3,1,1,1,4,10], +"group___i3_c___b.html#a2e4966e32402d1d0a865f1a29ea2b980":[3,1,1,1,5,17], +"group___i3_c___b.html#a338fe4fd5a8fab2a3213e25a1572b02c":[3,1,1,1,2,3], +"group___i3_c___b.html#a359e6208b0bd04aab75f6b876d8bead3":[3,1,1,1,4,6], +"group___i3_c___b.html#a43f54168433c048558d579ba300f565d":[3,1,1,1,1,1], +"group___i3_c___b.html#a48dcc530b11970be9d3f2fae9dd5dcdc":[3,1,1,1,4,4], +"group___i3_c___b.html#a493e09410ad1e54a74ef9ecd93dbfd4e":[3,1,1,1,2,0], +"group___i3_c___b.html#a5566fbe13d210afcf9538b7f0ef30907":[3,1,1,1,5,7], +"group___i3_c___b.html#a5b9ea9a0c7e528e57c66d5b3cc85e674":[3,1,1,1,5,16], +"group___i3_c___b.html#a5ea03dcc03a3fa25df7a630635c9880f":[3,1,1,1,4,5], +"group___i3_c___b.html#a624164578fd3053bde3878a449255aed":[3,1,1,1,4,7], +"group___i3_c___b.html#a6292eaa63c5ee2ceefc2c8404aa57fc7":[3,1,1,1,4,14], +"group___i3_c___b.html#a65d040ea1c91e96fbc4486e39b51c23d":[3,1,1,1,5,8], +"group___i3_c___b.html#a667ea08c6f9f2e5f4e3b3354d4fae122":[3,1,1,1,3,3], +"group___i3_c___b.html#a680354fe57452deb48fd62692bddf62e":[3,1,1,1,3,10], +"group___i3_c___b.html#a6e5ccf943f0f06851167cfe40fe7b7a1":[3,1,1,1,3,7], +"group___i3_c___b.html#a6e93301fd2a08032aabf92fc72a196cb":[3,1,1,1,5,19], +"group___i3_c___b.html#a7609c913ab9040ddb3884007abe4d661":[3,1,1,1,5,5], +"group___i3_c___b.html#a7a0a2568821deca8dde989c04e3bf3c3":[3,1,1,1,0,4], +"group___i3_c___b.html#a7aabb012263bcc0093e5ed6137b8a701":[3,1,1,1,5,10], +"group___i3_c___b.html#a7e9d0d85bd1aefa8de414728f18b32de":[3,1,1,1,5,4], +"group___i3_c___b.html#a7e9faafe29396be004f769cd35b81563":[3,1,1,1,1,2], +"group___i3_c___b.html#a814f21227402c572e9e0f31769a2f7b1":[3,1,1,1,5,0], +"group___i3_c___b.html#a8369efb1618f65a238ce07c438e50c01":[3,1,1,1,4,8], +"group___i3_c___b.html#a8ed749153af0e8311373e3d2d446ee5d":[3,1,1,1,5,2], +"group___i3_c___b.html#a9740e5cb2cd5e45294ebe55929c9daa7":[3,1,1,1,3,8], +"group___i3_c___b.html#aa03b9daf273a95370d743a5ef5bab7dd":[3,1,1,1,2,1], +"group___i3_c___b.html#aa24d69aa4e272b08ea25115bdd653871":[3,1,1,1,0,1], +"group___i3_c___b.html#ab16f7dbd1d812f8dcfc33ac37a939ca9":[3,1,1,1,3,6], +"group___i3_c___b.html#abf6047ed6b80423a3e34c58d7e6f2159":[3,1,1,1,0,2], +"group___i3_c___b.html#ac04ccc58562da71c2a9381b35acdf0d3":[3,1,1,1,4,0], +"group___i3_c___b.html#ac2dd0e54f5699a367af7372aa10630e4":[3,1,1,1,5,12], +"group___i3_c___b.html#ac35a8a2ba71c865f91f85ceb8be2fe65":[3,1,1,1,3,5], +"group___i3_c___b.html#ac71e6c3913312c01e121be5ce1f89ae7":[3,1,1,1,4,3], +"group___i3_c___b.html#ac817332b7a7317c6edc91a84c329c656":[3,1,1,1,3,11], +"group___i3_c___b.html#ad46715479c0a13d5bccb8992cb5edfb2":[3,1,1,1,2,2], +"group___i3_c___b.html#ad7f911a2a8d3071973e2a3f8d9c3379e":[3,1,1,1,4,13], +"group___i3_c___b.html#ad84be5ef3adcda517e62810c182ac856":[3,1,1,1,3,1], +"group___i3_c___b.html#add3c6106157a467818eb480ae5057826":[3,1,1,1,5,11], +"group___i3_c___b.html#ade06559c82b773fb3382aa64c0cbff15":[3,1,1,1,4,11], +"group___i3_c___b.html#adebd51c965faf0fe497971c15e669a91":[3,1,1,1,3,12], +"group___i3_c___b.html#ae1391ee53f0f040895bc1a2982db5adf":[3,1,1,1,3,2], +"group___i3_c___b.html#ae1e8bc40fc3143b2dbb0321efbd677ee":[3,1,1,1,5,9], +"group___i3_c___b.html#ae2ad6ece73c0f4b046708ab96f7c1842":[3,1,1,1,4,1], +"group___i3_c___b.html#ae51118e339ff8e535dee69acbd4c2c04":[3,1,1,1,3,9], +"group___i3_c___b.html#ae5c638d2a302a6a5c39510137583ffd9":[3,1,1,1,3,0], +"group___i3_c___b.html#aeb148883da18117b256353b35b17cbe6":[3,1,1,1,5,13], +"group___i3_c___b.html#aee8857dcfc0a90a83e4431ccbd4746e8":[3,1,1,1,1,0], +"group___i3_c___b.html#af62dc925b22147aff968321a8ba10fef":[3,1,1,1,5,3], +"group___i3_c___b.html#afc989f369398b733654a708929df5f04":[3,1,1,1,5,18], +"group___i3_c___b.html#afe8dc047bbc3484b976553478e8f1f53":[3,1,1,1,5,20], +"group___i3_c___b.html#ga014e6425d49e19f05d24fd345a785589":[3,1,1,1,29], +"group___i3_c___b.html#ga07b0af405a9ca84c45aab74bd1c696c2":[3,1,1,1,25], +"group___i3_c___b.html#ga0b4af888ebc4c210feea2a149fd4cfc1":[3,1,1,1,33], +"group___i3_c___b.html#ga103bea85dbeeb58f40d85e3b1bd00fae":[3,1,1,1,15], +"group___i3_c___b.html#ga20332b13e43cafe1a0ee0dbc195d7467":[3,1,1,1,11], +"group___i3_c___b.html#ga2a3f7414a893b9c2b9135523c8f6d950":[3,1,1,1,28], +"group___i3_c___b.html#ga3289540419912324ce02f19ed6a972ca":[3,1,1,1,22], +"group___i3_c___b.html#ga37a9316af0c201865007526dbd8ef35c":[3,1,1,1,7], +"group___i3_c___b.html#ga3877dd4ca46a098b55ac20fe3303a87d":[3,1,1,1,8], +"group___i3_c___b.html#ga394142d1aa7177899d19d06d6fae6f89":[3,1,1,1,9], +"group___i3_c___b.html#ga4178234c4311d227a6fb8844e1e3a49e":[3,1,1,1,27], +"group___i3_c___b.html#ga4c155a91650485e935a7d95b65bf6ea1":[3,1,1,1,12], +"group___i3_c___b.html#ga613539c3294eadbba8386934530c042d":[3,1,1,1,6], +"group___i3_c___b.html#ga66e705cb2af31c57eacd0492b2417145":[3,1,1,1,10], +"group___i3_c___b.html#ga69047e20f165f6e44fea97f3fec69399":[3,1,1,1,32], +"group___i3_c___b.html#ga7aed8b3fb4cfd7004b8f785a8884f4ff":[3,1,1,1,17], +"group___i3_c___b.html#ga9517cc752212a1423f0153c4330943b4":[3,1,1,1,26], +"group___i3_c___b.html#gaa100c24dc68792009da85deed2f6387a":[3,1,1,1,21] }; diff --git a/navtreeindex7.js b/navtreeindex7.js index 855c7d8..6df4e28 100644 --- a/navtreeindex7.js +++ b/navtreeindex7.js @@ -1,253 +1,253 @@ var NAVTREEINDEX7 = { -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a6ace2781bd3f2b78dc2f1b8f51dbf245":[3,2,15,34,14], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a6e4f60ef6f8a4af28ec19a6bc9f17012":[3,2,15,34,23], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a8bd871ff7eeb47240c756ff6abf77e7f":[3,2,15,34,5], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a94505e88a6eec7889fe4bb9f53cc4884":[3,2,15,34,19], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00aa164c28eae63fc9296c0430360ff2a8f":[3,2,15,34,17], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ab0c9375ebb576c01ebcbb79ba741ef17":[3,2,15,34,8], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ab983d1fc86076b118648a7e61d843471":[3,2,15,34,10], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00abb586783c011c8903ce5cae04074b9b7":[3,2,15,34,18], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ac869d4e42f75cdbdd19a3d4cb21be2bd":[3,2,15,34,6], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00acf3e6a52d26718a151e3721641e2f4cd":[3,2,15,34,9], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ad620deac939b9257fe7b42a362498d08":[3,2,15,34,7], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ae18888686afe4ccbea3605302bb00a56":[3,2,15,34,15], -"group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00af7dad8b9ae1d51a750327d06cadc78fc":[3,2,15,34,11], -"group___r_m___o_b1203___a_p_i.html#gga4d79e3bac567b22223b4e219a6ee7f34a70dd99f434b1ee1125f38037a11cafd0":[3,2,15,30,0], -"group___r_m___o_b1203___a_p_i.html#gga4d79e3bac567b22223b4e219a6ee7f34ae89ccedc87ea692b1f2413f5ca399d17":[3,2,15,30,1], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca0946b20f3b3e2e60fe86686a44aa9b5e":[3,2,15,35,6], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca2990f7a26248010de840856c3b147bd1":[3,2,15,35,16], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca36092df99bf6676f48f583acef13a6c9":[3,2,15,35,9], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca3887f415348499b2e9097bed0be1757e":[3,2,15,35,3], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca3a797e28dd9b3a348ed631c88998f13e":[3,2,15,35,12], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca4f219d1661167b8f8609cd3334e24a16":[3,2,15,35,18], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca5b17dd61b00150dd65ee8755d832789c":[3,2,15,35,5], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca64de6859dd6deb781311243f8b2390cc":[3,2,15,35,24], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca666997496dd31d5f539b709174542cf0":[3,2,15,35,4], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca68d8096f51f9e4445e056d251c9a88c5":[3,2,15,35,0], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca6a8367a0e9841b97a9ad7a875b2bfe63":[3,2,15,35,22], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca6d207ac139414c5f54308f2d10682f54":[3,2,15,35,14], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca6d4aa062b55a71221c98969a3edacf98":[3,2,15,35,7], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca70c80a609dd57d364fbfbb9700571eb1":[3,2,15,35,8], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca7c2a342c7238d24959d5cf4367c42724":[3,2,15,35,21], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caaa5604553dc6456ec530a89d90224852":[3,2,15,35,20], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caaab0ee2f34699c866e356cb92136a6f2":[3,2,15,35,2], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cab8f1d289625f598c8d1362ed8af6db89":[3,2,15,35,19], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cac99e47f5096ebabcfc6ecbbff2026ebc":[3,2,15,35,13], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cacf8b5fec64b36730138fbfb48d3aee83":[3,2,15,35,11], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cad14cde0ffc1055d92cb98f7a4b555b85":[3,2,15,35,15], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cad7defeef4b79039ed7dd5cc5ca252cd0":[3,2,15,35,10], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cae69ecb057dda8bc16d7b3b130a04204e":[3,2,15,35,17], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caed7eef69ad7396ef62719d6592e9cb14":[3,2,15,35,23], -"group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caf6a2a946c6f32d87022c3ed12999923a":[3,2,15,35,1], -"group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847a3cc0b2281221c3d2485687d2a2b21ab7":[3,2,15,15,1], -"group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847a9416c58f6cd1559af0cc289ab9d55de9":[3,2,15,15,0], -"group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847ab4a3955dbe4126e7e2499886e90142f5":[3,2,15,15,3], -"group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847adef6dd35d4907586d53e93c43afa5dba":[3,2,15,15,2], -"group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5da645e8b5b2e29f09e8e6cc83f94749e72":[3,2,15,32,5], -"group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5da99456feeb64e8edd8ca52377dcea9577":[3,2,15,32,3], -"group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5da99ae90da914f6505845157ad0ac157c9":[3,2,15,32,2], -"group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5daad4fcc097b074719edd601b0cd5eb5b4":[3,2,15,32,4], -"group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5dae6cb3e25b7ddbdfe77af7449242e3a6b":[3,2,15,32,0], -"group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5daf57cb92268f8a235f67068e0da7e7273":[3,2,15,32,1], -"group___r_m___o_b1203___a_p_i.html#gga8ee7cd0bc32e3c09662791b7e86ffe83a1c7832e2114aa92813f87393cbcaecb9":[3,2,15,25,1], -"group___r_m___o_b1203___a_p_i.html#gga8ee7cd0bc32e3c09662791b7e86ffe83a45cc5bde2c5eb934a0b8236782159316":[3,2,15,25,0], -"group___r_m___o_b1203___a_p_i.html#gga904954d6bf969490d7fc31d1589fba5ca370e4afaa8a380268c6a143fc0b58bf4":[3,2,15,29,0], -"group___r_m___o_b1203___a_p_i.html#gga904954d6bf969490d7fc31d1589fba5ca426b1b1d7b3540f1537d7cf1b0cc81b0":[3,2,15,29,1], -"group___r_m___o_b1203___a_p_i.html#ggaa246c1288f2d4941973249afa6acb4d4a273cd76b959704750d9c97124d25c176":[3,2,15,19,1], -"group___r_m___o_b1203___a_p_i.html#ggaa246c1288f2d4941973249afa6acb4d4a992719f4c8e225f3a66e49139973ee7e":[3,2,15,19,2], -"group___r_m___o_b1203___a_p_i.html#ggaa246c1288f2d4941973249afa6acb4d4ae9174a008bd9ea518eae214629f0a814":[3,2,15,19,0], -"group___r_m___o_b1203___a_p_i.html#ggaac3af213866be23053d28609f06bf748a6975eb682b450d57085774e5caa4e0a0":[3,2,15,24,0], -"group___r_m___o_b1203___a_p_i.html#ggaac3af213866be23053d28609f06bf748ad3fdbc2dbf5eb8cc81809fb331ebab22":[3,2,15,24,1], -"group___r_m___o_b1203___a_p_i.html#ggab0d74efedf983faf97798d0136376219a8317b7075ea1bdad158c89cdc45fb734":[3,2,15,21,0], -"group___r_m___o_b1203___a_p_i.html#ggab0d74efedf983faf97798d0136376219aca0f3a2d81d8872da228cffe49b0298c":[3,2,15,21,1], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a07b2a0293d949115e99655755e001a55":[3,2,15,33,8], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a09ba08ba7407e574104472a1f885b72e":[3,2,15,33,29], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a0ba6189051af14d24d01dec04819bc7c":[3,2,15,33,14], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a1e675d09585221bee21bb6dfc2796e23":[3,2,15,33,19], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a270de4113bcb56fa2d2cd33123c9300a":[3,2,15,33,0], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a3349948bf41a923ecebd7a8534a0a701":[3,2,15,33,3], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a34c30ba32f9828c2381147e0fc1e695d":[3,2,15,33,23], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a389a930d35eca8c775436eb3dfad1a7a":[3,2,15,33,5], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a3be781c8dc11d301cdca9a4f99028488":[3,2,15,33,30], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a3d39da018f5b030535f8a2dd2b7a0677":[3,2,15,33,20], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a40e14ae9c5672a5b0b6f55f9049c80f9":[3,2,15,33,11], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a4d38fd50dc593444db3f70eefdf6b84c":[3,2,15,33,1], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a5cba3d5f2a792dcc31393207c035db7c":[3,2,15,33,28], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a5e3736a8758ebd60d10fc97bc29f8b2c":[3,2,15,33,13], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a6b10517164efcb08e7b9710c005b045b":[3,2,15,33,4], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a7018c6b3526b0c4ed0e53355ad1e9015":[3,2,15,33,26], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a7d83d62a70213a3b0404370f69ac413f":[3,2,15,33,9], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a852688e58f305b400ecec5c8b1b589e2":[3,2,15,33,18], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a8bd726328882e0eef7f54db95c0ff492":[3,2,15,33,17], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a96948352456100c3be91fc1936c9a024":[3,2,15,33,31], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8aa1355f1bdffe1e10329ae5d0c9c4cad1":[3,2,15,33,15], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ab73f57786abac264e13cbe66909a7069":[3,2,15,33,2], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8abee592cc7872bb6d1c1b446ee30615cb":[3,2,15,33,25], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ac0e9b11ddac87432c2a0aabcee37bb3a":[3,2,15,33,21], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ac287c0f09270b5e70996b9f9d1abdf5c":[3,2,15,33,24], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ac93631988e2c51f9118424bdcef20324":[3,2,15,33,16], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ad7fee4ee27a9193608d6ed31d37e35f4":[3,2,15,33,22], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ad861783af9f2199aad76b67400421157":[3,2,15,33,7], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8adbb61242372029ffbb7718acb2420e6c":[3,2,15,33,27], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8adc60ff2b74a6afbf149ae67b3cadc009":[3,2,15,33,12], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ae00706e94ce2c350f033bb7a392adf1c":[3,2,15,33,10], -"group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8afb5da77ac9f5be32835578094b09033b":[3,2,15,33,6], -"group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aa69050221f0025b3e93235e6e316b6dac":[3,2,15,23,0], -"group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aab636540a1252aacc110fce0ee12335ed":[3,2,15,23,2], -"group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aacc3d165eaaefc115adc56edc587ff98e":[3,2,15,23,1], -"group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aae7d921994b49292cf3f320e60f376cc6":[3,2,15,23,3], -"group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa01fe6dda3e7b16e13320cdccf3bd57c9":[3,2,15,26,5], -"group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa08857b0d4fa967c07482a838a0112f81":[3,2,15,26,3], -"group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa4df81429a3b09e42a5c447880c69603a":[3,2,15,26,2], -"group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa6eb8c5d746b48042d340aaccdbc771ac":[3,2,15,26,1], -"group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa88eda7368cb0d6f1d3d84628bee163f6":[3,2,15,26,6], -"group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaac750fdae8ec2c9149383a0c2bead3be9":[3,2,15,26,4], -"group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaad8823af1f00716064d826b5117e90460":[3,2,15,26,7], -"group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaae5c20999c11a608e9118a20e28a4bca4":[3,2,15,26,0], -"group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6a1435e83d507b41bd110a0240bc3950cd":[3,2,15,31,2], -"group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6a24b5ddd343521d9b69e828ce0ba80d07":[3,2,15,31,5], -"group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6a25b3df5b9008788cb20c5933c676c3e5":[3,2,15,31,4], -"group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6aad0e1e2f9b9af4113e192d88f78080e5":[3,2,15,31,1], -"group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6aadeb97a8a692a60657fc1300364ef070":[3,2,15,31,0], -"group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6adf25dc114d5f5db0eea0e300df89d746":[3,2,15,31,3], -"group___r_m___o_b1203___a_p_i.html#structrm__ob1203__api__t":[3,2,15,11], -"group___r_m___o_b1203___a_p_i.html#structrm__ob1203__callback__args__t":[3,2,15,0], -"group___r_m___o_b1203___a_p_i.html#structrm__ob1203__cfg__t":[3,2,15,10], -"group___r_m___o_b1203___a_p_i.html#structrm__ob1203__device__interrupt__cfg__t":[3,2,15,5], -"group___r_m___o_b1203___a_p_i.html#structrm__ob1203__device__status__t":[3,2,15,6], -"group___r_m___o_b1203___a_p_i.html#structrm__ob1203__fifo__info__t":[3,2,15,9], -"group___r_m___o_b1203___a_p_i.html#structrm__ob1203__gain__t":[3,2,15,7], -"group___r_m___o_b1203___a_p_i.html#structrm__ob1203__instance__t":[3,2,15,12], -"group___r_m___o_b1203___a_p_i.html#structrm__ob1203__led__current__t":[3,2,15,8], -"group___r_m___o_b1203___a_p_i.html#structrm__ob1203__light__data__t":[3,2,15,2], -"group___r_m___o_b1203___a_p_i.html#structrm__ob1203__ppg__data__t":[3,2,15,4], -"group___r_m___o_b1203___a_p_i.html#structrm__ob1203__prox__data__t":[3,2,15,3], -"group___r_m___o_b1203___a_p_i.html#structrm__ob1203__raw__data__t":[3,2,15,1], -"group___r_m___z_m_o_d4_x_x_x.html":[3,1,18], -"group___r_m___z_m_o_d4_x_x_x.html#a0438d7a16c46e81db655c9627a2e3fac":[3,1,18,1,13], -"group___r_m___z_m_o_d4_x_x_x.html#a0a1702cc41dc3a4c35e5c81f95b55295":[3,1,18,1,1], -"group___r_m___z_m_o_d4_x_x_x.html#a10f677f5de3207f7c9f30effb6662608":[3,1,18,1,5], -"group___r_m___z_m_o_d4_x_x_x.html#a21b842e14881cd866264417021fedcda":[3,1,18,1,0], -"group___r_m___z_m_o_d4_x_x_x.html#a23c402c7d22a24110fcf3c5fbbf36c48":[3,1,18,1,4], -"group___r_m___z_m_o_d4_x_x_x.html#a55df2cbb3cdc4bbeb75db1dba936d2b1":[3,1,18,1,7], -"group___r_m___z_m_o_d4_x_x_x.html#a57301a9ef64a2317881cdc7d89783fb5":[3,1,18,1,12], -"group___r_m___z_m_o_d4_x_x_x.html#a6151d069461571549ecbf52193ab8624":[3,1,18,1,11], -"group___r_m___z_m_o_d4_x_x_x.html#a68cd23f22e6e0fea3b8d8869ea3954f5":[3,1,18,1,9], -"group___r_m___z_m_o_d4_x_x_x.html#a6f86201d4a114d5714f700501338e5f7":[3,1,18,1,6], -"group___r_m___z_m_o_d4_x_x_x.html#a747d96b26c6228fd7505c18b11eb93cb":[3,1,18,0,0], -"group___r_m___z_m_o_d4_x_x_x.html#a80d7ca92199a768859b409e3eab26a76":[3,1,18,0,3], -"group___r_m___z_m_o_d4_x_x_x.html#a8c18d9f7ecb1e2fcec2f623136d92d9e":[3,1,18,0,2], -"group___r_m___z_m_o_d4_x_x_x.html#a993f572e2bc8acef02a151b7e1a38808":[3,1,18,1,10], -"group___r_m___z_m_o_d4_x_x_x.html#aa547817f19f270a3d32f32d17d38cc56":[3,1,18,1,3], -"group___r_m___z_m_o_d4_x_x_x.html#ae7072ae56668c282a2a667ad097a5667":[3,1,18,0,1], -"group___r_m___z_m_o_d4_x_x_x.html#af89ee122a3cd7e3ab844bae5addfe9df":[3,1,18,1,2], -"group___r_m___z_m_o_d4_x_x_x.html#afc82544a966e7f146ceee4ef404b7582":[3,1,18,1,8], -"group___r_m___z_m_o_d4_x_x_x.html#ga1a9e4762c544db1dc924fdff62bf9cc7":[3,1,18,5], -"group___r_m___z_m_o_d4_x_x_x.html#ga21bde6c18d166c38790d044a3325d7b9":[3,1,18,4], -"group___r_m___z_m_o_d4_x_x_x.html#ga2d4f33091a3b32dc0bda323c24a4eb15":[3,1,18,3], -"group___r_m___z_m_o_d4_x_x_x.html#ga3ee9369b728a5687fcc637114b563875":[3,1,18,10], -"group___r_m___z_m_o_d4_x_x_x.html#ga564266f1fd972d2a4b0d607925a8be48":[3,1,18,17], -"group___r_m___z_m_o_d4_x_x_x.html#ga5a6c9c9dcb25bc3964b07ed7fe002477":[3,1,18,8], -"group___r_m___z_m_o_d4_x_x_x.html#ga8dcfe9a7b0b9419f1ecfce5d82c3fc33":[3,1,18,15], -"group___r_m___z_m_o_d4_x_x_x.html#gaa2b8de7170ff85a0f991dfdb6fb71317":[3,1,18,11], -"group___r_m___z_m_o_d4_x_x_x.html#gaad8d1b8d7b71762b60c6078f9059bf1d":[3,1,18,6], -"group___r_m___z_m_o_d4_x_x_x.html#gac455a0f48d2eb704341bd83bb37fff94":[3,1,18,9], -"group___r_m___z_m_o_d4_x_x_x.html#gacebf611dd2d5d0b091db57023ea373b6":[3,1,18,2], -"group___r_m___z_m_o_d4_x_x_x.html#gadaee5fde2afbb40e28f40b1de50daf45":[3,1,18,16], -"group___r_m___z_m_o_d4_x_x_x.html#gaeafe7943df31f237ac45310796df64b2":[3,1,18,14], -"group___r_m___z_m_o_d4_x_x_x.html#gaed61c1d9714552e574a4e6037d926180":[3,1,18,12], -"group___r_m___z_m_o_d4_x_x_x.html#gaf200a9dc7ca8bf0601c2a2b96c341ecf":[3,1,18,13], -"group___r_m___z_m_o_d4_x_x_x.html#gafabd01cfcb93ac2bcdc4378dc94ec804":[3,1,18,7], -"group___r_m___z_m_o_d4_x_x_x.html#structrm__zmod4xxx__init__process__params__t":[3,1,18,0], -"group___r_m___z_m_o_d4_x_x_x.html#structrm__zmod4xxx__instance__ctrl__t":[3,1,18,1], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html":[3,2,16], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a026e4a40776c79cd6cf745c8446b4bfd":[3,2,16,5,2], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a032f14a6414a147c3e05a28064d97069":[3,2,16,10,13], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a04d026df23f93a2ccd598b7fc7546c5d":[3,2,16,3,1], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a107e482f18f60935d5454a87539565b2":[3,2,16,4,1], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a27c6d482aef38fe699598bd294eae220":[3,2,16,10,3], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a2ef43c9ece4e53557648b8a77ec406f5":[3,2,16,9,5], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a322cc10b5fcff9b42f07c575c48da56f":[3,2,16,6,0], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a32901d3e447bf2fc0642b3c54be98d9a":[3,2,16,7,0], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a37597974b2ae3e5ba15c57fce44b2c83":[3,2,16,10,14], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a492587fbeb536fcd7994596a6f2c4176":[3,2,16,7,1], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a4bf54edf41460cfb0e6a8bd1cf9a825e":[3,2,16,3,2], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a504a4e2266dc1ae46f27b752ade032e9":[3,2,16,10,12], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5ba1799ed3669a41fd7f0f436706367b":[3,2,16,10,0], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5ce0b0a7d1b59a0ad9088449e884cbb4":[3,2,16,11,0], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5cf69c31fc52e26757bedf1ec76581f3":[3,2,16,10,2], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6457c0270c680c86d593bbd286c425dc":[3,2,16,3,6], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6486c18c874aacc219e4015104c62431":[3,2,16,3,0], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a692f0a4eaad2c9e8e8cdbb0a2e792dd9":[3,2,16,9,1], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6dc721959ed25ffaade04a78ba4c1ba6":[3,2,16,3,4], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6de91ae7e87c6ad5197ceff295b7fdf3":[3,2,16,3,3], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6e96d0abcbc4a4479d92d6e8e8d410de":[3,2,16,10,5], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a7b78eb5d21388e5e0c8cd7f0f72b39a9":[3,2,16,5,0], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a7f440ae56f5434038f3268db25554db6":[3,2,16,2,5], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a84160c2d9ba22577f86b7bbdb3521845":[3,2,16,7,2], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8cce7b013ebccc3b0b0aed0e9436e922":[3,2,16,9,0], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8d8907540984f151e5d47932c1db9b18":[3,2,16,2,0], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8f0e582715db0dc1589f314944c2a41a":[3,2,16,10,4], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8f25d9bf4ff36c9dcf976a029ef49c10":[3,2,16,9,4], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a92ce32ead1c82ad9b1c355827fe027a9":[3,2,16,3,5], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a92ddaabd0705326f5e1fcf0a4ced9ba7":[3,2,16,11,2], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aa05768468433346424e7c695a0e0a4ed":[3,2,16,10,11], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aa95d3545e0fcfe3070532d2b1e4923b0":[3,2,16,4,0], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aa97465cfe97ce3dcf9b872b0425687a9":[3,2,16,2,3], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aac9344fd8efc73b82c65e1adcec5f88c":[3,2,16,11,1], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aafd6e3d578d566d09fcae0b3b0c81851":[3,2,16,8,1], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ab2709d5696a54a4d979adb8c85d8610c":[3,2,16,5,1], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abc68dcd903ac59de8c478b0d22d25bfa":[3,2,16,9,2], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abcdbe1de7b8f7c882f5f7bdbb60a2274":[3,2,16,6,1], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abd2e11efbf4f5c3ae54f469394235ae8":[3,2,16,2,2], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abdc449da78d2149a7b552ef545a1b069":[3,2,16,2,1], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abe7c7a383889bcc45958fb2f24afe497":[3,2,16,8,0], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ad1d9b01a5d84a3a4a06dfd714f485911":[3,2,16,10,10], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ad56aa9708d3f48a92253eeda652edede":[3,2,16,10,9], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aeb49c4d0925d19ef93f1b7836acbcaf1":[3,2,16,7,3], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aed55023e17ab93d307606c0d880df721":[3,2,16,10,7], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af1ff5841c01173a03ff6ccb7bd731ddc":[3,2,16,10,6], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af2123328d6c1ced0cc62d9c98f5a8a7a":[3,2,16,10,8], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af76dfeb408164a58e2571d56bcb40101":[3,2,16,9,3], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af9e1e5ff4fd276f7d7bfeb341854b0c2":[3,2,16,10,1], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#affea8dbc2bf312f939b04a070ba9a16d":[3,2,16,2,4], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ga47f50ad1a54e470fb44b443351c39beb":[3,2,16,14], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ga65db663ec670e25cc0294f22f96abb5c":[3,2,16,12], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#gadd54ca8592a0f7cb81913d2250e89060":[3,2,16,13], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ggadd54ca8592a0f7cb81913d2250e89060a55d1b247ecb594b099b15e120ae6b6a4":[3,2,16,13,0], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ggadd54ca8592a0f7cb81913d2250e89060aa55c18d81d34427bcfd2f631e6b2a3a4":[3,2,16,13,1], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__api__t":[3,2,16,10], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__callback__args__t":[3,2,16,0], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__cfg__t":[3,2,16,9], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__iaq__1st__data__t":[3,2,16,2], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__iaq__2nd__data__t":[3,2,16,3], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__instance__t":[3,2,16,11], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__oaq__1st__data__t":[3,2,16,6], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__oaq__2nd__data__t":[3,2,16,7], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__odor__data__t":[3,2,16,4], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__raq__data__t":[3,2,16,8], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__raw__data__t":[3,2,16,1], -"group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__sulfur__odor__data__t":[3,2,16,5], -"group___r_s_p_i.html":[3,1,11], -"group___r_s_p_i.html#a0cbb7690023ca0e3a82dd9acf79e34f3":[3,1,11,1,3], -"group___r_s_p_i.html#a1e9156851592aa749ab8d971c24da93e":[3,1,11,2,0], -"group___r_s_p_i.html#a2f8227792623b013057699e8e4edec1e":[3,1,11,0,1], -"group___r_s_p_i.html#a4a5671a7b1a0b31742f3fb3ffb832532":[3,1,11,1,5], -"group___r_s_p_i.html#a4d6543f22a352c931855cd85e19cfe45":[3,1,11,1,6], -"group___r_s_p_i.html#a4ed0f4d1ff28b7be854d963b057035d7":[3,1,11,2,8], -"group___r_s_p_i.html#a5a46d5fbf91bb380c5a211c33e2c5b54":[3,1,11,2,6], -"group___r_s_p_i.html#a5c0b630ca16e1aa5a398850f669513db":[3,1,11,2,2], -"group___r_s_p_i.html#a6341f3c3ed5db4208c5481e3cb600f26":[3,1,11,1,0], -"group___r_s_p_i.html#a7074247ca15863980c0b6794efd3ef3b":[3,1,11,1,1], -"group___r_s_p_i.html#a84b7d73e4143987055afde28fe246f05":[3,1,11,2,10], -"group___r_s_p_i.html#a98166008c3a0b7f73b1c0e8e162c9969":[3,1,11,2,5], -"group___r_s_p_i.html#aa3d8783d295b5448fcc8dd2de1201169":[3,1,11,0,0], -"group___r_s_p_i.html#ab1dfe38550f42599c7c40f7af8a6d7c7":[3,1,11,1,2], -"group___r_s_p_i.html#ab6addb584c6cedbffe24dc9983b8aa07":[3,1,11,2,4], -"group___r_s_p_i.html#ac9029124a35943dc5f347657d28d3c16":[3,1,11,1,7], -"group___r_s_p_i.html#aca5de5e6709e812f9f9f528a42f97e15":[3,1,11,2,9], -"group___r_s_p_i.html#ace6d2dd7ac73c2171a7c2f0edb11db22":[3,1,11,1,4], -"group___r_s_p_i.html#aeac6ab8d657da805d12554dd8090af67":[3,1,11,2,3], -"group___r_s_p_i.html#af07a6630edcb186c8ccb2b74d228f729":[3,1,11,2,7] +"group___i3_c___b.html#gaa9ce3fda0950ce2aaa0cd8cf51fb5f95":[3,1,1,1,23], +"group___i3_c___b.html#gaac076b32d443c844645e0d1e9a6d184e":[3,1,1,1,14], +"group___i3_c___b.html#gaacf3c8a9a14870a0e66c8815bed1c2e5":[3,1,1,1,18], +"group___i3_c___b.html#gab3ffca78d7da057f277bfd8ce2ef2e1a":[3,1,1,1,20], +"group___i3_c___b.html#gab4bffde187fcf342dfc6cabc1a7353d8":[3,1,1,1,13], +"group___i3_c___b.html#gac8fb0ec859c44282b8323eb13de6ad3c":[3,1,1,1,19], +"group___i3_c___b.html#gad786c546168aabcc04099f73a540af29":[3,1,1,1,34], +"group___i3_c___b.html#gadd84cf1baec319b18540a857545ab51b":[3,1,1,1,35], +"group___i3_c___b.html#gadf661fd87ee8c33efd8801d59997d4a1":[3,1,1,1,31], +"group___i3_c___b.html#gae15f0c28a3098b35b3eaf0456f1c4a5b":[3,1,1,1,16], +"group___i3_c___b.html#gae1dcb91a0152da9a6676ee27d305dceb":[3,1,1,1,24], +"group___i3_c___b.html#gae6b65e6c1def97b4a105ac8aaa66d96c":[3,1,1,1,30], +"group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa5afb800692fec260506825c1766d5a77":[3,1,1,1,22,5], +"group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa5d48558b7227efb68f158286ead5a083":[3,1,1,1,22,0], +"group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa75bf3ed70a8bc727c29bf17241694e7d":[3,1,1,1,22,4], +"group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa85d3de0c20f041144cd97c7dce45191b":[3,1,1,1,22,2], +"group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caab708aab348be27544293dc3cd81f144b":[3,1,1,1,22,3], +"group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caae7c84e04abd9a4d740b89bd866b05064":[3,1,1,1,22,1], +"group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa2039c607365d844eb591d5a95ae2f932":[3,1,1,1,21,2], +"group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa5c4464e2154d923a7dbcf46a52486f9f":[3,1,1,1,21,0], +"group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa63e2f583c75a7225371ba173ce4c7c6a":[3,1,1,1,21,3], +"group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa9193b4d9e54c0c7c9f1e046c39795ea6":[3,1,1,1,21,1], +"group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aae74d814458aa0d31cb6503c0f144a3c6":[3,1,1,1,21,4], +"group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aa313dcdfbf6c9106d85551b78fdc89c69":[3,1,1,1,20,1], +"group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aa9641d3bd84b3734620800d3242a048e1":[3,1,1,1,20,0], +"group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aa99e55224a2b5aff9072df1a13157b83a":[3,1,1,1,20,2], +"group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aaf6a3aacfe021bf6de8af4de066e3c768":[3,1,1,1,20,3], +"group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca1a146a0c77e2b1aa523548e8464efbb4":[3,1,1,1,19,3], +"group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca1ea841b113c1fcc83d7caae57f91c266":[3,1,1,1,19,1], +"group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca2fc162047690642b1e930dcef91cfb81":[3,1,1,1,19,4], +"group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca30e9d9ea007ba5c667387f1198721ff9":[3,1,1,1,19,2], +"group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca6643480973dab04e2eba54bc434222d5":[3,1,1,1,19,6], +"group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3caa5bb8590bfb9b8865b9cf64576ceadde":[3,1,1,1,19,5], +"group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3caf4dc5a9d144776169e8a4d7f21a93b84":[3,1,1,1,19,0], +"group___i3_c___b.html#structi3c__b__bitrate__settings__t":[3,1,1,1,1], +"group___i3_c___b.html#structi3c__b__clock__stalling__t":[3,1,1,1,0], +"group___i3_c___b.html#structi3c__b__extended__cfg__t":[3,1,1,1,5], +"group___i3_c___b.html#structi3c__b__ibi__control__t":[3,1,1,1,2], +"group___i3_c___b.html#structi3c__b__instance__ctrl__t":[3,1,1,1,4], +"group___i3_c___b.html#structi3c__b__slave__command__response__info__t":[3,1,1,1,3], +"group___i_n_t_c___i_r_q.html":[3,1,2,0], +"group___i_n_t_c___i_r_q.html#a54e8132da6a0a3e951c50e71cf10d90b":[3,1,2,0,0,3], +"group___i_n_t_c___i_r_q.html#aa4a57502905a2ee4b4f45d7e7514f1de":[3,1,2,0,0,0], +"group___i_n_t_c___i_r_q.html#ac51a182b3e008a22c06576a5d7e83ce3":[3,1,2,0,0,2], +"group___i_n_t_c___i_r_q.html#afb8eedbc54d5d2b44e6f7392a1e375c1":[3,1,2,0,0,1], +"group___i_n_t_c___i_r_q.html#ga40d3aae06a43698ad595661ba287c279":[3,1,2,0,1], +"group___i_n_t_c___i_r_q.html#ga72be4cc60c1dbd8e2924568cf4cfb7ba":[3,1,2,0,2], +"group___i_n_t_c___i_r_q.html#gab5e021772ee4e4e203ae1f6190a690e0":[3,1,2,0,3], +"group___i_n_t_c___i_r_q.html#gace7f959c11f27f74e34702079aec5fac":[3,1,2,0,5], +"group___i_n_t_c___i_r_q.html#gaf37cb360e6d2cf2a02fd27351f03c9b4":[3,1,2,0,4], +"group___i_n_t_c___i_r_q.html#structintc__irq__instance__ctrl__t":[3,1,2,0,0], +"group___i_n_t_c___n_m_i.html":[3,1,2,1], +"group___i_n_t_c___n_m_i.html#a4f439c63a9660ded18be6210ad5c61f1":[3,1,2,1,0,0], +"group___i_n_t_c___n_m_i.html#af0208db3467f67a11f7bfe085a79708e":[3,1,2,1,0,3], +"group___i_n_t_c___n_m_i.html#afbc0c2d0c28a1e1b6659add5e1d906a8":[3,1,2,1,0,1], +"group___i_n_t_c___n_m_i.html#affbe014faf25330d8d3f2d8692dc7ef6":[3,1,2,1,0,2], +"group___i_n_t_c___n_m_i.html#ga037bcbc05ae66d3cab50fcc159f04d52":[3,1,2,1,2], +"group___i_n_t_c___n_m_i.html#ga213e64c8943eae69a17b77273c459ff2":[3,1,2,1,3], +"group___i_n_t_c___n_m_i.html#ga22b4030a01652c42e160e109c5772beb":[3,1,2,1,1], +"group___i_n_t_c___n_m_i.html#ga52b9b9595c41fcfef9abf3ed0dc05a14":[3,1,2,1,4], +"group___i_n_t_c___n_m_i.html#ga87b6b8010db2fcb6e7e9de9e42b5306a":[3,1,2,1,5], +"group___i_n_t_c___n_m_i.html#structintc__nmi__instance__ctrl__t":[3,1,2,1,0], +"group___i_n_t_c___t_i_n_t.html":[3,1,2,2], +"group___i_n_t_c___t_i_n_t.html#a09938fef3661c208ee0e249c305d9cb7":[3,1,2,2,0,3], +"group___i_n_t_c___t_i_n_t.html#a15e2ce2189f72bd6ac8d5789cf535a45":[3,1,2,2,1,1], +"group___i_n_t_c___t_i_n_t.html#a418c0307cdb3fcf14d74e151652ffd78":[3,1,2,2,0,0], +"group___i_n_t_c___t_i_n_t.html#a443068029bc0fbf20147fd24df48f9e9":[3,1,2,2,0,2], +"group___i_n_t_c___t_i_n_t.html#a8066afa114318265d9fe96031434bbd3":[3,1,2,2,1,0], +"group___i_n_t_c___t_i_n_t.html#aa0f2fc4c91d800c45bb08df191a01fa4":[3,1,2,2,0,1], +"group___i_n_t_c___t_i_n_t.html#ga050a0c4d8019d4576ca781ec7d27c5ed":[3,1,2,2,3], +"group___i_n_t_c___t_i_n_t.html#ga3237412fedf68db30556824a96b2ecb6":[3,1,2,2,7], +"group___i_n_t_c___t_i_n_t.html#ga3ba2aca2c4a94e31e689d5796a056825":[3,1,2,2,2], +"group___i_n_t_c___t_i_n_t.html#ga61a1dc7902ccb186b915b33b5d38a03d":[3,1,2,2,5], +"group___i_n_t_c___t_i_n_t.html#gaafe713f813011a846a754d9137fda61b":[3,1,2,2,8], +"group___i_n_t_c___t_i_n_t.html#gab01a60894ce57e9089bbdff30d38334f":[3,1,2,2,4], +"group___i_n_t_c___t_i_n_t.html#gad244de976bca311f089962b82d3f850b":[3,1,2,2,6], +"group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5eda005c2f7b5cbb161fb0bf671952ca60fd":[3,1,2,2,3,2], +"group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5edab0877acf066a60852cf20f2555246521":[3,1,2,2,3,0], +"group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5edab9b8df90dff304ec0c877b337c417188":[3,1,2,2,3,3], +"group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5edae0b70e173c23a2bb41685eedcca0eaa2":[3,1,2,2,3,1], +"group___i_n_t_c___t_i_n_t.html#structintc__tint__extended__cfg__t":[3,1,2,2,1], +"group___i_n_t_c___t_i_n_t.html#structintc__tint__instance__ctrl__t":[3,1,2,2,0], +"group___i_o_p_o_r_t.html":[3,1,7,1], +"group___i_o_p_o_r_t.html#a0092081f02f3d9b89d575f613fc06380":[3,1,7,1,2,1], +"group___i_o_p_o_r_t.html#a0b3044299c4d5b19c4fc7ad635ec59f4":[3,1,7,1,1,0], +"group___i_o_p_o_r_t.html#a3a19c2ef20ea13bdcd4d9fb3ee692cc8":[3,1,7,1,1,4], +"group___i_o_p_o_r_t.html#a432e6c1358ecd19696f9bab115aaa4cd":[3,1,7,1,1,1], +"group___i_o_p_o_r_t.html#a4ee136a2b01acdbb29db539464741770":[3,1,7,1,4,0], +"group___i_o_p_o_r_t.html#a4fda5dd01b9cdd2517e99df949b09c53":[3,1,7,1,4,2], +"group___i_o_p_o_r_t.html#a58889324d1f0207e5a5056e4e491325a":[3,1,7,1,3,1], +"group___i_o_p_o_r_t.html#a7dbdab1b9475e8601419e739882b73f8":[3,1,7,1,3,0], +"group___i_o_p_o_r_t.html#a8cacbb5efbafad8505bd0140ece21b08":[3,1,7,1,3,4], +"group___i_o_p_o_r_t.html#acd1e6d8038a41d68e0843905a6f599ef":[3,1,7,1,3,3], +"group___i_o_p_o_r_t.html#adbcdc352d8f992d85fa368ba34c33530":[3,1,7,1,1,3], +"group___i_o_p_o_r_t.html#ae256dab18228aacaf260e215b0919086":[3,1,7,1,4,1], +"group___i_o_p_o_r_t.html#ae9a5e65d3c876eb72f8bcfc15cea840a":[3,1,7,1,1,2], +"group___i_o_p_o_r_t.html#afa164460f4684605bbbe4c529ccdcca0":[3,1,7,1,3,2], +"group___i_o_p_o_r_t.html#afa7beb47d18cb3d5b96d5a8159e2db3e":[3,1,7,1,2,0], +"group___i_o_p_o_r_t.html#ga01fe1fa97720d982173bf110032fa21f":[3,1,7,1,19], +"group___i_o_p_o_r_t.html#ga04dddafb062136b04f33eeea27648397":[3,1,7,1,9], +"group___i_o_p_o_r_t.html#ga06a4ad7ce5b0c573328feccb1e2c54fb":[3,1,7,1,10], +"group___i_o_p_o_r_t.html#ga1b17ca2e38acde207881e7e4ba2a7e28":[3,1,7,1,22], +"group___i_o_p_o_r_t.html#ga24938047dccc62c4426ff543489454de":[3,1,7,1,15], +"group___i_o_p_o_r_t.html#ga31825f3f0295317e5b446d74f791cd68":[3,1,7,1,27], +"group___i_o_p_o_r_t.html#ga3daa7097b08c7f623a741e2e481cf89f":[3,1,7,1,17], +"group___i_o_p_o_r_t.html#ga460f424ee2c2c60d463bbdd45f9a2d4b":[3,1,7,1,13], +"group___i_o_p_o_r_t.html#ga4f8bf2319abee01387ae77ca7e85fb0a":[3,1,7,1,11], +"group___i_o_p_o_r_t.html#ga6baec76057e6dbc11b3de637ba3ca76e":[3,1,7,1,8], +"group___i_o_p_o_r_t.html#ga8d3f8c4c90241587fee076b6fb0623ff":[3,1,7,1,25], +"group___i_o_p_o_r_t.html#ga91d4fde6e5f7cdf57b99af5b5f89f1cc":[3,1,7,1,16], +"group___i_o_p_o_r_t.html#gaa561f3c4df61925e4c24b420b78a5583":[3,1,7,1,20], +"group___i_o_p_o_r_t.html#gaaa22d49ec43030ad6ed6bb18ed402f8d":[3,1,7,1,14], +"group___i_o_p_o_r_t.html#gab518fc544fe2b59722e30bd0a28ef430":[3,1,7,1,18], +"group___i_o_p_o_r_t.html#gab83a07936c37ad904c329f8209d735e1":[3,1,7,1,23], +"group___i_o_p_o_r_t.html#gab84c08b8ac66d18c5636ebc772133e77":[3,1,7,1,26], +"group___i_o_p_o_r_t.html#gac5793f51f8a5eb8095c52f9d633f94c3":[3,1,7,1,7], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574":[3,1,7,1,6], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a06cd1c84c6f44e8d7a932962f605e649":[3,1,7,1,6,29], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a06cd1c84c6f44e8d7a932962f605e649":[3,1,7,1,6,63], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a0c5a07dad389d25a576c734a391ec148":[3,1,7,1,6,16], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a0c5a07dad389d25a576c734a391ec148":[3,1,7,1,6,50], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a10595587e1c5984cecf3578625c05040":[3,1,7,1,6,22], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a10595587e1c5984cecf3578625c05040":[3,1,7,1,6,56], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a189170b389c1f0430c626bd367b47bf7":[3,1,7,1,6,31], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a189170b389c1f0430c626bd367b47bf7":[3,1,7,1,6,65], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a1913e3b0734a4be613eb2fba8ec888c5":[3,1,7,1,6,4], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a1913e3b0734a4be613eb2fba8ec888c5":[3,1,7,1,6,38], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a2066555437a19b9e6e721fb494c8f5c3":[3,1,7,1,6,33], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a2066555437a19b9e6e721fb494c8f5c3":[3,1,7,1,6,67], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a23f3f6712eefca788aa61da4976fd565":[3,1,7,1,6,23], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a23f3f6712eefca788aa61da4976fd565":[3,1,7,1,6,57], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3691c62fc89eb3e7df1eae9064206c4e":[3,1,7,1,6,18], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3691c62fc89eb3e7df1eae9064206c4e":[3,1,7,1,6,52], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3945f91ccb0beb4f87613fa0d9884965":[3,1,7,1,6,6], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3945f91ccb0beb4f87613fa0d9884965":[3,1,7,1,6,40], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3a85f3deec88b01065fd3478ba691860":[3,1,7,1,6,3], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3a85f3deec88b01065fd3478ba691860":[3,1,7,1,6,37], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4b93b19150d018ab8ba5ef74e2852499":[3,1,7,1,6,5], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4b93b19150d018ab8ba5ef74e2852499":[3,1,7,1,6,39], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4e5c1c29a153030dbaeae8b7d6643d48":[3,1,7,1,6,32], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4e5c1c29a153030dbaeae8b7d6643d48":[3,1,7,1,6,66], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4f3c70e0bd324aecc0fed994903b63b0":[3,1,7,1,6,13], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4f3c70e0bd324aecc0fed994903b63b0":[3,1,7,1,6,47], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a57ddc25ef284420d97a12a7eca0a0a9b":[3,1,7,1,6,30], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a57ddc25ef284420d97a12a7eca0a0a9b":[3,1,7,1,6,64], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a627d716bdff4fe54f3cbf9f2a5b87bf9":[3,1,7,1,6,0], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a627d716bdff4fe54f3cbf9f2a5b87bf9":[3,1,7,1,6,34], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a6d26833fed98c1306a3f41882c24c66d":[3,1,7,1,6,9], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a6d26833fed98c1306a3f41882c24c66d":[3,1,7,1,6,43], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a73cdc97104d6368ec1b37ed3ee39ec2d":[3,1,7,1,6,12], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a73cdc97104d6368ec1b37ed3ee39ec2d":[3,1,7,1,6,46], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a816a25b17c72bca7e267d47eb7f45dbc":[3,1,7,1,6,24], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a816a25b17c72bca7e267d47eb7f45dbc":[3,1,7,1,6,58], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8c15fce9c42b94e63e3bd4bacc36df55":[3,1,7,1,6,10], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8c15fce9c42b94e63e3bd4bacc36df55":[3,1,7,1,6,44], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8d597c18cc5d24abc1b70f2526f2b6cb":[3,1,7,1,6,1], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8d597c18cc5d24abc1b70f2526f2b6cb":[3,1,7,1,6,35], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a925954d59fa1101a4784a0d64a64d133":[3,1,7,1,6,7], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a925954d59fa1101a4784a0d64a64d133":[3,1,7,1,6,41], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a968aea46146f3db05b2f9d2e1c29650f":[3,1,7,1,6,21], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a968aea46146f3db05b2f9d2e1c29650f":[3,1,7,1,6,55], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a97baa43b94e675e2a4ae7a90dd4a94c6":[3,1,7,1,6,8], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a97baa43b94e675e2a4ae7a90dd4a94c6":[3,1,7,1,6,42], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9a30d0a8eb346f1c1951396c0559ef64":[3,1,7,1,6,25], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9a30d0a8eb346f1c1951396c0559ef64":[3,1,7,1,6,59], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9c17101eaef4bf0fd2beb880a29317a8":[3,1,7,1,6,19], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9c17101eaef4bf0fd2beb880a29317a8":[3,1,7,1,6,53], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab4d8c12714fab80d21b5b5a636f3cf97":[3,1,7,1,6,2], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab4d8c12714fab80d21b5b5a636f3cf97":[3,1,7,1,6,36], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab7e5fcab2fd99046fcedb85c34070e2c":[3,1,7,1,6,26], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab7e5fcab2fd99046fcedb85c34070e2c":[3,1,7,1,6,60], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574abaa22c1510b13b07ab320d289584266b":[3,1,7,1,6,11], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574abaa22c1510b13b07ab320d289584266b":[3,1,7,1,6,45], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac78c3e06c1adb07cd707118f321ef94e":[3,1,7,1,6,17], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac78c3e06c1adb07cd707118f321ef94e":[3,1,7,1,6,51], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac882c17c38a2a20dfd0b5e1dd3eaeaf4":[3,1,7,1,6,15], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac882c17c38a2a20dfd0b5e1dd3eaeaf4":[3,1,7,1,6,49], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574accc921bf1d788c6f10b0225b65144f00":[3,1,7,1,6,20], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574accc921bf1d788c6f10b0225b65144f00":[3,1,7,1,6,54], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ace057086d321233881c1f335b6764bc2":[3,1,7,1,6,28], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ace057086d321233881c1f335b6764bc2":[3,1,7,1,6,62], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af0dbea168d9df29c6a4180e202370f22":[3,1,7,1,6,27], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af0dbea168d9df29c6a4180e202370f22":[3,1,7,1,6,61], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af4952693675255ac32a0813a1100e038":[3,1,7,1,6,14], +"group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af4952693675255ac32a0813a1100e038":[3,1,7,1,6,48], +"group___i_o_p_o_r_t.html#gad182b542c7455ca61b70f0eeae3a380d":[3,1,7,1,12], +"group___i_o_p_o_r_t.html#gadb3ad72c9add6d73eb896c58c36f34ee":[3,1,7,1,21], +"group___i_o_p_o_r_t.html#gae310ec091b58570972ea46f1f263985d":[3,1,7,1,24], +"group___i_o_p_o_r_t.html#gaebbb969fda93422aaf1878d6f4ff8fe8":[3,1,7,1,5], +"group___i_o_p_o_r_t.html#gga04dddafb062136b04f33eeea27648397a79407e79fac3398eb44cb42f2b1ccbf7":[3,1,7,1,9,1], +"group___i_o_p_o_r_t.html#gga04dddafb062136b04f33eeea27648397ae908e927047c7e835f63c760732fc8f8":[3,1,7,1,9,0], +"group___i_o_p_o_r_t.html#gga06a4ad7ce5b0c573328feccb1e2c54fba36d0452e98647759803ddc117bbc1b40":[3,1,7,1,10,0], +"group___i_o_p_o_r_t.html#gga06a4ad7ce5b0c573328feccb1e2c54fbaf147669fc3abf3e19614e0f246bcd3a6":[3,1,7,1,10,1], +"group___i_o_p_o_r_t.html#gga4f8bf2319abee01387ae77ca7e85fb0aa1775a3e0a4f16c2142edf5630a2f8fe7":[3,1,7,1,11,2], +"group___i_o_p_o_r_t.html#gga4f8bf2319abee01387ae77ca7e85fb0aa9c18854cc01e8280ace1975aa3528619":[3,1,7,1,11,0], +"group___i_o_p_o_r_t.html#gga4f8bf2319abee01387ae77ca7e85fb0aac82e04418fb0057bd1338d7b164646aa":[3,1,7,1,11,1], +"group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76ea3d60129c28b149e16e64b72f2eeb972b":[3,1,7,1,8,3], +"group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76ea62fd4002a13cc7fcb07c3b5814eda983":[3,1,7,1,8,1], +"group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76eaafb9b741a35dfd3f106e5b4e21cbb194":[3,1,7,1,8,0], +"group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76eac8f41721c8941ae9416e6d087d4698be":[3,1,7,1,8,2], +"group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a1f67b9c95b521733719d929698d5fe70":[3,1,7,1,7,4], +"group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a471a5ced9edf3fa45a5e7eb9edcad6e5":[3,1,7,1,7,1], +"group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a5c3f74d09c25193ae18d86a96486dd0a":[3,1,7,1,7,0], +"group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a8450fceb594a4085be3eadbc0c37e2f3":[3,1,7,1,7,5], +"group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a8fce07d6436c77998f57f299f6f4299f":[3,1,7,1,7,3], +"group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3aaacc4bcde3273b270b49be1cc4313e00":[3,1,7,1,7,7], +"group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3ac9f5095893196090d15c2f7dc08210ad":[3,1,7,1,7,8], +"group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3ad0927af63b964b328c23b86ffe02bc4d":[3,1,7,1,7,6], +"group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3af429ab99f338e50f87fb142003c66fdb":[3,1,7,1,7,2], +"group___i_o_p_o_r_t.html#ggad182b542c7455ca61b70f0eeae3a380da1225085ace99cb7e29b0edf93c641964":[3,1,7,1,12,1], +"group___i_o_p_o_r_t.html#ggad182b542c7455ca61b70f0eeae3a380daaab0a473693e38386dbfe2790c08f477":[3,1,7,1,12,0], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a0956043c330b44ecbdc66009955514cc":[3,1,7,1,5,14], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a1279dc7076cbf2067f29fc53d5f40f03":[3,1,7,1,5,9], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a44817e0b76e81f0353e70fce82f556fa":[3,1,7,1,5,3], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a576f1af4e835f4533486d91cca50d8e9":[3,1,7,1,5,0], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a59e432aac051ffe1f8cbf0c34bff6bec":[3,1,7,1,5,11], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a5a8bf28d2e93cb6235e9a7beea2bfa0e":[3,1,7,1,5,1], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a79024706312ec731e9bf51d957ebbe71":[3,1,7,1,5,15], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a8f3a71786ad28300fa1a6ac3c13c2785":[3,1,7,1,5,6], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8aa285c9c361e0be95e5e87e788bd8b2de":[3,1,7,1,5,5], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8abc5b8302f7e467ec4c95faeb996cc012":[3,1,7,1,5,12], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ac3fc51d181290cff176e3aea6b74e37d":[3,1,7,1,5,8], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ac5c270420b2ae084817ee66214bbab36":[3,1,7,1,5,10], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ad7f23c31f6b56d6cf7b1024b8ea46b03":[3,1,7,1,5,2], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ad95d5ee06e7b584f16ebe622321a4f1c":[3,1,7,1,5,13], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ae66fce3d3c2f6f91af8c75de2a05ae72":[3,1,7,1,5,7], +"group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8afb9e29f050c27973d20c0273f88c6207":[3,1,7,1,5,4], +"group___i_o_p_o_r_t.html#structioport__event__group__input__t":[3,1,7,1,3], +"group___i_o_p_o_r_t.html#structioport__event__group__output__t":[3,1,7,1,2], +"group___i_o_p_o_r_t.html#structioport__event__single__t":[3,1,7,1,1], +"group___i_o_p_o_r_t.html#structioport__extend__cfg__t":[3,1,7,1,4], +"group___i_o_p_o_r_t.html#structioport__instance__ctrl__t":[3,1,7,1,0], +"group___i_o_p_o_r_t___a_p_i.html":[3,2,8], +"group___i_o_p_o_r_t___a_p_i.html#a024de5a09c01dd710ba447a9ffa3271b":[3,2,8,1,1], +"group___i_o_p_o_r_t___a_p_i.html#a15e2e35a9ea2163402cb38c29aaa6399":[3,2,8,2,8], +"group___i_o_p_o_r_t___a_p_i.html#a1efa98e218609e4171542ebfae213765":[3,2,8,3,2], +"group___i_o_p_o_r_t___a_p_i.html#a3c302ad5a452c415a6cb35ddecbe54bf":[3,2,8,1,2], +"group___i_o_p_o_r_t___a_p_i.html#a52c0dcf252f3502911337a9f99e17986":[3,2,8,2,5], +"group___i_o_p_o_r_t___a_p_i.html#a5a71c5cffcdcacab2425d46603451cf2":[3,2,8,2,12], +"group___i_o_p_o_r_t___a_p_i.html#a5e6a7a38da64dabdfc229f1727616bd0":[3,2,8,0,1], +"group___i_o_p_o_r_t___a_p_i.html#a72162206113e825e83aa709c106cd94e":[3,2,8,2,3], +"group___i_o_p_o_r_t___a_p_i.html#a81b125b5439058c024dbac0f57405f69":[3,2,8,2,1], +"group___i_o_p_o_r_t___a_p_i.html#aad4fb5941cd80d4ed9db0262f29b30cf":[3,2,8,2,7], +"group___i_o_p_o_r_t___a_p_i.html#ab369548c3b66d80747df3ed29ca336f0":[3,2,8,2,9], +"group___i_o_p_o_r_t___a_p_i.html#ac0de7591b4c5680e87ab2d219e2748c2":[3,2,8,2,11], +"group___i_o_p_o_r_t___a_p_i.html#ac962e87038418a6a525ac9f763687c19":[3,2,8,2,2], +"group___i_o_p_o_r_t___a_p_i.html#acef812bbce3afd1f4295fa7ff8b9ebfc":[3,2,8,3,1], +"group___i_o_p_o_r_t___a_p_i.html#ae9cd5d4b83ebe842e9f258aef4850c59":[3,2,8,2,0], +"group___i_o_p_o_r_t___a_p_i.html#aed708d8a848a6e142ce5bf8cc085360f":[3,2,8,2,4], +"group___i_o_p_o_r_t___a_p_i.html#af318c6344f0b7679df2ca79bf24bad6e":[3,2,8,3,0] }; diff --git a/navtreeindex8.js b/navtreeindex8.js index b096a5c..fae58c6 100644 --- a/navtreeindex8.js +++ b/navtreeindex8.js @@ -1,253 +1,253 @@ var NAVTREEINDEX8 = { -"group___r_s_p_i.html#af4b65717f05932609172a0828cee1db4":[3,1,11,2,1], -"group___r_s_p_i.html#ga01e482fc0ce65e7462177bb7f5852ac2":[3,1,11,14], -"group___r_s_p_i.html#ga2342f44b16c4072b5e9302c4f05b4f94":[3,1,11,3], -"group___r_s_p_i.html#ga431fc619396f9d5cf2f1c495c2ed59ca":[3,1,11,7], -"group___r_s_p_i.html#ga8e48fdc14874a5cba28661ae549203ab":[3,1,11,6], -"group___r_s_p_i.html#ga8f68c8c6c98ee871ad72bbb94c559775":[3,1,11,5], -"group___r_s_p_i.html#ga9aee5ad3abd18ef054128c8542ec7f68":[3,1,11,12], -"group___r_s_p_i.html#gaa303bc3394f99cd07e2ae96139651529":[3,1,11,8], -"group___r_s_p_i.html#gabf563431c100264a744239953798e1ea":[3,1,11,9], -"group___r_s_p_i.html#gad52ea6e5651ab88e2cbacfec46f6a4b3":[3,1,11,11], -"group___r_s_p_i.html#gad663d0a4eb35992cbf804cc5da21cb45":[3,1,11,13], -"group___r_s_p_i.html#gae3deb1d097bc300a5ed42849ebb200c6":[3,1,11,4], -"group___r_s_p_i.html#gae60c894cc73159eb48885dd1ab0864eb":[3,1,11,10], -"group___r_s_p_i.html#gga2342f44b16c4072b5e9302c4f05b4f94a33e3a44f24010fc5a3f737b1fc451ed7":[3,1,11,3,0], -"group___r_s_p_i.html#gga2342f44b16c4072b5e9302c4f05b4f94af642f0a0ebd5e10f1e0f749f2a7b6861":[3,1,11,3,1], -"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa0075abb73fd4b57739d3dc2ce736e8f7":[3,1,11,7,1], -"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa036ea6f9fcfa956509de0e99167c61e7":[3,1,11,7,3], -"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa5514129ce285974d810db5f22e2518d1":[3,1,11,7,2], -"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa6e2d61b897292531bcf0a4dd66e7ce74":[3,1,11,7,0], -"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caacd53b2a36ff3174ca39d448d47626dbf":[3,1,11,7,6], -"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caad83aa485a255af67211f9455b77dcdd5":[3,1,11,7,4], -"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caaf0c6136c76672af71b2a3a586013f395":[3,1,11,7,7], -"group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caaf2e133c6790fa395dcb1cbe1be0b90b0":[3,1,11,7,5], -"group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba39b767be6e7e52887162d6a45ef4ec1c":[3,1,11,6,1], -"group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba922c57b7e36774c42a3eb3efc1e91f75":[3,1,11,6,0], -"group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba9d9724c3300e18d9ed1985559558d0bf":[3,1,11,6,2], -"group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203abacfc42fd65ae0d7a0f60aed988a4fa1e8":[3,1,11,6,3], -"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a113a034f110841c3f8fb0c726238c7ea":[3,1,11,5,1], -"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a278ef944fd2a6485be24ddc58e154e00":[3,1,11,5,2], -"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a5ac1f6ea1b0b10b12ff8e91ec32f9ce9":[3,1,11,5,7], -"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a76dd1b81a9f64fcccfd74406bf67d712":[3,1,11,5,4], -"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a7e2364c6d0f338da53c4eb5e96c6e0fe":[3,1,11,5,5], -"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a97aed5f01b2294bc3fd7a64645f67a69":[3,1,11,5,3], -"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775acf6c2af3c3fd7da891cd64c6ac082ed7":[3,1,11,5,0], -"group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775ad0ac09d0f4cbd2e59603fbfaf8195cc8":[3,1,11,5,6], -"group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a2a42bca9fb7a5f485d0c21c70d83c6bc":[3,1,11,4,1], -"group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a334fbae8188c8d89825231b5126c432d":[3,1,11,4,2], -"group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a671c871f2ed8584714caf4c0d562da4e":[3,1,11,4,0], -"group___r_s_p_i.html#structrspi__extended__cfg__t":[3,1,11,1], -"group___r_s_p_i.html#structrspi__instance__ctrl__t":[3,1,11,2], -"group___r_s_p_i.html#structrspi__rspck__div__setting__t":[3,1,11,0], -"group___s_c_i_f___u_a_r_t.html":[3,1,12], -"group___s_c_i_f___u_a_r_t.html#a04920b030d567052f3b4efb1f85753e9":[3,1,12,2,6], -"group___s_c_i_f___u_a_r_t.html#a0ff4c8c790a3ebefd5cf18b65b5072c2":[3,1,12,2,3], -"group___s_c_i_f___u_a_r_t.html#a1067241f2267052cd8240d136c0cba9c":[3,1,12,2,5], -"group___s_c_i_f___u_a_r_t.html#a172e0b3047c07502b68ff88471e787ee":[3,1,12,2,1], -"group___s_c_i_f___u_a_r_t.html#a1c9c1ba263a956a8224a1156d6bc03a1":[3,1,12,2,7], -"group___s_c_i_f___u_a_r_t.html#a3fa97958f621b33bee457ec6bc136bed":[3,1,12,2,0], -"group___s_c_i_f___u_a_r_t.html#aa593c3c46c8e09dc0d1167b4a52797ee":[3,1,12,2,2], -"group___s_c_i_f___u_a_r_t.html#aa761132ebac67c5cbbc3d6a505b97efe":[3,1,12,2,9], -"group___s_c_i_f___u_a_r_t.html#aa990e9d3a5b69c41397f92a86a30174d":[3,1,12,2,4], -"group___s_c_i_f___u_a_r_t.html#acbf8ff1fb27039b0240beceeff67d048":[3,1,12,1,1], -"group___s_c_i_f___u_a_r_t.html#acc601128ecd5e04fcc306b249a2bb7bf":[3,1,12,1,0], -"group___s_c_i_f___u_a_r_t.html#aed0a20c432a538f3c20a83c50e76be3b":[3,1,12,2,8], -"group___s_c_i_f___u_a_r_t.html#ga023aa56b9ce183733d7933bf750fab6f":[3,1,12,5], -"group___s_c_i_f___u_a_r_t.html#ga07a261385112a6909e86c441411e2e53":[3,1,12,10], -"group___s_c_i_f___u_a_r_t.html#ga0d573f7ffdec42630a06605b64c00482":[3,1,12,14], -"group___s_c_i_f___u_a_r_t.html#ga2a791c5e359c3fe2d85339fc3f915bc3":[3,1,12,9], -"group___s_c_i_f___u_a_r_t.html#ga3a8c9e8d2860a4f467aca2ae92675d4c":[3,1,12,4], -"group___s_c_i_f___u_a_r_t.html#ga42409976902f41a6c92890ca8d9eb28a":[3,1,12,11], -"group___s_c_i_f___u_a_r_t.html#ga540d3842dd9db9c39e36c230583e29b1":[3,1,12,15], -"group___s_c_i_f___u_a_r_t.html#ga5d3f2e170b79de59f46ae864fc993e95":[3,1,12,7], -"group___s_c_i_f___u_a_r_t.html#ga6880b7cd58a44c99fe197b1b0a14e737":[3,1,12,17], -"group___s_c_i_f___u_a_r_t.html#ga6ed81db7a7e6f618870e1479734c5860":[3,1,12,12], -"group___s_c_i_f___u_a_r_t.html#ga94601e39cbf40b77e5e4236385b58704":[3,1,12,6], -"group___s_c_i_f___u_a_r_t.html#gaa31fbf8041a381d6da9c454be58ad613":[3,1,12,3], -"group___s_c_i_f___u_a_r_t.html#gaaee66fa30e6f9f0efb538ecb91a9ad89":[3,1,12,8], -"group___s_c_i_f___u_a_r_t.html#gad29ba19ecddc66108d794c93f9c1165f":[3,1,12,16], -"group___s_c_i_f___u_a_r_t.html#gafc4582fe6a3b46c7e933d709204c01f3":[3,1,12,13], -"group___s_c_i_f___u_a_r_t.html#gga023aa56b9ce183733d7933bf750fab6faa7f57854411216312fad5f3d6abb3551":[3,1,12,5,1], -"group___s_c_i_f___u_a_r_t.html#gga023aa56b9ce183733d7933bf750fab6fae2a15d92815c84415931688271be5392":[3,1,12,5,0], -"group___s_c_i_f___u_a_r_t.html#gga3a8c9e8d2860a4f467aca2ae92675d4ca1a384dea42c4cc16ceca1923546709c7":[3,1,12,4,0], -"group___s_c_i_f___u_a_r_t.html#gga3a8c9e8d2860a4f467aca2ae92675d4ca749fe7aee711151eef0226933d9a5829":[3,1,12,4,2], -"group___s_c_i_f___u_a_r_t.html#gga3a8c9e8d2860a4f467aca2ae92675d4caa7ed834f5731674f7b20ea22c79da715":[3,1,12,4,1], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a020affbf40082d7c07ab5fa8a0fe802e":[3,1,12,7,16], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a19329bac313a91e73554cf5571941a7e":[3,1,12,7,17], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a2488b7b352248b736ad778549ba64f3f":[3,1,12,7,14], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a2b6427033846f866ffd254b632b07a9b":[3,1,12,7,4], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a479ec5b31c57f9fae8c4d6a7aac71b50":[3,1,12,7,11], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a6532d2cfae53c35e93bf72db2e17e954":[3,1,12,7,10], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a849bd498e980ed5291b9fade846d748f":[3,1,12,7,15], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a8c61ea1a1f8a53bd2ef81a135ce6fb65":[3,1,12,7,3], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a8ecbc830c93a7b39eef1409cf89bc98a":[3,1,12,7,12], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a94ab8d8849528a45bd87bc014ff2352a":[3,1,12,7,7], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ab85d375110c92593e11c02c28acf75a0":[3,1,12,7,1], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ac1a24c19641762ce694726ef9da404e1":[3,1,12,7,6], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ac644a3e7327d3998cf0e300c6fa38b4e":[3,1,12,7,8], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ad8eb49bdf41e9867d8a6d0986b9343a6":[3,1,12,7,0], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95adf5efc0954d8d3ee2e132940e8010e16":[3,1,12,7,2], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ae66c9b5ef3fc1aac931dd80766cdfe3c":[3,1,12,7,18], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ae81d37bcbe15cf0adbee5556a96ce7f3":[3,1,12,7,9], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ae9eba978351e7f07759323c1e3d2e3e5":[3,1,12,7,13], -"group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95af3ba973f1fdbd89fb035e63925eba079":[3,1,12,7,5], -"group___s_c_i_f___u_a_r_t.html#gga94601e39cbf40b77e5e4236385b58704ad3f821ad6438fb954b659c75d156d662":[3,1,12,6,1], -"group___s_c_i_f___u_a_r_t.html#gga94601e39cbf40b77e5e4236385b58704ad882f64a494b61ff64e551ad3011a5b7":[3,1,12,6,0], -"group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613a51c6cc623adda130f372f24e12128e4b":[3,1,12,3,0], -"group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613a754b82d17863d7a0ff2b782285e9ca5b":[3,1,12,3,1], -"group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613a98d63305c87c9cf86a5c6123464723a4":[3,1,12,3,2], -"group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613af4a4b829fd6e162e8572760595be226b":[3,1,12,3,3], -"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a72f3e438f603dd31866ee7002856934a":[3,1,12,8,7], -"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a94a36bf05c3529a4eb80aa4386fd1bf3":[3,1,12,8,4], -"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a9b2d1ca1de149e8561561ac69573e3de":[3,1,12,8,0], -"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ab8da90640e88e64a86e25159a0b8683e":[3,1,12,8,1], -"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89abad73882425c2d7ce6934938f6dcaebc":[3,1,12,8,3], -"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ad0db387e28a0ed3d63add574f599e026":[3,1,12,8,5], -"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ad36001398f868aef10e35c4992f37afb":[3,1,12,8,2], -"group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89afd80607e5a941b03255635196a53a004":[3,1,12,8,6], -"group___s_c_i_f___u_a_r_t.html#structscif__baud__setting__t":[3,1,12,1], -"group___s_c_i_f___u_a_r_t.html#structscif__uart__extended__cfg__t":[3,1,12,2], -"group___s_c_i_f___u_a_r_t.html#structscif__uart__instance__ctrl__t":[3,1,12,0], -"group___s_p_i___a_p_i.html":[3,2,8], -"group___s_p_i___a_p_i.html#a01c7aacdcdf219dcfa88c2b40e7d25b1":[3,2,8,3,4], -"group___s_p_i___a_p_i.html#a158d5d33a79faa329d9c6d0d02d9bd86":[3,2,8,2,5], -"group___s_p_i___a_p_i.html#a1fdddcdf63a3270438eac756a7f4d6a4":[3,2,8,0,0], -"group___s_p_i___a_p_i.html#a312e4358f12551a3f7aaa5f0a09c0501":[3,2,8,2,14], -"group___s_p_i___a_p_i.html#a330c7d1944ff925e619c40ee4f796b86":[3,2,8,2,0], -"group___s_p_i___a_p_i.html#a3594e8fa704cc11af1fa448fb0e0971b":[3,2,8,2,12], -"group___s_p_i___a_p_i.html#a370e9869ca57c5a81ab7957e90a69f13":[3,2,8,2,6], -"group___s_p_i___a_p_i.html#a38e81bf48ececd7cc34ecf215b923c42":[3,2,8,2,2], -"group___s_p_i___a_p_i.html#a3fa6490704fecf976812df4a6ba9a494":[3,2,8,4,2], -"group___s_p_i___a_p_i.html#a43d0988501f90910690a3357bda1a936":[3,2,8,3,1], -"group___s_p_i___a_p_i.html#a493a388c1b9907a10e54ab57021f5ea4":[3,2,8,2,7], -"group___s_p_i___a_p_i.html#a65879b76a785f6afaf3e295120de9bf2":[3,2,8,2,3], -"group___s_p_i___a_p_i.html#a6a253b9d5669bb4be218a6143db2df13":[3,2,8,2,4], -"group___s_p_i___a_p_i.html#a6ed153d8e5e54e417fda95b044ac2fd6":[3,2,8,3,3], -"group___s_p_i___a_p_i.html#a78b80f52103ccfc52dbc78bffbc832b6":[3,2,8,2,18], -"group___s_p_i___a_p_i.html#a792a14261f15cfbf582d683c16f3da72":[3,2,8,4,1], -"group___s_p_i___a_p_i.html#a91d7ce46956168e975b7c9f5fc738724":[3,2,8,2,13], -"group___s_p_i___a_p_i.html#a97177a6162ebad73907c7f23c1411426":[3,2,8,3,0], -"group___s_p_i___a_p_i.html#aa23ca0243886b64c90aa17744d72aee5":[3,2,8,3,5], -"group___s_p_i___a_p_i.html#ab38fb6af687bdf7e0ea9143499849bc6":[3,2,8,2,15], -"group___s_p_i___a_p_i.html#ab81d9fc86a397dbd72e57bca4b0aa107":[3,2,8,2,9], -"group___s_p_i___a_p_i.html#abd5918ae9720bacf1708e2a2dfed564b":[3,2,8,4,0], -"group___s_p_i___a_p_i.html#ac13df7ba09c4fdff952d8ead0d1b7645":[3,2,8,2,11], -"group___s_p_i___a_p_i.html#ac54861ff0fab10bfb9cd8834c31ad9c0":[3,2,8,2,17], -"group___s_p_i___a_p_i.html#acd490330020cce12382d6ba1b1ad8bbe":[3,2,8,2,1], -"group___s_p_i___a_p_i.html#acdafc89def1a4325004c5f7022e9488f":[3,2,8,0,2], -"group___s_p_i___a_p_i.html#ae1e14270178c91fb89697630627c1eee":[3,2,8,0,1], -"group___s_p_i___a_p_i.html#ae716333870904cc1af1425fae1a8c1e4":[3,2,8,2,10], -"group___s_p_i___a_p_i.html#ae9becc8fedef1f029e6adc788611a276":[3,2,8,2,16], -"group___s_p_i___a_p_i.html#af053cb19a14773a51d1e060c5a624555":[3,2,8,3,2], -"group___s_p_i___a_p_i.html#afc54b2134c7201c559d31d4a9d1ab724":[3,2,8,2,8], -"group___s_p_i___a_p_i.html#ga28c820896d3da6e8173ed07f7ca89cb0":[3,2,8,9], -"group___s_p_i___a_p_i.html#ga6ba4a8eef274a5b227fc2ab6ee61f8fd":[3,2,8,6], -"group___s_p_i___a_p_i.html#ga6e4960e8b344a8a8ec60f0c11d60f54c":[3,2,8,12], -"group___s_p_i___a_p_i.html#ga90f5b39d4872c0c09255af5dcea6cd3e":[3,2,8,11], -"group___s_p_i___a_p_i.html#gac4b206a51636d91c5cffcbcee458c3cb":[3,2,8,7], -"group___s_p_i___a_p_i.html#gacb036be7f805dbb8d2092486d1aeb242":[3,2,8,5], -"group___s_p_i___a_p_i.html#gad24d01aba46c370e11e3f2df7d9b6776":[3,2,8,10], -"group___s_p_i___a_p_i.html#gae514c0ed7b5a86723aa9451d623d35ab":[3,2,8,8], -"group___s_p_i___a_p_i.html#gga28c820896d3da6e8173ed07f7ca89cb0a1901f5e3018e5ab36c30d721854d65a2":[3,2,8,9,0], -"group___s_p_i___a_p_i.html#gga28c820896d3da6e8173ed07f7ca89cb0acb77929e5ac9f1f0fe2adf3aece45958":[3,2,8,9,1], -"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda62f8d41fec9f532ac41463037534e582":[3,2,8,6,1], -"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdad6fa8af050db98465c43fd25fb8e8090":[3,2,8,6,0], -"group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf69633d9ed10c0d07cea1ded1b562aed":[3,2,8,6,2], -"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca0176b7b836076f7cb6eb900e29a61d0b":[3,2,8,12,7], -"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca02af67a21905e378eb464ba80117142c":[3,2,8,12,1], -"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca055c216253298b6af279e64eb542b689":[3,2,8,12,5], -"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca1a718a357bce9eb804a3b3a350ca894c":[3,2,8,12,4], -"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca2b456074a7304b0ac4be1cbe69d6dad1":[3,2,8,12,0], -"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca65e04eb27a5e00a37e1cf2b9a3ed4d32":[3,2,8,12,2], -"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca71a3d6fe1922346e01054bb11993b26a":[3,2,8,12,3], -"group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54caeaac307aea3da421c6cc960b146899ce":[3,2,8,12,6], -"group___s_p_i___a_p_i.html#gga90f5b39d4872c0c09255af5dcea6cd3ea2f62df128ff20f3a9632c7f72732491a":[3,2,8,11,0], -"group___s_p_i___a_p_i.html#gga90f5b39d4872c0c09255af5dcea6cd3ea8b9afce8db1ee080e7f9d65aa1aaeae5":[3,2,8,11,1], -"group___s_p_i___a_p_i.html#ggac4b206a51636d91c5cffcbcee458c3cbad1131ed33ad43ab3f667070b04454439":[3,2,8,7,1], -"group___s_p_i___a_p_i.html#ggac4b206a51636d91c5cffcbcee458c3cbae68a8adf6e5b67a7bdbe9526b15dae99":[3,2,8,7,0], -"group___s_p_i___a_p_i.html#ggad24d01aba46c370e11e3f2df7d9b6776a7966b9fbe2b8517dc1dbec4aeb783f7c":[3,2,8,10,0], -"group___s_p_i___a_p_i.html#ggad24d01aba46c370e11e3f2df7d9b6776ada1c119cee344e3a48f8ff33350d707b":[3,2,8,10,1], -"group___s_p_i___a_p_i.html#ggae514c0ed7b5a86723aa9451d623d35aba52bdac64004112bc083e6dbcc4f5d9b7":[3,2,8,8,0], -"group___s_p_i___a_p_i.html#ggae514c0ed7b5a86723aa9451d623d35aba6a695897644ab53c608247fd67209e82":[3,2,8,8,1], -"group___s_p_i___a_p_i.html#structspi__api__t":[3,2,8,3], -"group___s_p_i___a_p_i.html#structspi__callback__args__t":[3,2,8,0], -"group___s_p_i___a_p_i.html#structspi__cfg__t":[3,2,8,2], -"group___s_p_i___a_p_i.html#structspi__instance__t":[3,2,8,4], -"group___s_p_i___a_p_i.html#structspi__write__read__guard__args__t":[3,2,8,1], -"group___t_i_m_e_r___a_p_i.html":[3,2,9], -"group___t_i_m_e_r___a_p_i.html#a07302c8caf4d9b811e7350a96615d98d":[3,2,9,3,5], -"group___t_i_m_e_r___a_p_i.html#a08b897cfbf2d0cefafe8d3abb1afc747":[3,2,9,1,2], -"group___t_i_m_e_r___a_p_i.html#a11321e8dde7c33a4e6835a1bf64f7689":[3,2,9,4,9], -"group___t_i_m_e_r___a_p_i.html#a13cb48d1657a9eda3380c111ba33aa2a":[3,2,9,4,4], -"group___t_i_m_e_r___a_p_i.html#a1b2c51a519145c2482ca2fb6b4b3d749":[3,2,9,4,10], -"group___t_i_m_e_r___a_p_i.html#a30a4d58bdfa5834a17d497c7f3906c75":[3,2,9,3,9], -"group___t_i_m_e_r___a_p_i.html#a37fb0f08b16d9e2408909c4f2cc7acbb":[3,2,9,3,6], -"group___t_i_m_e_r___a_p_i.html#a552ef9466567fbe3c7c945e1efe3643c":[3,2,9,5,2], -"group___t_i_m_e_r___a_p_i.html#a592d3bb6a865ababe1c433ab7b83aa48":[3,2,9,3,2], -"group___t_i_m_e_r___a_p_i.html#a61b9aabfcafc5e362dce56af7ea36bcf":[3,2,9,0,1], -"group___t_i_m_e_r___a_p_i.html#a641f967b15711f0e91bc0f41fc8ebfe6":[3,2,9,5,0], -"group___t_i_m_e_r___a_p_i.html#a7d2f434f07723a53b504751e9e5ac540":[3,2,9,3,7], -"group___t_i_m_e_r___a_p_i.html#a819ed0740ca426ace0d6b67e16c6ddfc":[3,2,9,4,7], -"group___t_i_m_e_r___a_p_i.html#a83bdbe351fc323e334f96bbf41420a07":[3,2,9,0,0], -"group___t_i_m_e_r___a_p_i.html#a85205f345201aaf1d25b5ee1257f8345":[3,2,9,1,1], -"group___t_i_m_e_r___a_p_i.html#a8abd12cdf1a993cf8054be6ba9d96a6f":[3,2,9,0,2], -"group___t_i_m_e_r___a_p_i.html#a8b69fad02aee5d83b941ed02fca18aca":[3,2,9,4,5], -"group___t_i_m_e_r___a_p_i.html#a9519afc7ea8aec3aaf1eb787b39cc97c":[3,2,9,3,0], -"group___t_i_m_e_r___a_p_i.html#a952d4e8952d0cc32bad22546064a8c44":[3,2,9,2,1], -"group___t_i_m_e_r___a_p_i.html#a9da65b46c59a0543ec977f634bb0265d":[3,2,9,3,3], -"group___t_i_m_e_r___a_p_i.html#a9e8b8140010a28082aedd758390fac97":[3,2,9,4,11], -"group___t_i_m_e_r___a_p_i.html#aa892b6997a1972de6a6ebd48e0fb9233":[3,2,9,3,1], -"group___t_i_m_e_r___a_p_i.html#aa98df70bd7724ce80c42c0f4c263ef59":[3,2,9,3,4], -"group___t_i_m_e_r___a_p_i.html#ab1c62157861ef1ea8393bb3cafd72102":[3,2,9,4,3], -"group___t_i_m_e_r___a_p_i.html#ab3892976d7757fae081e19023e155006":[3,2,9,2,0], -"group___t_i_m_e_r___a_p_i.html#ad6aac1202b591958b40f1bc018abd387":[3,2,9,3,8], -"group___t_i_m_e_r___a_p_i.html#ae9aad84a01ccd7ce0039ed491faeff19":[3,2,9,4,6], -"group___t_i_m_e_r___a_p_i.html#aeaea79f26305c493566e4b45ae9e294c":[3,2,9,4,8], -"group___t_i_m_e_r___a_p_i.html#aebe4bd4819b5d24a8d4fa847359b6afa":[3,2,9,5,1], -"group___t_i_m_e_r___a_p_i.html#aed0139dbf5102e39719ddbc51f16a21e":[3,2,9,4,2], -"group___t_i_m_e_r___a_p_i.html#af333f19bba6c3962a91fe3beb90482a8":[3,2,9,1,0], -"group___t_i_m_e_r___a_p_i.html#af49a90087a53c8019d642a3f7abaa8ad":[3,2,9,4,0], -"group___t_i_m_e_r___a_p_i.html#afcc7e85d01c3d7dc0c6e09954631f47f":[3,2,9,4,1], -"group___t_i_m_e_r___a_p_i.html#ga1360292eee5d5a5288646fd1eb37c83e":[3,2,9,9], -"group___t_i_m_e_r___a_p_i.html#ga2da99b474151cb687d5882ad21b09c2a":[3,2,9,6], -"group___t_i_m_e_r___a_p_i.html#ga6d4cd64aed5c0009ac26803efc9c13b2":[3,2,9,10], -"group___t_i_m_e_r___a_p_i.html#ga820b425b44d7b551afd1797ecca7a5ad":[3,2,9,12], -"group___t_i_m_e_r___a_p_i.html#ga8d600bb7885c5490bb7e8f989aa2ff83":[3,2,9,11], -"group___t_i_m_e_r___a_p_i.html#gaa3525eef2e1fa1bc8809b2d3aaf0de5d":[3,2,9,8], -"group___t_i_m_e_r___a_p_i.html#gac3bee51f7c9078f794c5ac19522f91eb":[3,2,9,7], -"group___t_i_m_e_r___a_p_i.html#gga1360292eee5d5a5288646fd1eb37c83ea92e859c83369128798902fd7a86a3320":[3,2,9,9,0], -"group___t_i_m_e_r___a_p_i.html#gga1360292eee5d5a5288646fd1eb37c83eaba4825c92c8291b64e827943330007b7":[3,2,9,9,1], -"group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a140f07675d67258a7ca9a95a9a793e3a":[3,2,9,10,1], -"group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a204001ad413e9ad0db08a66d004a555a":[3,2,9,10,4], -"group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a6a3c462f9e9cc1b26ab68f38efd79b14":[3,2,9,10,3], -"group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a78838cf8d728f8c64bb8012d522d1e2e":[3,2,9,10,0], -"group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2aca44e952a6930f39ac05393522392eac":[3,2,9,10,2], -"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada1cc7525fed9c5374c3a530e17453e670":[3,2,9,12,6], -"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada387f7122153dd7d860762a6f73485fb8":[3,2,9,12,0], -"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada6680e947eb6455f9d0ee007645ea707d":[3,2,9,12,8], -"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada6cf9f5fb4095fd15027e6d06a811a3f5":[3,2,9,12,2], -"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada8828520a3958955a4e2835785787c801":[3,2,9,12,7], -"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adaa2da1d2d669ae1f3baf715e96a803be3":[3,2,9,12,3], -"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adacccb03dab14c93d036cdff662b1686a1":[3,2,9,12,5], -"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adae36be19b8ae1b3b3918e39c738e62c82":[3,2,9,12,4], -"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adaee99148dc7c32f0764c7cb3b3e45ca30":[3,2,9,12,9], -"group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adafa4194764952e26c833bdaa26587f245":[3,2,9,12,1], -"group___t_i_m_e_r___a_p_i.html#gga8d600bb7885c5490bb7e8f989aa2ff83a6a5c25392297a9e6adcc2a31d210e654":[3,2,9,11,0], -"group___t_i_m_e_r___a_p_i.html#gga8d600bb7885c5490bb7e8f989aa2ff83aa6e92d4dfd3483ec2ca281fae716c3db":[3,2,9,11,1], -"group___t_i_m_e_r___a_p_i.html#ggaa3525eef2e1fa1bc8809b2d3aaf0de5da7dddd2791567467dc7bcf74ca2fc2cbb":[3,2,9,8,0], -"group___t_i_m_e_r___a_p_i.html#ggaa3525eef2e1fa1bc8809b2d3aaf0de5dab2eba551f1a7140323af63a66a137b49":[3,2,9,8,1], -"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba4bc1252f63147f4a01f7b7ba88afac1d":[3,2,9,7,2], -"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba73d4afde72c0b28a768c8e6d25c050f8":[3,2,9,7,1], -"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba83cb2de8ac629fcd95525e94b94089f0":[3,2,9,7,4], -"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebab7b635fbf34ede5a3e2f55b5a60ac21b":[3,2,9,7,3], -"group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebae310bef0d640f06765c01b4b91a5b84c":[3,2,9,7,0], -"group___t_i_m_e_r___a_p_i.html#structtimer__api__t":[3,2,9,4], -"group___t_i_m_e_r___a_p_i.html#structtimer__callback__args__t":[3,2,9,0], -"group___t_i_m_e_r___a_p_i.html#structtimer__cfg__t":[3,2,9,3], -"group___t_i_m_e_r___a_p_i.html#structtimer__info__t":[3,2,9,1], -"group___t_i_m_e_r___a_p_i.html#structtimer__instance__t":[3,2,9,5], -"group___t_i_m_e_r___a_p_i.html#structtimer__status__t":[3,2,9,2], -"group___t_r_a_n_s_f_e_r___a_p_i.html":[3,2,10] +"group___i_o_p_o_r_t___a_p_i.html#af5b820497125b07a94537deb03a37f0d":[3,2,8,1,0], +"group___i_o_p_o_r_t___a_p_i.html#afaba07fd298740d7a58a74720e259af2":[3,2,8,2,6], +"group___i_o_p_o_r_t___a_p_i.html#afad905247e7c42fcb42d412a4e2d2d15":[3,2,8,2,10], +"group___i_o_p_o_r_t___a_p_i.html#afbba86b25693590a1057e1ba1257341c":[3,2,8,0,0], +"group___i_o_p_o_r_t___a_p_i.html#ga25ef8d1291cc073dd48f57b16d91c13e":[3,2,8,6], +"group___i_o_p_o_r_t___a_p_i.html#gaf5da96a68757260a2cb370fec69f0836":[3,2,8,4], +"group___i_o_p_o_r_t___a_p_i.html#gafc061c58bb812cb2a8f25222353634cd":[3,2,8,5], +"group___i_o_p_o_r_t___a_p_i.html#gga25ef8d1291cc073dd48f57b16d91c13ea5d94e8d4ba61664a407a0d84538fc298":[3,2,8,6,1], +"group___i_o_p_o_r_t___a_p_i.html#gga25ef8d1291cc073dd48f57b16d91c13eaf67cf250303fd4692c46717f0b7a9412":[3,2,8,6,0], +"group___i_o_p_o_r_t___a_p_i.html#structioport__api__t":[3,2,8,2], +"group___i_o_p_o_r_t___a_p_i.html#structioport__cfg__t":[3,2,8,1], +"group___i_o_p_o_r_t___a_p_i.html#structioport__instance__t":[3,2,8,3], +"group___i_o_p_o_r_t___a_p_i.html#structioport__pin__cfg__t":[3,2,8,0], +"group___m_h_u___a_p_i.html":[3,2,9], +"group___m_h_u___a_p_i.html#a06429bf95953ff61b299d881100cc112":[3,2,9,0,2], +"group___m_h_u___a_p_i.html#a2a3e7eaaacf7c526d9fe10427817f68d":[3,2,9,0,0], +"group___m_h_u___a_p_i.html#a2f882461a857251d03cbc5d63a6d52cb":[3,2,9,3,1], +"group___m_h_u___a_p_i.html#a435b9195d22768cde4eda0f37246a84f":[3,2,9,2,3], +"group___m_h_u___a_p_i.html#a5a66c1be79665ce4b5d802f568d371cf":[3,2,9,3,0], +"group___m_h_u___a_p_i.html#a699f2d0b2fc8919da61e4dfae837890f":[3,2,9,1,0], +"group___m_h_u___a_p_i.html#a71110c354941eb9204f6af5969ce7132":[3,2,9,2,2], +"group___m_h_u___a_p_i.html#a7845968f2caba53ceb0d64761b12bc6e":[3,2,9,1,1], +"group___m_h_u___a_p_i.html#a8820bea933c4deea77e01e48b6f76865":[3,2,9,1,4], +"group___m_h_u___a_p_i.html#ac3886717d220de2c7861063acceee859":[3,2,9,2,0], +"group___m_h_u___a_p_i.html#ad3cc3a49b8f6d7cbbcc6a72833f51e2c":[3,2,9,1,5], +"group___m_h_u___a_p_i.html#adf5e843397d8bc69ace33912995215f6":[3,2,9,0,1], +"group___m_h_u___a_p_i.html#ae6ee1dfc1a00326e8b26dfc9701f0b31":[3,2,9,1,3], +"group___m_h_u___a_p_i.html#af10328b8b91b88072cc88d78d4e19585":[3,2,9,3,2], +"group___m_h_u___a_p_i.html#af6d5343757b4e233873d1707ceac8998":[3,2,9,1,2], +"group___m_h_u___a_p_i.html#af6d608ef42020cdccb89d9d0bd7a28b0":[3,2,9,2,1], +"group___m_h_u___a_p_i.html#ga2f810fc1366dd26cd5632846a65407ae":[3,2,9,5], +"group___m_h_u___a_p_i.html#gab4529354e4994392568d5ebd6aabfcd7":[3,2,9,4], +"group___m_h_u___a_p_i.html#gga2f810fc1366dd26cd5632846a65407aea0aed9dce78e782b034f672d0bf54cb2b":[3,2,9,5,1], +"group___m_h_u___a_p_i.html#gga2f810fc1366dd26cd5632846a65407aea72dd7fd31939b7f67d6b212b7b22917d":[3,2,9,5,0], +"group___m_h_u___a_p_i.html#structmhu__api__t":[3,2,9,2], +"group___m_h_u___a_p_i.html#structmhu__callback__args__t":[3,2,9,0], +"group___m_h_u___a_p_i.html#structmhu__cfg__t":[3,2,9,1], +"group___m_h_u___a_p_i.html#structmhu__instance__t":[3,2,9,3], +"group___m_h_u___b___n_s.html":[3,1,1,2], +"group___m_h_u___b___n_s.html#a32ff5d194f38c43784c59191c7883e76":[3,1,1,2,0,3], +"group___m_h_u___b___n_s.html#a644305cfbb2917f04ceeea349b8849a6":[3,1,1,2,0,4], +"group___m_h_u___b___n_s.html#a697b7be0ff6ea5e30819c4936991a032":[3,1,1,2,0,5], +"group___m_h_u___b___n_s.html#ab0e659a5bf2d3dbc21790c60e55e3502":[3,1,1,2,0,1], +"group___m_h_u___b___n_s.html#aba2ed695735df5ae0890447008554a1a":[3,1,1,2,0,6], +"group___m_h_u___b___n_s.html#ad68f27c0f8259cfb7a6d58727c56b67c":[3,1,1,2,0,2], +"group___m_h_u___b___n_s.html#af4c1fc022c5b71589516dd2ca5789a92":[3,1,1,2,0,0], +"group___m_h_u___b___n_s.html#ga0e9a0ab284383893a02ab288ac885ee8":[3,1,1,2,4], +"group___m_h_u___b___n_s.html#ga1bba9825f978e9a56d75d167a7b5b179":[3,1,1,2,2], +"group___m_h_u___b___n_s.html#gaa7e509b5c668cf5926959cb50f53ea06":[3,1,1,2,3], +"group___m_h_u___b___n_s.html#gac10ebe6ec0a9dfc34d9b512bbf3fa66e":[3,1,1,2,5], +"group___m_h_u___b___n_s.html#gafb961a25b2c2e6b965dfa1ba580450f5":[3,1,1,2,1], +"group___m_h_u___b___n_s.html#structmhu__b__ns__instance__ctrl__t":[3,1,1,2,0], +"group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html":[3,1,1,3], +"group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#a03917ba43d92ba64f3ceff9d2a5ed8f6":[3,1,1,3,0,3], +"group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#a0eefba6634fa0bc1909fcd1fc46ca7da":[3,1,1,3,0,1], +"group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#a4f56a5fad7755cca0501ce4641ed6979":[3,1,1,3,0,0], +"group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#af80195b0968f9c69dfd0c89fa645ac4f":[3,1,1,3,0,2], +"group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#ga662917c72899887e1ddd67cce497c732":[3,1,1,3,3], +"group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#ga8a7c2ba26a5025d177316a6a5981c706":[3,1,1,3,4], +"group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#gadab533dca3f9ebbd37eddda34b8269fe":[3,1,1,3,2], +"group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#gafd2f119cc386c1672bf465ccefb498c3":[3,1,1,3,1], +"group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#structmhu__b__ns__swint__get__instance__ctrl__t":[3,1,1,3,0], +"group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html":[3,1,1,4], +"group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#a62ec267ef9eb17835f70e99d23c9e840":[3,1,1,4,0,0], +"group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#ac237427a57125c109907a6f027aa7bb2":[3,1,1,4,0,3], +"group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#aceefb97edf194ab8591a4b3977f3c153":[3,1,1,4,0,1], +"group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#ae4b9ea02a0965d8918fa729c6b19e8b6":[3,1,1,4,0,2], +"group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#gaba5433742015125a5bf5d8e3ef75b980":[3,1,1,4,1], +"group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#gaddd83232518e56d27b705f7c8fc99f17":[3,1,1,4,2], +"group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#gae96425edecc8f21ed9681028dfb81019":[3,1,1,4,3], +"group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#structmhu__b__ns__swint__set__instance__ctrl__t":[3,1,1,4,0], +"group___m_h_u___b___s.html":[3,1,1,5], +"group___m_h_u___b___s.html#a294d326c6a08e1f19a58d2a2bbc88ca5":[3,1,1,5,0,0], +"group___m_h_u___b___s.html#a2b8c58c859b360c49f9c132b8e9e56eb":[3,1,1,5,0,2], +"group___m_h_u___b___s.html#a3b97d7aeb81bea198e1a0d059636094f":[3,1,1,5,0,1], +"group___m_h_u___b___s.html#a910e0327342316a77edb79f80e2beb2e":[3,1,1,5,0,6], +"group___m_h_u___b___s.html#a9b896e827be8d101095eb1d8c67afc89":[3,1,1,5,0,3], +"group___m_h_u___b___s.html#aa89c2c59032c4f93ba53b8a8aaeec31c":[3,1,1,5,0,5], +"group___m_h_u___b___s.html#ac6ee77183a51d7a53d2f9568318fda9b":[3,1,1,5,0,4], +"group___m_h_u___b___s.html#ga0222baa1c79edc091f8676c719d32c1b":[3,1,1,5,5], +"group___m_h_u___b___s.html#ga0b3f80725bd550c0ad45e65a2b1ce84d":[3,1,1,5,1], +"group___m_h_u___b___s.html#gac6ff12104bd7bf87ad37d80b447b3fe8":[3,1,1,5,3], +"group___m_h_u___b___s.html#gad7c066b75da3fbe82844c1474d6a3f07":[3,1,1,5,4], +"group___m_h_u___b___s.html#gad99b4c1d18e5981c75895a2578765c55":[3,1,1,5,2], +"group___m_h_u___b___s.html#structmhu__b__s__instance__ctrl__t":[3,1,1,5,0], +"group___m_h_u___n_s.html":[3,1,1,6], +"group___m_h_u___n_s.html#a1ee2e9cadf1df4a9e3803a139c910f9a":[3,1,1,6,0,1], +"group___m_h_u___n_s.html#a61e5f2158fbbd11d05252a83571927dd":[3,1,1,6,0,2], +"group___m_h_u___n_s.html#aa08a8ce470c0b9e6e561b50e40fc0cb7":[3,1,1,6,0,0], +"group___m_h_u___n_s.html#aa4455658de7b85e233e61bfee994a130":[3,1,1,6,0,5], +"group___m_h_u___n_s.html#ad5bfc684776aa1244294eae3b1363f93":[3,1,1,6,0,3], +"group___m_h_u___n_s.html#ae91cb79beb29ca1cb2aa807962dc988e":[3,1,1,6,0,4], +"group___m_h_u___n_s.html#af5fdb525ff4a77b4cddb17d066e8c246":[3,1,1,6,0,6], +"group___m_h_u___n_s.html#ga13943d092624696482858ac43db16ac5":[3,1,1,6,4], +"group___m_h_u___n_s.html#ga1a325703fa61f7fff4e762b092cef2ad":[3,1,1,6,5], +"group___m_h_u___n_s.html#ga38a24972860d1453ec85d28970d3eca4":[3,1,1,6,1], +"group___m_h_u___n_s.html#ga40504624dee60aaebfb8710b91483930":[3,1,1,6,3], +"group___m_h_u___n_s.html#gae5992c9313b0a0de777234abca176aaf":[3,1,1,6,2], +"group___m_h_u___n_s.html#structmhu__ns__instance__ctrl__t":[3,1,1,6,0], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html":[3,1,1,7], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#a5ba254765d8e48946ae9b95ff7645fb3":[3,1,1,7,0,0], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#aa0f0b0ca2034ddc5dbe9d143f1389799":[3,1,1,7,0,2], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ac3fa10e51c1700db408b9e2febca0c45":[3,1,1,7,0,1], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ace404a079830f35bbd0c8338b94da292":[3,1,1,7,0,3], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga0d89407bf3cb2dbc8d34e7a1f8dc1820":[3,1,1,7,4], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga3015e5dbd9204be24c79c0a69510e7ee":[3,1,1,7,1], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga81d3b1a8847d43fbd10ee226377bb309":[3,1,1,7,3], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#gaaf04bfeb26451f6fc7da14fe1825e705":[3,1,1,7,2], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#structmhu__ns__swint__get__instance__ctrl__t":[3,1,1,7,0], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html":[3,2,10], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a0485d0bdeaa7786fa0a1059fa2b17172":[3,2,10,1,1], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a13087ad031ff2d00bf58b47538a7d91a":[3,2,10,3,1], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a28544f4e5e43a96c4bb2cb7fe4879fcd":[3,2,10,1,0], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a2b7fe6de692d763e2ed654f7cb34976e":[3,2,10,1,2], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a713e559aa5c0cb0309b7650a91391264":[3,2,10,3,2], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a7e503fe06a35c9645b5081bbfa0179ce":[3,2,10,1,3], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a94dc2c05c8c387042d23a95b08a2f760":[3,2,10,2,0], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a9613c5884f49c02ae6aa41b09a999bc0":[3,2,10,0,1], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ab94275a9966c5a59c8bc8a06cbb2647c":[3,2,10,1,4], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ac3fe2eadbd870c342ddda1aaef641568":[3,2,10,0,0], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#af7a697adf7a1b68f31c055c8f2fe0836":[3,2,10,3,0], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#af92e9fdbc56bd0c806ef58a4b69e86db":[3,2,10,2,2], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#afca2a6032121c770e1bd8a07db1c062a":[3,2,10,2,1], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ga22364d066f195eb04e841c0e1d4147f1":[3,2,10,4], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__api__t":[3,2,10,2], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__callback__args__t":[3,2,10,0], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__cfg__t":[3,2,10,1], +"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__instance__t":[3,2,10,3], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html":[3,1,1,8], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#a2c2dcafbf0c66a844564cf48c5486f3f":[3,1,1,8,0,1], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#a8d75e2e88164656cab2e3b921a1568e4":[3,1,1,8,0,2], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#ad84054d463ebb6b159ff2ce6c70bd908":[3,1,1,8,0,3], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#af4778eb4d67e116a2743c2212d263637":[3,1,1,8,0,0], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#ga192b92d34e30e2170c6fa7002589db8e":[3,1,1,8,2], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#gaa38f2de3d81a051565c900098d904543":[3,1,1,8,1], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#gaccf0e3ebba04709c5fa1818c6b9bff31":[3,1,1,8,3], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#structmhu__ns__swint__set__instance__ctrl__t":[3,1,1,8,0], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html":[3,2,11], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a43558a76b254d006a32b55d251341171":[3,2,11,0,0], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a451a6c711c6a8ea92bd71bcc0ee418b8":[3,2,11,2,0], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a4a58ec04b7950333b9de087d35219991":[3,2,11,3,1], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a572d5e4e24cf7fffbcf39a137f4fd176":[3,2,11,2,2], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a6a3e82bf49e890836b3b4d71e7c31e8a":[3,2,11,2,1], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a7d3d94f9b3b9162cc59931ac56c36a73":[3,2,11,1,1], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a8f8ecb7c58b29ead3b75fc071a965175":[3,2,11,0,1], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a911cd4a50f86d1e71e566889625bc77d":[3,2,11,1,0], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#ab88ce5c4258642652c78ac702a56d15f":[3,2,11,3,2], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#ad486d0fcb0595022f8d9dfcd9860e06f":[3,2,11,3,0], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#gafb79b34149ed743c1378fc3b74ab3287":[3,2,11,4], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__api__t":[3,2,11,2], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__callback__args__t":[3,2,11,0], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__cfg__t":[3,2,11,1], +"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__instance__t":[3,2,11,3], +"group___m_h_u___s.html":[3,1,1,9], +"group___m_h_u___s.html#a1304f9353f2506daf66e4d6612fbb158":[3,1,1,9,0,0], +"group___m_h_u___s.html#a397d3be13f6769fe0add08595aa197e2":[3,1,1,9,0,5], +"group___m_h_u___s.html#a3d2e07d0382637914e5a1ff73d8135ca":[3,1,1,9,0,3], +"group___m_h_u___s.html#a4c3b32cb29fa8cc15747360380fa4e82":[3,1,1,9,0,4], +"group___m_h_u___s.html#a721510fae53319c0919a0114969aad51":[3,1,1,9,0,1], +"group___m_h_u___s.html#a74b1dc369c621b29c80cfec96a0189a2":[3,1,1,9,0,6], +"group___m_h_u___s.html#af745bc664f80d4fd4cf848e357801eca":[3,1,1,9,0,2], +"group___m_h_u___s.html#ga7b8e03e44542ae70f5b20e37e058fdd6":[3,1,1,9,4], +"group___m_h_u___s.html#gaaaee4d1fe5df68815f36021a1daefe46":[3,1,1,9,3], +"group___m_h_u___s.html#gabb304fbb568e37940fe39bec2fb6a1af":[3,1,1,9,5], +"group___m_h_u___s.html#gace961f8d144fe82cf739f96762a681a3":[3,1,1,9,2], +"group___m_h_u___s.html#gad777d9161d5147e0eb546d107cf64259":[3,1,1,9,1], +"group___m_h_u___s.html#structmhu__s__instance__ctrl__t":[3,1,1,9,0], +"group___m_t_u3.html":[3,1,8,3], +"group___m_t_u3.html#a032a2421eaa21dbc376ce103e7757068":[3,1,8,3,3,5], +"group___m_t_u3.html#a0985147b6d048419a186f194f670f606":[3,1,8,3,1,7], +"group___m_t_u3.html#a1424b0f596d7101a897b5de751c06239":[3,1,8,3,1,6], +"group___m_t_u3.html#a1f1b1918442a0305e70d102cb636e09d":[3,1,8,3,3,6], +"group___m_t_u3.html#a216df4f3be3012f4f458c09d97f6593b":[3,1,8,3,2,4], +"group___m_t_u3.html#a21d61adfb4e1a493557d264d94ebef26":[3,1,8,3,2,7], +"group___m_t_u3.html#a2a34e1c4ab61754e34a02e7ee80c6073":[3,1,8,3,0,0], +"group___m_t_u3.html#a3f5bfdfa30fd7e9c0d2d9ea355536d12":[3,1,8,3,1,0], +"group___m_t_u3.html#a46541e7560d30dbc680639d6ef4f5804":[3,1,8,3,2,3], +"group___m_t_u3.html#a4ad3258449aecadc5d9d96f7b4325cde":[3,1,8,3,1,8], +"group___m_t_u3.html#a4af7341566a2e88e2be9c7368e095ea5":[3,1,8,3,1,2], +"group___m_t_u3.html#a55b86cba3e5d0552f18ffbe4db8bd8ac":[3,1,8,3,0,1], +"group___m_t_u3.html#a566d52f760c761f105831fae2c2f5125":[3,1,8,3,3,10], +"group___m_t_u3.html#a5810e1f6e5c5f08974d4c0e119bc6d6f":[3,1,8,3,1,5], +"group___m_t_u3.html#a6952d44a04c939335d8ab1521dc6c4b4":[3,1,8,3,2,9], +"group___m_t_u3.html#a71064db80d5848f56c23c5c5d56acc8a":[3,1,8,3,2,5], +"group___m_t_u3.html#a7adfe2a0b7737f00e2fcf92e1eb3bd90":[3,1,8,3,2,1], +"group___m_t_u3.html#a810012402bce96404cd96fd456c5754b":[3,1,8,3,2,2], +"group___m_t_u3.html#a88e05f92f9226183d8fe7bcdc5f777c6":[3,1,8,3,3,11], +"group___m_t_u3.html#aa2aaf02a71503c209b558836a992d768":[3,1,8,3,2,0], +"group___m_t_u3.html#ab44e73386d7b2fe1ad3315b5655022e6":[3,1,8,3,1,1], +"group___m_t_u3.html#ab867c5de83802ed0b964c23e776b3702":[3,1,8,3,1,3], +"group___m_t_u3.html#abdb95c4611476cb60d46326fc0a79f8d":[3,1,8,3,1,4], +"group___m_t_u3.html#ac3d8f53d47a3063cf48b374411182243":[3,1,8,3,3,7], +"group___m_t_u3.html#ac5bc8f09109ce78912076db7b22ed9f5":[3,1,8,3,3,3], +"group___m_t_u3.html#acc26191a7a28828c0c7f4ee1792d1506":[3,1,8,3,2,8], +"group___m_t_u3.html#ad0bcb4a5a415f6c5f3d0db6557f5ec3d":[3,1,8,3,3,4], +"group___m_t_u3.html#ae357d03fb305808acc1a5f971e9ae205":[3,1,8,3,3,8], +"group___m_t_u3.html#aedd3dc71ec5728ef54295740297f16f7":[3,1,8,3,3,9], +"group___m_t_u3.html#af23edbc49f7268ad12e61a783bbbf951":[3,1,8,3,3,2], +"group___m_t_u3.html#af508e14be5476f219620a30f14531871":[3,1,8,3,3,0], +"group___m_t_u3.html#af5d77f5eb4fd6e742f4a5e79b5665c04":[3,1,8,3,2,6], +"group___m_t_u3.html#af66a345b2403fb4b16c0c69babd6f96e":[3,1,8,3,3,1], +"group___m_t_u3.html#aff82059debc7b813205be81de5f350c5":[3,1,8,3,3,12], +"group___m_t_u3.html#ga000c28bcf923d3ccd0642c3c5dd9a794":[3,1,8,3,10], +"group___m_t_u3.html#ga031ed640883cba19cb1243d46ea54709":[3,1,8,3,7], +"group___m_t_u3.html#ga0c1fcecad7205ef9928305c960c7e494":[3,1,8,3,23], +"group___m_t_u3.html#ga0d64e832230506418738a816a38489e4":[3,1,8,3,21], +"group___m_t_u3.html#ga0ee0beb7bd1f1773916b0c633454fe0b":[3,1,8,3,17], +"group___m_t_u3.html#ga37213c6f09b8122f3950a5a8a83adc34":[3,1,8,3,27], +"group___m_t_u3.html#ga396b95f942eed8fd222c67e5bfd22800":[3,1,8,3,18], +"group___m_t_u3.html#ga3ad32e2d3e0cebb7645750d6c0a8f692":[3,1,8,3,14], +"group___m_t_u3.html#ga3e16434800b5d897208039f3398acf84":[3,1,8,3,30], +"group___m_t_u3.html#ga41121fd0c747ec6e3ba93bcc94a73bdd":[3,1,8,3,15], +"group___m_t_u3.html#ga4a8786cd182fb52e974c1214c2de627a":[3,1,8,3,4], +"group___m_t_u3.html#ga4ec0ad4f10536b74374b75f2ca46f527":[3,1,8,3,31], +"group___m_t_u3.html#ga57aa8e231848fe1eb00775bd722418ee":[3,1,8,3,19], +"group___m_t_u3.html#ga5a740d5042e7efdf698259f1a4b98ece":[3,1,8,3,26], +"group___m_t_u3.html#ga5e4eda78ae4a5cb31e85eb682d6fe248":[3,1,8,3,22], +"group___m_t_u3.html#ga6ce62ddb141bf440c0539fc47512c586":[3,1,8,3,9], +"group___m_t_u3.html#ga7be983a26523a21e6eec4ed02b3d0902":[3,1,8,3,28], +"group___m_t_u3.html#ga7e7928e4452d8a06a86269dcabc3a485":[3,1,8,3,12], +"group___m_t_u3.html#ga8a74b8a0003ccd7602df801eb863a4ce":[3,1,8,3,8], +"group___m_t_u3.html#ga8cddfd80a2cfb39a4c69703c8e672368":[3,1,8,3,25], +"group___m_t_u3.html#ga8d63ef78e4ad3838c53bc5683d6d3485":[3,1,8,3,16], +"group___m_t_u3.html#ga8e02f073acf66a66ef6e525c8b57454e":[3,1,8,3,24], +"group___m_t_u3.html#ga9a9eea39b2f02b777dba8d344dc8eb3b":[3,1,8,3,6], +"group___m_t_u3.html#gaa9f9735282373eede4951043c95c2312":[3,1,8,3,13], +"group___m_t_u3.html#gab23024474f1c7bb662f4f9dfc091d85c":[3,1,8,3,20], +"group___m_t_u3.html#gab8b9c7b84a459fabd5449e83db526ee1":[3,1,8,3,29], +"group___m_t_u3.html#gac04b193c244956523c5c5f0d70b29af5":[3,1,8,3,11], +"group___m_t_u3.html#gace590734aa53fc0116c411decc0142d2":[3,1,8,3,32], +"group___m_t_u3.html#gaef0d6e7f5f99c9142dea22471d60df36":[3,1,8,3,5], +"group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794a088e0050227671eab214afc2c02d0697":[3,1,8,3,10,1], +"group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794a0f3d2d63639430864b7935de79fc899c":[3,1,8,3,10,4], +"group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794a586cffe1579c0f2244357ce55ee0f21b":[3,1,8,3,10,2], +"group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794af347277f21b1a43eac30d8eb1b895c12":[3,1,8,3,10,3], +"group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794afcd6a47a8930c33f033e099d8336a127":[3,1,8,3,10,0], +"group___m_t_u3.html#gga031ed640883cba19cb1243d46ea54709a546e3a5b2cac7873b10c4eb914cb0ba1":[3,1,8,3,7,1], +"group___m_t_u3.html#gga031ed640883cba19cb1243d46ea54709a7ab7fef8e1167140423f0d3bd325853b":[3,1,8,3,7,2], +"group___m_t_u3.html#gga031ed640883cba19cb1243d46ea54709aeeef3908d66e9cc2ea6545d98aa52ce0":[3,1,8,3,7,0], +"group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a124774c9b768380d6fdc6355a670cc9e":[3,1,8,3,14,5], +"group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a5cd89c876da9eacd4fb26083e54d0d2f":[3,1,8,3,14,6], +"group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a669abe23b86af53bff6aee3883ced7ca":[3,1,8,3,14,0], +"group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a967dfd369ac7f512c7523058aeb9d958":[3,1,8,3,14,2], +"group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a9fa7dcb45ab1dea49a6f54c99fc8a7f7":[3,1,8,3,14,7], +"group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692aaa21c802db8257f48d08dd7983a06495":[3,1,8,3,14,4], +"group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692aeb4e2a88b51b85e79a97bd36f1d4603e":[3,1,8,3,14,1], +"group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692affae7913c291ab2b45f5975dd245d46e":[3,1,8,3,14,3], +"group___m_t_u3.html#gga41121fd0c747ec6e3ba93bcc94a73bddaae499e3fe16a915b8baf1ffe81e2bcaf":[3,1,8,3,15,1], +"group___m_t_u3.html#gga41121fd0c747ec6e3ba93bcc94a73bddacd70ef6a0cddbebba7480ce8b801b531":[3,1,8,3,15,0], +"group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa0584b3bcc6c6623299cd6e8364f6dc69":[3,1,8,3,4,1] }; diff --git a/navtreeindex9.js b/navtreeindex9.js index d5db374..33fccd8 100644 --- a/navtreeindex9.js +++ b/navtreeindex9.js @@ -1,136 +1,253 @@ var NAVTREEINDEX9 = { -"group___t_r_a_n_s_f_e_r___a_p_i.html#a12d4ba0d43dd22fda6b1b238d2fa17b6":[3,2,10,4,2], -"group___t_r_a_n_s_f_e_r___a_p_i.html#a176dc2f3d1edfc321fa248a7e4c3b549":[3,2,10,1,1], -"group___t_r_a_n_s_f_e_r___a_p_i.html#a1e38b8ef4e4fa3e59efb257102e72b72":[3,2,10,3,1], -"group___t_r_a_n_s_f_e_r___a_p_i.html#a3188207ba386da0ec85946e134b4327a":[3,2,10,3,4], -"group___t_r_a_n_s_f_e_r___a_p_i.html#a394ddea028013153254bafa12115dce2":[3,2,10,3,5], -"group___t_r_a_n_s_f_e_r___a_p_i.html#a655547e7bbc2c8be77ac085f3417a389":[3,2,10,4,0], -"group___t_r_a_n_s_f_e_r___a_p_i.html#a77207de2ae81eab58858fd28ae88df06":[3,2,10,3,6], -"group___t_r_a_n_s_f_e_r___a_p_i.html#a7dcf4353ecf5e5df7024e1a3d5db7c09":[3,2,10,2,1], -"group___t_r_a_n_s_f_e_r___a_p_i.html#a7fd4d96709c77a309492d13fd43fd048":[3,2,10,3,3], -"group___t_r_a_n_s_f_e_r___a_p_i.html#a84d48960cdfe867ef54fd4635a85ceeb":[3,2,10,3,0], -"group___t_r_a_n_s_f_e_r___a_p_i.html#a8ffd253e9be22795d2736d6dc683d710":[3,2,10,4,1], -"group___t_r_a_n_s_f_e_r___a_p_i.html#a9781e58bb7cb2ee40de446936d523814":[3,2,10,1,2], -"group___t_r_a_n_s_f_e_r___a_p_i.html#a9c096c8d0e78dfbf8b3809a4598b8619":[3,2,10,3,2], -"group___t_r_a_n_s_f_e_r___a_p_i.html#aa92c5d06d07e7d13c16f9704a431c7cb":[3,2,10,1,3], -"group___t_r_a_n_s_f_e_r___a_p_i.html#aaa2d7970aa8501e9d3929c7bdf05d357":[3,2,10,0,1], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ab480a287279e160d73f60173605485ca":[3,2,10,0,0], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ad18824ffdf72b5e6a0c588289620fc84":[3,2,10,3,7], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ad264d20a1b0afc0100c2e3b1d5a1a1c8":[3,2,10,1,0], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ade5973e7a8e994f9146e0db84bee8bf4":[3,2,10,3,8], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ae8ae839a9fa2fea09d9390e11b2edd9c":[3,2,10,0,2], -"group___t_r_a_n_s_f_e_r___a_p_i.html#af99b114594ac2d55aae0c9e11f703164":[3,2,10,2,0], -"group___t_r_a_n_s_f_e_r___a_p_i.html#afd44a3b34e332d28d7573865c58b00df":[3,2,10,0,3], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ga11917a0ab2cb8b878937c97691b07fd9":[3,2,10,12], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ga665f80fc984ccf7585606be8eeccbb98":[3,2,10,5], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ga68f81dc8b9ca46fbe3a1e556c020436d":[3,2,10,10], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12":[3,2,10,7], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ga769464d2068881ccb44573c96167812b":[3,2,10,9], -"group___t_r_a_n_s_f_e_r___a_p_i.html#gad71bdadb7f486bb5d3ca6ff508dc0b08":[3,2,10,11], -"group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51":[3,2,10,8], -"group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992f":[3,2,10,6], -"group___t_r_a_n_s_f_e_r___a_p_i.html#gga11917a0ab2cb8b878937c97691b07fd9aa9b89e5adf9e24c9203f9fdf6c6aa331":[3,2,10,12,1], -"group___t_r_a_n_s_f_e_r___a_p_i.html#gga11917a0ab2cb8b878937c97691b07fd9aca210983d734307a694af55fbf11ed7e":[3,2,10,12,0], -"group___t_r_a_n_s_f_e_r___a_p_i.html#gga68f81dc8b9ca46fbe3a1e556c020436dab853bdecc90c476b995644c273e0ee75":[3,2,10,10,2], -"group___t_r_a_n_s_f_e_r___a_p_i.html#gga68f81dc8b9ca46fbe3a1e556c020436dadab837d29a543149d35ed2fd28d8e4e8":[3,2,10,10,1], -"group___t_r_a_n_s_f_e_r___a_p_i.html#gga68f81dc8b9ca46fbe3a1e556c020436dae974453c306b4959252905e362d75067":[3,2,10,10,0], -"group___t_r_a_n_s_f_e_r___a_p_i.html#gga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412":[3,2,10,7,2], -"group___t_r_a_n_s_f_e_r___a_p_i.html#gga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f":[3,2,10,7,1], -"group___t_r_a_n_s_f_e_r___a_p_i.html#gga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21":[3,2,10,7,0], -"group___t_r_a_n_s_f_e_r___a_p_i.html#gga769464d2068881ccb44573c96167812ba2002ef7bbc49f7c9ebfac1618ba3c391":[3,2,10,9,1], -"group___t_r_a_n_s_f_e_r___a_p_i.html#gga769464d2068881ccb44573c96167812ba77aeeab30b003de23742e40a57f19239":[3,2,10,9,0], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ggad71bdadb7f486bb5d3ca6ff508dc0b08a0929782b61686db69e12b3cb18175b35":[3,2,10,11,1], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ggad71bdadb7f486bb5d3ca6ff508dc0b08ada378ad830e44cc0c25d4fe2413e11de":[3,2,10,11,0], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51a56a87e1587844119831414f3d5e6d761":[3,2,10,8,3], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad":[3,2,10,8,2], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51ab8b3f8ce28fb6f7a57a1b87db0d612c2":[3,2,10,8,1], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47":[3,2,10,8,0], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ggadfb7c2a6a73bfdf993e50505aa92992fa607c41bfd08797c08a5ee9bd4dfb9c8b":[3,2,10,6,1], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ggadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55":[3,2,10,6,2], -"group___t_r_a_n_s_f_e_r___a_p_i.html#ggadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d":[3,2,10,6,0], -"group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__api__t":[3,2,10,3], -"group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__cfg__t":[3,2,10,2], -"group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__info__t":[3,2,10,1], -"group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__instance__t":[3,2,10,4], -"group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__properties__t":[3,2,10,0], -"group___u_a_r_t___a_p_i.html":[3,2,11], -"group___u_a_r_t___a_p_i.html#a07af9be02a70a457bc4d5207c77e3bee":[3,2,11,4,1], -"group___u_a_r_t___a_p_i.html#a07bd6b0ef728681a3abee96ada2ea79d":[3,2,11,2,2], -"group___u_a_r_t___a_p_i.html#a0f61af63801e663a8401a9af9c890522":[3,2,11,0,0], -"group___u_a_r_t___a_p_i.html#a14a3cdcd373af5dfc69a30206276a44f":[3,2,11,2,5], -"group___u_a_r_t___a_p_i.html#a2ef1ef69636aec9cbfbac44db4a67db6":[3,2,11,2,15], -"group___u_a_r_t___a_p_i.html#a37d3e833ad3e9a21467936db2a22e27d":[3,2,11,2,4], -"group___u_a_r_t___a_p_i.html#a3cc235c856acbf3100cc0557a2953510":[3,2,11,2,10], -"group___u_a_r_t___a_p_i.html#a465fe0c740b4c6f289956849180e2621":[3,2,11,2,12], -"group___u_a_r_t___a_p_i.html#a4e7e47514702ff0e3515280590dd9659":[3,2,11,3,7], -"group___u_a_r_t___a_p_i.html#a51b74df27fb26e85700d9524cdfc7c01":[3,2,11,3,6], -"group___u_a_r_t___a_p_i.html#a52fad103c0d9a1cc38510e74f7f1c198":[3,2,11,2,9], -"group___u_a_r_t___a_p_i.html#a558f63e26549462cf3a893ed73fd26ad":[3,2,11,1,1], -"group___u_a_r_t___a_p_i.html#a5cd3c3cd9abff685e954033d13e82bd2":[3,2,11,0,1], -"group___u_a_r_t___a_p_i.html#a60b6abd0d74f5305fda32373371d8b3a":[3,2,11,2,13], -"group___u_a_r_t___a_p_i.html#a6442033274bd3402ab162947f5a22784":[3,2,11,2,11], -"group___u_a_r_t___a_p_i.html#a75ba1611c4bba17f25f1957348991829":[3,2,11,3,1], -"group___u_a_r_t___a_p_i.html#a79df568ef30629847da05d9b073f1602":[3,2,11,2,7], -"group___u_a_r_t___a_p_i.html#a828d44762a5e4d11aead4d811a1c5c70":[3,2,11,1,2], -"group___u_a_r_t___a_p_i.html#a83efd5806d31817983f75bab4d415c87":[3,2,11,2,14], -"group___u_a_r_t___a_p_i.html#a8b0f901bcc26bd6836fe620235585f98":[3,2,11,3,3], -"group___u_a_r_t___a_p_i.html#a8f5b1d9fc38fbb83007d904b814bf66b":[3,2,11,2,0], -"group___u_a_r_t___a_p_i.html#a962363eebf6d497894b5ca569ebb87bb":[3,2,11,3,0], -"group___u_a_r_t___a_p_i.html#a9a87e8764518ac3268cf1c9df3b6aad3":[3,2,11,3,2], -"group___u_a_r_t___a_p_i.html#aa6d5231c2b45a6479fc513d087924a50":[3,2,11,3,4], -"group___u_a_r_t___a_p_i.html#ab5d2042b5bedd324dea60d379ff4140a":[3,2,11,2,3], -"group___u_a_r_t___a_p_i.html#ab93490806d8ebfbe84a8d2e9def3a138":[3,2,11,2,6], -"group___u_a_r_t___a_p_i.html#ace2b32a59ca156c32cee5860fb5db311":[3,2,11,4,2], -"group___u_a_r_t___a_p_i.html#aceec311122c92321f879530c32fc0e00":[3,2,11,2,8], -"group___u_a_r_t___a_p_i.html#acf60bc172eb7d382b406364f64b928f6":[3,2,11,1,0], -"group___u_a_r_t___a_p_i.html#adb701292c23e393a8152e57da1cc6cb3":[3,2,11,2,1], -"group___u_a_r_t___a_p_i.html#ae01cedb63e8739651eb14d0ccc9b54a4":[3,2,11,4,0], -"group___u_a_r_t___a_p_i.html#af0950404b4fc6329f9d6f7802b850531":[3,2,11,2,16], -"group___u_a_r_t___a_p_i.html#af39b34ea2c03d20876045cbe6cba70a7":[3,2,11,1,3], -"group___u_a_r_t___a_p_i.html#af4aeab25d6aa83e0d47307043c053d11":[3,2,11,3,5], -"group___u_a_r_t___a_p_i.html#ga6bcc37e31dd40c204b4ac6f6189e8878":[3,2,11,8], -"group___u_a_r_t___a_p_i.html#ga6da57a73bbdbf830b845d4116f8341d7":[3,2,11,9], -"group___u_a_r_t___a_p_i.html#gac36c5a0dffa37b418fb9425a76c57740":[3,2,11,10], -"group___u_a_r_t___a_p_i.html#gad04bd656a84140eaef1e8aa0f86564a8":[3,2,11,5], -"group___u_a_r_t___a_p_i.html#gadc68b8fd9ded3990f84129df23fee798":[3,2,11,7], -"group___u_a_r_t___a_p_i.html#gaf739f04f788018b4b59fb7ad75da0a8d":[3,2,11,6], -"group___u_a_r_t___a_p_i.html#gga6bcc37e31dd40c204b4ac6f6189e8878acdbc0c60cf74e4febad92afc44b88641":[3,2,11,8,0], -"group___u_a_r_t___a_p_i.html#gga6bcc37e31dd40c204b4ac6f6189e8878ad908a637b1dd23f93b149dd2d8bdfdb8":[3,2,11,8,1], -"group___u_a_r_t___a_p_i.html#gga6bcc37e31dd40c204b4ac6f6189e8878ad90cc425f5ba447773a44a75be6593e2":[3,2,11,8,2], -"group___u_a_r_t___a_p_i.html#gga6da57a73bbdbf830b845d4116f8341d7a00c73c92b3d624bc86cfa63636dd99b3":[3,2,11,9,1], -"group___u_a_r_t___a_p_i.html#gga6da57a73bbdbf830b845d4116f8341d7a44b3bfbe90aebe2b23227f5c011f41cc":[3,2,11,9,0], -"group___u_a_r_t___a_p_i.html#ggac36c5a0dffa37b418fb9425a76c57740a01ae18be82be0fa74527fe8f23499895":[3,2,11,10,1], -"group___u_a_r_t___a_p_i.html#ggac36c5a0dffa37b418fb9425a76c57740a915c39567f2bb1393e506373749767e1":[3,2,11,10,2], -"group___u_a_r_t___a_p_i.html#ggac36c5a0dffa37b418fb9425a76c57740a91dcd653bcf1b052bd7bd9ee7210ad83":[3,2,11,10,0], -"group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798a317e473e32315f1632829d176fbfd545":[3,2,11,7,1], -"group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798a57a012c58e476a76ed8f54db28d94810":[3,2,11,7,2], -"group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798ad768185f3773e2d5953b28f3345561db":[3,2,11,7,0], -"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da03e2fd44218712f18f3cceb0a0ad7442":[3,2,11,6,7], -"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da089ae47ff2f451fdc369c8d04c50c8ea":[3,2,11,6,6], -"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da2ea6d7a4ff18bf123facf225a6954329":[3,2,11,6,3], -"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da56867c1db03ea3ee2c704604ac94b767":[3,2,11,6,1], -"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da794925d1c74f16bde84152508e66a6bd":[3,2,11,6,2], -"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da92ecf40776a80db956fb45b8a5ae02cb":[3,2,11,6,4], -"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8dab21c836f6c9fa84f41fc41a8cf9c2d1e":[3,2,11,6,5], -"group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8dabe2b1428416bd300ee15a2608df30837":[3,2,11,6,0], -"group___u_a_r_t___a_p_i.html#structuart__api__t":[3,2,11,3], -"group___u_a_r_t___a_p_i.html#structuart__callback__args__t":[3,2,11,1], -"group___u_a_r_t___a_p_i.html#structuart__cfg__t":[3,2,11,2], -"group___u_a_r_t___a_p_i.html#structuart__info__t":[3,2,11,0], -"group___u_a_r_t___a_p_i.html#structuart__instance__t":[3,2,11,4], -"index.html":[0], -"index.html":[], -"index.html#build-time-configurations":[0,3,4], -"index.html#documentation-standard":[0,2], -"index.html#e2-studio-ide":[0,3,5], -"index.html#ease-of-use-fsp":[0,3,2], -"index.html#how-to-read":[0,1], -"index.html#introduction-overview":[0,0], -"index.html#introduction-to-fsp":[0,3], -"index.html#purpose-fsp":[0,3,0], -"index.html#quality-fsp":[0,3,1], -"index.html#scalability":[0,3,3], -"modules.html":[3], -"pages.html":[] +"group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa0b50c080f4d0da8eaebb4f8fbdcaffa4":[3,1,8,3,4,2], +"group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa4163d703b041fe158960693cf722147b":[3,1,8,3,4,4], +"group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa61e5eccf44d43e36ee349a9ef52ab2fe":[3,1,8,3,4,0], +"group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa906726a828affd3ced2153afcad5c560":[3,1,8,3,4,6], +"group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa9e8afa21b22ec2819a98e61c008826c6":[3,1,8,3,4,3], +"group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aac1d4f7271562936841736a3ade4363ea":[3,1,8,3,4,7], +"group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aaca2a023c3381cefc724b746cb8661b68":[3,1,8,3,4,8], +"group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aad21bb53ae71711700a34ed9f7c8734eb":[3,1,8,3,4,5], +"group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aafc54fef0ded76646e75e0c5843ee1e62":[3,1,8,3,4,9], +"group___m_t_u3.html#gga6ce62ddb141bf440c0539fc47512c586a99ecb4bf189434da6ef15bf58a73e665":[3,1,8,3,9,1], +"group___m_t_u3.html#gga6ce62ddb141bf440c0539fc47512c586ab0e36e5481656608bcca54312a3bbb37":[3,1,8,3,9,2], +"group___m_t_u3.html#gga6ce62ddb141bf440c0539fc47512c586aef6de8ca9710e328d82501ba5ffcbf9d":[3,1,8,3,9,0], +"group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485a0d8588e4c98d3691d6201d4de347099f":[3,1,8,3,12,3], +"group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485a6e40db422538cdf8cde1c540eb311e66":[3,1,8,3,12,0], +"group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485a7881f227aeeede564739112e79c90aca":[3,1,8,3,12,1], +"group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485ad0776747373fdfca5f20758766b97321":[3,1,8,3,12,2], +"group___m_t_u3.html#gga8a74b8a0003ccd7602df801eb863a4cea6579c2e2017ea2d1a473d06d6554d528":[3,1,8,3,8,2], +"group___m_t_u3.html#gga8a74b8a0003ccd7602df801eb863a4ceacd3adaab6bac29b0b63bd9c6a156c028":[3,1,8,3,8,1], +"group___m_t_u3.html#gga8a74b8a0003ccd7602df801eb863a4ceaf069a55c34b8d9ef53ad57dc014259bc":[3,1,8,3,8,0], +"group___m_t_u3.html#gga8d63ef78e4ad3838c53bc5683d6d3485a8e34a4cdb9bc2d8eb2c8228049285a4e":[3,1,8,3,16,1], +"group___m_t_u3.html#gga8d63ef78e4ad3838c53bc5683d6d3485ac41b3f08145ec498d6b5df97de3ea77f":[3,1,8,3,16,0], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba04bcba9332e29629ee8615298355d069":[3,1,8,3,6,23], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba0e32af4cc5c42c1f7951fd6ef3113a13":[3,1,8,3,6,17], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba1c2ede9d17050523d97a2e03975cc83e":[3,1,8,3,6,4], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba1f0f14e4639e2f615f01246baad8009a":[3,1,8,3,6,6], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba2515d8c539b465cdfc9b73429cf38105":[3,1,8,3,6,24], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba375a978b7228e8bfc55527c82b167669":[3,1,8,3,6,10], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba3a726180c0e0c51f1057c6d143891abe":[3,1,8,3,6,15], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba407f297d4853f8d0e8364cb3aabab04d":[3,1,8,3,6,16], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba4f65b02bc6d926659bed0d2321f1886d":[3,1,8,3,6,11], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba5700159b9400663b6f120540720cdf16":[3,1,8,3,6,25], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba5d95ba198fd3bb9a1d7a0cf5275fde7e":[3,1,8,3,6,22], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba5e74e73b437531bd05b4f537cf72231d":[3,1,8,3,6,8], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba62f2036a3e569253e5374c1ccc03cc4f":[3,1,8,3,6,2], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba66f56ded610017e021f65fe657ebcca8":[3,1,8,3,6,1], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba701bed0b83349f72da65617d5530d640":[3,1,8,3,6,5], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba7f8a017ef1a628f2a12d36747628ac4a":[3,1,8,3,6,3], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba91170275703436b2b4a331bdc7e7dd28":[3,1,8,3,6,26], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab04764ab43d2f0270af4f6adc1d51cf2":[3,1,8,3,6,7], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab17376b3b14504a2a296b53b1723938b":[3,1,8,3,6,9], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab5252c159c1697999ee622504bff5b8a":[3,1,8,3,6,19], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab6865991c1903e6ebb1df94294ca86a1":[3,1,8,3,6,27], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bacc4faaf9336db93e0be2b783b484d3e0":[3,1,8,3,6,20], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bad2f9be0d2ce8a82284f34f4ec98b94ac":[3,1,8,3,6,14], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bae115e32bcce74086cfde1ad2f39c43f7":[3,1,8,3,6,12], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bae76246ad6dd264b3ab4a09ce9e95b9ee":[3,1,8,3,6,13], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bae874f2689e6f1c19c30b0f8f7babc6fc":[3,1,8,3,6,0], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3baea32e309ae09841686be347670eb2dbd":[3,1,8,3,6,21], +"group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3baefe9f7918f14abdff93d9f72cd599ee7":[3,1,8,3,6,18], +"group___m_t_u3.html#ggaa9f9735282373eede4951043c95c2312ad50979af2f5e0cf1d9751f936709991a":[3,1,8,3,13,1], +"group___m_t_u3.html#ggaa9f9735282373eede4951043c95c2312af504f08d77384dae2d0be021caa9dc92":[3,1,8,3,13,0], +"group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a11075c2cee823cec78ea4f68865c1daa":[3,1,8,3,11,1], +"group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a12a3b47c245a69650ec7ef8f4684b203":[3,1,8,3,11,0], +"group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a2c555ce0b8db45b21c04b431c34d154b":[3,1,8,3,11,3], +"group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a6f8cd3a55abb64cdb1fe6e9486f16c52":[3,1,8,3,11,2], +"group___m_t_u3.html#ggaef0d6e7f5f99c9142dea22471d60df36a2813c691ad28795563c78ee270fe760a":[3,1,8,3,5,2], +"group___m_t_u3.html#ggaef0d6e7f5f99c9142dea22471d60df36aa4a9bd1f72de2c259e18ed59bc547e8a":[3,1,8,3,5,0], +"group___m_t_u3.html#ggaef0d6e7f5f99c9142dea22471d60df36ae165912b6df21de4925f8361d8c630d6":[3,1,8,3,5,1], +"group___m_t_u3.html#structmtu3__extended__cfg__t":[3,1,8,3,3], +"group___m_t_u3.html#structmtu3__extended__pwm__cfg__t":[3,1,8,3,2], +"group___m_t_u3.html#structmtu3__instance__ctrl__t":[3,1,8,3,1], +"group___m_t_u3.html#structmtu3__output__pin__t":[3,1,8,3,0], +"group___p_d_m.html":[3,1,1,10], +"group___p_d_m.html#a0487cbe0537406381bd2395e806e08ac":[3,1,1,10,1,15], +"group___p_d_m.html#a0c16174f6a3b0f80300db586bd8a8ed5":[3,1,1,10,1,11], +"group___p_d_m.html#a1363fd7ad65bd0ed1f0377a70680a5af":[3,1,1,10,1,20], +"group___p_d_m.html#a173087f61b03fcc91f7f3dd2215ae0d5":[3,1,1,10,1,24], +"group___p_d_m.html#a41d1c3d3272bd0eb06a52b46643300e1":[3,1,1,10,1,10], +"group___p_d_m.html#a483ee30b7fc9958318e5563515589463":[3,1,1,10,1,19], +"group___p_d_m.html#a73d4ca013e3c3d061bc3c0c693e12ffa":[3,1,1,10,1,0], +"group___p_d_m.html#a74236150297943f2448c63624550ca8e":[3,1,1,10,1,23], +"group___p_d_m.html#a765c7cf7a108dbfedcca720f616d5a2e":[3,1,1,10,1,12], +"group___p_d_m.html#a7975bdb24b891b930432ddd695312536":[3,1,1,10,1,22], +"group___p_d_m.html#a8301f1ffd1bd3c06615b57cbab9f06cd":[3,1,1,10,1,17], +"group___p_d_m.html#a8a21b70e69c6f770a87ea331311e1f04":[3,1,1,10,1,6], +"group___p_d_m.html#a8ade0b0f232d6b93df9322c969d35588":[3,1,1,10,1,13], +"group___p_d_m.html#a99ccd7247027a766a05b32d0784489d8":[3,1,1,10,1,1], +"group___p_d_m.html#a9cbd930664bb8b7902a78d5dc07ff1b0":[3,1,1,10,1,5], +"group___p_d_m.html#aa316525186852ad3ceb518911c92fd48":[3,1,1,10,1,4], +"group___p_d_m.html#aaa73de553356b3e3fd5e8f7ecfb7ecc5":[3,1,1,10,1,9], +"group___p_d_m.html#ab0fba91eb36c8a90821d4fd7793ba4b9":[3,1,1,10,1,18], +"group___p_d_m.html#ab3d0506ad03a69effde1841833806543":[3,1,1,10,1,14], +"group___p_d_m.html#ab9e18bf68240ab5a3ddf4cc59a1fafb2":[3,1,1,10,1,26], +"group___p_d_m.html#ac67dc74127d1809c2f5831150d313b83":[3,1,1,10,1,3], +"group___p_d_m.html#ada9786751a8901b1f014d50f825692ed":[3,1,1,10,1,7], +"group___p_d_m.html#adf0d5ca09d9fc77bca06739dc943d9a2":[3,1,1,10,1,8], +"group___p_d_m.html#aecb431688082d1f39d7790e087fa4cdc":[3,1,1,10,1,16], +"group___p_d_m.html#af5d7e83eac366ab370978913e0672924":[3,1,1,10,1,21], +"group___p_d_m.html#af817e528f5ff2e362fb4b550d32dc347":[3,1,1,10,1,2], +"group___p_d_m.html#afd360fdbe979a72620ce845f137a4390":[3,1,1,10,1,25], +"group___p_d_m.html#ga0f07fb3bab80af13bd260b7f7f54062e":[3,1,1,10,14], +"group___p_d_m.html#ga10725534d91789f15654a46786339569":[3,1,1,10,7], +"group___p_d_m.html#ga2666e0193f3d484391172283f9532c71":[3,1,1,10,2], +"group___p_d_m.html#ga348be7b997dd1200eb549ff3e7f946a0":[3,1,1,10,9], +"group___p_d_m.html#ga35f2abc47410d9906e8ae5bac12d7a29":[3,1,1,10,11], +"group___p_d_m.html#ga62fc9390544cabfb4800f38125f748ab":[3,1,1,10,12], +"group___p_d_m.html#ga667e7ccab805f0976adc5015ecc35ecb":[3,1,1,10,3], +"group___p_d_m.html#ga745fa70668486ae2a7d16bd72eb93a54":[3,1,1,10,10], +"group___p_d_m.html#gaa14fe788b2c7ab49898fb7030c7fbee8":[3,1,1,10,8], +"group___p_d_m.html#gacaad67afced89e9de93c82536d4dea0b":[3,1,1,10,4], +"group___p_d_m.html#gad6b9c09e74442b86d88d1718f30844bc":[3,1,1,10,5], +"group___p_d_m.html#gaecf26c2d11db2e9700beb41164b8a1fb":[3,1,1,10,15], +"group___p_d_m.html#gaf2a94b0febed706bdad5526b11cb50c1":[3,1,1,10,6], +"group___p_d_m.html#gaf5696a4b5a4e9f33f89baefe9a7e1f94":[3,1,1,10,13], +"group___p_d_m.html#gga10725534d91789f15654a46786339569a2ff3cb58ab5a06c75199c82be7d36e39":[3,1,1,10,7,2], +"group___p_d_m.html#gga10725534d91789f15654a46786339569a3dbb88baf2e552e517cc521917be33f4":[3,1,1,10,7,1], +"group___p_d_m.html#gga10725534d91789f15654a46786339569a4c023e6c0fd378a1efb57bf80297809c":[3,1,1,10,7,3], +"group___p_d_m.html#gga10725534d91789f15654a46786339569af155835da1b4cb3df6766324e5b641c5":[3,1,1,10,7,0], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a045a957540a61e6d165357e660e3fe83":[3,1,1,10,2,5], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a10032f0bd87fc702ba0d0ef6db2f2371":[3,1,1,10,2,15], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a2c5cb536d231f56d0ed006ca29cf0737":[3,1,1,10,2,8], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a3ec822a9c16b6773b5fee81bf37514b7":[3,1,1,10,2,13], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a54c68c8a370a4d7e1a1a1e8c1f88bbf7":[3,1,1,10,2,0], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a6bc7098eb41738d9d95b47732e83f5a1":[3,1,1,10,2,10], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a75233dc7e955467e9ec57d112b8a798f":[3,1,1,10,2,11], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a8bb7b28dcfb9f3f5860897e85becbeda":[3,1,1,10,2,14], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71aa9152eb960ed85321d4deb69838ed45f":[3,1,1,10,2,2], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71aaddbe76456afe39d63fea05b73a91b95":[3,1,1,10,2,7], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71ac173036e4d0c9187705b36bc9ccbe115":[3,1,1,10,2,12], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71ac892e5ea2e5d37f3d7b04a8bf21a0fb1":[3,1,1,10,2,1], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71acae0bbc7c1abd4d0f572c4c468f3c738":[3,1,1,10,2,3], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71acec983b4a1f0f8048e33198a113c34fd":[3,1,1,10,2,9], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71addce245567626c37c31fc74845fbeb31":[3,1,1,10,2,4], +"group___p_d_m.html#gga2666e0193f3d484391172283f9532c71af4822ad9efdcb34b3b627492c8d67791":[3,1,1,10,2,6], +"group___p_d_m.html#gga667e7ccab805f0976adc5015ecc35ecba224f34fe0e01101dddc123bb84485c65":[3,1,1,10,3,1], +"group___p_d_m.html#gga667e7ccab805f0976adc5015ecc35ecba23061ce2fa64f6353fca3b383e431342":[3,1,1,10,3,2], +"group___p_d_m.html#gga667e7ccab805f0976adc5015ecc35ecba6c440f66cd7e5625ca174c6d9c32bbd7":[3,1,1,10,3,0], +"group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8a1b7068a93d97db9482f25f1c5bb89ab4":[3,1,1,10,8,0], +"group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8a5042bd3cf5897af4199e6834fde1e341":[3,1,1,10,8,2], +"group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8a7ae437c0a00a82fb0d1155f2ae28e300":[3,1,1,10,8,1], +"group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8addb15f7e3c60581f90c436ab9eb3055d":[3,1,1,10,8,4], +"group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8addbf54abea07e335a42267a1172e44bd":[3,1,1,10,8,3], +"group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0ba9898049fbff6af21ffbf9be9db8df58c":[3,1,1,10,4,1], +"group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0baaf0fe07eca85a9fe3d708e60c2178eea":[3,1,1,10,4,3], +"group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0bab5b68c6092d9115647ae1cb92ca47118":[3,1,1,10,4,0], +"group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0bae87ed3ba2651f1e731c14d7a9628c598":[3,1,1,10,4,2], +"group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca2487e27fddb6866e2b540f4bf270b83a":[3,1,1,10,5,2], +"group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca26667abb7f4f7364d38993e2ac0329b9":[3,1,1,10,5,1], +"group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca2d2217dde029d6b5477c1ebdb623459c":[3,1,1,10,5,0], +"group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca61655ec7848f1bfc1604dd0d266a0b3b":[3,1,1,10,5,3], +"group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a05b61524d21f269e1d6e80495d18a54d":[3,1,1,10,6,1], +"group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a10de74577af853e342fb6fa74cf5d701":[3,1,1,10,6,2], +"group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a3387643d4f8b7d4407785a063f7209a6":[3,1,1,10,6,0], +"group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a35ce50e6bef8cda1c1be3e751d8dd683":[3,1,1,10,6,3], +"group___p_d_m.html#structpdm__extended__cfg__t":[3,1,1,10,1], +"group___p_d_m.html#structpdm__instance__ctrl__t":[3,1,1,10,0], +"group___p_d_m___a_p_i.html":[3,2,12], +"group___p_d_m___a_p_i.html#a298ee7b058b5cddae6a30ac90a093818":[3,2,12,2,7], +"group___p_d_m___a_p_i.html#a2b1840e35134d539722e741e0b00042c":[3,2,12,3,4], +"group___p_d_m___a_p_i.html#a2c6cf4b37d45d78d3c1f61721877a691":[3,2,12,1,0], +"group___p_d_m___a_p_i.html#a2f4774f5b5da972990370a2efbeae9f3":[3,2,12,2,12], +"group___p_d_m___a_p_i.html#a336b1d202eafdf805edd3cc274ef89e3":[3,2,12,2,0], +"group___p_d_m___a_p_i.html#a346098539bddc9e3c5228e7360553a9e":[3,2,12,2,8], +"group___p_d_m___a_p_i.html#a37bb473e04c42ef4dc01e03f6c52ce75":[3,2,12,3,5], +"group___p_d_m___a_p_i.html#a3a08bbd100782b9a8771628cc2637edb":[3,2,12,3,6], +"group___p_d_m___a_p_i.html#a3c9a2ef616d009192da8185b064ba3ab":[3,2,12,4,0], +"group___p_d_m___a_p_i.html#a4baa164d236e7f2c62cd33ddb64f41ec":[3,2,12,0,1], +"group___p_d_m___a_p_i.html#a5a22105924178bfeb3d5d4e21e6cb5a4":[3,2,12,2,10], +"group___p_d_m___a_p_i.html#a5ef7c8d0fc16829d08bf291a64b996b7":[3,2,12,2,1], +"group___p_d_m___a_p_i.html#a5f32ed867759c9d830f46a64a453d9c0":[3,2,12,2,9], +"group___p_d_m___a_p_i.html#a82eac8296ce13d4a73f461bd10bf9242":[3,2,12,4,2], +"group___p_d_m___a_p_i.html#a9144eb5d334c37cba16c54a931ff0b39":[3,2,12,3,0], +"group___p_d_m___a_p_i.html#a98b4bbf5bb1bf1feccda12382e919bbc":[3,2,12,0,2], +"group___p_d_m___a_p_i.html#aa7507f32d16aa2574b645cd8ac720e30":[3,2,12,4,1], +"group___p_d_m___a_p_i.html#aaff00f00bf416201caca2c61fb0b3d7b":[3,2,12,2,5], +"group___p_d_m___a_p_i.html#ab612a5c37643d9c506a10a9967b887c8":[3,2,12,2,2], +"group___p_d_m___a_p_i.html#abf43fd87ed8c5bdaccb5474009fa6006":[3,2,12,3,1], +"group___p_d_m___a_p_i.html#abff3295dd414d671e7c75d538d657cf7":[3,2,12,2,6], +"group___p_d_m___a_p_i.html#ac5a449eb8492fef49421d8e3babf205f":[3,2,12,3,3], +"group___p_d_m___a_p_i.html#ac700c0b3e8b54aaee5e31e37d74c2f3f":[3,2,12,0,0], +"group___p_d_m___a_p_i.html#ad25f36a51d384189ebc129a471f88c4c":[3,2,12,2,3], +"group___p_d_m___a_p_i.html#ad8342d4be5d02082a860b08303d0478c":[3,2,12,3,2], +"group___p_d_m___a_p_i.html#ae4b909dedca5d5099654a1342ae76d20":[3,2,12,2,11], +"group___p_d_m___a_p_i.html#aee193c08a4d958f6dc4905479594109f":[3,2,12,2,4], +"group___p_d_m___a_p_i.html#ga09df76d543b0cc6b39c5fed3bf1f4485":[3,2,12,10], +"group___p_d_m___a_p_i.html#ga16be2346ab1fd4d3929228a28914430c":[3,2,12,5], +"group___p_d_m___a_p_i.html#ga471ab0afd7d0f709e50ece23087b1759":[3,2,12,7], +"group___p_d_m___a_p_i.html#gac80768e70548497f4a739b84d0af572f":[3,2,12,6], +"group___p_d_m___a_p_i.html#gaf682776db13b51a982b047a8eb5fef2d":[3,2,12,9], +"group___p_d_m___a_p_i.html#gafb514c195258d2f14c8e18e3778ad946":[3,2,12,8], +"group___p_d_m___a_p_i.html#gga09df76d543b0cc6b39c5fed3bf1f4485a571969657d1a5ca91391807510eed100":[3,2,12,10,1], +"group___p_d_m___a_p_i.html#gga09df76d543b0cc6b39c5fed3bf1f4485a886d05c63fd087836c605e609908161c":[3,2,12,10,0], +"group___p_d_m___a_p_i.html#gga471ab0afd7d0f709e50ece23087b1759ab7bc06eef0965cb223d7da74d5164afb":[3,2,12,7,0], +"group___p_d_m___a_p_i.html#gga471ab0afd7d0f709e50ece23087b1759ad4f961a1e93d174697084cd288c0e57f":[3,2,12,7,1], +"group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa324772bd777c1f50889a17b70f3444a8":[3,2,12,6,7], +"group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa3adeaaa39404c582601c40179f1e6629":[3,2,12,6,8], +"group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa422ec8ffc432c508a18febbd57f857c9":[3,2,12,6,2], +"group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa5c1961f77255f5cc1e9b10bb2eb7a610":[3,2,12,6,1], +"group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa66dcfd2b5e3f5c788bf30d09e33ecea9":[3,2,12,6,0], +"group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa8778dcb9208e5416f680c6fe1f1f6279":[3,2,12,6,6], +"group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fabd56bdeaef4f1e776b865066e1dbe6b1":[3,2,12,6,3], +"group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fac2744c4aaff0de1651b0c61c39c2291e":[3,2,12,6,5], +"group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fae0af427ccb4ce9337eded095b609a2b6":[3,2,12,6,4], +"group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2da0507dc19cc300d66e07d4b452a44c9a9":[3,2,12,9,0], +"group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2da61c56fc9d6d836096a7c7e4b10c0ee17":[3,2,12,9,3], +"group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2da70bb4c740eec0bdd92cf20e63e540ba7":[3,2,12,9,1], +"group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2dab00a11e564c13def3c78e520e09573ab":[3,2,12,9,2], +"group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946a3cf03b37b166de31e8e8761161bf7e44":[3,2,12,8,2], +"group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946a6ab9b149f9673d692a581c5211f13134":[3,2,12,8,3], +"group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946aa4e2f360c85f3e28c57bfa71b932a57d":[3,2,12,8,0], +"group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946ac3719cfdf7fc1e91172888da1ab6f511":[3,2,12,8,1], +"group___p_d_m___a_p_i.html#structpdm__api__t":[3,2,12,3], +"group___p_d_m___a_p_i.html#structpdm__callback__args__t":[3,2,12,0], +"group___p_d_m___a_p_i.html#structpdm__cfg__t":[3,2,12,2], +"group___p_d_m___a_p_i.html#structpdm__instance__t":[3,2,12,4], +"group___p_d_m___a_p_i.html#structpdm__status__t":[3,2,12,1], +"group___p_o_e_g.html":[3,1,8,4], +"group___p_o_e_g.html#ga299d7e0c935c5305d72077fdf1963c2d":[3,1,8,4,3], +"group___p_o_e_g.html#ga42b42cd05ed30c698ba2dab5a32154dd":[3,1,8,4,4], +"group___p_o_e_g.html#ga6713a1b99790d8e56d475bb377b5cb0c":[3,1,8,4,5], +"group___p_o_e_g.html#ga84d0272a9da17941d62d264ff3a7b678":[3,1,8,4,1], +"group___p_o_e_g.html#ga84dddc58a538b5a7c9c22b7f4412755a":[3,1,8,4,6], +"group___p_o_e_g.html#gacc13125edbed3049ff434195ed6dc66e":[3,1,8,4,2], +"group___p_o_e_g.html#structpoeg__instance__ctrl__t":[3,1,8,4,0], +"group___p_o_e_g___a_p_i.html":[3,2,13], +"group___p_o_e_g___a_p_i.html#a1576cf3362e4341bf14ec8ba9592abc4":[3,2,13,3,5], +"group___p_o_e_g___a_p_i.html#a3952f94b0ec56e7d66d5e806578be4f4":[3,2,13,4,1], +"group___p_o_e_g___a_p_i.html#a41c511a6b1b828d54f180b729ae4fe55":[3,2,13,3,0], +"group___p_o_e_g___a_p_i.html#a475ca15f8e94a914ea5889e66b4d5ccc":[3,2,13,4,0], +"group___p_o_e_g___a_p_i.html#a4c643319683a792e608a1331f00c0d9c":[3,2,13,2,4], +"group___p_o_e_g___a_p_i.html#a540e9ef986cf2ad028ef51ba52454aab":[3,2,13,2,5], +"group___p_o_e_g___a_p_i.html#a5765dcf518892b71b73b5ae38942bd7f":[3,2,13,3,4], +"group___p_o_e_g___a_p_i.html#a57cfcbb853533296afebab7d58f231c2":[3,2,13,2,7], +"group___p_o_e_g___a_p_i.html#a685fb10923443de2749de75bebcae85b":[3,2,13,2,1], +"group___p_o_e_g___a_p_i.html#a70ca0636c969217533571c505f2e68ca":[3,2,13,2,3], +"group___p_o_e_g___a_p_i.html#a7d01f09a832b9940b264b0cf10a3863c":[3,2,13,3,2], +"group___p_o_e_g___a_p_i.html#a7f4c9f27604cdf1b772dc2d4ed8c3a2f":[3,2,13,2,2], +"group___p_o_e_g___a_p_i.html#a7f90a7d598df48543335416c0a4ab1a0":[3,2,13,2,6], +"group___p_o_e_g___a_p_i.html#a87c6c18eb74b68a3849822c777864f79":[3,2,13,1,0], +"group___p_o_e_g___a_p_i.html#aa5e1aa9d5416c9ca24132cddae7565f3":[3,2,13,4,2], +"group___p_o_e_g___a_p_i.html#ab377a80211d85f8c90b578e93dfd7964":[3,2,13,3,1], +"group___p_o_e_g___a_p_i.html#ace17b160cb26724e59f6aa82e39ed80b":[3,2,13,2,0], +"group___p_o_e_g___a_p_i.html#aeae55874b243b6034a81711e3494bc6d":[3,2,13,0,0], +"group___p_o_e_g___a_p_i.html#afe1feb1a5288478eea8d339ffaa1c68e":[3,2,13,3,3], +"group___p_o_e_g___a_p_i.html#ga092fdb789d4a41f502e902a7a8e88ac7":[3,2,13,5], +"group___p_o_e_g___a_p_i.html#ga6964e3b0b8b2d32d2428d86b32dfeef2":[3,2,13,6], +"group___p_o_e_g___a_p_i.html#gaab60100277a3b044c01007e6142704b9":[3,2,13,8], +"group___p_o_e_g___a_p_i.html#gab482b24d14d1c94f6f4ba9f5e39f8d0b":[3,2,13,9], +"group___p_o_e_g___a_p_i.html#gad3a55ae7d23b90cc2621a83116d2e7d9":[3,2,13,7], +"group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a1f07ec79529092ff47798e894f315adf":[3,2,13,6,5], +"group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a580261ea46ea6dc549e4fbfd99a8c31c":[3,2,13,6,2], +"group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a6c587d6eeb64a3823a355199778e6a18":[3,2,13,6,3], +"group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a929680a05ecd96bb24dd053fb6dcc8b5":[3,2,13,6,0], +"group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a965ed912f63e0044d9646693c909135b":[3,2,13,6,1], +"group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2ad3a9db10800397084958747e9cb2260a":[3,2,13,6,4], +"group___p_o_e_g___a_p_i.html#ggaab60100277a3b044c01007e6142704b9a6e980721d614a696895f9733ed1c5b0e":[3,2,13,8,0], +"group___p_o_e_g___a_p_i.html#ggaab60100277a3b044c01007e6142704b9a71e691b21c906dc492af3fcbbe5b9713":[3,2,13,8,1], +"group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba2ade356ffb1863fce2543f4b3440d526":[3,2,13,9,0], +"group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba38f961191fa339ca693af2b31132e9cf":[3,2,13,9,1], +"group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba88875580846aa38277404a473822fa54":[3,2,13,9,4] }; diff --git a/pages.html b/pages.html index e41ff6c..4b5e66a 100644 --- a/pages.html +++ b/pages.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: Starting Development +RZV Flexible Software Package Documentation: Starting Development @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    Starting Development
    @@ -107,7 +175,7 @@ diff --git a/r_elc_concept.svg b/r_elc_concept.svg new file mode 100644 index 0000000..41d3a49 --- /dev/null +++ b/r_elc_concept.svg @@ -0,0 +1,4 @@ + + + +
    I/O Ports
    I/O Ports
    CMTW
    CMTW
    GTM
    GTM
    DMAC
    DMAC
    WDT
    WDT
    RSPI
    RSPI
    RSCI
    RSCI
    RTC
    RTC
    RIIC
    RIIC
    ELC
    ELC
    I/O Ports
    I/O Ports
    GPT
    GPT
    ADC
    ADC
    TSU
    TSU
    GBETH
    GBETH
    ADC
    ADC
    SCIF
    SCIF
    GPT
    GPT
    I3C
    I3C
    GBETH
    GBETH
    ISU
    ISU
    DRP-AI
    DRP-AI
    DRP1
    DRP1
    Software
    Software
    Text is not SVG - cannot display
    \ No newline at end of file diff --git a/r_elc_eventset.svg b/r_elc_eventset.svg new file mode 100644 index 0000000..e13e0d5 --- /dev/null +++ b/r_elc_eventset.svg @@ -0,0 +1,4 @@ + + + +
    ELC_PERIPHERAL_ADC
    ELC_PERIPHERAL_ADC
    GPT00 Overflow
    GPT00 Overflow
    GPT00 Underflow
    GPT00 Underflow
    · · ·
    · · ·
    GPT00 Match F
    GPT00 Match F
    · · ·
    · · ·
    GPT00 Match D
    GPT00 Match D
    GPT00 Match E
    GPT00 Match E
    ADC Start Conversion
    ADC Start Conver...
    ELC_EVENT_GPT00_COUNTER_OVERFLOW
    ELC_EVENT_GPT00_COUNTER_OVERFLOW
    Selected event
    Selected event
    Available events
    Available events
    Peripheral function
    Peripheral function
    ELC
    ELC
    Text is not SVG - cannot display
    \ No newline at end of file diff --git a/r_i3c_device_table.svg b/r_i3c_device_table.svg new file mode 100644 index 0000000..3f1a5b4 --- /dev/null +++ b/r_i3c_device_table.svg @@ -0,0 +1,3 @@ + + +
    Device Index 0
    Device Index 0

    Device Table Entries

    • Static/Dynamic Address
    • Accept/Reject Interrupt Requests
    • Accept/Reject Mastership Requests
    • IBI Payload Requirement
    • Device Type (I3C / Legacy I2C)

    Device Table Entries...

    Extended Device Table Entry

    • Static/Dynamic Address
    • Device Type (I3C / Legacy I3C)
    Extended Device Table Entry...
    Device Index 1
    Device Index 1
    Device Index 2
    Device Index 2
    Device Index 3
    Device Index 3
    Viewer does not support full SVG 1.1
    \ No newline at end of file diff --git a/r_wdt_operation_example.png b/r_wdt_operation_example.png new file mode 100644 index 0000000..0935a68 Binary files /dev/null and b/r_wdt_operation_example.png differ diff --git a/search/all_0.js b/search/all_0.js index 0fc9be9..a729cdf 100644 --- a/search/all_0.js +++ b/search/all_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['_5f_5fattribute_5f_5f',['__attribute__',['../group___b_s_p___m_c_u.html#ga1300de3839c776da2d29a95c154e0c7a',1,'systems.c']]] + ['_5f_5fattribute_5f_5f',['__attribute__',['../group___b_s_p___m_c_u.html#ga2804a023941a956288c32ad08b2cf59e',1,'systems.c']]] ]; diff --git a/search/all_1.js b/search/all_1.js index 83d824f..f5d8440 100644 --- a/search/all_1.js +++ b/search/all_1.js @@ -1,12 +1,311 @@ var searchData= [ ['abort',['abort',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a0a0800aaa24f36b2eac8b315a0c5437e',1,'i2c_master_api_t']]], - ['adc_5fa_5fcompare_5fmatch',['adc_a_compare_match',['../group___g_p_t.html#abc2a1fdb7655945b5ef571c60bf7b4b0',1,'gpt_extended_pwm_cfg_t']]], - ['adc_5fb_5fcompare_5fmatch',['adc_b_compare_match',['../group___g_p_t.html#a078a97f54349c6895fbebc67857c479a',1,'gpt_extended_pwm_cfg_t']]], - ['adc_5fdata',['adc_data',['../group___r_m___o_b1203___a_p_i.html#ad08d19d7beac8dd1f6a672ab4006eb71',1,'rm_ob1203_raw_data_t']]], + ['abort_5firq',['abort_irq',['../group___i3_c___b.html#a2e4966e32402d1d0a865f1a29ea2b980',1,'i3c_b_extended_cfg_t']]], + ['ack_5fmode',['ack_mode',['../group___d_m_a_c___b.html#a7d92e1d7d0c259a61117cfae07481967',1,'dmac_b_extended_cfg_t']]], + ['ack_5foutput_5fpin',['ack_output_pin',['../group___d_m_a_c___b.html#ae5d6ef616f8c71b5511e8f0d21399585',1,'dmac_b_extended_cfg_t']]], + ['ack_5fphase_5fenable',['ack_phase_enable',['../group___i3_c___b.html#a111fd70be18b905f2dcd177090e28e95',1,'i3c_b_clock_stalling_t']]], + ['activation_5frequest_5fsource_5fselect',['activation_request_source_select',['../group___d_m_a_c___b.html#a6f25480c361b6c3dd254878c06d4171c',1,'dmac_b_extended_cfg_t']]], + ['activation_5fsource',['activation_source',['../group___d_m_a_c___b.html#a14515bc1b8a66a78c2fdc035fde0e2fa',1,'dmac_b_extended_cfg_t']]], + ['activity_5fstate',['activity_state',['../group___i3_c___b.html#a667ea08c6f9f2e5f4e3b3354d4fae122',1,'i3c_b_slave_command_response_info_t']]], + ['adc_5fa_5fcompare_5fmatch',['adc_a_compare_match',['../group___g_p_t.html#abc2a1fdb7655945b5ef571c60bf7b4b0',1,'gpt_extended_pwm_cfg_t::adc_a_compare_match()'],['../group___m_t_u3.html#a810012402bce96404cd96fd456c5754b',1,'mtu3_extended_pwm_cfg_t::adc_a_compare_match()']]], + ['adc_5falignment_5fleft',['ADC_ALIGNMENT_LEFT',['../group___a_d_c___a_p_i.html#ggaab0104c9c876400deb5772a77c1c5d76a7c98a604f4c957ba7151784fa3cd61a7',1,'r_adc_api.h']]], + ['adc_5falignment_5fright',['ADC_ALIGNMENT_RIGHT',['../group___a_d_c___a_p_i.html#ggaab0104c9c876400deb5772a77c1c5d76ae70affd23c02c0bc52dc0fe55c9c4879',1,'r_adc_api.h']]], + ['adc_5falignment_5ft',['adc_alignment_t',['../group___a_d_c___a_p_i.html#gaab0104c9c876400deb5772a77c1c5d76',1,'r_adc_api.h']]], + ['adc_20interface',['ADC Interface',['../group___a_d_c___a_p_i.html',1,'']]], + ['adc_5fapi_5ft',['adc_api_t',['../group___a_d_c___a_p_i.html#structadc__api__t',1,'']]], + ['adc_5fb_5fcompare_5fmatch',['adc_b_compare_match',['../group___g_p_t.html#a078a97f54349c6895fbebc67857c479a',1,'gpt_extended_pwm_cfg_t::adc_b_compare_match()'],['../group___m_t_u3.html#a46541e7560d30dbc680639d6ef4f5804',1,'mtu3_extended_pwm_cfg_t::adc_b_compare_match()']]], + ['analog_20to_20digital_20converter_20_28r_5fadc_5fc_29',['Analog to Digital Converter (r_adc_c)',['../group___a_d_c___c.html',1,'']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga0',['ADC_C_ACTIVE_TRIGGER_ADTRGA0',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324af3c255cbb8e850ba514039dadc6bf92a',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga0_5fb0',['ADC_C_ACTIVE_TRIGGER_ADTRGA0_B0',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a077311023b7c7723482d4c5c7d370be1',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga1',['ADC_C_ACTIVE_TRIGGER_ADTRGA1',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a656f9dceef714b697245a7f5bff691c3',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga1_5fb1',['ADC_C_ACTIVE_TRIGGER_ADTRGA1_B1',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aad2f3ddd5eb3347f71232e5bb3b561d1',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga2',['ADC_C_ACTIVE_TRIGGER_ADTRGA2',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a05fe5bc9f3a1fb82348c6bfd772224be',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga2_5fb2',['ADC_C_ACTIVE_TRIGGER_ADTRGA2_B2',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aad43bb4fbe4b2c0936b28843970e03a8',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga3',['ADC_C_ACTIVE_TRIGGER_ADTRGA3',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a5109da7296762f3d8a619d31a51ea5a3',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga3_5fb3',['ADC_C_ACTIVE_TRIGGER_ADTRGA3_B3',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a3dec3d6634fe8fa6337ea9a60025d722',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrgb0',['ADC_C_ACTIVE_TRIGGER_ADTRGB0',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324abf5e08f2640ebc195c73e47c8e65643f',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrgb1',['ADC_C_ACTIVE_TRIGGER_ADTRGB1',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aa27f6fb1909ccf43a35c88409bfb906e',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrgb2',['ADC_C_ACTIVE_TRIGGER_ADTRGB2',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a74a5af0cf4d4a397f09877b9fe6f9324',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrgb3',['ADC_C_ACTIVE_TRIGGER_ADTRGB3',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a336c6d7ff3ca435273e8c40ad4c6ea03',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fexternal',['ADC_C_ACTIVE_TRIGGER_EXTERNAL',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324ae5fb7188a5493c2087429cf22d4cd2f4',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ft',['adc_c_active_trigger_t',['../group___a_d_c___c.html#ga7491e0c2eab4266fd44d7f92a3c69324',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg0n',['ADC_C_ACTIVE_TRIGGER_TRG0N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324af54943db6ac19bc3469392b7dd1bf193',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg4abn',['ADC_C_ACTIVE_TRIGGER_TRG4ABN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a2bdbc28656119e798974fb9c2c6a4e63',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg4an',['ADC_C_ACTIVE_TRIGGER_TRG4AN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a60b1a080cb97f8c36886c8d8313f82b9',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg4an_5fbn',['ADC_C_ACTIVE_TRIGGER_TRG4AN_BN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a3e9a5e2d5a289cd86dc466fb491976cf',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg4bn',['ADC_C_ACTIVE_TRIGGER_TRG4BN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aa329f8ae24c1e72627aec16e56add4a8',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg7abn',['ADC_C_ACTIVE_TRIGGER_TRG7ABN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a0187bd6ce59d816a9c14d48a7ed745f7',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg7an',['ADC_C_ACTIVE_TRIGGER_TRG7AN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a6a3e1e29efd6b0726b986a61d26fbb9c',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg7an_5fbn',['ADC_C_ACTIVE_TRIGGER_TRG7AN_BN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a3966e7fc0d3839758c715ad9a5581587',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg7bn',['ADC_C_ACTIVE_TRIGGER_TRG7BN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aa6f5ef5945ac95eb9850812798d478c3',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga0n',['ADC_C_ACTIVE_TRIGGER_TRGA0N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a38fcc2885633e438bc40bd92a2b84dca',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga1n',['ADC_C_ACTIVE_TRIGGER_TRGA1N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324abf1cba1bc639bd489c1434a8811f73d2',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga2n',['ADC_C_ACTIVE_TRIGGER_TRGA2N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a44ab6a715d5c6b4962ee09cd97b9738c',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga3n',['ADC_C_ACTIVE_TRIGGER_TRGA3N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324abca8fe161c59c71c347623b294e66974',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga4n',['ADC_C_ACTIVE_TRIGGER_TRGA4N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a558ad6214f6a2921415737991d2092d1',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga6n',['ADC_C_ACTIVE_TRIGGER_TRGA6N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a105e8fb8e9ac187017ea47c68e8053fa',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga7n',['ADC_C_ACTIVE_TRIGGER_TRGA7N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a843cb5544350c5c93a91b9c5f68e1e73',1,'r_adc_c.h']]], + ['adc_5fc_5fbuffer_5fmode_5f1',['ADC_C_BUFFER_MODE_1',['../group___a_d_c___c.html#ggaa825c3919bb78f2b06cfb42e726f507bacd2e2ea3702a77919d90e1620f8ecea9',1,'r_adc_c.h']]], + ['adc_5fc_5fbuffer_5fmode_5f4',['ADC_C_BUFFER_MODE_4',['../group___a_d_c___c.html#ggaa825c3919bb78f2b06cfb42e726f507baa23674fef20210a76d33298be9253183',1,'r_adc_c.h']]], + ['adc_5fc_5fbuffer_5fmode_5ft',['adc_c_buffer_mode_t',['../group___a_d_c___c.html#gaa825c3919bb78f2b06cfb42e726f507b',1,'r_adc_c.h']]], + ['adc_5fc_5fchannel_5fcfg_5ft',['adc_c_channel_cfg_t',['../group___a_d_c___c.html#structadc__c__channel__cfg__t',1,'']]], + ['adc_5fc_5fextended_5fcfg_5ft',['adc_c_extended_cfg_t',['../group___a_d_c___c.html#structadc__c__extended__cfg__t',1,'']]], + ['adc_5fc_5ffilter_5fstage_5fsetting_5f12',['ADC_C_FILTER_STAGE_SETTING_12',['../group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3beaf0ee05127742344df84853d642f4d0e9',1,'r_adc_c.h']]], + ['adc_5fc_5ffilter_5fstage_5fsetting_5f16',['ADC_C_FILTER_STAGE_SETTING_16',['../group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3bea45fc2724e94b772f7c82f16c108b876f',1,'r_adc_c.h']]], + ['adc_5fc_5ffilter_5fstage_5fsetting_5f4',['ADC_C_FILTER_STAGE_SETTING_4',['../group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3bea58499b9e7e17eae5511957f130890953',1,'r_adc_c.h']]], + ['adc_5fc_5ffilter_5fstage_5fsetting_5f8',['ADC_C_FILTER_STAGE_SETTING_8',['../group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3beaff4e1eb7b74d3c422f01aafae1b9117f',1,'r_adc_c.h']]], + ['adc_5fc_5ffilter_5fstage_5fsetting_5fdisable',['ADC_C_FILTER_STAGE_SETTING_DISABLE',['../group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3bea0cea22fe02a308fa8dcb8622af5be267',1,'r_adc_c.h']]], + ['adc_5fc_5ffilter_5fstage_5fsetting_5ft',['adc_c_filter_stage_setting_t',['../group___a_d_c___c.html#ga034ccf534ec5fed75f8c33ad29c8e3be',1,'r_adc_c.h']]], + ['adc_5fc_5finput_5fmode_5fauto',['ADC_C_INPUT_MODE_AUTO',['../group___a_d_c___c.html#gga50e12110f82b457bdd59bd0dbc0d0d89a3b4fe16ae64b00c994f7273547ab9048',1,'r_adc_c.h']]], + ['adc_5fc_5finput_5fmode_5fstep',['ADC_C_INPUT_MODE_STEP',['../group___a_d_c___c.html#gga50e12110f82b457bdd59bd0dbc0d0d89adbdd34fbb2bc27ddafe211baae444392',1,'r_adc_c.h']]], + ['adc_5fc_5finput_5fmode_5ft',['adc_c_input_mode_t',['../group___a_d_c___c.html#ga50e12110f82b457bdd59bd0dbc0d0d89',1,'r_adc_c.h']]], + ['adc_5fc_5finstance_5fctrl_5ft',['adc_c_instance_ctrl_t',['../group___a_d_c___c.html#structadc__c__instance__ctrl__t',1,'']]], + ['adc_5fc_5finterrupt_5fchannel_5fsetting_5fdisable',['ADC_C_INTERRUPT_CHANNEL_SETTING_DISABLE',['../group___a_d_c___c.html#ggab74afcc80bd6ce8980feeadb9352449ea06c8e5e55d072c7d8f0825b701dd27ab',1,'r_adc_c.h']]], + ['adc_5fc_5finterrupt_5fchannel_5fsetting_5fenable',['ADC_C_INTERRUPT_CHANNEL_SETTING_ENABLE',['../group___a_d_c___c.html#ggab74afcc80bd6ce8980feeadb9352449ea85786ffac329aa37580a8c071e1ebf13',1,'r_adc_c.h']]], + ['adc_5fc_5finterrupt_5fchannel_5fsetting_5ft',['adc_c_interrupt_channel_setting_t',['../group___a_d_c___c.html#gab74afcc80bd6ce8980feeadb9352449e',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f0',['ADC_C_MASK_CHANNEL_0',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa526b225d2249c0e6b598d0cb15d23baf',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f1',['ADC_C_MASK_CHANNEL_1',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaa6022698b4c9597d629c54a2b24c35c1',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f2',['ADC_C_MASK_CHANNEL_2',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaed4a79299f7d28f3332bf8f311bbad01',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f3',['ADC_C_MASK_CHANNEL_3',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfad5324a7d55619eeb7c59ebc1d410e3f2',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f4',['ADC_C_MASK_CHANNEL_4',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaaa22536b05ed63aca9faf6123faeb56b',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f5',['ADC_C_MASK_CHANNEL_5',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa3ee0541dd2c83923941c6d60f9cc06fb',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f6',['ADC_C_MASK_CHANNEL_6',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa6a92d5b950930e683faec6d0f27a14fd',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f7',['ADC_C_MASK_CHANNEL_7',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaf0025fb0928e54bb073bbfba22c27670',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f8',['ADC_C_MASK_CHANNEL_8',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfae30eb419b469cf9b915ca07da7335fc9',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5foff',['ADC_C_MASK_OFF',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa79ec471da64631d27a588d73ef193efe',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5ft',['adc_c_mask_t',['../group___a_d_c___c.html#ga2f01cf47970d9f474abd9f8b68a36abf',1,'r_adc_c.h']]], + ['adc_5fc_5foperating_5fmode_5fscan',['ADC_C_OPERATING_MODE_SCAN',['../group___a_d_c___c.html#gga1f6acb79f1626e0bd35e6f90752a015ca63cedcfd78a812f8f284c2c256d60579',1,'r_adc_c.h']]], + ['adc_5fc_5foperating_5fmode_5fselect',['ADC_C_OPERATING_MODE_SELECT',['../group___a_d_c___c.html#gga1f6acb79f1626e0bd35e6f90752a015caa84e18043bb7ffa605aeedc5fd6c22f9',1,'r_adc_c.h']]], + ['adc_5fc_5foperating_5fmode_5ft',['adc_c_operating_mode_t',['../group___a_d_c___c.html#ga1f6acb79f1626e0bd35e6f90752a015c',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fedge_5fboth',['ADC_C_TRIGGER_EDGE_BOTH',['../group___a_d_c___c.html#ggaddac3354631a273d32f50f65b271de49ac22d5d31e0596d826fbff03b476f0166',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fedge_5ffalling',['ADC_C_TRIGGER_EDGE_FALLING',['../group___a_d_c___c.html#ggaddac3354631a273d32f50f65b271de49a3d564c924b8980dfce73223e9447f870',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fedge_5frising',['ADC_C_TRIGGER_EDGE_RISING',['../group___a_d_c___c.html#ggaddac3354631a273d32f50f65b271de49ae5220b5deefd335b667937754602a1c1',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fedge_5ft',['adc_c_trigger_edge_t',['../group___a_d_c___c.html#gaddac3354631a273d32f50f65b271de49',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fmode_5fhardware',['ADC_C_TRIGGER_MODE_HARDWARE',['../group___a_d_c___c.html#gga63b54f9f14640dd93668df6b63fa5208a7fa4ed8065306ec04e54e7feda2e1dbc',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fmode_5fsoftware',['ADC_C_TRIGGER_MODE_SOFTWARE',['../group___a_d_c___c.html#gga63b54f9f14640dd93668df6b63fa5208a96075d0fcdc8e5e9fe36ffed03f611e4',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fmode_5ft',['adc_c_trigger_mode_t',['../group___a_d_c___c.html#ga63b54f9f14640dd93668df6b63fa5208',1,'r_adc_c.h']]], + ['adc_5fcallback_5fargs_5ft',['adc_callback_args_t',['../group___a_d_c___a_p_i.html#structadc__callback__args__t',1,'']]], + ['adc_5fcfg_5ft',['adc_cfg_t',['../group___a_d_c___a_p_i.html#structadc__cfg__t',1,'']]], + ['adc_5fchannel_5f0',['ADC_CHANNEL_0',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a69dddf5b6edfe54ac25b653d8f62d104',1,'r_adc_api.h']]], + ['adc_5fchannel_5f1',['ADC_CHANNEL_1',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a203b48944d019f4fda969a6fc2a9e492',1,'r_adc_api.h']]], + ['adc_5fchannel_5f10',['ADC_CHANNEL_10',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a9db3195dade30ed8b254187c22616898',1,'r_adc_api.h']]], + ['adc_5fchannel_5f11',['ADC_CHANNEL_11',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814af6193eda0e4807c9d560aac13e302093',1,'r_adc_api.h']]], + ['adc_5fchannel_5f12',['ADC_CHANNEL_12',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a42838efffa3e21e6b970eee65de86e40',1,'r_adc_api.h']]], + ['adc_5fchannel_5f13',['ADC_CHANNEL_13',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa2718519e5964f136de3e5234e36264c',1,'r_adc_api.h']]], + ['adc_5fchannel_5f14',['ADC_CHANNEL_14',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a7f3900d4031a3f01889fbe4179d8cade',1,'r_adc_api.h']]], + ['adc_5fchannel_5f15',['ADC_CHANNEL_15',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814afa75046e6f6f23ed8e6573c7bc8563d2',1,'r_adc_api.h']]], + ['adc_5fchannel_5f16',['ADC_CHANNEL_16',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a61914b17568b94ef0651ee10e79e6892',1,'r_adc_api.h']]], + ['adc_5fchannel_5f17',['ADC_CHANNEL_17',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a22aa8198d9a4012a012ddd838adf256c',1,'r_adc_api.h']]], + ['adc_5fchannel_5f18',['ADC_CHANNEL_18',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ae47fe79b66fda5fcb9f02d6a648c8dc9',1,'r_adc_api.h']]], + ['adc_5fchannel_5f19',['ADC_CHANNEL_19',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a514ca4fdb7e9862d3d9ebe1d4e926349',1,'r_adc_api.h']]], + ['adc_5fchannel_5f2',['ADC_CHANNEL_2',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ab5ff3c915ec02ae6ac3980a1312a4815',1,'r_adc_api.h']]], + ['adc_5fchannel_5f20',['ADC_CHANNEL_20',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814afdcbeb5840bd281a4a2ec3f1f64ed52b',1,'r_adc_api.h']]], + ['adc_5fchannel_5f21',['ADC_CHANNEL_21',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814afaf1207b06cd7dc48c7f10ed6c95fb4a',1,'r_adc_api.h']]], + ['adc_5fchannel_5f22',['ADC_CHANNEL_22',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa5b37816645da11ff633a7e2d539da12',1,'r_adc_api.h']]], + ['adc_5fchannel_5f23',['ADC_CHANNEL_23',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a9009b78e30e87985cbfb40296a0bab16',1,'r_adc_api.h']]], + ['adc_5fchannel_5f24',['ADC_CHANNEL_24',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a7ae985a21367ea6d7488517948fc625d',1,'r_adc_api.h']]], + ['adc_5fchannel_5f25',['ADC_CHANNEL_25',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a31855ff8fefcff144e9dc4911466ce52',1,'r_adc_api.h']]], + ['adc_5fchannel_5f26',['ADC_CHANNEL_26',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa9c18e09bdb5cdf44c8c89ecdd7770d3',1,'r_adc_api.h']]], + ['adc_5fchannel_5f27',['ADC_CHANNEL_27',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ad002942933ed78124a50b3276f9d88cc',1,'r_adc_api.h']]], + ['adc_5fchannel_5f28',['ADC_CHANNEL_28',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a558a69bc271b849d3c3a2cca05ebbba0',1,'r_adc_api.h']]], + ['adc_5fchannel_5f3',['ADC_CHANNEL_3',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a6ca054f67bee5197eec92a0379cffb6e',1,'r_adc_api.h']]], + ['adc_5fchannel_5f4',['ADC_CHANNEL_4',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a358c6f5e7243a7ed09640253d83d2131',1,'r_adc_api.h']]], + ['adc_5fchannel_5f5',['ADC_CHANNEL_5',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814add27743e52a0719102130818d31d545a',1,'r_adc_api.h']]], + ['adc_5fchannel_5f6',['ADC_CHANNEL_6',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814acf3be71bfeb9d342e6d845db91782b79',1,'r_adc_api.h']]], + ['adc_5fchannel_5f7',['ADC_CHANNEL_7',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ad6ef86ca1b448f220905d771f258586a',1,'r_adc_api.h']]], + ['adc_5fchannel_5f8',['ADC_CHANNEL_8',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a2875a590dc7e8502581ff68a075ce019',1,'r_adc_api.h']]], + ['adc_5fchannel_5f9',['ADC_CHANNEL_9',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a0e198353a76bf512e4dcc8224710d6b0',1,'r_adc_api.h']]], + ['adc_5fchannel_5fduplex',['ADC_CHANNEL_DUPLEX',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a2602b0a06ce1ce485d0812de6f6f4091',1,'r_adc_api.h']]], + ['adc_5fchannel_5fduplex_5fa',['ADC_CHANNEL_DUPLEX_A',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aadc3763b403f4b9ab667602137a9de57',1,'r_adc_api.h']]], + ['adc_5fchannel_5fduplex_5fb',['ADC_CHANNEL_DUPLEX_B',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa66d57680818caebf7be4d68f8c505be',1,'r_adc_api.h']]], + ['adc_5fchannel_5ft',['adc_channel_t',['../group___a_d_c___a_p_i.html#gaafc4060027875f8fe46242b0656d7814',1,'r_adc_api.h']]], + ['adc_5fchannel_5ftemperature',['ADC_CHANNEL_TEMPERATURE',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aff4cf0b5a9bfd1fc634f6b097e34fe73',1,'r_adc_api.h']]], + ['adc_5fchannel_5fvolt',['ADC_CHANNEL_VOLT',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a511e70765f3a63d0dea47ea585329641',1,'r_adc_api.h']]], + ['adc_5fctrl_5ft',['adc_ctrl_t',['../group___a_d_c___a_p_i.html#gaff9488cd90102a90e5c5cbd45394d426',1,'r_adc_api.h']]], + ['analog_20to_20digital_20converter_20_28r_5fadc_5fe_29',['Analog to Digital Converter (r_adc_e)',['../group___a_d_c___e.html',1,'']]], + ['adc_5fe_5factive_5ftrigger_5fdisabled',['ADC_E_ACTIVE_TRIGGER_DISABLED',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa2b4b59316fb8fefb58e73185e11e8d63',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5felctrg0',['ADC_E_ACTIVE_TRIGGER_ELCTRG0',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa28e3a1a968ca839641207e0eaac50ad2',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fexternal',['ADC_E_ACTIVE_TRIGGER_EXTERNAL',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6a63b6c2445f9c3f512a74456c0c5f44',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra0n',['ADC_E_ACTIVE_TRIGGER_GTADTRA0N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa4c426f6a8605e9e919fbb77e0b01920e',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra0n_5fb0n',['ADC_E_ACTIVE_TRIGGER_GTADTRA0N_B0N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa8096ea25dd100d856524b905fc388603',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra10n',['ADC_E_ACTIVE_TRIGGER_GTADTRA10N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faaca5902231d50599b6034a6ff45a5143',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra10n_5fb10n',['ADC_E_ACTIVE_TRIGGER_GTADTRA10N_B10N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fac4ad89f15ce5582effbff589f28dd335',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra11n',['ADC_E_ACTIVE_TRIGGER_GTADTRA11N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9f1b97c0b0b5f733c16aac91cd6a1a5d',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra11n_5fb11n',['ADC_E_ACTIVE_TRIGGER_GTADTRA11N_B11N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa374edc9decb2c4cddcf99deca385a67c',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra12n',['ADC_E_ACTIVE_TRIGGER_GTADTRA12N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa31fdff2f29081b257445d6ba6d2a74e6',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra12n_5fb12n',['ADC_E_ACTIVE_TRIGGER_GTADTRA12N_B12N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa09082c6edf97f871bc12b2b61c718f6',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra13n',['ADC_E_ACTIVE_TRIGGER_GTADTRA13N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa3bceacf3e88dccada7241e842a82665d',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra13n_5fb13n',['ADC_E_ACTIVE_TRIGGER_GTADTRA13N_B13N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6ec9fbdf997ccc7090fbbfdd85e2b3da',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra14n',['ADC_E_ACTIVE_TRIGGER_GTADTRA14N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa727a862780e0fef71d313c712d46ed94',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra14n_5fb14n',['ADC_E_ACTIVE_TRIGGER_GTADTRA14N_B14N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faf121c0c74e2ab94d451fbff265037e16',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra15n',['ADC_E_ACTIVE_TRIGGER_GTADTRA15N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa8e90c5409cf4bccaf56eb5694907e35f',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra15n_5fb15n',['ADC_E_ACTIVE_TRIGGER_GTADTRA15N_B15N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa790de35506dc40dd6e2395b561d33c38',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra1n',['ADC_E_ACTIVE_TRIGGER_GTADTRA1N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9902642a17e4068b11f05666619ace88',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra1n_5fb1n',['ADC_E_ACTIVE_TRIGGER_GTADTRA1N_B1N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa215583c964e85bacdc90056b67ab9589',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra2n',['ADC_E_ACTIVE_TRIGGER_GTADTRA2N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa695ee73260f9b9f31d86d6ac565720d',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra2n_5fb2n',['ADC_E_ACTIVE_TRIGGER_GTADTRA2N_B2N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fac1ce41a1b9c81fd268303ceae19f1b33',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra3n',['ADC_E_ACTIVE_TRIGGER_GTADTRA3N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fabd1c0ab8049d40a082f9d6cc460eae9d',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra3n_5fb3n',['ADC_E_ACTIVE_TRIGGER_GTADTRA3N_B3N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa106f24545d7f52d7e2e0ec800848bf56',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra4n',['ADC_E_ACTIVE_TRIGGER_GTADTRA4N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fab97a0c9ee7c73c5e134a0e51411929a3',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra4n_5fb4n',['ADC_E_ACTIVE_TRIGGER_GTADTRA4N_B4N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fad04c5806b31c04576c04c05466ecb7fd',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra5n',['ADC_E_ACTIVE_TRIGGER_GTADTRA5N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fac5a7fe7f78684f5e2e58c7c1c6ef73c3',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra5n_5fb5n',['ADC_E_ACTIVE_TRIGGER_GTADTRA5N_B5N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa2fb982d751259b10f0d892e87cf34a94',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra6n',['ADC_E_ACTIVE_TRIGGER_GTADTRA6N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa5a16fcb8681d0cf1e741a9b307e88847',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra6n_5fb6n',['ADC_E_ACTIVE_TRIGGER_GTADTRA6N_B6N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fabbbd1ff618da6a0f205ac2b1e63e64b5',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra7n',['ADC_E_ACTIVE_TRIGGER_GTADTRA7N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa378bf8e67b6b93ec9880b0dda5a49cf1',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra7n_5fb7n',['ADC_E_ACTIVE_TRIGGER_GTADTRA7N_B7N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa28c50276ed742ce0db678377e18687e5',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra8n',['ADC_E_ACTIVE_TRIGGER_GTADTRA8N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faf8d4132591c78893ad583429c32ac4e8',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra8n_5fb8n',['ADC_E_ACTIVE_TRIGGER_GTADTRA8N_B8N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa5e524a4c78dec3eff0b12583fa1079ea',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra9n',['ADC_E_ACTIVE_TRIGGER_GTADTRA9N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6f493cf9c678ef4a1d368bb63bc6f2e0',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra9n_5fb9n',['ADC_E_ACTIVE_TRIGGER_GTADTRA9N_B9N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fad91a9db8f7c795e2d11b825125758495',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb0n',['ADC_E_ACTIVE_TRIGGER_GTADTRB0N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa448af995c6515a9a4e86f04c46e8ada7',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb10n',['ADC_E_ACTIVE_TRIGGER_GTADTRB10N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faae587f46b153bbf2e99864de3797cdef',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb11n',['ADC_E_ACTIVE_TRIGGER_GTADTRB11N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa2c4758623e3a2aad4209c63491ca898',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb12n',['ADC_E_ACTIVE_TRIGGER_GTADTRB12N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9eff0146776bc2fd811f148a504234da',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb13n',['ADC_E_ACTIVE_TRIGGER_GTADTRB13N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fab20a730f226f3e7fbcf6921adf5bb5bc',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb14n',['ADC_E_ACTIVE_TRIGGER_GTADTRB14N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faf889da8954112cedca0f84bbb5a603c9',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb15n',['ADC_E_ACTIVE_TRIGGER_GTADTRB15N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6163627f725cdbfdad6ebcc2e6b31846',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb1n',['ADC_E_ACTIVE_TRIGGER_GTADTRB1N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fafb7c42eaa57827783bb2eef236f31c00',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb2n',['ADC_E_ACTIVE_TRIGGER_GTADTRB2N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faae2c129cfe845f45768c8e2021d14343',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb3n',['ADC_E_ACTIVE_TRIGGER_GTADTRB3N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa574e696333924728cae8e361f78f29f',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb4n',['ADC_E_ACTIVE_TRIGGER_GTADTRB4N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa293d75611b1da95391d9b6af22cd68b0',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb5n',['ADC_E_ACTIVE_TRIGGER_GTADTRB5N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faff0811af228d90a5fe900fa96028078e',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb6n',['ADC_E_ACTIVE_TRIGGER_GTADTRB6N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa53fb29d181177973f0f9faa327a0424',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb7n',['ADC_E_ACTIVE_TRIGGER_GTADTRB7N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9a63067d741002399d546646cf9ea13d',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb8n',['ADC_E_ACTIVE_TRIGGER_GTADTRB8N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa5df525e46011f8befd1d42b25775206e',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb9n',['ADC_E_ACTIVE_TRIGGER_GTADTRB9N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9b6442c9b1add0999304ae38d9dbf368',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5ft',['adc_e_active_trigger_t',['../group___a_d_c___e.html#gae49c0a7e6cc3e0a75850e2529e2f557f',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5faverage_5ffour',['ADC_E_ADD_AVERAGE_FOUR',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a44670148ec252d460b93341446298d65',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5faverage_5ftwo',['ADC_E_ADD_AVERAGE_TWO',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3adf05c281263ac034b85ee28759a22b09',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5ffour',['ADC_E_ADD_FOUR',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a4036c2cdaa57bf8599e36eb21d0a78a1',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5foff',['ADC_E_ADD_OFF',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3ab352925f95e9869bd239f31df58168b2',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5fsixteen',['ADC_E_ADD_SIXTEEN',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a8f16edf862670199e9a68347ece4840c',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5ft',['adc_e_add_t',['../group___a_d_c___e.html#gab0e11d4b95e596d916dc4eb65e22d4d3',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5fthree',['ADC_E_ADD_THREE',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a27eeeb12c5a0d9a0b1009520131be315',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5ftwo',['ADC_E_ADD_TWO',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3ad2dd39b24e9646d5807104257b69cc3d',1,'r_adc_e.h']]], + ['adc_5fe_5fchannel_5fcfg_5ft',['adc_e_channel_cfg_t',['../group___a_d_c___e.html#structadc__e__channel__cfg__t',1,'']]], + ['adc_5fe_5fclear_5fafter_5fread_5foff',['ADC_E_CLEAR_AFTER_READ_OFF',['../group___a_d_c___e.html#gga422cf88cc9da3ba156d8714d12ab76cea669d6e0019644b0499020a2cc9cbb6f6',1,'r_adc_e.h']]], + ['adc_5fe_5fclear_5fafter_5fread_5fon',['ADC_E_CLEAR_AFTER_READ_ON',['../group___a_d_c___e.html#gga422cf88cc9da3ba156d8714d12ab76ceab705431542744d64ac830f66defa61d0',1,'r_adc_e.h']]], + ['adc_5fe_5fclear_5ft',['adc_e_clear_t',['../group___a_d_c___e.html#ga422cf88cc9da3ba156d8714d12ab76ce',1,'r_adc_e.h']]], + ['adc_5fe_5fcompare_5fcfg_5ft',['adc_e_compare_cfg_t',['../group___a_d_c___e.html#ga4134f7cacd8b7ef6961cf6016097fb8b',1,'r_adc_e.h']]], + ['adc_5fe_5fdouble_5ftrigger_5fdisabled',['ADC_E_DOUBLE_TRIGGER_DISABLED',['../group___a_d_c___e.html#ggac0b5736dc0689efc4adc399542f3071ca865382fe418d7ab432b18c196f7ae8f1',1,'r_adc_e.h']]], + ['adc_5fe_5fdouble_5ftrigger_5fenabled',['ADC_E_DOUBLE_TRIGGER_ENABLED',['../group___a_d_c___e.html#ggac0b5736dc0689efc4adc399542f3071caa05d4613945e60b38cd50a7ab720c2fc',1,'r_adc_e.h']]], + ['adc_5fe_5fdouble_5ftrigger_5fenabled_5fextended',['ADC_E_DOUBLE_TRIGGER_ENABLED_EXTENDED',['../group___a_d_c___e.html#ggac0b5736dc0689efc4adc399542f3071cad3f6769a1a87595c24fe45ca41394de2',1,'r_adc_e.h']]], + ['adc_5fe_5fdouble_5ftrigger_5ft',['adc_e_double_trigger_t',['../group___a_d_c___e.html#gac0b5736dc0689efc4adc399542f3071c',1,'r_adc_e.h']]], + ['adc_5fe_5felc_5fgroup_5fa_5fb_5fc_5fscan',['ADC_E_ELC_GROUP_A_B_C_SCAN',['../group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4aad16e88624cce006078aaec2f455fc4e',1,'r_adc_e.h']]], + ['adc_5fe_5felc_5fgroup_5fa_5fscan',['ADC_E_ELC_GROUP_A_SCAN',['../group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4a189d0a824d5db27f10917dbe522a78b7',1,'r_adc_e.h']]], + ['adc_5fe_5felc_5fgroup_5fb_5fscan',['ADC_E_ELC_GROUP_B_SCAN',['../group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4a4e40d19905cc52d4ee598eae53ab2fe6',1,'r_adc_e.h']]], + ['adc_5fe_5felc_5fgroup_5fc_5fscan',['ADC_E_ELC_GROUP_C_SCAN',['../group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4a1c4f07380c5b0a7df77e5d1f5f59845b',1,'r_adc_e.h']]], + ['adc_5fe_5felc_5ft',['adc_e_elc_t',['../group___a_d_c___e.html#gaa7e9c8ba1296fac868aa6decfa2225b4',1,'r_adc_e.h']]], + ['adc_5fe_5fextended_5fcfg_5ft',['adc_e_extended_cfg_t',['../group___a_d_c___e.html#structadc__e__extended__cfg__t',1,'']]], + ['adc_5fe_5fgrpa_5fgrpb_5fgrpc_5frestart_5fcont_5fscan',['ADC_E_GRPA_GRPB_GRPC_RESTART_CONT_SCAN',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afac49f6eae45a6a5db0bce4b0a53b0a5ab',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5fgrpb_5fgrpc_5frestart_5fscan',['ADC_E_GRPA_GRPB_GRPC_RESTART_SCAN',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afac9d1cff44911bca45ae969e50ab63ff8',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5fgrpb_5fgrpc_5frestart_5ftop_5fcont_5fscan',['ADC_E_GRPA_GRPB_GRPC_RESTART_TOP_CONT_SCAN',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa27bb19af29f2a9b6790f28d4749f0658',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5fgrpb_5fgrpc_5ftop_5fcont_5fscan',['ADC_E_GRPA_GRPB_GRPC_TOP_CONT_SCAN',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa2b861d5fc5c79f234750c1ccd015dd82',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5fgrpb_5fgrpc_5ftop_5frestart_5fscan',['ADC_E_GRPA_GRPB_GRPC_TOP_RESTART_SCAN',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afaf26242454336838e0df3880b319ab436',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5fgrpb_5fgrpc_5fwait_5ftrig',['ADC_E_GRPA_GRPB_GRPC_WAIT_TRIG',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa94e2ddc531f07eb9c834a363f903b31e',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5fpriority_5foff',['ADC_E_GRPA_PRIORITY_OFF',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa4bc3e3609dc57526346083b466e065ee',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5ft',['adc_e_grpa_t',['../group___a_d_c___e.html#gaecc60f4098d74dddf3a8e98aa65e43af',1,'r_adc_e.h']]], + ['adc_5fe_5finstance_5fctrl_5ft',['adc_e_instance_ctrl_t',['../group___a_d_c___e.html#structadc__e__instance__ctrl__t',1,'']]], + ['adc_5fe_5fmask_5fchannel_5f0',['ADC_E_MASK_CHANNEL_0',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090baecaf6f7008e94a40b5a5c3f1f3961392',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f1',['ADC_E_MASK_CHANNEL_1',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba2b9c1663e5009446b538d2eb5e9f02e3',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f2',['ADC_E_MASK_CHANNEL_2',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090baad56d2d61a689b0d664177fa6e024b7a',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f3',['ADC_E_MASK_CHANNEL_3',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba8c387adca9c3324765fda24f66b46aa1',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f4',['ADC_E_MASK_CHANNEL_4',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090baaa6c0c0b4952290fdb21abca0a006076',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f5',['ADC_E_MASK_CHANNEL_5',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090bafb09eb3f26f0227861ef0d5c7c82a2e7',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f6',['ADC_E_MASK_CHANNEL_6',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba9d92286744ee3853f98595513297c3c1',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f7',['ADC_E_MASK_CHANNEL_7',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba9ac287179e8ac16a2a512f6532172940',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5foff',['ADC_E_MASK_OFF',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090bab138f4d7f28ddb62f69104fcf4f0c0cc',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5ft',['adc_e_mask_t',['../group___a_d_c___e.html#ga04662c7da4042227d066baa5b109090b',1,'r_adc_e.h']]], + ['adc_5fe_5fwindow_5fb_5fchannel_5ft',['adc_e_window_b_channel_t',['../group___a_d_c___e.html#ga48312e85efd2f501384dd2df0b8f0288',1,'r_adc_e.h']]], + ['adc_5fe_5fwindow_5fb_5fmode_5ft',['adc_e_window_b_mode_t',['../group___a_d_c___e.html#ga647576a53ba70232efbd36994a8cd98c',1,'r_adc_e.h']]], + ['adc_5fe_5fwindow_5fcfg_5ft',['adc_e_window_cfg_t',['../group___a_d_c___e.html#structadc__e__window__cfg__t',1,'']]], + ['adc_5felc_5fctrl',['adc_elc_ctrl',['../group___a_d_c___e.html#a2001b0e3ee79d759d058d8ed20435133',1,'adc_e_extended_cfg_t']]], + ['adc_5fevent_5fcalibration_5fcomplete',['ADC_EVENT_CALIBRATION_COMPLETE',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ae8d9c9c99ceb10f095bb4449fd2706b1',1,'r_adc_api.h']]], + ['adc_5fevent_5fcalibration_5frequest',['ADC_EVENT_CALIBRATION_REQUEST',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ae30b20571a57953009f49eb5cbc2866a',1,'r_adc_api.h']]], + ['adc_5fevent_5fconversion_5fcomplete',['ADC_EVENT_CONVERSION_COMPLETE',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847aa3091bf90a88f96ed9b5a6ab499680bb',1,'r_adc_api.h']]], + ['adc_5fevent_5fconversion_5ferror',['ADC_EVENT_CONVERSION_ERROR',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a4d62358854590ae9bed21fc8c8c96e09',1,'r_adc_api.h']]], + ['adc_5fevent_5ffifo_5foverflow',['ADC_EVENT_FIFO_OVERFLOW',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a0df21824c256f4cb9689cb1d6a3dd91a',1,'r_adc_api.h']]], + ['adc_5fevent_5ffifo_5fread_5frequest',['ADC_EVENT_FIFO_READ_REQUEST',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a227823940dfc7793973e6716ec17742e',1,'r_adc_api.h']]], + ['adc_5fevent_5flimit_5fclip',['ADC_EVENT_LIMIT_CLIP',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ac42d84c9087c3228125a5a2ae90f958f',1,'r_adc_api.h']]], + ['adc_5fevent_5foverflow',['ADC_EVENT_OVERFLOW',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a214f2bd1b932acbaacba970b138f23d2',1,'r_adc_api.h']]], + ['adc_5fevent_5fscan_5fcomplete',['ADC_EVENT_SCAN_COMPLETE',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a32297df4b82ea56a5536bb03fe907e64',1,'r_adc_api.h']]], + ['adc_5fevent_5fscan_5fcomplete_5fgroup_5fb',['ADC_EVENT_SCAN_COMPLETE_GROUP_B',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a8f67ee666423bc068d379ae85da36252',1,'r_adc_api.h']]], + ['adc_5fevent_5fscan_5fcomplete_5fgroup_5fc',['ADC_EVENT_SCAN_COMPLETE_GROUP_C',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ab7538351ad7e4ed3d866212b0e3b3099',1,'r_adc_api.h']]], + ['adc_5fevent_5ft',['adc_event_t',['../group___a_d_c___a_p_i.html#gae2177d6e5bf43e3749cc60f835456847',1,'r_adc_api.h']]], + ['adc_5fevent_5fwindow_5fcompare_5fa',['ADC_EVENT_WINDOW_COMPARE_A',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a0194955f4f59f8d6952adc058539632b',1,'r_adc_api.h']]], + ['adc_5fevent_5fwindow_5fcompare_5fb',['ADC_EVENT_WINDOW_COMPARE_B',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ab32572630797968579adeed03f19bcd3',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f0',['ADC_GROUP_ID_0',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176af4886d3826fb26d4bbdfaeb2195a5ddc',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f1',['ADC_GROUP_ID_1',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a5affde6af0ba379220ade2c4ca8a027e',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f2',['ADC_GROUP_ID_2',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a3bbc61292808df4caf5c0991e7b9f73c',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f3',['ADC_GROUP_ID_3',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a10bc5348770837fad29ae361a75ede8e',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f4',['ADC_GROUP_ID_4',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a0dc20198ed1fcd90b6b5cee6da08677f',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f5',['ADC_GROUP_ID_5',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a4ce5371decbc45bfe70580f4d8717e39',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f6',['ADC_GROUP_ID_6',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176acc7f6d39b3a21eb846e58e1a8ce4142d',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f7',['ADC_GROUP_ID_7',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a21f524469d82b63154be5f2f1f9dd95d',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f8',['ADC_GROUP_ID_8',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a095b0310fe37230c34f3d1b4d48d4e42',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5ft',['adc_group_id_t',['../group___a_d_c___a_p_i.html#ga625267e574e3f26d9d55918652e91176',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f0',['ADC_GROUP_MASK_0',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebaeedbedf9fc1fc6055524220d6e0af60d',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f1',['ADC_GROUP_MASK_1',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebaf727cf72c6c097e87f3e02209f1c2f1f',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f2',['ADC_GROUP_MASK_2',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba434af3ad0c8079644a51035acd8fd835',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f3',['ADC_GROUP_MASK_3',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba584a4fb88b98b8689d5a64e104fcbc6b',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f4',['ADC_GROUP_MASK_4',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba8a271a13324d7b13e732aeef6b5ef0dc',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f5',['ADC_GROUP_MASK_5',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba298a89e90d290117e69acb7569409a8a',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f6',['ADC_GROUP_MASK_6',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebadd19ea2551df6c56813bf9d9dfa3d218',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f7',['ADC_GROUP_MASK_7',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba0b145ee64281e271a0c2b075484b175a',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f8',['ADC_GROUP_MASK_8',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebaad618fc3cf12d1bb5575659bb56ffb84',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5fall',['ADC_GROUP_MASK_ALL',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebafcbf5a874521ebcfb98323c2a7990847',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5fnone',['ADC_GROUP_MASK_NONE',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba6cc9000330017d217de6ca0e3eb70af5',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5ft',['adc_group_mask_t',['../group___a_d_c___a_p_i.html#gaee17c30275c1c9376cc485a62ea121eb',1,'r_adc_api.h']]], + ['adc_5finfo_5ft',['adc_info_t',['../group___a_d_c___a_p_i.html#structadc__info__t',1,'']]], + ['adc_5finstance_5ft',['adc_instance_t',['../group___a_d_c___a_p_i.html#structadc__instance__t',1,'']]], + ['adc_5fmode_5fcontinuous_5fscan',['ADC_MODE_CONTINUOUS_SCAN',['../group___a_d_c___a_p_i.html#gga760a8dafdcddcfadfea0aa3e01159164adb8344d57ee438ee90c65b79ff4f3e12',1,'r_adc_api.h']]], + ['adc_5fmode_5fgroup_5fscan',['ADC_MODE_GROUP_SCAN',['../group___a_d_c___a_p_i.html#gga760a8dafdcddcfadfea0aa3e01159164a39fdd1c003301890e59b5188a6cc6658',1,'r_adc_api.h']]], + ['adc_5fmode_5fsingle_5fscan',['ADC_MODE_SINGLE_SCAN',['../group___a_d_c___a_p_i.html#gga760a8dafdcddcfadfea0aa3e01159164a1ac4130959b24d8426fd8f59326a5630',1,'r_adc_api.h']]], + ['adc_5fmode_5ft',['adc_mode_t',['../group___a_d_c___a_p_i.html#ga760a8dafdcddcfadfea0aa3e01159164',1,'r_adc_api.h']]], + ['adc_5fresolution_5f10_5fbit',['ADC_RESOLUTION_10_BIT',['../group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaa24283bc621bcaa68a73c8eab142030b8',1,'r_adc_api.h']]], + ['adc_5fresolution_5f12_5fbit',['ADC_RESOLUTION_12_BIT',['../group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaab35c4dcc6cda85146a9ffd339c5de1c4',1,'r_adc_api.h']]], + ['adc_5fresolution_5f14_5fbit',['ADC_RESOLUTION_14_BIT',['../group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaa814e543d0745170516a09fb6de621ca8',1,'r_adc_api.h']]], + ['adc_5fresolution_5f16_5fbit',['ADC_RESOLUTION_16_BIT',['../group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaac28428ad60debb0ae5bfd0540c90f33c',1,'r_adc_api.h']]], + ['adc_5fresolution_5f24_5fbit',['ADC_RESOLUTION_24_BIT',['../group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaaebcd8848d34004d66f084b9f80a07d24',1,'r_adc_api.h']]], + ['adc_5fresolution_5f8_5fbit',['ADC_RESOLUTION_8_BIT',['../group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaa8ebd681650d751af22a7849be9ab8bc1',1,'r_adc_api.h']]], + ['adc_5fresolution_5ft',['adc_resolution_t',['../group___a_d_c___a_p_i.html#gaf88bfcbfc4a19c82f8bb423218d13cda',1,'r_adc_api.h']]], + ['adc_5fstart_5ftrigger_5fa',['adc_start_trigger_a',['../group___a_d_c___e.html#a642af1b42820cb4369fe31638fda33ce',1,'adc_e_extended_cfg_t']]], + ['adc_5fstart_5ftrigger_5fb',['adc_start_trigger_b',['../group___a_d_c___e.html#a84260f8c568691040fbb5c0a31e3b1f3',1,'adc_e_extended_cfg_t']]], + ['adc_5fstart_5ftrigger_5fc',['adc_start_trigger_c',['../group___a_d_c___e.html#a3b26e887178253580e298519f7f520e9',1,'adc_e_extended_cfg_t']]], + ['adc_5fstart_5ftrigger_5fc_5fenabled',['adc_start_trigger_c_enabled',['../group___a_d_c___e.html#a85b7d0f9f9a95aeaaca2550b57dbf352',1,'adc_e_extended_cfg_t']]], + ['adc_5fstate_5fcalibration_5fin_5fprogress',['ADC_STATE_CALIBRATION_IN_PROGRESS',['../group___a_d_c___a_p_i.html#gga2783ab2e29809bf0a50bc66c6fa8d3c6a4766863227ec2104751a15e3eb148d86',1,'r_adc_api.h']]], + ['adc_5fstate_5fidle',['ADC_STATE_IDLE',['../group___a_d_c___a_p_i.html#gga2783ab2e29809bf0a50bc66c6fa8d3c6a618306d7336575e80aa3d79865a52c2d',1,'r_adc_api.h']]], + ['adc_5fstate_5fscan_5fin_5fprogress',['ADC_STATE_SCAN_IN_PROGRESS',['../group___a_d_c___a_p_i.html#gga2783ab2e29809bf0a50bc66c6fa8d3c6abe1c11b191e48669cc5129aca45800d7',1,'r_adc_api.h']]], + ['adc_5fstate_5ft',['adc_state_t',['../group___a_d_c___a_p_i.html#ga2783ab2e29809bf0a50bc66c6fa8d3c6',1,'r_adc_api.h']]], + ['adc_5fstatus_5ft',['adc_status_t',['../group___a_d_c___a_p_i.html#structadc__status__t',1,'']]], ['adc_5ftrigger',['adc_trigger',['../group___g_p_t.html#aa39314cc7482a5855e27b0c2daa111ea',1,'gpt_extended_pwm_cfg_t']]], - ['addr_5fmode',['addr_mode',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#af4efbe8e4cb1c08ab54d9818ced03d75',1,'i2c_master_cfg_t']]], + ['adc_5ftrigger_5fasync_5fexternal',['ADC_TRIGGER_ASYNC_EXTERNAL',['../group___a_d_c___a_p_i.html#gga1ac380ffe2ebef256338616747d330e3a63f9a00e836c78964fa67c434a6718bc',1,'r_adc_api.h']]], + ['adc_5ftrigger_5fsoftware',['ADC_TRIGGER_SOFTWARE',['../group___a_d_c___a_p_i.html#gga1ac380ffe2ebef256338616747d330e3a627b041b2095033f96a9a97dc474d26a',1,'r_adc_api.h']]], + ['adc_5ftrigger_5fsync_5felc',['ADC_TRIGGER_SYNC_ELC',['../group___a_d_c___a_p_i.html#gga1ac380ffe2ebef256338616747d330e3a2a4fc2c9166f5013e45f534136a15990',1,'r_adc_api.h']]], + ['adc_5ftrigger_5ft',['adc_trigger_t',['../group___a_d_c___a_p_i.html#ga1ac380ffe2ebef256338616747d330e3',1,'r_adc_api.h']]], + ['add_5faverage_5fcount',['add_average_count',['../group___a_d_c___e.html#a4736acec261319aba40517a3be0c5182',1,'adc_e_extended_cfg_t']]], + ['add_5fmask',['add_mask',['../group___a_d_c___e.html#a7f0c336facf23a64f292eda3c287b402',1,'adc_e_channel_cfg_t']]], + ['addr_5fmode',['addr_mode',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#af4efbe8e4cb1c08ab54d9818ced03d75',1,'i2c_master_cfg_t::addr_mode()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a459e8abd8d66a321b5c56f12590e8354',1,'i2c_slave_cfg_t::addr_mode()']]], + ['address',['address',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a5120cdb55dcd4ce8da04eb8baa69254d',1,'spi_flash_direct_transfer_t']]], + ['address_5fbytes',['address_bytes',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ac9e56afeabf97f6a1642b7468a67cf25',1,'spi_flash_cfg_t']]], + ['address_5flength',['address_length',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a63de64208374fd3c6ea1db4ffb07111f',1,'spi_flash_direct_transfer_t']]], + ['adjustment_5fmode',['adjustment_mode',['../group___r_t_c___a_p_i.html#a16c0bd22c4022b133fc1eee5333086a9',1,'rtc_error_adjustment_cfg_t']]], + ['adjustment_5fperiod',['adjustment_period',['../group___r_t_c___a_p_i.html#af0318e2dbaf3a320504823c4cb1f2ce5',1,'rtc_error_adjustment_cfg_t']]], + ['adjustment_5ftype',['adjustment_type',['../group___r_t_c___a_p_i.html#a322799f85ff64bfe8d6dd4fd611e1ed7',1,'rtc_error_adjustment_cfg_t']]], + ['adjustment_5fvalue',['adjustment_value',['../group___r_t_c___a_p_i.html#a3953fbf4c2ae68580302f22001c8f89e',1,'rtc_error_adjustment_cfg_t']]], ['aiq',['aiq',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abcdbe1de7b8f7c882f5f7bdbb60a2274',1,'rm_zmod4xxx_oaq_1st_data_t']]], + ['alarm1_5fipl',['alarm1_ipl',['../group___r_t_c.html#ac36b179a4311fe95bde1820384dd35cc',1,'rtc_extended_cfg_t']]], + ['alarm1_5firq',['alarm1_irq',['../group___r_t_c.html#ae7f72a6fbe27e9a3ef60c99022798c9b',1,'rtc_extended_cfg_t']]], + ['alarm_5fipl',['alarm_ipl',['../group___r_t_c___a_p_i.html#a6a99d08314611e1fe129bef873c56ac2',1,'rtc_cfg_t']]], + ['alarm_5firq',['alarm_irq',['../group___r_t_c___a_p_i.html#aabad6d91d22b402ad2cbee664bd5c502',1,'rtc_cfg_t']]], ['algorithm_5fversion',['algorithm_version',['../structalgorithm__version.html',1,'']]], - ['ali_5firq',['ali_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a2c8ba3ce75de64703a61dd700ae6bcb6',1,'riic_master_extended_cfg_t']]] + ['ali_5firq',['ali_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a2c8ba3ce75de64703a61dd700ae6bcb6',1,'riic_master_extended_cfg_t::ali_irq()'],['../group___r_i_i_c___s_l_a_v_e.html#a55c817a372e45b76fca43326c627c33f',1,'riic_slave_extended_cfg_t::ali_irq()']]], + ['alignment',['alignment',['../group___a_d_c___a_p_i.html#aa36a14783685f411c4c0a7904a3de8eb',1,'adc_cfg_t']]], + ['assertion_5ftime',['assertion_time',['../group___s_c_i___b___u_a_r_t.html#ae2e7a853b139015cb777e556e9add242',1,'sci_b_uart_rs485_setting_t']]], + ['assigned_5faddress_5fphase_5fenable',['assigned_address_phase_enable',['../group___i3_c___b.html#a130da5bdcc977cc2ac80d2958ee0ed2c',1,'i3c_b_clock_stalling_t']]], + ['autocalibrate',['autoCalibrate',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ad04434e2c049da61d3389355d5961f31',1,'spi_flash_api_t']]], + ['average_5fcount',['average_count',['../group___t_s_u___b.html#a525f475e04de0b02bf01105495f9f474',1,'tsu_b_extended_cfg_t']]], + ['analog',['Analog',['../group___r_e_n_e_s_a_s___a_n_a_l_o_g___m_o_d_u_l_e_s.html',1,'']]] ]; diff --git a/search/all_10.js b/search/all_10.js index b77c225..c75402d 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -1,5 +1,67 @@ var searchData= [ + ['sensor',['Sensor',['../group___r_e_n_e_s_a_s___s_e_n_s_o_r___m_o_d_u_l_e_s.html',1,'']]], + ['storage',['Storage',['../group___r_e_n_e_s_a_s___s_t_o_r_a_g_e___m_o_d_u_l_e_s.html',1,'']]], + ['system',['System',['../group___r_e_n_e_s_a_s___s_y_s_t_e_m___m_o_d_u_l_e_s.html',1,'']]], + ['sampling_5ftime',['sampling_time',['../group___a_d_c___c.html#af94b7b8c31dab35dcb7bf1bfe1670d6d',1,'adc_c_extended_cfg_t']]], + ['scan_5fend_5fb_5fipl',['scan_end_b_ipl',['../group___a_d_c___a_p_i.html#ab82e85d4750158ef07146b6c8145e347',1,'adc_cfg_t']]], + ['scan_5fend_5fb_5firq',['scan_end_b_irq',['../group___a_d_c___a_p_i.html#aba6e98fa10321ce7c1b6a7173b0b0d8b',1,'adc_cfg_t']]], + ['scan_5fend_5fc_5fipl',['scan_end_c_ipl',['../group___a_d_c___a_p_i.html#ab5e230f8dd33c81d381547b0eec041af',1,'adc_cfg_t']]], + ['scan_5fend_5fc_5firq',['scan_end_c_irq',['../group___a_d_c___a_p_i.html#a6ac6c18163aca50f9dc288ac08f2edee',1,'adc_cfg_t']]], + ['scan_5fend_5fipl',['scan_end_ipl',['../group___a_d_c___a_p_i.html#aa41f2d4a44ef47bfa9c33777cc7ff35a',1,'adc_cfg_t']]], + ['scan_5fend_5firq',['scan_end_irq',['../group___a_d_c___a_p_i.html#ad4835aef4411a9e3f3f68bf0a79c18f1',1,'adc_cfg_t']]], + ['scan_5fmask',['scan_mask',['../group___a_d_c___c.html#a1124a6766edf4954d95d01d6d8e46548',1,'adc_c_channel_cfg_t::scan_mask()'],['../group___a_d_c___e.html#af8597107fafe5604cb585525909755e3',1,'adc_e_channel_cfg_t::scan_mask()']]], + ['scan_5fmask_5fgroup_5fb',['scan_mask_group_b',['../group___a_d_c___e.html#a511e34c7b68581d758834dbb70202595',1,'adc_e_channel_cfg_t']]], + ['scan_5fmask_5fgroup_5fc',['scan_mask_group_c',['../group___a_d_c___e.html#aefe48cc53f1703d427fbef6177a008b9',1,'adc_e_channel_cfg_t']]], + ['scancfg',['scanCfg',['../group___a_d_c___a_p_i.html#a44289d7822720544751eb22e3d7d38ea',1,'adc_api_t']]], + ['scangroupstart',['scanGroupStart',['../group___a_d_c___a_p_i.html#aeae126b8a09e1ec34e8e3afb4a3344ff',1,'adc_api_t']]], + ['scanstart',['scanStart',['../group___a_d_c___a_p_i.html#a2f9e091ca57ca2c58262f66ab5c341c9',1,'adc_api_t']]], + ['scanstatusget',['scanStatusGet',['../group___a_d_c___a_p_i.html#ae54bb53ea323ac24a3b63769e0196a57',1,'adc_api_t']]], + ['scanstop',['scanStop',['../group___a_d_c___a_p_i.html#a90346240a89666209a78bdcb020278bd',1,'adc_api_t']]], + ['sci_5fb_5fbaud_5fsetting_5ft',['sci_b_baud_setting_t',['../group___s_c_i___b___u_a_r_t.html#structsci__b__baud__setting__t',1,'']]], + ['sci_5fb_5fclk_5fsrc_5ft',['sci_b_clk_src_t',['../group___s_c_i___b___u_a_r_t.html#ga6c7272b892e958ee32afb345eb1d1bd0',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fi2c_5fclock_5fsettings_5ft',['sci_b_i2c_clock_settings_t',['../group___s_c_i___b___i2_c.html#structsci__b__i2c__clock__settings__t',1,'']]], + ['sci_5fb_5fi2c_5fclock_5fsource_5ft',['sci_b_i2c_clock_source_t',['../group___s_c_i___b___i2_c.html#ga0209d1279b18f095fb8147fee7933c55',1,'r_sci_b_i2c.h']]], + ['sci_5fb_5fi2c_5fextended_5fcfg_5ft',['sci_b_i2c_extended_cfg_t',['../group___s_c_i___b___i2_c.html#structsci__b__i2c__extended__cfg__t',1,'']]], + ['sci_5fb_5fi2c_5finstance_5fctrl_5ft',['sci_b_i2c_instance_ctrl_t',['../group___s_c_i___b___i2_c.html#structsci__b__i2c__instance__ctrl__t',1,'']]], + ['sci_5fb_5fuart_5fclock_5fext16x',['SCI_B_UART_CLOCK_EXT16X',['../group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0ae6341abde349fd5354d9fccfd3b82448',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fclock_5fext8x',['SCI_B_UART_CLOCK_EXT8X',['../group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0acf92ad58648eb51823b24f83fe3831eb',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fclock_5fint',['SCI_B_UART_CLOCK_INT',['../group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0ae7e751b6add47042b86579de38c7a594',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fclock_5fint_5fwith_5fbaudrate_5foutput',['SCI_B_UART_CLOCK_INT_WITH_BAUDRATE_OUTPUT',['../group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0a84f9bc793954950b01385a933f8b588f',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fextended_5fcfg_5ft',['sci_b_uart_extended_cfg_t',['../group___s_c_i___b___u_a_r_t.html#structsci__b__uart__extended__cfg__t',1,'']]], + ['sci_5fb_5fuart_5fflow_5fcontrol_5fcts',['SCI_B_UART_FLOW_CONTROL_CTS',['../group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89a6336e452a610c15b03b15585894b3bed',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fflow_5fcontrol_5fctsrts',['SCI_B_UART_FLOW_CONTROL_CTSRTS',['../group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89aabd2461e141009a78626768f0ac07583',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fflow_5fcontrol_5fhardware_5fctsrts',['SCI_B_UART_FLOW_CONTROL_HARDWARE_CTSRTS',['../group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89ab135f56a360b5266eb0988bb59650276',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fflow_5fcontrol_5frts',['SCI_B_UART_FLOW_CONTROL_RTS',['../group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89a8578df672d3b0f890b958db33d0e25b2',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fflow_5fcontrol_5ft',['sci_b_uart_flow_control_t',['../group___s_c_i___b___u_a_r_t.html#gac7f2f9b2d11f95e1f0c627b7523bfa89',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fhalf_5fdata_5fdisable',['SCI_B_UART_HALF_DATA_DISABLE',['../group___s_c_i___b___u_a_r_t.html#gga3bcc863f7888e3aaee224f8854988414a637f7cea2b6601327efb3c85365a4dbd',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fhalf_5fdata_5fenable',['SCI_B_UART_HALF_DATA_ENABLE',['../group___s_c_i___b___u_a_r_t.html#gga3bcc863f7888e3aaee224f8854988414a4e3532db5f60d5a8779e0a5b6f1813f4',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fhalf_5fdata_5fenable_5ft',['sci_b_uart_half_data_enable_t',['../group___s_c_i___b___u_a_r_t.html#ga3bcc863f7888e3aaee224f8854988414',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fhalf_5fdata_5fsetting_5ft',['sci_b_uart_half_data_setting_t',['../group___s_c_i___b___u_a_r_t.html#structsci__b__uart__half__data__setting__t',1,'']]], + ['sci_5fb_5fuart_5finstance_5fctrl_5ft',['sci_b_uart_instance_ctrl_t',['../group___s_c_i___b___u_a_r_t.html#structsci__b__uart__instance__ctrl__t',1,'']]], + ['sci_5fb_5fuart_5fnoise_5fcancellation_5fdisable',['SCI_B_UART_NOISE_CANCELLATION_DISABLE',['../group___s_c_i___b___u_a_r_t.html#gga0fc68d0039faa0c546bc0a3e19f64934a21e61dfcb71ea33310c7f1aeada055a2',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fnoise_5fcancellation_5fenable',['SCI_B_UART_NOISE_CANCELLATION_ENABLE',['../group___s_c_i___b___u_a_r_t.html#gga0fc68d0039faa0c546bc0a3e19f64934a970ad9148c96d1db288edc7a370c20ad',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fnoise_5fcancellation_5ft',['sci_b_uart_noise_cancellation_t',['../group___s_c_i___b___u_a_r_t.html#ga0fc68d0039faa0c546bc0a3e19f64934',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frs485_5fde_5fpolarity_5fhigh',['SCI_B_UART_RS485_DE_POLARITY_HIGH',['../group___s_c_i___b___u_a_r_t.html#gga0563689caceebd791581b050e4961351a86f62195b4aa840c0d10ac01299fe4cd',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frs485_5fde_5fpolarity_5flow',['SCI_B_UART_RS485_DE_POLARITY_LOW',['../group___s_c_i___b___u_a_r_t.html#gga0563689caceebd791581b050e4961351a18e7bfd946135c6768a8918b7d7dd954',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frs485_5fde_5fpolarity_5ft',['sci_b_uart_rs485_de_polarity_t',['../group___s_c_i___b___u_a_r_t.html#ga0563689caceebd791581b050e4961351',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frs485_5fdisable',['SCI_B_UART_RS485_DISABLE',['../group___s_c_i___b___u_a_r_t.html#ggacab2c97394068299908eb68925eb9fc2aecd04009e4cd1a48fabc0df33c320e91',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frs485_5fenable',['SCI_B_UART_RS485_ENABLE',['../group___s_c_i___b___u_a_r_t.html#ggacab2c97394068299908eb68925eb9fc2add22e1606ec4ab3accaa55c69d8f657a',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frs485_5fenable_5ft',['sci_b_uart_rs485_enable_t',['../group___s_c_i___b___u_a_r_t.html#gacab2c97394068299908eb68925eb9fc2',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frs485_5fsetting_5ft',['sci_b_uart_rs485_setting_t',['../group___s_c_i___b___u_a_r_t.html#structsci__b__uart__rs485__setting__t',1,'']]], + ['sci_5fb_5fuart_5frx_5ffifo_5ftrigger_5f1',['SCI_B_UART_RX_FIFO_TRIGGER_1',['../group___s_c_i___b___u_a_r_t.html#gga43307f95dde50ba9e4cf9b25f0d31d84aa8f1e72bd48f194a0cd82112024850e1',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frx_5ffifo_5ftrigger_5fmax',['SCI_B_UART_RX_FIFO_TRIGGER_MAX',['../group___s_c_i___b___u_a_r_t.html#gga43307f95dde50ba9e4cf9b25f0d31d84a73839ba4bf30c0e127ba11f0ba4130a2',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frx_5ffifo_5ftrigger_5ft',['sci_b_uart_rx_fifo_trigger_t',['../group___s_c_i___b___u_a_r_t.html#ga43307f95dde50ba9e4cf9b25f0d31d84',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fstart_5fbit_5fdetect_5ft',['sci_b_uart_start_bit_detect_t',['../group___s_c_i___b___u_a_r_t.html#ga12439cb11f88f10d53b36e6fbf966ce6',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fstart_5fbit_5ffalling_5fedge',['SCI_B_UART_START_BIT_FALLING_EDGE',['../group___s_c_i___b___u_a_r_t.html#gga12439cb11f88f10d53b36e6fbf966ce6aa0a9f4e8ad3d8ed3a85359792e082f3a',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fstart_5fbit_5flow_5flevel',['SCI_B_UART_START_BIT_LOW_LEVEL',['../group___s_c_i___b___u_a_r_t.html#gga12439cb11f88f10d53b36e6fbf966ce6a966b25af49006a6c4ddc1979382f8189',1,'r_sci_b_uart.h']]], + ['sci_5fuart_5frs485_5fde_5fpolarity_5fhigh',['SCI_UART_RS485_DE_POLARITY_HIGH',['../group___s_c_i_f___u_a_r_t.html#gga0bd2440ef30f2feca9a2d129989bffcea7cfd9e1ff7eca0657388f7cf9ce708fc',1,'r_scif_uart.h']]], + ['sci_5fuart_5frs485_5fde_5fpolarity_5flow',['SCI_UART_RS485_DE_POLARITY_LOW',['../group___s_c_i_f___u_a_r_t.html#gga0bd2440ef30f2feca9a2d129989bffceac1a061d1cb22d6b336e23185af20e089',1,'r_scif_uart.h']]], + ['sci_5fuart_5frs485_5fde_5fpolarity_5ft',['sci_uart_rs485_de_polarity_t',['../group___s_c_i_f___u_a_r_t.html#ga0bd2440ef30f2feca9a2d129989bffce',1,'r_scif_uart.h']]], + ['sci_5fuart_5frs485_5fdisable',['SCI_UART_RS485_DISABLE',['../group___s_c_i_f___u_a_r_t.html#gga9522502f434bcaa2bbaf9cb1321ce542aa05bec8fad1420e777b184f55300b484',1,'r_scif_uart.h']]], + ['sci_5fuart_5frs485_5fenable',['SCI_UART_RS485_ENABLE',['../group___s_c_i_f___u_a_r_t.html#gga9522502f434bcaa2bbaf9cb1321ce542acd3ee665f5225c5bb017bb64d33cf127',1,'r_scif_uart.h']]], + ['sci_5fuart_5frs485_5fenable_5ft',['sci_uart_rs485_enable_t',['../group___s_c_i_f___u_a_r_t.html#ga9522502f434bcaa2bbaf9cb1321ce542',1,'r_scif_uart.h']]], + ['sci_5fuart_5frs485_5fsetting_5ft',['sci_uart_rs485_setting_t',['../group___s_c_i_f___u_a_r_t.html#structsci__uart__rs485__setting__t',1,'']]], ['scif_5fbaud_5fsetting_5ft',['scif_baud_setting_t',['../group___s_c_i_f___u_a_r_t.html#structscif__baud__setting__t',1,'']]], ['scif_5fclk_5fsrc_5ft',['scif_clk_src_t',['../group___s_c_i_f___u_a_r_t.html#gaa31fbf8041a381d6da9c454be58ad613',1,'r_scif_uart.h']]], ['serial_20communications_20interface_20_28scif_29_20uart_20_28r_5fscif_5fuart_29',['Serial Communications Interface (SCIF) UART (r_scif_uart)',['../group___s_c_i_f___u_a_r_t.html',1,'']]], @@ -47,27 +109,118 @@ var searchData= ['scif_5fuart_5frts_5ftrigger_5f4',['SCIF_UART_RTS_TRIGGER_4',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ab8da90640e88e64a86e25159a0b8683e',1,'r_scif_uart.h']]], ['scif_5fuart_5frts_5ftrigger_5f6',['SCIF_UART_RTS_TRIGGER_6',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ad36001398f868aef10e35c4992f37afb',1,'r_scif_uart.h']]], ['scif_5fuart_5frts_5ftrigger_5f8',['SCIF_UART_RTS_TRIGGER_8',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89abad73882425c2d7ce6934938f6dcaebc',1,'r_scif_uart.h']]], + ['scif_5fuart_5frts_5ftrigger_5fdisable',['SCIF_UART_RTS_TRIGGER_DISABLE',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a6568db3143c7183716313ed5b5825713',1,'r_scif_uart.h']]], ['scif_5fuart_5frts_5ftrigger_5ft',['scif_uart_rts_trigger_t',['../group___s_c_i_f___u_a_r_t.html#gaaee66fa30e6f9f0efb538ecb91a9ad89',1,'r_scif_uart.h']]], + ['sdet_5fipl',['sdet_ipl',['../group___p_d_m___a_p_i.html#a346098539bddc9e3c5228e7360553a9e',1,'pdm_cfg_t']]], + ['sdet_5firq',['sdet_irq',['../group___p_d_m___a_p_i.html#ae4b909dedca5d5099654a1342ae76d20',1,'pdm_cfg_t']]], + ['sec_5fmatch',['sec_match',['../group___r_t_c___a_p_i.html#ab654c3b3c410b61980950ddf0581cd27',1,'rtc_alarm_time_t']]], ['securefault_5fhandler',['SecureFault_Handler',['../group___b_s_p___m_c_u.html#gacafcf7aae8e82ba63c6d74db1f574aad',1,'startups.c']]], - ['semaphore_5ftimeout',['semaphore_timeout',['../group___r_m___c_o_m_m_s___a_p_i.html#a5376df7fa8ffa67c59162a527046a7e0',1,'rm_comms_cfg_t::semaphore_timeout()'],['../group___r_m___o_b1203___a_p_i.html#a9ad151287228fa18a0314b5869cd876a',1,'rm_ob1203_cfg_t::semaphore_timeout()']]], - ['send_5ftype',['send_type',['../group___m_h_u___n_s.html#ae91cb79beb29ca1cb2aa807962dc988e',1,'mhu_ns_instance_ctrl_t::send_type()'],['../group___m_h_u___s.html#a4c3b32cb29fa8cc15747360380fa4e82',1,'mhu_s_instance_ctrl_t::send_type()']]], + ['semaphore_5ftimeout',['semaphore_timeout',['../group___r_m___c_o_m_m_s___a_p_i.html#a5376df7fa8ffa67c59162a527046a7e0',1,'rm_comms_cfg_t']]], + ['send_5ftype',['send_type',['../group___m_h_u___b___n_s.html#a644305cfbb2917f04ceeea349b8849a6',1,'mhu_b_ns_instance_ctrl_t::send_type()'],['../group___m_h_u___b___s.html#ac6ee77183a51d7a53d2f9568318fda9b',1,'mhu_b_s_instance_ctrl_t::send_type()'],['../group___m_h_u___n_s.html#ae91cb79beb29ca1cb2aa807962dc988e',1,'mhu_ns_instance_ctrl_t::send_type()'],['../group___m_h_u___s.html#a4c3b32cb29fa8cc15747360380fa4e82',1,'mhu_s_instance_ctrl_t::send_type()']]], ['sensoridget',['sensorIdGet',['../group___r_m___h_s300_x___a_p_i.html#a88c8aa8e31fa829fb91cbae763baa284',1,'rm_hs300x_api_t']]], - ['slave',['slave',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#adb20031cbc34b2595676ff8004e49448',1,'i2c_master_cfg_t']]], + ['short_5fcircuit_5fcount_5fh',['short_circuit_count_h',['../group___p_d_m.html#a74236150297943f2448c63624550ca8e',1,'pdm_extended_cfg_t']]], + ['short_5fcircuit_5fcount_5fl',['short_circuit_count_l',['../group___p_d_m.html#a173087f61b03fcc91f7f3dd2215ae0d5',1,'pdm_extended_cfg_t']]], + ['short_5fcircuit_5fdetection_5fenable',['short_circuit_detection_enable',['../group___p_d_m.html#af817e528f5ff2e362fb4b550d32dc347',1,'pdm_extended_cfg_t']]], + ['sinc_5ffilter_5fmode',['sinc_filter_mode',['../group___p_d_m.html#a41d1c3d3272bd0eb06a52b46643300e1',1,'pdm_extended_cfg_t']]], + ['sincdec',['sincdec',['../group___p_d_m.html#a765c7cf7a108dbfedcca720f616d5a2e',1,'pdm_extended_cfg_t']]], + ['sincrng',['sincrng',['../group___p_d_m.html#a0c16174f6a3b0f80300db586bd8a8ed5',1,'pdm_extended_cfg_t']]], + ['size',['size',['../group___s_p_i___f_l_a_s_h___a_p_i.html#afb42b93f396ec30b863646150e9bb91d',1,'spi_flash_erase_command_t']]], + ['slave',['slave',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#adb20031cbc34b2595676ff8004e49448',1,'i2c_master_cfg_t::slave()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a54f03c15c476b1e03c2e09232db9b92f',1,'i2c_slave_cfg_t::slave()']]], + ['slave_5fcommand_5fresponse_5finfo',['slave_command_response_info',['../group___i3_c___b.html#a0f2fd857b12b9284dddf430463764016',1,'i3c_b_extended_cfg_t']]], + ['slave_5finfo',['slave_info',['../group___i3_c___a_p_i.html#adfe6b41d24ce5d158df818ab5591b88a',1,'i3c_device_cfg_t']]], ['slaveaddressset',['slaveAddressSet',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a6e1d2e41f4dc058c06c1f5aae0c7bce5',1,'i2c_master_api_t']]], + ['slavestatusset',['slaveStatusSet',['../group___i3_c___a_p_i.html#a39518a413d0c9056e41d4da97ce3884e',1,'i3c_api_t']]], + ['slope_5fmicrovolts',['slope_microvolts',['../group___a_d_c___a_p_i.html#abaf272ea2350e486390dc250ae8f9af3',1,'adc_info_t']]], + ['snfr_5fvalue',['snfr_value',['../group___s_c_i___b___i2_c.html#a02a85aeaa241753166390cb796c7ead4',1,'sci_b_i2c_clock_settings_t']]], + ['snoop_5faddress',['snoop_address',['../group___c_r_c___a_p_i.html#af1f280c0dc14a01fa8c8a3aa1f76feeb',1,'crc_cfg_t']]], + ['snoopdisable',['snoopDisable',['../group___c_r_c___a_p_i.html#ab171c85217e275bda7426309bd832b02',1,'crc_api_t']]], + ['snoopenable',['snoopEnable',['../group___c_r_c___a_p_i.html#a4d4efcfb06b59c92801320f31e8f2eb7',1,'crc_api_t']]], + ['softwareeventgenerate',['softwareEventGenerate',['../group___e_l_c___a_p_i.html#a5201eaeb1fbc56f6c78b9db34fb580e3',1,'elc_api_t']]], ['softwarestart',['softwareStart',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a394ddea028013153254bafa12115dce2',1,'transfer_api_t']]], ['softwarestop',['softwareStop',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a77207de2ae81eab58858fd28ae88df06',1,'transfer_api_t']]], + ['sound_5fdetection_5fenable',['sound_detection_enable',['../group___p_d_m.html#a99ccd7247027a766a05b32d0784489d8',1,'pdm_extended_cfg_t']]], + ['sound_5fdetection_5flower_5flimit',['sound_detection_lower_limit',['../group___p_d_m.html#af5d7e83eac366ab370978913e0672924',1,'pdm_extended_cfg_t']]], + ['sound_5fdetection_5fupper_5flimit',['sound_detection_upper_limit',['../group___p_d_m.html#a7975bdb24b891b930432ddd695312536',1,'pdm_extended_cfg_t']]], ['source_5fdiv',['source_div',['../group___t_i_m_e_r___a_p_i.html#a592d3bb6a865ababe1c433ab7b83aa48',1,'timer_cfg_t']]], - ['spbr',['spbr',['../group___r_s_p_i.html#aa3d8783d295b5448fcc8dd2de1201169',1,'rspi_rspck_div_setting_t']]], - ['spck_5fdelay',['spck_delay',['../group___r_s_p_i.html#a0cbb7690023ca0e3a82dd9acf79e34f3',1,'rspi_extended_cfg_t']]], - ['spck_5fdiv',['spck_div',['../group___r_s_p_i.html#ab1dfe38550f42599c7c40f7af8a6d7c7',1,'rspi_extended_cfg_t']]], + ['sp_5firq',['sp_irq',['../group___i3_c___b.html#aeb148883da18117b256353b35b17cbe6',1,'i3c_b_extended_cfg_t']]], + ['spbr',['spbr',['../group___r_s_p_i.html#aa3d8783d295b5448fcc8dd2de1201169',1,'rspi_rspck_div_setting_t::spbr()'],['../group___s_p_i___b.html#a67df9d0b11ff15890c138596faaa6c03',1,'rspck_div_setting_t::spbr()']]], + ['spck_5fdelay',['spck_delay',['../group___r_s_p_i.html#a0cbb7690023ca0e3a82dd9acf79e34f3',1,'rspi_extended_cfg_t::spck_delay()'],['../group___s_p_i___b.html#aa76a96bdfe3843e023c076e906cdedbb',1,'spi_b_extended_cfg_t::spck_delay()']]], + ['spck_5fdiv',['spck_div',['../group___r_s_p_i.html#ab1dfe38550f42599c7c40f7af8a6d7c7',1,'rspi_extended_cfg_t::spck_div()'],['../group___s_p_i___b.html#a5e759f1a2e0e50733ffe773b84e009b0',1,'spi_b_extended_cfg_t::spck_div()']]], ['spi_20interface',['SPI Interface',['../group___s_p_i___a_p_i.html',1,'']]], ['spi_5fapi_5ft',['spi_api_t',['../group___s_p_i___a_p_i.html#structspi__api__t',1,'']]], + ['spi_20_28r_5fspi_5fb_29',['SPI (r_spi_b)',['../group___s_p_i___b.html',1,'']]], + ['spi_5fb_5fbyte_5fswap_5fdisable',['SPI_B_BYTE_SWAP_DISABLE',['../group___s_p_i___b.html#ggac08d1276c78868e2844221679e6be657a6d5c072358543e275822669ab01f3cce',1,'r_spi_b.h']]], + ['spi_5fb_5fbyte_5fswap_5fenable',['SPI_B_BYTE_SWAP_ENABLE',['../group___s_p_i___b.html#ggac08d1276c78868e2844221679e6be657ac9e89947b2b88db4111a3338b6a0213d',1,'r_spi_b.h']]], + ['spi_5fb_5fbyte_5fswap_5ft',['spi_b_byte_swap_t',['../group___s_p_i___b.html#gac08d1276c78868e2844221679e6be657',1,'r_spi_b.h']]], + ['spi_5fb_5fclock_5fsource_5ft',['spi_b_clock_source_t',['../group___s_p_i___b.html#gabb41b27e51f28d09548219c18435346b',1,'r_spi_b.h']]], + ['spi_5fb_5fcommunication_5ffull_5fduplex',['SPI_B_COMMUNICATION_FULL_DUPLEX',['../group___s_p_i___b.html#ggae6d270a0823aeddcacb4a5006546e391ae3954204fe4e76df8af7fcf26786f861',1,'r_spi_b.h']]], + ['spi_5fb_5fcommunication_5ft',['spi_b_communication_t',['../group___s_p_i___b.html#gae6d270a0823aeddcacb4a5006546e391',1,'r_spi_b.h']]], + ['spi_5fb_5fcommunication_5ftransmit_5fonly',['SPI_B_COMMUNICATION_TRANSMIT_ONLY',['../group___s_p_i___b.html#ggae6d270a0823aeddcacb4a5006546e391af257ec37578d4668398933881df14b13',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f1',['SPI_B_DELAY_COUNT_1',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea731a04cd52441636e5caaebaae3ea515',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f2',['SPI_B_DELAY_COUNT_2',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea49b6fe18afd4d62f4aea24c3fdac48d2',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f3',['SPI_B_DELAY_COUNT_3',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea4e646f9d36c3b20d6cb0974e7741e3f5',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f4',['SPI_B_DELAY_COUNT_4',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea273da42218915f084f5167cf6d0605b8',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f5',['SPI_B_DELAY_COUNT_5',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea76b1672b4ffcee90924aa69e2faa407d',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f6',['SPI_B_DELAY_COUNT_6',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea679f5372399b3a86e5ba849f4db0504b',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f7',['SPI_B_DELAY_COUNT_7',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea93cd345b5c636461c54b93905fd35ba9',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f8',['SPI_B_DELAY_COUNT_8',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea54a1d1391831fd7afe9fa1839370665d',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5ft',['spi_b_delay_count_t',['../group___s_p_i___b.html#ga355039269814474fa2d7a016207df18e',1,'r_spi_b.h']]], + ['spi_5fb_5fextended_5fcfg_5ft',['spi_b_extended_cfg_t',['../group___s_p_i___b.html#structspi__b__extended__cfg__t',1,'']]], + ['spi_5fb_5finstance_5fctrl_5ft',['spi_b_instance_ctrl_t',['../group___s_p_i___b.html#structspi__b__instance__ctrl__t',1,'']]], + ['spi_5fb_5fmosi_5fidle_5fvalue_5ffixing_5fdisable',['SPI_B_MOSI_IDLE_VALUE_FIXING_DISABLE',['../group___s_p_i___b.html#gga566538943bf7a87f8ba8add6616d41dba84ed2b07cb18a4e99da47e9d579d7186',1,'r_spi_b.h']]], + ['spi_5fb_5fmosi_5fidle_5fvalue_5ffixing_5fhigh',['SPI_B_MOSI_IDLE_VALUE_FIXING_HIGH',['../group___s_p_i___b.html#gga566538943bf7a87f8ba8add6616d41dba34d640ed44fb4472192b408225814c8e',1,'r_spi_b.h']]], + ['spi_5fb_5fmosi_5fidle_5fvalue_5ffixing_5flow',['SPI_B_MOSI_IDLE_VALUE_FIXING_LOW',['../group___s_p_i___b.html#gga566538943bf7a87f8ba8add6616d41dbadcee5907d986759f1f6d761c093bda65',1,'r_spi_b.h']]], + ['spi_5fb_5fmosi_5fidle_5fvalue_5ffixing_5ft',['spi_b_mosi_idle_value_fixing_t',['../group___s_p_i___b.html#ga566538943bf7a87f8ba8add6616d41db',1,'r_spi_b.h']]], + ['spi_5fb_5fparity_5fmode_5fdisable',['SPI_B_PARITY_MODE_DISABLE',['../group___s_p_i___b.html#gga500334da91202c65f50e5ba4cef38dcfa9a6b54da3fd6b5d0621e95e431582fde',1,'r_spi_b.h']]], + ['spi_5fb_5fparity_5fmode_5feven',['SPI_B_PARITY_MODE_EVEN',['../group___s_p_i___b.html#gga500334da91202c65f50e5ba4cef38dcfa9ce206b45bd35f5038a68ffc58573bdb',1,'r_spi_b.h']]], + ['spi_5fb_5fparity_5fmode_5fodd',['SPI_B_PARITY_MODE_ODD',['../group___s_p_i___b.html#gga500334da91202c65f50e5ba4cef38dcfa7e2ae6f701908c5a9e8c2e791c985222',1,'r_spi_b.h']]], + ['spi_5fb_5fparity_5ft',['spi_b_parity_t',['../group___s_p_i___b.html#ga500334da91202c65f50e5ba4cef38dcf',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5flevel_5fkeep_5fdisable',['SPI_B_SSL_LEVEL_KEEP_DISABLE',['../group___s_p_i___b.html#gga8232020978a99300962810b2e9f9dc86a74c4d474dc8844704917781a861159aa',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5flevel_5fkeep_5fenable',['SPI_B_SSL_LEVEL_KEEP_ENABLE',['../group___s_p_i___b.html#gga8232020978a99300962810b2e9f9dc86af7408a6172952573cc49aae43aff1a43',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5flevel_5fkeep_5ft',['spi_b_ssl_level_keep_t',['../group___s_p_i___b.html#ga8232020978a99300962810b2e9f9dc86',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fmode_5fclk_5fsyn',['SPI_B_SSL_MODE_CLK_SYN',['../group___s_p_i___b.html#ggaacc78eca6792fd5aeb2aef6a458d8fb7a7f839e42cba15c37a4698c894630739b',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fmode_5fspi',['SPI_B_SSL_MODE_SPI',['../group___s_p_i___b.html#ggaacc78eca6792fd5aeb2aef6a458d8fb7a0cad981405018e399b84bce877574709',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fmode_5ft',['spi_b_ssl_mode_t',['../group___s_p_i___b.html#gaacc78eca6792fd5aeb2aef6a458d8fb7',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fpolarity_5ft',['spi_b_ssl_polarity_t',['../group___s_p_i___b.html#gaaaaa1d37089a7f8d222de49d8295c116',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fselect_5fssl0',['SPI_B_SSL_SELECT_SSL0',['../group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373ad96087ca4208105609349dab7e3b2cc4',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fselect_5fssl1',['SPI_B_SSL_SELECT_SSL1',['../group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373a881b605b37191ce8363c1e34bae1bc23',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fselect_5fssl2',['SPI_B_SSL_SELECT_SSL2',['../group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373aeb71783e644812cc42d83f59780ac8e4',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fselect_5fssl3',['SPI_B_SSL_SELECT_SSL3',['../group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373a9c1720bf8ab08c5ba6f54fabaa2030f3',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fselect_5ft',['spi_b_ssl_select_t',['../group___s_p_i___b.html#ga3d063bb158a1005df5c7bde81538b373',1,'r_spi_b.h']]], + ['spi_5fb_5fsslp_5fhigh',['SPI_B_SSLP_HIGH',['../group___s_p_i___b.html#ggaaaaa1d37089a7f8d222de49d8295c116ace10a6e8df5d3a4140ac10cd1a0b293d',1,'r_spi_b.h']]], + ['spi_5fb_5fsslp_5flow',['SPI_B_SSLP_LOW',['../group___s_p_i___b.html#ggaaaaa1d37089a7f8d222de49d8295c116a17d87ee36cef5eb5820a80a88de4138b',1,'r_spi_b.h']]], ['spi_5fbit_5forder_5flsb_5ffirst',['SPI_BIT_ORDER_LSB_FIRST',['../group___s_p_i___a_p_i.html#gga90f5b39d4872c0c09255af5dcea6cd3ea8b9afce8db1ee080e7f9d65aa1aaeae5',1,'r_spi_api.h']]], ['spi_5fbit_5forder_5fmsb_5ffirst',['SPI_BIT_ORDER_MSB_FIRST',['../group___s_p_i___a_p_i.html#gga90f5b39d4872c0c09255af5dcea6cd3ea2f62df128ff20f3a9632c7f72732491a',1,'r_spi_api.h']]], ['spi_5fbit_5forder_5ft',['spi_bit_order_t',['../group___s_p_i___a_p_i.html#ga90f5b39d4872c0c09255af5dcea6cd3e',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f10_5fbits',['SPI_BIT_WIDTH_10_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf1aefd864f4f60e49990d4fad936ce21',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f11_5fbits',['SPI_BIT_WIDTH_11_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda88f58430f3fecf9a39ec42943e0bb733',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f12_5fbits',['SPI_BIT_WIDTH_12_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda1a4f404e28d648b608c5711b5552090b',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f13_5fbits',['SPI_BIT_WIDTH_13_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda75ce94ca33921b755ff60ae3cf781d2a',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f14_5fbits',['SPI_BIT_WIDTH_14_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda8de43c8612ae97eaf447c95718e7f461',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f15_5fbits',['SPI_BIT_WIDTH_15_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda05c6f46ea4bb0182d526a6bf451d68e1',1,'r_spi_api.h']]], ['spi_5fbit_5fwidth_5f16_5fbits',['SPI_BIT_WIDTH_16_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda62f8d41fec9f532ac41463037534e582',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f17_5fbits',['SPI_BIT_WIDTH_17_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaaf752ab8e386cd474ee33d83df10ad88',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f18_5fbits',['SPI_BIT_WIDTH_18_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda0f15c66b4564dce0f4811d754186ad12',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f19_5fbits',['SPI_BIT_WIDTH_19_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf8e4023bcac026b1d1930114105da401',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f20_5fbits',['SPI_BIT_WIDTH_20_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaa0e0e171fd2f36e3fa41cfb960842396',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f21_5fbits',['SPI_BIT_WIDTH_21_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdad0a9bce1bfca6895716ee32d198f949d',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f22_5fbits',['SPI_BIT_WIDTH_22_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda2b1e938b3bb827bcacb1a6d74f4c60f7',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f23_5fbits',['SPI_BIT_WIDTH_23_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda303f3f218214fd2a69e4fc2511974024',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f24_5fbits',['SPI_BIT_WIDTH_24_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda5696f5183bed267a4d0023bdc19bb357',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f25_5fbits',['SPI_BIT_WIDTH_25_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda6d44c4678bc27af2e39a8a22e78e6cf0',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f26_5fbits',['SPI_BIT_WIDTH_26_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda56b072a3333dd1637f9b1488f7fb208b',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f27_5fbits',['SPI_BIT_WIDTH_27_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda8df31a66c303df4aba56807aae14c4c9',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f28_5fbits',['SPI_BIT_WIDTH_28_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda11d6d5a759ae229607060f7cf6d8102d',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f29_5fbits',['SPI_BIT_WIDTH_29_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda09bb056981764315ea1d3f979f453129',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f30_5fbits',['SPI_BIT_WIDTH_30_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda0b55867d8d019e07982c011e04f1f4ac',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f31_5fbits',['SPI_BIT_WIDTH_31_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdabe79ca891b6f1b7b60317f5425a6b9cf',1,'r_spi_api.h']]], ['spi_5fbit_5fwidth_5f32_5fbits',['SPI_BIT_WIDTH_32_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf69633d9ed10c0d07cea1ded1b562aed',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f4_5fbits',['SPI_BIT_WIDTH_4_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda6a007a4d6a949aeb0ce52aa4f31d3b88',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f5_5fbits',['SPI_BIT_WIDTH_5_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda3cca9398fbfe913a5c52cd7359864be6',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f6_5fbits',['SPI_BIT_WIDTH_6_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdae5193130db6bdfdf9bb780abf606beb1',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f7_5fbits',['SPI_BIT_WIDTH_7_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdae54951e7d79149bda93b99f18ea2e7a0',1,'r_spi_api.h']]], ['spi_5fbit_5fwidth_5f8_5fbits',['SPI_BIT_WIDTH_8_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdad6fa8af050db98465c43fd25fb8e8090',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f9_5fbits',['SPI_BIT_WIDTH_9_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf0519b353e4cfb4440088212f4aca8cc',1,'r_spi_api.h']]], ['spi_5fbit_5fwidth_5ft',['spi_bit_width_t',['../group___s_p_i___a_p_i.html#ga6ba4a8eef274a5b227fc2ab6ee61f8fd',1,'r_spi_api.h']]], ['spi_5fcallback_5fargs_5ft',['spi_callback_args_t',['../group___s_p_i___a_p_i.html#structspi__callback__args__t',1,'']]], ['spi_5fcfg_5ft',['spi_cfg_t',['../group___s_p_i___a_p_i.html#structspi__cfg__t',1,'']]], @@ -77,6 +230,8 @@ var searchData= ['spi_5fclk_5fpolarity_5fhigh',['SPI_CLK_POLARITY_HIGH',['../group___s_p_i___a_p_i.html#gga28c820896d3da6e8173ed07f7ca89cb0acb77929e5ac9f1f0fe2adf3aece45958',1,'r_spi_api.h']]], ['spi_5fclk_5fpolarity_5flow',['SPI_CLK_POLARITY_LOW',['../group___s_p_i___a_p_i.html#gga28c820896d3da6e8173ed07f7ca89cb0a1901f5e3018e5ab36c30d721854d65a2',1,'r_spi_api.h']]], ['spi_5fclk_5fpolarity_5ft',['spi_clk_polarity_t',['../group___s_p_i___a_p_i.html#ga28c820896d3da6e8173ed07f7ca89cb0',1,'r_spi_api.h']]], + ['spi_5fclksyn',['spi_clksyn',['../group___s_p_i___b.html#a399719eab6e46125db42de61d7fffe9d',1,'spi_b_extended_cfg_t']]], + ['spi_5fcomm',['spi_comm',['../group___s_p_i___b.html#a7e337db8e24ef889f9a1ccfec9d5a9e9',1,'spi_b_extended_cfg_t']]], ['spi_5fctrl_5ft',['spi_ctrl_t',['../group___s_p_i___a_p_i.html#gacb036be7f805dbb8d2092486d1aeb242',1,'r_spi_api.h']]], ['spi_5fevent_5ferr_5fframing',['SPI_EVENT_ERR_FRAMING',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54caeaac307aea3da421c6cc960b146899ce',1,'r_spi_api.h']]], ['spi_5fevent_5ferr_5fmode_5ffault',['SPI_EVENT_ERR_MODE_FAULT',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca65e04eb27a5e00a37e1cf2b9a3ed4d32',1,'r_spi_api.h']]], @@ -87,32 +242,113 @@ var searchData= ['spi_5fevent_5ft',['spi_event_t',['../group___s_p_i___a_p_i.html#ga6e4960e8b344a8a8ec60f0c11d60f54c',1,'r_spi_api.h']]], ['spi_5fevent_5ftransfer_5faborted',['SPI_EVENT_TRANSFER_ABORTED',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca02af67a21905e378eb464ba80117142c',1,'r_spi_api.h']]], ['spi_5fevent_5ftransfer_5fcomplete',['SPI_EVENT_TRANSFER_COMPLETE',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca2b456074a7304b0ac4be1cbe69d6dad1',1,'r_spi_api.h']]], + ['spi_5fflash_5faddress_5fbytes_5f3',['SPI_FLASH_ADDRESS_BYTES_3',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga289ef915326b8e75e7d0dd331c2d0797ab4c7c4e57259098044562889ba84709f',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5faddress_5fbytes_5f4',['SPI_FLASH_ADDRESS_BYTES_4',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga289ef915326b8e75e7d0dd331c2d0797a186abc2724fdf1c4fac86d0d83cb5303',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5faddress_5fbytes_5f4_5f4byte_5fread_5fcode',['SPI_FLASH_ADDRESS_BYTES_4_4BYTE_READ_CODE',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga289ef915326b8e75e7d0dd331c2d0797aed752a37fe0a5f0b6dfb6781d67319bb',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5faddress_5fbytes_5ft',['spi_flash_address_bytes_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ga289ef915326b8e75e7d0dd331c2d0797',1,'r_spi_flash_api.h']]], + ['spi_20flash_20interface',['SPI Flash Interface',['../group___s_p_i___f_l_a_s_h___a_p_i.html',1,'']]], + ['spi_5fflash_5fapi_5ft',['spi_flash_api_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__api__t',1,'']]], + ['spi_5fflash_5fcfg_5ft',['spi_flash_cfg_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__cfg__t',1,'']]], + ['spi_5fflash_5fctrl_5ft',['spi_flash_ctrl_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ga0f14c8b55d2948c30b99ab157e16488f',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdata_5flines_5f1',['SPI_FLASH_DATA_LINES_1',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaae5c8f99b61e37b40b13f52e146f0bc5a724520599856ece833bddc89d146d68e',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdata_5flines_5f2',['SPI_FLASH_DATA_LINES_2',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaae5c8f99b61e37b40b13f52e146f0bc5add8eaf5b2c9b3749d5425cc8596aa564',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdata_5flines_5f4',['SPI_FLASH_DATA_LINES_4',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaae5c8f99b61e37b40b13f52e146f0bc5a78b1e4dfcdf7632ea626d7c1d74dd317',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdata_5flines_5ft',['spi_flash_data_lines_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gaae5c8f99b61e37b40b13f52e146f0bc5',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdirect_5ftransfer_5fdir_5ft',['spi_flash_direct_transfer_dir_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ga80ecf65e658f5b36bfe0bf2d88dd3ca5',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdirect_5ftransfer_5ft',['spi_flash_direct_transfer_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__direct__transfer__t',1,'']]], + ['spi_5fflash_5fdummy_5fclocks_5f0',['SPI_FLASH_DUMMY_CLOCKS_0',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feaed09e7b9b5d0d7b7be12e3677eba59a1',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f1',['SPI_FLASH_DUMMY_CLOCKS_1',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feafac1c75f76f2f0a4027b1544fecb48b4',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f10',['SPI_FLASH_DUMMY_CLOCKS_10',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feab7bb5a56f34654e4d07779b33ed62c4e',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f11',['SPI_FLASH_DUMMY_CLOCKS_11',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea1db4bf767cc8df4e417a13151bf2ef91',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f12',['SPI_FLASH_DUMMY_CLOCKS_12',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feac6f24dbd14abddeb713c6d3b349a2586',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f13',['SPI_FLASH_DUMMY_CLOCKS_13',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea94649b553a8dfb3df7d2dfcf5964c099',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f14',['SPI_FLASH_DUMMY_CLOCKS_14',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fead706a5a9ba8b806ffeb13adc5979823b',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f15',['SPI_FLASH_DUMMY_CLOCKS_15',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea5c661aa719d0f2846d0a4a3bea4e3f37',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f16',['SPI_FLASH_DUMMY_CLOCKS_16',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feab4afe95b4c411fbe7b17252fce3e9776',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f17',['SPI_FLASH_DUMMY_CLOCKS_17',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea34ec51de93041c3710730907347e29ce',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f18',['SPI_FLASH_DUMMY_CLOCKS_18',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feaccd9eab44effb89164d68dc55c73e10f',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f19',['SPI_FLASH_DUMMY_CLOCKS_19',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea32e0c7ab537261464e48be07bda963f0',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f2',['SPI_FLASH_DUMMY_CLOCKS_2',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feab4dcd627f0f4766d0e7fbf76a2160a98',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f20',['SPI_FLASH_DUMMY_CLOCKS_20',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea3490679f14cbe6dca290459020f75c71',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f21',['SPI_FLASH_DUMMY_CLOCKS_21',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fead65e7e0db08823212d8aca1feaae5279',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f22',['SPI_FLASH_DUMMY_CLOCKS_22',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea245eb3e209ead164289e776f8a1c3db5',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f23',['SPI_FLASH_DUMMY_CLOCKS_23',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea27f73312dc3edb2114956dd060693c96',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f24',['SPI_FLASH_DUMMY_CLOCKS_24',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feabaf62da3a1a577e312e0b0be000770cc',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f25',['SPI_FLASH_DUMMY_CLOCKS_25',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea36b30b484ac7ba6d951f42664c17bccc',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f26',['SPI_FLASH_DUMMY_CLOCKS_26',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea6cf608f95e25bdbde4af0fd0caa0844e',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f27',['SPI_FLASH_DUMMY_CLOCKS_27',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feabf7dd140ea6e3b47246e8dd6c2b812bc',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f28',['SPI_FLASH_DUMMY_CLOCKS_28',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feacf3e6ceb051173c3017ce7c715c96c77',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f29',['SPI_FLASH_DUMMY_CLOCKS_29',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea76793d9f869335cb3f6c46c30539d6a9',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f3',['SPI_FLASH_DUMMY_CLOCKS_3',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feaca19d746031e96849279c7f9c9365f73',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f30',['SPI_FLASH_DUMMY_CLOCKS_30',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea047f2b71267ffaee5a6912d58854302b',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f31',['SPI_FLASH_DUMMY_CLOCKS_31',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feafaa464bb01a99230e64495288b7592c1',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f4',['SPI_FLASH_DUMMY_CLOCKS_4',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea95bef5ad77102b394b5ca8bd38bb73be',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f5',['SPI_FLASH_DUMMY_CLOCKS_5',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea5a76c99649b40742470d90e7b0c8c474',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f6',['SPI_FLASH_DUMMY_CLOCKS_6',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea801c037b43cbd06e07774303a64b0e7e',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f7',['SPI_FLASH_DUMMY_CLOCKS_7',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea941cef4707042e59f64a679053c9d097',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f8',['SPI_FLASH_DUMMY_CLOCKS_8',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea59162e7f319c830647330780799e12d4',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f9',['SPI_FLASH_DUMMY_CLOCKS_9',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea85dec8f02ca9a503cc9d554131c51f92',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5ft',['spi_flash_dummy_clocks_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gaa1e03cbf0d565f4ae7ad2e41d85802fe',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5ferase_5fcommand_5ft',['spi_flash_erase_command_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__erase__command__t',1,'']]], + ['spi_5fflash_5finstance_5ft',['spi_flash_instance_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__instance__t',1,'']]], + ['spi_5fflash_5fprotocol_5f1s_5f1s_5f1s',['SPI_FLASH_PROTOCOL_1S_1S_1S',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a3066069aa9be28b050e57faa29cf5be5',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5f1s_5f2s_5f2s',['SPI_FLASH_PROTOCOL_1S_2S_2S',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a6d421df12293ebbae4fa97b4cf152081',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5f1s_5f4s_5f4s',['SPI_FLASH_PROTOCOL_1S_4S_4S',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535acd8ffe88180ff5b8288dee7739e581a8',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5f2s_5f2s_5f2s',['SPI_FLASH_PROTOCOL_2S_2S_2S',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a668b4a0330a7e2de10b77f25fbea4567',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5f4s_5f4d_5f4d',['SPI_FLASH_PROTOCOL_4S_4D_4D',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a54c52d62f8a1e16099da8ab9a203a1be',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5f4s_5f4s_5f4s',['SPI_FLASH_PROTOCOL_4S_4S_4S',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a21ac68039ffa6d214173ada7fe558a05',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5f8d_5f8d_5f8d',['SPI_FLASH_PROTOCOL_8D_8D_8D',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535acf8fc61585bd2209fc3953d8d2eb4606',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5fdopi',['SPI_FLASH_PROTOCOL_DOPI',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535afd83f451b4164b209b240ebb0f4bb158',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5fextended_5fspi',['SPI_FLASH_PROTOCOL_EXTENDED_SPI',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a1b7d1595891e2e14a3dc9e718b5188c3',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5fqpi',['SPI_FLASH_PROTOCOL_QPI',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535abf7718fe53c0e4daa1dcad6f4d6d215e',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5fsopi',['SPI_FLASH_PROTOCOL_SOPI',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535aa8b956dd00ae8afcb2e4497fb1b9ab58',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5ft',['spi_flash_protocol_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ga17c347a498a8a9d38ffc36c0de49a535',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5ffast_5fread',['SPI_FLASH_READ_MODE_FAST_READ',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544afb88c529acf619eb6e3d0ffb752f8386',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5ffast_5fread_5fdual_5fio',['SPI_FLASH_READ_MODE_FAST_READ_DUAL_IO',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544af6d14d59f1598cf51a11f1629bf2be6c',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5ffast_5fread_5fdual_5foutput',['SPI_FLASH_READ_MODE_FAST_READ_DUAL_OUTPUT',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544aa0d4e30b32b497827cf2924036320193',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5ffast_5fread_5fquad_5fio',['SPI_FLASH_READ_MODE_FAST_READ_QUAD_IO',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544adba367ad1ab093f75047ed401e8c7cd1',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5ffast_5fread_5fquad_5foutput',['SPI_FLASH_READ_MODE_FAST_READ_QUAD_OUTPUT',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544abbf688966c22416d5835ad02cc322187',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5fstandard',['SPI_FLASH_READ_MODE_STANDARD',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544a912b5c3ede07dc88c2241c7abb92fb52',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5ft',['spi_flash_read_mode_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gae289e2a797dab4712dfc07986f6a3544',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fstatus_5ft',['spi_flash_status_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__status__t',1,'']]], ['spi_5finstance_5ft',['spi_instance_t',['../group___s_p_i___a_p_i.html#structspi__instance__t',1,'']]], - ['spi_5firq',['spi_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a8e22c7138ff92050165303b0525e95ba',1,'riic_master_extended_cfg_t']]], + ['spi_5firq',['spi_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a8e22c7138ff92050165303b0525e95ba',1,'riic_master_extended_cfg_t::spi_irq()'],['../group___r_i_i_c___s_l_a_v_e.html#a5710872e90c0db5ed2c177e883979cc7',1,'riic_slave_extended_cfg_t::spi_irq()']]], ['spi_5fmode_5ffault_5ferror_5fdisable',['SPI_MODE_FAULT_ERROR_DISABLE',['../group___s_p_i___a_p_i.html#ggad24d01aba46c370e11e3f2df7d9b6776ada1c119cee344e3a48f8ff33350d707b',1,'r_spi_api.h']]], ['spi_5fmode_5ffault_5ferror_5fenable',['SPI_MODE_FAULT_ERROR_ENABLE',['../group___s_p_i___a_p_i.html#ggad24d01aba46c370e11e3f2df7d9b6776a7966b9fbe2b8517dc1dbec4aeb783f7c',1,'r_spi_api.h']]], ['spi_5fmode_5ffault_5ft',['spi_mode_fault_t',['../group___s_p_i___a_p_i.html#gad24d01aba46c370e11e3f2df7d9b6776',1,'r_spi_api.h']]], ['spi_5fmode_5fmaster',['SPI_MODE_MASTER',['../group___s_p_i___a_p_i.html#ggac4b206a51636d91c5cffcbcee458c3cbae68a8adf6e5b67a7bdbe9526b15dae99',1,'r_spi_api.h']]], ['spi_5fmode_5fslave',['SPI_MODE_SLAVE',['../group___s_p_i___a_p_i.html#ggac4b206a51636d91c5cffcbcee458c3cbad1131ed33ad43ab3f667070b04454439',1,'r_spi_api.h']]], ['spi_5fmode_5ft',['spi_mode_t',['../group___s_p_i___a_p_i.html#gac4b206a51636d91c5cffcbcee458c3cb',1,'r_spi_api.h']]], + ['spi_5fprotocol',['spi_protocol',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a6f3cdf4d6de603634118801dcb54a6d5',1,'spi_flash_cfg_t']]], ['spi_5fwrite_5fread_5fguard_5fargs_5ft',['spi_write_read_guard_args_t',['../group___s_p_i___a_p_i.html#structspi__write__read__guard__args__t',1,'']]], - ['ssl_5fnegation_5fdelay',['ssl_negation_delay',['../group___r_s_p_i.html#ace6d2dd7ac73c2171a7c2f0edb11db22',1,'rspi_extended_cfg_t']]], - ['ssl_5fpolarity',['ssl_polarity',['../group___r_s_p_i.html#a6341f3c3ed5db4208c5481e3cb600f26',1,'rspi_extended_cfg_t']]], - ['start',['start',['../group___t_i_m_e_r___a_p_i.html#afcc7e85d01c3d7dc0c6e09954631f47f',1,'timer_api_t']]], + ['spiprotocolset',['spiProtocolSet',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a3328711e7e70c8379f4373d2861d785a',1,'spi_flash_api_t']]], + ['src_5faddr_5fmode',['src_addr_mode',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a1a73c1297d04667da6b2103db34f88ad',1,'transfer_info_t']]], + ['src_5fsize',['src_size',['../group___d_m_a_c___b.html#a6107a37da59835c2457754f90258b9c3',1,'dmac_b_extended_info_t::src_size()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a354b4d97746d9393110fc679d466ad99',1,'transfer_info_t::src_size()']]], + ['ssl_5flevel_5fkeep',['ssl_level_keep',['../group___r_s_p_i.html#ae3192998dbe33aee6614dd5f5850d289',1,'rspi_extended_cfg_t::ssl_level_keep()'],['../group___s_p_i___b.html#a8ca3851c76d9a5c02dd07e24309660ff',1,'spi_b_extended_cfg_t::ssl_level_keep()']]], + ['ssl_5fnegation_5fdelay',['ssl_negation_delay',['../group___r_s_p_i.html#ace6d2dd7ac73c2171a7c2f0edb11db22',1,'rspi_extended_cfg_t::ssl_negation_delay()'],['../group___s_p_i___b.html#ad0e864b3954e9abc6b864bb20c56b146',1,'spi_b_extended_cfg_t::ssl_negation_delay()']]], + ['ssl_5fpolarity',['ssl_polarity',['../group___r_s_p_i.html#a6341f3c3ed5db4208c5481e3cb600f26',1,'rspi_extended_cfg_t::ssl_polarity()'],['../group___s_p_i___b.html#a5bc3997ed557ba51b18f3e7118601381',1,'spi_b_extended_cfg_t::ssl_polarity()']]], + ['ssl_5fselect',['ssl_select',['../group___s_p_i___b.html#ab0743a388a256b112510805f0d0b3ac7',1,'spi_b_extended_cfg_t']]], + ['st_5firq',['st_irq',['../group___i3_c___b.html#ac2dd0e54f5699a367af7372aa10630e4',1,'i3c_b_extended_cfg_t']]], + ['start',['start',['../group___p_d_m___a_p_i.html#abf43fd87ed8c5bdaccb5474009fa6006',1,'pdm_api_t::start()'],['../group___t_i_m_e_r___a_p_i.html#afcc7e85d01c3d7dc0c6e09954631f47f',1,'timer_api_t::start()']]], ['starting_20development',['Starting Development',['../_s_t_a_r_t__d_e_v.html',1,'']]], ['start_5fsource',['start_source',['../group___g_p_t.html#a3b894424ab45e17d02938de9c211911a',1,'gpt_extended_cfg_t']]], - ['state',['state',['../group___p_o_e_g___a_p_i.html#aeae55874b243b6034a81711e3494bc6d',1,'poeg_status_t::state()'],['../group___t_i_m_e_r___a_p_i.html#a952d4e8952d0cc32bad22546064a8c44',1,'timer_status_t::state()']]], - ['status',['status',['../group___r_m___z_m_o_d4_x_x_x.html#aa547817f19f270a3d32f32d17d38cc56',1,'rm_zmod4xxx_instance_ctrl_t']]], + ['state',['state',['../group___a_d_c___a_p_i.html#a276869569116678c7838ef506fceb77b',1,'adc_status_t::state()'],['../group___p_d_m___a_p_i.html#a2c6cf4b37d45d78d3c1f61721877a691',1,'pdm_status_t::state()'],['../group___p_o_e_g___a_p_i.html#aeae55874b243b6034a81711e3494bc6d',1,'poeg_status_t::state()'],['../group___t_i_m_e_r___a_p_i.html#a952d4e8952d0cc32bad22546064a8c44',1,'timer_status_t::state()']]], + ['static_5faddress',['static_address',['../group___i3_c___a_p_i.html#a028f83c75b6bdc0155b5ee9abc822225',1,'i3c_device_table_cfg_t::static_address()'],['../group___i3_c___a_p_i.html#a77ccba404f1ec93b31a33e6c7ebed26f',1,'i3c_device_cfg_t::static_address()']]], + ['status',['status',['../group___c_a_n___a_p_i.html#aec9d4439f59b61933c2205e4d3ea9210',1,'can_info_t::status()'],['../group___r_t_c___a_p_i.html#a72e36c98782bcb50ce83f7d05b3fc024',1,'rtc_info_t::status()'],['../group___r_m___z_m_o_d4_x_x_x.html#aa547817f19f270a3d32f32d17d38cc56',1,'rm_zmod4xxx_instance_ctrl_t::status()']]], + ['status_5fcommand',['status_command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a27e2c004e2548fea4eca6793027b9d25',1,'spi_flash_cfg_t']]], ['statuscheck',['statusCheck',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a27c6d482aef38fe699598bd294eae220',1,'rm_zmod4xxx_api_t']]], - ['statusget',['statusGet',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a518c35fc22e49d6969fb6e15aa1e09cd',1,'i2c_master_api_t::statusGet()'],['../group___p_o_e_g___a_p_i.html#ab377a80211d85f8c90b578e93dfd7964',1,'poeg_api_t::statusGet()'],['../group___t_i_m_e_r___a_p_i.html#a11321e8dde7c33a4e6835a1bf64f7689',1,'timer_api_t::statusGet()']]], - ['sti_5firq',['sti_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#ad923980f5252b98f5a994166c32fde87',1,'riic_master_extended_cfg_t']]], - ['stop',['stop',['../group___t_i_m_e_r___a_p_i.html#aed0139dbf5102e39719ddbc51f16a21e',1,'timer_api_t']]], + ['statusclear',['statusClear',['../group___w_d_t___a_p_i.html#af66d798489c7ace801fee8b5a9c833c2',1,'wdt_api_t']]], + ['statusget',['statusGet',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a518c35fc22e49d6969fb6e15aa1e09cd',1,'i2c_master_api_t::statusGet()'],['../group___p_d_m___a_p_i.html#a2b1840e35134d539722e741e0b00042c',1,'pdm_api_t::statusGet()'],['../group___p_o_e_g___a_p_i.html#ab377a80211d85f8c90b578e93dfd7964',1,'poeg_api_t::statusGet()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#a1eea2761178ddd8ca7ef3aacd5c80507',1,'spi_flash_api_t::statusGet()'],['../group___t_i_m_e_r___a_p_i.html#a11321e8dde7c33a4e6835a1bf64f7689',1,'timer_api_t::statusGet()'],['../group___w_d_t___a_p_i.html#a317b972273cef3bc94087727b3ee17c5',1,'wdt_api_t::statusGet()']]], + ['stdbr',['stdbr',['../group___i3_c___b.html#aee8857dcfc0a90a83e4431ccbd4746e8',1,'i3c_b_bitrate_settings_t']]], + ['sti_5firq',['sti_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#ad923980f5252b98f5a994166c32fde87',1,'riic_master_extended_cfg_t::sti_irq()'],['../group___r_i_i_c___s_l_a_v_e.html#a01d8a48ff4d983d8d8995d6dbd4e5ac6',1,'riic_slave_extended_cfg_t::sti_irq()']]], + ['stop',['stop',['../group___p_d_m___a_p_i.html#ad8342d4be5d02082a860b08303d0478c',1,'pdm_api_t::stop()'],['../group___t_i_m_e_r___a_p_i.html#aed0139dbf5102e39719ddbc51f16a21e',1,'timer_api_t::stop()']]], ['stop_5fbits',['stop_bits',['../group___u_a_r_t___a_p_i.html#ab5d2042b5bedd324dea60d379ff4140a',1,'uart_cfg_t']]], + ['stop_5fcontrol',['stop_control',['../group___w_d_t___a_p_i.html#a4be884c6982d93cdb759e8d3994b62a3',1,'wdt_cfg_t']]], ['stop_5flevel',['stop_level',['../group___g_p_t.html#a5805853871548d015520f71f3ab00e93',1,'gpt_output_pin_t']]], ['stop_5fsource',['stop_source',['../group___g_p_t.html#a41333514ba7ccb2b4e2d6475a51dcc26',1,'gpt_extended_cfg_t']]], ['sulfurodordatacalculate',['sulfurOdorDataCalculate',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af2123328d6c1ced0cc62d9c98f5a8a7a',1,'rm_zmod4xxx_api_t']]], ['synchronization_5fjump_5fwidth',['synchronization_jump_width',['../group___c_a_n___a_p_i.html#aeb8eee8b6e6ea6a433c1ff5d89f68c4b',1,'can_bit_timing_cfg_t']]], - ['systemcoreclock',['SystemCoreClock',['../group___b_s_p___m_c_u.html#gaa3cd3e43291e81e795d642b79b6088e6',1,'system.c']]], + ['systemcoreclock',['SystemCoreClock',['../group___b_s_p___m_c_u.html#gaa3cd3e43291e81e795d642b79b6088e6',1,'SystemCoreClock(): system.c'],['../group___b_s_p___m_c_u.html#gaa3cd3e43291e81e795d642b79b6088e6',1,'SystemCoreClock(): system.c']]], ['systeminit',['SystemInit',['../group___b_s_p___m_c_u.html#ga93f514700ccf00d08dbdcff7f1224eb2',1,'system.c']]], ['systeminit_5fs',['SystemInit_S',['../group___b_s_p___m_c_u.html#ga5cd95eba95dc2c1bad0bf05398c9779c',1,'systems.c']]] ]; diff --git a/search/all_11.js b/search/all_11.js index 12a5cc3..6e95910 100644 --- a/search/all_11.js +++ b/search/all_11.js @@ -1,13 +1,27 @@ var searchData= [ + ['timers',['Timers',['../group___r_e_n_e_s_a_s___t_i_m_e_r_s___m_o_d_u_l_e_s.html',1,'']]], + ['transfer',['Transfer',['../group___r_e_n_e_s_a_s___t_r_a_n_s_f_e_r___m_o_d_u_l_e_s.html',1,'']]], ['tei_5fipl',['tei_ipl',['../group___s_p_i___a_p_i.html#a493a388c1b9907a10e54ab57021f5ea4',1,'spi_cfg_t::tei_ipl()'],['../group___u_a_r_t___a_p_i.html#aceec311122c92321f879530c32fc0e00',1,'uart_cfg_t::tei_ipl()']]], - ['tei_5firq',['tei_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ac2de0a7db69741ace3fd1e6995bddb57',1,'i2c_master_cfg_t::tei_irq()'],['../group___s_p_i___a_p_i.html#a65879b76a785f6afaf3e295120de9bf2',1,'spi_cfg_t::tei_irq()'],['../group___u_a_r_t___a_p_i.html#a52fad103c0d9a1cc38510e74f7f1c198',1,'uart_cfg_t::tei_irq()']]], + ['tei_5firq',['tei_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ac2de0a7db69741ace3fd1e6995bddb57',1,'i2c_master_cfg_t::tei_irq()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ad1cc54031228e56ffcbf398278e39e98',1,'i2c_slave_cfg_t::tei_irq()'],['../group___s_p_i___a_p_i.html#a65879b76a785f6afaf3e295120de9bf2',1,'spi_cfg_t::tei_irq()'],['../group___u_a_r_t___a_p_i.html#a52fad103c0d9a1cc38510e74f7f1c198',1,'uart_cfg_t::tei_irq()']]], ['temperature',['temperature',['../group___r_m___h_s300_x___a_p_i.html#a9e58f685584c3b52c8a504f8e8cee696',1,'rm_hs300x_raw_data_t::temperature()'],['../group___r_m___h_s400_x___a_p_i.html#a631d9b338b2183a1ae2ce36b9adb844b',1,'rm_hs400x_raw_data_t::temperature()']]], ['temperature_5fresolution',['temperature_resolution',['../group___r_m___h_s400_x___a_p_i.html#a2345337ea54f3db1a45733a57dd3a358',1,'rm_hs400x_cfg_t']]], ['temperatureandhumidityset',['temperatureAndHumiditySet',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a504a4e2266dc1ae46f27b752ade032e9',1,'rm_zmod4xxx_api_t']]], + ['tend_5foutput_5fpin',['tend_output_pin',['../group___d_m_a_c___b.html#a4948302219c9409176bcc0ca3a2484d8',1,'dmac_b_extended_cfg_t']]], + ['terr_5firq',['terr_irq',['../group___i3_c___b.html#a5b9ea9a0c7e528e57c66d5b3cc85e674',1,'i3c_b_extended_cfg_t']]], + ['tgra_5fval',['tgra_val',['../group___m_t_u3.html#af508e14be5476f219620a30f14531871',1,'mtu3_extended_cfg_t']]], + ['tgrb_5fval',['tgrb_val',['../group___m_t_u3.html#af66a345b2403fb4b16c0c69babd6f96e',1,'mtu3_extended_cfg_t']]], + ['tgrc_5fval',['tgrc_val',['../group___m_t_u3.html#af23edbc49f7268ad12e61a783bbbf951',1,'mtu3_extended_cfg_t']]], + ['tgrd_5fval',['tgrd_val',['../group___m_t_u3.html#ac5bc8f09109ce78912076db7b22ed9f5',1,'mtu3_extended_cfg_t']]], + ['time',['time',['../group___r_t_c___a_p_i.html#a07468cd075199669905fb25eecddcf9b',1,'rtc_alarm_time_t']]], ['time_5fsegment_5f1',['time_segment_1',['../group___c_a_n___a_p_i.html#aafe4728b44b6abbb0f5d540e16d0be40',1,'can_bit_timing_cfg_t']]], ['time_5fsegment_5f2',['time_segment_2',['../group___c_a_n___a_p_i.html#a4157f4d2f2bd13acd53ebc43c557c4f8',1,'can_bit_timing_cfg_t']]], + ['timeout',['timeout',['../group___w_d_t___a_p_i.html#a32ddaf9b3fd7bab2b654e660588ac680',1,'wdt_cfg_t']]], + ['timeout_5fclocks',['timeout_clocks',['../group___w_d_t___a_p_i.html#a3f910dce98e58fc8a05152a21f404f74',1,'wdt_timeout_values_t']]], + ['timeout_5fdetection_5fenable',['timeout_detection_enable',['../group___i3_c___b.html#a7609c913ab9040ddb3884007abe4d661',1,'i3c_b_extended_cfg_t']]], ['timeout_5fmode',['timeout_mode',['../group___r_i_i_c___m_a_s_t_e_r.html#ac4f06d6bc304b3105524646725c0e736',1,'riic_master_extended_cfg_t']]], + ['timeout_5fscl_5flow',['timeout_scl_low',['../group___r_i_i_c___m_a_s_t_e_r.html#a248dede6dc400b36d660ee00bf2b814b',1,'riic_master_extended_cfg_t']]], + ['timeoutget',['timeoutGet',['../group___w_d_t___a_p_i.html#ac2b6d848e8be0ff1a0a1be43289ad925',1,'wdt_api_t']]], ['timer_20interface',['Timer Interface',['../group___t_i_m_e_r___a_p_i.html',1,'']]], ['timer_5fapi_5ft',['timer_api_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__api__t',1,'']]], ['timer_5fcallback_5fargs_5ft',['timer_callback_args_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__callback__args__t',1,'']]], @@ -18,17 +32,25 @@ var searchData= ['timer_5fdirection_5fup',['TIMER_DIRECTION_UP',['../group___t_i_m_e_r___a_p_i.html#gga8d600bb7885c5490bb7e8f989aa2ff83aa6e92d4dfd3483ec2ca281fae716c3db',1,'r_timer_api.h']]], ['timer_5fevent_5fcapture_5fa',['TIMER_EVENT_CAPTURE_A',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba4bc1252f63147f4a01f7b7ba88afac1d',1,'r_timer_api.h']]], ['timer_5fevent_5fcapture_5fb',['TIMER_EVENT_CAPTURE_B',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebab7b635fbf34ede5a3e2f55b5a60ac21b',1,'r_timer_api.h']]], + ['timer_5fevent_5fcapture_5fu',['TIMER_EVENT_CAPTURE_U',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebadc420bfc9860b5d461f10e557f9bb043',1,'r_timer_api.h']]], + ['timer_5fevent_5fcapture_5fv',['TIMER_EVENT_CAPTURE_V',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba25cd94f46448cd5938f32c6a25438091',1,'r_timer_api.h']]], + ['timer_5fevent_5fcapture_5fw',['TIMER_EVENT_CAPTURE_W',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba58d231c0801a39b29b761e77dbdae2cf',1,'r_timer_api.h']]], ['timer_5fevent_5fcrest',['TIMER_EVENT_CREST',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba73d4afde72c0b28a768c8e6d25c050f8',1,'r_timer_api.h']]], ['timer_5fevent_5fcycle_5fend',['TIMER_EVENT_CYCLE_END',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebae310bef0d640f06765c01b4b91a5b84c',1,'r_timer_api.h']]], + ['timer_5fevent_5fdead_5ftime',['TIMER_EVENT_DEAD_TIME',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba83346d837d9c89b9b1bed8c9a0078660',1,'r_timer_api.h']]], + ['timer_5fevent_5foutput_5fcompare_5f0',['TIMER_EVENT_OUTPUT_COMPARE_0',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba5935edbb3d0b6d8b6f74a8402e758adf',1,'r_timer_api.h']]], + ['timer_5fevent_5foutput_5fcompare_5f1',['TIMER_EVENT_OUTPUT_COMPARE_1',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba1618c4f47f889499fe72ef5a3c2cf4eb',1,'r_timer_api.h']]], ['timer_5fevent_5ft',['timer_event_t',['../group___t_i_m_e_r___a_p_i.html#gac3bee51f7c9078f794c5ac19522f91eb',1,'r_timer_api.h']]], ['timer_5fevent_5ftrough',['TIMER_EVENT_TROUGH',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba83cb2de8ac629fcd95525e94b94089f0',1,'r_timer_api.h']]], ['timer_5finfo_5ft',['timer_info_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__info__t',1,'']]], ['timer_5finstance_5ft',['timer_instance_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__instance__t',1,'']]], ['timer_5fmode_5fone_5fshot',['TIMER_MODE_ONE_SHOT',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a140f07675d67258a7ca9a95a9a793e3a',1,'r_timer_api.h']]], + ['timer_5fmode_5fone_5fshot_5fpulse',['TIMER_MODE_ONE_SHOT_PULSE',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2afe99f13968cabc479896dfd0bc67fb6a',1,'r_timer_api.h']]], ['timer_5fmode_5fperiodic',['TIMER_MODE_PERIODIC',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a78838cf8d728f8c64bb8012d522d1e2e',1,'r_timer_api.h']]], ['timer_5fmode_5fpwm',['TIMER_MODE_PWM',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2aca44e952a6930f39ac05393522392eac',1,'r_timer_api.h']]], ['timer_5fmode_5ft',['timer_mode_t',['../group___t_i_m_e_r___a_p_i.html#ga6d4cd64aed5c0009ac26803efc9c13b2',1,'r_timer_api.h']]], ['timer_5fmode_5ftriangle_5fwave_5fasymmetric_5fpwm',['TIMER_MODE_TRIANGLE_WAVE_ASYMMETRIC_PWM',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a204001ad413e9ad0db08a66d004a555a',1,'r_timer_api.h']]], + ['timer_5fmode_5ftriangle_5fwave_5fasymmetric_5fpwm_5fmode3',['TIMER_MODE_TRIANGLE_WAVE_ASYMMETRIC_PWM_MODE3',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2aa2eb9fa5372856039d5d53dfbbbe6040',1,'r_timer_api.h']]], ['timer_5fmode_5ftriangle_5fwave_5fsymmetric_5fpwm',['TIMER_MODE_TRIANGLE_WAVE_SYMMETRIC_PWM',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a6a3c462f9e9cc1b26ab68f38efd79b14',1,'r_timer_api.h']]], ['timer_5fsource_5fdiv_5f1',['TIMER_SOURCE_DIV_1',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada387f7122153dd7d860762a6f73485fb8',1,'r_timer_api.h']]], ['timer_5fsource_5fdiv_5f1024',['TIMER_SOURCE_DIV_1024',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adaee99148dc7c32f0764c7cb3b3e45ca30',1,'r_timer_api.h']]], @@ -38,6 +60,7 @@ var searchData= ['timer_5fsource_5fdiv_5f256',['TIMER_SOURCE_DIV_256',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada6680e947eb6455f9d0ee007645ea707d',1,'r_timer_api.h']]], ['timer_5fsource_5fdiv_5f32',['TIMER_SOURCE_DIV_32',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adacccb03dab14c93d036cdff662b1686a1',1,'r_timer_api.h']]], ['timer_5fsource_5fdiv_5f4',['TIMER_SOURCE_DIV_4',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada6cf9f5fb4095fd15027e6d06a811a3f5',1,'r_timer_api.h']]], + ['timer_5fsource_5fdiv_5f512',['TIMER_SOURCE_DIV_512',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada2bcc6bb5346907da7e45b74449588132',1,'r_timer_api.h']]], ['timer_5fsource_5fdiv_5f64',['TIMER_SOURCE_DIV_64',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada1cc7525fed9c5374c3a530e17453e670',1,'r_timer_api.h']]], ['timer_5fsource_5fdiv_5f8',['TIMER_SOURCE_DIV_8',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adaa2da1d2d669ae1f3baf715e96a803be3',1,'r_timer_api.h']]], ['timer_5fsource_5fdiv_5ft',['timer_source_div_t',['../group___t_i_m_e_r___a_p_i.html#ga820b425b44d7b551afd1797ecca7a5ad',1,'r_timer_api.h']]], @@ -48,11 +71,17 @@ var searchData= ['timer_5fvariant_5f16_5fbit',['TIMER_VARIANT_16_BIT',['../group___t_i_m_e_r___a_p_i.html#ggaa3525eef2e1fa1bc8809b2d3aaf0de5dab2eba551f1a7140323af63a66a137b49',1,'r_timer_api.h']]], ['timer_5fvariant_5f32_5fbit',['TIMER_VARIANT_32_BIT',['../group___t_i_m_e_r___a_p_i.html#ggaa3525eef2e1fa1bc8809b2d3aaf0de5da7dddd2791567467dc7bcf74ca2fc2cbb',1,'r_timer_api.h']]], ['timer_5fvariant_5ft',['timer_variant_t',['../group___t_i_m_e_r___a_p_i.html#gaa3525eef2e1fa1bc8809b2d3aaf0de5d',1,'r_timer_api.h']]], - ['tmoi_5firq',['tmoi_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a96e7311f8d945a850954b4f6d4db1dba',1,'riic_master_extended_cfg_t']]], - ['transfer_5faddr_5fmode_5fdecremented',['TRANSFER_ADDR_MODE_DECREMENTED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51a56a87e1587844119831414f3d5e6d761',1,'r_transfer_api.h']]], - ['transfer_5faddr_5fmode_5ffixed',['TRANSFER_ADDR_MODE_FIXED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47',1,'r_transfer_api.h']]], - ['transfer_5faddr_5fmode_5fincremented',['TRANSFER_ADDR_MODE_INCREMENTED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad',1,'r_transfer_api.h']]], - ['transfer_5faddr_5fmode_5foffset',['TRANSFER_ADDR_MODE_OFFSET',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51ab8b3f8ce28fb6f7a57a1b87db0d612c2',1,'r_transfer_api.h']]], + ['tint_5ftrigger',['tint_trigger',['../group___i_n_t_c___t_i_n_t.html#a15e2ce2189f72bd6ac8d5789cf535a45',1,'intc_tint_extended_cfg_t']]], + ['tmo_5firq',['tmo_irq',['../group___i3_c___b.html#a1ea9841cd4b6b18cd9acc7d7f53fa64d',1,'i3c_b_extended_cfg_t']]], + ['tmoi_5firq',['tmoi_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a96e7311f8d945a850954b4f6d4db1dba',1,'riic_master_extended_cfg_t::tmoi_irq()'],['../group___r_i_i_c___s_l_a_v_e.html#a17643f2f26d82852032bd200631567ad',1,'riic_slave_extended_cfg_t::tmoi_irq()']]], + ['toc0',['toc0',['../group___c_m_t_w.html#af9073998c0c28e05a8f12da3eddf30ed',1,'cmtw_extended_cfg_t']]], + ['toc0_5fcontrol',['toc0_control',['../group___c_m_t_w.html#a1734ae8129ed557f34e735fc4a0488b6',1,'cmtw_extended_cfg_t']]], + ['toc1',['toc1',['../group___c_m_t_w.html#ac2924a866fbfae428b2d6feb8edde25f',1,'cmtw_extended_cfg_t']]], + ['toc1_5fcontrol',['toc1_control',['../group___c_m_t_w.html#a77d38169188404361f4dbb3f6c792655',1,'cmtw_extended_cfg_t']]], + ['transfer_5faddr_5fmode_5fdecremented',['TRANSFER_ADDR_MODE_DECREMENTED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a56a87e1587844119831414f3d5e6d761',1,'r_transfer_api.h']]], + ['transfer_5faddr_5fmode_5ffixed',['TRANSFER_ADDR_MODE_FIXED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47',1,'TRANSFER_ADDR_MODE_FIXED(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47',1,'TRANSFER_ADDR_MODE_FIXED(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47',1,'TRANSFER_ADDR_MODE_FIXED(): bsp_override.h']]], + ['transfer_5faddr_5fmode_5fincremented',['TRANSFER_ADDR_MODE_INCREMENTED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad',1,'TRANSFER_ADDR_MODE_INCREMENTED(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad',1,'TRANSFER_ADDR_MODE_INCREMENTED(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad',1,'TRANSFER_ADDR_MODE_INCREMENTED(): bsp_override.h']]], + ['transfer_5faddr_5fmode_5foffset',['TRANSFER_ADDR_MODE_OFFSET',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51ab8b3f8ce28fb6f7a57a1b87db0d612c2',1,'r_transfer_api.h']]], ['transfer_5faddr_5fmode_5ft',['transfer_addr_mode_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51',1,'r_transfer_api.h']]], ['transfer_20interface',['Transfer Interface',['../group___t_r_a_n_s_f_e_r___a_p_i.html',1,'']]], ['transfer_5fapi_5ft',['transfer_api_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__api__t',1,'']]], @@ -65,36 +94,62 @@ var searchData= ['transfer_5fdata_5fbytes',['transfer_data_bytes',['../group___r_m___c_o_m_m_s___i2_c.html#a4323a08a846785496c0fdea5f1219f1e',1,'rm_comms_i2c_instance_ctrl_t']]], ['transfer_5finfo_5ft',['transfer_info_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__info__t',1,'']]], ['transfer_5finstance_5ft',['transfer_instance_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__instance__t',1,'']]], + ['transfer_5finterval',['transfer_interval',['../group___d_m_a_c___b.html#ad212e04a4018fe8852fa8eb5ee9cd557',1,'dmac_b_extended_cfg_t']]], ['transfer_5firq_5feach',['TRANSFER_IRQ_EACH',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggad71bdadb7f486bb5d3ca6ff508dc0b08a0929782b61686db69e12b3cb18175b35',1,'r_transfer_api.h']]], ['transfer_5firq_5fend',['TRANSFER_IRQ_END',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggad71bdadb7f486bb5d3ca6ff508dc0b08ada378ad830e44cc0c25d4fe2413e11de',1,'r_transfer_api.h']]], ['transfer_5firq_5ft',['transfer_irq_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gad71bdadb7f486bb5d3ca6ff508dc0b08',1,'r_transfer_api.h']]], ['transfer_5fis_5fpending',['transfer_is_pending',['../group___r_s_p_i.html#a84b7d73e4143987055afde28fe246f05',1,'rspi_instance_ctrl_t']]], ['transfer_5flength_5fmax',['transfer_length_max',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ae8ae839a9fa2fea09d9390e11b2edd9c',1,'transfer_properties_t']]], ['transfer_5flength_5fremaining',['transfer_length_remaining',['../group___t_r_a_n_s_f_e_r___a_p_i.html#afd44a3b34e332d28d7573865c58b00df',1,'transfer_properties_t']]], - ['transfer_5fmode_5fblock',['TRANSFER_MODE_BLOCK',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55',1,'r_transfer_api.h']]], - ['transfer_5fmode_5fnormal',['TRANSFER_MODE_NORMAL',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d',1,'r_transfer_api.h']]], - ['transfer_5fmode_5frepeat',['TRANSFER_MODE_REPEAT',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadfb7c2a6a73bfdf993e50505aa92992fa607c41bfd08797c08a5ee9bd4dfb9c8b',1,'r_transfer_api.h']]], + ['transfer_5fmode_5fblock',['TRANSFER_MODE_BLOCK',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55',1,'TRANSFER_MODE_BLOCK(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55',1,'TRANSFER_MODE_BLOCK(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55',1,'TRANSFER_MODE_BLOCK(): bsp_override.h']]], + ['transfer_5fmode_5fnormal',['TRANSFER_MODE_NORMAL',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d',1,'TRANSFER_MODE_NORMAL(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d',1,'TRANSFER_MODE_NORMAL(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d',1,'TRANSFER_MODE_NORMAL(): bsp_override.h']]], + ['transfer_5fmode_5frepeat',['TRANSFER_MODE_REPEAT',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fa607c41bfd08797c08a5ee9bd4dfb9c8b',1,'r_transfer_api.h']]], + ['transfer_5fmode_5frepeat_5fblock',['TRANSFER_MODE_REPEAT_BLOCK',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fafb43c6e62b61f0dbb9a5bcd5575e79e2',1,'r_transfer_api.h']]], ['transfer_5fmode_5ft',['transfer_mode_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992f',1,'r_transfer_api.h']]], ['transfer_5fproperties_5ft',['transfer_properties_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__properties__t',1,'']]], ['transfer_5frepeat_5farea_5fdestination',['TRANSFER_REPEAT_AREA_DESTINATION',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga769464d2068881ccb44573c96167812ba77aeeab30b003de23742e40a57f19239',1,'r_transfer_api.h']]], ['transfer_5frepeat_5farea_5fsource',['TRANSFER_REPEAT_AREA_SOURCE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga769464d2068881ccb44573c96167812ba2002ef7bbc49f7c9ebfac1618ba3c391',1,'r_transfer_api.h']]], ['transfer_5frepeat_5farea_5ft',['transfer_repeat_area_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga769464d2068881ccb44573c96167812b',1,'r_transfer_api.h']]], - ['transfer_5fsize_5f1_5fbyte',['TRANSFER_SIZE_1_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21',1,'r_transfer_api.h']]], - ['transfer_5fsize_5f2_5fbyte',['TRANSFER_SIZE_2_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f',1,'r_transfer_api.h']]], - ['transfer_5fsize_5f4_5fbyte',['TRANSFER_SIZE_4_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412',1,'r_transfer_api.h']]], + ['transfer_5fsize',['transfer_size',['../group___a_d_c___a_p_i.html#a85b0300314b3d3c1b37db311b92ade6b',1,'adc_info_t::transfer_size()'],['../group___i3_c___a_p_i.html#aafe9264685a5693c48c24cbcc470d6d7',1,'i3c_callback_args_t::transfer_size()']]], + ['transfer_5fsize_5f128_5fbyte',['TRANSFER_SIZE_128_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12aa5cbd2b9aced79bfb6b5858f8ebbe011',1,'TRANSFER_SIZE_128_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12aa5cbd2b9aced79bfb6b5858f8ebbe011',1,'TRANSFER_SIZE_128_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f16_5fbyte',['TRANSFER_SIZE_16_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a12fac298210b545231c2c38dfafd07a0',1,'TRANSFER_SIZE_16_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a12fac298210b545231c2c38dfafd07a0',1,'TRANSFER_SIZE_16_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f1_5fbyte',['TRANSFER_SIZE_1_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21',1,'TRANSFER_SIZE_1_BYTE(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21',1,'TRANSFER_SIZE_1_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21',1,'TRANSFER_SIZE_1_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f2_5fbyte',['TRANSFER_SIZE_2_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f',1,'TRANSFER_SIZE_2_BYTE(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f',1,'TRANSFER_SIZE_2_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f',1,'TRANSFER_SIZE_2_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f32_5fbyte',['TRANSFER_SIZE_32_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a7568398002399c1e898dab6f8e8a0418',1,'TRANSFER_SIZE_32_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a7568398002399c1e898dab6f8e8a0418',1,'TRANSFER_SIZE_32_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f4_5fbyte',['TRANSFER_SIZE_4_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412',1,'TRANSFER_SIZE_4_BYTE(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412',1,'TRANSFER_SIZE_4_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412',1,'TRANSFER_SIZE_4_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f64_5fbyte',['TRANSFER_SIZE_64_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a4284e820735faa08a0702f0d430f2924',1,'TRANSFER_SIZE_64_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a4284e820735faa08a0702f0d430f2924',1,'TRANSFER_SIZE_64_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f8_5fbyte',['TRANSFER_SIZE_8_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a5bb02177f10ea6a06f9fdf3d8f353d6f',1,'TRANSFER_SIZE_8_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a5bb02177f10ea6a06f9fdf3d8f353d6f',1,'TRANSFER_SIZE_8_BYTE(): bsp_override.h']]], ['transfer_5fsize_5ft',['transfer_size_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12',1,'r_transfer_api.h']]], ['transfer_5fstart_5fmode_5frepeat',['TRANSFER_START_MODE_REPEAT',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga11917a0ab2cb8b878937c97691b07fd9aa9b89e5adf9e24c9203f9fdf6c6aa331',1,'r_transfer_api.h']]], ['transfer_5fstart_5fmode_5fsingle',['TRANSFER_START_MODE_SINGLE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga11917a0ab2cb8b878937c97691b07fd9aca210983d734307a694af55fbf11ed7e',1,'r_transfer_api.h']]], ['transfer_5fstart_5fmode_5ft',['transfer_start_mode_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga11917a0ab2cb8b878937c97691b07fd9',1,'r_transfer_api.h']]], - ['trigger',['trigger',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ac9c027f165cdd6273959c0338cfb212d',1,'external_irq_cfg_t::trigger()'],['../group___p_o_e_g___a_p_i.html#ace17b160cb26724e59f6aa82e39ed80b',1,'poeg_cfg_t::trigger()']]], + ['transition_5fphase_5fenable',['transition_phase_enable',['../group___i3_c___b.html#aa24d69aa4e272b08ea25115bdd653871',1,'i3c_b_clock_stalling_t']]], + ['trigger',['trigger',['../group___a_d_c___a_p_i.html#aa1ffab52d024ec83ada3d3b5763ed2b3',1,'adc_cfg_t::trigger()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ac9c027f165cdd6273959c0338cfb212d',1,'external_irq_cfg_t::trigger()'],['../group___p_o_e_g___a_p_i.html#ace17b160cb26724e59f6aa82e39ed80b',1,'poeg_cfg_t::trigger()']]], + ['trigger_5fedge',['trigger_edge',['../group___a_d_c___c.html#a7eb4fc71a82fcf1ecd7574070c4243e3',1,'adc_c_extended_cfg_t']]], + ['trigger_5fgroup_5fb',['trigger_group_b',['../group___a_d_c___e.html#aef801f1c817a80fe191ccaf67f425ebe',1,'adc_e_extended_cfg_t']]], + ['trigger_5fmode',['trigger_mode',['../group___a_d_c___c.html#a8b7c376994f8e824a958c1d1d0f8b302',1,'adc_c_extended_cfg_t']]], + ['trigger_5fsource',['trigger_source',['../group___a_d_c___c.html#a46131143e44246e03f3a6ca768512a05',1,'adc_c_extended_cfg_t']]], ['trough_5fipl',['trough_ipl',['../group___g_p_t.html#ad908895a31952a884009f3a63fdac8d0',1,'gpt_extended_pwm_cfg_t']]], ['trough_5firq',['trough_irq',['../group___g_p_t.html#af69392faec97dd6cf86b0634e6b79b44',1,'gpt_extended_pwm_cfg_t']]], + ['temperature_20sensor_20unit_20_28r_5ftsu_5fb_29',['Temperature Sensor Unit (r_tsu_b)',['../group___t_s_u___b.html',1,'']]], + ['tsu_5fb_5faverage_5feight',['TSU_B_AVERAGE_EIGHT',['../group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29afa39988bdc4f045e0cae55754afe8d14',1,'r_tsu_b.h']]], + ['tsu_5fb_5faverage_5ffour',['TSU_B_AVERAGE_FOUR',['../group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29af001e8665548dd625eff4fe09f1d0102',1,'r_tsu_b.h']]], + ['tsu_5fb_5faverage_5foff',['TSU_B_AVERAGE_OFF',['../group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29a0c5fc7fe1db6dc27007a10395c080d74',1,'r_tsu_b.h']]], + ['tsu_5fb_5faverage_5ft',['tsu_b_average_t',['../group___t_s_u___b.html#ga5ab9606f8b75e848e5743dd79d08aa29',1,'r_tsu_b.h']]], + ['tsu_5fb_5faverage_5ftwo',['TSU_B_AVERAGE_TWO',['../group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29a77418279f9f52d5ca8ffa8418e42d8bf',1,'r_tsu_b.h']]], + ['tsu_5fb_5fcompare_5fcfg_5fdisable',['TSU_B_COMPARE_CFG_DISABLE',['../group___t_s_u___b.html#ggae1e53473fd2f49e840ce26b43131aa29a21127683f9dd0b510c15ebab44d7bf8a',1,'r_tsu_b.h']]], + ['tsu_5fb_5fcompare_5fcfg_5finside',['TSU_B_COMPARE_CFG_INSIDE',['../group___t_s_u___b.html#ggae1e53473fd2f49e840ce26b43131aa29aabcb24a3f71042eff1118cb3ebf8b318',1,'r_tsu_b.h']]], + ['tsu_5fb_5fcompare_5fcfg_5foutside',['TSU_B_COMPARE_CFG_OUTSIDE',['../group___t_s_u___b.html#ggae1e53473fd2f49e840ce26b43131aa29ab9a284ff26dcbb57af3e9278b7882702',1,'r_tsu_b.h']]], + ['tsu_5fb_5fcompare_5fcfg_5ft',['tsu_b_compare_cfg_t',['../group___t_s_u___b.html#gae1e53473fd2f49e840ce26b43131aa29',1,'r_tsu_b.h']]], + ['tsu_5fb_5fextended_5fcfg_5ft',['tsu_b_extended_cfg_t',['../group___t_s_u___b.html#structtsu__b__extended__cfg__t',1,'']]], + ['tsu_5fb_5finstance_5fctrl_5ft',['tsu_b_instance_ctrl_t',['../group___t_s_u___b.html#structtsu__b__instance__ctrl__t',1,'']]], ['tvoc',['tvoc',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aa97465cfe97ce3dcf9b872b0425687a9',1,'rm_zmod4xxx_iaq_1st_data_t::tvoc()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6dc721959ed25ffaade04a78ba4c1ba6',1,'rm_zmod4xxx_iaq_2nd_data_t::tvoc()']]], - ['tx_5fcount',['tx_count',['../group___r_s_p_i.html#a5a46d5fbf91bb380c5a211c33e2c5b54',1,'rspi_instance_ctrl_t']]], + ['tx_5fcount',['tx_count',['../group___r_s_p_i.html#a5a46d5fbf91bb380c5a211c33e2c5b54',1,'rspi_instance_ctrl_t::tx_count()'],['../group___s_p_i___b.html#a01bfd62b304e044b1cecefb0310c7823',1,'spi_b_instance_ctrl_t::tx_count()']]], + ['tx_5firq',['tx_irq',['../group___c_a_n___a_p_i.html#ac495ac44fdee552f013eea5ba0e86b06',1,'can_cfg_t::tx_irq()'],['../group___i3_c___b.html#ae1e8bc40fc3143b2dbb0321efbd677ee',1,'i3c_b_extended_cfg_t::tx_irq()']]], ['tx_5ftrigger_5flevel',['tx_trigger_level',['../group___r_s_p_i.html#ac9029124a35943dc5f347657d28d3c16',1,'rspi_extended_cfg_t']]], ['txi_5fipl',['txi_ipl',['../group___s_p_i___a_p_i.html#a370e9869ca57c5a81ab7957e90a69f13',1,'spi_cfg_t::txi_ipl()'],['../group___u_a_r_t___a_p_i.html#ab93490806d8ebfbe84a8d2e9def3a138',1,'uart_cfg_t::txi_ipl()']]], - ['txi_5firq',['txi_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a5d0a5cd0ccc684addfc096545cd3ebc6',1,'i2c_master_cfg_t::txi_irq()'],['../group___s_p_i___a_p_i.html#a38e81bf48ececd7cc34ecf215b923c42',1,'spi_cfg_t::txi_irq()'],['../group___u_a_r_t___a_p_i.html#a79df568ef30629847da05d9b073f1602',1,'uart_cfg_t::txi_irq()']]], + ['txi_5firq',['txi_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a5d0a5cd0ccc684addfc096545cd3ebc6',1,'i2c_master_cfg_t::txi_irq()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ac88cda39460d4a3d029e5c6e93bf7204',1,'i2c_slave_cfg_t::txi_irq()'],['../group___s_p_i___a_p_i.html#a38e81bf48ececd7cc34ecf215b923c42',1,'spi_cfg_t::txi_irq()'],['../group___u_a_r_t___a_p_i.html#a79df568ef30629847da05d9b073f1602',1,'uart_cfg_t::txi_irq()']]], ['txmb_5fmerge_5fmode_5fenable',['txmb_merge_mode_enable',['../group___c_a_n_f_d.html#aaaef4497ea35ba92d6d85cc5cc4a380a',1,'canfd_extended_cfg_t']]], - ['txmb_5ftxi_5fenable',['txmb_txi_enable',['../group___c_a_n_f_d.html#a1a95c697fe49bba12e5ddb7e21b04572',1,'canfd_extended_cfg_t']]], + ['txmb_5ftxi_5fenable',['txmb_txi_enable',['../group___c_a_n_f_d.html#ab3421077c295a40773c6cad2fb638176',1,'canfd_extended_cfg_t']]], ['type',['type',['../group___c_a_n___a_p_i.html#a79046fddb934fd7ea0d0cc70b8d7f26d',1,'can_frame_t']]] ]; diff --git a/search/all_12.js b/search/all_12.js index bc995b0..367e4d6 100644 --- a/search/all_12.js +++ b/search/all_12.js @@ -1,5 +1,6 @@ var searchData= [ + ['uart_20_28r_5fsci_5fb_5fuart_29',['UART (r_sci_b_uart)',['../group___s_c_i___b___u_a_r_t.html',1,'']]], ['uart_20interface',['UART Interface',['../group___u_a_r_t___a_p_i.html',1,'']]], ['uart_5fapi_5ft',['uart_api_t',['../group___u_a_r_t___a_p_i.html#structuart__api__t',1,'']]], ['uart_5fcallback_5fargs_5ft',['uart_callback_args_t',['../group___u_a_r_t___a_p_i.html#structuart__callback__args__t',1,'']]], @@ -35,5 +36,5 @@ var searchData= ['ulmair0',['ulMAIR0',['../structx_m_p_u___s_e_t_t_i_n_g_s.html#adbd29d7744b3526d1b0348789486343f',1,'xMPU_SETTINGS']]], ['ulrbar',['ulRBAR',['../struct_m_p_u_region_settings__t.html#a787743138d34bbae232204699cee75a9',1,'MPURegionSettings_t']]], ['ulrlar',['ulRLAR',['../struct_m_p_u_region_settings__t.html#a85dfb09938fe2cbecfd54fdc04645280',1,'MPURegionSettings_t']]], - ['unread_5fsamples',['unread_samples',['../group___r_m___o_b1203___a_p_i.html#a1ae36e22e66dbb0319f3f42931dfd9f7',1,'rm_ob1203_fifo_info_t']]] + ['unit',['unit',['../group___a_d_c___a_p_i.html#a3756c0cebdc1c304d48db67a5bcd16a6',1,'adc_callback_args_t::unit()'],['../group___a_d_c___a_p_i.html#a5da30f972881cd9d64f3a7add1ccd522',1,'adc_cfg_t::unit()'],['../group___p_d_m___a_p_i.html#a336b1d202eafdf805edd3cc274ef89e3',1,'pdm_cfg_t::unit()'],['../group___d_m_a_c___b.html#a3043a2a8f1838e56d4fcd50b5492e06f',1,'dmac_b_extended_cfg_t::unit()']]] ]; diff --git a/search/all_13.js b/search/all_13.js index 6540c6c..9f2906d 100644 --- a/search/all_13.js +++ b/search/all_13.js @@ -1,5 +1,5 @@ var searchData= [ - ['version_5fid',['version_id',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#a30a9a2b73548d20c22d0ba1f8aa42e27',1,'fsp_version_t::version_id()'],['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#a3d5dd6d84edfe02a1eb1f1f1ac2f3054',1,'fsp_pack_version_t::version_id()']]], - ['versionget',['versionGet',['../group___c_a_n___a_p_i.html#aa3a9393d2130549479111743b1750b41',1,'can_api_t']]] + ['vendor_5fstatus',['vendor_status',['../group___i3_c___a_p_i.html#a0148d668a40c53ea6aeba6b14050593e',1,'i3c_device_status_t']]], + ['version_5fid',['version_id',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#a30a9a2b73548d20c22d0ba1f8aa42e27',1,'fsp_version_t::version_id()'],['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#a3d5dd6d84edfe02a1eb1f1f1ac2f3054',1,'fsp_pack_version_t::version_id()']]] ]; diff --git a/search/all_14.js b/search/all_14.js index dd31fa2..0366437 100644 --- a/search/all_14.js +++ b/search/all_14.js @@ -1,8 +1,72 @@ var searchData= [ - ['write',['write',['../group___c_a_n___a_p_i.html#a0dcc61e0202ace6d5b91665464415adc',1,'can_api_t::write()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ab2ca2f7ee7e55628bcdd9e3492d7dfd2',1,'i2c_master_api_t::write()'],['../group___s_p_i___a_p_i.html#af053cb19a14773a51d1e060c5a624555',1,'spi_api_t::write()'],['../group___u_a_r_t___a_p_i.html#a9a87e8764518ac3268cf1c9df3b6aad3',1,'uart_api_t::write()'],['../group___r_m___c_o_m_m_s___a_p_i.html#af5486a540964c7c37f3115739be3e6cb',1,'rm_comms_api_t::write()'],['../structzmod4xxx__dev__t.html#a407e0713aab2f2d04392bd7a21b3f4fa',1,'zmod4xxx_dev_t::write()']]], + ['watchdog_20_28r_5fwdt_29',['Watchdog (r_wdt)',['../group___w_d_t.html',1,'']]], + ['wdt_20interface',['WDT Interface',['../group___w_d_t___a_p_i.html',1,'']]], + ['wdt_5fapi_5ft',['wdt_api_t',['../group___w_d_t___a_p_i.html#structwdt__api__t',1,'']]], + ['wdt_5fcallback_5fargs_5ft',['wdt_callback_args_t',['../group___w_d_t___a_p_i.html#structwdt__callback__args__t',1,'']]], + ['wdt_5fcfg_5ft',['wdt_cfg_t',['../group___w_d_t___a_p_i.html#structwdt__cfg__t',1,'']]], + ['wdt_5fclock_5fdivision_5f1',['WDT_CLOCK_DIVISION_1',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089adced8472c808262dd429d0151c3b2797',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f128',['WDT_CLOCK_DIVISION_128',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a0746eb0ddedfafa127e0e42b64136661',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f16',['WDT_CLOCK_DIVISION_16',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089ad8412b1a44d913b0ed2d8a00a7b7ebbd',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f2048',['WDT_CLOCK_DIVISION_2048',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a723dd4048f03d861e42890fc8bd0913a',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f256',['WDT_CLOCK_DIVISION_256',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a85b86587793408cd7b12fc4eb18e93c0',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f32',['WDT_CLOCK_DIVISION_32',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a1387532a717e5c3e03489a1eb4319b3b',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f4',['WDT_CLOCK_DIVISION_4',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a676cc419b2a32f1d5bc621da6c27eed8',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f512',['WDT_CLOCK_DIVISION_512',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089adf7e020a0f0702f5c0bbb2cd5bdb4a67',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f64',['WDT_CLOCK_DIVISION_64',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089aad499bbad13bd81c4246370b18470955',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f8192',['WDT_CLOCK_DIVISION_8192',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a379cad22ab77f5b144788ae4fb82e7af',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5ft',['wdt_clock_division_t',['../group___w_d_t___a_p_i.html#ga6b0f563a6311763e6204add68a018089',1,'r_wdt_api.h']]], + ['wdt_5fctrl_5ft',['wdt_ctrl_t',['../group___w_d_t___a_p_i.html#gacb273fc13cd5efef455f45486b436efe',1,'r_wdt_api.h']]], + ['wdt_5fextended_5fcfg_5ft',['wdt_extended_cfg_t',['../group___w_d_t.html#structwdt__extended__cfg__t',1,'']]], + ['wdt_5finstance_5fctrl_5ft',['wdt_instance_ctrl_t',['../group___w_d_t.html#structwdt__instance__ctrl__t',1,'']]], + ['wdt_5finstance_5ft',['wdt_instance_t',['../group___w_d_t___a_p_i.html#structwdt__instance__t',1,'']]], + ['wdt_5freset_5fcontrol_5fnmi',['WDT_RESET_CONTROL_NMI',['../group___w_d_t___a_p_i.html#gga7624d80dde311cb1289f558ea464fa63a9025ac51aeed3fac87e3733965b06215',1,'r_wdt_api.h']]], + ['wdt_5freset_5fcontrol_5freset',['WDT_RESET_CONTROL_RESET',['../group___w_d_t___a_p_i.html#gga7624d80dde311cb1289f558ea464fa63a71f32c409072999582d4e4afb789b096',1,'r_wdt_api.h']]], + ['wdt_5freset_5fcontrol_5ft',['wdt_reset_control_t',['../group___w_d_t___a_p_i.html#ga7624d80dde311cb1289f558ea464fa63',1,'r_wdt_api.h']]], + ['wdt_5fstatus_5fno_5ferror',['WDT_STATUS_NO_ERROR',['../group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935a0f1543f47bca7e987fe86ab04dd16e46',1,'r_wdt_api.h']]], + ['wdt_5fstatus_5foverflow',['WDT_STATUS_OVERFLOW',['../group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935ad930e4c90d18d3d5caebe11d602dd630',1,'r_wdt_api.h']]], + ['wdt_5fstatus_5frefresh_5ferror',['WDT_STATUS_REFRESH_ERROR',['../group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935a4b045e0cf22adf889286b3184bb212bf',1,'r_wdt_api.h']]], + ['wdt_5fstatus_5ft',['wdt_status_t',['../group___w_d_t___a_p_i.html#ga46c1d04f78b75ad1ad21314cac574935',1,'r_wdt_api.h']]], + ['wdt_5fstatus_5funderflow',['WDT_STATUS_UNDERFLOW',['../group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935a67430b92ca3930bb185d76449309004b',1,'r_wdt_api.h']]], + ['wdt_5fstatus_5funderflow_5fand_5frefresh_5ferror',['WDT_STATUS_UNDERFLOW_AND_REFRESH_ERROR',['../group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935ae49ea1e31c6a71b8acf1617f144dfcad',1,'r_wdt_api.h']]], + ['wdt_5fstop_5fcontrol_5fdisable',['WDT_STOP_CONTROL_DISABLE',['../group___w_d_t___a_p_i.html#gga803dd68cafce3a3d9ca5630b8c4838daac3a7223139a46596bf979e607c7c26f2',1,'r_wdt_api.h']]], + ['wdt_5fstop_5fcontrol_5fenable',['WDT_STOP_CONTROL_ENABLE',['../group___w_d_t___a_p_i.html#gga803dd68cafce3a3d9ca5630b8c4838daa7dda22fd5a14857cc859222620b71368',1,'r_wdt_api.h']]], + ['wdt_5fstop_5fcontrol_5ft',['wdt_stop_control_t',['../group___w_d_t___a_p_i.html#ga803dd68cafce3a3d9ca5630b8c4838da',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f1024',['WDT_TIMEOUT_1024',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76caadc98a5e3f05b010d9a4d8ce9b3c5c8f',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f128',['WDT_TIMEOUT_128',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76ca03952a0bb059b3ed8291d777d3ac36ff',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f16384',['WDT_TIMEOUT_16384',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76cacd016302c00b39880d3828d18467833e',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f2048',['WDT_TIMEOUT_2048',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76ca228d47dafe4a9026129b377155831621',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f4096',['WDT_TIMEOUT_4096',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76ca43fb8078a97d4935af9a4c49a8e268d1',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f512',['WDT_TIMEOUT_512',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76cadf9f61c33547bd76c982a981e428b27d',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f8192',['WDT_TIMEOUT_8192',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76cafb02fadb0bfdbf020583711d850670bf',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5ft',['wdt_timeout_t',['../group___w_d_t___a_p_i.html#ga880fcf63a5220c6618a0cf380268a76c',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5fvalues_5ft',['wdt_timeout_values_t',['../group___w_d_t___a_p_i.html#structwdt__timeout__values__t',1,'']]], + ['wdt_5fwindow_5fend_5f0',['WDT_WINDOW_END_0',['../group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61ad9fd7f9a41a89a9d67f0b8c37cbfdc12',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fend_5f25',['WDT_WINDOW_END_25',['../group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61a77562b1a64c2bf2e4385c3fad6f439c6',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fend_5f50',['WDT_WINDOW_END_50',['../group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61ab9dbf43bd2759f8fbb331dfb86dcc576',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fend_5f75',['WDT_WINDOW_END_75',['../group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61a35cf30e3a9e6f2f3c76726a7acc753ec',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fend_5ft',['wdt_window_end_t',['../group___w_d_t___a_p_i.html#ga62d4360afabd1652aa7a1b9f624d7f61',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fstart_5f100',['WDT_WINDOW_START_100',['../group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633a8677bab323b9b04737bf003bc8c68703',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fstart_5f25',['WDT_WINDOW_START_25',['../group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633a54d48a740d3d733e9011271800984229',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fstart_5f50',['WDT_WINDOW_START_50',['../group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633af678a5920dbf49ca5cc9b235fe2b50a6',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fstart_5f75',['WDT_WINDOW_START_75',['../group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633ab268e222207739405538345ae67483c8',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fstart_5ft',['wdt_window_start_t',['../group___w_d_t___a_p_i.html#ga9e0c1284f5d75d4a090d988536e3f633',1,'r_wdt_api.h']]], + ['window_5fa_5fipl',['window_a_ipl',['../group___a_d_c___e.html#a51c9f7b4d98b8fe863268a2af3da0d59',1,'adc_e_extended_cfg_t']]], + ['window_5fa_5firq',['window_a_irq',['../group___a_d_c___e.html#a1dc98d81c9cfb1b1eb10db8ef7c638fe',1,'adc_e_extended_cfg_t']]], + ['window_5fb_5fipl',['window_b_ipl',['../group___a_d_c___e.html#a3c4857e589eda67d890287c4cbf8cbe6',1,'adc_e_extended_cfg_t']]], + ['window_5fb_5firq',['window_b_irq',['../group___a_d_c___e.html#a0b20ef241f551191d580f929c32c8c7a',1,'adc_e_extended_cfg_t']]], + ['window_5fend',['window_end',['../group___w_d_t___a_p_i.html#a5f9d35ace3a2cca8b1b8ae834aae70cb',1,'wdt_cfg_t']]], + ['window_5fstart',['window_start',['../group___w_d_t___a_p_i.html#a9616c365a4d3f1d374fb5a7125cef0e5',1,'wdt_cfg_t']]], + ['write',['write',['../group___c_a_n___a_p_i.html#a0dcc61e0202ace6d5b91665464415adc',1,'can_api_t::write()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ab2ca2f7ee7e55628bcdd9e3492d7dfd2',1,'i2c_master_api_t::write()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a8a7c8ec91840338adbabcea5b5400f19',1,'i2c_slave_api_t::write()'],['../group___i3_c___a_p_i.html#a0b27ccf4720531545b0c2e118032539b',1,'i3c_api_t::write()'],['../group___s_p_i___a_p_i.html#af053cb19a14773a51d1e060c5a624555',1,'spi_api_t::write()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#a61e667a9ae9af76c5f8fd9f1973c6838',1,'spi_flash_api_t::write()'],['../group___u_a_r_t___a_p_i.html#a9a87e8764518ac3268cf1c9df3b6aad3',1,'uart_api_t::write()'],['../group___r_m___c_o_m_m_s___a_p_i.html#af5486a540964c7c37f3115739be3e6cb',1,'rm_comms_api_t::write()'],['../structzmod4xxx__dev__t.html#a407e0713aab2f2d04392bd7a21b3f4fa',1,'zmod4xxx_dev_t::write()']]], ['write_5fbuf',['write_buf',['../group___r_m___h_s400_x.html#a5ad7e2630eddb4d77b167363ae3e6cfe',1,'rm_hs400x_instance_ctrl_t']]], + ['write_5fbuffer_5fdescriptor',['write_buffer_descriptor',['../group___i3_c___b.html#a2144b0ec9924455ca87e11f869af3da6',1,'i3c_b_instance_ctrl_t']]], ['write_5fbytes_5fmax',['write_bytes_max',['../group___u_a_r_t___a_p_i.html#a0f61af63801e663a8401a9af9c890522',1,'uart_info_t']]], - ['write_5findex',['write_index',['../group___r_m___o_b1203___a_p_i.html#ab55258f8d19ebb8ccc07a2524ddaaa63',1,'rm_ob1203_fifo_info_t']]], - ['writeread',['writeRead',['../group___s_p_i___a_p_i.html#a6ed153d8e5e54e417fda95b044ac2fd6',1,'spi_api_t::writeRead()'],['../group___r_m___c_o_m_m_s___a_p_i.html#a468f1e4f571140989fa274d8f40a5bb1',1,'rm_comms_api_t::writeRead()']]] + ['write_5fdata_5frate',['write_data_rate',['../group___i3_c___b.html#a6e5ccf943f0f06851167cfe40fe7b7a1',1,'i3c_b_slave_command_response_info_t']]], + ['write_5fenable_5fbit',['write_enable_bit',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a6db8c831a8c3ef08a0f511c7229a503e',1,'spi_flash_cfg_t']]], + ['write_5fenable_5fcommand',['write_enable_command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ae5c4c2c2b0cebe9a54e530cbc2554b6e',1,'spi_flash_cfg_t']]], + ['write_5fin_5fprogress',['write_in_progress',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ae20d4bed523ca4e802f5da6fdec4ca43',1,'spi_flash_status_t']]], + ['write_5flength',['write_length',['../group___i3_c___b.html#a118058cb130acafed14c05752db449be',1,'i3c_b_slave_command_response_info_t']]], + ['write_5fstatus_5fbit',['write_status_bit',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a72bf5b8dca157ef7a4a2c66b12c945e9',1,'spi_flash_cfg_t']]], + ['writeread',['writeRead',['../group___s_p_i___a_p_i.html#a6ed153d8e5e54e417fda95b044ac2fd6',1,'spi_api_t::writeRead()'],['../group___r_m___c_o_m_m_s___a_p_i.html#a468f1e4f571140989fa274d8f40a5bb1',1,'rm_comms_api_t::writeRead()']]], + ['wu_5firq',['wu_irq',['../group___i3_c___b.html#afc989f369398b733654a708929df5f04',1,'i3c_b_extended_cfg_t']]] ]; diff --git a/search/all_15.js b/search/all_15.js index 98fa529..fff20ba 100644 --- a/search/all_15.js +++ b/search/all_15.js @@ -1,5 +1,47 @@ var searchData= [ + ['xip_5fenter_5fcommand',['xip_enter_command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#accd8433fbfc03e8a8bdb209c583c6ce9',1,'spi_flash_cfg_t']]], + ['xip_5fexit_5fcommand',['xip_exit_command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a315a0b4fc25c20262fdbf762c389c109',1,'spi_flash_cfg_t']]], + ['xipenter',['xipEnter',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ab5c6cc5c82e73038ddcef82a906b966f',1,'spi_flash_api_t']]], + ['xipexit',['xipExit',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a3a7c2aae058a733f879ae294c63ce2c6',1,'spi_flash_api_t']]], ['xmpu_5fsettings',['xMPU_SETTINGS',['../structx_m_p_u___s_e_t_t_i_n_g_s.html',1,'']]], - ['xregionssettings',['xRegionsSettings',['../structx_m_p_u___s_e_t_t_i_n_g_s.html#abe271f8ea47271a114bc8a0bebc285c4',1,'xMPU_SETTINGS']]] + ['xregionssettings',['xRegionsSettings',['../structx_m_p_u___s_e_t_t_i_n_g_s.html#abe271f8ea47271a114bc8a0bebc285c4',1,'xMPU_SETTINGS']]], + ['xspi_5fqspi_5fchip_5fselect_5f0',['XSPI_QSPI_CHIP_SELECT_0',['../group___x_s_p_i___q_s_p_i.html#gga9605c020c75bee5805972f74d27ffd2eacf34145ba6a0b294cbdeeab976c150bf',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fchip_5fselect_5f1',['XSPI_QSPI_CHIP_SELECT_1',['../group___x_s_p_i___q_s_p_i.html#gga9605c020c75bee5805972f74d27ffd2eaa1bbf9d876e73b7627f55c2deaf857c9',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fchip_5fselect_5ft',['xspi_qspi_chip_select_t',['../group___x_s_p_i___q_s_p_i.html#ga9605c020c75bee5805972f74d27ffd2e',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f1',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_1',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a4543d64f407a096d164d15e3365603e8',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f10',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_10',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a89788712416b1af5ccd9082d62d30b43',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f11',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_11',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a5fd5dda031287b82ff5dad2e40dffde4',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f12',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_12',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a58c5ad4643d6d653624543356554ee3c',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f13',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_13',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a6439af4e411e4d03f3c8d3f15722e9dd',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f14',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_14',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a8ceda90ab2581dba8ad9529b5fae8145',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f15',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_15',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a7700b8b6feef66da31cac305527bc77d',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f16',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_16',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a41c8bb40efff3fa720011b912c303f47',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f2',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_2',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a760752bfe782b735d449bc5c679e470b',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f3',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_3',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a7387eebf4b950e72afb60bbbea754971',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f4',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_4',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a79078d67905481f14a81061cdd17e9f1',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f5',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_5',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19aecaadb970c633b9360fdfce5e5c7c527',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f6',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_6',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19ab03ff44395500c6b4f9d4bcca356bac2',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f7',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_7',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a6f389a6a78b28558ed2c8a5a830d64a6',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f8',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_8',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a86bb1c93ed0d8bc69e66a31adbe493d8',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f9',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_9',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19acf18d60fd2f71e556ada7debeb513525',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5ft',['xspi_qspi_command_interval_clocks_t',['../group___x_s_p_i___q_s_p_i.html#ga8428f80201f33286966d2a84e0fb1f19',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcs_5fpulldown_5fclocks_5f1',['XSPI_QSPI_CS_PULLDOWN_CLOCKS_1',['../group___x_s_p_i___q_s_p_i.html#ggae60133dc12f4f7ae05fff3e117a2669aab743d88ab010960508bead3d47c4c117',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcs_5fpulldown_5fclocks_5fno_5fextension',['XSPI_QSPI_CS_PULLDOWN_CLOCKS_NO_EXTENSION',['../group___x_s_p_i___q_s_p_i.html#ggae60133dc12f4f7ae05fff3e117a2669aae9c45150b1ef316f0de9bccb1fc3f270',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcs_5fpulldown_5fclocks_5ft',['xspi_qspi_cs_pulldown_clocks_t',['../group___x_s_p_i___q_s_p_i.html#gae60133dc12f4f7ae05fff3e117a2669a',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcs_5fpullup_5fclocks_5f1',['XSPI_QSPI_CS_PULLUP_CLOCKS_1',['../group___x_s_p_i___q_s_p_i.html#gga50d177e87a5a9279f0e1e37d73f7a58fa11ba4008e1f95981db11d99da3aeca65',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcs_5fpullup_5fclocks_5fno_5fextension',['XSPI_QSPI_CS_PULLUP_CLOCKS_NO_EXTENSION',['../group___x_s_p_i___q_s_p_i.html#gga50d177e87a5a9279f0e1e37d73f7a58fa3d1564719853f7d8fa5f0bcea21107c0',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcs_5fpullup_5fclocks_5ft',['xspi_qspi_cs_pullup_clocks_t',['../group___x_s_p_i___q_s_p_i.html#ga50d177e87a5a9279f0e1e37d73f7a58f',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5finstance_5fctrl_5ft',['xspi_qspi_instance_ctrl_t',['../group___x_s_p_i___q_s_p_i.html#structxspi__qspi__instance__ctrl__t',1,'']]], + ['xspi_5fqspi_5fmemory_5fsize_5f16mb',['XSPI_QSPI_MEMORY_SIZE_16MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a9ac43acaa7d21c3ba76800735a579208',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5f1mb',['XSPI_QSPI_MEMORY_SIZE_1MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a8afb5fb7a7a5339b758f53fceb91268b',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5f2mb',['XSPI_QSPI_MEMORY_SIZE_2MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a0e615937696c1873b137727947c525f5',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5f32mb',['XSPI_QSPI_MEMORY_SIZE_32MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a67f21ed518757add425655b28b865f4c',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5f4mb',['XSPI_QSPI_MEMORY_SIZE_4MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a1551217a1fa6407d02e750cefc928d54',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5f64mb',['XSPI_QSPI_MEMORY_SIZE_64MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a2c0d20ccd99bfe1c7171778ebb3818f1',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5f8mb',['XSPI_QSPI_MEMORY_SIZE_8MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a214e6e08bb13c027a5f5d94464d263b6',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5ft',['xspi_qspi_memory_size_t',['../group___x_s_p_i___q_s_p_i.html#ga760382ea0170990436140690f193bd65',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fprefetch_5ffunction_5fdisable',['XSPI_QSPI_PREFETCH_FUNCTION_DISABLE',['../group___x_s_p_i___q_s_p_i.html#gga8c59ecaa03a56fa5db80924c81ff6fccafd2c195951167330e5b7a90ae262d361',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fprefetch_5ffunction_5fenable',['XSPI_QSPI_PREFETCH_FUNCTION_ENABLE',['../group___x_s_p_i___q_s_p_i.html#gga8c59ecaa03a56fa5db80924c81ff6fcca152b74d0c0cf97d6a36343f724a8d6ee',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fprefetch_5ffunction_5ft',['xspi_qspi_prefetch_function_t',['../group___x_s_p_i___q_s_p_i.html#ga8c59ecaa03a56fa5db80924c81ff6fcc',1,'r_xspi_qspi.h']]] ]; diff --git a/search/all_16.js b/search/all_16.js index 104e2e4..002778c 100644 --- a/search/all_16.js +++ b/search/all_16.js @@ -1,8 +1,4 @@ var searchData= [ - ['zmod4xxx_20gas_20sensor_20_28rm_5fzmod4xxx_29',['ZMOD4XXX Gas Sensor (rm_zmod4xxx)',['../group___r_m___z_m_o_d4_x_x_x.html',1,'']]], - ['zmod4xxx_20middleware_20interface',['ZMOD4XXX Middleware Interface',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html',1,'']]], - ['zmod4xxx_5fconf',['zmod4xxx_conf',['../structzmod4xxx__conf.html',1,'']]], - ['zmod4xxx_5fconf_5fstr',['zmod4xxx_conf_str',['../structzmod4xxx__conf__str.html',1,'']]], - ['zmod4xxx_5fdev_5ft',['zmod4xxx_dev_t',['../structzmod4xxx__dev__t.html',1,'']]] + ['year_5fmatch',['year_match',['../group___r_t_c___a_p_i.html#ab20077ad52e2ef1a05a206d3cf216662',1,'rtc_alarm_time_t']]] ]; diff --git a/search/all_17.html b/search/all_17.html new file mode 100644 index 0000000..5ca9efd --- /dev/null +++ b/search/all_17.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/all_17.js b/search/all_17.js new file mode 100644 index 0000000..104e2e4 --- /dev/null +++ b/search/all_17.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['zmod4xxx_20gas_20sensor_20_28rm_5fzmod4xxx_29',['ZMOD4XXX Gas Sensor (rm_zmod4xxx)',['../group___r_m___z_m_o_d4_x_x_x.html',1,'']]], + ['zmod4xxx_20middleware_20interface',['ZMOD4XXX Middleware Interface',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html',1,'']]], + ['zmod4xxx_5fconf',['zmod4xxx_conf',['../structzmod4xxx__conf.html',1,'']]], + ['zmod4xxx_5fconf_5fstr',['zmod4xxx_conf_str',['../structzmod4xxx__conf__str.html',1,'']]], + ['zmod4xxx_5fdev_5ft',['zmod4xxx_dev_t',['../structzmod4xxx__dev__t.html',1,'']]] +]; diff --git a/search/all_2.js b/search/all_2.js index 65a9e62..ae98d3c 100644 --- a/search/all_2.js +++ b/search/all_2.js @@ -1,29 +1,62 @@ var searchData= [ + ['bankset',['bankSet',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a14581133205383b71df54a65439c0dcf',1,'spi_flash_api_t']]], ['baud_5frate_5fprescaler',['baud_rate_prescaler',['../group___c_a_n___a_p_i.html#a33ae62d869abaf989823b7bb1563de41',1,'can_bit_timing_cfg_t']]], ['baudset',['baudSet',['../group___u_a_r_t___a_p_i.html#a8b0f901bcc26bd6836fe620235585f98',1,'uart_api_t']]], - ['bit_5forder',['bit_order',['../group___s_p_i___a_p_i.html#a91d7ce46956168e975b7c9f5fc738724',1,'spi_cfg_t']]], - ['bit_5fwidth',['bit_width',['../group___r_s_p_i.html#a4ed0f4d1ff28b7be854d963b057035d7',1,'rspi_instance_ctrl_t']]], + ['bit_5forder',['bit_order',['../group___c_r_c___a_p_i.html#a1647f8768f919a79d36f7dba45ff0bb4',1,'crc_cfg_t::bit_order()'],['../group___s_p_i___a_p_i.html#a91d7ce46956168e975b7c9f5fc738724',1,'spi_cfg_t::bit_order()']]], + ['bit_5fwidth',['bit_width',['../group___r_s_p_i.html#a4ed0f4d1ff28b7be854d963b057035d7',1,'rspi_instance_ctrl_t::bit_width()'],['../group___s_p_i___b.html#a2ce9db0edb9ad0167232b35d5bc714dc',1,'spi_b_instance_ctrl_t::bit_width()']]], + ['bitrate_5fmodulation',['bitrate_modulation',['../group___s_c_i___b___i2_c.html#ac94d1da59cc2217ab818bd222134d3d5',1,'sci_b_i2c_clock_settings_t']]], + ['bitrate_5fsettings',['bitrate_settings',['../group___i3_c___b.html#a814f21227402c572e9e0f31769a2f7b1',1,'i3c_b_extended_cfg_t']]], ['block_5fcount_5fmax',['block_count_max',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ab480a287279e160d73f60173605485ca',1,'transfer_properties_t']]], ['block_5fcount_5fremaining',['block_count_remaining',['../group___t_r_a_n_s_f_e_r___a_p_i.html#aaa2d7970aa8501e9d3929c7bdf05d357',1,'transfer_properties_t']]], ['blocking',['blocking',['../group___r_m___h_s300_x.html#a77ac61db4e87b179e4c59aa1f152ce02',1,'rm_hs300x_programmnig_mode_params_t']]], - ['blue_5fdata',['blue_data',['../group___r_m___o_b1203___a_p_i.html#aed354d575a3add4a27f6fd3770b029f9',1,'rm_ob1203_light_data_t']]], - ['brdv',['brdv',['../group___r_s_p_i.html#a2f8227792623b013057699e8e4edec1e',1,'rspi_rspck_div_setting_t']]], + ['brdv',['brdv',['../group___r_s_p_i.html#a2f8227792623b013057699e8e4edec1e',1,'rspi_rspck_div_setting_t::brdv()'],['../group___s_p_i___b.html#a6bc3a03629a2f20e5b468f6ca7f54697',1,'rspck_div_setting_t::brdv()']]], ['brh_5fvalue',['brh_value',['../group___r_i_i_c___m_a_s_t_e_r.html#a020f8656c45afc7d90378c7ef26a6955',1,'iic_master_clock_settings_t']]], ['bri_5fipl',['bri_ipl',['../group___s_c_i_f___u_a_r_t.html#a3fa97958f621b33bee457ec6bc136bed',1,'scif_uart_extended_cfg_t']]], ['bri_5firq',['bri_irq',['../group___s_c_i_f___u_a_r_t.html#a172e0b3047c07502b68ff88471e787ee',1,'scif_uart_extended_cfg_t']]], - ['brl_5fvalue',['brl_value',['../group___r_i_i_c___m_a_s_t_e_r.html#a505dbb8fdf8f4ffac481adab9c08b3fc',1,'iic_master_clock_settings_t']]], + ['brl_5fvalue',['brl_value',['../group___r_i_i_c___m_a_s_t_e_r.html#a505dbb8fdf8f4ffac481adab9c08b3fc',1,'iic_master_clock_settings_t::brl_value()'],['../group___r_i_i_c___s_l_a_v_e.html#a41382084c8a91226db001a7321176112',1,'iic_slave_clock_settings_t::brl_value()']]], ['brr',['brr',['../group___s_c_i_f___u_a_r_t.html#acc601128ecd5e04fcc306b249a2bb7bf',1,'scif_baud_setting_t']]], - ['bsp_5fcfg_5fhandle_5funrecoverable_5ferror',['BSP_CFG_HANDLE_UNRECOVERABLE_ERROR',['../group___b_s_p___m_c_u.html#ga4f65c534e6da6ae5733380827f882898',1,'bsp_common.h']]], + ['brr_5fvalue',['brr_value',['../group___s_c_i___b___i2_c.html#a68f4a0d78c3d47e252f292aa0025b3a9',1,'sci_b_i2c_clock_settings_t']]], + ['bsp_5falign_5fvariable',['BSP_ALIGN_VARIABLE',['../group___i3_c___b.html#ac04ccc58562da71c2a9381b35acdf0d3',1,'i3c_b_instance_ctrl_t']]], + ['bsp_5fbypass_5ffreq_5frange_5f12mhz',['BSP_BYPASS_FREQ_RANGE_12MHZ',['../group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fbad943f5284b3332ff337bc791ab36ffd4',1,'bsp_io.h']]], + ['bsp_5fbypass_5ffreq_5frange_5f1mhz',['BSP_BYPASS_FREQ_RANGE_1MHZ',['../group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fbaf7dda67eeadcf51f16aff39c09f7614b',1,'bsp_io.h']]], + ['bsp_5fbypass_5ffreq_5frange_5f24mhz',['BSP_BYPASS_FREQ_RANGE_24MHZ',['../group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fba0b0d404e8b95a60f5f6f8ce3f3b71ff4',1,'bsp_io.h']]], + ['bsp_5fbypass_5ffreq_5frange_5f48mhz',['BSP_BYPASS_FREQ_RANGE_48MHZ',['../group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fba13b74446c67d06c3feffa96cd34a6dc3',1,'bsp_io.h']]], + ['bsp_5fbypass_5ffreq_5frange_5ft',['bsp_bypass_freq_range_t',['../group___b_s_p___i_o.html#gabb6374b9eb754bff909bb9b0d25a04fb',1,'bsp_io.h']]], + ['bsp_5fbypass_5fmode_5fcrystal_5fosc',['BSP_BYPASS_MODE_CRYSTAL_OSC',['../group___b_s_p___i_o.html#gga65987c1da1d49f85463de102d5d24c2eafc7271d2760ab1dcd2e368e2eb7f9a7a',1,'bsp_io.h']]], + ['bsp_5fbypass_5fmode_5fexternal_5fclk',['BSP_BYPASS_MODE_EXTERNAL_CLK',['../group___b_s_p___i_o.html#gga65987c1da1d49f85463de102d5d24c2eaf8967b77658e57030b8e3b5611049e09',1,'bsp_io.h']]], + ['bsp_5fbypass_5fmode_5fpower_5fdown',['BSP_BYPASS_MODE_POWER_DOWN',['../group___b_s_p___i_o.html#gga65987c1da1d49f85463de102d5d24c2ea018ff64d40ae82d9f9014b637ba79869',1,'bsp_io.h']]], + ['bsp_5fbypass_5fmode_5ft',['bsp_bypass_mode_t',['../group___b_s_p___i_o.html#ga65987c1da1d49f85463de102d5d24c2e',1,'bsp_io.h']]], + ['bsp_5fbypass_5foscillator_5faudio',['BSP_BYPASS_OSCILLATOR_AUDIO',['../group___b_s_p___i_o.html#gga78e68e2247154764cd7d387d3b191095a4e41231154d741945cb439385369bdf3',1,'bsp_io.h']]], + ['bsp_5fbypass_5foscillator_5femclk',['BSP_BYPASS_OSCILLATOR_EMCLK',['../group___b_s_p___i_o.html#gga78e68e2247154764cd7d387d3b191095a9305c0e423f1fbafdd0e0e19e08bdbae',1,'bsp_io.h']]], + ['bsp_5fbypass_5foscillator_5frtc',['BSP_BYPASS_OSCILLATOR_RTC',['../group___b_s_p___i_o.html#gga78e68e2247154764cd7d387d3b191095a32152264d3d4ea0b5e8f3e4bb36346a8',1,'bsp_io.h']]], + ['bsp_5fbypass_5foscillator_5ft',['bsp_bypass_oscillator_t',['../group___b_s_p___i_o.html#ga78e68e2247154764cd7d387d3b191095',1,'bsp_io.h']]], + ['bsp_5fcfg_5fhandle_5funrecoverable_5ferror',['BSP_CFG_HANDLE_UNRECOVERABLE_ERROR',['../group___b_s_p___m_c_u.html#ga4f65c534e6da6ae5733380827f882898',1,'BSP_CFG_HANDLE_UNRECOVERABLE_ERROR(): bsp_common.h'],['../group___b_s_p___m_c_u.html#ga4f65c534e6da6ae5733380827f882898',1,'BSP_CFG_HANDLE_UNRECOVERABLE_ERROR(): bsp_common.h']]], ['bsp_5fdelay_5funits_5fmicroseconds',['BSP_DELAY_UNITS_MICROSECONDS',['../group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2baa0312618f2508347a9a815b5887c12ae',1,'bsp_delay.h']]], ['bsp_5fdelay_5funits_5fmilliseconds',['BSP_DELAY_UNITS_MILLISECONDS',['../group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2ba59fcc4e8d51046d4a1bd63c87ac64913',1,'bsp_delay.h']]], ['bsp_5fdelay_5funits_5fseconds',['BSP_DELAY_UNITS_SECONDS',['../group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2bacc709da08ef4acc99bf6e2e84946be5d',1,'bsp_delay.h']]], ['bsp_5fdelay_5funits_5ft',['bsp_delay_units_t',['../group___b_s_p___m_c_u.html#gafd98e2a6f080d6a52a3ef72e3d731b2b',1,'bsp_delay.h']]], + ['bsp_5fethernet_5fchannel_5f0',['BSP_ETHERNET_CHANNEL_0',['../group___b_s_p___i_o.html#gga7a9217abd402bee215bab2874db8dbcdadf0b3becd8ccf61e2336c87d51ebdb92',1,'bsp_io.h']]], + ['bsp_5fethernet_5fchannel_5f1',['BSP_ETHERNET_CHANNEL_1',['../group___b_s_p___i_o.html#gga7a9217abd402bee215bab2874db8dbcdac1123d8c4918b71283ddd440f9f6b679',1,'bsp_io.h']]], + ['bsp_5fethernet_5fchannel_5ft',['bsp_ethernet_channel_t',['../group___b_s_p___i_o.html#ga7a9217abd402bee215bab2874db8dbcd',1,'bsp_io.h']]], + ['bsp_5fethernet_5fmode_5fmii',['BSP_ETHERNET_MODE_MII',['../group___b_s_p___i_o.html#gga96797df60510eb9bc4a73613de51fae5a96490fa59d311791525aa664edd21abd',1,'bsp_io.h']]], + ['bsp_5fethernet_5fmode_5frmii',['BSP_ETHERNET_MODE_RMII',['../group___b_s_p___i_o.html#gga96797df60510eb9bc4a73613de51fae5a2a654e5a38c212f306093f5e60218a22',1,'bsp_io.h']]], + ['bsp_5fethernet_5fmode_5ft',['bsp_ethernet_mode_t',['../group___b_s_p___i_o.html#ga96797df60510eb9bc4a73613de51fae5',1,'bsp_io.h']]], + ['bsp_5fethernet_5fvoltage_5f18',['BSP_ETHERNET_VOLTAGE_18',['../group___b_s_p___i_o.html#gga0eaa3fb56a6c45bb8725d7ccc3c7c67ea188654c0888f5e6daa99f0f456128ce4',1,'bsp_io.h']]], + ['bsp_5fethernet_5fvoltage_5f25',['BSP_ETHERNET_VOLTAGE_25',['../group___b_s_p___i_o.html#gga0eaa3fb56a6c45bb8725d7ccc3c7c67eaaadd11c1476569d301871c45eae8d9eb',1,'bsp_io.h']]], + ['bsp_5fethernet_5fvoltage_5f33',['BSP_ETHERNET_VOLTAGE_33',['../group___b_s_p___i_o.html#gga0eaa3fb56a6c45bb8725d7ccc3c7c67ea74ec767baac2681f30afba30a09b80f5',1,'bsp_io.h']]], + ['bsp_5fethernet_5fvoltage_5ft',['bsp_ethernet_voltage_t',['../group___b_s_p___i_o.html#ga0eaa3fb56a6c45bb8725d7ccc3c7c67e',1,'bsp_io.h']]], ['bsp_5fgrp_5firq_5ft',['bsp_grp_irq_t',['../group___b_s_p___m_c_u.html#ga72e70676360e6a4d753a8d235e6b93a2',1,'bsp_group_irq.h']]], ['bsp_5fgrp_5firq_5funsupported',['BSP_GRP_IRQ_UNSUPPORTED',['../group___b_s_p___m_c_u.html#gga72e70676360e6a4d753a8d235e6b93a2a7478d3bbfdc1220e125de34635c0f47a',1,'bsp_group_irq.h']]], + ['bsp_5fi3c_5fmode_5fnor',['BSP_I3C_MODE_NOR',['../group___b_s_p___i_o.html#ggaf63bd80b976004bd5ed7fd251fcdf1b4a36240372d534ab9cbe23287aa4020805',1,'bsp_io.h']]], + ['bsp_5fi3c_5fmode_5fstb',['BSP_I3C_MODE_STB',['../group___b_s_p___i_o.html#ggaf63bd80b976004bd5ed7fd251fcdf1b4a7bfb9e2a71ee2dcc6910de37e977ccc8',1,'bsp_io.h']]], + ['bsp_5fi3c_5fmode_5ft',['bsp_i3c_mode_t',['../group___b_s_p___i_o.html#gaf63bd80b976004bd5ed7fd251fcdf1b4',1,'bsp_io.h']]], + ['bsp_5fi3c_5fvoltage_5f12',['BSP_I3C_VOLTAGE_12',['../group___b_s_p___i_o.html#ggac4cc2c33eed8a21f90fac99d323a2b85a341c63122ad909d8ea4a615bdb3a9f8d',1,'bsp_io.h']]], + ['bsp_5fi3c_5fvoltage_5f18',['BSP_I3C_VOLTAGE_18',['../group___b_s_p___i_o.html#ggac4cc2c33eed8a21f90fac99d323a2b85a00b60308d9f46162d50bb8014fe345d0',1,'bsp_io.h']]], + ['bsp_5fi3c_5fvoltage_5ft',['bsp_i3c_voltage_t',['../group___b_s_p___i_o.html#gac4cc2c33eed8a21f90fac99d323a2b85',1,'bsp_io.h']]], ['bsp_20i_2fo_20access',['BSP I/O access',['../group___b_s_p___i_o.html',1,'']]], - ['bsp_5fio_5faudio_5fclk1',['BSP_IO_AUDIO_CLK1',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5116644c1d06c3af3240908b62f1a1e1',1,'bsp_io.h']]], - ['bsp_5fio_5faudio_5fclk2',['BSP_IO_AUDIO_CLK2',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa456bca4a2c1ee49955d22b162753d000',1,'bsp_io.h']]], + ['bsp_5fio_5faudio_5fclk1',['BSP_IO_AUDIO_CLK1',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5116644c1d06c3af3240908b62f1a1e1',1,'bsp_io.h']]], + ['bsp_5fio_5faudio_5fclk2',['BSP_IO_AUDIO_CLK2',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa456bca4a2c1ee49955d22b162753d000',1,'bsp_io.h']]], ['bsp_5fio_5fdirection_5fhiz',['BSP_IO_DIRECTION_HIZ',['../group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78bafea764c1f74ea85192b085e96d1b3684',1,'bsp_io.h']]], ['bsp_5fio_5fdirection_5finput',['BSP_IO_DIRECTION_INPUT',['../group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78ba73a617ab836493568a0cf0aa4ba86484',1,'bsp_io.h']]], ['bsp_5fio_5fdirection_5foutput',['BSP_IO_DIRECTION_OUTPUT',['../group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78bab665c3052bb5373b7821ab8898ee859b',1,'bsp_io.h']]], @@ -32,226 +65,247 @@ var searchData= ['bsp_5fio_5flevel_5fhigh',['BSP_IO_LEVEL_HIGH',['../group___b_s_p___i_o.html#ggab4ef0cc3fce421d48310f23c614aadc0acf9a28559b5a18ed9b8af4c2a7df10ef',1,'bsp_io.h']]], ['bsp_5fio_5flevel_5flow',['BSP_IO_LEVEL_LOW',['../group___b_s_p___i_o.html#ggab4ef0cc3fce421d48310f23c614aadc0abb31064742440cdbdd638330a1cf7a9f',1,'bsp_io.h']]], ['bsp_5fio_5flevel_5ft',['bsp_io_level_t',['../group___b_s_p___i_o.html#gab4ef0cc3fce421d48310f23c614aadc0',1,'bsp_io.h']]], - ['bsp_5fio_5fnmi',['BSP_IO_NMI',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa3bf300bb3aa746665b49bc8200bd7963',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f00',['BSP_IO_PORT_00',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea11fccb10e338ed526b52e66f3b0e6f92',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f00_5fpin_5f00',['BSP_IO_PORT_00_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa62ce6a7aef8164ea6bce7a9209b2506f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f00_5fpin_5f01',['BSP_IO_PORT_00_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa9068c73f5a59c1a55f6e57bd406edf6c',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f01',['BSP_IO_PORT_01',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea1465c0a3f756e587525c11d00e3883f9',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f01_5fpin_5f00',['BSP_IO_PORT_01_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0ae62012d023d55c6d1141e1f09d09d8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f01_5fpin_5f01',['BSP_IO_PORT_01_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa30e6ff3f5eca3d04bec3d714e474f3df',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f02',['BSP_IO_PORT_02',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4944568317a214298b34be9bc3f26e48',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f02_5fpin_5f00',['BSP_IO_PORT_02_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa635ed7a090bf9052c6cfc6c225335c9a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f02_5fpin_5f01',['BSP_IO_PORT_02_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaea414f512f3b2c84888d93d506fbe172',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f03',['BSP_IO_PORT_03',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea97a779742ba7c411dfa7edb66e9569e7',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f03_5fpin_5f00',['BSP_IO_PORT_03_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa939175dd8a48d965dd7c667764cc1fd5',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f03_5fpin_5f01',['BSP_IO_PORT_03_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac76bc2a911b588e27633978b1fe3f3f4',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f04',['BSP_IO_PORT_04',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea8807e320a0f7ce2bbc6b61cf25a0b072',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f04_5fpin_5f00',['BSP_IO_PORT_04_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa52d01ece7c8204d5780ce72179f09c76',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f04_5fpin_5f01',['BSP_IO_PORT_04_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaeb156edee3b3c89b68b51df1f396a61f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f05',['BSP_IO_PORT_05',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea20eb52e6abf9b112dc5af6931984dec1',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f05_5fpin_5f00',['BSP_IO_PORT_05_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaceb466e44e04e3b0ab04a7f10003a8be',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f05_5fpin_5f01',['BSP_IO_PORT_05_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aacf43fded0d1c0e1888ec9ae765ddf5f2',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f05_5fpin_5f02',['BSP_IO_PORT_05_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaab1bcef9f45fb16232cc5913697eed32',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f06',['BSP_IO_PORT_06',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea35098d51c380e353369db8e0881952a6',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f06_5fpin_5f00',['BSP_IO_PORT_06_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae9d15e574de9e35f7e1197c95d05dad9',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f06_5fpin_5f01',['BSP_IO_PORT_06_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa95398234ddf9c5235901f089d4e81662',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f07',['BSP_IO_PORT_07',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eab007ee52e771b0d17a8e54fa3fb6e93b',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f07_5fpin_5f00',['BSP_IO_PORT_07_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6569ae616e2c7ec066f05618be44d35a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f07_5fpin_5f01',['BSP_IO_PORT_07_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae3e273b0a415a41e1f4e3ae91817c186',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f07_5fpin_5f02',['BSP_IO_PORT_07_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa88e147f4775b65d5c96a282684a408c8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f08',['BSP_IO_PORT_08',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea3f042a23f398537b95fd88334a3b4d9e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f08_5fpin_5f00',['BSP_IO_PORT_08_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad47cbb33ca5c9f12ee8dca084e3062d3',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f08_5fpin_5f01',['BSP_IO_PORT_08_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaaedcbffa95e268f197778af394a4bf35',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f08_5fpin_5f02',['BSP_IO_PORT_08_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6c298d5d898981f883b4b01f90e5c996',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f09',['BSP_IO_PORT_09',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea584e14f51456fd94e7c7f0a9ed66b2bf',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f09_5fpin_5f00',['BSP_IO_PORT_09_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadb3e4e605bcb1d788367185e4058982f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f09_5fpin_5f01',['BSP_IO_PORT_09_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf9970a4d1a41e6482fad460393a196a1',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f10',['BSP_IO_PORT_10',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea0a6ffd6c20eaaa32409b9ca0dee293e8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f10_5fpin_5f00',['BSP_IO_PORT_10_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8ef0f2b6cc6de032c23c371dafc6004f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f10_5fpin_5f01',['BSP_IO_PORT_10_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0623a8fae8511929239804f47b76dbab',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f11',['BSP_IO_PORT_11',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eabf85020df009d581e4fadb6e8a1dbddb',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f11_5fpin_5f00',['BSP_IO_PORT_11_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa125041643933f0bc07f32f14887bdf9c',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f11_5fpin_5f01',['BSP_IO_PORT_11_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab951cf766f9cd671ae093a141bc0c49a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f12',['BSP_IO_PORT_12',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea78ad7bb48a9750a3ba08672b6baeef7e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f12_5fpin_5f00',['BSP_IO_PORT_12_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabaaa47451e1390c478c5b2a1725e6496',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f12_5fpin_5f01',['BSP_IO_PORT_12_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa41f8c9cb94f726c7030df2052fd79774',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f13',['BSP_IO_PORT_13',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eae0f99efe8ef380f164802966936f7847',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f13_5fpin_5f00',['BSP_IO_PORT_13_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0ed7d51f576b741e15330313031c2216',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f13_5fpin_5f01',['BSP_IO_PORT_13_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2014abe37005233fad759d8de134796a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f13_5fpin_5f02',['BSP_IO_PORT_13_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad24ad8bbfa5f6d10db6ff8dc75eadef5',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f14',['BSP_IO_PORT_14',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea775af46386b8ac7e29159624b9224295',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f14_5fpin_5f00',['BSP_IO_PORT_14_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad20c513c1e1b64b683255e3b3b34b09a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f14_5fpin_5f01',['BSP_IO_PORT_14_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7bf44c9d323051836f7cbdc7e9da06de',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f15',['BSP_IO_PORT_15',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea397323ae563e9bd7c503dc1c675fa395',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f15_5fpin_5f00',['BSP_IO_PORT_15_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa23d463236f6411d0c90196dabcc9c5cf',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f15_5fpin_5f01',['BSP_IO_PORT_15_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa191310dd2b5e6a16244b452a76983735',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f16',['BSP_IO_PORT_16',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea002722322e8a845391a87dcc7eb9cc45',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f16_5fpin_5f00',['BSP_IO_PORT_16_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae35842723dba01d6ced15e6349ad2d8e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f16_5fpin_5f01',['BSP_IO_PORT_16_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa922ad01a7323cb74f484964dc5d66697',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f17',['BSP_IO_PORT_17',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ead05a1353527cf2773715624fabd00a00',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f17_5fpin_5f00',['BSP_IO_PORT_17_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaae0e1e9e69f942b9db5e95ff83323ad4',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f17_5fpin_5f01',['BSP_IO_PORT_17_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa9e537caa46d62591f1a698b30897ee2',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f17_5fpin_5f02',['BSP_IO_PORT_17_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa16ff4369ccc2eb0e6447af953bc94500',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f18',['BSP_IO_PORT_18',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eae6713d42094e3ab520aabae92ebd40bc',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f18_5fpin_5f00',['BSP_IO_PORT_18_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa3c395ad7ae5d1d25edc8ba2a536d0525',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f18_5fpin_5f01',['BSP_IO_PORT_18_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac2479bdb7c292438a9d7c3dd4f48a16a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f19',['BSP_IO_PORT_19',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea175a84c2aa70454b4e6d4ab1c1bf09a6',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f19_5fpin_5f00',['BSP_IO_PORT_19_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadab728bf7f83ae6d642836403d5d2dc1',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f19_5fpin_5f01',['BSP_IO_PORT_19_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa1628f1c03dc3bfe49f118a6bb2400c53',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f20',['BSP_IO_PORT_20',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eabb06fb72ab7089198e72a6fea4a109e2',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f20_5fpin_5f00',['BSP_IO_PORT_20_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa53d05b3cda0c467bb7f5ed5999f2ab8f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f20_5fpin_5f01',['BSP_IO_PORT_20_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaaf1af3c7ee0c71fde7bfd1cd49949123',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f20_5fpin_5f02',['BSP_IO_PORT_20_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac47b0fc7594eb9f9b3b8b8ad31b464ec',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f21',['BSP_IO_PORT_21',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea26ec6accacb5dbb180a419780a88afe0',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f21_5fpin_5f00',['BSP_IO_PORT_21_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa26c218a01d621d492389ce4f74597f55',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f21_5fpin_5f01',['BSP_IO_PORT_21_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5dfe885cc0ee6d129a7759c8ffecfd7e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f22',['BSP_IO_PORT_22',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea2873610326361727fdadf7c95b1eb66f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f22_5fpin_5f00',['BSP_IO_PORT_22_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5c7fa78ba5a0152298956fda6cf85c5e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f22_5fpin_5f01',['BSP_IO_PORT_22_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa9ddc4ada31ca968e9b166cd11b440143',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f23',['BSP_IO_PORT_23',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4a80f7746adba5117728d74884967ff0',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f23_5fpin_5f00',['BSP_IO_PORT_23_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab4d640dac1a6dff63f33c79ee1e20c9e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f23_5fpin_5f01',['BSP_IO_PORT_23_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa98b1d268ef5f45e6751c0a99139acc5c',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f24',['BSP_IO_PORT_24',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea40a254bc0f42f443d78c717bed44a682',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f24_5fpin_5f00',['BSP_IO_PORT_24_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa40b055b032c42ad42b0d1878a4a52d73',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f24_5fpin_5f01',['BSP_IO_PORT_24_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa39f4c9b8a1bfe125213595ecc0b45df0',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f25',['BSP_IO_PORT_25',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea5f6e2b131b2f5b5dbd759533379d6105',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f25_5fpin_5f00',['BSP_IO_PORT_25_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa49e414efa6d0d02c604aac05bb9778db',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f25_5fpin_5f01',['BSP_IO_PORT_25_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf117a1aa77a1a547745adf145d8dc77e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f26',['BSP_IO_PORT_26',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eabc16d0f819ca9bb6eb8638e9b5e6c99e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f26_5fpin_5f00',['BSP_IO_PORT_26_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf4eff0573f5c549da8c41d0b38166e66',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f26_5fpin_5f01',['BSP_IO_PORT_26_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2a3374a2fd5198a534ee4a728349e13f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f27',['BSP_IO_PORT_27',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea566070ed168bf63dc412bdaf12d939e3',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f27_5fpin_5f00',['BSP_IO_PORT_27_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa1787bfc47089bd96d33fff7bad1153d1',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f27_5fpin_5f01',['BSP_IO_PORT_27_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa4a41ab4915afe1b7a374411fe9eb196e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f28',['BSP_IO_PORT_28',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea2657a0bb753f5a81301eda96ca631aa6',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f28_5fpin_5f00',['BSP_IO_PORT_28_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa614cf023157b36d3e2162e11318abc31',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f28_5fpin_5f01',['BSP_IO_PORT_28_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf8c5571fbe78f2c5e6a767c13aec041c',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f29',['BSP_IO_PORT_29',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4ea757a862c98494a0aaad6369a1f990',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f29_5fpin_5f00',['BSP_IO_PORT_29_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa57ff3c85ce33930afe04e3802c55227f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f29_5fpin_5f01',['BSP_IO_PORT_29_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2f376ba6a57ea3ac2d60a499a0f57c46',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f30',['BSP_IO_PORT_30',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea7faeb64a7250a38ddbc971bc030b07cb',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f30_5fpin_5f00',['BSP_IO_PORT_30_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2df8908dd4850253d394bc3b7e685a75',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f30_5fpin_5f01',['BSP_IO_PORT_30_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaaee42cef11c4a58e9e5aa68fd382299b',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f31',['BSP_IO_PORT_31',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4c75f0f2e7ca9e74a85f3b382e830b69',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f31_5fpin_5f00',['BSP_IO_PORT_31_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadc72aebfb0e4a967a56c0e6b9d00ef18',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f31_5fpin_5f01',['BSP_IO_PORT_31_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabc8eb75642cdbdaac75d88a34278250b',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f32',['BSP_IO_PORT_32',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eab5a70226eac6e8cdcdbf5d248637a917',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f32_5fpin_5f00',['BSP_IO_PORT_32_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac53d38f374d54699a1622468faedc544',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f32_5fpin_5f01',['BSP_IO_PORT_32_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac17f65dbf85a6c6e746f1bf21aa934db',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f33',['BSP_IO_PORT_33',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea6bf1e63d623c3adb59409fcc5c540be7',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f33_5fpin_5f00',['BSP_IO_PORT_33_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad9a5407f94f35c91c7d98c0c91ffd975',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f33_5fpin_5f01',['BSP_IO_PORT_33_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa62d85ff211777b182617b334c8f7e7b0',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f34',['BSP_IO_PORT_34',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4654504be6ba72162f37014a9d73037c',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f34_5fpin_5f00',['BSP_IO_PORT_34_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab5b1771adf3821c23b1c4cfbeea5b4f5',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f34_5fpin_5f01',['BSP_IO_PORT_34_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae8415d4c07fce74af51a792896f3777e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f35',['BSP_IO_PORT_35',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eaf9d2db9d60f629faac9184c294f65984',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f35_5fpin_5f00',['BSP_IO_PORT_35_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0f2b7d0278bf5dcbe1a9d7b9cefd0c15',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f35_5fpin_5f01',['BSP_IO_PORT_35_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa25fdf456c4b05c5e15f51d615c3fa673',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f36',['BSP_IO_PORT_36',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea322678e3244fafb07badc6d529c62995',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f36_5fpin_5f00',['BSP_IO_PORT_36_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadd39c324258c968a575e24a4fa7ff354',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f36_5fpin_5f01',['BSP_IO_PORT_36_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8d452d6083512df8aa8bcef4815ad8b8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f37',['BSP_IO_PORT_37',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea6d0ed5fd6b8112e4fe087bd4211e9cf8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f37_5fpin_5f00',['BSP_IO_PORT_37_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5f9f37be21799183925449eda63b433',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f37_5fpin_5f01',['BSP_IO_PORT_37_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2fae9399a986654ad829fd957a0b5129',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f37_5fpin_5f02',['BSP_IO_PORT_37_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa59817ac0e653810d530b8bb4a74305d6',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f38',['BSP_IO_PORT_38',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eacee8ac33d0115b3997767c64527115ab',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f38_5fpin_5f00',['BSP_IO_PORT_38_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaba0a89ecb1ad6357f0ca6ca8067ff000',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f38_5fpin_5f01',['BSP_IO_PORT_38_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa9406041975509fcccff7d7dd93e786f3',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f39',['BSP_IO_PORT_39',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea994e790d360e9af8b4c681e3ce0bec74',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f39_5fpin_5f00',['BSP_IO_PORT_39_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0cd29a6c518b2c8e67932c1e8d6a62d4',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f39_5fpin_5f01',['BSP_IO_PORT_39_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa4f0e2180e0a141f1ef73934fa9c340d0',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f39_5fpin_5f02',['BSP_IO_PORT_39_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf0ecf908b8d4ce84a33b69ca4fdabca4',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f40',['BSP_IO_PORT_40',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea5e76257ac865ad0481c5ed353a4212c9',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f40_5fpin_5f00',['BSP_IO_PORT_40_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2d28483ae8cdc5474deca88e6bfe1dee',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f40_5fpin_5f01',['BSP_IO_PORT_40_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa63642ca9b2805ff92be0aa0bf7a66a9a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f40_5fpin_5f02',['BSP_IO_PORT_40_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6f5ee1365a8b7fc827fd3ceb3a4a8cb7',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f41',['BSP_IO_PORT_41',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea58562456ff71481a2de2866016b017f2',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f41_5fpin_5f00',['BSP_IO_PORT_41_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab20b0a224aa92ffab0e0405e33c7e61c',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f41_5fpin_5f01',['BSP_IO_PORT_41_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa72604af4694f399a0eca581ec5b897b8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f42',['BSP_IO_PORT_42',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea16bc2ebb264e5d30df602590dd0d4736',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f42_5fpin_5f00',['BSP_IO_PORT_42_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa51d3b48ed479b2ee3a46dc996d04b435',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f42_5fpin_5f01',['BSP_IO_PORT_42_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aacaf9e71dadad94b9b321585c69de0cd1',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f42_5fpin_5f02',['BSP_IO_PORT_42_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa7c6e61f76d6c3cc9a9dfd2f091bb0b3',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f42_5fpin_5f03',['BSP_IO_PORT_42_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaeffcc1d1f99236ae009d76eab5e0913d',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f42_5fpin_5f04',['BSP_IO_PORT_42_PIN_04',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa4f69d60a8685d441c35495d9d7dd09b8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f43',['BSP_IO_PORT_43',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ead099a4e210a23e9a0370fd9a4cb13f3f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f43_5fpin_5f00',['BSP_IO_PORT_43_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa829088e17268397d6ddb14182a380e51',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f43_5fpin_5f01',['BSP_IO_PORT_43_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2c579ae3361bf6dfb4191b4da60910fe',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f43_5fpin_5f02',['BSP_IO_PORT_43_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa252a1fcd0f46a31afcf798e301bdba16',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f43_5fpin_5f03',['BSP_IO_PORT_43_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa37a5927be9bc40f6df0f64adc84d6006',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f44',['BSP_IO_PORT_44',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea21028efff67589ec637595607faf5c60',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f44_5fpin_5f00',['BSP_IO_PORT_44_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae4d19f207d3548baf4e742bfca68ae46',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f44_5fpin_5f01',['BSP_IO_PORT_44_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae3f2fd01c62e1ae8522ed5137ad07e5e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f44_5fpin_5f02',['BSP_IO_PORT_44_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa73f9c0b7f80c8385d77008b1e785eb88',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f44_5fpin_5f03',['BSP_IO_PORT_44_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaff015065db131ce31c3e483ab8e9bb38',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f45',['BSP_IO_PORT_45',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea0650c44272c455fb11576525fe44580f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f45_5fpin_5f00',['BSP_IO_PORT_45_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac300c1ff8aaf37d2d3c840341888909a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f45_5fpin_5f01',['BSP_IO_PORT_45_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa52b16585d757e097a7ff851e74748973',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f45_5fpin_5f02',['BSP_IO_PORT_45_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabfeca2fc1cd38d80e5e31eb3c5032b83',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f45_5fpin_5f03',['BSP_IO_PORT_45_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5d15277bbd25881faf865b00f8c46c1',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f46',['BSP_IO_PORT_46',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea8e4609c67698b2386ef7db4443b90bbb',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f46_5fpin_5f00',['BSP_IO_PORT_46_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5e49717d4d34dea314976288c20c6ee',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f46_5fpin_5f01',['BSP_IO_PORT_46_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa430a0d48fb4e6fc1f5a358a5c1b17d8f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f46_5fpin_5f02',['BSP_IO_PORT_46_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2818abb4ea0fa720d53bf0a0ba923870',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f46_5fpin_5f03',['BSP_IO_PORT_46_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa03dceeb58f56dc9a21b5bfa3176ab217',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f47',['BSP_IO_PORT_47',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ead500583b0bed23efc4b23cfaf604dfdb',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f47_5fpin_5f00',['BSP_IO_PORT_47_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafc63a732535ea65c522c06582757d4bb',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f47_5fpin_5f01',['BSP_IO_PORT_47_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa01a4990336c06cef1fea22c9ff2bfb2d',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f47_5fpin_5f02',['BSP_IO_PORT_47_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf98bbb6311738366fe772c4a0e320824',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f47_5fpin_5f03',['BSP_IO_PORT_47_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafbb3e071ee0dcccf61805c9bebb7befa',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f48',['BSP_IO_PORT_48',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea41155aec80e8d3232eee7e5bd8576425',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f48_5fpin_5f00',['BSP_IO_PORT_48_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa57c5991f29df32eb1f4cd1c82082725b',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f48_5fpin_5f01',['BSP_IO_PORT_48_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa841054432251d0c7343d32144cee6789',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f48_5fpin_5f02',['BSP_IO_PORT_48_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa38e1abc8d5cae949e3f1e82f9f107cc3',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f48_5fpin_5f03',['BSP_IO_PORT_48_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5f53758d43bb074b01e3cba77cbb5cde',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f48_5fpin_5f04',['BSP_IO_PORT_48_PIN_04',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa60d189d33295043480ca9e91989fb126',1,'bsp_io.h']]], + ['bsp_5fio_5fnmi',['BSP_IO_NMI',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa3bf300bb3aa746665b49bc8200bd7963',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f00',['BSP_IO_PORT_00',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea11fccb10e338ed526b52e66f3b0e6f92',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f00_5fpin_5f00',['BSP_IO_PORT_00_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa62ce6a7aef8164ea6bce7a9209b2506f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f00_5fpin_5f01',['BSP_IO_PORT_00_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa9068c73f5a59c1a55f6e57bd406edf6c',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f01',['BSP_IO_PORT_01',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea1465c0a3f756e587525c11d00e3883f9',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f01_5fpin_5f00',['BSP_IO_PORT_01_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0ae62012d023d55c6d1141e1f09d09d8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f01_5fpin_5f01',['BSP_IO_PORT_01_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa30e6ff3f5eca3d04bec3d714e474f3df',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f02',['BSP_IO_PORT_02',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4944568317a214298b34be9bc3f26e48',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f02_5fpin_5f00',['BSP_IO_PORT_02_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa635ed7a090bf9052c6cfc6c225335c9a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f02_5fpin_5f01',['BSP_IO_PORT_02_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaea414f512f3b2c84888d93d506fbe172',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f03',['BSP_IO_PORT_03',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea97a779742ba7c411dfa7edb66e9569e7',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f03_5fpin_5f00',['BSP_IO_PORT_03_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa939175dd8a48d965dd7c667764cc1fd5',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f03_5fpin_5f01',['BSP_IO_PORT_03_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac76bc2a911b588e27633978b1fe3f3f4',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f04',['BSP_IO_PORT_04',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea8807e320a0f7ce2bbc6b61cf25a0b072',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f04_5fpin_5f00',['BSP_IO_PORT_04_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa52d01ece7c8204d5780ce72179f09c76',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f04_5fpin_5f01',['BSP_IO_PORT_04_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaeb156edee3b3c89b68b51df1f396a61f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f05',['BSP_IO_PORT_05',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea20eb52e6abf9b112dc5af6931984dec1',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f05_5fpin_5f00',['BSP_IO_PORT_05_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaceb466e44e04e3b0ab04a7f10003a8be',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f05_5fpin_5f01',['BSP_IO_PORT_05_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aacf43fded0d1c0e1888ec9ae765ddf5f2',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f05_5fpin_5f02',['BSP_IO_PORT_05_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaab1bcef9f45fb16232cc5913697eed32',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f06',['BSP_IO_PORT_06',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea35098d51c380e353369db8e0881952a6',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f06_5fpin_5f00',['BSP_IO_PORT_06_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae9d15e574de9e35f7e1197c95d05dad9',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f06_5fpin_5f01',['BSP_IO_PORT_06_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa95398234ddf9c5235901f089d4e81662',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f07',['BSP_IO_PORT_07',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eab007ee52e771b0d17a8e54fa3fb6e93b',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f07_5fpin_5f00',['BSP_IO_PORT_07_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6569ae616e2c7ec066f05618be44d35a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f07_5fpin_5f01',['BSP_IO_PORT_07_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae3e273b0a415a41e1f4e3ae91817c186',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f07_5fpin_5f02',['BSP_IO_PORT_07_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa88e147f4775b65d5c96a282684a408c8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f08',['BSP_IO_PORT_08',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea3f042a23f398537b95fd88334a3b4d9e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f08_5fpin_5f00',['BSP_IO_PORT_08_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad47cbb33ca5c9f12ee8dca084e3062d3',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f08_5fpin_5f01',['BSP_IO_PORT_08_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaaedcbffa95e268f197778af394a4bf35',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f08_5fpin_5f02',['BSP_IO_PORT_08_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6c298d5d898981f883b4b01f90e5c996',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f09',['BSP_IO_PORT_09',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea584e14f51456fd94e7c7f0a9ed66b2bf',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f09_5fpin_5f00',['BSP_IO_PORT_09_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadb3e4e605bcb1d788367185e4058982f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f09_5fpin_5f01',['BSP_IO_PORT_09_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf9970a4d1a41e6482fad460393a196a1',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f10',['BSP_IO_PORT_10',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea0a6ffd6c20eaaa32409b9ca0dee293e8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f10_5fpin_5f00',['BSP_IO_PORT_10_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8ef0f2b6cc6de032c23c371dafc6004f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f10_5fpin_5f01',['BSP_IO_PORT_10_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0623a8fae8511929239804f47b76dbab',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f11',['BSP_IO_PORT_11',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eabf85020df009d581e4fadb6e8a1dbddb',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f11_5fpin_5f00',['BSP_IO_PORT_11_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa125041643933f0bc07f32f14887bdf9c',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f11_5fpin_5f01',['BSP_IO_PORT_11_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab951cf766f9cd671ae093a141bc0c49a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f12',['BSP_IO_PORT_12',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea78ad7bb48a9750a3ba08672b6baeef7e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f12_5fpin_5f00',['BSP_IO_PORT_12_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabaaa47451e1390c478c5b2a1725e6496',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f12_5fpin_5f01',['BSP_IO_PORT_12_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa41f8c9cb94f726c7030df2052fd79774',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f13',['BSP_IO_PORT_13',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eae0f99efe8ef380f164802966936f7847',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f13_5fpin_5f00',['BSP_IO_PORT_13_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0ed7d51f576b741e15330313031c2216',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f13_5fpin_5f01',['BSP_IO_PORT_13_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2014abe37005233fad759d8de134796a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f13_5fpin_5f02',['BSP_IO_PORT_13_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad24ad8bbfa5f6d10db6ff8dc75eadef5',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f14',['BSP_IO_PORT_14',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea775af46386b8ac7e29159624b9224295',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f14_5fpin_5f00',['BSP_IO_PORT_14_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad20c513c1e1b64b683255e3b3b34b09a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f14_5fpin_5f01',['BSP_IO_PORT_14_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7bf44c9d323051836f7cbdc7e9da06de',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f15',['BSP_IO_PORT_15',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea397323ae563e9bd7c503dc1c675fa395',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f15_5fpin_5f00',['BSP_IO_PORT_15_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa23d463236f6411d0c90196dabcc9c5cf',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f15_5fpin_5f01',['BSP_IO_PORT_15_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa191310dd2b5e6a16244b452a76983735',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f16',['BSP_IO_PORT_16',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea002722322e8a845391a87dcc7eb9cc45',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f16_5fpin_5f00',['BSP_IO_PORT_16_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae35842723dba01d6ced15e6349ad2d8e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f16_5fpin_5f01',['BSP_IO_PORT_16_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa922ad01a7323cb74f484964dc5d66697',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f17',['BSP_IO_PORT_17',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ead05a1353527cf2773715624fabd00a00',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f17_5fpin_5f00',['BSP_IO_PORT_17_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaae0e1e9e69f942b9db5e95ff83323ad4',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f17_5fpin_5f01',['BSP_IO_PORT_17_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa9e537caa46d62591f1a698b30897ee2',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f17_5fpin_5f02',['BSP_IO_PORT_17_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa16ff4369ccc2eb0e6447af953bc94500',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f18',['BSP_IO_PORT_18',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eae6713d42094e3ab520aabae92ebd40bc',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f18_5fpin_5f00',['BSP_IO_PORT_18_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa3c395ad7ae5d1d25edc8ba2a536d0525',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f18_5fpin_5f01',['BSP_IO_PORT_18_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac2479bdb7c292438a9d7c3dd4f48a16a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f19',['BSP_IO_PORT_19',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea175a84c2aa70454b4e6d4ab1c1bf09a6',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f19_5fpin_5f00',['BSP_IO_PORT_19_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadab728bf7f83ae6d642836403d5d2dc1',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f19_5fpin_5f01',['BSP_IO_PORT_19_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa1628f1c03dc3bfe49f118a6bb2400c53',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f20',['BSP_IO_PORT_20',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eabb06fb72ab7089198e72a6fea4a109e2',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f20_5fpin_5f00',['BSP_IO_PORT_20_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa53d05b3cda0c467bb7f5ed5999f2ab8f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f20_5fpin_5f01',['BSP_IO_PORT_20_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaaf1af3c7ee0c71fde7bfd1cd49949123',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f20_5fpin_5f02',['BSP_IO_PORT_20_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac47b0fc7594eb9f9b3b8b8ad31b464ec',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f21',['BSP_IO_PORT_21',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea26ec6accacb5dbb180a419780a88afe0',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f21_5fpin_5f00',['BSP_IO_PORT_21_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa26c218a01d621d492389ce4f74597f55',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f21_5fpin_5f01',['BSP_IO_PORT_21_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5dfe885cc0ee6d129a7759c8ffecfd7e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f22',['BSP_IO_PORT_22',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea2873610326361727fdadf7c95b1eb66f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f22_5fpin_5f00',['BSP_IO_PORT_22_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5c7fa78ba5a0152298956fda6cf85c5e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f22_5fpin_5f01',['BSP_IO_PORT_22_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa9ddc4ada31ca968e9b166cd11b440143',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f23',['BSP_IO_PORT_23',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4a80f7746adba5117728d74884967ff0',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f23_5fpin_5f00',['BSP_IO_PORT_23_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab4d640dac1a6dff63f33c79ee1e20c9e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f23_5fpin_5f01',['BSP_IO_PORT_23_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa98b1d268ef5f45e6751c0a99139acc5c',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f24',['BSP_IO_PORT_24',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea40a254bc0f42f443d78c717bed44a682',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f24_5fpin_5f00',['BSP_IO_PORT_24_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa40b055b032c42ad42b0d1878a4a52d73',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f24_5fpin_5f01',['BSP_IO_PORT_24_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa39f4c9b8a1bfe125213595ecc0b45df0',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f25',['BSP_IO_PORT_25',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea5f6e2b131b2f5b5dbd759533379d6105',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f25_5fpin_5f00',['BSP_IO_PORT_25_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa49e414efa6d0d02c604aac05bb9778db',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f25_5fpin_5f01',['BSP_IO_PORT_25_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf117a1aa77a1a547745adf145d8dc77e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f26',['BSP_IO_PORT_26',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eabc16d0f819ca9bb6eb8638e9b5e6c99e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f26_5fpin_5f00',['BSP_IO_PORT_26_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf4eff0573f5c549da8c41d0b38166e66',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f26_5fpin_5f01',['BSP_IO_PORT_26_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2a3374a2fd5198a534ee4a728349e13f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f27',['BSP_IO_PORT_27',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea566070ed168bf63dc412bdaf12d939e3',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f27_5fpin_5f00',['BSP_IO_PORT_27_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa1787bfc47089bd96d33fff7bad1153d1',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f27_5fpin_5f01',['BSP_IO_PORT_27_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa4a41ab4915afe1b7a374411fe9eb196e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f28',['BSP_IO_PORT_28',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea2657a0bb753f5a81301eda96ca631aa6',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f28_5fpin_5f00',['BSP_IO_PORT_28_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa614cf023157b36d3e2162e11318abc31',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f28_5fpin_5f01',['BSP_IO_PORT_28_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf8c5571fbe78f2c5e6a767c13aec041c',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f29',['BSP_IO_PORT_29',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4ea757a862c98494a0aaad6369a1f990',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f29_5fpin_5f00',['BSP_IO_PORT_29_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa57ff3c85ce33930afe04e3802c55227f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f29_5fpin_5f01',['BSP_IO_PORT_29_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2f376ba6a57ea3ac2d60a499a0f57c46',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f30',['BSP_IO_PORT_30',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea7faeb64a7250a38ddbc971bc030b07cb',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f30_5fpin_5f00',['BSP_IO_PORT_30_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2df8908dd4850253d394bc3b7e685a75',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f30_5fpin_5f01',['BSP_IO_PORT_30_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaaee42cef11c4a58e9e5aa68fd382299b',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f31',['BSP_IO_PORT_31',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4c75f0f2e7ca9e74a85f3b382e830b69',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f31_5fpin_5f00',['BSP_IO_PORT_31_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadc72aebfb0e4a967a56c0e6b9d00ef18',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f31_5fpin_5f01',['BSP_IO_PORT_31_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabc8eb75642cdbdaac75d88a34278250b',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f32',['BSP_IO_PORT_32',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eab5a70226eac6e8cdcdbf5d248637a917',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f32_5fpin_5f00',['BSP_IO_PORT_32_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac53d38f374d54699a1622468faedc544',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f32_5fpin_5f01',['BSP_IO_PORT_32_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac17f65dbf85a6c6e746f1bf21aa934db',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f33',['BSP_IO_PORT_33',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea6bf1e63d623c3adb59409fcc5c540be7',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f33_5fpin_5f00',['BSP_IO_PORT_33_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad9a5407f94f35c91c7d98c0c91ffd975',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f33_5fpin_5f01',['BSP_IO_PORT_33_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa62d85ff211777b182617b334c8f7e7b0',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f34',['BSP_IO_PORT_34',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4654504be6ba72162f37014a9d73037c',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f34_5fpin_5f00',['BSP_IO_PORT_34_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab5b1771adf3821c23b1c4cfbeea5b4f5',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f34_5fpin_5f01',['BSP_IO_PORT_34_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae8415d4c07fce74af51a792896f3777e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f35',['BSP_IO_PORT_35',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eaf9d2db9d60f629faac9184c294f65984',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f35_5fpin_5f00',['BSP_IO_PORT_35_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0f2b7d0278bf5dcbe1a9d7b9cefd0c15',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f35_5fpin_5f01',['BSP_IO_PORT_35_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa25fdf456c4b05c5e15f51d615c3fa673',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f36',['BSP_IO_PORT_36',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea322678e3244fafb07badc6d529c62995',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f36_5fpin_5f00',['BSP_IO_PORT_36_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadd39c324258c968a575e24a4fa7ff354',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f36_5fpin_5f01',['BSP_IO_PORT_36_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8d452d6083512df8aa8bcef4815ad8b8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f37',['BSP_IO_PORT_37',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea6d0ed5fd6b8112e4fe087bd4211e9cf8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f37_5fpin_5f00',['BSP_IO_PORT_37_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5f9f37be21799183925449eda63b433',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f37_5fpin_5f01',['BSP_IO_PORT_37_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2fae9399a986654ad829fd957a0b5129',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f37_5fpin_5f02',['BSP_IO_PORT_37_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa59817ac0e653810d530b8bb4a74305d6',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f38',['BSP_IO_PORT_38',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eacee8ac33d0115b3997767c64527115ab',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f38_5fpin_5f00',['BSP_IO_PORT_38_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaba0a89ecb1ad6357f0ca6ca8067ff000',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f38_5fpin_5f01',['BSP_IO_PORT_38_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa9406041975509fcccff7d7dd93e786f3',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f39',['BSP_IO_PORT_39',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea994e790d360e9af8b4c681e3ce0bec74',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f39_5fpin_5f00',['BSP_IO_PORT_39_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0cd29a6c518b2c8e67932c1e8d6a62d4',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f39_5fpin_5f01',['BSP_IO_PORT_39_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa4f0e2180e0a141f1ef73934fa9c340d0',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f39_5fpin_5f02',['BSP_IO_PORT_39_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf0ecf908b8d4ce84a33b69ca4fdabca4',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f40',['BSP_IO_PORT_40',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea5e76257ac865ad0481c5ed353a4212c9',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f40_5fpin_5f00',['BSP_IO_PORT_40_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2d28483ae8cdc5474deca88e6bfe1dee',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f40_5fpin_5f01',['BSP_IO_PORT_40_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa63642ca9b2805ff92be0aa0bf7a66a9a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f40_5fpin_5f02',['BSP_IO_PORT_40_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6f5ee1365a8b7fc827fd3ceb3a4a8cb7',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f41',['BSP_IO_PORT_41',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea58562456ff71481a2de2866016b017f2',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f41_5fpin_5f00',['BSP_IO_PORT_41_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab20b0a224aa92ffab0e0405e33c7e61c',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f41_5fpin_5f01',['BSP_IO_PORT_41_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa72604af4694f399a0eca581ec5b897b8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f42',['BSP_IO_PORT_42',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea16bc2ebb264e5d30df602590dd0d4736',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f42_5fpin_5f00',['BSP_IO_PORT_42_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa51d3b48ed479b2ee3a46dc996d04b435',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f42_5fpin_5f01',['BSP_IO_PORT_42_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aacaf9e71dadad94b9b321585c69de0cd1',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f42_5fpin_5f02',['BSP_IO_PORT_42_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa7c6e61f76d6c3cc9a9dfd2f091bb0b3',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f42_5fpin_5f03',['BSP_IO_PORT_42_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaeffcc1d1f99236ae009d76eab5e0913d',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f42_5fpin_5f04',['BSP_IO_PORT_42_PIN_04',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa4f69d60a8685d441c35495d9d7dd09b8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f43',['BSP_IO_PORT_43',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ead099a4e210a23e9a0370fd9a4cb13f3f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f43_5fpin_5f00',['BSP_IO_PORT_43_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa829088e17268397d6ddb14182a380e51',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f43_5fpin_5f01',['BSP_IO_PORT_43_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2c579ae3361bf6dfb4191b4da60910fe',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f43_5fpin_5f02',['BSP_IO_PORT_43_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa252a1fcd0f46a31afcf798e301bdba16',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f43_5fpin_5f03',['BSP_IO_PORT_43_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa37a5927be9bc40f6df0f64adc84d6006',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f44',['BSP_IO_PORT_44',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea21028efff67589ec637595607faf5c60',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f44_5fpin_5f00',['BSP_IO_PORT_44_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae4d19f207d3548baf4e742bfca68ae46',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f44_5fpin_5f01',['BSP_IO_PORT_44_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae3f2fd01c62e1ae8522ed5137ad07e5e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f44_5fpin_5f02',['BSP_IO_PORT_44_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa73f9c0b7f80c8385d77008b1e785eb88',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f44_5fpin_5f03',['BSP_IO_PORT_44_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaff015065db131ce31c3e483ab8e9bb38',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f45',['BSP_IO_PORT_45',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea0650c44272c455fb11576525fe44580f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f45_5fpin_5f00',['BSP_IO_PORT_45_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac300c1ff8aaf37d2d3c840341888909a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f45_5fpin_5f01',['BSP_IO_PORT_45_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa52b16585d757e097a7ff851e74748973',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f45_5fpin_5f02',['BSP_IO_PORT_45_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabfeca2fc1cd38d80e5e31eb3c5032b83',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f45_5fpin_5f03',['BSP_IO_PORT_45_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5d15277bbd25881faf865b00f8c46c1',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f46',['BSP_IO_PORT_46',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea8e4609c67698b2386ef7db4443b90bbb',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f46_5fpin_5f00',['BSP_IO_PORT_46_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5e49717d4d34dea314976288c20c6ee',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f46_5fpin_5f01',['BSP_IO_PORT_46_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa430a0d48fb4e6fc1f5a358a5c1b17d8f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f46_5fpin_5f02',['BSP_IO_PORT_46_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2818abb4ea0fa720d53bf0a0ba923870',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f46_5fpin_5f03',['BSP_IO_PORT_46_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa03dceeb58f56dc9a21b5bfa3176ab217',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f47',['BSP_IO_PORT_47',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ead500583b0bed23efc4b23cfaf604dfdb',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f47_5fpin_5f00',['BSP_IO_PORT_47_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafc63a732535ea65c522c06582757d4bb',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f47_5fpin_5f01',['BSP_IO_PORT_47_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa01a4990336c06cef1fea22c9ff2bfb2d',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f47_5fpin_5f02',['BSP_IO_PORT_47_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf98bbb6311738366fe772c4a0e320824',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f47_5fpin_5f03',['BSP_IO_PORT_47_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafbb3e071ee0dcccf61805c9bebb7befa',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f48',['BSP_IO_PORT_48',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea41155aec80e8d3232eee7e5bd8576425',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f48_5fpin_5f00',['BSP_IO_PORT_48_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa57c5991f29df32eb1f4cd1c82082725b',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f48_5fpin_5f01',['BSP_IO_PORT_48_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa841054432251d0c7343d32144cee6789',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f48_5fpin_5f02',['BSP_IO_PORT_48_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa38e1abc8d5cae949e3f1e82f9f107cc3',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f48_5fpin_5f03',['BSP_IO_PORT_48_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5f53758d43bb074b01e3cba77cbb5cde',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f48_5fpin_5f04',['BSP_IO_PORT_48_PIN_04',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa60d189d33295043480ca9e91989fb126',1,'bsp_io.h']]], ['bsp_5fio_5fport_5fpin_5ft',['bsp_io_port_pin_t',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80a',1,'bsp_io.h']]], ['bsp_5fio_5fport_5ft',['bsp_io_port_t',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46e',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi0_5fio0',['BSP_IO_QSPI0_IO0',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6d353753e9a3f1ec95967f7e7fb630f5',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi0_5fio1',['BSP_IO_QSPI0_IO1',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7127f17a3754e1842aafd8c5b5d2062a',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi0_5fio2',['BSP_IO_QSPI0_IO2',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabcc1e97ac8b56e357b24ec536ddb4269',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi0_5fio3',['BSP_IO_QSPI0_IO3',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa62438f5462fd98d683368b464b18e4c',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi0_5fspclk',['BSP_IO_QSPI0_SPCLK',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaef51c0ad05848a82f97fa49a29f66f37',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi0_5fssl',['BSP_IO_QSPI0_SSL',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab0e97936a0410619b613d3e8ac4b0de1',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi1_5fio0',['BSP_IO_QSPI1_IO0',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5394e222d99a1ca17622c3d1c8a5c94d',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi1_5fio1',['BSP_IO_QSPI1_IO1',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7a1d5c0e646b87a381b9f1a829e2909b',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi1_5fio2',['BSP_IO_QSPI1_IO2',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa65598f991476837f7822ce44244e349e',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi1_5fio3',['BSP_IO_QSPI1_IO3',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa1e9673eef7a96cf9f46b8f75421075dd',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi1_5fspclk',['BSP_IO_QSPI1_SPCLK',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8b11501a458d5b7a82e5bdc80cb9252a',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi1_5fssl',['BSP_IO_QSPI1_SSL',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa7c30f479d99f883ee4b4fa27b6ae4f5',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi_5fint_5fn',['BSP_IO_QSPI_INT_N',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa12bccfc806539758e2b3a47e6ea93ca9',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi_5freset_5fn',['BSP_IO_QSPI_RESET_N',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8248388efb79c97a26893bb2de4c8d5b',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi_5fwp_5fn',['BSP_IO_QSPI_WP_N',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab466c8da8ed341f72fdc9e4059d9025c',1,'bsp_io.h']]], - ['bsp_5fio_5friic0_5fscl',['BSP_IO_RIIC0_SCL',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad77d8a140615854897936e80b31f0670',1,'bsp_io.h']]], - ['bsp_5fio_5friic0_5fsda',['BSP_IO_RIIC0_SDA',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaba9b7c124ac20c50a71563d64a068fc9',1,'bsp_io.h']]], - ['bsp_5fio_5friic1_5fscl',['BSP_IO_RIIC1_SCL',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8c0b73a965fe066d0d58a4fb513d84dc',1,'bsp_io.h']]], - ['bsp_5fio_5friic1_5fsda',['BSP_IO_RIIC1_SDA',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6828c5428be0bd1a3a5b79e111871411',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fclk',['BSP_IO_SD0_CLK',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabccd7e7760466f8c666ae02e8d84267e',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fcmd',['BSP_IO_SD0_CMD',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0ef28251d02b2be71736cd6709324cf7',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata0',['BSP_IO_SD0_DATA0',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa03979860d2850a4790a85a7012fff5b4',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata1',['BSP_IO_SD0_DATA1',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5590555e0fa70d287a8a215b9a703de7',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata2',['BSP_IO_SD0_DATA2',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa73326eeb5a58de9766418893bcc1a284',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata3',['BSP_IO_SD0_DATA3',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf2cf666df832a706dfdd973aac8406d8',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata4',['BSP_IO_SD0_DATA4',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa876a99deff86f8d09f1d96112a1b2dc3',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata5',['BSP_IO_SD0_DATA5',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aade0f69819cb635c9127516bcb86f5886',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata6',['BSP_IO_SD0_DATA6',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa3afa25e16d31202f5367150ce88e768e',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata7',['BSP_IO_SD0_DATA7',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5e1dcfb012ca07ec05c7a5da14ad055',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5frst_5fn',['BSP_IO_SD0_RST_N',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa8daf070713048cb35f873e0490068df',1,'bsp_io.h']]], - ['bsp_5fio_5fsd1_5fclk',['BSP_IO_SD1_CLK',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad2f6c4dec46159cddb6d967a551c7c2a',1,'bsp_io.h']]], - ['bsp_5fio_5fsd1_5fcmd',['BSP_IO_SD1_CMD',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa405fdd3dc66955a4858cc69a19016933',1,'bsp_io.h']]], - ['bsp_5fio_5fsd1_5fdata0',['BSP_IO_SD1_DATA0',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafbc2d3122913859d09d249bf264d4136',1,'bsp_io.h']]], - ['bsp_5fio_5fsd1_5fdata1',['BSP_IO_SD1_DATA1',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa67d5209707eab3f61c4eb9bbbd1ce73f',1,'bsp_io.h']]], - ['bsp_5fio_5fsd1_5fdata2',['BSP_IO_SD1_DATA2',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaeaedf55bf5c303fdb8fd62b7df65f2e4',1,'bsp_io.h']]], - ['bsp_5fio_5fsd1_5fdata3',['BSP_IO_SD1_DATA3',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae758bfc092956cb39f9013b921753657',1,'bsp_io.h']]], - ['bsp_5fio_5ftdo',['BSP_IO_TDO',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae97fc09171edc1a3c841cab7a1020fb2',1,'bsp_io.h']]], - ['bsp_5fio_5ftms_5fswdio',['BSP_IO_TMS_SWDIO',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafd917ebff207c1b9456898a143d10c38',1,'bsp_io.h']]], - ['bsp_5fio_5fwdtovf_5fperrout_5fn',['BSP_IO_WDTOVF_PERROUT_N',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7901524777e247b132a543d19b8ddd4f',1,'bsp_io.h']]], - ['bsp_5firq_5fdisabled',['BSP_IRQ_DISABLED',['../group___b_s_p___m_c_u.html#gae685ec20bc3579295878f1586478b54c',1,'bsp_common.h']]], - ['bsp_5fstack_5falignment',['BSP_STACK_ALIGNMENT',['../group___b_s_p___m_c_u.html#gadecec24d538312129b60def6152f5992',1,'bsp_compiler_support.h']]], - ['bsp_5fwarm_5fstart_5fevent_5ft',['bsp_warm_start_event_t',['../group___b_s_p___m_c_u.html#ga6fe6dc3c0813eeae8665430a31c005b4',1,'bsp_common.h']]], - ['bsp_5fwarm_5fstart_5fpost_5fc',['BSP_WARM_START_POST_C',['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811',1,'bsp_common.h']]], - ['bsp_5fwarm_5fstart_5fpost_5fclock',['BSP_WARM_START_POST_CLOCK',['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7',1,'bsp_common.h']]], - ['bsp_5fwarm_5fstart_5freset',['BSP_WARM_START_RESET',['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2',1,'bsp_common.h']]], - ['buf',['buf',['../group___r_m___h_s300_x.html#a486df3e0ed2af6c8c038e1357572da53',1,'rm_hs300x_instance_ctrl_t::buf()'],['../group___r_m___o_b1203.html#a8315472488bcdc83146c0e0c873d8037',1,'rm_ob1203_instance_ctrl_t::buf()'],['../group___r_m___z_m_o_d4_x_x_x.html#a0a1702cc41dc3a4c35e5c81f95b55295',1,'rm_zmod4xxx_instance_ctrl_t::buf()']]], + ['bsp_5fio_5fqspi0_5fio0',['BSP_IO_QSPI0_IO0',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6d353753e9a3f1ec95967f7e7fb630f5',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi0_5fio1',['BSP_IO_QSPI0_IO1',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7127f17a3754e1842aafd8c5b5d2062a',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi0_5fio2',['BSP_IO_QSPI0_IO2',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabcc1e97ac8b56e357b24ec536ddb4269',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi0_5fio3',['BSP_IO_QSPI0_IO3',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa62438f5462fd98d683368b464b18e4c',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi0_5fspclk',['BSP_IO_QSPI0_SPCLK',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaef51c0ad05848a82f97fa49a29f66f37',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi0_5fssl',['BSP_IO_QSPI0_SSL',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab0e97936a0410619b613d3e8ac4b0de1',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi1_5fio0',['BSP_IO_QSPI1_IO0',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5394e222d99a1ca17622c3d1c8a5c94d',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi1_5fio1',['BSP_IO_QSPI1_IO1',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7a1d5c0e646b87a381b9f1a829e2909b',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi1_5fio2',['BSP_IO_QSPI1_IO2',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa65598f991476837f7822ce44244e349e',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi1_5fio3',['BSP_IO_QSPI1_IO3',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa1e9673eef7a96cf9f46b8f75421075dd',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi1_5fspclk',['BSP_IO_QSPI1_SPCLK',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8b11501a458d5b7a82e5bdc80cb9252a',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi1_5fssl',['BSP_IO_QSPI1_SSL',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa7c30f479d99f883ee4b4fa27b6ae4f5',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi_5fint_5fn',['BSP_IO_QSPI_INT_N',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa12bccfc806539758e2b3a47e6ea93ca9',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi_5freset_5fn',['BSP_IO_QSPI_RESET_N',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8248388efb79c97a26893bb2de4c8d5b',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi_5fwp_5fn',['BSP_IO_QSPI_WP_N',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab466c8da8ed341f72fdc9e4059d9025c',1,'bsp_io.h']]], + ['bsp_5fio_5friic0_5fscl',['BSP_IO_RIIC0_SCL',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad77d8a140615854897936e80b31f0670',1,'bsp_io.h']]], + ['bsp_5fio_5friic0_5fsda',['BSP_IO_RIIC0_SDA',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaba9b7c124ac20c50a71563d64a068fc9',1,'bsp_io.h']]], + ['bsp_5fio_5friic1_5fscl',['BSP_IO_RIIC1_SCL',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8c0b73a965fe066d0d58a4fb513d84dc',1,'bsp_io.h']]], + ['bsp_5fio_5friic1_5fsda',['BSP_IO_RIIC1_SDA',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6828c5428be0bd1a3a5b79e111871411',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fclk',['BSP_IO_SD0_CLK',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabccd7e7760466f8c666ae02e8d84267e',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fcmd',['BSP_IO_SD0_CMD',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0ef28251d02b2be71736cd6709324cf7',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata0',['BSP_IO_SD0_DATA0',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa03979860d2850a4790a85a7012fff5b4',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata1',['BSP_IO_SD0_DATA1',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5590555e0fa70d287a8a215b9a703de7',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata2',['BSP_IO_SD0_DATA2',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa73326eeb5a58de9766418893bcc1a284',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata3',['BSP_IO_SD0_DATA3',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf2cf666df832a706dfdd973aac8406d8',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata4',['BSP_IO_SD0_DATA4',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa876a99deff86f8d09f1d96112a1b2dc3',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata5',['BSP_IO_SD0_DATA5',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aade0f69819cb635c9127516bcb86f5886',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata6',['BSP_IO_SD0_DATA6',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa3afa25e16d31202f5367150ce88e768e',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata7',['BSP_IO_SD0_DATA7',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5e1dcfb012ca07ec05c7a5da14ad055',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5frst_5fn',['BSP_IO_SD0_RST_N',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa8daf070713048cb35f873e0490068df',1,'bsp_io.h']]], + ['bsp_5fio_5fsd1_5fclk',['BSP_IO_SD1_CLK',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad2f6c4dec46159cddb6d967a551c7c2a',1,'bsp_io.h']]], + ['bsp_5fio_5fsd1_5fcmd',['BSP_IO_SD1_CMD',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa405fdd3dc66955a4858cc69a19016933',1,'bsp_io.h']]], + ['bsp_5fio_5fsd1_5fdata0',['BSP_IO_SD1_DATA0',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafbc2d3122913859d09d249bf264d4136',1,'bsp_io.h']]], + ['bsp_5fio_5fsd1_5fdata1',['BSP_IO_SD1_DATA1',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa67d5209707eab3f61c4eb9bbbd1ce73f',1,'bsp_io.h']]], + ['bsp_5fio_5fsd1_5fdata2',['BSP_IO_SD1_DATA2',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaeaedf55bf5c303fdb8fd62b7df65f2e4',1,'bsp_io.h']]], + ['bsp_5fio_5fsd1_5fdata3',['BSP_IO_SD1_DATA3',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae758bfc092956cb39f9013b921753657',1,'bsp_io.h']]], + ['bsp_5fio_5ftdo',['BSP_IO_TDO',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae97fc09171edc1a3c841cab7a1020fb2',1,'bsp_io.h']]], + ['bsp_5fio_5ftms_5fswdio',['BSP_IO_TMS_SWDIO',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafd917ebff207c1b9456898a143d10c38',1,'bsp_io.h']]], + ['bsp_5fio_5fwdtovf_5fperrout_5fn',['BSP_IO_WDTOVF_PERROUT_N',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7901524777e247b132a543d19b8ddd4f',1,'bsp_io.h']]], + ['bsp_5firq_5fdisabled',['BSP_IRQ_DISABLED',['../group___b_s_p___m_c_u.html#gae685ec20bc3579295878f1586478b54c',1,'BSP_IRQ_DISABLED(): bsp_common.h'],['../group___b_s_p___m_c_u.html#gae685ec20bc3579295878f1586478b54c',1,'BSP_IRQ_DISABLED(): bsp_common.h']]], + ['bsp_5fqspi_5fvoltage_5f18',['BSP_QSPI_VOLTAGE_18',['../group___b_s_p___i_o.html#ggac10820a16ee9dcbe7fbbd21ad81eee9fa7b2e7dbd3b7011e86d86d71652eb843a',1,'bsp_io.h']]], + ['bsp_5fqspi_5fvoltage_5f33',['BSP_QSPI_VOLTAGE_33',['../group___b_s_p___i_o.html#ggac10820a16ee9dcbe7fbbd21ad81eee9fa87d2f4e20a62d305f5a9cd99e28093b1',1,'bsp_io.h']]], + ['bsp_5fqspi_5fvoltage_5ft',['bsp_qspi_voltage_t',['../group___b_s_p___i_o.html#gac10820a16ee9dcbe7fbbd21ad81eee9f',1,'bsp_io.h']]], + ['bsp_5fsd_5fchannel_5f0',['BSP_SD_CHANNEL_0',['../group___b_s_p___i_o.html#ggad0c359892ab6323f72558fb6f0efbb39a78721ea751aeb12179ca343858f91c7b',1,'bsp_io.h']]], + ['bsp_5fsd_5fchannel_5f1',['BSP_SD_CHANNEL_1',['../group___b_s_p___i_o.html#ggad0c359892ab6323f72558fb6f0efbb39a982209b33546c7b97b98e0e182fee582',1,'bsp_io.h']]], + ['bsp_5fsd_5fchannel_5ft',['bsp_sd_channel_t',['../group___b_s_p___i_o.html#gad0c359892ab6323f72558fb6f0efbb39',1,'bsp_io.h']]], + ['bsp_5fsd_5fvoltage_5f18',['BSP_SD_VOLTAGE_18',['../group___b_s_p___i_o.html#gga5909e53671d51b521963bb4a9c5bb961ad6d758c60ce16e34187d1c3ea956c983',1,'bsp_io.h']]], + ['bsp_5fsd_5fvoltage_5f33',['BSP_SD_VOLTAGE_33',['../group___b_s_p___i_o.html#gga5909e53671d51b521963bb4a9c5bb961a9a5b3ea4f1555314b07a3bf5567d96b5',1,'bsp_io.h']]], + ['bsp_5fsd_5fvoltage_5ft',['bsp_sd_voltage_t',['../group___b_s_p___i_o.html#ga5909e53671d51b521963bb4a9c5bb961',1,'bsp_io.h']]], + ['bsp_5fstack_5falignment',['BSP_STACK_ALIGNMENT',['../group___b_s_p___m_c_u.html#gadecec24d538312129b60def6152f5992',1,'BSP_STACK_ALIGNMENT(): bsp_compiler_support.h'],['../group___b_s_p___m_c_u.html#gadecec24d538312129b60def6152f5992',1,'BSP_STACK_ALIGNMENT(): bsp_compiler_support.h']]], + ['bsp_5fwarm_5fstart_5fevent_5ft',['bsp_warm_start_event_t',['../group___b_s_p___m_c_u.html#ga6fe6dc3c0813eeae8665430a31c005b4',1,'bsp_warm_start_event_t(): bsp_common.h'],['../group___b_s_p___m_c_u.html#ga6fe6dc3c0813eeae8665430a31c005b4',1,'bsp_warm_start_event_t(): bsp_common.h']]], + ['bsp_5fwarm_5fstart_5fpost_5fc',['BSP_WARM_START_POST_C',['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811',1,'BSP_WARM_START_POST_C(): bsp_common.h'],['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811',1,'BSP_WARM_START_POST_C(): bsp_common.h']]], + ['bsp_5fwarm_5fstart_5fpost_5fclock',['BSP_WARM_START_POST_CLOCK',['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7',1,'BSP_WARM_START_POST_CLOCK(): bsp_common.h'],['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7',1,'BSP_WARM_START_POST_CLOCK(): bsp_common.h']]], + ['bsp_5fwarm_5fstart_5freset',['BSP_WARM_START_RESET',['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2',1,'BSP_WARM_START_RESET(): bsp_common.h'],['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2',1,'BSP_WARM_START_RESET(): bsp_common.h']]], + ['bsp_5fxspi_5fvoltage_5f18',['BSP_XSPI_VOLTAGE_18',['../group___b_s_p___i_o.html#ggaca40cd8c80dc5bf04d65d3d5db9e3d7caf71bc73917bb7416833e3dca8a41a1b0',1,'bsp_io.h']]], + ['bsp_5fxspi_5fvoltage_5f25',['BSP_XSPI_VOLTAGE_25',['../group___b_s_p___i_o.html#ggaca40cd8c80dc5bf04d65d3d5db9e3d7ca37e1061cff55bbab7d5ddae4071322dd',1,'bsp_io.h']]], + ['bsp_5fxspi_5fvoltage_5f33',['BSP_XSPI_VOLTAGE_33',['../group___b_s_p___i_o.html#ggaca40cd8c80dc5bf04d65d3d5db9e3d7ca731b6ae8493cc93ec326574439aa983d',1,'bsp_io.h']]], + ['bsp_5fxspi_5fvoltage_5ft',['bsp_xspi_voltage_t',['../group___b_s_p___i_o.html#gaca40cd8c80dc5bf04d65d3d5db9e3d7c',1,'bsp_io.h']]], + ['buf',['buf',['../group___r_m___h_s300_x.html#a486df3e0ed2af6c8c038e1357572da53',1,'rm_hs300x_instance_ctrl_t::buf()'],['../group___r_m___z_m_o_d4_x_x_x.html#a0a1702cc41dc3a4c35e5c81f95b55295',1,'rm_zmod4xxx_instance_ctrl_t::buf()']]], + ['buffer_5finit_5fvalue',['buffer_init_value',['../group___i_o_p_o_r_t.html#a8cacbb5efbafad8505bd0140ece21b08',1,'ioport_event_group_input_t']]], + ['buffer_5fmode',['buffer_mode',['../group___a_d_c___c.html#a8ccf8c0714c173bc9e9d536df5df56f9',1,'adc_c_extended_cfg_t']]], + ['buffer_5foverwrite_5fdetection_5fenable',['buffer_overwrite_detection_enable',['../group___p_d_m.html#a9cbd930664bb8b7902a78d5dc07ff1b0',1,'pdm_extended_cfg_t']]], + ['bus_5favailable_5fdetection_5ftime',['bus_available_detection_time',['../group___i3_c___b.html#af62dc925b22147aff968321a8ba10fef',1,'i3c_b_extended_cfg_t']]], + ['bus_5ffree_5fdetection_5ftime',['bus_free_detection_time',['../group___i3_c___b.html#a8ed749153af0e8311373e3d2d446ee5d',1,'i3c_b_extended_cfg_t']]], + ['bus_5fidle_5fdetection_5ftime',['bus_idle_detection_time',['../group___i3_c___b.html#a7e9d0d85bd1aefa8de414728f18b32de',1,'i3c_b_extended_cfg_t']]], + ['byte_5fswap',['byte_swap',['../group___s_p_i___b.html#af621a3a18d5499079a962d880cded254',1,'spi_b_extended_cfg_t']]], + ['bytes',['bytes',['../group___i2_c___s_l_a_v_e___a_p_i.html#a43903d76b59b527cef993d5cdbe9a2b9',1,'i2c_slave_callback_args_t']]], ['bsp',['BSP',['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html',1,'']]] ]; diff --git a/search/all_3.js b/search/all_3.js index a2af618..db91fd1 100644 --- a/search/all_3.js +++ b/search/all_3.js @@ -1,14 +1,21 @@ var searchData= [ - ['callbackset',['callbackSet',['../group___c_a_n___a_p_i.html#a0eeb3995e651ce4b77e8860ab50597a9',1,'can_api_t::callbackSet()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a4a407b8899a042692026e65d98535f6e',1,'external_irq_api_t::callbackSet()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a1a0c2ac15d2c2eb6a50baed682498620',1,'i2c_master_api_t::callbackSet()'],['../group___m_h_u___a_p_i.html#a71110c354941eb9204f6af5969ce7132',1,'mhu_api_t::callbackSet()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#afca2a6032121c770e1bd8a07db1c062a',1,'mhu_ns_swint_get_api_t::callbackSet()'],['../group___p_o_e_g___a_p_i.html#a7d01f09a832b9940b264b0cf10a3863c',1,'poeg_api_t::callbackSet()'],['../group___s_p_i___a_p_i.html#a01c7aacdcdf219dcfa88c2b40e7d25b1',1,'spi_api_t::callbackSet()'],['../group___t_i_m_e_r___a_p_i.html#a1b2c51a519145c2482ca2fb6b4b3d749',1,'timer_api_t::callbackSet()'],['../group___u_a_r_t___a_p_i.html#a51b74df27fb26e85700d9524cdfc7c01',1,'uart_api_t::callbackSet()']]], + ['calculate',['calculate',['../group___c_r_c___a_p_i.html#ababb93aa2ede5ba3d5750bd3203ce7e3',1,'crc_api_t']]], + ['calendaralarmget',['calendarAlarmGet',['../group___r_t_c___a_p_i.html#aaad6019c8b72db02966fc040676810b4',1,'rtc_api_t']]], + ['calendaralarmset',['calendarAlarmSet',['../group___r_t_c___a_p_i.html#a5bda4cf6957658e03d59db0cf11933e5',1,'rtc_api_t']]], + ['calendartimeget',['calendarTimeGet',['../group___r_t_c___a_p_i.html#aef7d57fb6eb6e5e781743071793de36e',1,'rtc_api_t']]], + ['calendartimeset',['calendarTimeSet',['../group___r_t_c___a_p_i.html#a9a389b61ac0714083083fd04d9223479',1,'rtc_api_t']]], + ['calibrate',['calibrate',['../group___a_d_c___a_p_i.html#a1020d90e58d3bf86cee2f46a62e62fc4',1,'adc_api_t']]], + ['calibration_5fdata',['calibration_data',['../group___a_d_c___a_p_i.html#a5869042d58165926402aa499eefb68f2',1,'adc_info_t']]], + ['calibration_5fdata1',['calibration_data1',['../group___a_d_c___a_p_i.html#a366d981b2bfa6c2ade3a3f8f8c00ff70',1,'adc_info_t']]], + ['calibration_5fdata2',['calibration_data2',['../group___a_d_c___a_p_i.html#afec4154b488a160a33ceebca6affc94e',1,'adc_info_t']]], + ['calibration_5fongoing',['calibration_ongoing',['../group___a_d_c___a_p_i.html#a0ffb4b8f70b79eef55805cedcbde013b',1,'adc_info_t']]], + ['callbackset',['callbackSet',['../group___a_d_c___a_p_i.html#a8d081aba32f84d62e7d48389b1d10b3e',1,'adc_api_t::callbackSet()'],['../group___c_a_n___a_p_i.html#a0eeb3995e651ce4b77e8860ab50597a9',1,'can_api_t::callbackSet()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a4a407b8899a042692026e65d98535f6e',1,'external_irq_api_t::callbackSet()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a1a0c2ac15d2c2eb6a50baed682498620',1,'i2c_master_api_t::callbackSet()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a527fc26638e91d2daf652c2b30b5ab5a',1,'i2c_slave_api_t::callbackSet()'],['../group___m_h_u___a_p_i.html#a71110c354941eb9204f6af5969ce7132',1,'mhu_api_t::callbackSet()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#afca2a6032121c770e1bd8a07db1c062a',1,'mhu_ns_swint_get_api_t::callbackSet()'],['../group___p_d_m___a_p_i.html#a3a08bbd100782b9a8771628cc2637edb',1,'pdm_api_t::callbackSet()'],['../group___p_o_e_g___a_p_i.html#a7d01f09a832b9940b264b0cf10a3863c',1,'poeg_api_t::callbackSet()'],['../group___r_t_c___a_p_i.html#a63a958dd039662f8d13d38a64da9b61e',1,'rtc_api_t::callbackSet()'],['../group___s_p_i___a_p_i.html#a01c7aacdcdf219dcfa88c2b40e7d25b1',1,'spi_api_t::callbackSet()'],['../group___t_i_m_e_r___a_p_i.html#a1b2c51a519145c2482ca2fb6b4b3d749',1,'timer_api_t::callbackSet()'],['../group___u_a_r_t___a_p_i.html#a51b74df27fb26e85700d9524cdfc7c01',1,'uart_api_t::callbackSet()'],['../group___w_d_t___a_p_i.html#a28dc9b161653da57c10267f775bda125',1,'wdt_api_t::callbackSet()']]], ['can_20interface',['CAN Interface',['../group___c_a_n___a_p_i.html',1,'']]], ['can_5fapi_5ft',['can_api_t',['../group___c_a_n___a_p_i.html#structcan__api__t',1,'']]], ['can_5fbit_5ftiming_5fcfg_5ft',['can_bit_timing_cfg_t',['../group___c_a_n___a_p_i.html#structcan__bit__timing__cfg__t',1,'']]], ['can_5fcallback_5fargs_5ft',['can_callback_args_t',['../group___c_a_n___a_p_i.html#structcan__callback__args__t',1,'']]], ['can_5fcfg_5ft',['can_cfg_t',['../group___c_a_n___a_p_i.html#structcan__cfg__t',1,'']]], - ['can_5fclock_5fsource_5fcanmclk',['CAN_CLOCK_SOURCE_CANMCLK',['../group___c_a_n___a_p_i.html#gga5bf3c71a3b53b409e9ee682c69189a39a5c90a69c9ba1a8116b6ec45ff238e117',1,'r_can_api.h']]], - ['can_5fclock_5fsource_5fpclkb',['CAN_CLOCK_SOURCE_PCLKB',['../group___c_a_n___a_p_i.html#gga5bf3c71a3b53b409e9ee682c69189a39a7c0cedacb23a57e50692191f61915cbd',1,'r_can_api.h']]], - ['can_5fclock_5fsource_5ft',['can_clock_source_t',['../group___c_a_n___a_p_i.html#ga5bf3c71a3b53b409e9ee682c69189a39',1,'r_can_api.h']]], ['can_5fctrl_5ft',['can_ctrl_t',['../group___c_a_n___a_p_i.html#ga6e2484e96eefbe59327b13e2589a0049',1,'r_can_api.h']]], ['can_5fevent_5fbus_5frecovery',['CAN_EVENT_BUS_RECOVERY',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4a9b30162960edad175a755686a65a50',1,'r_can_api.h']]], ['can_5fevent_5ferr_5fbus_5flock',['CAN_EVENT_ERR_BUS_LOCK',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbabd3cace64bccbd9bdc6219453b7cfbbd',1,'r_can_api.h']]], @@ -17,30 +24,22 @@ var searchData= ['can_5fevent_5ferr_5fglobal',['CAN_EVENT_ERR_GLOBAL',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba8adaa142ed94841f5f282232ce414333',1,'r_can_api.h']]], ['can_5fevent_5ferr_5fpassive',['CAN_EVENT_ERR_PASSIVE',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbafd0c186a8462372ff19061f8ff97160f',1,'r_can_api.h']]], ['can_5fevent_5ferr_5fwarning',['CAN_EVENT_ERR_WARNING',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4cf2031ec5e169907edd2bd5d0caee00',1,'r_can_api.h']]], + ['can_5fevent_5ffifo_5fmessage_5flost',['CAN_EVENT_FIFO_MESSAGE_LOST',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4b9bfbf96c82d53ce3dd47e9a3237359',1,'r_can_api.h']]], ['can_5fevent_5fmailbox_5fmessage_5flost',['CAN_EVENT_MAILBOX_MESSAGE_LOST',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbaacf601c286d90d108d59de289cdfd80c',1,'r_can_api.h']]], ['can_5fevent_5frx_5fcomplete',['CAN_EVENT_RX_COMPLETE',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbaa0bc5e15cee037a1d102b517ef63e161',1,'r_can_api.h']]], ['can_5fevent_5ft',['can_event_t',['../group___c_a_n___a_p_i.html#gacc2e5bc68e8b707c069ca27f521695db',1,'r_can_api.h']]], ['can_5fevent_5ftx_5faborted',['CAN_EVENT_TX_ABORTED',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba973c55ab2a29a1554f488fedf29fea8a',1,'r_can_api.h']]], ['can_5fevent_5ftx_5fcomplete',['CAN_EVENT_TX_COMPLETE',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbac169b4940b7cb76562efd7439fc76949',1,'r_can_api.h']]], + ['can_5fevent_5ftx_5ffifo_5fempty',['CAN_EVENT_TX_FIFO_EMPTY',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba838c3a494516ccd0326bc1dad93e35d8',1,'r_can_api.h']]], ['can_5fframe_5ft',['can_frame_t',['../group___c_a_n___a_p_i.html#structcan__frame__t',1,'']]], ['can_5fframe_5ftype_5fdata',['CAN_FRAME_TYPE_DATA',['../group___c_a_n___a_p_i.html#ggad3ffe1ae0429fcd1053a969d96c47610a1da44b52c2731b02cf02ca55eec08899',1,'r_can_api.h']]], ['can_5fframe_5ftype_5fremote',['CAN_FRAME_TYPE_REMOTE',['../group___c_a_n___a_p_i.html#ggad3ffe1ae0429fcd1053a969d96c47610a10c7ad0f4e083496ad3a3032fc533920',1,'r_can_api.h']]], ['can_5fframe_5ftype_5ft',['can_frame_type_t',['../group___c_a_n___a_p_i.html#gad3ffe1ae0429fcd1053a969d96c47610',1,'r_can_api.h']]], - ['can_5fglobal_5fid_5fmode_5fextended',['CAN_GLOBAL_ID_MODE_EXTENDED',['../group___c_a_n___a_p_i.html#ggab798132b937282be9589b6ed177ea999a7dc9d3f494129db1c953915d1b781faa',1,'r_can_api.h']]], - ['can_5fglobal_5fid_5fmode_5fmixed',['CAN_GLOBAL_ID_MODE_MIXED',['../group___c_a_n___a_p_i.html#ggab798132b937282be9589b6ed177ea999aabdf871d5bbaf279c8dcf743ca64b488',1,'r_can_api.h']]], - ['can_5fglobal_5fid_5fmode_5fstandard',['CAN_GLOBAL_ID_MODE_STANDARD',['../group___c_a_n___a_p_i.html#ggab798132b937282be9589b6ed177ea999af93ba7d9a4356ffa8c9b49f26c4f1b3d',1,'r_can_api.h']]], - ['can_5fglobal_5fid_5fmode_5ft',['can_global_id_mode_t',['../group___c_a_n___a_p_i.html#gab798132b937282be9589b6ed177ea999',1,'r_can_api.h']]], ['can_5fid_5fmode_5fextended',['CAN_ID_MODE_EXTENDED',['../group___c_a_n___a_p_i.html#ggabc98e244722dcea05b5ce91bdb4c70c8abc5a87ed8edf218a6b44e4cceb48c0cb',1,'r_can_api.h']]], ['can_5fid_5fmode_5fstandard',['CAN_ID_MODE_STANDARD',['../group___c_a_n___a_p_i.html#ggabc98e244722dcea05b5ce91bdb4c70c8a5d29b837d94d14fb99868c2d0a5220b0',1,'r_can_api.h']]], ['can_5fid_5fmode_5ft',['can_id_mode_t',['../group___c_a_n___a_p_i.html#gabc98e244722dcea05b5ce91bdb4c70c8',1,'r_can_api.h']]], + ['can_5finfo_5ft',['can_info_t',['../group___c_a_n___a_p_i.html#structcan__info__t',1,'']]], ['can_5finstance_5ft',['can_instance_t',['../group___c_a_n___a_p_i.html#structcan__instance__t',1,'']]], - ['can_5fmailbox_5freceive',['CAN_MAILBOX_RECEIVE',['../group___c_a_n___a_p_i.html#gga99db0880f7c03215e00781d3e57db3a3a5f4004ddfe179e388be8bb240527450e',1,'r_can_api.h']]], - ['can_5fmailbox_5fsend_5freceive_5ft',['can_mailbox_send_receive_t',['../group___c_a_n___a_p_i.html#ga99db0880f7c03215e00781d3e57db3a3',1,'r_can_api.h']]], - ['can_5fmailbox_5ft',['can_mailbox_t',['../group___c_a_n___a_p_i.html#structcan__mailbox__t',1,'']]], - ['can_5fmailbox_5ftransmit',['CAN_MAILBOX_TRANSMIT',['../group___c_a_n___a_p_i.html#gga99db0880f7c03215e00781d3e57db3a3a1c100296f7b9384c8e09b55fd611242d',1,'r_can_api.h']]], - ['can_5fmessage_5fmode_5foverrun',['CAN_MESSAGE_MODE_OVERRUN',['../group___c_a_n___a_p_i.html#gga42c6d0b24e77b50c47ec54bafcac7604af25ce6de3b35f5abe47186351372b8b7',1,'r_can_api.h']]], - ['can_5fmessage_5fmode_5foverwrite',['CAN_MESSAGE_MODE_OVERWRITE',['../group___c_a_n___a_p_i.html#gga42c6d0b24e77b50c47ec54bafcac7604ad8aab020d2b6d64777a0be580f44ddb4',1,'r_can_api.h']]], - ['can_5fmessage_5fmode_5ft',['can_message_mode_t',['../group___c_a_n___a_p_i.html#ga42c6d0b24e77b50c47ec54bafcac7604',1,'r_can_api.h']]], ['can_5foperation_5fmode_5fhalt',['CAN_OPERATION_MODE_HALT',['../group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7a38a4c4896b9a14a3fa8411468b5017ee',1,'r_can_api.h']]], ['can_5foperation_5fmode_5fnormal',['CAN_OPERATION_MODE_NORMAL',['../group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7abde5d9e8f5711b6fe8374671c96e6f72',1,'r_can_api.h']]], ['can_5foperation_5fmode_5freset',['CAN_OPERATION_MODE_RESET',['../group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7a91f40057ea820ca0cf30a52393d5d741',1,'r_can_api.h']]], @@ -69,9 +68,15 @@ var searchData= ['canfd_5ferror_5fchannel_5fpassive',['CANFD_ERROR_CHANNEL_PASSIVE',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a30a620f848af57cf1da8fce485c518ee',1,'r_canfd.h']]], ['canfd_5ferror_5fchannel_5fstuff',['CANFD_ERROR_CHANNEL_STUFF',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a47a1524b5138710ca7fd5b55325a823d',1,'r_canfd.h']]], ['canfd_5ferror_5fchannel_5fwarning',['CANFD_ERROR_CHANNEL_WARNING',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a1e8de2fee13f446d6d7f218420af1a75',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5fch0_5fecc',['CANFD_ERROR_GLOBAL_CH0_ECC',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4acc2641aa9a3f9543af9d27313ba09001',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5fch0_5fscan_5ffail',['CANFD_ERROR_GLOBAL_CH0_SCAN_FAIL',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a12b3e818b05c74a2e138ea58893151af',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5fch1_5fecc',['CANFD_ERROR_GLOBAL_CH1_ECC',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a632b3d6e96c5d7f468dfd4c0b33b1f86',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5fch1_5fscan_5ffail',['CANFD_ERROR_GLOBAL_CH1_SCAN_FAIL',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abad26cd9692b98e885b8f80eea26c9d9',1,'r_canfd.h']]], ['canfd_5ferror_5fglobal_5fdlc',['CANFD_ERROR_GLOBAL_DLC',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ac1b7da9fdca7a6fa3c9b9ba33371f4a8',1,'r_canfd.h']]], ['canfd_5ferror_5fglobal_5fmessage_5flost',['CANFD_ERROR_GLOBAL_MESSAGE_LOST',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abee1888c27382c7121781db44c31bc2b',1,'r_canfd.h']]], ['canfd_5ferror_5fglobal_5fpayload_5foverflow',['CANFD_ERROR_GLOBAL_PAYLOAD_OVERFLOW',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a5d38f69b80c5a2ca136cc2372885dd15',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5ftxq_5fmessage_5flost',['CANFD_ERROR_GLOBAL_TXQ_MESSAGE_LOST',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a46568698565919a0a2f47cb8f3641799',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5ftxq_5foverwrite',['CANFD_ERROR_GLOBAL_TXQ_OVERWRITE',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4aabb74eb7c63e572823fdc251ee430510',1,'r_canfd.h']]], ['canfd_5ferror_5ft',['canfd_error_t',['../group___c_a_n_f_d.html#ga1598f08872dd960675f060c7e8c35cf4',1,'r_canfd.h']]], ['canfd_5fextended_5fcfg_5ft',['canfd_extended_cfg_t',['../group___c_a_n_f_d.html#structcanfd__extended__cfg__t',1,'']]], ['canfd_5fframe_5foption_5fbrs',['CANFD_FRAME_OPTION_BRS',['../group___c_a_n_f_d.html#gga6c4d104c3a9cce6b74a05035f0af6d87a4a5ce70c8fb9ab5d9e320a79dd59aebf',1,'r_canfd.h']]], @@ -96,35 +101,136 @@ var searchData= ['canfd_5ftx_5fmb_5ft',['canfd_tx_mb_t',['../group___c_a_n_f_d.html#gaa7408bbf08466fb0f6025a8dfd93c714',1,'r_canfd.h']]], ['canfd_5ftxmb_5fmerge_5fmode_5ft',['canfd_txmb_merge_mode_t',['../group___c_a_n_f_d.html#gad89cfc4708b4a1cf7a57e4fcd3ffacfc',1,'r_canfd.h']]], ['capture',['capture',['../group___t_i_m_e_r___a_p_i.html#a8abd12cdf1a993cf8054be6ba9d96a6f',1,'timer_callback_args_t']]], - ['capture_5fa_5fipl',['capture_a_ipl',['../group___g_p_t.html#a7e5402bac34e2c3d3006b68ee0b8ab2a',1,'gpt_extended_cfg_t']]], - ['capture_5fa_5firq',['capture_a_irq',['../group___g_p_t.html#a630c77adb426ddddb5eac8b974fd7c85',1,'gpt_extended_cfg_t']]], + ['capture_5fa_5fipl',['capture_a_ipl',['../group___g_p_t.html#a7e5402bac34e2c3d3006b68ee0b8ab2a',1,'gpt_extended_cfg_t::capture_a_ipl()'],['../group___m_t_u3.html#ae357d03fb305808acc1a5f971e9ae205',1,'mtu3_extended_cfg_t::capture_a_ipl()']]], + ['capture_5fa_5firq',['capture_a_irq',['../group___g_p_t.html#a630c77adb426ddddb5eac8b974fd7c85',1,'gpt_extended_cfg_t::capture_a_irq()'],['../group___m_t_u3.html#a566d52f760c761f105831fae2c2f5125',1,'mtu3_extended_cfg_t::capture_a_irq()']]], ['capture_5fa_5fsource',['capture_a_source',['../group___g_p_t.html#aad7e19c30d43b6d0f88943c27e9afa4c',1,'gpt_extended_cfg_t']]], - ['capture_5fb_5fipl',['capture_b_ipl',['../group___g_p_t.html#aae4ebebdd346531add1c9ce3bee52106',1,'gpt_extended_cfg_t']]], - ['capture_5fb_5firq',['capture_b_irq',['../group___g_p_t.html#a22eb63abdf43064c9c83d81287c67c88',1,'gpt_extended_cfg_t']]], + ['capture_5fb_5fipl',['capture_b_ipl',['../group___g_p_t.html#aae4ebebdd346531add1c9ce3bee52106',1,'gpt_extended_cfg_t::capture_b_ipl()'],['../group___m_t_u3.html#aedd3dc71ec5728ef54295740297f16f7',1,'mtu3_extended_cfg_t::capture_b_ipl()']]], + ['capture_5fb_5firq',['capture_b_irq',['../group___g_p_t.html#a22eb63abdf43064c9c83d81287c67c88',1,'gpt_extended_cfg_t::capture_b_irq()'],['../group___m_t_u3.html#a88e05f92f9226183d8fe7bcdc5f777c6',1,'mtu3_extended_cfg_t::capture_b_irq()']]], ['capture_5fb_5fsource',['capture_b_source',['../group___g_p_t.html#aca22811f5aebe0ee236214b53f9f6bbd',1,'gpt_extended_cfg_t']]], - ['channel',['channel',['../group___c_a_n___a_p_i.html#a08080bddad2f04a8074b995da354f259',1,'can_callback_args_t::channel()'],['../group___c_a_n___a_p_i.html#a12f266c39b851a037b4d30ae5661e46b',1,'can_cfg_t::channel()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#acd4a73f25f8415f6ca33f31392d92fd9',1,'external_irq_callback_args_t::channel()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a1b7ba67ea2063df052d7cff54d642455',1,'external_irq_cfg_t::channel()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ab51668940cafabfefc502f06fddc9ae4',1,'i2c_master_cfg_t::channel()'],['../group___m_h_u___a_p_i.html#adf5e843397d8bc69ace33912995215f6',1,'mhu_callback_args_t::channel()'],['../group___m_h_u___a_p_i.html#a699f2d0b2fc8919da61e4dfae837890f',1,'mhu_cfg_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a9613c5884f49c02ae6aa41b09a999bc0',1,'mhu_ns_swint_get_callback_args_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a28544f4e5e43a96c4bb2cb7fe4879fcd',1,'mhu_ns_swint_get_cfg_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a8f8ecb7c58b29ead3b75fc071a965175',1,'mhu_ns_swint_set_callback_args_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a911cd4a50f86d1e71e566889625bc77d',1,'mhu_ns_swint_set_cfg_t::channel()'],['../group___p_o_e_g___a_p_i.html#a540e9ef986cf2ad028ef51ba52454aab',1,'poeg_cfg_t::channel()'],['../group___s_p_i___a_p_i.html#a1fdddcdf63a3270438eac756a7f4d6a4',1,'spi_callback_args_t::channel()'],['../group___s_p_i___a_p_i.html#a330c7d1944ff925e619c40ee4f796b86',1,'spi_cfg_t::channel()'],['../group___t_i_m_e_r___a_p_i.html#aa98df70bd7724ce80c42c0f4c263ef59',1,'timer_cfg_t::channel()'],['../group___u_a_r_t___a_p_i.html#acf60bc172eb7d382b406364f64b928f6',1,'uart_callback_args_t::channel()'],['../group___u_a_r_t___a_p_i.html#a8f5b1d9fc38fbb83007d904b814bf66b',1,'uart_cfg_t::channel()'],['../group___i_n_t_c___i_r_q.html#ac51a182b3e008a22c06576a5d7e83ce3',1,'intc_irq_instance_ctrl_t::channel()'],['../group___m_h_u___n_s.html#ad5bfc684776aa1244294eae3b1363f93',1,'mhu_ns_instance_ctrl_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ace404a079830f35bbd0c8338b94da292',1,'mhu_ns_swint_get_instance_ctrl_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#ad84054d463ebb6b159ff2ce6c70bd908',1,'mhu_ns_swint_set_instance_ctrl_t::channel()'],['../group___m_h_u___s.html#a3d2e07d0382637914e5a1ff73d8135ca',1,'mhu_s_instance_ctrl_t::channel()']]], + ['capture_5fic0_5fipl',['capture_ic0_ipl',['../group___c_m_t_w.html#a933229c6416b5aad6494477e36d38b47',1,'cmtw_extended_cfg_t']]], + ['capture_5fic0_5firq',['capture_ic0_irq',['../group___c_m_t_w.html#a894b3a66e1ef230347ba974268d67354',1,'cmtw_extended_cfg_t']]], + ['capture_5fic0_5fsource',['capture_ic0_source',['../group___c_m_t_w.html#a1844763704e5a3427c31651cdd536751',1,'cmtw_extended_cfg_t']]], + ['capture_5fic1_5fipl',['capture_ic1_ipl',['../group___c_m_t_w.html#aa87d2050e778f2be4cec1eedf08cad19',1,'cmtw_extended_cfg_t']]], + ['capture_5fic1_5firq',['capture_ic1_irq',['../group___c_m_t_w.html#a3a0c098d3426a1478a29e44aeca8a882',1,'cmtw_extended_cfg_t']]], + ['capture_5fic1_5fsource',['capture_ic1_source',['../group___c_m_t_w.html#ae4c3df19de12bbe9ba4c36f78dd6be78',1,'cmtw_extended_cfg_t']]], + ['carry_5fipl',['carry_ipl',['../group___r_t_c___a_p_i.html#a4d9b154cadb980b95d1153a8f1b6c7e2',1,'rtc_cfg_t']]], + ['carry_5firq',['carry_irq',['../group___r_t_c___a_p_i.html#add77caaa41f0376590df0a6312a16053',1,'rtc_cfg_t']]], + ['carry_5fisr_5ftriggered',['carry_isr_triggered',['../group___r_t_c.html#ad1e0ef1397b14d5d1571f960d536c50d',1,'rtc_instance_ctrl_t']]], + ['channel',['channel',['../group___a_d_c___a_p_i.html#a1e9351a3cb3ab91b4953b29cac73f5cc',1,'adc_callback_args_t::channel()'],['../group___c_a_n___a_p_i.html#a08080bddad2f04a8074b995da354f259',1,'can_callback_args_t::channel()'],['../group___c_a_n___a_p_i.html#a12f266c39b851a037b4d30ae5661e46b',1,'can_cfg_t::channel()'],['../group___c_r_c___a_p_i.html#a93f724f6e008179d16750067ce740f91',1,'crc_cfg_t::channel()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#acd4a73f25f8415f6ca33f31392d92fd9',1,'external_irq_callback_args_t::channel()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a1b7ba67ea2063df052d7cff54d642455',1,'external_irq_cfg_t::channel()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ab51668940cafabfefc502f06fddc9ae4',1,'i2c_master_cfg_t::channel()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a2708ed5dc2491d0551dd4a8688d919cb',1,'i2c_slave_cfg_t::channel()'],['../group___i3_c___a_p_i.html#a8065fa3e9d1d82e9ebaa60e1731d7ecc',1,'i3c_cfg_t::channel()'],['../group___m_h_u___a_p_i.html#adf5e843397d8bc69ace33912995215f6',1,'mhu_callback_args_t::channel()'],['../group___m_h_u___a_p_i.html#a699f2d0b2fc8919da61e4dfae837890f',1,'mhu_cfg_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a9613c5884f49c02ae6aa41b09a999bc0',1,'mhu_ns_swint_get_callback_args_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a28544f4e5e43a96c4bb2cb7fe4879fcd',1,'mhu_ns_swint_get_cfg_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a8f8ecb7c58b29ead3b75fc071a965175',1,'mhu_ns_swint_set_callback_args_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a911cd4a50f86d1e71e566889625bc77d',1,'mhu_ns_swint_set_cfg_t::channel()'],['../group___p_o_e_g___a_p_i.html#a540e9ef986cf2ad028ef51ba52454aab',1,'poeg_cfg_t::channel()'],['../group___r_t_c___a_p_i.html#ae9bd30168ad8a2932e542beaed85b2e1',1,'rtc_alarm_time_t::channel()'],['../group___s_p_i___a_p_i.html#a1fdddcdf63a3270438eac756a7f4d6a4',1,'spi_callback_args_t::channel()'],['../group___s_p_i___a_p_i.html#a330c7d1944ff925e619c40ee4f796b86',1,'spi_cfg_t::channel()'],['../group___t_i_m_e_r___a_p_i.html#aa98df70bd7724ce80c42c0f4c263ef59',1,'timer_cfg_t::channel()'],['../group___u_a_r_t___a_p_i.html#acf60bc172eb7d382b406364f64b928f6',1,'uart_callback_args_t::channel()'],['../group___u_a_r_t___a_p_i.html#a8f5b1d9fc38fbb83007d904b814bf66b',1,'uart_cfg_t::channel()'],['../group___d_m_a_c___b.html#a8266dbee310dbc0398cdb9d6bb1273a9',1,'dmac_b_extended_cfg_t::channel()'],['../group___i_n_t_c___i_r_q.html#ac51a182b3e008a22c06576a5d7e83ce3',1,'intc_irq_instance_ctrl_t::channel()'],['../group___i_n_t_c___n_m_i.html#affbe014faf25330d8d3f2d8692dc7ef6',1,'intc_nmi_instance_ctrl_t::channel()'],['../group___i_n_t_c___t_i_n_t.html#a443068029bc0fbf20147fd24df48f9e9',1,'intc_tint_instance_ctrl_t::channel()'],['../group___m_h_u___b___n_s.html#a32ff5d194f38c43784c59191c7883e76',1,'mhu_b_ns_instance_ctrl_t::channel()'],['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#a03917ba43d92ba64f3ceff9d2a5ed8f6',1,'mhu_b_ns_swint_get_instance_ctrl_t::channel()'],['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#ac237427a57125c109907a6f027aa7bb2',1,'mhu_b_ns_swint_set_instance_ctrl_t::channel()'],['../group___m_h_u___b___s.html#a9b896e827be8d101095eb1d8c67afc89',1,'mhu_b_s_instance_ctrl_t::channel()'],['../group___m_h_u___n_s.html#ad5bfc684776aa1244294eae3b1363f93',1,'mhu_ns_instance_ctrl_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ace404a079830f35bbd0c8338b94da292',1,'mhu_ns_swint_get_instance_ctrl_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#ad84054d463ebb6b159ff2ce6c70bd908',1,'mhu_ns_swint_set_instance_ctrl_t::channel()'],['../group___m_h_u___s.html#a3d2e07d0382637914e5a1ff73d8135ca',1,'mhu_s_instance_ctrl_t::channel()']]], + ['channel_5fmask',['channel_mask',['../group___a_d_c___a_p_i.html#a50ca40e036fb0058265aca9e500911c0',1,'adc_callback_args_t::channel_mask()'],['../group___m_t_u3.html#a5810e1f6e5c5f08974d4c0e119bc6d6f',1,'mtu3_instance_ctrl_t::channel_mask()']]], + ['channel_5fscheduling',['channel_scheduling',['../group___d_m_a_c___b.html#a33a766bacb611723bb0bdfec3758e1f4',1,'dmac_b_extended_cfg_t']]], ['checksum',['checksum',['../group___r_m___h_s400_x___a_p_i.html#ae818086f1405c4519041c442fa5a0489',1,'rm_hs400x_raw_data_t']]], - ['cks_5fvalue',['cks_value',['../group___r_i_i_c___m_a_s_t_e_r.html#a213bb6cc78cf57022dbc0b0b2087c0b4',1,'iic_master_clock_settings_t']]], - ['clear_5fdata',['clear_data',['../group___r_m___o_b1203___a_p_i.html#a08e4bed45dd5f045f149e7429e2bb8b5',1,'rm_ob1203_light_data_t']]], - ['clear_5fsource',['clear_source',['../group___g_p_t.html#ad5614740946c3c06e1633d369d08f5c3',1,'gpt_extended_cfg_t']]], + ['cks_5fvalue',['cks_value',['../group___r_i_i_c___m_a_s_t_e_r.html#a213bb6cc78cf57022dbc0b0b2087c0b4',1,'iic_master_clock_settings_t::cks_value()'],['../group___r_i_i_c___s_l_a_v_e.html#ae84939949fde82ff8600981d24e69d0f',1,'iic_slave_clock_settings_t::cks_value()']]], + ['clear_5fsource',['clear_source',['../group___c_m_t_w.html#a54ef905d95c6fb3e06eb0eb04e8856d3',1,'cmtw_extended_cfg_t::clear_source()'],['../group___g_p_t.html#ad5614740946c3c06e1633d369d08f5c3',1,'gpt_extended_cfg_t::clear_source()']]], + ['clearing',['clearing',['../group___a_d_c___e.html#aec17abb4a74dbf2f86694f27b5b96cd9',1,'adc_e_extended_cfg_t']]], + ['clk_5fdivisor_5fvalue',['clk_divisor_value',['../group___s_c_i___b___i2_c.html#a3d3a9e1e75d107d851de3e84c4179161',1,'sci_b_i2c_clock_settings_t']]], + ['clk_5fedge',['clk_edge',['../group___m_t_u3.html#a032a2421eaa21dbc376ce103e7757068',1,'mtu3_extended_cfg_t']]], ['clk_5fphase',['clk_phase',['../group___s_p_i___a_p_i.html#ae716333870904cc1af1425fae1a8c1e4',1,'spi_cfg_t']]], ['clk_5fpolarity',['clk_polarity',['../group___s_p_i___a_p_i.html#ac13df7ba09c4fdff952d8ead0d1b7645',1,'spi_cfg_t']]], - ['clock',['clock',['../group___s_c_i_f___u_a_r_t.html#aa593c3c46c8e09dc0d1167b4a52797ee',1,'scif_uart_extended_cfg_t']]], + ['clock',['clock',['../group___s_c_i___b___u_a_r_t.html#a498f325e7dd1865b3e14c1af392ef4c8',1,'sci_b_uart_extended_cfg_t::clock()'],['../group___s_c_i_f___u_a_r_t.html#aa593c3c46c8e09dc0d1167b4a52797ee',1,'scif_uart_extended_cfg_t::clock()']]], + ['clock_5fbypass_5fmode',['clock_bypass_mode',['../group___r_t_c.html#af6b87d21311028e2eb25ce5f2b90f73e',1,'rtc_extended_cfg_t']]], + ['clock_5fdata_5fturnaround',['clock_data_turnaround',['../group___i3_c___b.html#ae51118e339ff8e535dee69acbd4c2c04',1,'i3c_b_slave_command_response_info_t']]], + ['clock_5fdiv',['clock_div',['../group___p_d_m.html#a73d4ca013e3c3d061bc3c0c693e12ffa',1,'pdm_extended_cfg_t']]], + ['clock_5fdivision',['clock_division',['../group___w_d_t___a_p_i.html#aa7829044aff936488b3e21bbd127ab76',1,'wdt_cfg_t']]], ['clock_5ffrequency',['clock_frequency',['../group___t_i_m_e_r___a_p_i.html#a85205f345201aaf1d25b5ee1257f8345',1,'timer_info_t']]], - ['clock_5fsettings',['clock_settings',['../group___r_i_i_c___m_a_s_t_e_r.html#aa0e87db942a63d7eb72077bf75f34d87',1,'riic_master_extended_cfg_t']]], - ['close',['close',['../group___c_a_n___a_p_i.html#a32ec8d31d80a709bae881f2e28d36d6c',1,'can_api_t::close()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ad0c4d6063af093a3a19a63924aae61ac',1,'external_irq_api_t::close()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a7d093cf28da6a99e56dbeb7b82ad3f5f',1,'i2c_master_api_t::close()'],['../group___i_o_p_o_r_t___a_p_i.html#a81b125b5439058c024dbac0f57405f69',1,'ioport_api_t::close()'],['../group___m_h_u___a_p_i.html#a435b9195d22768cde4eda0f37246a84f',1,'mhu_api_t::close()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#af92e9fdbc56bd0c806ef58a4b69e86db',1,'mhu_ns_swint_get_api_t::close()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a572d5e4e24cf7fffbcf39a137f4fd176',1,'mhu_ns_swint_set_api_t::close()'],['../group___p_o_e_g___a_p_i.html#a1576cf3362e4341bf14ec8ba9592abc4',1,'poeg_api_t::close()'],['../group___s_p_i___a_p_i.html#aa23ca0243886b64c90aa17744d72aee5',1,'spi_api_t::close()'],['../group___t_i_m_e_r___a_p_i.html#a9e8b8140010a28082aedd758390fac97',1,'timer_api_t::close()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ade5973e7a8e994f9146e0db84bee8bf4',1,'transfer_api_t::close()'],['../group___u_a_r_t___a_p_i.html#a4e7e47514702ff0e3515280590dd9659',1,'uart_api_t::close()'],['../group___r_m___c_o_m_m_s___a_p_i.html#abd464feb634b589687a0b8f55d0a078a',1,'rm_comms_api_t::close()'],['../group___r_m___h_s300_x___a_p_i.html#a6b1439ba4f4605e2194d7c4dfc0ce1f8',1,'rm_hs300x_api_t::close()'],['../group___r_m___h_s400_x___a_p_i.html#a2928df5b91141ebb9aff254547966843',1,'rm_hs400x_api_t::close()'],['../group___r_m___o_b1203___a_p_i.html#afb392158117d2cc57e8c0ec5042b1361',1,'rm_ob1203_api_t::close()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a37597974b2ae3e5ba15c57fce44b2c83',1,'rm_zmod4xxx_api_t::close()']]], - ['communication_5ffinished',['communication_finished',['../group___r_m___h_s300_x.html#a74a8a836f1fe14defcd836a93734b887',1,'rm_hs300x_programmnig_mode_params_t::communication_finished()'],['../group___r_m___h_s400_x.html#a54d7d67e8c118457e17bdd80acb565c6',1,'rm_hs400x_init_process_params_t::communication_finished()'],['../group___r_m___o_b1203.html#aea4edefdaa00495d377261f39c36b33f',1,'rm_ob1203_init_process_params_t::communication_finished()'],['../group___r_m___z_m_o_d4_x_x_x.html#ae7072ae56668c282a2a667ad097a5667',1,'rm_zmod4xxx_init_process_params_t::communication_finished()']]], + ['clock_5ffrequency_5fhz',['clock_frequency_hz',['../group___w_d_t___a_p_i.html#a4afd304a6d5116ff17d004a9db0b68de',1,'wdt_timeout_values_t']]], + ['clock_5fsettings',['clock_settings',['../group___r_i_i_c___m_a_s_t_e_r.html#aa0e87db942a63d7eb72077bf75f34d87',1,'riic_master_extended_cfg_t::clock_settings()'],['../group___r_i_i_c___s_l_a_v_e.html#aaf746e05cd94560cf30860aa9df619cf',1,'riic_slave_extended_cfg_t::clock_settings()'],['../group___s_c_i___b___i2_c.html#a076a2fea614be4cba22bc7e9a9e8f2bc',1,'sci_b_i2c_extended_cfg_t::clock_settings()']]], + ['clock_5fsource',['clock_source',['../group___r_t_c___a_p_i.html#aba0edee87eb628db01fb1fa070a0c144',1,'rtc_info_t::clock_source()'],['../group___r_t_c___a_p_i.html#a4d6b36efa20644739ef4a2697a745660',1,'rtc_cfg_t::clock_source()'],['../group___s_c_i___b___i2_c.html#abb1e023e83c78d6f4b07b07e172acfe2',1,'sci_b_i2c_clock_settings_t::clock_source()'],['../group___s_p_i___b.html#af6ddf830c6529dbf66c75a231242faa1',1,'spi_b_extended_cfg_t::clock_source()']]], + ['clock_5fstalling',['clock_stalling',['../group___i3_c___b.html#a7e9faafe29396be004f769cd35b81563',1,'i3c_b_bitrate_settings_t']]], + ['clock_5fstalling_5ftime',['clock_stalling_time',['../group___i3_c___b.html#a7a0a2568821deca8dde989c04e3bf3c3',1,'i3c_b_clock_stalling_t']]], + ['clock_5fstretching_5fenable',['clock_stretching_enable',['../group___i2_c___s_l_a_v_e___a_p_i.html#aaf45b7d102061452a09f5db26bdd1148',1,'i2c_slave_cfg_t']]], + ['clocksourceset',['clockSourceSet',['../group___r_t_c___a_p_i.html#a5119270ac476dc4c0aa6869df0627de9',1,'rtc_api_t']]], + ['close',['close',['../group___a_d_c___a_p_i.html#a83cce8ff1af572c11ef31442f2679124',1,'adc_api_t::close()'],['../group___c_a_n___a_p_i.html#a32ec8d31d80a709bae881f2e28d36d6c',1,'can_api_t::close()'],['../group___c_r_c___a_p_i.html#a7783105d71a3cf701d7928cba9585e6d',1,'crc_api_t::close()'],['../group___e_l_c___a_p_i.html#a4ca08e8e0db93700e8e4f651f4492977',1,'elc_api_t::close()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ad0c4d6063af093a3a19a63924aae61ac',1,'external_irq_api_t::close()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a7d093cf28da6a99e56dbeb7b82ad3f5f',1,'i2c_master_api_t::close()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a23919938fff411b2275548e6c0dc0c7a',1,'i2c_slave_api_t::close()'],['../group___i3_c___a_p_i.html#aee21d22f092a6c93976b94635642e33f',1,'i3c_api_t::close()'],['../group___i_o_p_o_r_t___a_p_i.html#a81b125b5439058c024dbac0f57405f69',1,'ioport_api_t::close()'],['../group___m_h_u___a_p_i.html#a435b9195d22768cde4eda0f37246a84f',1,'mhu_api_t::close()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#af92e9fdbc56bd0c806ef58a4b69e86db',1,'mhu_ns_swint_get_api_t::close()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a572d5e4e24cf7fffbcf39a137f4fd176',1,'mhu_ns_swint_set_api_t::close()'],['../group___p_d_m___a_p_i.html#a37bb473e04c42ef4dc01e03f6c52ce75',1,'pdm_api_t::close()'],['../group___p_o_e_g___a_p_i.html#a1576cf3362e4341bf14ec8ba9592abc4',1,'poeg_api_t::close()'],['../group___r_t_c___a_p_i.html#af5b8ce71ff3d65a0f9a556151e6d3b5c',1,'rtc_api_t::close()'],['../group___s_p_i___a_p_i.html#aa23ca0243886b64c90aa17744d72aee5',1,'spi_api_t::close()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#a16810f14e3fff6ed04f36eca44353785',1,'spi_flash_api_t::close()'],['../group___t_i_m_e_r___a_p_i.html#a9e8b8140010a28082aedd758390fac97',1,'timer_api_t::close()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ade5973e7a8e994f9146e0db84bee8bf4',1,'transfer_api_t::close()'],['../group___u_a_r_t___a_p_i.html#a4e7e47514702ff0e3515280590dd9659',1,'uart_api_t::close()'],['../group___r_m___c_o_m_m_s___a_p_i.html#abd464feb634b589687a0b8f55d0a078a',1,'rm_comms_api_t::close()'],['../group___r_m___h_s300_x___a_p_i.html#a6b1439ba4f4605e2194d7c4dfc0ce1f8',1,'rm_hs300x_api_t::close()'],['../group___r_m___h_s400_x___a_p_i.html#a2928df5b91141ebb9aff254547966843',1,'rm_hs400x_api_t::close()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a37597974b2ae3e5ba15c57fce44b2c83',1,'rm_zmod4xxx_api_t::close()']]], + ['compare_20match_20timer_20w_20_28r_5fcmtw_29',['Compare Match Timer W (r_cmtw)',['../group___c_m_t_w.html',1,'']]], + ['cmtw_5fclear_5fsource_5fcompare_5fmatch_5fcmwcor',['CMTW_CLEAR_SOURCE_COMPARE_MATCH_CMWCOR',['../group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a29bae60b7e43072850cb4c44dffc3b1d',1,'r_cmtw.h']]], + ['cmtw_5fclear_5fsource_5fcompare_5fmatch_5fcmwocr0',['CMTW_CLEAR_SOURCE_COMPARE_MATCH_CMWOCR0',['../group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a017587b5ab692912de7865167cb32be8',1,'r_cmtw.h']]], + ['cmtw_5fclear_5fsource_5fcompare_5fmatch_5fcmwocr1',['CMTW_CLEAR_SOURCE_COMPARE_MATCH_CMWOCR1',['../group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a30c9445b77896f4583ee052861df0be0',1,'r_cmtw.h']]], + ['cmtw_5fclear_5fsource_5fdisabled',['CMTW_CLEAR_SOURCE_DISABLED',['../group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a7b1981140600ccabecbec2cce85ea30f',1,'r_cmtw.h']]], + ['cmtw_5fclear_5fsource_5finput_5fcapture_5fcmwicr0',['CMTW_CLEAR_SOURCE_INPUT_CAPTURE_CMWICR0',['../group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a283a72ceb7ff6900d1d4d5184097ea34',1,'r_cmtw.h']]], + ['cmtw_5fclear_5fsource_5finput_5fcapture_5fcmwicr1',['CMTW_CLEAR_SOURCE_INPUT_CAPTURE_CMWICR1',['../group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447adc588629f6353dc88c3661d3d3eeb57b',1,'r_cmtw.h']]], + ['cmtw_5fclear_5fsource_5ft',['cmtw_clear_source_t',['../group___c_m_t_w.html#gab8cb04d74fe011e5742d07cddb9a8447',1,'r_cmtw.h']]], + ['cmtw_5fextended_5fcfg_5ft',['cmtw_extended_cfg_t',['../group___c_m_t_w.html#structcmtw__extended__cfg__t',1,'']]], + ['cmtw_5finput_5fcontrol_5fdisabled',['CMTW_INPUT_CONTROL_DISABLED',['../group___c_m_t_w.html#ggaa69aac2c20f895bd57f0d4dfa9da9c84aef9e4feabd4045f976f8b85a535a1e6e',1,'r_cmtw.h']]], + ['cmtw_5finput_5fcontrol_5fenabled',['CMTW_INPUT_CONTROL_ENABLED',['../group___c_m_t_w.html#ggaa69aac2c20f895bd57f0d4dfa9da9c84a47a43fe08c66afb2854454bde1e0a235',1,'r_cmtw.h']]], + ['cmtw_5finput_5fcontrol_5ft',['cmtw_input_control_t',['../group___c_m_t_w.html#gaa69aac2c20f895bd57f0d4dfa9da9c84',1,'r_cmtw.h']]], + ['cmtw_5finstance_5fctrl_5ft',['cmtw_instance_ctrl_t',['../group___c_m_t_w.html#structcmtw__instance__ctrl__t',1,'']]], + ['cmtw_5fio_5fpin_5ft',['cmtw_io_pin_t',['../group___c_m_t_w.html#gaf5f1958607aa6c7f52f4e47195e3a61f',1,'r_cmtw.h']]], + ['cmtw_5fio_5fpin_5ftoc0',['CMTW_IO_PIN_TOC0',['../group___c_m_t_w.html#ggaf5f1958607aa6c7f52f4e47195e3a61fac8abb25fd9d25d55bcdebb8780553f1d',1,'r_cmtw.h']]], + ['cmtw_5fio_5fpin_5ftoc0_5fand_5ftoc1',['CMTW_IO_PIN_TOC0_AND_TOC1',['../group___c_m_t_w.html#ggaf5f1958607aa6c7f52f4e47195e3a61fa7031caa0b57b3e17a531d44ef8e7fa0f',1,'r_cmtw.h']]], + ['cmtw_5fio_5fpin_5ftoc1',['CMTW_IO_PIN_TOC1',['../group___c_m_t_w.html#ggaf5f1958607aa6c7f52f4e47195e3a61fa7cb7514798b0fde43e9d028d7718f4f4',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fcontrol_5fdisabled',['CMTW_OUTPUT_CONTROL_DISABLED',['../group___c_m_t_w.html#gga0d3145595cde1b2a26d8812cbb1aac5ca1c9cd650977b70a3211d7a190085b0c5',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fcontrol_5fenabled',['CMTW_OUTPUT_CONTROL_ENABLED',['../group___c_m_t_w.html#gga0d3145595cde1b2a26d8812cbb1aac5ca89b0a65698f2c9dad74c7ba53ba9de5d',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fcontrol_5ft',['cmtw_output_control_t',['../group___c_m_t_w.html#ga0d3145595cde1b2a26d8812cbb1aac5c',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fpin_5fretain',['CMTW_OUTPUT_PIN_RETAIN',['../group___c_m_t_w.html#gga46ea17c23eab6d920c84290eb5769f6ba5d4a192f5904e23a4aacfa1675613806',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fpin_5fstart_5flevel_5fhigh',['CMTW_OUTPUT_PIN_START_LEVEL_HIGH',['../group___c_m_t_w.html#gga46ea17c23eab6d920c84290eb5769f6bad4b944e10a406b9159fa59d5a666a284',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fpin_5fstart_5flevel_5flow',['CMTW_OUTPUT_PIN_START_LEVEL_LOW',['../group___c_m_t_w.html#gga46ea17c23eab6d920c84290eb5769f6ba0f66391fe40f9d325a877e7f7a93bfde',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fpin_5ft',['cmtw_output_pin_t',['../group___c_m_t_w.html#ga46ea17c23eab6d920c84290eb5769f6b',1,'r_cmtw.h']]], + ['cmtw_5fsource_5fedge_5fboth',['CMTW_SOURCE_EDGE_BOTH',['../group___c_m_t_w.html#gga7bf1b1875884b0e1c847a3b54c440763a6f1ff1a299555fef86ec60c3e4f2d28c',1,'r_cmtw.h']]], + ['cmtw_5fsource_5fedge_5ffalling',['CMTW_SOURCE_EDGE_FALLING',['../group___c_m_t_w.html#gga7bf1b1875884b0e1c847a3b54c440763abd14459296fab9fec238c00996728beb',1,'r_cmtw.h']]], + ['cmtw_5fsource_5fedge_5frising',['CMTW_SOURCE_EDGE_RISING',['../group___c_m_t_w.html#gga7bf1b1875884b0e1c847a3b54c440763a70169e2f2026cef455de71078bf2250c',1,'r_cmtw.h']]], + ['cmtw_5fsource_5fedge_5ft',['cmtw_source_edge_t',['../group___c_m_t_w.html#ga7bf1b1875884b0e1c847a3b54c440763',1,'r_cmtw.h']]], + ['command',['command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a27f37ac5d1f031fd33f3b2ff5b914751',1,'spi_flash_erase_command_t::command()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#ab20fca5fa35e25becd87abc7539a4246',1,'spi_flash_direct_transfer_t::command()']]], + ['command_5fcode',['command_code',['../group___i3_c___a_p_i.html#a1319595692f1d7d2035df8f8fd63445a',1,'i3c_command_descriptor_t::command_code()'],['../group___i3_c___a_p_i.html#aa4990a726981eee5fc979850314eeb04',1,'i3c_callback_args_t::command_code()']]], + ['command_5flength',['command_length',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a521505cf1d98e638aef0e72ca5eb6463',1,'spi_flash_direct_transfer_t']]], + ['commandsend',['commandSend',['../group___i3_c___a_p_i.html#a840484cae7a68cf6161ec707c33c0a5c',1,'i3c_api_t']]], + ['communication_5ffinished',['communication_finished',['../group___r_m___h_s300_x.html#a74a8a836f1fe14defcd836a93734b887',1,'rm_hs300x_programmnig_mode_params_t::communication_finished()'],['../group___r_m___h_s400_x.html#a54d7d67e8c118457e17bdd80acb565c6',1,'rm_hs400x_init_process_params_t::communication_finished()'],['../group___r_m___z_m_o_d4_x_x_x.html#ae7072ae56668c282a2a667ad097a5667',1,'rm_zmod4xxx_init_process_params_t::communication_finished()']]], ['communicationabort',['communicationAbort',['../group___u_a_r_t___a_p_i.html#af4aeab25d6aa83e0d47307043c053d11',1,'uart_api_t']]], - ['comp_5fdata',['comp_data',['../group___r_m___o_b1203___a_p_i.html#a0596b99630a0a42868fd6832e2123f60',1,'rm_ob1203_light_data_t']]], + ['compare_5fb_5fchannel',['compare_b_channel',['../group___a_d_c___e.html#aa55fa691b0ddcda47c101f93e1ef7a91',1,'adc_e_window_cfg_t']]], + ['compare_5fb_5fmode',['compare_b_mode',['../group___a_d_c___e.html#aa3bddc5993e3dda400ba4204565e30c9',1,'adc_e_window_cfg_t']]], + ['compare_5fb_5fref_5fhigh',['compare_b_ref_high',['../group___a_d_c___e.html#a042144a8278f131dc71decdf379d953f',1,'adc_e_window_cfg_t']]], + ['compare_5fb_5fref_5flow',['compare_b_ref_low',['../group___a_d_c___e.html#ae8ee1fc70ecc64d4dafcc3498e0c5458',1,'adc_e_window_cfg_t']]], + ['compare_5fcfg',['compare_cfg',['../group___a_d_c___e.html#a25be89b9a53299121d6cc6e6c1572a01',1,'adc_e_window_cfg_t']]], + ['compare_5fipl',['compare_ipl',['../group___t_s_u___b.html#a06b6e82fcee558ee4548f37d8620a1f4',1,'tsu_b_extended_cfg_t']]], + ['compare_5firq',['compare_irq',['../group___t_s_u___b.html#a3fc59fe6297b3d440cb73510eaf7f21b',1,'tsu_b_extended_cfg_t']]], + ['compare_5fmask',['compare_mask',['../group___a_d_c___e.html#ad1de0a6834ea185e7db99c38886c4fc6',1,'adc_e_window_cfg_t']]], + ['compare_5fmode_5fmask',['compare_mode_mask',['../group___a_d_c___e.html#a4356be4b57def3aafa8b6fe95866dd1d',1,'adc_e_window_cfg_t']]], + ['compare_5foc0_5fipl',['compare_oc0_ipl',['../group___c_m_t_w.html#a33d09d1a1606e992bc2c088911604059',1,'cmtw_extended_cfg_t']]], + ['compare_5foc0_5firq',['compare_oc0_irq',['../group___c_m_t_w.html#a79ee13b79b31f931ffe1f9d73aa6eb0e',1,'cmtw_extended_cfg_t']]], + ['compare_5foc1_5fipl',['compare_oc1_ipl',['../group___c_m_t_w.html#a320a41da7945c9c63d38b84e665c276a',1,'cmtw_extended_cfg_t']]], + ['compare_5foc1_5firq',['compare_oc1_irq',['../group___c_m_t_w.html#aab0750f8c5088df9c26d7e827d08db67',1,'cmtw_extended_cfg_t']]], + ['compare_5fref_5fhigh',['compare_ref_high',['../group___a_d_c___e.html#af918f90028f93af577340c7310bb17b1',1,'adc_e_window_cfg_t::compare_ref_high()'],['../group___t_s_u___b.html#a22491b611c1958bb5405b05b2a7a3feb',1,'tsu_b_extended_cfg_t::compare_ref_high()']]], + ['compare_5fref_5flow',['compare_ref_low',['../group___a_d_c___e.html#a97b0e510305931084fd702330874f861',1,'adc_e_window_cfg_t::compare_ref_low()'],['../group___t_s_u___b.html#a1fce1fbc4e5f916220040a4146e27c49',1,'tsu_b_extended_cfg_t::compare_ref_low()']]], + ['comparison_5fmode',['comparison_mode',['../group___t_s_u___b.html#a3906e15e289a42557f63f5514c81f8d1',1,'tsu_b_extended_cfg_t']]], + ['compensation_5ffilter_5fcoefficient_5fh',['compensation_filter_coefficient_h',['../group___p_d_m.html#aecb431688082d1f39d7790e087fa4cdc',1,'pdm_extended_cfg_t']]], + ['compensation_5ffilter_5fshift',['compensation_filter_shift',['../group___p_d_m.html#adf0d5ca09d9fc77bca06739dc943d9a2',1,'pdm_extended_cfg_t']]], ['config',['config',['../structzmod4xxx__dev__t.html#ada348193f23257b4e20759717426a7b4',1,'zmod4xxx_dev_t']]], + ['continuous_5fsetting',['continuous_setting',['../group___d_m_a_c___b.html#aa811f82a3883a3b8ea7af93d5964cc4e',1,'dmac_b_extended_cfg_t']]], ['control_5fsignal',['control_signal',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aa95d3545e0fcfe3070532d2b1e4923b0',1,'rm_zmod4xxx_odor_data_t::control_signal()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abe7c7a383889bcc45958fb2f24afe497',1,'rm_zmod4xxx_raq_data_t::control_signal()']]], ['copyright',['Copyright',['../_c_o_p_y_r_i_g_h_t.html',1,'']]], + ['count',['count',['../group___s_p_i___b.html#a992f7cfe75bd98e8fe2c9120d0c7b26b',1,'spi_b_instance_ctrl_t']]], ['count_5fdirection',['count_direction',['../group___t_i_m_e_r___a_p_i.html#af333f19bba6c3962a91fe3beb90482a8',1,'timer_info_t']]], ['count_5fdown_5fsource',['count_down_source',['../group___g_p_t.html#a2ecf880963c441f20c3c8a2ac7a854ea',1,'gpt_extended_cfg_t']]], ['count_5fup_5fsource',['count_up_source',['../group___g_p_t.html#ae96b1fce9515b779078f947aa3885618',1,'gpt_extended_cfg_t']]], ['counter',['counter',['../group___t_i_m_e_r___a_p_i.html#ab3892976d7757fae081e19023e155006',1,'timer_status_t']]], + ['counter_5fsize',['counter_size',['../group___c_m_t_w.html#a7c6f42e3fb0d459fa5ca352450144dd1',1,'cmtw_extended_cfg_t']]], + ['counterget',['counterGet',['../group___w_d_t___a_p_i.html#a724c02d7265d5eaa846cf97a3556f5d6',1,'wdt_api_t']]], + ['crc_20_28r_5fcrc_29',['CRC (r_crc)',['../group___c_r_c.html',1,'']]], + ['crc_20interface',['CRC Interface',['../group___c_r_c___a_p_i.html',1,'']]], + ['crc_5fapi_5ft',['crc_api_t',['../group___c_r_c___a_p_i.html#structcrc__api__t',1,'']]], + ['crc_5fbit_5forder_5flms_5flsb',['CRC_BIT_ORDER_LMS_LSB',['../group___c_r_c___a_p_i.html#gga5d770a90efa92855a81b5ae47b50db70a938646e39c9f235ae7a23c19e03f6d53',1,'r_crc_api.h']]], + ['crc_5fbit_5forder_5flms_5fmsb',['CRC_BIT_ORDER_LMS_MSB',['../group___c_r_c___a_p_i.html#gga5d770a90efa92855a81b5ae47b50db70a929efb1d3d263f589cf6a6c650d5e393',1,'r_crc_api.h']]], + ['crc_5fbit_5forder_5ft',['crc_bit_order_t',['../group___c_r_c___a_p_i.html#ga5d770a90efa92855a81b5ae47b50db70',1,'r_crc_api.h']]], + ['crc_5fcfg_5ft',['crc_cfg_t',['../group___c_r_c___a_p_i.html#structcrc__cfg__t',1,'']]], + ['crc_5fctrl_5ft',['crc_ctrl_t',['../group___c_r_c___a_p_i.html#ga4c9c5ebe6bb4522f76618993434459e0',1,'r_crc_api.h']]], + ['crc_5fextended_5fcfg_5ft',['crc_extended_cfg_t',['../group___c_r_c.html#structcrc__extended__cfg__t',1,'']]], + ['crc_5finput_5ft',['crc_input_t',['../group___c_r_c___a_p_i.html#structcrc__input__t',1,'']]], + ['crc_5finstance_5fctrl_5ft',['crc_instance_ctrl_t',['../group___c_r_c.html#structcrc__instance__ctrl__t',1,'']]], + ['crc_5finstance_5ft',['crc_instance_t',['../group___c_r_c___a_p_i.html#structcrc__instance__t',1,'']]], + ['crc_5fpolynomial_5fcrc_5f16',['CRC_POLYNOMIAL_CRC_16',['../group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da6b5637781ae91033928a2e082c823465',1,'r_crc_api.h']]], + ['crc_5fpolynomial_5fcrc_5f32',['CRC_POLYNOMIAL_CRC_32',['../group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931dac9c97ab1a8814206b952a35066a861c2',1,'r_crc_api.h']]], + ['crc_5fpolynomial_5fcrc_5f32c',['CRC_POLYNOMIAL_CRC_32C',['../group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da8854edee82722360b9adbfbfda3843b1',1,'r_crc_api.h']]], + ['crc_5fpolynomial_5fcrc_5f8',['CRC_POLYNOMIAL_CRC_8',['../group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da3743dfb69b7a6127e74de34390f3a55c',1,'r_crc_api.h']]], + ['crc_5fpolynomial_5fcrc_5fccitt',['CRC_POLYNOMIAL_CRC_CCITT',['../group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da5f95f86fa3c29357706b0eb54223ef62',1,'r_crc_api.h']]], + ['crc_5fpolynomial_5ft',['crc_polynomial_t',['../group___c_r_c___a_p_i.html#ga7daa8fa0df9f42a98afcf766a63d931d',1,'r_crc_api.h']]], + ['crc_5fsnoop_5fdirection_5freceive',['CRC_SNOOP_DIRECTION_RECEIVE',['../group___c_r_c___a_p_i.html#ggad26e18afbb5663c0bcb91d62d418e2e3af13bda1509e0658baf48a48eb9f1c03c',1,'r_crc_api.h']]], + ['crc_5fsnoop_5fdirection_5ft',['crc_snoop_direction_t',['../group___c_r_c___a_p_i.html#gad26e18afbb5663c0bcb91d62d418e2e3',1,'r_crc_api.h']]], + ['crc_5fsnoop_5fdirection_5ftransmit',['CRC_SNOOP_DIRECTION_TRANSMIT',['../group___c_r_c___a_p_i.html#ggad26e18afbb5663c0bcb91d62d418e2e3a961727790a4640f4be3e6229068c6c62',1,'r_crc_api.h']]], + ['crcresultget',['crcResultGet',['../group___c_r_c___a_p_i.html#a0c748a9f3b2eb21585c97e3493f285ac',1,'crc_api_t']]], + ['current_5fcommand_5fcode',['current_command_code',['../group___i3_c___b.html#a48dcc530b11970be9d3f2fae9dd5dcdc',1,'i3c_b_instance_ctrl_t']]], ['cycle_5fend_5fipl',['cycle_end_ipl',['../group___t_i_m_e_r___a_p_i.html#a07302c8caf4d9b811e7350a96615d98d',1,'timer_cfg_t']]], ['cycle_5fend_5firq',['cycle_end_irq',['../group___t_i_m_e_r___a_p_i.html#a37fb0f08b16d9e2408909c4f2cc7acbb',1,'timer_cfg_t']]], + ['cycles_5fvalue',['cycles_value',['../group___s_c_i___b___i2_c.html#a2f29638add1a4e0525c842c79b2806f5',1,'sci_b_i2c_clock_settings_t']]], + ['connectivity',['Connectivity',['../group___r_e_n_e_s_a_s___c_o_n_n_e_c_t_i_v_i_t_y___m_o_d_u_l_e_s.html',1,'']]], ['common_20error_20codes',['Common Error Codes',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html',1,'']]], ['communicatons_20middleware_20interface',['Communicatons Middleware Interface',['../group___r_m___c_o_m_m_s___a_p_i.html',1,'']]] ]; diff --git a/search/all_4.js b/search/all_4.js index e3155f8..957ce9c 100644 --- a/search/all_4.js +++ b/search/all_4.js @@ -1,22 +1,96 @@ var searchData= [ - ['data',['data',['../group___c_a_n___a_p_i.html#ad70086e98bfe0871e3f73d1f253138db',1,'can_frame_t::data()'],['../group___u_a_r_t___a_p_i.html#a828d44762a5e4d11aead4d811a1c5c70',1,'uart_callback_args_t::data()']]], + ['dat_5fipl',['dat_ipl',['../group___p_d_m___a_p_i.html#a298ee7b058b5cddae6a30ac90a093818',1,'pdm_cfg_t']]], + ['dat_5firq',['dat_irq',['../group___p_d_m___a_p_i.html#a5a22105924178bfeb3d5d4e21e6cb5a4',1,'pdm_cfg_t']]], + ['data',['data',['../group___c_a_n___a_p_i.html#ad70086e98bfe0871e3f73d1f253138db',1,'can_frame_t::data()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#a52ae9ed9880e98f7a02107c2b31b673b',1,'spi_flash_direct_transfer_t::data()'],['../group___u_a_r_t___a_p_i.html#a828d44762a5e4d11aead4d811a1c5c70',1,'uart_callback_args_t::data()']]], ['data_5fbits',['data_bits',['../group___u_a_r_t___a_p_i.html#adb701292c23e393a8152e57da1cc6cb3',1,'uart_cfg_t']]], + ['data_5flength',['data_length',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a5e3c48eb88187944722f745231f955f3',1,'spi_flash_direct_transfer_t']]], ['data_5flength_5fcode',['data_length_code',['../group___c_a_n___a_p_i.html#af58b9f3fe19ed69e0a635cd271c68404',1,'can_frame_t']]], ['datacalculate',['dataCalculate',['../group___r_m___h_s300_x___a_p_i.html#a1b8c3e526c2265e4bebf5aaf2b1a29fc',1,'rm_hs300x_api_t::dataCalculate()'],['../group___r_m___h_s400_x___a_p_i.html#a16b20fc56880ef23d5b8a4b2f169c50e',1,'rm_hs400x_api_t::dataCalculate()']]], + ['dayofweek_5fmatch',['dayofweek_match',['../group___r_t_c___a_p_i.html#a7c550dd3aaa641771433b71675a41acf',1,'rtc_alarm_time_t']]], + ['dcr',['dcr',['../group___i3_c___a_p_i.html#af7ddfcf173feb4b04c3cd90189cd9941',1,'i3c_slave_info_t']]], + ['de_5fcontrol_5fpin',['de_control_pin',['../group___s_c_i_f___u_a_r_t.html#a2e764fad5f11c412720a531a8e1b6815',1,'sci_uart_rs485_setting_t']]], ['dead_5ftime_5fcount_5fdown',['dead_time_count_down',['../group___g_p_t.html#aafd7df5d2639958e4602b2f05b877707',1,'gpt_extended_pwm_cfg_t']]], ['dead_5ftime_5fcount_5fup',['dead_time_count_up',['../group___g_p_t.html#ad6a0d3919d4334ec367619aecd96b0f0',1,'gpt_extended_pwm_cfg_t']]], + ['dead_5ftime_5fipl',['dead_time_ipl',['../group___g_p_t.html#af0ca97f849a3dbbee00c59d75acb4bb0',1,'gpt_extended_cfg_t']]], + ['dead_5ftime_5firq',['dead_time_irq',['../group___g_p_t.html#afbc788de7ed38b81ebb727b2c05d0525',1,'gpt_extended_cfg_t']]], ['decimal_5fpart',['decimal_part',['../group___r_m___h_s300_x___a_p_i.html#aae2bbfa1e2723b7547a49fdfdc8125a2',1,'rm_hs300x_sensor_data_t::decimal_part()'],['../group___r_m___h_s400_x___a_p_i.html#adb5595b01588645a3e9a9cfd1edb074a',1,'rm_hs400x_sensor_data_t::decimal_part()']]], ['default_5fhandler',['Default_Handler',['../group___b_s_p___m_c_u.html#ga4e0c522c1bb26af24accaf20e6b87d12',1,'startup.c']]], ['default_5fhandler_5fs',['Default_Handler_S',['../group___b_s_p___m_c_u.html#gae8a3e014a73051cf3acf3ff54e54cdbc',1,'startups.c']]], ['delay_5fcompensation',['delay_compensation',['../group___c_a_n_f_d.html#a3b38e8d28731a86eb521db8a5c5ae85e',1,'canfd_extended_cfg_t']]], ['delay_5fms',['delay_ms',['../group___r_m___z_m_o_d4_x_x_x.html#a747d96b26c6228fd7505c18b11eb93cb',1,'rm_zmod4xxx_init_process_params_t::delay_ms()'],['../structzmod4xxx__dev__t.html#ad6ee7a7b462535fd5d1b32354fd0dd16',1,'zmod4xxx_dev_t::delay_ms()']]], + ['dest_5faddr_5fmode',['dest_addr_mode',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a9e39c449b5d1f8a957b833833c7da06b',1,'transfer_info_t']]], + ['dest_5fsize',['dest_size',['../group___d_m_a_c___b.html#aa22d8061d429688b3aec06dbc938863f',1,'dmac_b_extended_info_t::dest_size()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a023152eeec3dda49c43b0a5576b07881',1,'transfer_info_t::dest_size()']]], ['dev_5ferr_5fcheck',['dev_err_check',['../group___r_m___z_m_o_d4_x_x_x.html#a23c402c7d22a24110fcf3c5fbbf36c48',1,'rm_zmod4xxx_instance_ctrl_t']]], + ['device_5fbitrate_5fmode',['device_bitrate_mode',['../group___i3_c___b.html#a359e6208b0bd04aab75f6b876d8bead3',1,'i3c_b_instance_ctrl_t']]], + ['device_5findex',['device_index',['../group___i3_c___b.html#a5ea03dcc03a3fa25df7a630635c9880f',1,'i3c_b_instance_ctrl_t']]], + ['device_5fprotocol',['device_protocol',['../group___i3_c___a_p_i.html#a24de9f1da7fb32c695bd512994144a0b',1,'i3c_device_table_cfg_t']]], + ['device_5ftype',['device_type',['../group___i3_c___a_p_i.html#a177e6729548170be6b6ddbe444fc6716',1,'i3c_cfg_t']]], + ['devicecfgset',['deviceCfgSet',['../group___i3_c___a_p_i.html#ad1a5e82be324c969d8397e687eb66c08',1,'i3c_api_t']]], ['deviceerrorcheck',['deviceErrorCheck',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a032f14a6414a147c3e05a28064d97069',1,'rm_zmod4xxx_api_t']]], - ['deviceinterruptcfgset',['deviceInterruptCfgSet',['../group___r_m___o_b1203___a_p_i.html#a32be3218edf3a0a22e3fd7403ae8d5e7',1,'rm_ob1203_api_t']]], - ['devicestatusget',['deviceStatusGet',['../group___r_m___o_b1203___a_p_i.html#abd612814bfe809e1435fab3ba2c6b2e2',1,'rm_ob1203_api_t']]], - ['disable',['disable',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a6ecb5664f627d1b731a4fd0a74e5f2bc',1,'external_irq_api_t::disable()'],['../group___t_i_m_e_r___a_p_i.html#a8b69fad02aee5d83b941ed02fca18aca',1,'timer_api_t::disable()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a3188207ba386da0ec85946e134b4327a',1,'transfer_api_t::disable()']]], - ['driver_5fenable_5fpin',['driver_enable_pin',['../group___s_c_i_f___u_a_r_t.html#aed0a20c432a538f3c20a83c50e76be3b',1,'scif_uart_extended_cfg_t']]], + ['deviceselect',['deviceSelect',['../group___i3_c___a_p_i.html#a1e24e768130b9ea12f10743ff3143fa7',1,'i3c_api_t']]], + ['digital_5ffilter_5fstages',['digital_filter_stages',['../group___r_i_i_c___s_l_a_v_e.html#a8fbc88f3fad23597ec529cccaf5d5bc1',1,'iic_slave_clock_settings_t']]], + ['direction',['direction',['../group___i_o_p_o_r_t.html#a432e6c1358ecd19696f9bab115aaa4cd',1,'ioport_event_single_t']]], + ['directread',['directRead',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a3366fdcb333cb6950ff38bb35618c401',1,'spi_flash_api_t']]], + ['directtransfer',['directTransfer',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a21da248768dd75281ea7b29f2d243afd',1,'spi_flash_api_t']]], + ['directwrite',['directWrite',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a31a1d575f3d8876154d4e217caebf110',1,'spi_flash_api_t']]], + ['disable',['disable',['../group___e_l_c___a_p_i.html#a91eea8824e8ea3d204860d16abb8d78a',1,'elc_api_t::disable()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a6ecb5664f627d1b731a4fd0a74e5f2bc',1,'external_irq_api_t::disable()'],['../group___t_i_m_e_r___a_p_i.html#a8b69fad02aee5d83b941ed02fca18aca',1,'timer_api_t::disable()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a3188207ba386da0ec85946e134b4327a',1,'transfer_api_t::disable()']]], + ['direct_20memory_20access_20controller_20_28r_5fdmac_5fb_29',['Direct Memory Access Controller (r_dmac_b)',['../group___d_m_a_c___b.html',1,'']]], + ['dmac_5fb_5fack_5fmode_5fbus_5fcycle_5fmode',['DMAC_B_ACK_MODE_BUS_CYCLE_MODE',['../group___d_m_a_c___b.html#gga46c5c66fc820831bb56b5f6554f2890eaf0702197abc49f459a920cfd07e079b9',1,'r_dmac_b.h']]], + ['dmac_5fb_5fack_5fmode_5flevel_5fmode',['DMAC_B_ACK_MODE_LEVEL_MODE',['../group___d_m_a_c___b.html#gga46c5c66fc820831bb56b5f6554f2890eaf2b54be1c14b4eaa12570b6bc5fec740',1,'r_dmac_b.h']]], + ['dmac_5fb_5fack_5fmode_5fmask_5fdack_5foutput',['DMAC_B_ACK_MODE_MASK_DACK_OUTPUT',['../group___d_m_a_c___b.html#gga46c5c66fc820831bb56b5f6554f2890ea2c0a3fc39b5304639b9b27528b37d368',1,'r_dmac_b.h']]], + ['dmac_5fb_5fack_5fmode_5ft',['dmac_b_ack_mode_t',['../group___d_m_a_c___b.html#ga46c5c66fc820831bb56b5f6554f2890e',1,'r_dmac_b.h']]], + ['dmac_5fb_5fcallback_5fargs_5ft',['dmac_b_callback_args_t',['../group___d_m_a_c___b.html#structdmac__b__callback__args__t',1,'']]], + ['dmac_5fb_5fchannel_5fscheduling_5ffixed',['DMAC_B_CHANNEL_SCHEDULING_FIXED',['../group___d_m_a_c___b.html#ggab359dcd5cfb24ecd20655106c9397d63ae7628013b57a05b3524bfa6b58eece1e',1,'r_dmac_b.h']]], + ['dmac_5fb_5fchannel_5fscheduling_5fround_5frobin',['DMAC_B_CHANNEL_SCHEDULING_ROUND_ROBIN',['../group___d_m_a_c___b.html#ggab359dcd5cfb24ecd20655106c9397d63a481ea85a54aca23ab1215c7b14a969fb',1,'r_dmac_b.h']]], + ['dmac_5fb_5fchannel_5fscheduling_5ft',['dmac_b_channel_scheduling_t',['../group___d_m_a_c___b.html#gab359dcd5cfb24ecd20655106c9397d63',1,'r_dmac_b.h']]], + ['dmac_5fb_5fcontinuous_5fsetting_5ft',['dmac_b_continuous_setting_t',['../group___d_m_a_c___b.html#ga096bd7a43751a80690fd7ed3454b78a7',1,'r_dmac_b.h']]], + ['dmac_5fb_5fcontinuous_5fsetting_5ftransfer_5falternately',['DMAC_B_CONTINUOUS_SETTING_TRANSFER_ALTERNATELY',['../group___d_m_a_c___b.html#gga096bd7a43751a80690fd7ed3454b78a7a61c972e3ce54cbcb765c280c977e2857',1,'r_dmac_b.h']]], + ['dmac_5fb_5fcontinuous_5fsetting_5ftransfer_5fonce',['DMAC_B_CONTINUOUS_SETTING_TRANSFER_ONCE',['../group___d_m_a_c___b.html#gga096bd7a43751a80690fd7ed3454b78a7a7de91e47558887cbcf23934645dca258',1,'r_dmac_b.h']]], + ['dmac_5fb_5fevent_5ft',['dmac_b_event_t',['../group___d_m_a_c___b.html#ga1ea3acbac3625e15f0b656d9b220cc8a',1,'r_dmac_b.h']]], + ['dmac_5fb_5fevent_5ftransfer_5fend',['DMAC_B_EVENT_TRANSFER_END',['../group___d_m_a_c___b.html#gga1ea3acbac3625e15f0b656d9b220cc8aac41c065b08dd64341516cdc406f0a43a',1,'r_dmac_b.h']]], + ['dmac_5fb_5fevent_5ftransfer_5ferror',['DMAC_B_EVENT_TRANSFER_ERROR',['../group___d_m_a_c___b.html#gga1ea3acbac3625e15f0b656d9b220cc8aa63dd08ef2be01ac99472a7b9d39fabc0',1,'r_dmac_b.h']]], + ['dmac_5fb_5fextended_5fcfg_5ft',['dmac_b_extended_cfg_t',['../group___d_m_a_c___b.html#structdmac__b__extended__cfg__t',1,'']]], + ['dmac_5fb_5fextended_5finfo_5ft',['dmac_b_extended_info_t',['../group___d_m_a_c___b.html#structdmac__b__extended__info__t',1,'']]], + ['dmac_5fb_5fexternal_5fdetection_5ffalling_5fedge',['DMAC_B_EXTERNAL_DETECTION_FALLING_EDGE',['../group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355ba1e4a1303234cd1b4bd879da0a5497c81',1,'r_dmac_b.h']]], + ['dmac_5fb_5fexternal_5fdetection_5ffalling_5frising_5fedge',['DMAC_B_EXTERNAL_DETECTION_FALLING_RISING_EDGE',['../group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355babdf24e175dde86c8a869f358d5bb30b1',1,'r_dmac_b.h']]], + ['dmac_5fb_5fexternal_5fdetection_5flow_5flevel',['DMAC_B_EXTERNAL_DETECTION_LOW_LEVEL',['../group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355ba9b733b38f6216a7bafaa62855dcdea06',1,'r_dmac_b.h']]], + ['dmac_5fb_5fexternal_5fdetection_5fno_5fdetection',['DMAC_B_EXTERNAL_DETECTION_NO_DETECTION',['../group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355baac86700726f22406c000acd5464a0737',1,'bsp_override.h']]], + ['dmac_5fb_5fexternal_5fdetection_5frising_5fedge',['DMAC_B_EXTERNAL_DETECTION_RISING_EDGE',['../group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355ba71d49967fcb329386f7ad75c057af39f',1,'r_dmac_b.h']]], + ['dmac_5fb_5fexternal_5fdetection_5ft',['dmac_b_external_detection_t',['../group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355b',1,'r_dmac_b.h']]], + ['dmac_5fb_5finstance_5fctrl_5ft',['dmac_b_instance_ctrl_t',['../group___d_m_a_c___b.html#structdmac__b__instance__ctrl__t',1,'']]], + ['dmac_5fb_5finternal_5fdetection_5ffalling_5fedge',['DMAC_B_INTERNAL_DETECTION_FALLING_EDGE',['../group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9a33a92c25dc8e8d12113e6deb4675c873',1,'r_dmac_b.h']]], + ['dmac_5fb_5finternal_5fdetection_5fhigh_5flevel',['DMAC_B_INTERNAL_DETECTION_HIGH_LEVEL',['../group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9a1299d6d4187c1bb2488f36aaaa595010',1,'r_dmac_b.h']]], + ['dmac_5fb_5finternal_5fdetection_5flow_5flevel',['DMAC_B_INTERNAL_DETECTION_LOW_LEVEL',['../group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9a4fb00d6fcdbad47c1093e14b8ae9e548',1,'r_dmac_b.h']]], + ['dmac_5fb_5finternal_5fdetection_5fno_5fdetection',['DMAC_B_INTERNAL_DETECTION_NO_DETECTION',['../group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9ab15a854ed45d602e8d626578289ce9ba',1,'r_dmac_b.h']]], + ['dmac_5fb_5finternal_5fdetection_5frising_5fedge',['DMAC_B_INTERNAL_DETECTION_RISING_EDGE',['../group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9ab7d1e90900549b57f72f0de1b45ea896',1,'r_dmac_b.h']]], + ['dmac_5fb_5finternal_5fdetection_5ft',['dmac_b_internal_detection_t',['../group___d_m_a_c___b.html#gaa15ccc56c79f1686821605ef2b8f36b9',1,'r_dmac_b.h']]], + ['dmac_5fb_5fmax_5fblock_5ftransfer_5flength',['DMAC_B_MAX_BLOCK_TRANSFER_LENGTH',['../group___d_m_a_c___b.html#gaa8077eb6959e1d019b7cf7a105fea64c',1,'r_dmac_b.h']]], + ['dmac_5fb_5fmax_5fnormal_5ftransfer_5flength',['DMAC_B_MAX_NORMAL_TRANSFER_LENGTH',['../group___d_m_a_c___b.html#gad36329d847d5154489a049a3c91300ce',1,'r_dmac_b.h']]], + ['dmac_5fb_5fmode_5fselect_5flink',['DMAC_B_MODE_SELECT_LINK',['../group___d_m_a_c___b.html#gga94e377366e55d6e30cf97102474a5320a3baaab03184466785a334292da53798b',1,'r_dmac_b.h']]], + ['dmac_5fb_5fmode_5fselect_5fregister',['DMAC_B_MODE_SELECT_REGISTER',['../group___d_m_a_c___b.html#gga94e377366e55d6e30cf97102474a5320a7f8b6c67b1c4def19957ece68927e144',1,'r_dmac_b.h']]], + ['dmac_5fb_5fmode_5fselect_5ft',['dmac_b_mode_select_t',['../group___d_m_a_c___b.html#ga94e377366e55d6e30cf97102474a5320',1,'r_dmac_b.h']]], + ['dmac_5fb_5fregister_5fset_5fsetting_5ft',['dmac_b_register_set_setting_t',['../group___d_m_a_c___b.html#structdmac__b__register__set__setting__t',1,'']]], + ['dmac_5fb_5frequest_5fdirection_5fdestination_5fmodule',['DMAC_B_REQUEST_DIRECTION_DESTINATION_MODULE',['../group___d_m_a_c___b.html#gga16f1e4bdd626e2ffc16b8852ca8d8c29adb00461b1b26e0bfbacec0a4ddabcdb1',1,'r_dmac_b.h']]], + ['dmac_5fb_5frequest_5fdirection_5fsource_5fmodule',['DMAC_B_REQUEST_DIRECTION_SOURCE_MODULE',['../group___d_m_a_c___b.html#gga16f1e4bdd626e2ffc16b8852ca8d8c29a93d8c7e5e86dacbe867b641d45c9a2b7',1,'r_dmac_b.h']]], + ['dmac_5fb_5frequest_5fdirection_5ft',['dmac_b_request_direction_t',['../group___d_m_a_c___b.html#ga16f1e4bdd626e2ffc16b8852ca8d8c29',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f128_5fbyte',['DMAC_B_TRANSFER_SIZE_128_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a2c9e0298925cbd56844ad036ce1a912c',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f16_5fbyte',['DMAC_B_TRANSFER_SIZE_16_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a58ff436dad7b5de72f7dc3a260cbd330',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f1_5fbyte',['DMAC_B_TRANSFER_SIZE_1_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a721e23f79b32c72da736ec54d5421bec',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f2_5fbyte',['DMAC_B_TRANSFER_SIZE_2_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a4c2cfb773f20e835d60f56c0a629c8cf',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f32_5fbyte',['DMAC_B_TRANSFER_SIZE_32_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a805502107f3f216852993a50431d770b',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f4_5fbyte',['DMAC_B_TRANSFER_SIZE_4_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a85e3931c705b484424a1edb2e1524e84',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f64_5fbyte',['DMAC_B_TRANSFER_SIZE_64_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05aefe1c8b1b4337a4110e65e2ac44a9c45',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f8_5fbyte',['DMAC_B_TRANSFER_SIZE_8_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a0c2745aba41ca5690310193c4bdf4e45',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5ft',['dmac_b_transfer_size_t',['../group___d_m_a_c___b.html#ga77c350dbc52956dc8b1ce4987e721e05',1,'r_dmac_b.h']]], + ['dmac_5fint_5fipl',['dmac_int_ipl',['../group___d_m_a_c___b.html#ad9ca631bfb2e8c33238e11cc75b0ebc3',1,'dmac_b_extended_cfg_t']]], + ['dmac_5fint_5firq',['dmac_int_irq',['../group___d_m_a_c___b.html#ae98f5d3627d5c804de9b552f29ce5783',1,'dmac_b_extended_cfg_t']]], + ['dmac_5fmode',['dmac_mode',['../group___d_m_a_c___b.html#a6b46edce846a6cb215c5f1c61f38fb23',1,'dmac_b_extended_cfg_t']]], + ['double_5ftrigger_5fmode',['double_trigger_mode',['../group___a_d_c___e.html#a9fb46ca6ae270967f11502395de49e07',1,'adc_e_extended_cfg_t']]], + ['dummy_5fclocks',['dummy_clocks',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a6b2d213cfd3ca4a9a0f1c3dfd11414ec',1,'spi_flash_cfg_t']]], + ['dummy_5fcycles',['dummy_cycles',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ad4a653cf90fd97dc9d0a5f8fce3c3795',1,'spi_flash_direct_transfer_t']]], ['duty_5fcycle_5fcounts',['duty_cycle_counts',['../group___t_i_m_e_r___a_p_i.html#a9da65b46c59a0543ec977f634bb0265d',1,'timer_cfg_t']]], - ['dutycycleset',['dutyCycleSet',['../group___t_i_m_e_r___a_p_i.html#a819ed0740ca426ace0d6b67e16c6ddfc',1,'timer_api_t']]] + ['dutycycleset',['dutyCycleSet',['../group___t_i_m_e_r___a_p_i.html#a819ed0740ca426ace0d6b67e16c6ddfc',1,'timer_api_t']]], + ['dynamic_5faddress',['dynamic_address',['../group___i3_c___a_p_i.html#a683afb29ae34336a1817776683062d2d',1,'i3c_device_table_cfg_t::dynamic_address()'],['../group___i3_c___a_p_i.html#acf39141678838e40af4bee849660f210',1,'i3c_device_cfg_t::dynamic_address()'],['../group___i3_c___a_p_i.html#a3b19cf7a70e74781374af0efaddc3c87',1,'i3c_callback_args_t::dynamic_address()']]], + ['dynamicaddressassignmentstart',['dynamicAddressAssignmentStart',['../group___i3_c___a_p_i.html#ae57d3fa9fa4a966a5c8cac38b0ea0660',1,'i3c_api_t']]] ]; diff --git a/search/all_5.js b/search/all_5.js index f1c7aca..2b9fb39 100644 --- a/search/all_5.js +++ b/search/all_5.js @@ -1,16 +1,44 @@ var searchData= [ ['eco2',['eco2',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a7f440ae56f5434038f3268db25554db6',1,'rm_zmod4xxx_iaq_1st_data_t::eco2()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6457c0270c680c86d593bbd286c425dc',1,'rm_zmod4xxx_iaq_2nd_data_t::eco2()']]], - ['enable',['enable',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a9cb81e4b2d313458c747cdc401179a66',1,'external_irq_api_t::enable()'],['../group___t_i_m_e_r___a_p_i.html#a13cb48d1657a9eda3380c111ba33aa2a',1,'timer_api_t::enable()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a7fd4d96709c77a309492d13fd43fd048',1,'transfer_api_t::enable()']]], + ['edge_5fdetection',['edge_detection',['../group___i_o_p_o_r_t.html#a3a19c2ef20ea13bdcd4d9fb3ee692cc8',1,'ioport_event_single_t::edge_detection()'],['../group___i_o_p_o_r_t.html#a58889324d1f0207e5a5056e4e491325a',1,'ioport_event_group_input_t::edge_detection()']]], + ['eei_5fipl',['eei_ipl',['../group___i3_c___b.html#afe8dc047bbc3484b976553478e8f1f53',1,'i3c_b_extended_cfg_t']]], + ['event_20link_20controller_20_28r_5felc_29',['Event Link Controller (r_elc)',['../group___e_l_c.html',1,'']]], + ['elc_20interface',['ELC Interface',['../group___e_l_c___a_p_i.html',1,'']]], + ['elc_5fapi_5ft',['elc_api_t',['../group___e_l_c___a_p_i.html#structelc__api__t',1,'']]], + ['elc_5fcfg_5ft',['elc_cfg_t',['../group___e_l_c___a_p_i.html#structelc__cfg__t',1,'']]], + ['elc_5fctrl_5ft',['elc_ctrl_t',['../group___e_l_c___a_p_i.html#ga71d9612a7e093ba6bbef8ff708266596',1,'r_elc_api.h']]], + ['elc_5fevent',['elc_event',['../group___a_d_c___a_p_i.html#a06d242e573821f38b3a7543dd9eb5548',1,'adc_info_t']]], + ['elc_5fevent_5ft',['elc_event_t',['../group___b_s_p___m_c_u___r_z_v2_h.html#gaebe723200f2a7f181f08324128b9d7b5',1,'bsp_elc.h']]], + ['elc_5finstance_5fctrl_5ft',['elc_instance_ctrl_t',['../group___e_l_c.html#structelc__instance__ctrl__t',1,'']]], + ['elc_5finstance_5ft',['elc_instance_t',['../group___e_l_c___a_p_i.html#structelc__instance__t',1,'']]], + ['elc_5fperipheral',['elc_peripheral',['../group___a_d_c___a_p_i.html#a391a11955d9d3b8d84ca87bbfe72df86',1,'adc_info_t']]], + ['elc_5fperipheral_5ft',['elc_peripheral_t',['../group___e_l_c___a_p_i.html#gaa5bf5e18ceb8cf51ac6dce985f9230a7',1,'r_elc_api.h']]], + ['elc_5fsoftware_5fevent_5f0',['ELC_SOFTWARE_EVENT_0',['../group___e_l_c___a_p_i.html#ga5fed76c06664ddad69c5a7ccb0330f0ea862eb8abb2f512a4b4caaa1ee6900d27',1,'r_elc_api.h']]], + ['elc_5fsoftware_5fevent_5f1',['ELC_SOFTWARE_EVENT_1',['../group___e_l_c___a_p_i.html#ga5fed76c06664ddad69c5a7ccb0330f0ea4ba5ce998b49ee8ba5fd264f53146d6d',1,'r_elc_api.h']]], + ['elc_5fsoftware_5fevent_5ft',['elc_software_event_t',['../group___e_l_c___a_p_i.html#ga5fed76c06664ddad69c5a7ccb0330f0e',1,'r_elc_api.h']]], + ['enable',['enable',['../group___e_l_c___a_p_i.html#a5ec2e92543d9a74fd4e33b20b9782ef5',1,'elc_api_t::enable()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a9cb81e4b2d313458c747cdc401179a66',1,'external_irq_api_t::enable()'],['../group___i3_c___a_p_i.html#adbfee07190ec081f9dc3820bba928cef',1,'i3c_api_t::enable()'],['../group___t_i_m_e_r___a_p_i.html#a13cb48d1657a9eda3380c111ba33aa2a',1,'timer_api_t::enable()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a7fd4d96709c77a309492d13fd43fd048',1,'transfer_api_t::enable()'],['../group___s_c_i___b___u_a_r_t.html#a99de4af724a14ceba347cb317614cc91',1,'sci_b_uart_rs485_setting_t::enable()'],['../group___s_c_i___b___u_a_r_t.html#a5a3eac41864f40971ab15613ab7741df',1,'sci_b_uart_half_data_setting_t::enable()'],['../group___s_c_i_f___u_a_r_t.html#a7ecf6bb47dcdafcd7e569695d0be405b',1,'sci_uart_rs485_setting_t::enable()']]], ['enter',['enter',['../group___r_m___h_s300_x.html#a61d14cc82dc42f81c05cf010858ef146',1,'rm_hs300x_programmnig_mode_params_t']]], ['epa_5faqi',['epa_aqi',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aeb49c4d0925d19ef93f1b7836acbcaf1',1,'rm_zmod4xxx_oaq_2nd_data_t']]], - ['eri_5fipl',['eri_ipl',['../group___s_p_i___a_p_i.html#afc54b2134c7201c559d31d4a9d1ab724',1,'spi_cfg_t::eri_ipl()'],['../group___u_a_r_t___a_p_i.html#a3cc235c856acbf3100cc0557a2953510',1,'uart_cfg_t::eri_ipl()']]], - ['eri_5firq',['eri_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a9b5480f5b23ea41b38671f1b7cab8540',1,'i2c_master_cfg_t::eri_irq()'],['../group___s_p_i___a_p_i.html#a6a253b9d5669bb4be218a6143db2df13',1,'spi_cfg_t::eri_irq()'],['../group___u_a_r_t___a_p_i.html#a6442033274bd3402ab162947f5a22784',1,'uart_cfg_t::eri_irq()']]], - ['error',['error',['../group___c_a_n___a_p_i.html#a39e131d3f8e8d6d8a14e9f248c1ac1e1',1,'can_callback_args_t']]], + ['erase',['erase',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a0f241a48dd8f386e19a6e0fe44e8a2d9',1,'spi_flash_api_t']]], + ['erase_5fcommand_5flist_5flength',['erase_command_list_length',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a24bbe669d6ca4a02fe6d806d321a044c',1,'spi_flash_cfg_t']]], + ['eri_5fipl',['eri_ipl',['../group___i2_c___s_l_a_v_e___a_p_i.html#a4fa45eb7423e7b93f78839b2bb612776',1,'i2c_slave_cfg_t::eri_ipl()'],['../group___s_p_i___a_p_i.html#afc54b2134c7201c559d31d4a9d1ab724',1,'spi_cfg_t::eri_ipl()'],['../group___u_a_r_t___a_p_i.html#a3cc235c856acbf3100cc0557a2953510',1,'uart_cfg_t::eri_ipl()']]], + ['eri_5firq',['eri_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a9b5480f5b23ea41b38671f1b7cab8540',1,'i2c_master_cfg_t::eri_irq()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a923331b5e9e6564b4246e559d66bc3c9',1,'i2c_slave_cfg_t::eri_irq()'],['../group___s_p_i___a_p_i.html#a6a253b9d5669bb4be218a6143db2df13',1,'spi_cfg_t::eri_irq()'],['../group___u_a_r_t___a_p_i.html#a6442033274bd3402ab162947f5a22784',1,'uart_cfg_t::eri_irq()']]], + ['err_5fipl',['err_ipl',['../group___p_d_m___a_p_i.html#a5f32ed867759c9d830f46a64a453d9c0',1,'pdm_cfg_t']]], + ['err_5firq',['err_irq',['../group___p_d_m___a_p_i.html#a2f4774f5b5da972990370a2efbeae9f3',1,'pdm_cfg_t']]], + ['error',['error',['../group___c_a_n___a_p_i.html#a39e131d3f8e8d6d8a14e9f248c1ac1e1',1,'can_callback_args_t::error()'],['../group___p_d_m___a_p_i.html#a98b4bbf5bb1bf1feccda12382e919bbc',1,'pdm_callback_args_t::error()']]], + ['error_5fcode',['error_code',['../group___c_a_n___a_p_i.html#a1ea2aaf80adb9f24fdee9828cae02e05',1,'can_info_t']]], + ['error_5fcount_5freceive',['error_count_receive',['../group___c_a_n___a_p_i.html#a59787b23ec15fa38f51d167e10389081',1,'can_info_t']]], + ['error_5fcount_5ftransmit',['error_count_transmit',['../group___c_a_n___a_p_i.html#ada0fe3e8eb824d0ebb36332f98e3c771',1,'can_info_t']]], ['error_5finterrupts',['error_interrupts',['../group___c_a_n_f_d.html#a0c05dacb48970397676e54a01c81d0e1',1,'canfd_extended_cfg_t']]], ['error_5firq',['error_irq',['../group___c_a_n___a_p_i.html#ac958a7179da3a9f365a3bf55707fac6d',1,'can_cfg_t']]], + ['erroradjustmentset',['errorAdjustmentSet',['../group___r_t_c___a_p_i.html#ae1635364719444ad65541ce00953983e',1,'rtc_api_t']]], ['etoh',['etoh',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#affea8dbc2bf312f939b04a070ba9a16d',1,'rm_zmod4xxx_iaq_1st_data_t::etoh()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a92ce32ead1c82ad9b1c355827fe027a9',1,'rm_zmod4xxx_iaq_2nd_data_t::etoh()']]], - ['event',['event',['../group___c_a_n___a_p_i.html#a48fa3cf4c8c7e608c25ac8b907450096',1,'can_callback_args_t::event()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a3a8cc9e360253e44176a6d3cecb5ece8',1,'i2c_master_callback_args_t::event()'],['../group___s_p_i___a_p_i.html#ae1e14270178c91fb89697630627c1eee',1,'spi_callback_args_t::event()'],['../group___t_i_m_e_r___a_p_i.html#a61b9aabfcafc5e362dce56af7ea36bcf',1,'timer_callback_args_t::event()'],['../group___u_a_r_t___a_p_i.html#a558f63e26549462cf3a893ed73fd26ad',1,'uart_callback_args_t::event()'],['../group___r_m___h_s300_x.html#a4b4fc8fbfadc717fb4842f0db0ffff8b',1,'rm_hs300x_programmnig_mode_params_t::event()'],['../group___r_m___h_s400_x.html#a39ddb6ae741d5506489bb4a87d466edf',1,'rm_hs400x_init_process_params_t::event()'],['../group___r_m___o_b1203.html#ac1299c7dc5347bb69d968283a73e655d',1,'rm_ob1203_init_process_params_t::event()'],['../group___r_m___z_m_o_d4_x_x_x.html#a80d7ca92199a768859b409e3eab26a76',1,'rm_zmod4xxx_init_process_params_t::event()'],['../group___r_m___z_m_o_d4_x_x_x.html#a10f677f5de3207f7c9f30effb6662608',1,'rm_zmod4xxx_instance_ctrl_t::event()']]], + ['event',['event',['../group___a_d_c___a_p_i.html#a7b1ea18a97eee3565ef6cfb084222453',1,'adc_callback_args_t::event()'],['../group___c_a_n___a_p_i.html#a48fa3cf4c8c7e608c25ac8b907450096',1,'can_callback_args_t::event()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a3a8cc9e360253e44176a6d3cecb5ece8',1,'i2c_master_callback_args_t::event()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ab8f7ff67f811463a59921e4fbe11898e',1,'i2c_slave_callback_args_t::event()'],['../group___i3_c___a_p_i.html#a558180776a16d59f446a936574353300',1,'i3c_callback_args_t::event()'],['../group___p_d_m___a_p_i.html#a4baa164d236e7f2c62cd33ddb64f41ec',1,'pdm_callback_args_t::event()'],['../group___r_t_c___a_p_i.html#ad37b36597532fc87e610ceeb849cad4d',1,'rtc_callback_args_t::event()'],['../group___s_p_i___a_p_i.html#ae1e14270178c91fb89697630627c1eee',1,'spi_callback_args_t::event()'],['../group___t_i_m_e_r___a_p_i.html#a61b9aabfcafc5e362dce56af7ea36bcf',1,'timer_callback_args_t::event()'],['../group___u_a_r_t___a_p_i.html#a558f63e26549462cf3a893ed73fd26ad',1,'uart_callback_args_t::event()'],['../group___d_m_a_c___b.html#aafb07b9e0d848a6f8e56de3b8a378522',1,'dmac_b_callback_args_t::event()'],['../group___r_m___h_s300_x.html#a4b4fc8fbfadc717fb4842f0db0ffff8b',1,'rm_hs300x_programmnig_mode_params_t::event()'],['../group___r_m___h_s400_x.html#a39ddb6ae741d5506489bb4a87d466edf',1,'rm_hs400x_init_process_params_t::event()'],['../group___r_m___z_m_o_d4_x_x_x.html#a80d7ca92199a768859b409e3eab26a76',1,'rm_zmod4xxx_init_process_params_t::event()'],['../group___r_m___z_m_o_d4_x_x_x.html#a10f677f5de3207f7c9f30effb6662608',1,'rm_zmod4xxx_instance_ctrl_t::event()']]], + ['event_5fcontrol',['event_control',['../group___i_o_p_o_r_t.html#a0b3044299c4d5b19c4fc7ad635ec59f4',1,'ioport_event_single_t::event_control()'],['../group___i_o_p_o_r_t.html#a7dbdab1b9475e8601419e739882b73f8',1,'ioport_event_group_input_t::event_control()']]], + ['event_5fstatus',['event_status',['../group___i3_c___a_p_i.html#a149831362decabc4676bd5e8265821dd',1,'i3c_callback_args_t']]], + ['extbr',['extbr',['../group___i3_c___b.html#a43f54168433c048558d579ba300f565d',1,'i3c_b_bitrate_settings_t']]], + ['external_5fdetection_5fmode',['external_detection_mode',['../group___d_m_a_c___b.html#a84613315363012283b6c3abdfd89faff',1,'dmac_b_extended_cfg_t']]], ['external_20irq_20interface',['External IRQ Interface',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html',1,'']]], ['external_5firq_5fapi_5ft',['external_irq_api_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__api__t',1,'']]], ['external_5firq_5fcallback_5fargs_5ft',['external_irq_callback_args_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__callback__args__t',1,'']]], @@ -27,5 +55,9 @@ var searchData= ['external_5firq_5ftrig_5flevel_5flow',['EXTERNAL_IRQ_TRIG_LEVEL_LOW',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57cae0ae8739569bb4721c7ed289397b9c4f',1,'r_external_irq_api.h']]], ['external_5firq_5ftrig_5frising',['EXTERNAL_IRQ_TRIG_RISING',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57ca2d7a4f8fd21fad6f5a671336152d46b0',1,'r_external_irq_api.h']]], ['external_5firq_5ftrigger_5ft',['external_irq_trigger_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ga2d1960d763da14da209e16fbb972d57c',1,'r_external_irq_api.h']]], - ['external_20irq_20_28r_5fintc_5firq_29',['External IRQ (r_intc_irq)',['../group___i_n_t_c___i_r_q.html',1,'']]] + ['external_5ftrigger_5ffilter',['external_trigger_filter',['../group___a_d_c___c.html#a9f46b83d1e4e113f06b392ca92eda623',1,'adc_c_extended_cfg_t']]], + ['external_20irq_20_28r_5fintc_5firq_29',['External IRQ (r_intc_irq)',['../group___i_n_t_c___i_r_q.html',1,'']]], + ['external_20irq_20_28r_5fintc_5fnmi_29',['External IRQ (r_intc_nmi)',['../group___i_n_t_c___n_m_i.html',1,'']]], + ['external_20irq_20_28r_5fintc_5ftint_29',['External IRQ (r_intc_tint)',['../group___i_n_t_c___t_i_n_t.html',1,'']]], + ['expanded_20serial_20peripheral_20interface_20_28xspi_29_20qspi_20_28r_5fxspi_5fqspi_29',['Expanded Serial Peripheral Interface (xSPI) QSPI (r_xspi_qspi)',['../group___x_s_p_i___q_s_p_i.html',1,'']]] ]; diff --git a/search/all_6.js b/search/all_6.js index 13867bb..e62e2fa 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -1,19 +1,18 @@ var searchData= [ ['fast_5faqi',['fast_aqi',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a84160c2d9ba22577f86b7bbdb3521845',1,'rm_zmod4xxx_oaq_2nd_data_t']]], - ['fifo_5fafull_5finterrupt_5foccur',['fifo_afull_interrupt_occur',['../group___r_m___o_b1203___a_p_i.html#a883db336eabdcd2eec7d787f2664e9d7',1,'rm_ob1203_device_status_t']]], - ['fifo_5freset',['fifo_reset',['../group___r_m___o_b1203.html#a16876cb1e3093f468775969f97c77a78',1,'rm_ob1203_instance_ctrl_t']]], - ['fifoinfoget',['fifoInfoGet',['../group___r_m___o_b1203___a_p_i.html#ace63f4f8958af6e1424ad4fa176bbcf2',1,'rm_ob1203_api_t']]], ['filter_5fenable',['filter_enable',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#aa77181dcffe927e006c2ed112c1a62ad',1,'external_irq_cfg_t']]], - ['flow_5fcontrol',['flow_control',['../group___s_c_i_f___u_a_r_t.html#aa761132ebac67c5cbbc3d6a505b97efe',1,'scif_uart_extended_cfg_t']]], + ['filter_5fsetting_5ftime',['filter_setting_time',['../group___p_d_m.html#a483ee30b7fc9958318e5563515589463',1,'pdm_extended_cfg_t']]], + ['flow_5fcontrol',['flow_control',['../group___s_c_i___b___u_a_r_t.html#a4b5314fe6a1f23955d5f340ab5447236',1,'sci_b_uart_extended_cfg_t::flow_control()'],['../group___s_c_i_f___u_a_r_t.html#aa761132ebac67c5cbbc3d6a505b97efe',1,'scif_uart_extended_cfg_t::flow_control()']]], + ['flow_5fcontrol_5fpin',['flow_control_pin',['../group___s_c_i___b___u_a_r_t.html#a1a570791ada82c7304bd70fd0431014f',1,'sci_b_uart_extended_cfg_t']]], ['frame',['frame',['../group___c_a_n___a_p_i.html#aa8706fd62e652e6582d3c9eb155fb610',1,'can_callback_args_t']]], - ['frame_5ftype',['frame_type',['../group___c_a_n___a_p_i.html#af01f0306a9ad2e430154d9d6a4e3404f',1,'can_mailbox_t']]], + ['freq_5fcompare_5fvalue_5floco',['freq_compare_value_loco',['../group___r_t_c___a_p_i.html#a0a64ff37fefef5f044209c6f85564b70',1,'rtc_cfg_t']]], ['frequency',['frequency',['../group___r_m___h_s400_x___a_p_i.html#a4a9e3392df8193428e1907f2e4a315b9',1,'rm_hs400x_cfg_t']]], ['fsp_20architecture',['FSP Architecture',['../_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html',1,'']]], - ['fsp_5fassert',['FSP_ASSERT',['../group___b_s_p___m_c_u.html#gaa4fa8ae9390afa996af2dabee6552732',1,'bsp_common.h']]], + ['fsp_5fassert',['FSP_ASSERT',['../group___b_s_p___m_c_u.html#gaa4fa8ae9390afa996af2dabee6552732',1,'FSP_ASSERT(): bsp_common.h'],['../group___b_s_p___m_c_u.html#gaa4fa8ae9390afa996af2dabee6552732',1,'FSP_ASSERT(): bsp_common.h']]], ['fsp_5fcpp_5fheader',['FSP_CPP_HEADER',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ga91dbefc93c284cc4ae3960bc1b371bb8',1,'fsp_common_api.h']]], - ['fsp_5fcritical_5fsection_5fenter',['FSP_CRITICAL_SECTION_ENTER',['../group___b_s_p___m_c_u.html#gaddc2260c1ce320f3aa1f1cb05b9a5620',1,'bsp_common.h']]], - ['fsp_5fcritical_5fsection_5fexit',['FSP_CRITICAL_SECTION_EXIT',['../group___b_s_p___m_c_u.html#ga23338e06b1e1537017ef4f3f94cda354',1,'bsp_common.h']]], + ['fsp_5fcritical_5fsection_5fenter',['FSP_CRITICAL_SECTION_ENTER',['../group___b_s_p___m_c_u.html#gaddc2260c1ce320f3aa1f1cb05b9a5620',1,'FSP_CRITICAL_SECTION_ENTER(): bsp_common.h'],['../group___b_s_p___m_c_u.html#gaddc2260c1ce320f3aa1f1cb05b9a5620',1,'FSP_CRITICAL_SECTION_ENTER(): bsp_common.h']]], + ['fsp_5fcritical_5fsection_5fexit',['FSP_CRITICAL_SECTION_EXIT',['../group___b_s_p___m_c_u.html#ga23338e06b1e1537017ef4f3f94cda354',1,'FSP_CRITICAL_SECTION_EXIT(): bsp_common.h'],['../group___b_s_p___m_c_u.html#ga23338e06b1e1537017ef4f3f94cda354',1,'FSP_CRITICAL_SECTION_EXIT(): bsp_common.h']]], ['fsp_5ferr_5faborted',['FSP_ERR_ABORTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abf03281ffe5a1adc5b3081f7adfe3f4e',1,'fsp_common_api.h']]], ['fsp_5ferr_5falready_5fopen',['FSP_ERR_ALREADY_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae74f6f5d5f827f9891901781c754455b',1,'fsp_common_api.h']]], ['fsp_5ferr_5fapproximation',['FSP_ERR_APPROXIMATION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac62322154b85b6e0db84e59b6a117a38',1,'fsp_common_api.h']]], @@ -35,6 +34,7 @@ var searchData= ['fsp_5ferr_5fcan_5fmessage_5flost',['FSP_ERR_CAN_MESSAGE_LOST',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a094ba75816525a5f0d620bdce195cc9e',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcan_5fmode_5fswitch_5ffailed',['FSP_ERR_CAN_MODE_SWITCH_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a86b1991ace24bc346dbb056d094c9886',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcan_5freceive_5fmailbox',['FSP_ERR_CAN_RECEIVE_MAILBOX',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a52e6bb08e856dae157893d1b6097f958',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcan_5ftransmit_5ffifo_5ffull',['FSP_ERR_CAN_TRANSMIT_FIFO_FULL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a18b27ed6db9097ea399215224ad62d82',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcan_5ftransmit_5fmailbox',['FSP_ERR_CAN_TRANSMIT_MAILBOX',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a998bd409cde19062422795ab5ea13c77',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcan_5ftransmit_5fnot_5fready',['FSP_ERR_CAN_TRANSMIT_NOT_READY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abd2265d139f387f507a3179e8289357d',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcard_5finit_5ffailed',['FSP_ERR_CARD_INIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2ed5fe9a48f6c1a6e50b36b17158fc62',1,'fsp_common_api.h']]], @@ -73,13 +73,31 @@ var searchData= ['fsp_5ferr_5fcrypto_5frng_5ffatal_5ferror',['FSP_ERR_CRYPTO_RNG_FATAL_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9611e83ff233e8a071999952f0836b1f',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcrypto_5frng_5finvalid_5fparam',['FSP_ERR_CRYPTO_RNG_INVALID_PARAM',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a514ca2eb6423e25bed3982d27c9d979b',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcrypto_5fsce_5falready_5fopen',['FSP_ERR_CRYPTO_SCE_ALREADY_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acfa47fcf9dd431fe1022c0c54f651936',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fsce_5fauthentication',['FSP_ERR_CRYPTO_SCE_AUTHENTICATION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7c0bcb38871c57b0cbaf0a7f94b4a3b6',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcrypto_5fsce_5ffail',['FSP_ERR_CRYPTO_SCE_FAIL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2c7fd435f27316b840546c51d0e7658d',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcrypto_5fsce_5fhrk_5finvalid_5findex',['FSP_ERR_CRYPTO_SCE_HRK_INVALID_INDEX',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abca9038b509e767223fcd461b1be22aa',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcrypto_5fsce_5fkey_5fset_5ffail',['FSP_ERR_CRYPTO_SCE_KEY_SET_FAIL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af1bec53bb97a928b39bb4e9d5f66eb04',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fsce_5fparameter',['FSP_ERR_CRYPTO_SCE_PARAMETER',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a407432ab3c4ab46df3dbf12e27bd3ca8',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fsce_5fprohibit_5ffunction',['FSP_ERR_CRYPTO_SCE_PROHIBIT_FUNCTION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a03165ce74cc447e345998cc45810bb8f',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcrypto_5fsce_5fresource_5fconflict',['FSP_ERR_CRYPTO_SCE_RESOURCE_CONFLICT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a558889b250c4c0dfa10cbce827f5b47e',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcrypto_5fsce_5fretry',['FSP_ERR_CRYPTO_SCE_RETRY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7f2691c6eef5893eae43b55495efff89',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcrypto_5fsce_5fverify_5ffail',['FSP_ERR_CRYPTO_SCE_VERIFY_FAIL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae3da08cfbb0c6451f5ccf26d3cfdef12',1,'fsp_common_api.h']]], ['fsp_5ferr_5fcrypto_5funknown',['FSP_ERR_CRYPTO_UNKNOWN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9208c6be68de64b05a8bac94d68b1316',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fcco_5fhigh',['FSP_ERR_CTSU_DIAG_CCO_HIGH',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7ee7b868f3bfce9f09e5a45c47cce101',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fcco_5flow',['FSP_ERR_CTSU_DIAG_CCO_LOW',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a53bf2288d2174c426d5626885a9cf3a5',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fcfc_5fgain',['FSP_ERR_CTSU_DIAG_CFC_GAIN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afa6bc60b26c1b7b906b9854b4db5060d',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fclock_5frecovery',['FSP_ERR_CTSU_DIAG_CLOCK_RECOVERY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab33453ae13bd3c15751b3962f5188364',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fcurrent_5fsource',['FSP_ERR_CTSU_DIAG_CURRENT_SOURCE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acf83225e14023205bc71ddddf1ef7a43',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fdac',['FSP_ERR_CTSU_DIAG_DAC',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a61d141714727223ba19d6303429ad330',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fldo_5fover_5fvoltage',['FSP_ERR_CTSU_DIAG_LDO_OVER_VOLTAGE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aab6cc8f1186d7e953d0a25806106b01c',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fload_5fresistance',['FSP_ERR_CTSU_DIAG_LOAD_RESISTANCE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a17e6e9756acd02df02d6975161aa9998',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fnot_5fyet',['FSP_ERR_CTSU_DIAG_NOT_YET',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac3355a82b4fc612941c6d2b8f4f52f90',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5foutput_5fvoltage',['FSP_ERR_CTSU_DIAG_OUTPUT_VOLTAGE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5c0d0b6394458760c2cdc05cdb237136',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fover_5fcurrent',['FSP_ERR_CTSU_DIAG_OVER_CURRENT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad8f0d03dcdebc03a19c8e4112c30b46b',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fover_5fvoltage',['FSP_ERR_CTSU_DIAG_OVER_VOLTAGE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa895abb7c999f8a17f0b5c634abe6ae7',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fsensclk_5fgain',['FSP_ERR_CTSU_DIAG_SENSCLK_GAIN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a886c9fb19f0d44f37da9259c09098e94',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fsscg',['FSP_ERR_CTSU_DIAG_SSCG',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a55211caeb32fda85000d88eab4c4766d',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fsuclk_5fgain',['FSP_ERR_CTSU_DIAG_SUCLK_GAIN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab3731e454e03487e43cfcad91be7643f',1,'fsp_common_api.h']]], ['fsp_5ferr_5fctsu_5fincomplete_5ftuning',['FSP_ERR_CTSU_INCOMPLETE_TUNING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a19beacb3a5e19f362431d08a1fcaaa5d',1,'fsp_common_api.h']]], ['fsp_5ferr_5fctsu_5fnot_5fget_5fdata',['FSP_ERR_CTSU_NOT_GET_DATA',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7cfb255a9b41bb7d578b892b94ec362c',1,'fsp_common_api.h']]], ['fsp_5ferr_5fctsu_5fscanning',['FSP_ERR_CTSU_SCANNING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abf96e28ad6ffcefb3753b3236b7d8f74',1,'fsp_common_api.h']]], @@ -97,6 +115,7 @@ var searchData= ['fsp_5ferr_5fether_5ferror_5ftransmit_5fbuffer_5ffull',['FSP_ERR_ETHER_ERROR_TRANSMIT_BUFFER_FULL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7ff828228ccab4f53b2438ddd1c7e11a',1,'fsp_common_api.h']]], ['fsp_5ferr_5fether_5fphy_5ferror_5flink',['FSP_ERR_ETHER_PHY_ERROR_LINK',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a629a12ea100187a63ddb2f8ee9a5c823',1,'fsp_common_api.h']]], ['fsp_5ferr_5fether_5fphy_5fnot_5fready',['FSP_ERR_ETHER_PHY_NOT_READY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aad936f5a80f8c3fe3faa8d6220189098',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fether_5freceive_5fbuffer_5factive',['FSP_ERR_ETHER_RECEIVE_BUFFER_ACTIVE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a092517cd93432a76ae16c3cc3ff4bc29',1,'fsp_common_api.h']]], ['fsp_5ferr_5ffclk',['FSP_ERR_FCLK',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0f14549511d9e5e2bf488ef4abf284cf',1,'fsp_common_api.h']]], ['fsp_5ferr_5fframing',['FSP_ERR_FRAMING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8f76d058261cd655519cbc81f1586bc4',1,'fsp_common_api.h']]], ['fsp_5ferr_5fhardware_5ftimeout',['FSP_ERR_HARDWARE_TIMEOUT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab635959cb1f794d46c032e602353e5ac',1,'fsp_common_api.h']]], @@ -116,6 +135,7 @@ var searchData= ['fsp_5ferr_5finvalid_5fcall',['FSP_ERR_INVALID_CALL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e88aef301d6f509e663b741e2193e5d',1,'fsp_common_api.h']]], ['fsp_5ferr_5finvalid_5fchannel',['FSP_ERR_INVALID_CHANNEL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a08758cf67b1b1f99e0609f7d7d16942e',1,'fsp_common_api.h']]], ['fsp_5ferr_5finvalid_5fclut_5faccess',['FSP_ERR_INVALID_CLUT_ACCESS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9a88e15efe487b892de5976439b4cb1f',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fdata',['FSP_ERR_INVALID_DATA',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2b8bd9b82940ba39e5d6c8351a8e6528',1,'fsp_common_api.h']]], ['fsp_5ferr_5finvalid_5ffactory_5fflash',['FSP_ERR_INVALID_FACTORY_FLASH',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a06b56b3cf883cf010a7e5818246998b5',1,'fsp_common_api.h']]], ['fsp_5ferr_5finvalid_5ffade_5fsetting',['FSP_ERR_INVALID_FADE_SETTING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a504225c32f7ce922fe8bd6eb3b71cb5a',1,'fsp_common_api.h']]], ['fsp_5ferr_5finvalid_5fgamma_5fsetting',['FSP_ERR_INVALID_GAMMA_SETTING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa080f63e010614e89f77e98db762a4a5',1,'fsp_common_api.h']]], @@ -199,6 +219,7 @@ var searchData= ['fsp_5ferr_5funsupported',['FSP_ERR_UNSUPPORTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a384fc7e9a644424c3e7743f24ad5c40f',1,'fsp_common_api.h']]], ['fsp_5ferr_5fusb_5fmodule_5fenabled',['FSP_ERR_USB_MODULE_ENABLED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afe6413d0677423f2f3d0fd0026899323',1,'fsp_common_api.h']]], ['fsp_5ferr_5fwait_5faborted',['FSP_ERR_WAIT_ABORTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa5cbda3787ddf5092d0fdf14b8e4fe57',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fwifi_5fap_5fnot_5fconnected',['FSP_ERR_WIFI_AP_NOT_CONNECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aec3eea83b4e2e3c9ec447d4612d31e59',1,'fsp_common_api.h']]], ['fsp_5ferr_5fwifi_5fconfig_5ffailed',['FSP_ERR_WIFI_CONFIG_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad59d257fc10762fe60683c45a3f1b90a',1,'fsp_common_api.h']]], ['fsp_5ferr_5fwifi_5ffailed',['FSP_ERR_WIFI_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5711df02b0d0b9e2027bef9de27948a4',1,'fsp_common_api.h']]], ['fsp_5ferr_5fwifi_5finit_5ffailed',['FSP_ERR_WIFI_INIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae1e9fb09fdb6841cf4379097812e6156',1,'fsp_common_api.h']]], @@ -206,27 +227,39 @@ var searchData= ['fsp_5ferr_5fwifi_5fscan_5fcomplete',['FSP_ERR_WIFI_SCAN_COMPLETE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0dfea4f4a09d2cb04031624c5c3bd753',1,'fsp_common_api.h']]], ['fsp_5ferr_5fwifi_5ftransmit_5ffailed',['FSP_ERR_WIFI_TRANSMIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8adeb727c2591c971117d47d29edec70e6',1,'fsp_common_api.h']]], ['fsp_5ferr_5fwrite_5ffailed',['FSP_ERR_WRITE_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a23d4ede168571c3084157c0f99f6c60c',1,'fsp_common_api.h']]], - ['fsp_5ferror_5flog',['FSP_ERROR_LOG',['../group___b_s_p___m_c_u.html#ga960f46c44b67ba8ad5377cfc8e4e6a75',1,'bsp_common.h']]], - ['fsp_5ferror_5freturn',['FSP_ERROR_RETURN',['../group___b_s_p___m_c_u.html#ga577e9b015e1b0794934fa4f2b229e52f',1,'bsp_common.h']]], + ['fsp_5ferror_5flog',['FSP_ERROR_LOG',['../group___b_s_p___m_c_u.html#ga960f46c44b67ba8ad5377cfc8e4e6a75',1,'FSP_ERROR_LOG(): bsp_common.h'],['../group___b_s_p___m_c_u.html#ga960f46c44b67ba8ad5377cfc8e4e6a75',1,'FSP_ERROR_LOG(): bsp_common.h']]], + ['fsp_5ferror_5freturn',['FSP_ERROR_RETURN',['../group___b_s_p___m_c_u.html#ga577e9b015e1b0794934fa4f2b229e52f',1,'FSP_ERROR_RETURN(): bsp_common.h'],['../group___b_s_p___m_c_u.html#ga577e9b015e1b0794934fa4f2b229e52f',1,'FSP_ERROR_RETURN(): bsp_common.h']]], ['fsp_5fheader',['FSP_HEADER',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ga0e229cde7ac6e617ed7eac38d45c4dd7',1,'fsp_common_api.h']]], - ['fsp_5finvalid_5fvector',['FSP_INVALID_VECTOR',['../group___b_s_p___m_c_u.html#ga4e36b09bee515ff1b813e7ba0412e60d',1,'bsp_common.h']]], - ['fsp_5fip_5fcanfd',['FSP_IP_CANFD',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950aacbead3e070986a6c40c32d2485d5c4e',1,'fsp_features.h']]], - ['fsp_5fip_5fdmac',['FSP_IP_DMAC',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a494addfd4ceb1fabb0bea0893b444641',1,'fsp_features.h']]], - ['fsp_5fip_5fgpt',['FSP_IP_GPT',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a83fe18962b058df65adb9ce089719ebb',1,'fsp_features.h']]], - ['fsp_5fip_5fgtm',['FSP_IP_GTM',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950afe554013bd2f3cbbd8462cea8eeee4ca',1,'fsp_features.h']]], - ['fsp_5fip_5fim33',['FSP_IP_IM33',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a4704af5ed32cbd6532fd28a44d0d028e',1,'fsp_features.h']]], - ['fsp_5fip_5fmhu',['FSP_IP_MHU',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950abfff39a6b8ca24d18832ad7153cc0880',1,'fsp_features.h']]], - ['fsp_5fip_5fpoeg',['FSP_IP_POEG',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950acfc9bb8ff007a7b82cf4fd845dfce053',1,'fsp_features.h']]], - ['fsp_5fip_5fport',['FSP_IP_PORT',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a3403f62d1f8cc29a868e5da9a86a46f7',1,'fsp_features.h']]], - ['fsp_5fip_5friic',['FSP_IP_RIIC',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a17e007a04505fb7a7614067e3d5e7447',1,'fsp_features.h']]], - ['fsp_5fip_5frspi',['FSP_IP_RSPI',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950acbce1d6d73ea0d9a18c42b2389c69888',1,'fsp_features.h']]], - ['fsp_5fip_5fscif',['FSP_IP_SCIF',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a837b8847e248ed296512f20813008cd5',1,'fsp_features.h']]], - ['fsp_5fip_5fssi',['FSP_IP_SSI',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a372bbc7267801454ac9a1bf3677ef60c',1,'fsp_features.h']]], + ['fsp_5finvalid_5fvector',['FSP_INVALID_VECTOR',['../group___b_s_p___m_c_u.html#ga4e36b09bee515ff1b813e7ba0412e60d',1,'FSP_INVALID_VECTOR(): bsp_common.h'],['../group___b_s_p___m_c_u.html#ga4e36b09bee515ff1b813e7ba0412e60d',1,'FSP_INVALID_VECTOR(): bsp_common.h']]], + ['fsp_5fip_5fadc',['FSP_IP_ADC',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ac49bfca1e1ccf88f53586fc28bd54250',1,'bsp_override.h']]], + ['fsp_5fip_5fcanfd',['FSP_IP_CANFD',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950aacbead3e070986a6c40c32d2485d5c4e',1,'FSP_IP_CANFD(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950aacbead3e070986a6c40c32d2485d5c4e',1,'FSP_IP_CANFD(): bsp_override.h']]], + ['fsp_5fip_5fcmtw',['FSP_IP_CMTW',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a41268ed3e6b973a85d0dcabaf5d1abf2',1,'bsp_override.h']]], + ['fsp_5fip_5fcrc',['FSP_IP_CRC',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a66f3b5b31f294d50f964990b205cb92b',1,'bsp_override.h']]], + ['fsp_5fip_5fdmac',['FSP_IP_DMAC',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a494addfd4ceb1fabb0bea0893b444641',1,'FSP_IP_DMAC(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a494addfd4ceb1fabb0bea0893b444641',1,'FSP_IP_DMAC(): bsp_override.h']]], + ['fsp_5fip_5fdmac_5fs',['FSP_IP_DMAC_s',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950adf8c428fc9e6594881035cfc67a66373',1,'bsp_override.h']]], + ['fsp_5fip_5fgpt',['FSP_IP_GPT',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a83fe18962b058df65adb9ce089719ebb',1,'FSP_IP_GPT(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a83fe18962b058df65adb9ce089719ebb',1,'FSP_IP_GPT(): bsp_override.h']]], + ['fsp_5fip_5fgtm',['FSP_IP_GTM',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950afe554013bd2f3cbbd8462cea8eeee4ca',1,'FSP_IP_GTM(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950afe554013bd2f3cbbd8462cea8eeee4ca',1,'FSP_IP_GTM(): bsp_override.h']]], + ['fsp_5fip_5fi3c',['FSP_IP_I3C',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950aaff0832d2687261b54f54189c224db06',1,'bsp_override.h']]], + ['fsp_5fip_5fim33',['FSP_IP_IM33',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a4704af5ed32cbd6532fd28a44d0d028e',1,'FSP_IP_IM33(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a4704af5ed32cbd6532fd28a44d0d028e',1,'FSP_IP_IM33(): bsp_override.h']]], + ['fsp_5fip_5fmhu',['FSP_IP_MHU',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950abfff39a6b8ca24d18832ad7153cc0880',1,'FSP_IP_MHU(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950abfff39a6b8ca24d18832ad7153cc0880',1,'FSP_IP_MHU(): bsp_override.h']]], + ['fsp_5fip_5fmtu3',['FSP_IP_MTU3',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a7e7705b2505050da600c075db4723581',1,'fsp_features.h']]], + ['fsp_5fip_5fpoeg',['FSP_IP_POEG',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acfc9bb8ff007a7b82cf4fd845dfce053',1,'FSP_IP_POEG(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acfc9bb8ff007a7b82cf4fd845dfce053',1,'FSP_IP_POEG(): bsp_override.h']]], + ['fsp_5fip_5fport',['FSP_IP_PORT',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a3403f62d1f8cc29a868e5da9a86a46f7',1,'FSP_IP_PORT(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a3403f62d1f8cc29a868e5da9a86a46f7',1,'FSP_IP_PORT(): bsp_override.h']]], + ['fsp_5fip_5friic',['FSP_IP_RIIC',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a17e007a04505fb7a7614067e3d5e7447',1,'FSP_IP_RIIC(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a17e007a04505fb7a7614067e3d5e7447',1,'FSP_IP_RIIC(): bsp_override.h']]], + ['fsp_5fip_5frspi',['FSP_IP_RSPI',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acbce1d6d73ea0d9a18c42b2389c69888',1,'FSP_IP_RSPI(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acbce1d6d73ea0d9a18c42b2389c69888',1,'FSP_IP_RSPI(): bsp_override.h']]], + ['fsp_5fip_5frtc',['FSP_IP_RTC',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ae2e4b37d45024125cbb660f1b3a3090e',1,'bsp_override.h']]], + ['fsp_5fip_5fsci',['FSP_IP_SCI',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ad8802ee74d9cafca9a1c4d5faea8e253',1,'FSP_IP_SCI(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ad8802ee74d9cafca9a1c4d5faea8e253',1,'FSP_IP_SCI(): bsp_override.h']]], + ['fsp_5fip_5fscif',['FSP_IP_SCIF',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a837b8847e248ed296512f20813008cd5',1,'FSP_IP_SCIF(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a837b8847e248ed296512f20813008cd5',1,'FSP_IP_SCIF(): bsp_override.h']]], + ['fsp_5fip_5fssi',['FSP_IP_SSI',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a372bbc7267801454ac9a1bf3677ef60c',1,'FSP_IP_SSI(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a372bbc7267801454ac9a1bf3677ef60c',1,'FSP_IP_SSI(): bsp_override.h']]], + ['fsp_5fip_5fsyc',['FSP_IP_SYC',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a308404027f3f10d27b8cb240dec71244',1,'bsp_override.h']]], ['fsp_5fip_5ft',['fsp_ip_t',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950',1,'fsp_features.h']]], + ['fsp_5fip_5ftsu',['FSP_IP_TSU',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a55e1c8e5259f5bc822c320abb058142b',1,'bsp_override.h']]], + ['fsp_5fip_5fwdt',['FSP_IP_WDT',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a9b738d0f557574bb4d659abc2dc0fbf8',1,'bsp_override.h']]], + ['fsp_5fip_5fxspi',['FSP_IP_XSPI',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a8e412d35ce1643636ba6bc355914c5e0',1,'bsp_override.h']]], ['fsp_5fpack_5fversion_5ft',['fsp_pack_version_t',['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#unionfsp__pack__version__t',1,'']]], ['fsp_5fpack_5fversion_5ft_2e_5f_5funnamed_5f_5f',['fsp_pack_version_t.__unnamed__',['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#structfsp__pack__version__t_8____unnamed____',1,'']]], ['fsp_5fparameter_5fnot_5fused',['FSP_PARAMETER_NOT_USED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#gaf0afcbc9a110ac9366a811d96ee06029',1,'fsp_common_api.h']]], - ['fsp_5freturn',['FSP_RETURN',['../group___b_s_p___m_c_u.html#ga8c791e904efc648fb8b69b56d7dd37ba',1,'bsp_common.h']]], + ['fsp_5freturn',['FSP_RETURN',['../group___b_s_p___m_c_u.html#ga8c791e904efc648fb8b69b56d7dd37ba',1,'FSP_RETURN(): bsp_common.h'],['../group___b_s_p___m_c_u.html#ga8c791e904efc648fb8b69b56d7dd37ba',1,'FSP_RETURN(): bsp_common.h']]], ['fsp_5fsecure_5fargument',['FSP_SECURE_ARGUMENT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ga5560627aa81e2dc7e758b3a9853ca230',1,'fsp_common_api.h']]], ['fsp_5fversion_5fbuild',['FSP_VERSION_BUILD',['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#ga6e7b87c8da88649d8760d1d6336da667',1,'fsp_version.h']]], ['fsp_5fversion_5fbuild_5fstring',['FSP_VERSION_BUILD_STRING',['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#gae557c5332b1c3c628d6cd2bd71b252d8',1,'fsp_version.h']]], diff --git a/search/all_7.js b/search/all_7.js index d1ea62c..0b0ff7e 100644 --- a/search/all_7.js +++ b/search/all_7.js @@ -1,10 +1,11 @@ var searchData= [ - ['g_5fbsp_5fversion',['g_bsp_version',['../group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8',1,'g_bsp_version(): bsp_common.c'],['../group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8',1,'g_bsp_version(): bsp_common.c']]], - ['gainset',['gainSet',['../group___r_m___o_b1203___a_p_i.html#a82fdd4f8e1ef45d2f06a355d60979968',1,'rm_ob1203_api_t']]], + ['g_5fbsp_5fversion',['g_bsp_version',['../group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8',1,'g_bsp_version(): bsp_common.c'],['../group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8',1,'g_bsp_version(): bsp_common.c'],['../group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8',1,'g_bsp_version(): bsp_common.c']]], + ['general_5fcall_5fenable',['general_call_enable',['../group___i2_c___s_l_a_v_e___a_p_i.html#a7b1c0bee47fa93f32b4466b72c30f68c',1,'i2c_slave_cfg_t']]], ['global_5fconfig',['global_config',['../group___c_a_n_f_d.html#afd7545e297144152431f5b1f3628fff7',1,'canfd_global_cfg_t']]], ['global_5ferr_5fipl',['global_err_ipl',['../group___c_a_n_f_d.html#a6ce35aac50e44ac4353bfd20e12639a4',1,'canfd_global_cfg_t']]], ['global_5finterrupts',['global_interrupts',['../group___c_a_n_f_d.html#ac6305ab75909afd62029f3c76b235549',1,'canfd_global_cfg_t']]], + ['gpioint',['gpioint',['../group___i_n_t_c___t_i_n_t.html#a8066afa114318265d9fe96031434bbd3',1,'intc_tint_extended_cfg_t']]], ['general_20pwm_20timer_20_28r_5fgpt_29',['General PWM Timer (r_gpt)',['../group___g_p_t.html',1,'']]], ['gpt_5fadc_5fcompare_5fmatch_5fadc_5fa',['GPT_ADC_COMPARE_MATCH_ADC_A',['../group___g_p_t.html#gga2a838fffcbafd97778bbe3ffbfbf54b1a6f5dba4e42352f1bea9dccd3201021cc',1,'r_gpt.h']]], ['gpt_5fadc_5fcompare_5fmatch_5fadc_5fb',['GPT_ADC_COMPARE_MATCH_ADC_B',['../group___g_p_t.html#gga2a838fffcbafd97778bbe3ffbfbf54b1abc17524a1e6137946784a36c5d31f27b',1,'r_gpt.h']]], @@ -15,14 +16,15 @@ var searchData= ['gpt_5fadc_5ftrigger_5ft',['gpt_adc_trigger_t',['../group___g_p_t.html#ga6dfe4ddfb53ba52c674039fd20b6c2b6',1,'r_gpt.h']]], ['gpt_5fadc_5ftrigger_5fup_5fcount_5fstart_5fadc_5fa',['GPT_ADC_TRIGGER_UP_COUNT_START_ADC_A',['../group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a2bd0475913403dab220b5e7d6c1acf72',1,'r_gpt.h']]], ['gpt_5fadc_5ftrigger_5fup_5fcount_5fstart_5fadc_5fb',['GPT_ADC_TRIGGER_UP_COUNT_START_ADC_B',['../group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a850b0227fd4a50c51c146d44efe7c838',1,'r_gpt.h']]], + ['gpt_5fbuffer_5fforce_5fpush',['gpt_buffer_force_push',['../group___g_p_t.html#ga8abd050b841fe99c9b641a22c69501c5',1,'gpt_buffer_force_push(): r_gpt.h'],['../group___g_p_t.html#gga8abd050b841fe99c9b641a22c69501c5a23c94706bd1a34c9f1b9cfffea30f4cc',1,'GPT_BUFFER_FORCE_PUSH(): r_gpt.h']]], ['gpt_5fbuffer_5fmode_5fdouble',['GPT_BUFFER_MODE_DOUBLE',['../group___g_p_t.html#gga28d354e417a7a6666e0819387d8e7d8aaa04f95e24c83e681190e0553b33ef108',1,'r_gpt.h']]], ['gpt_5fbuffer_5fmode_5fsingle',['GPT_BUFFER_MODE_SINGLE',['../group___g_p_t.html#gga28d354e417a7a6666e0819387d8e7d8aa55d1a551ce5c866c2917374f34c9dad1',1,'r_gpt.h']]], ['gpt_5fbuffer_5fmode_5ft',['gpt_buffer_mode_t',['../group___g_p_t.html#ga28d354e417a7a6666e0819387d8e7d8a',1,'r_gpt.h']]], + ['gpt_5fcapture_5ffilter_5fclock_5fsource_5fdiv_5f1',['GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_1',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a01e1b277b55e4fafcb0c196099b51b5f',1,'r_gpt.h']]], + ['gpt_5fcapture_5ffilter_5fclock_5fsource_5fdiv_5f16',['GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_16',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a1be3c4269df18da7b54a4b884d792c59',1,'r_gpt.h']]], + ['gpt_5fcapture_5ffilter_5fclock_5fsource_5fdiv_5f4',['GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_4',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5aced01a5e1d1ad4aa3f9235dcc503d655',1,'r_gpt.h']]], + ['gpt_5fcapture_5ffilter_5fclock_5fsource_5fdiv_5f64',['GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_64',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a70176680620465fca73aeda240eb441a',1,'r_gpt.h']]], ['gpt_5fcapture_5ffilter_5fnone',['GPT_CAPTURE_FILTER_NONE',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a9b2d993dbb736347b473101f14c1fde6',1,'r_gpt.h']]], - ['gpt_5fcapture_5ffilter_5fp0clk_5fdiv_5f1',['GPT_CAPTURE_FILTER_P0CLK_DIV_1',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5afbdc1a92e9b7d18e91ad7440144b022b',1,'r_gpt.h']]], - ['gpt_5fcapture_5ffilter_5fp0clk_5fdiv_5f16',['GPT_CAPTURE_FILTER_P0CLK_DIV_16',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a89dfc5c48b1c33a2aec0382baa92d808',1,'r_gpt.h']]], - ['gpt_5fcapture_5ffilter_5fp0clk_5fdiv_5f4',['GPT_CAPTURE_FILTER_P0CLK_DIV_4',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5aa30751bb9a5224fae95f55fd664c26e9',1,'r_gpt.h']]], - ['gpt_5fcapture_5ffilter_5fp0clk_5fdiv_5f64',['GPT_CAPTURE_FILTER_P0CLK_DIV_64',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5ac7c1be27c3e25a2486b1368df7092e1d',1,'r_gpt.h']]], ['gpt_5fcapture_5ffilter_5ft',['gpt_capture_filter_t',['../group___g_p_t.html#ga4781e2b42b2ef339318ea0a70b250cd5',1,'r_gpt.h']]], ['gpt_5fextended_5fcfg_5ft',['gpt_extended_cfg_t',['../group___g_p_t.html#structgpt__extended__cfg__t',1,'']]], ['gpt_5fextended_5fpwm_5fcfg_5ft',['gpt_extended_pwm_cfg_t',['../group___g_p_t.html#structgpt__extended__pwm__cfg__t',1,'']]], @@ -31,6 +33,7 @@ var searchData= ['gpt_5fgtioc_5fdisable_5fprohibited',['GPT_GTIOC_DISABLE_PROHIBITED',['../group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506ba1756f7251a83337222f68cc80bc33dfb',1,'r_gpt.h']]], ['gpt_5fgtioc_5fdisable_5fset_5fhi_5fz',['GPT_GTIOC_DISABLE_SET_HI_Z',['../group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506bab3661e69b77c3086864f7872d264be75',1,'r_gpt.h']]], ['gpt_5fgtioc_5fdisable_5ft',['gpt_gtioc_disable_t',['../group___g_p_t.html#ga82d61d33edf38d50f1247d1d55ec506b',1,'r_gpt.h']]], + ['gpt_5fgtior_5fsetting_5ft',['gpt_gtior_setting_t',['../group___g_p_t.html#structgpt__gtior__setting__t',1,'']]], ['gpt_5finstance_5fctrl_5ft',['gpt_instance_ctrl_t',['../group___g_p_t.html#structgpt__instance__ctrl__t',1,'']]], ['gpt_5finterrupt_5fskip_5fadc_5fa',['GPT_INTERRUPT_SKIP_ADC_A',['../group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa43c4146c6bbaa9877dc6f1a34b6ccacf',1,'r_gpt.h']]], ['gpt_5finterrupt_5fskip_5fadc_5fa_5fand_5fb',['GPT_INTERRUPT_SKIP_ADC_A_AND_B',['../group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa872ee214e5d3998245ac518730f9dde6',1,'r_gpt.h']]], @@ -51,10 +54,14 @@ var searchData= ['gpt_5finterrupt_5fskip_5fsource_5foverflow_5funderflow',['GPT_INTERRUPT_SKIP_SOURCE_OVERFLOW_UNDERFLOW',['../group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a8525d45b1517b92b3b6d6f5b5a301083',1,'r_gpt.h']]], ['gpt_5finterrupt_5fskip_5fsource_5ft',['gpt_interrupt_skip_source_t',['../group___g_p_t.html#ga88d6114404f61d9ca10684f393deb613',1,'r_gpt.h']]], ['gpt_5finterrupt_5fskip_5fsource_5ftrough',['GPT_INTERRUPT_SKIP_SOURCE_TROUGH',['../group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a75e3083840b7df9aa2883cded3cd2704',1,'r_gpt.h']]], + ['gpt_5fio_5fpin_5fcrest',['GPT_IO_PIN_CREST',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60acb3ba96929217eb6bb1ec5b2f1ccf9d4',1,'r_gpt.h']]], ['gpt_5fio_5fpin_5fgtioca',['GPT_IO_PIN_GTIOCA',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60aec2d2c471241869efb57a9a48a5d0eda',1,'r_gpt.h']]], ['gpt_5fio_5fpin_5fgtioca_5fand_5fgtiocb',['GPT_IO_PIN_GTIOCA_AND_GTIOCB',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60a2b44d1e05050c34cc6e8d9ee4093294d',1,'r_gpt.h']]], ['gpt_5fio_5fpin_5fgtiocb',['GPT_IO_PIN_GTIOCB',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60aebd74a7b9507fb082ec4cce60ebe9369',1,'r_gpt.h']]], + ['gpt_5fio_5fpin_5fone_5fshot_5fleading_5fedge',['GPT_IO_PIN_ONE_SHOT_LEADING_EDGE',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60ae3e479af00c84f4ccf6e7376b4b44c8d',1,'r_gpt.h']]], + ['gpt_5fio_5fpin_5fone_5fshot_5ftrailing_5fedge',['GPT_IO_PIN_ONE_SHOT_TRAILING_EDGE',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60a59f7576cde98e497d35b98a926732e52',1,'r_gpt.h']]], ['gpt_5fio_5fpin_5ft',['gpt_io_pin_t',['../group___g_p_t.html#gaabd4a03d16b1b4254cc44c7779f44c60',1,'r_gpt.h']]], + ['gpt_5fio_5fpin_5ftrough',['GPT_IO_PIN_TROUGH',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60ac68b7e1ef5c48c55960faacd7eb538b9',1,'r_gpt.h']]], ['gpt_5foutput_5fdisable_5fdead_5ftime_5ferror',['GPT_OUTPUT_DISABLE_DEAD_TIME_ERROR',['../group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea36ab56234fbe2b5bb676c0962382bd96',1,'r_gpt.h']]], ['gpt_5foutput_5fdisable_5fgtioca_5fgtiocb_5fhigh',['GPT_OUTPUT_DISABLE_GTIOCA_GTIOCB_HIGH',['../group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea236f4400f00369f754b3b88c8efc35a7',1,'r_gpt.h']]], ['gpt_5foutput_5fdisable_5fgtioca_5fgtiocb_5flow',['GPT_OUTPUT_DISABLE_GTIOCA_GTIOCB_LOW',['../group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea3004c3e75921fa586fdf0538b7ef5abe',1,'r_gpt.h']]], @@ -69,29 +76,91 @@ var searchData= ['gpt_5fpoeg_5flink_5fpoeg2',['GPT_POEG_LINK_POEG2',['../group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943a41eefcd7c70c85413a47d006127e112e',1,'r_gpt.h']]], ['gpt_5fpoeg_5flink_5fpoeg3',['GPT_POEG_LINK_POEG3',['../group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943a7d98bec67e920f1f0f8a98ac18aaa7b5',1,'r_gpt.h']]], ['gpt_5fpoeg_5flink_5ft',['gpt_poeg_link_t',['../group___g_p_t.html#gac13c16f82e0b7cafcdb8eb6892722943',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrga_5ffalling',['GPT_SOURCE_GTETRGA_FALLING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aab4c7fdaf7cfdd2d3730525965e68c982',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrga_5frising',['GPT_SOURCE_GTETRGA_RISING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa2ea3ebb2e30c10d0c5c087e198175220',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrgb_5ffalling',['GPT_SOURCE_GTETRGB_FALLING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aad01f879dc9132b0e05827cc7f4219a81',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrgb_5frising',['GPT_SOURCE_GTETRGB_RISING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa7af2b58b26be8c9b04ec5c31fdd66bab',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrgc_5ffalling',['GPT_SOURCE_GTETRGC_FALLING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaceecdd0276a5d1591246c1a2a294ddd3',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrgc_5frising',['GPT_SOURCE_GTETRGC_RISING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa5daee2c8037bdc04a019192efdd8af09',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrgd_5ffalling',['GPT_SOURCE_GTETRGD_FALLING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aad6f7ad7ca2dce583089104f23e27ed2c',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrgd_5frising',['GPT_SOURCE_GTETRGD_RISING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaaa3e97349fb24f8ba0a431392a92f95e',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtioca_5ffalling_5fwhile_5fgtiocb_5fhigh',['GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aab844b52adc17cebabf04603fa993f176',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtioca_5ffalling_5fwhile_5fgtiocb_5flow',['GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa58b8714367e4bb5ec9eb6902c98fdb2e',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtioca_5frising_5fwhile_5fgtiocb_5fhigh',['GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaa03328ca033b8043537b813ecabe1c50',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtioca_5frising_5fwhile_5fgtiocb_5flow',['GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa1435f9ba57da19cfc255ea6f64ea7853',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtiocb_5ffalling_5fwhile_5fgtioca_5fhigh',['GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa037a151c14fea20ef0530f5a995f99e5',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtiocb_5ffalling_5fwhile_5fgtioca_5flow',['GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa3c659f3a22223a65ffdc96524249eec7',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtiocb_5frising_5fwhile_5fgtioca_5fhigh',['GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaf6245811e4016299ba0acf0575389ba6',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtiocb_5frising_5fwhile_5fgtioca_5flow',['GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa4b546eda998208d87d6da5d0ad2f927a',1,'r_gpt.h']]], - ['gpt_5fsource_5fnone',['GPT_SOURCE_NONE',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aae376db52803d52361481b2384c3a3bd8',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fedge_5ffalling',['GPT_PWM_OUTPUT_DELAY_EDGE_FALLING',['../group___g_p_t.html#gga6a1389fe5c3bef2301d294b88263628eab5c109cf3de710e61c90c3be2d72d9b7',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fedge_5frising',['GPT_PWM_OUTPUT_DELAY_EDGE_RISING',['../group___g_p_t.html#gga6a1389fe5c3bef2301d294b88263628ea51901797e055f1ec3e4dbe96bff03086',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fedge_5ft',['gpt_pwm_output_delay_edge_t',['../group___g_p_t.html#ga6a1389fe5c3bef2301d294b88263628e',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f0_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_0_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ae167098278c50165bf61eec5987d4c53',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f10_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_10_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a196975439836e309f6244a8c0446f047',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f11_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_11_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a0198b5305a0a6853fc433ecf75d44f7f',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f12_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_12_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a1948c35883b0b199c8e6f89a64e53475',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f13_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_13_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a44d17777c6bee08909a70b95f86dc991',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f14_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_14_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a061a1822b878e73e25a3f5cc90ea0eea',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f15_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_15_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a8d827fe46b88273f1a3ecaafe74a6d72',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f16_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_16_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ac0195c74dd5aa183fe0ff13f3d037a47',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f17_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_17_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374abc73975b9e30401bbdbb7c5da506025b',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f18_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_18_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a95c8ef43442706c12c2ff0d94e1fb4da',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f19_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_19_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ac1341d99df3034c6cebc7d6885fc46b8',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f1_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_1_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a61477e753d166ccb25b77eced2e6f325',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f20_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_20_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ad781616613593d77ed681403590659e4',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f21_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_21_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a84dede23a60f4e4b02604d18a7e3c80a',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f22_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_22_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374aa29b8aeb45e93b8086d68f3ce7d60681',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f23_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_23_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374afa386802f529b7a1e6440335f29c0803',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f24_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_24_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a15baac27b4f36979352681a5b5969517',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f25_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_25_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ab000f412ff95dd16ff74748a96a305f8',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f26_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_26_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a03edb9eb3fdef9a37dbc4f44a077db5a',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f27_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_27_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a046f632a922738bb125dd671e28fc7d8',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f28_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_28_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ac9942874a382d4e1f171bcd74db0ac62',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f29_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_29_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a9a0fa3e6bcc2de24f85ef0b9a1b4d914',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f2_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_2_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a39fed861a0d36f04aa30f3f960e3d2d0',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f30_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_30_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a1aeb241069f6fc33d5b9043bf2870596',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f31_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_31_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a8d0ff19f209e9c72f76c20b23a00c7a2',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f3_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_3_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a1f1aee9567a12196581000383e8d107b',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f4_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_4_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a8b235f3b68210961a821c11efa5bb205',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f5_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_5_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374af0aae115f89d76e4f3f48a0d36cf361b',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f6_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_6_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a5e6950d7178ff3af05f8f4932436b488',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f7_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_7_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a6984fb835233689f0aaebc39c5f9c000',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f8_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_8_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374acdb2fab565c1d8a20bdfb3822f326e81',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f9_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_9_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a0287632773cfa466bfa3016d67f14da5',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5fbypass',['GPT_PWM_OUTPUT_DELAY_SETTING_BYPASS',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374af894b19d25eebc010ed5fc6ccea2cb29',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5ft',['gpt_pwm_output_delay_setting_t',['../group___g_p_t.html#ga749be81f99469c5607a684976d9ae374',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt0_5fact0',['GPT_SOURCE_GPT0_ACT0',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad0244ee6154cc4f48355fba3b0ccdd77',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact1',['GPT_SOURCE_GPT0_ACT1',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa9da09ff5cad371696a109a74ee0dc1ce',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact2',['GPT_SOURCE_GPT0_ACT2',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad0fa16e65ad15a166b4fa319fbeb80ad',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact3',['GPT_SOURCE_GPT0_ACT3',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa39e2ab9ce863edbf4bf639ec46db913b',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact4',['GPT_SOURCE_GPT0_ACT4',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa9ffb65a99521fcebfb3db2d31d44502d',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact5',['GPT_SOURCE_GPT0_ACT5',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aac7fdbcdd823ba55b00c647d518693382',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact6',['GPT_SOURCE_GPT0_ACT6',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa245bff8d720e94d00c4e61a5e3a172a7',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact7',['GPT_SOURCE_GPT0_ACT7',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aafd603c07d1f03e02659c92e6e8991341',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact0',['GPT_SOURCE_GPT1_ACT0',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa760dcf7503c7ca6b790b398622372599',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact1',['GPT_SOURCE_GPT1_ACT1',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa087fd01a23f8a61c4c04c9655d1fdbbe',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact2',['GPT_SOURCE_GPT1_ACT2',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa68f70eae7db74c62888d368d01dce62',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact3',['GPT_SOURCE_GPT1_ACT3',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa159f75f7237097f61a1b1fcc93a5db0b',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact4',['GPT_SOURCE_GPT1_ACT4',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa8acc300684e40644a6fc935903221a7b',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact5',['GPT_SOURCE_GPT1_ACT5',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aadbf5c5ffebe54747c212d082bdb888f0',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact6',['GPT_SOURCE_GPT1_ACT6',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa38a04d6c6afff6e35d872de818c6592d',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact7',['GPT_SOURCE_GPT1_ACT7',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7bc36dd829d3ab2b0748a9f7626388a8',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt_5fa',['GPT_SOURCE_GPT_A',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa8a81917a5ac9b747df42b174e5ae1ee6',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5fb',['GPT_SOURCE_GPT_B',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7b3ab8f76f2a808dbace3ede3e3faf06',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5fc',['GPT_SOURCE_GPT_C',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaeb63eaa38e2640b48259ddf029c27f54',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5fd',['GPT_SOURCE_GPT_D',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa23869f7d7ae4b5d82dac3d2301959b9',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5fe',['GPT_SOURCE_GPT_E',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaff70b0b5e755028cd77f859abb16fe06',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5ff',['GPT_SOURCE_GPT_F',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa010a99aa6c4e838ac1bce47abcbe38e5',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5fg',['GPT_SOURCE_GPT_G',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa51db9e1734d93f834b00868a9246db95',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5fh',['GPT_SOURCE_GPT_H',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa19df9d1f4ee5e610a74642fc14a212a3',1,'r_gpt.h']]], + ['gpt_5fsource_5fgtetrga_5ffalling',['GPT_SOURCE_GTETRGA_FALLING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab4c7fdaf7cfdd2d3730525965e68c982',1,'GPT_SOURCE_GTETRGA_FALLING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab4c7fdaf7cfdd2d3730525965e68c982',1,'GPT_SOURCE_GTETRGA_FALLING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrga_5frising',['GPT_SOURCE_GTETRGA_RISING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa2ea3ebb2e30c10d0c5c087e198175220',1,'GPT_SOURCE_GTETRGA_RISING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa2ea3ebb2e30c10d0c5c087e198175220',1,'GPT_SOURCE_GTETRGA_RISING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrgb_5ffalling',['GPT_SOURCE_GTETRGB_FALLING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad01f879dc9132b0e05827cc7f4219a81',1,'GPT_SOURCE_GTETRGB_FALLING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad01f879dc9132b0e05827cc7f4219a81',1,'GPT_SOURCE_GTETRGB_FALLING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrgb_5frising',['GPT_SOURCE_GTETRGB_RISING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7af2b58b26be8c9b04ec5c31fdd66bab',1,'GPT_SOURCE_GTETRGB_RISING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7af2b58b26be8c9b04ec5c31fdd66bab',1,'GPT_SOURCE_GTETRGB_RISING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrgc_5ffalling',['GPT_SOURCE_GTETRGC_FALLING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaceecdd0276a5d1591246c1a2a294ddd3',1,'GPT_SOURCE_GTETRGC_FALLING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaceecdd0276a5d1591246c1a2a294ddd3',1,'GPT_SOURCE_GTETRGC_FALLING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrgc_5frising',['GPT_SOURCE_GTETRGC_RISING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa5daee2c8037bdc04a019192efdd8af09',1,'GPT_SOURCE_GTETRGC_RISING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa5daee2c8037bdc04a019192efdd8af09',1,'GPT_SOURCE_GTETRGC_RISING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrgd_5ffalling',['GPT_SOURCE_GTETRGD_FALLING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad6f7ad7ca2dce583089104f23e27ed2c',1,'GPT_SOURCE_GTETRGD_FALLING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad6f7ad7ca2dce583089104f23e27ed2c',1,'GPT_SOURCE_GTETRGD_FALLING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrgd_5frising',['GPT_SOURCE_GTETRGD_RISING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaaa3e97349fb24f8ba0a431392a92f95e',1,'GPT_SOURCE_GTETRGD_RISING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaaa3e97349fb24f8ba0a431392a92f95e',1,'GPT_SOURCE_GTETRGD_RISING(): bsp_override.h']]], + ['gpt_5fsource_5fgtioca_5ffalling_5fwhile_5fgtiocb_5fhigh',['GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab844b52adc17cebabf04603fa993f176',1,'GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab844b52adc17cebabf04603fa993f176',1,'GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH(): bsp_override.h']]], + ['gpt_5fsource_5fgtioca_5ffalling_5fwhile_5fgtiocb_5flow',['GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa58b8714367e4bb5ec9eb6902c98fdb2e',1,'GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa58b8714367e4bb5ec9eb6902c98fdb2e',1,'GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW(): bsp_override.h']]], + ['gpt_5fsource_5fgtioca_5frising_5fwhile_5fgtiocb_5fhigh',['GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa03328ca033b8043537b813ecabe1c50',1,'GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa03328ca033b8043537b813ecabe1c50',1,'GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH(): bsp_override.h']]], + ['gpt_5fsource_5fgtioca_5frising_5fwhile_5fgtiocb_5flow',['GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa1435f9ba57da19cfc255ea6f64ea7853',1,'GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa1435f9ba57da19cfc255ea6f64ea7853',1,'GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW(): bsp_override.h']]], + ['gpt_5fsource_5fgtiocb_5ffalling_5fwhile_5fgtioca_5fhigh',['GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa037a151c14fea20ef0530f5a995f99e5',1,'GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa037a151c14fea20ef0530f5a995f99e5',1,'GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH(): bsp_override.h']]], + ['gpt_5fsource_5fgtiocb_5ffalling_5fwhile_5fgtioca_5flow',['GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa3c659f3a22223a65ffdc96524249eec7',1,'GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa3c659f3a22223a65ffdc96524249eec7',1,'GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW(): bsp_override.h']]], + ['gpt_5fsource_5fgtiocb_5frising_5fwhile_5fgtioca_5fhigh',['GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaf6245811e4016299ba0acf0575389ba6',1,'GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaf6245811e4016299ba0acf0575389ba6',1,'GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH(): bsp_override.h']]], + ['gpt_5fsource_5fgtiocb_5frising_5fwhile_5fgtioca_5flow',['GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa4b546eda998208d87d6da5d0ad2f927a',1,'GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa4b546eda998208d87d6da5d0ad2f927a',1,'GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW(): bsp_override.h']]], + ['gpt_5fsource_5fnone',['GPT_SOURCE_NONE',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aae376db52803d52361481b2384c3a3bd8',1,'GPT_SOURCE_NONE(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aae376db52803d52361481b2384c3a3bd8',1,'GPT_SOURCE_NONE(): bsp_override.h']]], ['gpt_5fsource_5ft',['gpt_source_t',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196a',1,'r_gpt.h']]], - ['green_5fdata',['green_data',['../group___r_m___o_b1203___a_p_i.html#ab5f700a5790ea992d82af3a1c7216d66',1,'rm_ob1203_light_data_t']]], + ['group_5fmask',['group_mask',['../group___a_d_c___a_p_i.html#a2e4f7b7ce1a5858b39f7a85ad16ab655',1,'adc_callback_args_t']]], ['gtioca',['gtioca',['../group___g_p_t.html#ad323c6db6a695028d2926dfbf0a0dda8',1,'gpt_extended_cfg_t']]], ['gtioca_5fdisable_5fsetting',['gtioca_disable_setting',['../group___g_p_t.html#af8c63e238ee298b4f1dac545a597eff7',1,'gpt_extended_pwm_cfg_t']]], ['gtiocb',['gtiocb',['../group___g_p_t.html#a78476af74debd54ee8394dd0aa6d2505',1,'gpt_extended_cfg_t']]], ['gtiocb_5fdisable_5fsetting',['gtiocb_disable_setting',['../group___g_p_t.html#aa34079abac90aaced078650c626c9820',1,'gpt_extended_pwm_cfg_t']]], + ['gtior_5fsetting',['gtior_setting',['../group___g_p_t.html#ad8b8b467339a151f016017d175df2f9c',1,'gpt_extended_cfg_t']]], ['general_20timer_20_28r_5fgtm_29',['General Timer (r_gtm)',['../group___g_t_m.html',1,'']]], ['gtm_5fextended_5fcfg_5ft',['gtm_extended_cfg_t',['../group___g_t_m.html#structgtm__extended__cfg__t',1,'']]], ['gtm_5fgiws_5ftype_5fdisabled',['GTM_GIWS_TYPE_DISABLED',['../group___g_t_m.html#ggaae830979c17ceebe80264f0727e8a6b6a352d18878ec62f684b774ce2033e86ea',1,'r_gtm.h']]], diff --git a/search/all_8.js b/search/all_8.js index a8a0e72..fbe0dc2 100644 --- a/search/all_8.js +++ b/search/all_8.js @@ -1,5 +1,13 @@ var searchData= [ + ['half_5fdata_5fsetting',['half_data_setting',['../group___s_c_i___b___u_a_r_t.html#a02639fcb8ec9d81d9930ce6e65caef8e',1,'sci_b_uart_extended_cfg_t']]], + ['high_5fpass_5ffilter_5fshift',['high_pass_filter_shift',['../group___p_d_m.html#aaa73de553356b3e3fd5e8f7ecfb7ecc5',1,'pdm_extended_cfg_t']]], + ['hot_5fjoin_5facknowledge',['hot_join_acknowledge',['../group___i3_c___b.html#a493e09410ad1e54a74ef9ecd93dbfd4e',1,'i3c_b_ibi_control_t']]], + ['hotjoin_5frequest_5fenable',['hotjoin_request_enable',['../group___i3_c___b.html#ae1391ee53f0f040895bc1a2982db5adf',1,'i3c_b_slave_command_response_info_t']]], + ['hour_5fmatch',['hour_match',['../group___r_t_c___a_p_i.html#a99fb3242d7bb1eb482cb436a49c1b18d',1,'rtc_alarm_time_t']]], + ['hpf_5fcoefficient_5fh',['hpf_coefficient_h',['../group___p_d_m.html#a0487cbe0537406381bd2395e806e08ac',1,'pdm_extended_cfg_t']]], + ['hpf_5fcoefficient_5fk1',['hpf_coefficient_k1',['../group___p_d_m.html#ab3d0506ad03a69effde1841833806543',1,'pdm_extended_cfg_t']]], + ['hpf_5fcoefficient_5fs0',['hpf_coefficient_s0',['../group___p_d_m.html#a8ade0b0f232d6b93df9322c969d35588',1,'pdm_extended_cfg_t']]], ['humidity',['humidity',['../group___r_m___h_s300_x___a_p_i.html#ad8d48666aaa654a2cf4b1067abb9fa63',1,'rm_hs300x_raw_data_t::humidity()'],['../group___r_m___h_s400_x___a_p_i.html#aa1d22106aaa7182a9cea0652eff5bf69',1,'rm_hs400x_raw_data_t::humidity()']]], ['humidity_5fresolution',['humidity_resolution',['../group___r_m___h_s400_x___a_p_i.html#ad726639457424c9f13522ab301833898',1,'rm_hs400x_cfg_t']]], ['hs300x_20temperature_2fhumidity_20sensor_20_28rm_5fhs300x_29',['HS300X Temperature/Humidity Sensor (rm_hs300x)',['../group___r_m___h_s300_x.html',1,'']]], diff --git a/search/all_9.js b/search/all_9.js index 051e82d..af7dfcd 100644 --- a/search/all_9.js +++ b/search/all_9.js @@ -19,278 +19,320 @@ var searchData= ['i2c_5fmaster_5frate_5fstandard',['I2C_MASTER_RATE_STANDARD',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ggaa30dd03665bdc1134233e8e2b1631f0aa929a32b2615c7c54efa382f06e901cc0',1,'r_i2c_master_api.h']]], ['i2c_5fmaster_5frate_5ft',['i2c_master_rate_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#gaa30dd03665bdc1134233e8e2b1631f0a',1,'r_i2c_master_api.h']]], ['i2c_5fmaster_5fstatus_5ft',['i2c_master_status_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__status__t',1,'']]], + ['i2c_5fslave_5faddr_5fmode_5f10bit',['I2C_SLAVE_ADDR_MODE_10BIT',['../group___i2_c___s_l_a_v_e___a_p_i.html#gga8e76d805f1f518bf83a84f9df65beb1bafbc283c8ddb82d4704460fc1f9509552',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5faddr_5fmode_5f7bit',['I2C_SLAVE_ADDR_MODE_7BIT',['../group___i2_c___s_l_a_v_e___a_p_i.html#gga8e76d805f1f518bf83a84f9df65beb1ba545d1daef7aa30b4ca41077f570f8c42',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5faddr_5fmode_5ft',['i2c_slave_addr_mode_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#ga8e76d805f1f518bf83a84f9df65beb1b',1,'r_i2c_slave_api.h']]], + ['i2c_20slave_20interface',['I2C Slave Interface',['../group___i2_c___s_l_a_v_e___a_p_i.html',1,'']]], + ['i2c_5fslave_5fapi_5ft',['i2c_slave_api_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__api__t',1,'']]], + ['i2c_5fslave_5fcallback_5fargs_5ft',['i2c_slave_callback_args_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__callback__args__t',1,'']]], + ['i2c_5fslave_5fcfg_5ft',['i2c_slave_cfg_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__cfg__t',1,'']]], + ['i2c_5fslave_5fctrl_5ft',['i2c_slave_ctrl_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#gaf676f2e6f026d5f3c96fcb18fdc71972',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5faborted',['I2C_SLAVE_EVENT_ABORTED',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca0831b0e3a2fa5ee83aa651e6659d7cdf',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5fgeneral_5fcall',['I2C_SLAVE_EVENT_GENERAL_CALL',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca25d53326260faa954236b7af69b94852',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5frx_5fcomplete',['I2C_SLAVE_EVENT_RX_COMPLETE',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8cac04326f0bdc42f852e082d2fc0e7ad65',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5frx_5fmore_5frequest',['I2C_SLAVE_EVENT_RX_MORE_REQUEST',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca833bea612872cc350d74f6edb66e9fad',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5frx_5frequest',['I2C_SLAVE_EVENT_RX_REQUEST',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca35bbc925e0a13c90e6398f8df78a440a',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5ft',['i2c_slave_event_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#gad8b613f0d4e9d1b9511ca0b6d6ab7e8c',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5ftx_5fcomplete',['I2C_SLAVE_EVENT_TX_COMPLETE',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca1017e760b355f9eef573d163c87893d9',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5ftx_5fmore_5frequest',['I2C_SLAVE_EVENT_TX_MORE_REQUEST',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca6b2e105a581ceb4a55850b03d1d6fe2c',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5ftx_5frequest',['I2C_SLAVE_EVENT_TX_REQUEST',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca9b0eb2a5a4dfdc44adf3838a6c2901c7',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5finstance_5ft',['i2c_slave_instance_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__instance__t',1,'']]], + ['i2c_5fslave_5frate_5ffast',['I2C_SLAVE_RATE_FAST',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggaa26f7dd0df29bb18d57fa02c7f64588da0a93f42422a9c37f9eee450c8e497ab9',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5frate_5ffastplus',['I2C_SLAVE_RATE_FASTPLUS',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggaa26f7dd0df29bb18d57fa02c7f64588dad673e065daa619986628967645f3e5d8',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5frate_5fstandard',['I2C_SLAVE_RATE_STANDARD',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggaa26f7dd0df29bb18d57fa02c7f64588dafbf6971c770f59039c152748515d3da6',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5frate_5ft',['i2c_slave_rate_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#gaa26f7dd0df29bb18d57fa02c7f64588d',1,'r_i2c_slave_api.h']]], + ['i3c_5faddress_5fassignment_5fmode_5fentdaa',['I3C_ADDRESS_ASSIGNMENT_MODE_ENTDAA',['../group___i3_c___a_p_i.html#gga6ebef50cdf52650f03e1b449325779fca747529dae6e854111df4e95e9ba3c91a',1,'r_i3c_api.h']]], + ['i3c_5faddress_5fassignment_5fmode_5ft',['i3c_address_assignment_mode_t',['../group___i3_c___a_p_i.html#ga6ebef50cdf52650f03e1b449325779fc',1,'r_i3c_api.h']]], + ['i3c_20interface',['I3C Interface',['../group___i3_c___a_p_i.html',1,'']]], + ['i3c_5fapi_5ft',['i3c_api_t',['../group___i3_c___a_p_i.html#structi3c__api__t',1,'']]], + ['i3c_20_28r_5fi3c_5fb_29',['I3C (r_i3c_b)',['../group___i3_c___b.html',1,'']]], + ['i3c_5fb_5factivity_5fstate_5fentas0',['I3C_B_ACTIVITY_STATE_ENTAS0',['../group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aa9641d3bd84b3734620800d3242a048e1',1,'r_i3c_b.h']]], + ['i3c_5fb_5factivity_5fstate_5fentas1',['I3C_B_ACTIVITY_STATE_ENTAS1',['../group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aa313dcdfbf6c9106d85551b78fdc89c69',1,'r_i3c_b.h']]], + ['i3c_5fb_5factivity_5fstate_5fentas2',['I3C_B_ACTIVITY_STATE_ENTAS2',['../group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aa99e55224a2b5aff9072df1a13157b83a',1,'r_i3c_b.h']]], + ['i3c_5fb_5factivity_5fstate_5fentas3',['I3C_B_ACTIVITY_STATE_ENTAS3',['../group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aaf6a3aacfe021bf6de8af4de066e3c768',1,'r_i3c_b.h']]], + ['i3c_5fb_5factivity_5fstate_5ft',['i3c_b_activity_state_t',['../group___i3_c___b.html#gab3ffca78d7da057f277bfd8ce2ef2e1a',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi2c_5fextbr',['I3C_B_BITRATE_MODE_I2C_EXTBR',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca1ea841b113c1fcc83d7caae57f91c266',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi2c_5fstdbr',['I3C_B_BITRATE_MODE_I2C_STDBR',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3caf4dc5a9d144776169e8a4d7f21a93b84',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi3c_5fsdr0_5fstdbr',['I3C_B_BITRATE_MODE_I3C_SDR0_STDBR',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca30e9d9ea007ba5c667387f1198721ff9',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi3c_5fsdr1_5fextbr',['I3C_B_BITRATE_MODE_I3C_SDR1_EXTBR',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca1a146a0c77e2b1aa523548e8464efbb4',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi3c_5fsdr2_5fstdbr_5fx2',['I3C_B_BITRATE_MODE_I3C_SDR2_STDBR_X2',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca2fc162047690642b1e930dcef91cfb81',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi3c_5fsdr3_5fextbr_5fx2',['I3C_B_BITRATE_MODE_I3C_SDR3_EXTBR_X2',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3caa5bb8590bfb9b8865b9cf64576ceadde',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi3c_5fsdr4_5fextbr_5fx4',['I3C_B_BITRATE_MODE_I3C_SDR4_EXTBR_X4',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca6643480973dab04e2eba54bc434222d5',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5ft',['i3c_b_bitrate_mode_t',['../group___i3_c___b.html#gac8fb0ec859c44282b8323eb13de6ad3c',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fsettings_5ft',['i3c_b_bitrate_settings_t',['../group___i3_c___b.html#structi3c__b__bitrate__settings__t',1,'']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5f10ns',['I3C_B_CLOCK_DATA_TURNAROUND_10NS',['../group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa85d3de0c20f041144cd97c7dce45191b',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5f11ns',['I3C_B_CLOCK_DATA_TURNAROUND_11NS',['../group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caab708aab348be27544293dc3cd81f144b',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5f12ns',['I3C_B_CLOCK_DATA_TURNAROUND_12NS',['../group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa75bf3ed70a8bc727c29bf17241694e7d',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5f8ns',['I3C_B_CLOCK_DATA_TURNAROUND_8NS',['../group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa5d48558b7227efb68f158286ead5a083',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5f9ns',['I3C_B_CLOCK_DATA_TURNAROUND_9NS',['../group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caae7c84e04abd9a4d740b89bd866b05064',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5fextended',['I3C_B_CLOCK_DATA_TURNAROUND_EXTENDED',['../group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa5afb800692fec260506825c1766d5a77',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5ft',['i3c_b_clock_data_turnaround_t',['../group___i3_c___b.html#ga3289540419912324ce02f19ed6a972ca',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fstalling_5ft',['i3c_b_clock_stalling_t',['../group___i3_c___b.html#structi3c__b__clock__stalling__t',1,'']]], + ['i3c_5fb_5fdata_5frate_5fsetting_5f2mhz',['I3C_B_DATA_RATE_SETTING_2MHZ',['../group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aae74d814458aa0d31cb6503c0f144a3c6',1,'r_i3c_b.h']]], + ['i3c_5fb_5fdata_5frate_5fsetting_5f4mhz',['I3C_B_DATA_RATE_SETTING_4MHZ',['../group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa63e2f583c75a7225371ba173ce4c7c6a',1,'r_i3c_b.h']]], + ['i3c_5fb_5fdata_5frate_5fsetting_5f6mhz',['I3C_B_DATA_RATE_SETTING_6MHZ',['../group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa2039c607365d844eb591d5a95ae2f932',1,'r_i3c_b.h']]], + ['i3c_5fb_5fdata_5frate_5fsetting_5f8mhz',['I3C_B_DATA_RATE_SETTING_8MHZ',['../group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa9193b4d9e54c0c7c9f1e046c39795ea6',1,'r_i3c_b.h']]], + ['i3c_5fb_5fdata_5frate_5fsetting_5ffscl_5fmax',['I3C_B_DATA_RATE_SETTING_FSCL_MAX',['../group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa5c4464e2154d923a7dbcf46a52486f9f',1,'r_i3c_b.h']]], + ['i3c_5fb_5fdata_5frate_5fsetting_5ft',['i3c_b_data_rate_setting_t',['../group___i3_c___b.html#gaa100c24dc68792009da85deed2f6387a',1,'r_i3c_b.h']]], + ['i3c_5fb_5fdevice_5findex_5fextended_5fdevice',['I3C_B_DEVICE_INDEX_EXTENDED_DEVICE',['../group___i3_c___b.html#ga394142d1aa7177899d19d06d6fae6f89',1,'r_i3c_b.h']]], + ['i3c_5fb_5ferror_5frecovery_5fversion_5f1',['I3C_B_ERROR_RECOVERY_VERSION_1',['../group___i3_c___b.html#ga613539c3294eadbba8386934530c042d',1,'r_i3c_b.h']]], + ['i3c_5fb_5ferror_5frecovery_5fversion_5f2',['I3C_B_ERROR_RECOVERY_VERSION_2',['../group___i3_c___b.html#ga37a9316af0c201865007526dbd8ef35c',1,'r_i3c_b.h']]], + ['i3c_5fb_5ferror_5frecovery_5fversion_5fboth',['I3C_B_ERROR_RECOVERY_VERSION_BOTH',['../group___i3_c___b.html#ga3877dd4ca46a098b55ac20fe3303a87d',1,'r_i3c_b.h']]], + ['i3c_5fb_5fevent_5fstatus_5faborted',['I3C_B_EVENT_STATUS_ABORTED',['../group___i3_c___b.html#ga7aed8b3fb4cfd7004b8f785a8884f4ff',1,'r_i3c_b.h']]], + ['i3c_5fb_5fevent_5fstatus_5faborted_5fto_5fmaster',['I3C_B_EVENT_STATUS_ABORTED_TO_MASTER',['../group___i3_c___b.html#gae15f0c28a3098b35b3eaf0456f1c4a5b',1,'r_i3c_b.h']]], + ['i3c_5fb_5fevent_5fstatus_5faddress_5fheader',['I3C_B_EVENT_STATUS_ADDRESS_HEADER',['../group___i3_c___b.html#gab4bffde187fcf342dfc6cabc1a7353d8',1,'r_i3c_b.h']]], + ['i3c_5fb_5fevent_5fstatus_5fframe',['I3C_B_EVENT_STATUS_FRAME',['../group___i3_c___b.html#ga4c155a91650485e935a7d95b65bf6ea1',1,'r_i3c_b.h']]], + ['i3c_5fb_5fevent_5fstatus_5fibi_5fnack_5fdisabled',['I3C_B_EVENT_STATUS_IBI_NACK_DISABLED',['../group___i3_c___b.html#gaacf3c8a9a14870a0e66c8815bed1c2e5',1,'r_i3c_b.h']]], + ['i3c_5fb_5fevent_5fstatus_5fnack',['I3C_B_EVENT_STATUS_NACK',['../group___i3_c___b.html#gaac076b32d443c844645e0d1e9a6d184e',1,'r_i3c_b.h']]], + ['i3c_5fb_5fevent_5fstatus_5foverflow',['I3C_B_EVENT_STATUS_OVERFLOW',['../group___i3_c___b.html#ga103bea85dbeeb58f40d85e3b1bd00fae',1,'r_i3c_b.h']]], + ['i3c_5fb_5fevent_5fstatus_5fparity',['I3C_B_EVENT_STATUS_PARITY',['../group___i3_c___b.html#ga20332b13e43cafe1a0ee0dbc195d7467',1,'r_i3c_b.h']]], + ['i3c_5fb_5fevent_5fstatus_5fsuccess',['I3C_B_EVENT_STATUS_SUCCESS',['../group___i3_c___b.html#ga66e705cb2af31c57eacd0492b2417145',1,'r_i3c_b.h']]], + ['i3c_5fb_5fextended_5fcfg_5ft',['i3c_b_extended_cfg_t',['../group___i3_c___b.html#structi3c__b__extended__cfg__t',1,'']]], + ['i3c_5fb_5fibi_5fcontrol_5ft',['i3c_b_ibi_control_t',['../group___i3_c___b.html#structi3c__b__ibi__control__t',1,'']]], + ['i3c_5fb_5finstance_5fctrl_5ft',['i3c_b_instance_ctrl_t',['../group___i3_c___b.html#structi3c__b__instance__ctrl__t',1,'']]], + ['i3c_5fb_5fslave_5fcommand_5fresponse_5finfo_5ft',['i3c_b_slave_command_response_info_t',['../group___i3_c___b.html#structi3c__b__slave__command__response__info__t',1,'']]], + ['i3c_5fcallback_5fargs_5ft',['i3c_callback_args_t',['../group___i3_c___a_p_i.html#structi3c__callback__args__t',1,'']]], + ['i3c_5fccc_5fbroadcast_5fdefsvls',['I3C_CCC_BROADCAST_DEFSVLS',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52abbab4c6a19959b0ce8e01d97db4f04e7',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fdisec',['I3C_CCC_BROADCAST_DISEC',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a1f75c76bf09458b99003305112107dc7',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenec',['I3C_CCC_BROADCAST_ENEC',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52acc5d7a5de1e6f3169a5b89f675feca40',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fentas0',['I3C_CCC_BROADCAST_ENTAS0',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a73ea75bd16a55fb64d2cb4788ec9b94e',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fentas1',['I3C_CCC_BROADCAST_ENTAS1',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a9b8ecc4370c7361e6a7a074e03390be0',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fentas2',['I3C_CCC_BROADCAST_ENTAS2',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8a571cf772f5717fa91172048322e739',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fentas3',['I3C_CCC_BROADCAST_ENTAS3',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a9f16a8d29a4f814f9b9627603817df7d',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fentdaa',['I3C_CCC_BROADCAST_ENTDAA',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aaa285307604c96afab5e8477583b25d0',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr0',['I3C_CCC_BROADCAST_ENTHDR0',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a08c0920a5a317949946c27ecd501ec7d',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr1',['I3C_CCC_BROADCAST_ENTHDR1',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a56334065601b234cb7a51495a87dc79f',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr2',['I3C_CCC_BROADCAST_ENTHDR2',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ae6bfede59f2548525cd5440894c556ae',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr3',['I3C_CCC_BROADCAST_ENTHDR3',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ae75b0aea11da4b68f572fe92b464cd96',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr4',['I3C_CCC_BROADCAST_ENTHDR4',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a6cfb1fec206cea9e4004277a49345c45',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr5',['I3C_CCC_BROADCAST_ENTHDR5',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ab56b79fda699c783a225ebcdeef12e17',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr6',['I3C_CCC_BROADCAST_ENTHDR6',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ab14dcd17df603d88deb2c9d2a6112cea',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr7',['I3C_CCC_BROADCAST_ENTHDR7',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8b91860514ba2dab9ad0188c1265c2ce',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenttm',['I3C_CCC_BROADCAST_ENTTM',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a497ea998fd00601fece9bc4f537c5069',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5frstdaa',['I3C_CCC_BROADCAST_RSTDAA',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52afd8c362bd9653f12f39c6d508dc6b370',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fsetaasa',['I3C_CCC_BROADCAST_SETAASA',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af3d7fa76699eb260edb16b1365a83a80',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fsetmrl',['I3C_CCC_BROADCAST_SETMRL',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ae23ff44b4be0d920a3cd686dbaefa2d4',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fsetmwl',['I3C_CCC_BROADCAST_SETMWL',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aec2e7382aa38f0a4c99bfcfeb609910d',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fsetxtime',['I3C_CCC_BROADCAST_SETXTIME',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a1b45b49fd85d7ac9804cdb5d44a3d226',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fdisec',['I3C_CCC_DIRECT_DISEC',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a66d0ccdd8df6e8ee6335d86b56b3fb2c',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fenec',['I3C_CCC_DIRECT_ENEC',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af979c7917ae589e3a9a2617f161f5a04',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fentas0',['I3C_CCC_DIRECT_ENTAS0',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a7b5746e3c19c17b4ca7485b06da59adc',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fentas1',['I3C_CCC_DIRECT_ENTAS1',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af2896458dc1ef08bcb97926be03678e3',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fentas2',['I3C_CCC_DIRECT_ENTAS2',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aa2cd6c5a0491fd3fe6be81521d4dc75e',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fentas3',['I3C_CCC_DIRECT_ENTAS3',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a6f12cb17e3064ffd538da94b08c21b95',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetaccmst',['I3C_CCC_DIRECT_GETACCMST',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a696a95c054c95406323e9cefa14b1b93',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetbcr',['I3C_CCC_DIRECT_GETBCR',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a5fd66e6e9c4409de3d8d7e0161fb8cdd',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetdcr',['I3C_CCC_DIRECT_GETDCR',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a83759ef85966ef3d6098e0eda089ab19',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetmrl',['I3C_CCC_DIRECT_GETMRL',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a343b8fc7c704fa205b530aa9ac1c0c16',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetmwl',['I3C_CCC_DIRECT_GETMWL',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ad329d0765a5a641db81f8292335f9e99',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetmxds',['I3C_CCC_DIRECT_GETMXDS',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a29237e5c8191b16f48c66cf5a484b812',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetpid',['I3C_CCC_DIRECT_GETPID',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af74c0d73517685e8be6ae66f6a07c05c',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetstatus',['I3C_CCC_DIRECT_GETSTATUS',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af39fa810aa779ab934064116903c409f',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetxtime',['I3C_CCC_DIRECT_GETXTIME',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a66ec92cc7e4fd378938a6d623bd44b6b',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5frstdaa',['I3C_CCC_DIRECT_RSTDAA',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8db31c2c1ca8424755d3d59ce623fb08',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fsetdasa',['I3C_CCC_DIRECT_SETDASA',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a196c567a68ade8d03a9863b6fa472eca',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fsetmrl',['I3C_CCC_DIRECT_SETMRL',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8dd9c7bcb05442fcf0a4751608a4a57f',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fsetmwl',['I3C_CCC_DIRECT_SETMWL',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ac9fac028a90f4a7afe693f23838e9869',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fsetnewda',['I3C_CCC_DIRECT_SETNEWDA',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a56c1f2be3412ee3af9678b2bdf95102a',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fsetxtime',['I3C_CCC_DIRECT_SETXTIME',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aa92f265992e1acc07c57946f1c8d10d2',1,'r_i3c_api.h']]], + ['i3c_5fcfg_5ft',['i3c_cfg_t',['../group___i3_c___a_p_i.html#structi3c__cfg__t',1,'']]], + ['i3c_5fcommand_5fdescriptor_5ft',['i3c_command_descriptor_t',['../group___i3_c___a_p_i.html#structi3c__command__descriptor__t',1,'']]], + ['i3c_5fcommon_5fcommand_5fcode_5ft',['i3c_common_command_code_t',['../group___i3_c___a_p_i.html#gae0fcac252ef200a5a24cdadfa123dc52',1,'r_i3c_api.h']]], + ['i3c_5fctrl_5ft',['i3c_ctrl_t',['../group___i3_c___a_p_i.html#ga63111d6c1096458d5059f5f6fac3f579',1,'r_i3c_api.h']]], + ['i3c_5fdevice_5fcfg_5ft',['i3c_device_cfg_t',['../group___i3_c___a_p_i.html#structi3c__device__cfg__t',1,'']]], + ['i3c_5fdevice_5fprotocol_5fi2c',['I3C_DEVICE_PROTOCOL_I2C',['../group___i3_c___a_p_i.html#ggaa7585dee427a1d95926f88dd55ecf305a68c12b56610277eac342a9aa5b5fcb1b',1,'r_i3c_api.h']]], + ['i3c_5fdevice_5fprotocol_5fi3c',['I3C_DEVICE_PROTOCOL_I3C',['../group___i3_c___a_p_i.html#ggaa7585dee427a1d95926f88dd55ecf305a6b32868175ba9fb454f459441be611be',1,'r_i3c_api.h']]], + ['i3c_5fdevice_5fprotocol_5ft',['i3c_device_protocol_t',['../group___i3_c___a_p_i.html#gaa7585dee427a1d95926f88dd55ecf305',1,'r_i3c_api.h']]], + ['i3c_5fdevice_5fstatus_5ft',['i3c_device_status_t',['../group___i3_c___a_p_i.html#structi3c__device__status__t',1,'']]], + ['i3c_5fdevice_5ftable_5fcfg_5ft',['i3c_device_table_cfg_t',['../group___i3_c___a_p_i.html#structi3c__device__table__cfg__t',1,'']]], + ['i3c_5fdevice_5ftype_5fmain_5fmaster',['I3C_DEVICE_TYPE_MAIN_MASTER',['../group___i3_c___a_p_i.html#gga890e3f0ba27c4a963dc5901bfbed439ca55632ac0c5b5d0e704a0b7c6b405beba',1,'r_i3c_api.h']]], + ['i3c_5fdevice_5ftype_5fslave',['I3C_DEVICE_TYPE_SLAVE',['../group___i3_c___a_p_i.html#gga890e3f0ba27c4a963dc5901bfbed439caf0202c7dc1948d7191c5005fc9d38b47',1,'r_i3c_api.h']]], + ['i3c_5fdevice_5ftype_5ft',['i3c_device_type_t',['../group___i3_c___a_p_i.html#ga890e3f0ba27c4a963dc5901bfbed439c',1,'r_i3c_api.h']]], + ['i3c_5fevent_5faddress_5fassignment_5fcomplete',['I3C_EVENT_ADDRESS_ASSIGNMENT_COMPLETE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca178a51755c49a2a63cf7b376b2578f2a',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fcommand_5fcomplete',['I3C_EVENT_COMMAND_COMPLETE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca2e5a0467001efaba19b6c2de17d182be',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fentdaa_5faddress_5fphase',['I3C_EVENT_ENTDAA_ADDRESS_PHASE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265cadfebca77a845caf0935ca9647c66eb67',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fhdr_5fexit_5fpattern_5fdetected',['I3C_EVENT_HDR_EXIT_PATTERN_DETECTED',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265caa2355b778aac9f8345b76e1aa6bbcfb5',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fibi_5fread_5fbuffer_5ffull',['I3C_EVENT_IBI_READ_BUFFER_FULL',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265cac5b7d7a4cdbe9197e4c6034008270fa8',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fibi_5fread_5fcomplete',['I3C_EVENT_IBI_READ_COMPLETE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca9af3b8a5b489c8cd30b2f563b4323f5e',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fibi_5fwrite_5fcomplete',['I3C_EVENT_IBI_WRITE_COMPLETE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca49e2d860a954f25bfee5d3f6755d3b54',1,'r_i3c_api.h']]], + ['i3c_5fevent_5finternal_5ferror',['I3C_EVENT_INTERNAL_ERROR',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca2f461eca70d64741f14d4b92445608d3',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fread_5fbuffer_5ffull',['I3C_EVENT_READ_BUFFER_FULL',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca401943802babdddf23fdc32573c220d2',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fread_5fcomplete',['I3C_EVENT_READ_COMPLETE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265cabfc8612eeb0cd4e93456d6844686c135',1,'r_i3c_api.h']]], + ['i3c_5fevent_5ft',['i3c_event_t',['../group___i3_c___a_p_i.html#gaaeacda02a21254776fcbc47ab1ff265c',1,'r_i3c_api.h']]], + ['i3c_5fevent_5ftimeout_5fdetected',['I3C_EVENT_TIMEOUT_DETECTED',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca68834ad7d19b19947bafc01ce50a8e3f',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fwrite_5fcomplete',['I3C_EVENT_WRITE_COMPLETE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca9379590b2f8f1411715ba425c6c15a4b',1,'r_i3c_api.h']]], + ['i3c_5fibi_5ftype_5fhot_5fjoin',['I3C_IBI_TYPE_HOT_JOIN',['../group___i3_c___a_p_i.html#gga81ac58196d67e74a0a3702c3e760ede7ae53f3f0966395df095e951839052c6ca',1,'r_i3c_api.h']]], + ['i3c_5fibi_5ftype_5finterrupt',['I3C_IBI_TYPE_INTERRUPT',['../group___i3_c___a_p_i.html#gga81ac58196d67e74a0a3702c3e760ede7a29e66a0c093804099f1680935b8390a7',1,'r_i3c_api.h']]], + ['i3c_5fibi_5ftype_5fmastership_5frequest',['I3C_IBI_TYPE_MASTERSHIP_REQUEST',['../group___i3_c___a_p_i.html#gga81ac58196d67e74a0a3702c3e760ede7a6aec7546d7484201fa4442c4b37b3d8c',1,'r_i3c_api.h']]], + ['i3c_5fibi_5ftype_5ft',['i3c_ibi_type_t',['../group___i3_c___a_p_i.html#ga81ac58196d67e74a0a3702c3e760ede7',1,'r_i3c_api.h']]], + ['i3c_5finstance_5ft',['i3c_instance_t',['../group___i3_c___a_p_i.html#structi3c__instance__t',1,'']]], + ['i3c_5fslave_5finfo_5ft',['i3c_slave_info_t',['../group___i3_c___a_p_i.html#structi3c__slave__info__t',1,'']]], ['iaq',['iaq',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abd2e11efbf4f5c3ae54f469394235ae8',1,'rm_zmod4xxx_iaq_1st_data_t::iaq()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6de91ae7e87c6ad5197ceff295b7fdf3',1,'rm_zmod4xxx_iaq_2nd_data_t::iaq()']]], ['iaq1stgendatacalculate',['iaq1stGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6e96d0abcbc4a4479d92d6e8e8d410de',1,'rm_zmod4xxx_api_t']]], ['iaq2ndgendatacalculate',['iaq2ndGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af1ff5841c01173a03ff6ccb7bd731ddc',1,'rm_zmod4xxx_api_t']]], + ['ibi_5faccept',['ibi_accept',['../group___i3_c___a_p_i.html#a75de96de8cb5a6dbe2e142f1113a5a8b',1,'i3c_device_table_cfg_t']]], + ['ibi_5faddress',['ibi_address',['../group___i3_c___a_p_i.html#add62a38afe9e63edc664fa8cd7d736e3',1,'i3c_callback_args_t']]], + ['ibi_5fbuffer_5fdescriptor',['ibi_buffer_descriptor',['../group___i3_c___b.html#ade06559c82b773fb3382aa64c0cbff15',1,'i3c_b_instance_ctrl_t']]], + ['ibi_5fcontrol',['ibi_control',['../group___i3_c___b.html#a16e3b94303d38db979568546ac53a4b3',1,'i3c_b_extended_cfg_t']]], + ['ibi_5firq',['ibi_irq',['../group___i3_c___b.html#add3c6106157a467818eb480ae5057826',1,'i3c_b_extended_cfg_t']]], + ['ibi_5fnext_5fword',['ibi_next_word',['../group___i3_c___b.html#a8369efb1618f65a238ce07c438e50c01',1,'i3c_b_instance_ctrl_t']]], + ['ibi_5fpayload',['ibi_payload',['../group___i3_c___a_p_i.html#a8627c2815356dbf8a9120b45a4e5e954',1,'i3c_device_table_cfg_t']]], + ['ibi_5fpayload_5flength',['ibi_payload_length',['../group___i3_c___b.html#ab16f7dbd1d812f8dcfc33ac37a939ca9',1,'i3c_b_slave_command_response_info_t']]], + ['ibi_5ftransfer_5fcount_5ffinal',['ibi_transfer_count_final',['../group___i3_c___b.html#ad7f911a2a8d3071973e2a3f8d9c3379e',1,'i3c_b_instance_ctrl_t']]], + ['ibi_5ftype',['ibi_type',['../group___i3_c___a_p_i.html#a38189a6ab614f521924609c5bb5f30b9',1,'i3c_callback_args_t']]], + ['ibiread',['ibiRead',['../group___i3_c___a_p_i.html#a3b2a78b5f633df2cfb07133ad5ae9c91',1,'i3c_api_t']]], + ['ibiwrite',['ibiWrite',['../group___i3_c___a_p_i.html#a78bf93c241804116b1a4efc18e6c1028',1,'i3c_api_t']]], + ['ic0_5fcontrol',['ic0_control',['../group___c_m_t_w.html#a9b7a216779c89527ce522c447d65dcb4',1,'cmtw_extended_cfg_t']]], + ['ic1_5fcontrol',['ic1_control',['../group___c_m_t_w.html#acffcc4d2d31fd8b21b8cada853629afa',1,'cmtw_extended_cfg_t']]], ['id',['id',['../group___c_a_n___a_p_i.html#a49d4261f37f08f5a11cc3fc12c56cdc3',1,'can_frame_t']]], - ['id_5fmode',['id_mode',['../group___c_a_n___a_p_i.html#a4144eba26f77850571fca0498bec60ef',1,'can_frame_t::id_mode()'],['../group___c_a_n___a_p_i.html#a9d3924b6ba4efb4c978a04d0e9a4fbc6',1,'can_mailbox_t::id_mode()'],['../group___c_a_n___a_p_i.html#a34bf75f61795800b3df706b240fd7907',1,'can_cfg_t::id_mode()']]], + ['id_5fmode',['id_mode',['../group___c_a_n___a_p_i.html#a4144eba26f77850571fca0498bec60ef',1,'can_frame_t']]], + ['ierr_5firq',['ierr_irq',['../group___i3_c___b.html#a2182f261e10335bf21ca40bc09bcd68d',1,'i3c_b_extended_cfg_t']]], ['iic_5fmaster_5fclock_5fsettings_5ft',['iic_master_clock_settings_t',['../group___r_i_i_c___m_a_s_t_e_r.html#structiic__master__clock__settings__t',1,'']]], ['iic_5fmaster_5finstance_5fctrl_5ft',['iic_master_instance_ctrl_t',['../group___r_i_i_c___m_a_s_t_e_r.html#structiic__master__instance__ctrl__t',1,'']]], ['iic_5fmaster_5ftimeout_5fmode_5flong',['IIC_MASTER_TIMEOUT_MODE_LONG',['../group___r_i_i_c___m_a_s_t_e_r.html#ggaf8ecd43a76bfa058281bb8b6b3981d3facc441997b6e18766361457d26227b4bd',1,'r_riic_master.h']]], ['iic_5fmaster_5ftimeout_5fmode_5fshort',['IIC_MASTER_TIMEOUT_MODE_SHORT',['../group___r_i_i_c___m_a_s_t_e_r.html#ggaf8ecd43a76bfa058281bb8b6b3981d3fa4afacd0b267f604d06e2b83891c0e577',1,'r_riic_master.h']]], ['iic_5fmaster_5ftimeout_5fmode_5ft',['iic_master_timeout_mode_t',['../group___r_i_i_c___m_a_s_t_e_r.html#gaf8ecd43a76bfa058281bb8b6b3981d3f',1,'r_riic_master.h']]], + ['iic_5fmaster_5ftimeout_5fscl_5flow_5fdisabled',['IIC_MASTER_TIMEOUT_SCL_LOW_DISABLED',['../group___r_i_i_c___m_a_s_t_e_r.html#gga9789e54472d093bd5348f202205d28eca0773c9356e560a84576f1d5498234a09',1,'r_riic_master.h']]], + ['iic_5fmaster_5ftimeout_5fscl_5flow_5fenabled',['IIC_MASTER_TIMEOUT_SCL_LOW_ENABLED',['../group___r_i_i_c___m_a_s_t_e_r.html#gga9789e54472d093bd5348f202205d28eca62238f63df0d06f25af5b158bbfb2169',1,'r_riic_master.h']]], + ['iic_5fmaster_5ftimeout_5fscl_5flow_5ft',['iic_master_timeout_scl_low_t',['../group___r_i_i_c___m_a_s_t_e_r.html#ga9789e54472d093bd5348f202205d28ec',1,'r_riic_master.h']]], + ['iic_5fslave_5fclock_5fsettings_5ft',['iic_slave_clock_settings_t',['../group___r_i_i_c___s_l_a_v_e.html#structiic__slave__clock__settings__t',1,'']]], + ['inband_5finterrupt_5fenable',['inband_interrupt_enable',['../group___i3_c___b.html#ae5c638d2a302a6a5c39510137583ffd9',1,'i3c_b_slave_command_response_info_t']]], ['introduction',['Introduction',['../index.html',1,'']]], - ['infoget',['infoGet',['../group___c_a_n___a_p_i.html#aba27908c89442250d365d4a44304e3c1',1,'can_api_t::infoGet()'],['../group___t_i_m_e_r___a_p_i.html#aeaea79f26305c493566e4b45ae9e294c',1,'timer_api_t::infoGet()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ad18824ffdf72b5e6a0c588289620fc84',1,'transfer_api_t::infoGet()'],['../group___u_a_r_t___a_p_i.html#aa6d5231c2b45a6479fc513d087924a50',1,'uart_api_t::infoGet()']]], + ['infoget',['infoGet',['../group___a_d_c___a_p_i.html#acc68017ee284386b5d13c027bc10bf87',1,'adc_api_t::infoGet()'],['../group___c_a_n___a_p_i.html#aba27908c89442250d365d4a44304e3c1',1,'can_api_t::infoGet()'],['../group___r_t_c___a_p_i.html#a7a6c940847c6f730a5c5df3355dca1eb',1,'rtc_api_t::infoGet()'],['../group___t_i_m_e_r___a_p_i.html#aeaea79f26305c493566e4b45ae9e294c',1,'timer_api_t::infoGet()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ad18824ffdf72b5e6a0c588289620fc84',1,'transfer_api_t::infoGet()'],['../group___u_a_r_t___a_p_i.html#aa6d5231c2b45a6479fc513d087924a50',1,'uart_api_t::infoGet()']]], ['init_5fconf',['init_conf',['../structzmod4xxx__dev__t.html#a8b5560b62a3e4bdadbc079ed485a02bc',1,'zmod4xxx_dev_t']]], - ['init_5fprocess_5fparams',['init_process_params',['../group___r_m___h_s400_x.html#a5af51eb4d4038952763bba41f2dee7b7',1,'rm_hs400x_instance_ctrl_t::init_process_params()'],['../group___r_m___o_b1203.html#ae4fbc64795865bea8bc3d64f34a96c74',1,'rm_ob1203_instance_ctrl_t::init_process_params()'],['../group___r_m___z_m_o_d4_x_x_x.html#a6f86201d4a114d5714f700501338e5f7',1,'rm_zmod4xxx_instance_ctrl_t::init_process_params()']]], + ['init_5fprocess_5fparams',['init_process_params',['../group___r_m___h_s400_x.html#a5af51eb4d4038952763bba41f2dee7b7',1,'rm_hs400x_instance_ctrl_t::init_process_params()'],['../group___r_m___z_m_o_d4_x_x_x.html#a6f86201d4a114d5714f700501338e5f7',1,'rm_zmod4xxx_instance_ctrl_t::init_process_params()']]], + ['input_5fmode',['input_mode',['../group___a_d_c___c.html#adc8e8849121eeb6991ae00b028a8a4b5',1,'adc_c_extended_cfg_t']]], ['intc_5firq_5finstance_5fctrl_5ft',['intc_irq_instance_ctrl_t',['../group___i_n_t_c___i_r_q.html#structintc__irq__instance__ctrl__t',1,'']]], + ['intc_5fnmi_5finstance_5fctrl_5ft',['intc_nmi_instance_ctrl_t',['../group___i_n_t_c___n_m_i.html#structintc__nmi__instance__ctrl__t',1,'']]], + ['intc_5ftint_5fextended_5fcfg_5ft',['intc_tint_extended_cfg_t',['../group___i_n_t_c___t_i_n_t.html#structintc__tint__extended__cfg__t',1,'']]], + ['intc_5ftint_5fgpioint_5ft',['intc_tint_gpioint_t',['../group___i_n_t_c___t_i_n_t.html#ga3ba2aca2c4a94e31e689d5796a056825',1,'r_intc_tint.h']]], + ['intc_5ftint_5finstance_5fctrl_5ft',['intc_tint_instance_ctrl_t',['../group___i_n_t_c___t_i_n_t.html#structintc__tint__instance__ctrl__t',1,'']]], + ['intc_5ftint_5ftrigger_5ffalling',['INTC_TINT_TRIGGER_FALLING',['../group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5edae0b70e173c23a2bb41685eedcca0eaa2',1,'r_intc_tint.h']]], + ['intc_5ftint_5ftrigger_5flevel_5fhigh',['INTC_TINT_TRIGGER_LEVEL_HIGH',['../group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5eda005c2f7b5cbb161fb0bf671952ca60fd',1,'r_intc_tint.h']]], + ['intc_5ftint_5ftrigger_5flevel_5flow',['INTC_TINT_TRIGGER_LEVEL_LOW',['../group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5edab9b8df90dff304ec0c877b337c417188',1,'r_intc_tint.h']]], + ['intc_5ftint_5ftrigger_5frising',['INTC_TINT_TRIGGER_RISING',['../group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5edab0877acf066a60852cf20f2555246521',1,'r_intc_tint.h']]], + ['intc_5ftint_5ftrigger_5ft',['intc_tint_trigger_t',['../group___i_n_t_c___t_i_n_t.html#ga050a0c4d8019d4576ca781ec7d27c5ed',1,'r_intc_tint.h']]], ['intensity',['intensity',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ab2709d5696a54a4d979adb8c85d8610c',1,'rm_zmod4xxx_sulfur_odor_data_t']]], - ['interrupt_5fbits_5fclear',['interrupt_bits_clear',['../group___r_m___o_b1203.html#a6c0b5939aa98532a28c344960a62379d',1,'rm_ob1203_instance_ctrl_t']]], + ['internal_5fdetection_5fmode',['internal_detection_mode',['../group___d_m_a_c___b.html#a3c6118081755b89a56d716b3278d2f02',1,'dmac_b_extended_cfg_t']]], + ['internal_5fstate',['internal_state',['../group___i3_c___b.html#ac71e6c3913312c01e121be5ce1f89ae7',1,'i3c_b_instance_ctrl_t']]], + ['interrupt_5fsetting',['interrupt_setting',['../group___a_d_c___c.html#ac0f2be271c165544bd8c8502f5d4739c',1,'adc_c_channel_cfg_t']]], ['interrupt_5fskip_5fadc',['interrupt_skip_adc',['../group___g_p_t.html#ab5abdaac972544ec4e58df69d1f8a08f',1,'gpt_extended_pwm_cfg_t']]], ['interrupt_5fskip_5fcount',['interrupt_skip_count',['../group___g_p_t.html#ac516350c554b9851aa9c66615e89b93b',1,'gpt_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fcount_5ftciv4',['interrupt_skip_count_tciv4',['../group___m_t_u3.html#a216df4f3be3012f4f458c09d97f6593b',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fcount_5ftciv7',['interrupt_skip_count_tciv7',['../group___m_t_u3.html#af5d77f5eb4fd6e742f4a5e79b5665c04',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fcount_5ftgia3',['interrupt_skip_count_tgia3',['../group___m_t_u3.html#a71064db80d5848f56c23c5c5d56acc8a',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fcount_5ftgia6',['interrupt_skip_count_tgia6',['../group___m_t_u3.html#a21d61adfb4e1a493557d264d94ebef26',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fcount_5ftgr4an_5fbn',['interrupt_skip_count_tgr4an_bn',['../group___m_t_u3.html#acc26191a7a28828c0c7f4ee1792d1506',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fcount_5ftgr7an_5fbn',['interrupt_skip_count_tgr7an_bn',['../group___m_t_u3.html#a6952d44a04c939335d8ab1521dc6c4b4',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fmode_5fa',['interrupt_skip_mode_a',['../group___m_t_u3.html#aa2aaf02a71503c209b558836a992d768',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fmode_5fb',['interrupt_skip_mode_b',['../group___m_t_u3.html#a7adfe2a0b7737f00e2fcf92e1eb3bd90',1,'mtu3_extended_pwm_cfg_t']]], ['interrupt_5fskip_5fsource',['interrupt_skip_source',['../group___g_p_t.html#a4d31e40df7ea5e4be69fcbbe559a8213',1,'gpt_extended_pwm_cfg_t']]], ['interruptset',['interruptSet',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a6a3e82bf49e890836b3b4d71e7c31e8a',1,'mhu_ns_swint_set_api_t']]], + ['interupt_5fthreshold',['interupt_threshold',['../group___p_d_m.html#a1363fd7ad65bd0ed1f0377a70680a5af',1,'pdm_extended_cfg_t']]], ['i_2fo_20ports_20_28r_5fioport_29',['I/O Ports (r_ioport)',['../group___i_o_p_o_r_t.html',1,'']]], ['i_2fo_20port_20interface',['I/O Port Interface',['../group___i_o_p_o_r_t___a_p_i.html',1,'']]], ['ioport_5fapi_5ft',['ioport_api_t',['../group___i_o_p_o_r_t___a_p_i.html#structioport__api__t',1,'']]], - ['ioport_5faudio_5fclk1',['IOPORT_AUDIO_CLK1',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea61f68231948579e8c2a62470e8fb0a68',1,'r_ioport.h']]], - ['ioport_5faudio_5fclk2',['IOPORT_AUDIO_CLK2',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea16d2b07cec666834a1ffca8c722dd575',1,'r_ioport.h']]], - ['ioport_5fcfg_5fdrive_5fb00',['IOPORT_CFG_DRIVE_B00',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a4f3c70e0bd324aecc0fed994903b63b0',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fdrive_5fb01',['IOPORT_CFG_DRIVE_B01',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574af4952693675255ac32a0813a1100e038',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fdrive_5fb10',['IOPORT_CFG_DRIVE_B10',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ac882c17c38a2a20dfd0b5e1dd3eaeaf4',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fdrive_5fb11',['IOPORT_CFG_DRIVE_B11',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a0c5a07dad389d25a576c734a391ec148',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5f18000',['IOPORT_CFG_NOISE_FILTER_DIVIDED_18000',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a47135d68ccd71227f089cdc67ff242b6',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5f36000',['IOPORT_CFG_NOISE_FILTER_DIVIDED_36000',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a6b8456cbcd1ab14dcec4c749b9b16c6b',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5f9000',['IOPORT_CFG_NOISE_FILTER_DIVIDED_9000',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a39721a40c76adc1584a6716a0187a344',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fnot_5fdivided',['IOPORT_CFG_NOISE_FILTER_NOT_DIVIDED',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a8d0959d2bac4007c7966402e1edd5cf7',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f12stage',['IOPORT_CFG_NOISE_FILTER_NUM_12STAGE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574af0dbea168d9df29c6a4180e202370f22',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f16stage',['IOPORT_CFG_NOISE_FILTER_NUM_16STAGE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ace057086d321233881c1f335b6764bc2',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f4stage',['IOPORT_CFG_NOISE_FILTER_NUM_4STAGE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a9a30d0a8eb346f1c1951396c0559ef64',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f8stage',['IOPORT_CFG_NOISE_FILTER_NUM_8STAGE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ab7e5fcab2fd99046fcedb85c34070e2c',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5foff',['IOPORT_CFG_NOISE_FILTER_OFF',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a23f3f6712eefca788aa61da4976fd565',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fon',['IOPORT_CFG_NOISE_FILTER_ON',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a816a25b17c72bca7e267d47eb7f45dbc',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5foptions_5ft',['ioport_cfg_options_t',['../group___i_o_p_o_r_t___a_p_i.html#gac617eebcb7c2c1e45fa8e04fc473e574',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fperipheral_5fpin',['IOPORT_CFG_PERIPHERAL_PIN',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a2066555437a19b9e6e721fb494c8f5c3',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fport_5fdirection_5fhiz',['IOPORT_CFG_PORT_DIRECTION_HIZ',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a627d716bdff4fe54f3cbf9f2a5b87bf9',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fport_5fdirection_5finput',['IOPORT_CFG_PORT_DIRECTION_INPUT',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a8d597c18cc5d24abc1b70f2526f2b6cb',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fport_5fdirection_5foutput',['IOPORT_CFG_PORT_DIRECTION_OUTPUT',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ab4d8c12714fab80d21b5b5a636f3cf97',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fport_5fdirection_5foutput_5finput',['IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a3a85f3deec88b01065fd3478ba691860',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fport_5foutput_5fhigh',['IOPORT_CFG_PORT_OUTPUT_HIGH',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a4b93b19150d018ab8ba5ef74e2852499',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fport_5foutput_5flow',['IOPORT_CFG_PORT_OUTPUT_LOW',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a1913e3b0734a4be613eb2fba8ec888c5',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fpulldown_5fenable',['IOPORT_CFG_PULLDOWN_ENABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a97baa43b94e675e2a4ae7a90dd4a94c6',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fpullup_5fenable',['IOPORT_CFG_PULLUP_ENABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a925954d59fa1101a4784a0d64a64d133',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fpullup_5fpulldown_5fdisable',['IOPORT_CFG_PULLUP_PULLDOWN_DISABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a3945f91ccb0beb4f87613fa0d9884965',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fslew_5frate_5ffast',['IOPORT_CFG_SLEW_RATE_FAST',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574accc921bf1d788c6f10b0225b65144f00',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fslew_5frate_5fflat',['IOPORT_CFG_SLEW_RATE_FLAT',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a14a3759e7b9db28ecd3e34968619c616',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fslew_5frate_5fslow',['IOPORT_CFG_SLEW_RATE_SLOW',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a9c17101eaef4bf0fd2beb880a29317a8',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fspecial_5fpurpose_5fport_5finput_5fdisable',['IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a968aea46146f3db05b2f9d2e1c29650f',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fspecial_5fpurpose_5fport_5finput_5fenable',['IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a10595587e1c5984cecf3578625c05040',1,'r_ioport_api.h']]], + ['ioport_5fcfg_5fdrive_5fb00',['IOPORT_CFG_DRIVE_B00',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4f3c70e0bd324aecc0fed994903b63b0',1,'IOPORT_CFG_DRIVE_B00(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4f3c70e0bd324aecc0fed994903b63b0',1,'IOPORT_CFG_DRIVE_B00(): bsp_override.h']]], + ['ioport_5fcfg_5fdrive_5fb01',['IOPORT_CFG_DRIVE_B01',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af4952693675255ac32a0813a1100e038',1,'IOPORT_CFG_DRIVE_B01(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af4952693675255ac32a0813a1100e038',1,'IOPORT_CFG_DRIVE_B01(): bsp_override.h']]], + ['ioport_5fcfg_5fdrive_5fb10',['IOPORT_CFG_DRIVE_B10',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac882c17c38a2a20dfd0b5e1dd3eaeaf4',1,'IOPORT_CFG_DRIVE_B10(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac882c17c38a2a20dfd0b5e1dd3eaeaf4',1,'IOPORT_CFG_DRIVE_B10(): bsp_override.h']]], + ['ioport_5fcfg_5fdrive_5fb11',['IOPORT_CFG_DRIVE_B11',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a0c5a07dad389d25a576c734a391ec148',1,'IOPORT_CFG_DRIVE_B11(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a0c5a07dad389d25a576c734a391ec148',1,'IOPORT_CFG_DRIVE_B11(): bsp_override.h']]], + ['ioport_5fcfg_5fnod_5fdisable',['IOPORT_CFG_NOD_DISABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a6d26833fed98c1306a3f41882c24c66d',1,'IOPORT_CFG_NOD_DISABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a6d26833fed98c1306a3f41882c24c66d',1,'IOPORT_CFG_NOD_DISABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fnod_5fenable',['IOPORT_CFG_NOD_ENABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8c15fce9c42b94e63e3bd4bacc36df55',1,'IOPORT_CFG_NOD_ENABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8c15fce9c42b94e63e3bd4bacc36df55',1,'IOPORT_CFG_NOD_ENABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5fb00',['IOPORT_CFG_NOISE_FILTER_DIVIDED_B00',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a06cd1c84c6f44e8d7a932962f605e649',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B00(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a06cd1c84c6f44e8d7a932962f605e649',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B00(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5fb01',['IOPORT_CFG_NOISE_FILTER_DIVIDED_B01',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a57ddc25ef284420d97a12a7eca0a0a9b',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B01(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a57ddc25ef284420d97a12a7eca0a0a9b',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B01(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5fb10',['IOPORT_CFG_NOISE_FILTER_DIVIDED_B10',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a189170b389c1f0430c626bd367b47bf7',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B10(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a189170b389c1f0430c626bd367b47bf7',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B10(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5fb11',['IOPORT_CFG_NOISE_FILTER_DIVIDED_B11',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4e5c1c29a153030dbaeae8b7d6643d48',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B11(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4e5c1c29a153030dbaeae8b7d6643d48',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B11(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f12stage',['IOPORT_CFG_NOISE_FILTER_NUM_12STAGE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af0dbea168d9df29c6a4180e202370f22',1,'IOPORT_CFG_NOISE_FILTER_NUM_12STAGE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af0dbea168d9df29c6a4180e202370f22',1,'IOPORT_CFG_NOISE_FILTER_NUM_12STAGE(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f16stage',['IOPORT_CFG_NOISE_FILTER_NUM_16STAGE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ace057086d321233881c1f335b6764bc2',1,'IOPORT_CFG_NOISE_FILTER_NUM_16STAGE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ace057086d321233881c1f335b6764bc2',1,'IOPORT_CFG_NOISE_FILTER_NUM_16STAGE(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f4stage',['IOPORT_CFG_NOISE_FILTER_NUM_4STAGE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9a30d0a8eb346f1c1951396c0559ef64',1,'IOPORT_CFG_NOISE_FILTER_NUM_4STAGE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9a30d0a8eb346f1c1951396c0559ef64',1,'IOPORT_CFG_NOISE_FILTER_NUM_4STAGE(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f8stage',['IOPORT_CFG_NOISE_FILTER_NUM_8STAGE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab7e5fcab2fd99046fcedb85c34070e2c',1,'IOPORT_CFG_NOISE_FILTER_NUM_8STAGE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab7e5fcab2fd99046fcedb85c34070e2c',1,'IOPORT_CFG_NOISE_FILTER_NUM_8STAGE(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5foff',['IOPORT_CFG_NOISE_FILTER_OFF',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a23f3f6712eefca788aa61da4976fd565',1,'IOPORT_CFG_NOISE_FILTER_OFF(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a23f3f6712eefca788aa61da4976fd565',1,'IOPORT_CFG_NOISE_FILTER_OFF(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fon',['IOPORT_CFG_NOISE_FILTER_ON',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a816a25b17c72bca7e267d47eb7f45dbc',1,'IOPORT_CFG_NOISE_FILTER_ON(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a816a25b17c72bca7e267d47eb7f45dbc',1,'IOPORT_CFG_NOISE_FILTER_ON(): bsp_override.h']]], + ['ioport_5fcfg_5foptions_5ft',['ioport_cfg_options_t',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574',1,'r_ioport.h']]], + ['ioport_5fcfg_5fperipheral_5fpin',['IOPORT_CFG_PERIPHERAL_PIN',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a2066555437a19b9e6e721fb494c8f5c3',1,'IOPORT_CFG_PERIPHERAL_PIN(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a2066555437a19b9e6e721fb494c8f5c3',1,'IOPORT_CFG_PERIPHERAL_PIN(): bsp_override.h']]], + ['ioport_5fcfg_5fport_5fdirection_5fhiz',['IOPORT_CFG_PORT_DIRECTION_HIZ',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a627d716bdff4fe54f3cbf9f2a5b87bf9',1,'IOPORT_CFG_PORT_DIRECTION_HIZ(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a627d716bdff4fe54f3cbf9f2a5b87bf9',1,'IOPORT_CFG_PORT_DIRECTION_HIZ(): bsp_override.h']]], + ['ioport_5fcfg_5fport_5fdirection_5finput',['IOPORT_CFG_PORT_DIRECTION_INPUT',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8d597c18cc5d24abc1b70f2526f2b6cb',1,'IOPORT_CFG_PORT_DIRECTION_INPUT(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8d597c18cc5d24abc1b70f2526f2b6cb',1,'IOPORT_CFG_PORT_DIRECTION_INPUT(): bsp_override.h']]], + ['ioport_5fcfg_5fport_5fdirection_5foutput',['IOPORT_CFG_PORT_DIRECTION_OUTPUT',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab4d8c12714fab80d21b5b5a636f3cf97',1,'IOPORT_CFG_PORT_DIRECTION_OUTPUT(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab4d8c12714fab80d21b5b5a636f3cf97',1,'IOPORT_CFG_PORT_DIRECTION_OUTPUT(): bsp_override.h']]], + ['ioport_5fcfg_5fport_5fdirection_5foutput_5finput',['IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3a85f3deec88b01065fd3478ba691860',1,'IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3a85f3deec88b01065fd3478ba691860',1,'IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT(): bsp_override.h']]], + ['ioport_5fcfg_5fport_5foutput_5fhigh',['IOPORT_CFG_PORT_OUTPUT_HIGH',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4b93b19150d018ab8ba5ef74e2852499',1,'IOPORT_CFG_PORT_OUTPUT_HIGH(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4b93b19150d018ab8ba5ef74e2852499',1,'IOPORT_CFG_PORT_OUTPUT_HIGH(): bsp_override.h']]], + ['ioport_5fcfg_5fport_5foutput_5flow',['IOPORT_CFG_PORT_OUTPUT_LOW',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a1913e3b0734a4be613eb2fba8ec888c5',1,'IOPORT_CFG_PORT_OUTPUT_LOW(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a1913e3b0734a4be613eb2fba8ec888c5',1,'IOPORT_CFG_PORT_OUTPUT_LOW(): bsp_override.h']]], + ['ioport_5fcfg_5fpulldown_5fenable',['IOPORT_CFG_PULLDOWN_ENABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a97baa43b94e675e2a4ae7a90dd4a94c6',1,'IOPORT_CFG_PULLDOWN_ENABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a97baa43b94e675e2a4ae7a90dd4a94c6',1,'IOPORT_CFG_PULLDOWN_ENABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fpullup_5fenable',['IOPORT_CFG_PULLUP_ENABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a925954d59fa1101a4784a0d64a64d133',1,'IOPORT_CFG_PULLUP_ENABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a925954d59fa1101a4784a0d64a64d133',1,'IOPORT_CFG_PULLUP_ENABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fpullup_5fpulldown_5fdisable',['IOPORT_CFG_PULLUP_PULLDOWN_DISABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3945f91ccb0beb4f87613fa0d9884965',1,'IOPORT_CFG_PULLUP_PULLDOWN_DISABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3945f91ccb0beb4f87613fa0d9884965',1,'IOPORT_CFG_PULLUP_PULLDOWN_DISABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fschmitt_5fdisable',['IOPORT_CFG_SCHMITT_DISABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574abaa22c1510b13b07ab320d289584266b',1,'IOPORT_CFG_SCHMITT_DISABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574abaa22c1510b13b07ab320d289584266b',1,'IOPORT_CFG_SCHMITT_DISABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fschmitt_5fenable',['IOPORT_CFG_SCHMITT_ENABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a73cdc97104d6368ec1b37ed3ee39ec2d',1,'IOPORT_CFG_SCHMITT_ENABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a73cdc97104d6368ec1b37ed3ee39ec2d',1,'IOPORT_CFG_SCHMITT_ENABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fslew_5frate_5ffast',['IOPORT_CFG_SLEW_RATE_FAST',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574accc921bf1d788c6f10b0225b65144f00',1,'IOPORT_CFG_SLEW_RATE_FAST(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574accc921bf1d788c6f10b0225b65144f00',1,'IOPORT_CFG_SLEW_RATE_FAST(): bsp_override.h']]], + ['ioport_5fcfg_5fslew_5frate_5fslow',['IOPORT_CFG_SLEW_RATE_SLOW',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9c17101eaef4bf0fd2beb880a29317a8',1,'IOPORT_CFG_SLEW_RATE_SLOW(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9c17101eaef4bf0fd2beb880a29317a8',1,'IOPORT_CFG_SLEW_RATE_SLOW(): bsp_override.h']]], + ['ioport_5fcfg_5fspecial_5fpurpose_5fport_5finput_5fdisable',['IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a968aea46146f3db05b2f9d2e1c29650f',1,'IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a968aea46146f3db05b2f9d2e1c29650f',1,'IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fspecial_5fpurpose_5fport_5finput_5fenable',['IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a10595587e1c5984cecf3578625c05040',1,'IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a10595587e1c5984cecf3578625c05040',1,'IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE(): bsp_override.h']]], ['ioport_5fcfg_5ft',['ioport_cfg_t',['../group___i_o_p_o_r_t___a_p_i.html#structioport__cfg__t',1,'']]], - ['ioport_5fcfg_5ftint_5fdisable',['IOPORT_CFG_TINT_DISABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ac78c3e06c1adb07cd707118f321ef94e',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5ftint_5fenable',['IOPORT_CFG_TINT_ENABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a3691c62fc89eb3e7df1eae9064206c4e',1,'r_ioport_api.h']]], + ['ioport_5fcfg_5ftint_5fdisable',['IOPORT_CFG_TINT_DISABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac78c3e06c1adb07cd707118f321ef94e',1,'IOPORT_CFG_TINT_DISABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac78c3e06c1adb07cd707118f321ef94e',1,'IOPORT_CFG_TINT_DISABLE(): bsp_override.h']]], + ['ioport_5fcfg_5ftint_5fenable',['IOPORT_CFG_TINT_ENABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3691c62fc89eb3e7df1eae9064206c4e',1,'IOPORT_CFG_TINT_ENABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3691c62fc89eb3e7df1eae9064206c4e',1,'IOPORT_CFG_TINT_ENABLE(): bsp_override.h']]], ['ioport_5fctrl_5ft',['ioport_ctrl_t',['../group___i_o_p_o_r_t___a_p_i.html#gafc061c58bb812cb2a8f25222353634cd',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fchannel_5f0',['IOPORT_ETHERNET_CHANNEL_0',['../group___i_o_p_o_r_t___a_p_i.html#ggaf6a78fbc73b4e8acef86a12c21df2da0ad6e933716d34a0fbba5b3d9f589f7637',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fchannel_5f1',['IOPORT_ETHERNET_CHANNEL_1',['../group___i_o_p_o_r_t___a_p_i.html#ggaf6a78fbc73b4e8acef86a12c21df2da0a96f5c107a00efb1c4ccf9905540f1ee6',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fchannel_5fend',['IOPORT_ETHERNET_CHANNEL_END',['../group___i_o_p_o_r_t___a_p_i.html#ggaf6a78fbc73b4e8acef86a12c21df2da0ab054bb3020a4a296f0da7a11362c017c',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fchannel_5ft',['ioport_ethernet_channel_t',['../group___i_o_p_o_r_t___a_p_i.html#gaf6a78fbc73b4e8acef86a12c21df2da0',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fmode_5fend',['IOPORT_ETHERNET_MODE_END',['../group___i_o_p_o_r_t___a_p_i.html#ggacaee6fc466858446638e79354043bb78a398ef6c7ab1704004f04168fb31cf38a',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fmode_5fmii',['IOPORT_ETHERNET_MODE_MII',['../group___i_o_p_o_r_t___a_p_i.html#ggacaee6fc466858446638e79354043bb78a21cfd34dda01172d7b86269be63708bb',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fmode_5frmii',['IOPORT_ETHERNET_MODE_RMII',['../group___i_o_p_o_r_t___a_p_i.html#ggacaee6fc466858446638e79354043bb78abcf9bf493cbb116eec49bc9e21424872',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fmode_5ft',['ioport_ethernet_mode_t',['../group___i_o_p_o_r_t___a_p_i.html#gacaee6fc466858446638e79354043bb78',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fvoltage_5f18',['IOPORT_ETHERNET_VOLTAGE_18',['../group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0a85ecf006ee7e49708ac094d230bc9769',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fvoltage_5f25',['IOPORT_ETHERNET_VOLTAGE_25',['../group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0ac781714cf092bfaa8269439712564efa',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fvoltage_5f33',['IOPORT_ETHERNET_VOLTAGE_33',['../group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0a668aedbed44c6aad2dff4aeafd6cfe31',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fvoltage_5fend',['IOPORT_ETHERNET_VOLTAGE_END',['../group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0a2e9d8318bfb8eccfcb8b4a38ac7718d0',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fvoltage_5ft',['ioport_ethernet_voltage_t',['../group___i_o_p_o_r_t___a_p_i.html#ga76937b0cdeebfff6a5b22e5e89cb18b0',1,'r_ioport_api.h']]], + ['ioport_5fevent_5fcontrol_5fdisable',['IOPORT_EVENT_CONTROL_DISABLE',['../group___i_o_p_o_r_t.html#gga04dddafb062136b04f33eeea27648397ae908e927047c7e835f63c760732fc8f8',1,'r_ioport.h']]], + ['ioport_5fevent_5fcontrol_5fenable',['IOPORT_EVENT_CONTROL_ENABLE',['../group___i_o_p_o_r_t.html#gga04dddafb062136b04f33eeea27648397a79407e79fac3398eb44cb42f2b1ccbf7',1,'r_ioport.h']]], + ['ioport_5fevent_5fcontrol_5ft',['ioport_event_control_t',['../group___i_o_p_o_r_t.html#ga04dddafb062136b04f33eeea27648397',1,'r_ioport.h']]], + ['ioport_5fevent_5fdetection_5fboth_5fegde',['IOPORT_EVENT_DETECTION_BOTH_EGDE',['../group___i_o_p_o_r_t.html#gga4f8bf2319abee01387ae77ca7e85fb0aa1775a3e0a4f16c2142edf5630a2f8fe7',1,'r_ioport.h']]], + ['ioport_5fevent_5fdetection_5ffalling_5fedge',['IOPORT_EVENT_DETECTION_FALLING_EDGE',['../group___i_o_p_o_r_t.html#gga4f8bf2319abee01387ae77ca7e85fb0aac82e04418fb0057bd1338d7b164646aa',1,'r_ioport.h']]], + ['ioport_5fevent_5fdetection_5frising_5fedge',['IOPORT_EVENT_DETECTION_RISING_EDGE',['../group___i_o_p_o_r_t.html#gga4f8bf2319abee01387ae77ca7e85fb0aa9c18854cc01e8280ace1975aa3528619',1,'r_ioport.h']]], + ['ioport_5fevent_5fdetection_5ft',['ioport_event_detection_t',['../group___i_o_p_o_r_t.html#ga4f8bf2319abee01387ae77ca7e85fb0a',1,'r_ioport.h']]], + ['ioport_5fevent_5fdirection_5finput',['IOPORT_EVENT_DIRECTION_INPUT',['../group___i_o_p_o_r_t.html#gga06a4ad7ce5b0c573328feccb1e2c54fbaf147669fc3abf3e19614e0f246bcd3a6',1,'r_ioport.h']]], + ['ioport_5fevent_5fdirection_5foutput',['IOPORT_EVENT_DIRECTION_OUTPUT',['../group___i_o_p_o_r_t.html#gga06a4ad7ce5b0c573328feccb1e2c54fba36d0452e98647759803ddc117bbc1b40',1,'r_ioport.h']]], + ['ioport_5fevent_5fdirection_5ft',['ioport_event_direction_t',['../group___i_o_p_o_r_t.html#ga06a4ad7ce5b0c573328feccb1e2c54fb',1,'r_ioport.h']]], + ['ioport_5fevent_5fgroup_5finput_5ft',['ioport_event_group_input_t',['../group___i_o_p_o_r_t.html#structioport__event__group__input__t',1,'']]], + ['ioport_5fevent_5fgroup_5foutput_5ft',['ioport_event_group_output_t',['../group___i_o_p_o_r_t.html#structioport__event__group__output__t',1,'']]], + ['ioport_5fevent_5finitial_5fbuffer_5fvalue_5fhigh',['IOPORT_EVENT_INITIAL_BUFFER_VALUE_HIGH',['../group___i_o_p_o_r_t.html#ggad182b542c7455ca61b70f0eeae3a380da1225085ace99cb7e29b0edf93c641964',1,'r_ioport.h']]], + ['ioport_5fevent_5finitial_5fbuffer_5fvalue_5flow',['IOPORT_EVENT_INITIAL_BUFFER_VALUE_LOW',['../group___i_o_p_o_r_t.html#ggad182b542c7455ca61b70f0eeae3a380daaab0a473693e38386dbfe2790c08f477',1,'r_ioport.h']]], + ['ioport_5fevent_5finitial_5fbuffer_5fvalue_5ft',['ioport_event_initial_buffer_value_t',['../group___i_o_p_o_r_t.html#gad182b542c7455ca61b70f0eeae3a380d',1,'r_ioport.h']]], + ['ioport_5fevent_5foutput_5foperation_5fbuffer',['IOPORT_EVENT_OUTPUT_OPERATION_BUFFER',['../group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76ea3d60129c28b149e16e64b72f2eeb972b',1,'r_ioport.h']]], + ['ioport_5fevent_5foutput_5foperation_5fhigh',['IOPORT_EVENT_OUTPUT_OPERATION_HIGH',['../group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76ea62fd4002a13cc7fcb07c3b5814eda983',1,'r_ioport.h']]], + ['ioport_5fevent_5foutput_5foperation_5flow',['IOPORT_EVENT_OUTPUT_OPERATION_LOW',['../group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76eaafb9b741a35dfd3f106e5b4e21cbb194',1,'r_ioport.h']]], + ['ioport_5fevent_5foutput_5foperation_5ft',['ioport_event_output_operation_t',['../group___i_o_p_o_r_t.html#ga6baec76057e6dbc11b3de637ba3ca76e',1,'r_ioport.h']]], + ['ioport_5fevent_5foutput_5foperation_5ftoggle',['IOPORT_EVENT_OUTPUT_OPERATION_TOGGLE',['../group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76eac8f41721c8941ae9416e6d087d4698be',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fnone',['IOPORT_EVENT_PIN_SELECTION_NONE',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a5c3f74d09c25193ae18d86a96486dd0a',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f0',['IOPORT_EVENT_PIN_SELECTION_PIN_0',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a471a5ced9edf3fa45a5e7eb9edcad6e5',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f1',['IOPORT_EVENT_PIN_SELECTION_PIN_1',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3af429ab99f338e50f87fb142003c66fdb',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f2',['IOPORT_EVENT_PIN_SELECTION_PIN_2',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a8fce07d6436c77998f57f299f6f4299f',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f3',['IOPORT_EVENT_PIN_SELECTION_PIN_3',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a1f67b9c95b521733719d929698d5fe70',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f4',['IOPORT_EVENT_PIN_SELECTION_PIN_4',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a8450fceb594a4085be3eadbc0c37e2f3',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f5',['IOPORT_EVENT_PIN_SELECTION_PIN_5',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3ad0927af63b964b328c23b86ffe02bc4d',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f6',['IOPORT_EVENT_PIN_SELECTION_PIN_6',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3aaacc4bcde3273b270b49be1cc4313e00',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f7',['IOPORT_EVENT_PIN_SELECTION_PIN_7',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3ac9f5095893196090d15c2f7dc08210ad',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5ft',['ioport_event_pin_selection_t',['../group___i_o_p_o_r_t.html#gac5793f51f8a5eb8095c52f9d633f94c3',1,'r_ioport.h']]], + ['ioport_5fevent_5fsingle_5ft',['ioport_event_single_t',['../group___i_o_p_o_r_t.html#structioport__event__single__t',1,'']]], + ['ioport_5fextend_5fcfg_5ft',['ioport_extend_cfg_t',['../group___i_o_p_o_r_t.html#structioport__extend__cfg__t',1,'']]], ['ioport_5finstance_5fctrl_5ft',['ioport_instance_ctrl_t',['../group___i_o_p_o_r_t.html#structioport__instance__ctrl__t',1,'']]], ['ioport_5finstance_5ft',['ioport_instance_t',['../group___i_o_p_o_r_t___a_p_i.html#structioport__instance__t',1,'']]], - ['ioport_5fnmi',['IOPORT_NMI',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea837ea61cf43956e07dac2caf276ea8db',1,'r_ioport.h']]], - ['ioport_5fperipheral_5fend',['IOPORT_PERIPHERAL_END',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a9885514f43d9d1c466ae689ef3608a9a',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5fmode0',['IOPORT_PERIPHERAL_MODE0',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a576f1af4e835f4533486d91cca50d8e9',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5fmode1',['IOPORT_PERIPHERAL_MODE1',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a5a8bf28d2e93cb6235e9a7beea2bfa0e',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5fmode2',['IOPORT_PERIPHERAL_MODE2',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ad7f23c31f6b56d6cf7b1024b8ea46b03',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5fmode3',['IOPORT_PERIPHERAL_MODE3',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a44817e0b76e81f0353e70fce82f556fa',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5fmode4',['IOPORT_PERIPHERAL_MODE4',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8afb9e29f050c27973d20c0273f88c6207',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5fmode5',['IOPORT_PERIPHERAL_MODE5',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8aa285c9c361e0be95e5e87e788bd8b2de',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5ft',['ioport_peripheral_t',['../group___i_o_p_o_r_t___a_p_i.html#gaebbb969fda93422aaf1878d6f4ff8fe8',1,'r_ioport_api.h']]], + ['ioport_5fnoise_5ffilter_5fdreq_5fport_5foffset_5ft',['ioport_noise_filter_dreq_port_offset_t',['../group___i_o_p_o_r_t.html#gaaa22d49ec43030ad6ed6bb18ed402f8d',1,'r_ioport.h']]], + ['ioport_5fnoise_5ffilter_5firq_5fport_5foffset_5ft',['ioport_noise_filter_irq_port_offset_t',['../group___i_o_p_o_r_t.html#ga460f424ee2c2c60d463bbdd45f9a2d4b',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode0',['IOPORT_PERIPHERAL_MODE0',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a576f1af4e835f4533486d91cca50d8e9',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode1',['IOPORT_PERIPHERAL_MODE1',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a5a8bf28d2e93cb6235e9a7beea2bfa0e',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode10',['IOPORT_PERIPHERAL_MODE10',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ac5c270420b2ae084817ee66214bbab36',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode11',['IOPORT_PERIPHERAL_MODE11',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a59e432aac051ffe1f8cbf0c34bff6bec',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode12',['IOPORT_PERIPHERAL_MODE12',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8abc5b8302f7e467ec4c95faeb996cc012',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode13',['IOPORT_PERIPHERAL_MODE13',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ad95d5ee06e7b584f16ebe622321a4f1c',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode14',['IOPORT_PERIPHERAL_MODE14',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a0956043c330b44ecbdc66009955514cc',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode15',['IOPORT_PERIPHERAL_MODE15',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a79024706312ec731e9bf51d957ebbe71',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode2',['IOPORT_PERIPHERAL_MODE2',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ad7f23c31f6b56d6cf7b1024b8ea46b03',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode3',['IOPORT_PERIPHERAL_MODE3',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a44817e0b76e81f0353e70fce82f556fa',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode4',['IOPORT_PERIPHERAL_MODE4',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8afb9e29f050c27973d20c0273f88c6207',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode5',['IOPORT_PERIPHERAL_MODE5',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8aa285c9c361e0be95e5e87e788bd8b2de',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode6',['IOPORT_PERIPHERAL_MODE6',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a8f3a71786ad28300fa1a6ac3c13c2785',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode7',['IOPORT_PERIPHERAL_MODE7',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ae66fce3d3c2f6f91af8c75de2a05ae72',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode8',['IOPORT_PERIPHERAL_MODE8',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ac3fc51d181290cff176e3aea6b74e37d',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode9',['IOPORT_PERIPHERAL_MODE9',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a1279dc7076cbf2067f29fc53d5f40f03',1,'r_ioport.h']]], + ['ioport_5fperipheral_5ft',['ioport_peripheral_t',['../group___i_o_p_o_r_t.html#gaebbb969fda93422aaf1878d6f4ff8fe8',1,'r_ioport.h']]], ['ioport_5fpfs_5fwrite_5fdisable',['IOPORT_PFS_WRITE_DISABLE',['../group___i_o_p_o_r_t___a_p_i.html#gga25ef8d1291cc073dd48f57b16d91c13eaf67cf250303fd4692c46717f0b7a9412',1,'r_ioport_api.h']]], ['ioport_5fpfs_5fwrite_5fenable',['IOPORT_PFS_WRITE_ENABLE',['../group___i_o_p_o_r_t___a_p_i.html#gga25ef8d1291cc073dd48f57b16d91c13ea5d94e8d4ba61664a407a0d84538fc298',1,'r_ioport_api.h']]], ['ioport_5fpin_5fcfg_5ft',['ioport_pin_cfg_t',['../group___i_o_p_o_r_t___a_p_i.html#structioport__pin__cfg__t',1,'']]], - ['ioport_5fport_5f00_5fpin_5f00',['IOPORT_PORT_00_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9e8641427dce87cbb4b8e94da9988bb6',1,'r_ioport.h']]], - ['ioport_5fport_5f00_5fpin_5f01',['IOPORT_PORT_00_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa43e0035d6e67601f3e32afe2c866302',1,'r_ioport.h']]], - ['ioport_5fport_5f01_5fpin_5f00',['IOPORT_PORT_01_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea43352cc8543ee207ea9d59a9a61cea97',1,'r_ioport.h']]], - ['ioport_5fport_5f01_5fpin_5f01',['IOPORT_PORT_01_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2232cca0e019d0de7c090e0a4f46b040',1,'r_ioport.h']]], - ['ioport_5fport_5f02_5fpin_5f00',['IOPORT_PORT_02_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaccddb043ca627fb3f174e3c212c021c9',1,'r_ioport.h']]], - ['ioport_5fport_5f02_5fpin_5f01',['IOPORT_PORT_02_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea574b809835bddedd610d50bf74d696e1',1,'r_ioport.h']]], - ['ioport_5fport_5f03_5fpin_5f00',['IOPORT_PORT_03_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eade503295c3201143266caecb21087c0e',1,'r_ioport.h']]], - ['ioport_5fport_5f03_5fpin_5f01',['IOPORT_PORT_03_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea766a886ad8d781f1e027033bb4728169',1,'r_ioport.h']]], - ['ioport_5fport_5f04_5fpin_5f00',['IOPORT_PORT_04_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaed350ead2aa5cfc5b02fe968eed69c6e',1,'r_ioport.h']]], - ['ioport_5fport_5f04_5fpin_5f01',['IOPORT_PORT_04_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea008601cafccc5ef423b7b0fa2f10e774',1,'r_ioport.h']]], - ['ioport_5fport_5f05_5fpin_5f00',['IOPORT_PORT_05_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea73e637eb4faa0c0306364c7df1af095f',1,'r_ioport.h']]], - ['ioport_5fport_5f05_5fpin_5f01',['IOPORT_PORT_05_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea0c7644372a96f31edee311d1a3a8b2f2',1,'r_ioport.h']]], - ['ioport_5fport_5f05_5fpin_5f02',['IOPORT_PORT_05_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaec9b4eece5b92f63ca357e879d1a5b99',1,'r_ioport.h']]], - ['ioport_5fport_5f06_5fpin_5f00',['IOPORT_PORT_06_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead6f7b58c3226756f42a3e7683b536b13',1,'r_ioport.h']]], - ['ioport_5fport_5f06_5fpin_5f01',['IOPORT_PORT_06_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac8db29b7a712c7a4396332b902f87eab',1,'r_ioport.h']]], - ['ioport_5fport_5f07_5fpin_5f00',['IOPORT_PORT_07_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea419e03f7c7ca6e7e8c32710146ef628c',1,'r_ioport.h']]], - ['ioport_5fport_5f07_5fpin_5f01',['IOPORT_PORT_07_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab52bfe38ab8f85dc73ff58c440224ab5',1,'r_ioport.h']]], - ['ioport_5fport_5f07_5fpin_5f02',['IOPORT_PORT_07_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa47d77df21bad7b6b52e916e4f778382',1,'r_ioport.h']]], - ['ioport_5fport_5f08_5fpin_5f00',['IOPORT_PORT_08_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf7f5fc685631de387d29708b82032d42',1,'r_ioport.h']]], - ['ioport_5fport_5f08_5fpin_5f01',['IOPORT_PORT_08_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2da4f3380840124904c73877d5d9f947',1,'r_ioport.h']]], - ['ioport_5fport_5f08_5fpin_5f02',['IOPORT_PORT_08_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5296b9fb15049795284d6f7b06d7adbc',1,'r_ioport.h']]], - ['ioport_5fport_5f09_5fpin_5f00',['IOPORT_PORT_09_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea55123dd39739862f468305f1d80cd696',1,'r_ioport.h']]], - ['ioport_5fport_5f09_5fpin_5f01',['IOPORT_PORT_09_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9135241bca61a6acb3c444856b652b69',1,'r_ioport.h']]], - ['ioport_5fport_5f10_5fpin_5f00',['IOPORT_PORT_10_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4a316ebb9212390c839de79bf78fb699',1,'r_ioport.h']]], - ['ioport_5fport_5f10_5fpin_5f01',['IOPORT_PORT_10_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab18dacb19cfb46999a130cb41b5bd011',1,'r_ioport.h']]], - ['ioport_5fport_5f11_5fpin_5f00',['IOPORT_PORT_11_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9476c736ebc3faaf91c4807939a24dee',1,'r_ioport.h']]], - ['ioport_5fport_5f11_5fpin_5f01',['IOPORT_PORT_11_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea520361cb7a3c75b3b53de8064c568081',1,'r_ioport.h']]], - ['ioport_5fport_5f12_5fpin_5f00',['IOPORT_PORT_12_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea52513b77dbaf4f5b8960a87a81a06e79',1,'r_ioport.h']]], - ['ioport_5fport_5f12_5fpin_5f01',['IOPORT_PORT_12_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaecc9e48293365e0dd2b321efb6f5d39a',1,'r_ioport.h']]], - ['ioport_5fport_5f13_5fpin_5f00',['IOPORT_PORT_13_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5b0b18f88c4783b6bc28b3e7b51e4c03',1,'r_ioport.h']]], - ['ioport_5fport_5f13_5fpin_5f01',['IOPORT_PORT_13_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea99dff2c1a30315ab757bcc4dd902ff78',1,'r_ioport.h']]], - ['ioport_5fport_5f13_5fpin_5f02',['IOPORT_PORT_13_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8f5be37feb4892e7259c405b9e80cfc8',1,'r_ioport.h']]], - ['ioport_5fport_5f14_5fpin_5f00',['IOPORT_PORT_14_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eafe21679da09abea718bb09af6174304e',1,'r_ioport.h']]], - ['ioport_5fport_5f14_5fpin_5f01',['IOPORT_PORT_14_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2857769c0ab24657b2319590a25ec47a',1,'r_ioport.h']]], - ['ioport_5fport_5f15_5fpin_5f00',['IOPORT_PORT_15_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2a58348e464d6088768d03d709d8a26c',1,'r_ioport.h']]], - ['ioport_5fport_5f15_5fpin_5f01',['IOPORT_PORT_15_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf0a8acc41485bd9ee6b1fd7477bae513',1,'r_ioport.h']]], - ['ioport_5fport_5f16_5fpin_5f00',['IOPORT_PORT_16_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1f88aed824ad7ccc4e75d3534d8dce7f',1,'r_ioport.h']]], - ['ioport_5fport_5f16_5fpin_5f01',['IOPORT_PORT_16_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab7c4762a756f042c67897dd2c1e01979',1,'r_ioport.h']]], - ['ioport_5fport_5f17_5fpin_5f00',['IOPORT_PORT_17_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea51bd16052f2785769c23c64d60bac96c',1,'r_ioport.h']]], - ['ioport_5fport_5f17_5fpin_5f01',['IOPORT_PORT_17_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4edac109686b07e6e4f372f2e51e80e0',1,'r_ioport.h']]], - ['ioport_5fport_5f17_5fpin_5f02',['IOPORT_PORT_17_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3675fc32067ccd2882654241b29e62de',1,'r_ioport.h']]], - ['ioport_5fport_5f18_5fpin_5f00',['IOPORT_PORT_18_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea82ef8efec0a83b34ead4bc3f43128a6d',1,'r_ioport.h']]], - ['ioport_5fport_5f18_5fpin_5f01',['IOPORT_PORT_18_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2a8900e165fe1de4b6b842c2526d5e83',1,'r_ioport.h']]], - ['ioport_5fport_5f19_5fpin_5f00',['IOPORT_PORT_19_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac1e3d1a4944c6d997a33ea1801378cd8',1,'r_ioport.h']]], - ['ioport_5fport_5f19_5fpin_5f01',['IOPORT_PORT_19_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead42cf49d73c876c64dcab5d7408931df',1,'r_ioport.h']]], - ['ioport_5fport_5f20_5fpin_5f00',['IOPORT_PORT_20_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eace68a0576d4a5ff8df48808cfdeb8d98',1,'r_ioport.h']]], - ['ioport_5fport_5f20_5fpin_5f01',['IOPORT_PORT_20_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3cacfd8ce91b532493d14c75c7075a03',1,'r_ioport.h']]], - ['ioport_5fport_5f20_5fpin_5f02',['IOPORT_PORT_20_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea848a705c8ca2c2633e8f53e020f42015',1,'r_ioport.h']]], - ['ioport_5fport_5f21_5fpin_5f00',['IOPORT_PORT_21_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3d09e5b1493cc84079d401d2e7c357d5',1,'r_ioport.h']]], - ['ioport_5fport_5f21_5fpin_5f01',['IOPORT_PORT_21_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eabc7758254f4520983e755e6657dd3db8',1,'r_ioport.h']]], - ['ioport_5fport_5f22_5fpin_5f00',['IOPORT_PORT_22_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea24ad0afca1280d4bdaba9d099cc04f1e',1,'r_ioport.h']]], - ['ioport_5fport_5f22_5fpin_5f01',['IOPORT_PORT_22_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab21e3adba1d1c2a7610f65d78a5a2de5',1,'r_ioport.h']]], - ['ioport_5fport_5f23_5fpin_5f00',['IOPORT_PORT_23_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85b1edd2ae53a6c8fc908cd8d8e32949',1,'r_ioport.h']]], - ['ioport_5fport_5f23_5fpin_5f01',['IOPORT_PORT_23_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf7c2e37ea2ed8dbf8bd1ce4d5639c7cf',1,'r_ioport.h']]], - ['ioport_5fport_5f24_5fpin_5f00',['IOPORT_PORT_24_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2bba85a684b1b2acad5488f8aa9a0b49',1,'r_ioport.h']]], - ['ioport_5fport_5f24_5fpin_5f01',['IOPORT_PORT_24_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa4b7d5b6cd1e1348d889ff4d629def77',1,'r_ioport.h']]], - ['ioport_5fport_5f25_5fpin_5f00',['IOPORT_PORT_25_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf804b7f7a2d663c0ec96f1fc04d87c8b',1,'r_ioport.h']]], - ['ioport_5fport_5f25_5fpin_5f01',['IOPORT_PORT_25_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea818baced7ae6d55d2d9ae53f3fa05727',1,'r_ioport.h']]], - ['ioport_5fport_5f26_5fpin_5f00',['IOPORT_PORT_26_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf8a2fbf190a7253cf15b62fb4b1ed250',1,'r_ioport.h']]], - ['ioport_5fport_5f26_5fpin_5f01',['IOPORT_PORT_26_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa5c2f062b6dc22153c51224f5bf74831',1,'r_ioport.h']]], - ['ioport_5fport_5f27_5fpin_5f00',['IOPORT_PORT_27_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea434f1230c094bb875142ba381405c771',1,'r_ioport.h']]], - ['ioport_5fport_5f27_5fpin_5f01',['IOPORT_PORT_27_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea34d2b60eeb41747629287e896ff2e023',1,'r_ioport.h']]], - ['ioport_5fport_5f28_5fpin_5f00',['IOPORT_PORT_28_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaae17894663a054577834088bf4699d84',1,'r_ioport.h']]], - ['ioport_5fport_5f28_5fpin_5f01',['IOPORT_PORT_28_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6f2d280a974fcb51540e44652a540b7c',1,'r_ioport.h']]], - ['ioport_5fport_5f29_5fpin_5f00',['IOPORT_PORT_29_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eabb4c2bfccb51a7c79562e6e90100f27b',1,'r_ioport.h']]], - ['ioport_5fport_5f29_5fpin_5f01',['IOPORT_PORT_29_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacca4bf7e56b59adf9ef018f42dde6620',1,'r_ioport.h']]], - ['ioport_5fport_5f30_5fpin_5f00',['IOPORT_PORT_30_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa0925fbbe23680defb4e6302c0aa2349',1,'r_ioport.h']]], - ['ioport_5fport_5f30_5fpin_5f01',['IOPORT_PORT_30_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf30a0d759b8157b155be988101c69710',1,'r_ioport.h']]], - ['ioport_5fport_5f31_5fpin_5f00',['IOPORT_PORT_31_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead7622903be00b10039f5987e3bf6f8e6',1,'r_ioport.h']]], - ['ioport_5fport_5f31_5fpin_5f01',['IOPORT_PORT_31_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea268e2121d6a01e09280e75fa1ada4d3a',1,'r_ioport.h']]], - ['ioport_5fport_5f32_5fpin_5f00',['IOPORT_PORT_32_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea772c204e2baf5217fdb0ec708673b035',1,'r_ioport.h']]], - ['ioport_5fport_5f32_5fpin_5f01',['IOPORT_PORT_32_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8f143ad244f73b8f02c3f4eac606935c',1,'r_ioport.h']]], - ['ioport_5fport_5f33_5fpin_5f00',['IOPORT_PORT_33_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea35c44d77c4fd2847baaf885a720bb5a8',1,'r_ioport.h']]], - ['ioport_5fport_5f33_5fpin_5f01',['IOPORT_PORT_33_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadb25625b3e64951140630eb72d8ec9d7',1,'r_ioport.h']]], - ['ioport_5fport_5f34_5fpin_5f00',['IOPORT_PORT_34_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac53340cbc4667d63cb9964a2f3a0ab3a',1,'r_ioport.h']]], - ['ioport_5fport_5f34_5fpin_5f01',['IOPORT_PORT_34_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf0f0d0ddab21c0d394a1fea1d6255815',1,'r_ioport.h']]], - ['ioport_5fport_5f35_5fpin_5f00',['IOPORT_PORT_35_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2517ff700ae9cbd08c9afa4bf2c6a5ba',1,'r_ioport.h']]], - ['ioport_5fport_5f35_5fpin_5f01',['IOPORT_PORT_35_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1215ed3fe9e45dc1fed620151a4c0fac',1,'r_ioport.h']]], - ['ioport_5fport_5f36_5fpin_5f00',['IOPORT_PORT_36_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea06732f1dfb71eb77e409a304e9e07dd5',1,'r_ioport.h']]], - ['ioport_5fport_5f36_5fpin_5f01',['IOPORT_PORT_36_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea93f0a6b6849fcd4e5776d7b73a27de41',1,'r_ioport.h']]], - ['ioport_5fport_5f37_5fpin_5f00',['IOPORT_PORT_37_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaceef8d66de036d8243971e09c734745d',1,'r_ioport.h']]], - ['ioport_5fport_5f37_5fpin_5f01',['IOPORT_PORT_37_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac9c963ad72529582b6a7c9610c577438',1,'r_ioport.h']]], - ['ioport_5fport_5f37_5fpin_5f02',['IOPORT_PORT_37_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea11ccfc96a5b692f76fe8438000a4ee1c',1,'r_ioport.h']]], - ['ioport_5fport_5f38_5fpin_5f00',['IOPORT_PORT_38_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea49442ae10c29c3813e551bfb47857c3a',1,'r_ioport.h']]], - ['ioport_5fport_5f38_5fpin_5f01',['IOPORT_PORT_38_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3b2d043c3624ad44607cfff3d830508f',1,'r_ioport.h']]], - ['ioport_5fport_5f39_5fpin_5f00',['IOPORT_PORT_39_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea7603fc9dff5daf10f6ea048074d8a3b1',1,'r_ioport.h']]], - ['ioport_5fport_5f39_5fpin_5f01',['IOPORT_PORT_39_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8f7dc4da027a768087f66e29357decf6',1,'r_ioport.h']]], - ['ioport_5fport_5f39_5fpin_5f02',['IOPORT_PORT_39_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadd6ef9d4c32065ffd10115120f10875d',1,'r_ioport.h']]], - ['ioport_5fport_5f40_5fpin_5f00',['IOPORT_PORT_40_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae1efb56949dcafe26fb4533344e05de4',1,'r_ioport.h']]], - ['ioport_5fport_5f40_5fpin_5f01',['IOPORT_PORT_40_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea03ce087f738cf60211d1b784d2104298',1,'r_ioport.h']]], - ['ioport_5fport_5f40_5fpin_5f02',['IOPORT_PORT_40_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3d8aad86bb03fe49685ce30174d42629',1,'r_ioport.h']]], - ['ioport_5fport_5f41_5fpin_5f00',['IOPORT_PORT_41_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea63e82c02108d13c80fe9c63345a342b1',1,'r_ioport.h']]], - ['ioport_5fport_5f41_5fpin_5f01',['IOPORT_PORT_41_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea55571b3fd29a380dcc685d2a96e7b911',1,'r_ioport.h']]], - ['ioport_5fport_5f42_5fpin_5f00',['IOPORT_PORT_42_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead1d820e91b2a4527e30edd99baf4ddb5',1,'r_ioport.h']]], - ['ioport_5fport_5f42_5fpin_5f01',['IOPORT_PORT_42_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa6c3592451584e70f36ab179635d2f7f',1,'r_ioport.h']]], - ['ioport_5fport_5f42_5fpin_5f02',['IOPORT_PORT_42_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaff56dcaf2d1f75b737a2148013ae7cb9',1,'r_ioport.h']]], - ['ioport_5fport_5f42_5fpin_5f03',['IOPORT_PORT_42_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead846eb09dca598f33cb0e67f8f2d5939',1,'r_ioport.h']]], - ['ioport_5fport_5f42_5fpin_5f04',['IOPORT_PORT_42_PIN_04',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae05c2ca8144ab1655c21d4b4500e95b7',1,'r_ioport.h']]], - ['ioport_5fport_5f43_5fpin_5f00',['IOPORT_PORT_43_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacdf0005bb30c87ca6fe3175d331a9caf',1,'r_ioport.h']]], - ['ioport_5fport_5f43_5fpin_5f01',['IOPORT_PORT_43_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacfb029998452b9cb9186499e7057ed70',1,'r_ioport.h']]], - ['ioport_5fport_5f43_5fpin_5f02',['IOPORT_PORT_43_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea96a332bc30621413ab2d9fdfd85563c4',1,'r_ioport.h']]], - ['ioport_5fport_5f43_5fpin_5f03',['IOPORT_PORT_43_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea61161beff96648267c82588e10c0a6fa',1,'r_ioport.h']]], - ['ioport_5fport_5f44_5fpin_5f00',['IOPORT_PORT_44_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6d00496a003e48a7d8b1170bafb9157d',1,'r_ioport.h']]], - ['ioport_5fport_5f44_5fpin_5f01',['IOPORT_PORT_44_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea75ae1e764d349da782bab9cbf1d9ecb0',1,'r_ioport.h']]], - ['ioport_5fport_5f44_5fpin_5f02',['IOPORT_PORT_44_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea602aaee12cfedbbd7a45ac52491a931e',1,'r_ioport.h']]], - ['ioport_5fport_5f44_5fpin_5f03',['IOPORT_PORT_44_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6db1f2c8912880f0a5b12de3bc150e7c',1,'r_ioport.h']]], - ['ioport_5fport_5f45_5fpin_5f00',['IOPORT_PORT_45_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacd8f65d2924a0afc8ce467f8d68e3325',1,'r_ioport.h']]], - ['ioport_5fport_5f45_5fpin_5f01',['IOPORT_PORT_45_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea01acb4cdb777dba092b2a380406c03fe',1,'r_ioport.h']]], - ['ioport_5fport_5f45_5fpin_5f02',['IOPORT_PORT_45_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab567b92c616b560f30e93d16d3391119',1,'r_ioport.h']]], - ['ioport_5fport_5f45_5fpin_5f03',['IOPORT_PORT_45_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85e6369b71fe56afa6d76ff489edd066',1,'r_ioport.h']]], - ['ioport_5fport_5f46_5fpin_5f00',['IOPORT_PORT_46_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85ebd2058b57e8af5d514057de0eb65b',1,'r_ioport.h']]], - ['ioport_5fport_5f46_5fpin_5f01',['IOPORT_PORT_46_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadae61ab83263cd30bde872e7d64e5a7e',1,'r_ioport.h']]], - ['ioport_5fport_5f46_5fpin_5f02',['IOPORT_PORT_46_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9863a865ad695de365f91f935d1052fc',1,'r_ioport.h']]], - ['ioport_5fport_5f46_5fpin_5f03',['IOPORT_PORT_46_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea35b4a0ced608f3e7d26f9e7bc046b796',1,'r_ioport.h']]], - ['ioport_5fport_5f47_5fpin_5f00',['IOPORT_PORT_47_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf0d44ed8ffe15d0e262f3acc77033796',1,'r_ioport.h']]], - ['ioport_5fport_5f47_5fpin_5f01',['IOPORT_PORT_47_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa84fc759a1a78a36a4a23f4ebb194d8f',1,'r_ioport.h']]], - ['ioport_5fport_5f47_5fpin_5f02',['IOPORT_PORT_47_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea25f5bd78838dffd5c27b17afb70fa691',1,'r_ioport.h']]], - ['ioport_5fport_5f47_5fpin_5f03',['IOPORT_PORT_47_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac331aec700b594f3cb5d1f46cf9f37b4',1,'r_ioport.h']]], - ['ioport_5fport_5f48_5fpin_5f00',['IOPORT_PORT_48_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaefb8b85fc7868573c775a508f79299fb',1,'r_ioport.h']]], - ['ioport_5fport_5f48_5fpin_5f01',['IOPORT_PORT_48_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea28d2b880c59b99ca445fdcd5cbce2683',1,'r_ioport.h']]], - ['ioport_5fport_5f48_5fpin_5f02',['IOPORT_PORT_48_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85a5b29dc69dbbd49b7c313f0876e668',1,'r_ioport.h']]], - ['ioport_5fport_5f48_5fpin_5f03',['IOPORT_PORT_48_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea37557bcc8dbdc94c0ec3384e4b951e46',1,'r_ioport.h']]], - ['ioport_5fport_5f48_5fpin_5f04',['IOPORT_PORT_48_PIN_04',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea188e17e95c4825d3604cfe19e60ac21f',1,'r_ioport.h']]], - ['ioport_5fport_5fpin_5ft',['ioport_port_pin_t',['../group___i_o_p_o_r_t.html#ga3a0a7f66458384069f25931ecb83840e',1,'r_ioport.h']]], ['ioport_5fpwpr_5ft',['ioport_pwpr_t',['../group___i_o_p_o_r_t___a_p_i.html#ga25ef8d1291cc073dd48f57b16d91c13e',1,'r_ioport_api.h']]], - ['ioport_5fqspi0_5fio0',['IOPORT_QSPI0_IO0',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa92561cb3f93b3f0957bfa8d3b1e1546',1,'r_ioport.h']]], - ['ioport_5fqspi0_5fio1',['IOPORT_QSPI0_IO1',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea144be6f5fc2b813888b674368ec9f39a',1,'r_ioport.h']]], - ['ioport_5fqspi0_5fio2',['IOPORT_QSPI0_IO2',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae2c00b6bf6c44eb8b0204dac0733bdc8',1,'r_ioport.h']]], - ['ioport_5fqspi0_5fio3',['IOPORT_QSPI0_IO3',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae7e423a820f12cdf7f716128b4025952',1,'r_ioport.h']]], - ['ioport_5fqspi0_5fspclk',['IOPORT_QSPI0_SPCLK',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea48de60bd8662827861ae919950ff59a5',1,'r_ioport.h']]], - ['ioport_5fqspi0_5fssl',['IOPORT_QSPI0_SSL',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf3fb451820b03a63a245bc2d30c73ab3',1,'r_ioport.h']]], - ['ioport_5fqspi1_5fio0',['IOPORT_QSPI1_IO0',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadb1891675452e2fac89e1191ee42f0e0',1,'r_ioport.h']]], - ['ioport_5fqspi1_5fio1',['IOPORT_QSPI1_IO1',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadddbae4c2e5a5d5984627fc9f218418b',1,'r_ioport.h']]], - ['ioport_5fqspi1_5fio2',['IOPORT_QSPI1_IO2',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac4cfe7af0a59bdf8c0fb629e42e9908b',1,'r_ioport.h']]], - ['ioport_5fqspi1_5fio3',['IOPORT_QSPI1_IO3',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5dcde61ab3cc4c135683427b8874cbf5',1,'r_ioport.h']]], - ['ioport_5fqspi1_5fspclk',['IOPORT_QSPI1_SPCLK',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaae6d884cdb41ce1709161c3bdf9ce945',1,'r_ioport.h']]], - ['ioport_5fqspi1_5fssl',['IOPORT_QSPI1_SSL',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab2667bb41ffb795c8bc65735c2f5d424',1,'r_ioport.h']]], - ['ioport_5fqspi_5fchannel_5f0',['IOPORT_QSPI_CHANNEL_0',['../group___i_o_p_o_r_t___a_p_i.html#gga5948fec6dc0aecb3c09f9acec96fefcaac0d7aa925c74601ab0941f130f7cc8c6',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fchannel_5f1',['IOPORT_QSPI_CHANNEL_1',['../group___i_o_p_o_r_t___a_p_i.html#gga5948fec6dc0aecb3c09f9acec96fefcaa32067b0d8f31d117a52dd59b41349084',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fchannel_5fend',['IOPORT_QSPI_CHANNEL_END',['../group___i_o_p_o_r_t___a_p_i.html#gga5948fec6dc0aecb3c09f9acec96fefcaa236f9aab97155ac9eea90a479056715d',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fchannel_5ft',['ioport_qspi_channel_t',['../group___i_o_p_o_r_t___a_p_i.html#ga5948fec6dc0aecb3c09f9acec96fefca',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fint_5fn',['IOPORT_QSPI_INT_N',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1e9e542e62fb69020948426b6175570c',1,'r_ioport.h']]], - ['ioport_5fqspi_5freset_5fn',['IOPORT_QSPI_RESET_N',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae37036d2a5563a74c41d0244d07b1b7c',1,'r_ioport.h']]], - ['ioport_5fqspi_5fvoltage_5f18',['IOPORT_QSPI_VOLTAGE_18',['../group___i_o_p_o_r_t___a_p_i.html#gga6714c32ad1f21415d3c99d4f2d027616a5a7a7ae01402ba9752bf3fb5754e0668',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fvoltage_5f33',['IOPORT_QSPI_VOLTAGE_33',['../group___i_o_p_o_r_t___a_p_i.html#gga6714c32ad1f21415d3c99d4f2d027616ac0c0bb5c9fed3261177e8eaa3d89a838',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fvoltage_5fend',['IOPORT_QSPI_VOLTAGE_END',['../group___i_o_p_o_r_t___a_p_i.html#gga6714c32ad1f21415d3c99d4f2d027616a6edc05a8291b6b885b81f57ae55f38b3',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fvoltage_5ft',['ioport_qspi_voltage_t',['../group___i_o_p_o_r_t___a_p_i.html#ga6714c32ad1f21415d3c99d4f2d027616',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fwp_5fn',['IOPORT_QSPI_WP_N',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea964a485a68f15cec5cbea9107d537f30',1,'r_ioport.h']]], - ['ioport_5friic0_5fscl',['IOPORT_RIIC0_SCL',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6bdb72b4c7d733a09d7fa449a6e82a43',1,'r_ioport.h']]], - ['ioport_5friic0_5fsda',['IOPORT_RIIC0_SDA',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea48b61b705d3aeb5b03e79a6affe47c46',1,'r_ioport.h']]], - ['ioport_5friic1_5fscl',['IOPORT_RIIC1_SCL',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6cb7a1bbfe93cd71b79a9d586268fa57',1,'r_ioport.h']]], - ['ioport_5friic1_5fsda',['IOPORT_RIIC1_SDA',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea0e30454819b72aefa2250971389f2765',1,'r_ioport.h']]], - ['ioport_5fsd0_5fclk',['IOPORT_SD0_CLK',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea78ae1323844721ac089c94334a2eed20',1,'r_ioport.h']]], - ['ioport_5fsd0_5fcmd',['IOPORT_SD0_CMD',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf4e2eb49a1d436176d92a273cf201e55',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata0',['IOPORT_SD0_DATA0',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea75c267849ebce9a4c50430b38915fe5e',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata1',['IOPORT_SD0_DATA1',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea09fb47b073ce0bc40744acb625938fcd',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata2',['IOPORT_SD0_DATA2',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1f9e0e7feeda6f22885010e0b6ad4483',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata3',['IOPORT_SD0_DATA3',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea856ede443f9ef018a2847711a5f3c92e',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata4',['IOPORT_SD0_DATA4',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5093fb5b46c33af09c41b85aa6357edd',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata5',['IOPORT_SD0_DATA5',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4317b9d3d9ac6a4648cd4baffd7c2f27',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata6',['IOPORT_SD0_DATA6',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5bc69a638a2c0de8a9c301288d090335',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata7',['IOPORT_SD0_DATA7',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4f113e86f2c0cb4e67e7e58cbedbbafc',1,'r_ioport.h']]], - ['ioport_5fsd0_5frst_5fn',['IOPORT_SD0_RST_N',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab47a9b3b4be29d08e9dfbb455c4ffcce',1,'r_ioport.h']]], - ['ioport_5fsd1_5fclk',['IOPORT_SD1_CLK',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea67387cf0604bf4cd33ad3f2ba4498cc9',1,'r_ioport.h']]], - ['ioport_5fsd1_5fcmd',['IOPORT_SD1_CMD',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf5a5f64311459a33954c219ccf68ba86',1,'r_ioport.h']]], - ['ioport_5fsd1_5fdata0',['IOPORT_SD1_DATA0',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8602d2422a4f422bf4183484822b032a',1,'r_ioport.h']]], - ['ioport_5fsd1_5fdata1',['IOPORT_SD1_DATA1',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4d53f3410d7a514538dc6133769182ca',1,'r_ioport.h']]], - ['ioport_5fsd1_5fdata2',['IOPORT_SD1_DATA2',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea558ff8f715d38ea04d3eee1632ddea0e',1,'r_ioport.h']]], - ['ioport_5fsd1_5fdata3',['IOPORT_SD1_DATA3',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3c4788599942e153b3248cde5f1d9cc1',1,'r_ioport.h']]], - ['ioport_5fsd_5fchannel_5f0',['IOPORT_SD_CHANNEL_0',['../group___i_o_p_o_r_t___a_p_i.html#gga1e307d6ac8fce46a7b7c5a97acb66883ac4b47bead8a8ae7f860fa697732f007b',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fchannel_5f1',['IOPORT_SD_CHANNEL_1',['../group___i_o_p_o_r_t___a_p_i.html#gga1e307d6ac8fce46a7b7c5a97acb66883ac8a8a59efed7b48b78174be7cf112c70',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fchannel_5fend',['IOPORT_SD_CHANNEL_END',['../group___i_o_p_o_r_t___a_p_i.html#gga1e307d6ac8fce46a7b7c5a97acb66883ae671312651ad5b7f9836caf35f55aa24',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fchannel_5ft',['ioport_sd_channel_t',['../group___i_o_p_o_r_t___a_p_i.html#ga1e307d6ac8fce46a7b7c5a97acb66883',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fvoltage_5f18',['IOPORT_SD_VOLTAGE_18',['../group___i_o_p_o_r_t___a_p_i.html#ggae6d3ffb13bd84935331f3b9f01607f41a513793fc0a151e2f1a3d5240f6b97531',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fvoltage_5f33',['IOPORT_SD_VOLTAGE_33',['../group___i_o_p_o_r_t___a_p_i.html#ggae6d3ffb13bd84935331f3b9f01607f41a1cd8b8b65dec65682133ede683eecbc1',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fvoltage_5fend',['IOPORT_SD_VOLTAGE_END',['../group___i_o_p_o_r_t___a_p_i.html#ggae6d3ffb13bd84935331f3b9f01607f41a8b98f9c193ab3ffd01e8a96b05001bc5',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fvoltage_5ft',['ioport_sd_voltage_t',['../group___i_o_p_o_r_t___a_p_i.html#gae6d3ffb13bd84935331f3b9f01607f41',1,'r_ioport_api.h']]], ['ioport_5fsize_5ft',['ioport_size_t',['../group___i_o_p_o_r_t___a_p_i.html#gaf5da96a68757260a2cb370fec69f0836',1,'r_ioport_api.h']]], - ['ioport_5ftdo',['IOPORT_TDO',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9417750d44193bb9c16e528c62c17e51',1,'r_ioport.h']]], - ['ioport_5ftms_5fswdio',['IOPORT_TMS_SWDIO',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac411c9ef9aa6eec58b0f007ff106dc2d',1,'r_ioport.h']]], - ['ioport_5fwdtovf_5fperrout_5fn',['IOPORT_WDTOVF_PERROUT_N',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea97a8121677c7b7269587a0f58e1fd207',1,'r_ioport.h']]], - ['ipl',['ipl',['../group___c_a_n___a_p_i.html#a31ab501a9df967965b8085592b4d2ba1',1,'can_cfg_t::ipl()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a21219682d6af73d780e49a7e67e53f22',1,'external_irq_cfg_t::ipl()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a156cf3b414b73e4e9e782c55d131ba39',1,'i2c_master_cfg_t::ipl()'],['../group___p_o_e_g___a_p_i.html#a57cfcbb853533296afebab7d58f231c2',1,'poeg_cfg_t::ipl()']]], - ['ir_5fled',['ir_led',['../group___r_m___o_b1203___a_p_i.html#af510fc446832c663bed37b3ab42a90b3',1,'rm_ob1203_led_current_t']]], - ['irq',['irq',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a568e65aafea692dff0f64c3b66df2c2a',1,'external_irq_cfg_t::irq()'],['../group___p_o_e_g___a_p_i.html#a7f90a7d598df48543335416c0a4ab1a0',1,'poeg_cfg_t::irq()'],['../group___i_n_t_c___i_r_q.html#afb8eedbc54d5d2b44e6f7392a1e375c1',1,'intc_irq_instance_ctrl_t::irq()']]], + ['ipl',['ipl',['../group___c_a_n___a_p_i.html#a31ab501a9df967965b8085592b4d2ba1',1,'can_cfg_t::ipl()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a21219682d6af73d780e49a7e67e53f22',1,'external_irq_cfg_t::ipl()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a156cf3b414b73e4e9e782c55d131ba39',1,'i2c_master_cfg_t::ipl()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ae7a71b00ee0f0392feea934f395599a3',1,'i2c_slave_cfg_t::ipl()'],['../group___p_o_e_g___a_p_i.html#a57cfcbb853533296afebab7d58f231c2',1,'poeg_cfg_t::ipl()'],['../group___i3_c___b.html#a6e93301fd2a08032aabf92fc72a196cb',1,'i3c_b_extended_cfg_t::ipl()']]], + ['irq',['irq',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a568e65aafea692dff0f64c3b66df2c2a',1,'external_irq_cfg_t::irq()'],['../group___p_o_e_g___a_p_i.html#a7f90a7d598df48543335416c0a4ab1a0',1,'poeg_cfg_t::irq()'],['../group___i_n_t_c___i_r_q.html#afb8eedbc54d5d2b44e6f7392a1e375c1',1,'intc_irq_instance_ctrl_t::irq()'],['../group___i_n_t_c___n_m_i.html#afbc0c2d0c28a1e1b6659add5e1d906a8',1,'intc_nmi_instance_ctrl_t::irq()'],['../group___i_n_t_c___t_i_n_t.html#aa0f2fc4c91d800c45bb08df191a01fa4',1,'intc_tint_instance_ctrl_t::irq()']]], + ['input',['Input',['../group___r_e_n_e_s_a_s___i_n_p_u_t___m_o_d_u_l_e_s.html',1,'']]], ['interfaces',['Interfaces',['../group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.html',1,'']]], ['i2c_20master_20on_20riic_20_28r_5friic_5fmaster_29',['I2C Master on RIIC (r_riic_master)',['../group___r_i_i_c___m_a_s_t_e_r.html',1,'']]], - ['i2c_20communication_20device_20_28rm_5fcomms_5fi2c_29',['I2C Communication Device (rm_comms_i2c)',['../group___r_m___c_o_m_m_s___i2_c.html',1,'']]] + ['i2c_20slave_20_28r_5friic_5fslave_29',['I2C Slave (r_riic_slave)',['../group___r_i_i_c___s_l_a_v_e.html',1,'']]], + ['i2c_20communication_20device_20_28rm_5fcomms_5fi2c_29',['I2C Communication Device (rm_comms_i2c)',['../group___r_m___c_o_m_m_s___i2_c.html',1,'']]], + ['i2c_20master_20_28r_5fsci_5fb_5fi2c_29',['I2C Master (r_sci_b_i2c)',['../group___s_c_i___b___i2_c.html',1,'']]] ]; diff --git a/search/all_a.js b/search/all_a.js index 42eeb92..5ef632f 100644 --- a/search/all_a.js +++ b/search/all_a.js @@ -1,25 +1,12 @@ var searchData= [ - ['led_5forder',['led_order',['../group___r_m___o_b1203.html#a6ea712faa60b5098695c5bf9dee22fa9',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ledcurrentset',['ledCurrentSet',['../group___r_m___o_b1203___a_p_i.html#a7d3decdc87199472697b5aec3387d406',1,'rm_ob1203_api_t']]], - ['length',['length',['../group___t_r_a_n_s_f_e_r___a_p_i.html#aa92c5d06d07e7d13c16f9704a431c7cb',1,'transfer_info_t']]], - ['light',['light',['../group___r_m___o_b1203___a_p_i.html#a895aed77cf1aba3014b6d0b631e8a10d',1,'rm_ob1203_gain_t']]], - ['light_5fdata_5ftype',['light_data_type',['../group___r_m___o_b1203.html#a92cbb312b5e1e41706b4e68b38357f02',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5fgain',['light_gain',['../group___r_m___o_b1203.html#aa3cb62edd73814ba315627754fd85266',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5finterrupt_5fpersist',['light_interrupt_persist',['../group___r_m___o_b1203.html#a022942b085717470822f277c4b31ba3a',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5finterrupt_5fsource',['light_interrupt_source',['../group___r_m___o_b1203.html#a717ea530db97b35669792d4402106037',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5finterrupt_5ftype',['light_interrupt_type',['../group___r_m___o_b1203.html#a552c03c8de87ba18c02d7d92ccb492d4',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5flower_5fthreshold',['light_lower_threshold',['../group___r_m___o_b1203.html#a3d101a3a796221fc394abb203998d492',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5fprox_5fmode',['light_prox_mode',['../group___r_m___o_b1203___a_p_i.html#a098de06ea0c6b7261ccca0d471f964f6',1,'rm_ob1203_device_interrupt_cfg_t']]], - ['light_5fresolution_5fperiod',['light_resolution_period',['../group___r_m___o_b1203.html#a002e10b810510f6ddacf3636941b8ad3',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5fsensor_5fmode',['light_sensor_mode',['../group___r_m___o_b1203.html#a2dff0d73a95082059f417d185b80cb8a',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5fsleep',['light_sleep',['../group___r_m___o_b1203.html#aeb793e75865a9f62297d91034603aaf1',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5fsource',['light_source',['../group___r_m___o_b1203___a_p_i.html#a464bef4e7cf70926e60bbed2c0b492af',1,'rm_ob1203_device_interrupt_cfg_t']]], - ['light_5ftype',['light_type',['../group___r_m___o_b1203___a_p_i.html#a53a1af5cbd0dd954d6e5cffbd217d834',1,'rm_ob1203_device_interrupt_cfg_t']]], - ['light_5fupper_5fthreshold',['light_upper_threshold',['../group___r_m___o_b1203.html#ac5d15bf27b5bcd1a6b721a0f67374372',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5fvariance_5fthreshold',['light_variance_threshold',['../group___r_m___o_b1203.html#afd0c72c77c52c3eeb6c3c82649807cac',1,'rm_ob1203_mode_extended_cfg_t']]], - ['lightdatacalculate',['lightDataCalculate',['../group___r_m___o_b1203___a_p_i.html#aa3ca0efc07f8e5cdf3086fe422239b60',1,'rm_ob1203_api_t']]], - ['lightread',['lightRead',['../group___r_m___o_b1203___a_p_i.html#ad778eb596d6af74ccedec46ed4dec9f7',1,'rm_ob1203_api_t']]], + ['length',['length',['../group___a_d_c___a_p_i.html#a3f8dd9f7ffefcbc0180fc7252c0482c9',1,'adc_info_t::length()'],['../group___i3_c___a_p_i.html#a55133c6895655f647bad807fd6e0d136',1,'i3c_command_descriptor_t::length()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a5aba602d71a6ba4e6be056a90b5ed9e8',1,'transfer_info_t::length()'],['../group___d_m_a_c___b.html#aac2bd3fe82819a7f868aa155b25459e9',1,'dmac_b_register_set_setting_t::length()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a5aba602d71a6ba4e6be056a90b5ed9e8',1,'transfer_info_t::length()']]], + ['link',['link',['../group___e_l_c___a_p_i.html#ad58380dc39c1d257fc9128dda007865d',1,'elc_cfg_t']]], + ['linkbreak',['linkBreak',['../group___e_l_c___a_p_i.html#aded8ab0cdd59a636f2a5cc60313c54c5',1,'elc_api_t']]], + ['linkset',['linkSet',['../group___e_l_c___a_p_i.html#a05af30d0ca7743f5a033b10d664ded59',1,'elc_api_t']]], ['log_5fnonlog_5frcda',['log_nonlog_rcda',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a4bf54edf41460cfb0e6a8bd1cf9a825e',1,'rm_zmod4xxx_iaq_2nd_data_t']]], - ['log_5frcda',['log_rcda',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a04d026df23f93a2ccd598b7fc7546c5d',1,'rm_zmod4xxx_iaq_2nd_data_t']]] + ['log_5frcda',['log_rcda',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a04d026df23f93a2ccd598b7fc7546c5d',1,'rm_zmod4xxx_iaq_2nd_data_t']]], + ['low_5fpass_5ffilter_5fshift',['low_pass_filter_shift',['../group___p_d_m.html#ada9786751a8901b1f014d50f825692ed',1,'pdm_extended_cfg_t']]], + ['lpf_5fcoefficient_5fh0',['lpf_coefficient_h0',['../group___p_d_m.html#a8301f1ffd1bd3c06615b57cbab9f06cd',1,'pdm_extended_cfg_t']]], + ['lpf_5fcoefficient_5fh1',['lpf_coefficient_h1',['../group___p_d_m.html#ab0fba91eb36c8a90821d4fd7793ba4b9',1,'pdm_extended_cfg_t']]] ]; diff --git a/search/all_b.js b/search/all_b.js index df6adab..1f168df 100644 --- a/search/all_b.js +++ b/search/all_b.js @@ -1,19 +1,26 @@ var searchData= [ ['mpu_20board_20support_20package',['MPU Board Support Package',['../group___b_s_p___m_c_u.html',1,'']]], - ['mailbox_5fcount',['mailbox_count',['../group___c_a_n___a_p_i.html#a66e92277959e9e01a6ce2105dcdcbae6',1,'can_cfg_t']]], - ['mailbox_5fid',['mailbox_id',['../group___c_a_n___a_p_i.html#aa0c1d24b5896560908adb0ac9761aa28',1,'can_mailbox_t']]], - ['mailbox_5frx_5firq',['mailbox_rx_irq',['../group___c_a_n___a_p_i.html#a70c47efed0012e4512b7d7eca31e3e58',1,'can_cfg_t']]], - ['mailbox_5ftx_5firq',['mailbox_tx_irq',['../group___c_a_n___a_p_i.html#afe91f3dd74163cacafbfb96ab2104df0',1,'can_cfg_t']]], - ['mailbox_5ftype',['mailbox_type',['../group___c_a_n___a_p_i.html#aa6a30551456873fb921b933bd3ddbe23',1,'can_mailbox_t']]], + ['master_5frequest_5faccept',['master_request_accept',['../group___i3_c___a_p_i.html#a7fffc4906ca2c92ccf77cda8fabc6714',1,'i3c_device_table_cfg_t']]], + ['masterdevicetableset',['masterDeviceTableSet',['../group___i3_c___a_p_i.html#ac790719d9f6a87b3458bfab85ffda558',1,'i3c_api_t']]], + ['mastership_5frequest_5fenable',['mastership_request_enable',['../group___i3_c___b.html#ad84be5ef3adcda517e62810c182ac856',1,'i3c_b_slave_command_response_info_t']]], + ['mday_5fmatch',['mday_match',['../group___r_t_c___a_p_i.html#a40c6580113cd30f538f7985b2e6bed46',1,'rtc_alarm_time_t']]], ['mddr',['mddr',['../group___s_c_i_f___u_a_r_t.html#acbf8ff1fb27039b0240beceeff67d048',1,'scif_baud_setting_t']]], + ['mddr_5fvalue',['mddr_value',['../group___s_c_i___b___i2_c.html#af010e505a82e39cbfbc3e2c0b99ce397',1,'sci_b_i2c_clock_settings_t']]], ['meas_5fconf',['meas_conf',['../structzmod4xxx__dev__t.html#aaf936f367f33da5c81d94336105c47ed',1,'zmod4xxx_dev_t']]], ['measurement_5ffinished',['measurement_finished',['../group___r_m___z_m_o_d4_x_x_x.html#a8c18d9f7ecb1e2fcec2f623136d92d9e',1,'rm_zmod4xxx_init_process_params_t']]], - ['measurementstart',['measurementStart',['../group___r_m___h_s300_x___a_p_i.html#a5fb2270412b0a4972ba9e3b37daf33ab',1,'rm_hs300x_api_t::measurementStart()'],['../group___r_m___h_s400_x___a_p_i.html#af43342d596f670dae68958a5011afed6',1,'rm_hs400x_api_t::measurementStart()'],['../group___r_m___o_b1203___a_p_i.html#af9780f361fb17b04000550de7543134a',1,'rm_ob1203_api_t::measurementStart()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af9e1e5ff4fd276f7d7bfeb341854b0c2',1,'rm_zmod4xxx_api_t::measurementStart()']]], - ['measurementstop',['measurementStop',['../group___r_m___h_s400_x___a_p_i.html#ac6a5f8689aeda6f82bbd41d1794a66e3',1,'rm_hs400x_api_t::measurementStop()'],['../group___r_m___o_b1203___a_p_i.html#a9365629cc58e4f4c9cf33420b07416f5',1,'rm_ob1203_api_t::measurementStop()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5cf69c31fc52e26757bedf1ec76581f3',1,'rm_zmod4xxx_api_t::measurementStop()']]], - ['message_5fmode',['message_mode',['../group___c_a_n___a_p_i.html#a0cb83f81e41146d1e688f88a69231d38',1,'can_cfg_t']]], + ['measurementstart',['measurementStart',['../group___r_m___h_s300_x___a_p_i.html#a5fb2270412b0a4972ba9e3b37daf33ab',1,'rm_hs300x_api_t::measurementStart()'],['../group___r_m___h_s400_x___a_p_i.html#af43342d596f670dae68958a5011afed6',1,'rm_hs400x_api_t::measurementStart()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af9e1e5ff4fd276f7d7bfeb341854b0c2',1,'rm_zmod4xxx_api_t::measurementStart()']]], + ['measurementstop',['measurementStop',['../group___r_m___h_s400_x___a_p_i.html#ac6a5f8689aeda6f82bbd41d1794a66e3',1,'rm_hs400x_api_t::measurementStop()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5cf69c31fc52e26757bedf1ec76581f3',1,'rm_zmod4xxx_api_t::measurementStop()']]], ['mhu_20interface_20_28for_20secure_20and_20non_20secure_20channels_29',['MHU Interface (for secure and non secure channels)',['../group___m_h_u___a_p_i.html',1,'']]], ['mhu_5fapi_5ft',['mhu_api_t',['../group___m_h_u___a_p_i.html#structmhu__api__t',1,'']]], + ['message_20handling_20unit_20for_20non_20secure_20channels_20_28r_5fmhu_5fb_5fns_29',['Message Handling Unit for non secure channels (r_mhu_b_ns)',['../group___m_h_u___b___n_s.html',1,'']]], + ['mhu_5fb_5fns_5finstance_5fctrl_5ft',['mhu_b_ns_instance_ctrl_t',['../group___m_h_u___b___n_s.html#structmhu__b__ns__instance__ctrl__t',1,'']]], + ['message_20handling_20unit_20for_20non_2dsecure_20software_20interrupt_20receive_20_28r_5fmhu_5fb_5fns_5fswint_5fget_29',['Message Handling Unit for non-secure software interrupt receive (r_mhu_b_ns_swint_get)',['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html',1,'']]], + ['mhu_5fb_5fns_5fswint_5fget_5finstance_5fctrl_5ft',['mhu_b_ns_swint_get_instance_ctrl_t',['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#structmhu__b__ns__swint__get__instance__ctrl__t',1,'']]], + ['message_20handling_20unit_20for_20non_2dsecure_20software_20interrupt_20generation_20_28r_5fmhu_5fb_5fns_5fswint_5fset_29',['Message Handling Unit for non-secure software interrupt generation (r_mhu_b_ns_swint_set)',['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html',1,'']]], + ['mhu_5fb_5fns_5fswint_5fset_5finstance_5fctrl_5ft',['mhu_b_ns_swint_set_instance_ctrl_t',['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#structmhu__b__ns__swint__set__instance__ctrl__t',1,'']]], + ['message_20handling_20unit_20for_20secure_20channels_20_28r_5fmhu_5fb_5fs_29',['Message Handling Unit for secure channels (r_mhu_b_s)',['../group___m_h_u___b___s.html',1,'']]], + ['mhu_5fb_5fs_5finstance_5fctrl_5ft',['mhu_b_s_instance_ctrl_t',['../group___m_h_u___b___s.html#structmhu__b__s__instance__ctrl__t',1,'']]], ['mhu_5fcallback_5fargs_5ft',['mhu_callback_args_t',['../group___m_h_u___a_p_i.html#structmhu__callback__args__t',1,'']]], ['mhu_5fcfg_5ft',['mhu_cfg_t',['../group___m_h_u___a_p_i.html#structmhu__cfg__t',1,'']]], ['mhu_5fctrl_5ft',['mhu_ctrl_t',['../group___m_h_u___a_p_i.html#gab4529354e4994392568d5ebd6aabfcd7',1,'r_mhu_api.h']]], @@ -41,15 +48,116 @@ var searchData= ['mhu_5fsend_5ftype_5fmsg',['MHU_SEND_TYPE_MSG',['../group___m_h_u___a_p_i.html#gga2f810fc1366dd26cd5632846a65407aea72dd7fd31939b7f67d6b212b7b22917d',1,'r_mhu_api.h']]], ['mhu_5fsend_5ftype_5frsp',['MHU_SEND_TYPE_RSP',['../group___m_h_u___a_p_i.html#gga2f810fc1366dd26cd5632846a65407aea0aed9dce78e782b034f672d0bf54cb2b',1,'r_mhu_api.h']]], ['mhu_5fsend_5ftype_5ft',['mhu_send_type_t',['../group___m_h_u___a_p_i.html#ga2f810fc1366dd26cd5632846a65407ae',1,'r_mhu_api.h']]], - ['mode',['mode',['../group___t_i_m_e_r___a_p_i.html#a9519afc7ea8aec3aaf1eb787b39cc97c',1,'timer_cfg_t']]], + ['min_5fmatch',['min_match',['../group___r_t_c___a_p_i.html#a2116bd7b5fa4535556de190e370b548a',1,'rtc_alarm_time_t']]], + ['mode',['mode',['../group___a_d_c___a_p_i.html#a035d5a1d93fe00c7683afbc4e5a59729',1,'adc_cfg_t::mode()'],['../group___t_i_m_e_r___a_p_i.html#a9519afc7ea8aec3aaf1eb787b39cc97c',1,'timer_cfg_t::mode()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ae3cc32eab1926d03875e2c9fa4e6190b',1,'transfer_info_t::mode()']]], ['mode_5ffault',['mode_fault',['../group___s_p_i___a_p_i.html#a3594e8fa704cc11af1fa448fb0e0971b',1,'spi_cfg_t']]], - ['mode_5firq',['mode_irq',['../group___r_m___o_b1203.html#a8b9c2e8ea5903f1d3c42cf99539a6f37',1,'rm_ob1203_mode_extended_cfg_t']]], ['modetransition',['modeTransition',['../group___c_a_n___a_p_i.html#afb37a7735c6ac61a151a083b2d25153b',1,'can_api_t']]], - ['mosi_5fidle',['mosi_idle',['../group___r_s_p_i.html#a7074247ca15863980c0b6794efd3ef3b',1,'rspi_extended_cfg_t']]], + ['mon_5fmatch',['mon_match',['../group___r_t_c___a_p_i.html#a1037fb218fb45e450dd41965a9ca1df7',1,'rtc_alarm_time_t']]], + ['mosi_5fidle',['mosi_idle',['../group___r_s_p_i.html#a7074247ca15863980c0b6794efd3ef3b',1,'rspi_extended_cfg_t::mosi_idle()'],['../group___s_p_i___b.html#ac63d012fd878d53e0f390837e604ca2f',1,'spi_b_extended_cfg_t::mosi_idle()']]], + ['moving_5faverage_5fmode',['moving_average_mode',['../group___p_d_m.html#a8a21b70e69c6f770a87ea331311e1f04',1,'pdm_extended_cfg_t']]], ['mox_5fer',['mox_er',['../structzmod4xxx__dev__t.html#a1ebc81e50261aac3206ada715d450407',1,'zmod4xxx_dev_t']]], ['mox_5flr',['mox_lr',['../structzmod4xxx__dev__t.html#ae4f3d0a8bb1d168a160d798d875289ca',1,'zmod4xxx_dev_t']]], ['mpuregionsettings_5ft',['MPURegionSettings_t',['../struct_m_p_u_region_settings__t.html',1,'']]], ['msg',['msg',['../group___m_h_u___a_p_i.html#a06429bf95953ff61b299d881100cc112',1,'mhu_callback_args_t']]], ['msgsend',['msgSend',['../group___m_h_u___a_p_i.html#af6d608ef42020cdccb89d9d0bd7a28b0',1,'mhu_api_t']]], - ['modules',['Modules',['../group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.html',1,'']]] + ['mtioc_5fctrl_5fsetting',['mtioc_ctrl_setting',['../group___m_t_u3.html#ac3d8f53d47a3063cf48b374411182243',1,'mtu3_extended_cfg_t']]], + ['multi_2dfunction_20timer_20pulse_20unit_203_20_28r_5fmtu3_29',['Multi-Function Timer Pulse Unit 3 (r_mtu3)',['../group___m_t_u3.html',1,'']]], + ['mtu3_5fadc_5factivation_5ftgra_5fcompare_5fmatch_5ft',['mtu3_adc_activation_tgra_compare_match_t',['../group___m_t_u3.html#ga8d63ef78e4ad3838c53bc5683d6d3485',1,'r_mtu3.h']]], + ['mtu3_5fadc_5fcompare_5fmatch_5fadc_5fa',['MTU3_ADC_COMPARE_MATCH_ADC_A',['../group___m_t_u3.html#gga41121fd0c747ec6e3ba93bcc94a73bddacd70ef6a0cddbebba7480ce8b801b531',1,'r_mtu3.h']]], + ['mtu3_5fadc_5fcompare_5fmatch_5fadc_5fb',['MTU3_ADC_COMPARE_MATCH_ADC_B',['../group___m_t_u3.html#gga41121fd0c747ec6e3ba93bcc94a73bddaae499e3fe16a915b8baf1ffe81e2bcaf',1,'r_mtu3.h']]], + ['mtu3_5fadc_5fcompare_5fmatch_5ft',['mtu3_adc_compare_match_t',['../group___m_t_u3.html#ga41121fd0c747ec6e3ba93bcc94a73bdd',1,'r_mtu3.h']]], + ['mtu3_5fadc_5ftgra_5fcompare_5fmatch_5fdisable',['MTU3_ADC_TGRA_COMPARE_MATCH_DISABLE',['../group___m_t_u3.html#gga8d63ef78e4ad3838c53bc5683d6d3485ac41b3f08145ec498d6b5df97de3ea77f',1,'r_mtu3.h']]], + ['mtu3_5fadc_5ftgra_5fcompare_5fmatch_5fenable',['MTU3_ADC_TGRA_COMPARE_MATCH_ENABLE',['../group___m_t_u3.html#gga8d63ef78e4ad3838c53bc5683d6d3485a8e34a4cdb9bc2d8eb2c8228049285a4e',1,'r_mtu3.h']]], + ['mtu3_5fclear',['mtu3_clear',['../group___m_t_u3.html#a1f1b1918442a0305e70d102cb636e09d',1,'mtu3_extended_cfg_t']]], + ['mtu3_5fclk_5fdiv',['mtu3_clk_div',['../group___m_t_u3.html#ad0bcb4a5a415f6c5f3d0db6557f5ec3d',1,'mtu3_extended_cfg_t']]], + ['mtu3_5fclock_5fdiv_5f1',['MTU3_CLOCK_DIV_1',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bae874f2689e6f1c19c30b0f8f7babc6fc',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f1024_5fch_5f0',['MTU3_CLOCK_DIV_1024_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bae115e32bcce74086cfde1ad2f39c43f7',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f1024_5fch_5f1',['MTU3_CLOCK_DIV_1024_CH_1',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3baefe9f7918f14abdff93d9f72cd599ee7',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f1024_5fch_5f2',['MTU3_CLOCK_DIV_1024_CH_2',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba5d95ba198fd3bb9a1d7a0cf5275fde7e',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f1024_5fch_5f3_5f4_5f6_5f7_5f8',['MTU3_CLOCK_DIV_1024_CH_3_4_6_7_8',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba5700159b9400663b6f120540720cdf16',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f16',['MTU3_CLOCK_DIV_16',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba62f2036a3e569253e5374c1ccc03cc4f',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f2',['MTU3_CLOCK_DIV_2',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba1c2ede9d17050523d97a2e03975cc83e',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f256_5fch_5f0',['MTU3_CLOCK_DIV_256_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba4f65b02bc6d926659bed0d2321f1886d',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f256_5fch_5f1',['MTU3_CLOCK_DIV_256_CH_1',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba407f297d4853f8d0e8364cb3aabab04d',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f256_5fch_5f2',['MTU3_CLOCK_DIV_256_CH_2',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba04bcba9332e29629ee8615298355d069',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f256_5fch_5f3_5f4_5f6_5f7_5f8',['MTU3_CLOCK_DIV_256_CH_3_4_6_7_8',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba2515d8c539b465cdfc9b73429cf38105',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f32',['MTU3_CLOCK_DIV_32',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba1f0f14e4639e2f615f01246baad8009a',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f4',['MTU3_CLOCK_DIV_4',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba66f56ded610017e021f65fe657ebcca8',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f64',['MTU3_CLOCK_DIV_64',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba7f8a017ef1a628f2a12d36747628ac4a',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f8',['MTU3_CLOCK_DIV_8',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba701bed0b83349f72da65617d5530d640',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclka_5fch_5f0',['MTU3_CLOCK_DIV_MTCLKA_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab04764ab43d2f0270af4f6adc1d51cf2',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclka_5fch_5f1',['MTU3_CLOCK_DIV_MTCLKA_CH_1',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bad2f9be0d2ce8a82284f34f4ec98b94ac',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclka_5fch_5f2',['MTU3_CLOCK_DIV_MTCLKA_CH_2',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab5252c159c1697999ee622504bff5b8a',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclka_5fch_5f3_5f4_5f6_5f7_5f8',['MTU3_CLOCK_DIV_MTCLKA_CH_3_4_6_7_8',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba91170275703436b2b4a331bdc7e7dd28',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkb_5fch_5f0',['MTU3_CLOCK_DIV_MTCLKB_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba5e74e73b437531bd05b4f537cf72231d',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkb_5fch_5f1',['MTU3_CLOCK_DIV_MTCLKB_CH_1',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba3a726180c0e0c51f1057c6d143891abe',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkb_5fch_5f2',['MTU3_CLOCK_DIV_MTCLKB_CH_2',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bacc4faaf9336db93e0be2b783b484d3e0',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkb_5fch_5f3_5f4_5f6_5f7_5f8',['MTU3_CLOCK_DIV_MTCLKB_CH_3_4_6_7_8',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab6865991c1903e6ebb1df94294ca86a1',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkc_5fch_5f0',['MTU3_CLOCK_DIV_MTCLKC_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab17376b3b14504a2a296b53b1723938b',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkc_5fch_5f2',['MTU3_CLOCK_DIV_MTCLKC_CH_2',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3baea32e309ae09841686be347670eb2dbd',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkd_5fch_5f0',['MTU3_CLOCK_DIV_MTCLKD_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba375a978b7228e8bfc55527c82b167669',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtioc1a_5fch_5f0',['MTU3_CLOCK_DIV_MTIOC1A_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bae76246ad6dd264b3ab4a09ce9e95b9ee',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5ft',['mtu3_clock_div_t',['../group___m_t_u3.html#ga9a9eea39b2f02b777dba8d344dc8eb3b',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5ftcnt_5fch1',['MTU3_CLOCK_DIV_TCNT_CH1',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba0e32af4cc5c42c1f7951fd6ef3113a13',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fedge_5fboth',['MTU3_CLOCK_EDGE_BOTH',['../group___m_t_u3.html#ggaef0d6e7f5f99c9142dea22471d60df36a2813c691ad28795563c78ee270fe760a',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fedge_5ffalling',['MTU3_CLOCK_EDGE_FALLING',['../group___m_t_u3.html#ggaef0d6e7f5f99c9142dea22471d60df36ae165912b6df21de4925f8361d8c630d6',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fedge_5frising',['MTU3_CLOCK_EDGE_RISING',['../group___m_t_u3.html#ggaef0d6e7f5f99c9142dea22471d60df36aa4a9bd1f72de2c259e18ed59bc547e8a',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fedge_5ft',['mtu3_clock_edge_t',['../group___m_t_u3.html#gaef0d6e7f5f99c9142dea22471d60df36',1,'r_mtu3.h']]], + ['mtu3_5fextended_5fcfg_5ft',['mtu3_extended_cfg_t',['../group___m_t_u3.html#structmtu3__extended__cfg__t',1,'']]], + ['mtu3_5fextended_5fpwm_5fcfg_5ft',['mtu3_extended_pwm_cfg_t',['../group___m_t_u3.html#structmtu3__extended__pwm__cfg__t',1,'']]], + ['mtu3_5finstance_5fctrl_5ft',['mtu3_instance_ctrl_t',['../group___m_t_u3.html#structmtu3__instance__ctrl__t',1,'']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f0',['MTU3_INTERRUPT_SKIP_COUNT_0',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a669abe23b86af53bff6aee3883ced7ca',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f1',['MTU3_INTERRUPT_SKIP_COUNT_1',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692aeb4e2a88b51b85e79a97bd36f1d4603e',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f2',['MTU3_INTERRUPT_SKIP_COUNT_2',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a967dfd369ac7f512c7523058aeb9d958',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f3',['MTU3_INTERRUPT_SKIP_COUNT_3',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692affae7913c291ab2b45f5975dd245d46e',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f4',['MTU3_INTERRUPT_SKIP_COUNT_4',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692aaa21c802db8257f48d08dd7983a06495',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f5',['MTU3_INTERRUPT_SKIP_COUNT_5',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a124774c9b768380d6fdc6355a670cc9e',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f6',['MTU3_INTERRUPT_SKIP_COUNT_6',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a5cd89c876da9eacd4fb26083e54d0d2f',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f7',['MTU3_INTERRUPT_SKIP_COUNT_7',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a9fa7dcb45ab1dea49a6f54c99fc8a7f7',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5ft',['mtu3_interrupt_skip_count_t',['../group___m_t_u3.html#ga3ad32e2d3e0cebb7645750d6c0a8f692',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fmode_5f1',['MTU3_INTERRUPT_SKIP_MODE_1',['../group___m_t_u3.html#ggaa9f9735282373eede4951043c95c2312af504f08d77384dae2d0be021caa9dc92',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fmode_5f2',['MTU3_INTERRUPT_SKIP_MODE_2',['../group___m_t_u3.html#ggaa9f9735282373eede4951043c95c2312ad50979af2f5e0cf1d9751f936709991a',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fmode_5ft',['mtu3_interrupt_skip_mode_t',['../group___m_t_u3.html#gaa9f9735282373eede4951043c95c2312',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finitial_5fhigh_5fcompare_5fhigh',['MTU3_IO_PIN_LEVEL_INITIAL_HIGH_COMPARE_HIGH',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aad21bb53ae71711700a34ed9f7c8734eb',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finitial_5fhigh_5fcompare_5flow',['MTU3_IO_PIN_LEVEL_INITIAL_HIGH_COMPARE_LOW',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa4163d703b041fe158960693cf722147b',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finitial_5fhigh_5fcompare_5ftoggle',['MTU3_IO_PIN_LEVEL_INITIAL_HIGH_COMPARE_TOGGLE',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa906726a828affd3ced2153afcad5c560',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finitial_5flow_5fcompare_5fhigh',['MTU3_IO_PIN_LEVEL_INITIAL_LOW_COMPARE_HIGH',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa0b50c080f4d0da8eaebb4f8fbdcaffa4',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finitial_5flow_5fcompare_5flow',['MTU3_IO_PIN_LEVEL_INITIAL_LOW_COMPARE_LOW',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa0584b3bcc6c6623299cd6e8364f6dc69',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finitial_5flow_5fcompare_5ftoggle',['MTU3_IO_PIN_LEVEL_INITIAL_LOW_COMPARE_TOGGLE',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa9e8afa21b22ec2819a98e61c008826c6',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finput_5fboth_5fedge',['MTU3_IO_PIN_LEVEL_INPUT_BOTH_EDGE',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aafc54fef0ded76646e75e0c5843ee1e62',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finput_5ffalling_5fedge',['MTU3_IO_PIN_LEVEL_INPUT_FALLING_EDGE',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aaca2a023c3381cefc724b746cb8661b68',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finput_5frising_5fedge',['MTU3_IO_PIN_LEVEL_INPUT_RISING_EDGE',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aac1d4f7271562936841736a3ade4363ea',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5fno_5foutput',['MTU3_IO_PIN_LEVEL_NO_OUTPUT',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa61e5eccf44d43e36ee349a9ef52ab2fe',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5ft',['mtu3_io_pin_level_t',['../group___m_t_u3.html#ga4a8786cd182fb52e974c1214c2de627a',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5fmtioca',['MTU3_IO_PIN_MTIOCA',['../group___m_t_u3.html#gga8a74b8a0003ccd7602df801eb863a4ceaf069a55c34b8d9ef53ad57dc014259bc',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5fmtioca_5fand_5fmtiocb',['MTU3_IO_PIN_MTIOCA_AND_MTIOCB',['../group___m_t_u3.html#gga8a74b8a0003ccd7602df801eb863a4cea6579c2e2017ea2d1a473d06d6554d528',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5fmtiocb',['MTU3_IO_PIN_MTIOCB',['../group___m_t_u3.html#gga8a74b8a0003ccd7602df801eb863a4ceacd3adaab6bac29b0b63bd9c6a156c028',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5ft',['mtu3_io_pin_t',['../group___m_t_u3.html#ga8a74b8a0003ccd7602df801eb863a4ce',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fa_5fenable',['MTU3_NOISE_FILTER_A_ENABLE',['../group___m_t_u3.html#gga6ce62ddb141bf440c0539fc47512c586a99ecb4bf189434da6ef15bf58a73e665',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fb_5fenable',['MTU3_NOISE_FILTER_B_ENABLE',['../group___m_t_u3.html#gga6ce62ddb141bf440c0539fc47512c586ab0e36e5481656608bcca54312a3bbb37',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fclock_5fdiv_5f1',['MTU3_NOISE_FILTER_CLOCK_DIV_1',['../group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a12a3b47c245a69650ec7ef8f4684b203',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fclock_5fdiv_5f32',['MTU3_NOISE_FILTER_CLOCK_DIV_32',['../group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a6f8cd3a55abb64cdb1fe6e9486f16c52',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fclock_5fdiv_5f8',['MTU3_NOISE_FILTER_CLOCK_DIV_8',['../group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a11075c2cee823cec78ea4f68865c1daa',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fclock_5fsource',['MTU3_NOISE_FILTER_CLOCK_SOURCE',['../group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a2c555ce0b8db45b21c04b431c34d154b',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fclock_5ft',['mtu3_noise_filter_clock_t',['../group___m_t_u3.html#gac04b193c244956523c5c5f0d70b29af5',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fdisable',['MTU3_NOISE_FILTER_DISABLE',['../group___m_t_u3.html#gga6ce62ddb141bf440c0539fc47512c586aef6de8ca9710e328d82501ba5ffcbf9d',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fexternal_5fclock_5fdiv_5f1',['MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_1',['../group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485a6e40db422538cdf8cde1c540eb311e66',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fexternal_5fclock_5fdiv_5f2',['MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_2',['../group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485a7881f227aeeede564739112e79c90aca',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fexternal_5fclock_5fdiv_5f32',['MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_32',['../group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485a0d8588e4c98d3691d6201d4de347099f',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fexternal_5fclock_5fdiv_5f8',['MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_8',['../group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485ad0776747373fdfca5f20758766b97321',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fexternal_5fclock_5ft',['mtu3_noise_filter_external_clock_t',['../group___m_t_u3.html#ga7e7928e4452d8a06a86269dcabc3a485',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fmtclk_5fa_5fenable',['MTU3_NOISE_FILTER_MTCLK_A_ENABLE',['../group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794a088e0050227671eab214afc2c02d0697',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fmtclk_5fb_5fenable',['MTU3_NOISE_FILTER_MTCLK_B_ENABLE',['../group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794a586cffe1579c0f2244357ce55ee0f21b',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fmtclk_5fc_5fenable',['MTU3_NOISE_FILTER_MTCLK_C_ENABLE',['../group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794af347277f21b1a43eac30d8eb1b895c12',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fmtclk_5fd_5fenable',['MTU3_NOISE_FILTER_MTCLK_D_ENABLE',['../group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794a0f3d2d63639430864b7935de79fc899c',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fmtclk_5fdisable',['MTU3_NOISE_FILTER_MTCLK_DISABLE',['../group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794afcd6a47a8930c33f033e099d8336a127',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fmtclk_5ft',['mtu3_noise_filter_mtclk_t',['../group___m_t_u3.html#ga000c28bcf923d3ccd0642c3c5dd9a794',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5ft',['mtu3_noise_filter_t',['../group___m_t_u3.html#ga6ce62ddb141bf440c0539fc47512c586',1,'r_mtu3.h']]], + ['mtu3_5foutput_5fpin_5ft',['mtu3_output_pin_t',['../group___m_t_u3.html#structmtu3__output__pin__t',1,'']]], + ['mtu3_5ftcnt_5fclear_5fdisable',['MTU3_TCNT_CLEAR_DISABLE',['../group___m_t_u3.html#gga031ed640883cba19cb1243d46ea54709aeeef3908d66e9cc2ea6545d98aa52ce0',1,'r_mtu3.h']]], + ['mtu3_5ftcnt_5fclear_5ft',['mtu3_tcnt_clear_t',['../group___m_t_u3.html#ga031ed640883cba19cb1243d46ea54709',1,'r_mtu3.h']]], + ['mtu3_5ftcnt_5fclear_5ftgra',['MTU3_TCNT_CLEAR_TGRA',['../group___m_t_u3.html#gga031ed640883cba19cb1243d46ea54709a546e3a5b2cac7873b10c4eb914cb0ba1',1,'r_mtu3.h']]], + ['mtu3_5ftcnt_5fclear_5ftgrb',['MTU3_TCNT_CLEAR_TGRB',['../group___m_t_u3.html#gga031ed640883cba19cb1243d46ea54709a7ab7fef8e1167140423f0d3bd325853b',1,'r_mtu3.h']]], + ['modules',['Modules',['../group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.html',1,'']]], + ['monitoring',['Monitoring',['../group___r_e_n_e_s_a_s___m_o_n_i_t_o_r_i_n_g___m_o_d_u_l_e_s.html',1,'']]] ]; diff --git a/search/all_c.js b/search/all_c.js index 4f84e26..abf7ff8 100644 --- a/search/all_c.js +++ b/search/all_c.js @@ -1,13 +1,18 @@ var searchData= [ - ['naki_5firq',['naki_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a3e7ce84039e9c21f7a3cdc63060efdd1',1,'riic_master_extended_cfg_t']]], - ['next_5faccess_5fdelay',['next_access_delay',['../group___r_s_p_i.html#a4a5671a7b1a0b31742f3fb3ffb832532',1,'rspi_extended_cfg_t']]], + ['naki_5firq',['naki_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a3e7ce84039e9c21f7a3cdc63060efdd1',1,'riic_master_extended_cfg_t::naki_irq()'],['../group___r_i_i_c___s_l_a_v_e.html#aad289375a5899c38eddfb299556c01e9',1,'riic_slave_extended_cfg_t::naki_irq()']]], + ['negation_5ftime',['negation_time',['../group___s_c_i___b___u_a_r_t.html#adeab6a6a24f0ccbf45a24fd0185f1e3b',1,'sci_b_uart_rs485_setting_t']]], + ['next_5faccess_5fdelay',['next_access_delay',['../group___r_s_p_i.html#a4a5671a7b1a0b31742f3fb3ffb832532',1,'rspi_extended_cfg_t::next_access_delay()'],['../group___s_p_i___b.html#a91917729fb266000e5c493d9a4021c43',1,'spi_b_extended_cfg_t::next_access_delay()']]], + ['next_5fword',['next_word',['../group___i3_c___b.html#a624164578fd3053bde3878a449255aed',1,'i3c_b_instance_ctrl_t']]], ['nmi_5fhandler_5fns',['NMI_Handler_NS',['../group___b_s_p___m_c_u.html#gafdfd4e716271df720f7abe57bdca2e5d',1,'startup.c']]], ['nmi_5fhandler_5fs',['NMI_Handler_S',['../group___b_s_p___m_c_u.html#ga44d44e7bd7f7e06f05b1f420479d3e74',1,'startups.c']]], ['no_5fhold_5fmeasurement_5fread',['no_hold_measurement_read',['../group___r_m___h_s400_x.html#a72f6d28fd2d5889d5733ce5ad5b345db',1,'rm_hs400x_instance_ctrl_t']]], - ['noise_5fcancel',['noise_cancel',['../group___s_c_i_f___u_a_r_t.html#a0ff4c8c790a3ebefd5cf18b65b5072c2',1,'scif_uart_extended_cfg_t']]], + ['noise_5fcancel',['noise_cancel',['../group___s_c_i___b___u_a_r_t.html#add11aada0e4e3d121e4e86597ec0ed58',1,'sci_b_uart_extended_cfg_t::noise_cancel()'],['../group___s_c_i_f___u_a_r_t.html#a0ff4c8c790a3ebefd5cf18b65b5072c2',1,'scif_uart_extended_cfg_t::noise_cancel()']]], ['noise_5ffilter',['noise_filter',['../group___p_o_e_g___a_p_i.html#a7f4c9f27604cdf1b772dc2d4ed8c3a2f',1,'poeg_cfg_t']]], ['noise_5ffilter_5fstage',['noise_filter_stage',['../group___r_i_i_c___m_a_s_t_e_r.html#a81efa4dd941b358e014354ffbf02ac16',1,'riic_master_extended_cfg_t']]], + ['notify_5frejected_5fhot_5fjoin_5frequests',['notify_rejected_hot_join_requests',['../group___i3_c___b.html#aa03b9daf273a95370d743a5ef5bab7dd',1,'i3c_b_ibi_control_t']]], + ['notify_5frejected_5finterrupt_5frequests',['notify_rejected_interrupt_requests',['../group___i3_c___b.html#a338fe4fd5a8fab2a3213e25a1572b02c',1,'i3c_b_ibi_control_t']]], + ['notify_5frejected_5fmastership_5frequests',['notify_rejected_mastership_requests',['../group___i3_c___b.html#ad46715479c0a13d5bccb8992cb5edfb2',1,'i3c_b_ibi_control_t']]], ['num_5fblocks',['num_blocks',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a9781e58bb7cb2ee40de446936d523814',1,'transfer_info_t']]], ['number_5fof_5fpins',['number_of_pins',['../group___i_o_p_o_r_t___a_p_i.html#af5b820497125b07a94537deb03a37f0d',1,'ioport_cfg_t']]] ]; diff --git a/search/all_d.js b/search/all_d.js index 93f6e16..2695fda 100644 --- a/search/all_d.js +++ b/search/all_d.js @@ -4,14 +4,22 @@ var searchData= ['oaq2ndgendatacalculate',['oaq2ndGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ad1d9b01a5d84a3a4a06dfd714f485911',1,'rm_zmod4xxx_api_t']]], ['odor',['odor',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a107e482f18f60935d5454a87539565b2',1,'rm_zmod4xxx_odor_data_t::odor()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a026e4a40776c79cd6cf745c8446b4bfd',1,'rm_zmod4xxx_sulfur_odor_data_t::odor()']]], ['odordatacalculate',['odorDataCalculate',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aed55023e17ab93d307606c0d880df721',1,'rm_zmod4xxx_api_t']]], - ['open',['open',['../group___c_a_n___a_p_i.html#a44ef1a1a3726114b30f228c54b0d44ce',1,'can_api_t::open()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a639337eee77555b934cbf8238e0f8449',1,'external_irq_api_t::open()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#af5a9589a49c68b926de7deaefc272267',1,'i2c_master_status_t::open()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a6a35b07fde984333fdce6859dfd56e64',1,'i2c_master_api_t::open()'],['../group___i_o_p_o_r_t___a_p_i.html#ae9cd5d4b83ebe842e9f258aef4850c59',1,'ioport_api_t::open()'],['../group___m_h_u___a_p_i.html#ac3886717d220de2c7861063acceee859',1,'mhu_api_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a94dc2c05c8c387042d23a95b08a2f760',1,'mhu_ns_swint_get_api_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a451a6c711c6a8ea92bd71bcc0ee418b8',1,'mhu_ns_swint_set_api_t::open()'],['../group___p_o_e_g___a_p_i.html#a41c511a6b1b828d54f180b729ae4fe55',1,'poeg_api_t::open()'],['../group___s_p_i___a_p_i.html#a97177a6162ebad73907c7f23c1411426',1,'spi_api_t::open()'],['../group___t_i_m_e_r___a_p_i.html#af49a90087a53c8019d642a3f7abaa8ad',1,'timer_api_t::open()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a84d48960cdfe867ef54fd4635a85ceeb',1,'transfer_api_t::open()'],['../group___u_a_r_t___a_p_i.html#a962363eebf6d497894b5ca569ebb87bb',1,'uart_api_t::open()'],['../group___r_m___c_o_m_m_s___a_p_i.html#aef6d79b01056d9ea88e9fa5f0cd3f229',1,'rm_comms_api_t::open()'],['../group___r_m___h_s300_x___a_p_i.html#abdb7abf73635db350cf99e4041e1eb37',1,'rm_hs300x_api_t::open()'],['../group___r_m___h_s400_x___a_p_i.html#af60c3ba93861728b92487a5e727381d8',1,'rm_hs400x_api_t::open()'],['../group___r_m___o_b1203___a_p_i.html#a3d137e0be66735864d9a95669fa2c1f3',1,'rm_ob1203_api_t::open()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5ba1799ed3669a41fd7f0f436706367b',1,'rm_zmod4xxx_api_t::open()'],['../group___i_n_t_c___i_r_q.html#aa4a57502905a2ee4b4f45d7e7514f1de',1,'intc_irq_instance_ctrl_t::open()'],['../group___m_h_u___n_s.html#aa08a8ce470c0b9e6e561b50e40fc0cb7',1,'mhu_ns_instance_ctrl_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#a5ba254765d8e48946ae9b95ff7645fb3',1,'mhu_ns_swint_get_instance_ctrl_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#af4778eb4d67e116a2743c2212d263637',1,'mhu_ns_swint_set_instance_ctrl_t::open()'],['../group___m_h_u___s.html#a1304f9353f2506daf66e4d6612fbb158',1,'mhu_s_instance_ctrl_t::open()'],['../group___r_s_p_i.html#a1e9156851592aa749ab8d971c24da93e',1,'rspi_instance_ctrl_t::open()'],['../group___r_m___c_o_m_m_s___i2_c.html#ab623109ad8cbac1510e511ec6d93972f',1,'rm_comms_i2c_instance_ctrl_t::open()'],['../group___r_m___h_s300_x.html#a5031dbec8375c4b2be896166fa3457b4',1,'rm_hs300x_instance_ctrl_t::open()'],['../group___r_m___h_s400_x.html#a45b5fb27d54a8998d37ae8f90bc6bc47',1,'rm_hs400x_instance_ctrl_t::open()'],['../group___r_m___o_b1203.html#af1adb0f5fdb98f08dc0795c8946b04e5',1,'rm_ob1203_instance_ctrl_t::open()'],['../group___r_m___z_m_o_d4_x_x_x.html#a21b842e14881cd866264417021fedcda',1,'rm_zmod4xxx_instance_ctrl_t::open()']]], - ['operating_5fmode',['operating_mode',['../group___s_p_i___a_p_i.html#ab81d9fc86a397dbd72e57bca4b0aa107',1,'spi_cfg_t']]], + ['offsetset',['offsetSet',['../group___a_d_c___a_p_i.html#a305b2c2466cd88fdddf6134db542dc7e',1,'adc_api_t']]], + ['open',['open',['../group___a_d_c___a_p_i.html#afa184c06541e3fd9f90fc12ed775f468',1,'adc_api_t::open()'],['../group___c_a_n___a_p_i.html#a44ef1a1a3726114b30f228c54b0d44ce',1,'can_api_t::open()'],['../group___c_r_c___a_p_i.html#ad1c70317b3a73fc3cb102e6c673111be',1,'crc_api_t::open()'],['../group___e_l_c___a_p_i.html#ac4f753f3fcae95e036d24e3d6a84d1f5',1,'elc_api_t::open()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a639337eee77555b934cbf8238e0f8449',1,'external_irq_api_t::open()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#af5a9589a49c68b926de7deaefc272267',1,'i2c_master_status_t::open()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a6a35b07fde984333fdce6859dfd56e64',1,'i2c_master_api_t::open()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a3f978820e80073c05ef95e3b1ef31601',1,'i2c_slave_api_t::open()'],['../group___i3_c___a_p_i.html#a963e13cc6b3cf1903a01ed87901eb6a9',1,'i3c_api_t::open()'],['../group___i_o_p_o_r_t___a_p_i.html#ae9cd5d4b83ebe842e9f258aef4850c59',1,'ioport_api_t::open()'],['../group___m_h_u___a_p_i.html#ac3886717d220de2c7861063acceee859',1,'mhu_api_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a94dc2c05c8c387042d23a95b08a2f760',1,'mhu_ns_swint_get_api_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a451a6c711c6a8ea92bd71bcc0ee418b8',1,'mhu_ns_swint_set_api_t::open()'],['../group___p_d_m___a_p_i.html#a9144eb5d334c37cba16c54a931ff0b39',1,'pdm_api_t::open()'],['../group___p_o_e_g___a_p_i.html#a41c511a6b1b828d54f180b729ae4fe55',1,'poeg_api_t::open()'],['../group___r_t_c___a_p_i.html#aafcde8ffb1e01cccbfa0eb9d0506674a',1,'rtc_api_t::open()'],['../group___s_p_i___a_p_i.html#a97177a6162ebad73907c7f23c1411426',1,'spi_api_t::open()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#a6b8a1ae0eed7bca555c94959c1314ae3',1,'spi_flash_api_t::open()'],['../group___t_i_m_e_r___a_p_i.html#af49a90087a53c8019d642a3f7abaa8ad',1,'timer_api_t::open()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a84d48960cdfe867ef54fd4635a85ceeb',1,'transfer_api_t::open()'],['../group___u_a_r_t___a_p_i.html#a962363eebf6d497894b5ca569ebb87bb',1,'uart_api_t::open()'],['../group___w_d_t___a_p_i.html#af03fc1703319e1adacabc412c7e3de31',1,'wdt_api_t::open()'],['../group___r_m___c_o_m_m_s___a_p_i.html#aef6d79b01056d9ea88e9fa5f0cd3f229',1,'rm_comms_api_t::open()'],['../group___r_m___h_s300_x___a_p_i.html#abdb7abf73635db350cf99e4041e1eb37',1,'rm_hs300x_api_t::open()'],['../group___r_m___h_s400_x___a_p_i.html#af60c3ba93861728b92487a5e727381d8',1,'rm_hs400x_api_t::open()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5ba1799ed3669a41fd7f0f436706367b',1,'rm_zmod4xxx_api_t::open()'],['../group___i3_c___b.html#ae2ad6ece73c0f4b046708ab96f7c1842',1,'i3c_b_instance_ctrl_t::open()'],['../group___i_n_t_c___i_r_q.html#aa4a57502905a2ee4b4f45d7e7514f1de',1,'intc_irq_instance_ctrl_t::open()'],['../group___i_n_t_c___n_m_i.html#a4f439c63a9660ded18be6210ad5c61f1',1,'intc_nmi_instance_ctrl_t::open()'],['../group___i_n_t_c___t_i_n_t.html#a418c0307cdb3fcf14d74e151652ffd78',1,'intc_tint_instance_ctrl_t::open()'],['../group___m_h_u___b___n_s.html#af4c1fc022c5b71589516dd2ca5789a92',1,'mhu_b_ns_instance_ctrl_t::open()'],['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#a4f56a5fad7755cca0501ce4641ed6979',1,'mhu_b_ns_swint_get_instance_ctrl_t::open()'],['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#a62ec267ef9eb17835f70e99d23c9e840',1,'mhu_b_ns_swint_set_instance_ctrl_t::open()'],['../group___m_h_u___b___s.html#a294d326c6a08e1f19a58d2a2bbc88ca5',1,'mhu_b_s_instance_ctrl_t::open()'],['../group___m_h_u___n_s.html#aa08a8ce470c0b9e6e561b50e40fc0cb7',1,'mhu_ns_instance_ctrl_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#a5ba254765d8e48946ae9b95ff7645fb3',1,'mhu_ns_swint_get_instance_ctrl_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#af4778eb4d67e116a2743c2212d263637',1,'mhu_ns_swint_set_instance_ctrl_t::open()'],['../group___m_h_u___s.html#a1304f9353f2506daf66e4d6612fbb158',1,'mhu_s_instance_ctrl_t::open()'],['../group___m_t_u3.html#a3f5bfdfa30fd7e9c0d2d9ea355536d12',1,'mtu3_instance_ctrl_t::open()'],['../group___r_s_p_i.html#a1e9156851592aa749ab8d971c24da93e',1,'rspi_instance_ctrl_t::open()'],['../group___r_t_c.html#a531f0ac7759fe0ec50841022ae9a9bfe',1,'rtc_instance_ctrl_t::open()'],['../group___s_p_i___b.html#a63826f2e79dbe1834c3d99084558f71f',1,'spi_b_instance_ctrl_t::open()'],['../group___r_m___c_o_m_m_s___i2_c.html#ab623109ad8cbac1510e511ec6d93972f',1,'rm_comms_i2c_instance_ctrl_t::open()'],['../group___r_m___h_s300_x.html#a5031dbec8375c4b2be896166fa3457b4',1,'rm_hs300x_instance_ctrl_t::open()'],['../group___r_m___h_s400_x.html#a45b5fb27d54a8998d37ae8f90bc6bc47',1,'rm_hs400x_instance_ctrl_t::open()'],['../group___r_m___z_m_o_d4_x_x_x.html#a21b842e14881cd866264417021fedcda',1,'rm_zmod4xxx_instance_ctrl_t::open()']]], + ['operating_5fmode',['operating_mode',['../group___s_p_i___a_p_i.html#ab81d9fc86a397dbd72e57bca4b0aa107',1,'spi_cfg_t::operating_mode()'],['../group___a_d_c___c.html#a81f2c8156907fdc5b0055cd8443f3f25',1,'adc_c_extended_cfg_t::operating_mode()']]], + ['operation',['operation',['../group___i_o_p_o_r_t.html#adbcdc352d8f992d85fa368ba34c33530',1,'ioport_event_single_t::operation()'],['../group___i_o_p_o_r_t.html#a0092081f02f3d9b89d575f613fc06380',1,'ioport_event_group_output_t::operation()']]], ['options',['options',['../group___c_a_n___a_p_i.html#a27833816de50e1ad5b16b42856653ad8',1,'can_frame_t']]], + ['oscillator_5ffrequency',['oscillator_frequency',['../group___i3_c___b.html#adebd51c965faf0fe497971c15e669a91',1,'i3c_b_slave_command_response_info_t']]], + ['oscillator_5finaccuracy',['oscillator_inaccuracy',['../group___i3_c___b.html#a0dbd28cc4de1cbcf7dd3427feef969a2',1,'i3c_b_slave_command_response_info_t']]], ['output_5fdisable',['output_disable',['../group___g_p_t.html#ac1bab8a37aeb13d8f27d05e44d567bc9',1,'gpt_extended_pwm_cfg_t']]], ['output_5fenabled',['output_enabled',['../group___g_p_t.html#a5f0b69cc2d3cfe89baefcf348563df21',1,'gpt_output_pin_t']]], + ['output_5fpin_5flevel_5fa',['output_pin_level_a',['../group___m_t_u3.html#a2a34e1c4ab61754e34a02e7ee80c6073',1,'mtu3_output_pin_t']]], + ['output_5fpin_5flevel_5fb',['output_pin_level_b',['../group___m_t_u3.html#a55b86cba3e5d0552f18ffbe4db8bd8ac',1,'mtu3_output_pin_t']]], ['outputdisable',['outputDisable',['../group___p_o_e_g___a_p_i.html#afe1feb1a5288478eea8d339ffaa1c68e',1,'poeg_api_t']]], - ['overflow_5fcounter',['overflow_counter',['../group___r_m___o_b1203___a_p_i.html#a4c7f200673051f7f58eb32ff1e377eea',1,'rm_ob1203_fifo_info_t']]], - ['ozone_5fconcentration',['ozone_concentration',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a492587fbeb536fcd7994596a6f2c4176',1,'rm_zmod4xxx_oaq_2nd_data_t']]], - ['ob1203_20light_2fproximity_2fppg_20sensor_20_28rm_5fob1203_29',['OB1203 Light/Proximity/PPG Sensor (rm_ob1203)',['../group___r_m___o_b1203.html',1,'']]], - ['ob1203_20middleware_20interface',['OB1203 Middleware Interface',['../group___r_m___o_b1203___a_p_i.html',1,'']]] + ['over_5fvoltage_5flower_5flimit_5fdetection_5fenable',['over_voltage_lower_limit_detection_enable',['../group___p_d_m.html#ac67dc74127d1809c2f5831150d313b83',1,'pdm_extended_cfg_t']]], + ['over_5fvoltage_5fupper_5flimit_5fdetection_5fenable',['over_voltage_upper_limit_detection_enable',['../group___p_d_m.html#aa316525186852ad3ceb518911c92fd48',1,'pdm_extended_cfg_t']]], + ['overvoltage_5fdetection_5flower_5flimit',['overvoltage_detection_lower_limit',['../group___p_d_m.html#afd360fdbe979a72620ce845f137a4390',1,'pdm_extended_cfg_t']]], + ['overvoltage_5fdetection_5fupper_5flimit',['overvoltage_detection_upper_limit',['../group___p_d_m.html#ab9e18bf68240ab5a3ddf4cc59a1fafb2',1,'pdm_extended_cfg_t']]], + ['overwrite_5fcontrol',['overwrite_control',['../group___i_o_p_o_r_t.html#afa164460f4684605bbbe4c529ccdcca0',1,'ioport_event_group_input_t']]], + ['ozone_5fconcentration',['ozone_concentration',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a492587fbeb536fcd7994596a6f2c4176',1,'rm_zmod4xxx_oaq_2nd_data_t']]] ]; diff --git a/search/all_e.js b/search/all_e.js index 4762fd2..2854a20 100644 --- a/search/all_e.js +++ b/search/all_e.js @@ -1,63 +1,164 @@ var searchData= [ + ['p_5faddress',['p_address',['../group___a_d_c___a_p_i.html#aae60e54e2e18efa5e341cf0669476681',1,'adc_info_t::p_address()'],['../group___a_d_c___a_p_i.html#a90f47e90b6be16f8705cbfc9789120be',1,'adc_info_t::p_address()']]], ['p_5fafl',['p_afl',['../group___c_a_n_f_d.html#a3bcb58bb257835c3618f28751aad29a5',1,'canfd_extended_cfg_t']]], - ['p_5fapi',['p_api',['../group___c_a_n___a_p_i.html#a7630cfae3a82f8ecd7bbce599ef992ee',1,'can_instance_t::p_api()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a1c64bba3bbf9346831933b4d70b3ae9c',1,'external_irq_instance_t::p_api()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a3258c94576c0bc4a69095906a314386d',1,'i2c_master_instance_t::p_api()'],['../group___i_o_p_o_r_t___a_p_i.html#a1efa98e218609e4171542ebfae213765',1,'ioport_instance_t::p_api()'],['../group___m_h_u___a_p_i.html#af10328b8b91b88072cc88d78d4e19585',1,'mhu_instance_t::p_api()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a713e559aa5c0cb0309b7650a91391264',1,'mhu_ns_swint_get_instance_t::p_api()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#ab88ce5c4258642652c78ac702a56d15f',1,'mhu_ns_swint_set_instance_t::p_api()'],['../group___p_o_e_g___a_p_i.html#aa5e1aa9d5416c9ca24132cddae7565f3',1,'poeg_instance_t::p_api()'],['../group___s_p_i___a_p_i.html#a3fa6490704fecf976812df4a6ba9a494',1,'spi_instance_t::p_api()'],['../group___t_i_m_e_r___a_p_i.html#a552ef9466567fbe3c7c945e1efe3643c',1,'timer_instance_t::p_api()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a12d4ba0d43dd22fda6b1b238d2fa17b6',1,'transfer_instance_t::p_api()'],['../group___u_a_r_t___a_p_i.html#ace2b32a59ca156c32cee5860fb5db311',1,'uart_instance_t::p_api()'],['../group___r_m___h_s300_x___a_p_i.html#a42be32706089d71251045106dfeb9e82',1,'rm_hs300x_instance_t::p_api()'],['../group___r_m___h_s400_x___a_p_i.html#a5ecc1b981019560e1035eb47bb02e52f',1,'rm_hs400x_instance_t::p_api()'],['../group___r_m___o_b1203___a_p_i.html#ab0b7710c3ff54f649c0f544612570e84',1,'rm_ob1203_instance_t::p_api()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a92ddaabd0705326f5e1fcf0a4ced9ba7',1,'rm_zmod4xxx_instance_t::p_api()'],['../group___r_m___o_b1203.html#ada67105cd21a7dae41a9e6a46e96dd1d',1,'rm_ob1203_mode_extended_cfg_t::p_api()']]], - ['p_5fbaud_5fsetting',['p_baud_setting',['../group___s_c_i_f___u_a_r_t.html#aa990e9d3a5b69c41397f92a86a30174d',1,'scif_uart_extended_cfg_t']]], + ['p_5fapi',['p_api',['../group___a_d_c___a_p_i.html#a0d5d2d55cc37383172efd4d4c1e0171f',1,'adc_instance_t::p_api()'],['../group___c_a_n___a_p_i.html#a7630cfae3a82f8ecd7bbce599ef992ee',1,'can_instance_t::p_api()'],['../group___c_r_c___a_p_i.html#afbbb090a3e9cfa08f51cdd89a3389fac',1,'crc_instance_t::p_api()'],['../group___e_l_c___a_p_i.html#a9919c68bc6249d294d121715277a53dd',1,'elc_instance_t::p_api()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a1c64bba3bbf9346831933b4d70b3ae9c',1,'external_irq_instance_t::p_api()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a3258c94576c0bc4a69095906a314386d',1,'i2c_master_instance_t::p_api()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a63e78c999abc0cf1eea4a506bb14b720',1,'i2c_slave_instance_t::p_api()'],['../group___i3_c___a_p_i.html#aac576dcfc7c8ada6d77bba14314a8859',1,'i3c_instance_t::p_api()'],['../group___i_o_p_o_r_t___a_p_i.html#a1efa98e218609e4171542ebfae213765',1,'ioport_instance_t::p_api()'],['../group___m_h_u___a_p_i.html#af10328b8b91b88072cc88d78d4e19585',1,'mhu_instance_t::p_api()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a713e559aa5c0cb0309b7650a91391264',1,'mhu_ns_swint_get_instance_t::p_api()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#ab88ce5c4258642652c78ac702a56d15f',1,'mhu_ns_swint_set_instance_t::p_api()'],['../group___p_d_m___a_p_i.html#a82eac8296ce13d4a73f461bd10bf9242',1,'pdm_instance_t::p_api()'],['../group___p_o_e_g___a_p_i.html#aa5e1aa9d5416c9ca24132cddae7565f3',1,'poeg_instance_t::p_api()'],['../group___r_t_c___a_p_i.html#a8d5beb93c07f858029d0d77e8e5b770e',1,'rtc_instance_t::p_api()'],['../group___s_p_i___a_p_i.html#a3fa6490704fecf976812df4a6ba9a494',1,'spi_instance_t::p_api()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#aa393a0e23c69a916e8c30e9dc4e5513b',1,'spi_flash_instance_t::p_api()'],['../group___t_i_m_e_r___a_p_i.html#a552ef9466567fbe3c7c945e1efe3643c',1,'timer_instance_t::p_api()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a12d4ba0d43dd22fda6b1b238d2fa17b6',1,'transfer_instance_t::p_api()'],['../group___u_a_r_t___a_p_i.html#ace2b32a59ca156c32cee5860fb5db311',1,'uart_instance_t::p_api()'],['../group___w_d_t___a_p_i.html#a54e6814335b4dec365a1efb61cf82fe1',1,'wdt_instance_t::p_api()'],['../group___r_m___h_s300_x___a_p_i.html#a42be32706089d71251045106dfeb9e82',1,'rm_hs300x_instance_t::p_api()'],['../group___r_m___h_s400_x___a_p_i.html#a5ecc1b981019560e1035eb47bb02e52f',1,'rm_hs400x_instance_t::p_api()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a92ddaabd0705326f5e1fcf0a4ced9ba7',1,'rm_zmod4xxx_instance_t::p_api()']]], + ['p_5fbaud_5fsetting',['p_baud_setting',['../group___s_c_i___b___u_a_r_t.html#aa1e49fb13b37283c189e265be1b67fef',1,'sci_b_uart_extended_cfg_t::p_baud_setting()'],['../group___s_c_i_f___u_a_r_t.html#aa990e9d3a5b69c41397f92a86a30174d',1,'scif_uart_extended_cfg_t::p_baud_setting()']]], ['p_5fbit_5ftiming',['p_bit_timing',['../group___c_a_n___a_p_i.html#a751918f74effc746b381a75c971af879',1,'can_cfg_t']]], + ['p_5fbuffer',['p_buffer',['../group___i3_c___a_p_i.html#a71fb8d5e49ee1c39fdc190b5c5fd7e1c',1,'i3c_command_descriptor_t']]], ['p_5fbus',['p_bus',['../group___r_m___c_o_m_m_s___i2_c.html#a8f3ef7c72a9bc7468fd60dc052b07c74',1,'rm_comms_i2c_instance_ctrl_t']]], - ['p_5fcallback',['p_callback',['../group___c_a_n___a_p_i.html#a8e79eb818c5aca4f925f2323f52d08f1',1,'can_cfg_t::p_callback()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ac8dadd8ef06c625a7b02c2eb06da7959',1,'external_irq_cfg_t::p_callback()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#adbd429cb907c4f2484900e4b0845b8f8',1,'i2c_master_cfg_t::p_callback()'],['../group___m_h_u___a_p_i.html#ae6ee1dfc1a00326e8b26dfc9701f0b31',1,'mhu_cfg_t::p_callback()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a7e503fe06a35c9645b5081bbfa0179ce',1,'mhu_ns_swint_get_cfg_t::p_callback()'],['../group___p_o_e_g___a_p_i.html#a70ca0636c969217533571c505f2e68ca',1,'poeg_cfg_t::p_callback()'],['../group___s_p_i___a_p_i.html#ae9becc8fedef1f029e6adc788611a276',1,'spi_cfg_t::p_callback()'],['../group___t_i_m_e_r___a_p_i.html#a7d2f434f07723a53b504751e9e5ac540',1,'timer_cfg_t::p_callback()'],['../group___u_a_r_t___a_p_i.html#a83efd5806d31817983f75bab4d415c87',1,'uart_cfg_t::p_callback()'],['../group___r_m___c_o_m_m_s___a_p_i.html#aa7c637235b98c380a288bb1e5bbb4569',1,'rm_comms_cfg_t::p_callback()'],['../group___r_m___h_s300_x___a_p_i.html#a7e4a14435b06b381e41e2838af87a38c',1,'rm_hs300x_cfg_t::p_callback()']]], - ['p_5fcfg',['p_cfg',['../group___c_a_n___a_p_i.html#a064fa2cd7b88461619693b1e2cad9530',1,'can_instance_t::p_cfg()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ab32ad9ad3e7627390225d731f2834fd7',1,'external_irq_instance_t::p_cfg()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#aaff14ac14a40b21573f86fa65abe34f1',1,'i2c_master_instance_t::p_cfg()'],['../group___i_o_p_o_r_t___a_p_i.html#acef812bbce3afd1f4295fa7ff8b9ebfc',1,'ioport_instance_t::p_cfg()'],['../group___m_h_u___a_p_i.html#a2f882461a857251d03cbc5d63a6d52cb',1,'mhu_instance_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a13087ad031ff2d00bf58b47538a7d91a',1,'mhu_ns_swint_get_instance_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a4a58ec04b7950333b9de087d35219991',1,'mhu_ns_swint_set_instance_t::p_cfg()'],['../group___p_o_e_g___a_p_i.html#a3952f94b0ec56e7d66d5e806578be4f4',1,'poeg_instance_t::p_cfg()'],['../group___s_p_i___a_p_i.html#a792a14261f15cfbf582d683c16f3da72',1,'spi_instance_t::p_cfg()'],['../group___t_i_m_e_r___a_p_i.html#aebe4bd4819b5d24a8d4fa847359b6afa',1,'timer_instance_t::p_cfg()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a8ffd253e9be22795d2736d6dc683d710',1,'transfer_instance_t::p_cfg()'],['../group___u_a_r_t___a_p_i.html#a07af9be02a70a457bc4d5207c77e3bee',1,'uart_instance_t::p_cfg()'],['../group___r_m___h_s300_x___a_p_i.html#adc885d33644960e6c14860dfe1cc1cbe',1,'rm_hs300x_instance_t::p_cfg()'],['../group___r_m___h_s400_x___a_p_i.html#a9fa007f86deb655f999b5d0b1c4d65cb',1,'rm_hs400x_instance_t::p_cfg()'],['../group___r_m___o_b1203___a_p_i.html#a59afad08ce30308e6606c3362b903b47',1,'rm_ob1203_instance_t::p_cfg()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aac9344fd8efc73b82c65e1adcec5f88c',1,'rm_zmod4xxx_instance_t::p_cfg()'],['../group___m_h_u___n_s.html#a1ee2e9cadf1df4a9e3803a139c910f9a',1,'mhu_ns_instance_ctrl_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ac3fa10e51c1700db408b9e2febca0c45',1,'mhu_ns_swint_get_instance_ctrl_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#a2c2dcafbf0c66a844564cf48c5486f3f',1,'mhu_ns_swint_set_instance_ctrl_t::p_cfg()'],['../group___m_h_u___s.html#a721510fae53319c0919a0114969aad51',1,'mhu_s_instance_ctrl_t::p_cfg()'],['../group___r_s_p_i.html#af4b65717f05932609172a0828cee1db4',1,'rspi_instance_ctrl_t::p_cfg()'],['../group___r_m___c_o_m_m_s___i2_c.html#a88d8fbd6294057b09ea0231637643011',1,'rm_comms_i2c_instance_ctrl_t::p_cfg()'],['../group___r_m___h_s300_x.html#a60925699b63829347739382ba48b1d13',1,'rm_hs300x_instance_ctrl_t::p_cfg()'],['../group___r_m___h_s400_x.html#a8a565adac63233a59d03487d1417b33b',1,'rm_hs400x_instance_ctrl_t::p_cfg()'],['../group___r_m___o_b1203.html#a1f6bcc914fc1ce1cc6f6698aa8221cad',1,'rm_ob1203_instance_ctrl_t::p_cfg()'],['../group___r_m___z_m_o_d4_x_x_x.html#a55df2cbb3cdc4bbeb75db1dba936d2b1',1,'rm_zmod4xxx_instance_ctrl_t::p_cfg()']]], - ['p_5fcomms_5fcallback',['p_comms_callback',['../group___r_m___h_s400_x___a_p_i.html#a7050fd08733d97f90d0ce05faf6b2848',1,'rm_hs400x_cfg_t::p_comms_callback()'],['../group___r_m___o_b1203___a_p_i.html#a95b8a8c5eb90336511e811dcc960546c',1,'rm_ob1203_cfg_t::p_comms_callback()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8f25d9bf4ff36c9dcf976a029ef49c10',1,'rm_zmod4xxx_cfg_t::p_comms_callback()'],['../group___r_m___h_s400_x.html#a6288740f2724536ce15942ec1e46ee3b',1,'rm_hs400x_instance_ctrl_t::p_comms_callback()'],['../group___r_m___o_b1203.html#abaf0ccf0e2e10792107bdcb85790bad7',1,'rm_ob1203_instance_ctrl_t::p_comms_callback()'],['../group___r_m___z_m_o_d4_x_x_x.html#a57301a9ef64a2317881cdc7d89783fb5',1,'rm_zmod4xxx_instance_ctrl_t::p_comms_callback()']]], - ['p_5fcomms_5fi2c_5finstance',['p_comms_i2c_instance',['../group___r_m___h_s300_x.html#a36c21d0366384c0913491c536e81c280',1,'rm_hs300x_instance_ctrl_t::p_comms_i2c_instance()'],['../group___r_m___h_s400_x.html#a977c323e9b1fba0858f58d4e9baf0ad5',1,'rm_hs400x_instance_ctrl_t::p_comms_i2c_instance()'],['../group___r_m___o_b1203.html#a28ff7aa34215ceac46c9837869566943',1,'rm_ob1203_instance_ctrl_t::p_comms_i2c_instance()'],['../group___r_m___z_m_o_d4_x_x_x.html#afc82544a966e7f146ceee4ef404b7582',1,'rm_zmod4xxx_instance_ctrl_t::p_comms_i2c_instance()']]], - ['p_5fcomms_5finstance',['p_comms_instance',['../group___r_m___h_s400_x___a_p_i.html#a36931367054e059ebbebccfda169927d',1,'rm_hs400x_cfg_t::p_comms_instance()'],['../group___r_m___o_b1203___a_p_i.html#a8a9cdc12354f28a3e33700e5df67de20',1,'rm_ob1203_cfg_t::p_comms_instance()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8cce7b013ebccc3b0b0aed0e9436e922',1,'rm_zmod4xxx_cfg_t::p_comms_instance()']]], - ['p_5fcontext',['p_context',['../group___c_a_n___a_p_i.html#a663ed64c927057ab0ac45d02505dc758',1,'can_callback_args_t::p_context()'],['../group___c_a_n___a_p_i.html#a3699700f0a08a75159483ac2825dca90',1,'can_cfg_t::p_context()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ade4504697e9cde129dfbe8796985f66a',1,'external_irq_callback_args_t::p_context()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a4237b56a314b7e145aefb59e6e1def1b',1,'external_irq_cfg_t::p_context()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ab98d1221b3a246270ef56a57d947ac0c',1,'i2c_master_callback_args_t::p_context()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a37cfd76fa962aea67e76d6efaf16dfd7',1,'i2c_master_cfg_t::p_context()'],['../group___m_h_u___a_p_i.html#a2a3e7eaaacf7c526d9fe10427817f68d',1,'mhu_callback_args_t::p_context()'],['../group___m_h_u___a_p_i.html#ad3cc3a49b8f6d7cbbcc6a72833f51e2c',1,'mhu_cfg_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ac3fe2eadbd870c342ddda1aaef641568',1,'mhu_ns_swint_get_callback_args_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ab94275a9966c5a59c8bc8a06cbb2647c',1,'mhu_ns_swint_get_cfg_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a43558a76b254d006a32b55d251341171',1,'mhu_ns_swint_set_callback_args_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a7d3d94f9b3b9162cc59931ac56c36a73',1,'mhu_ns_swint_set_cfg_t::p_context()'],['../group___p_o_e_g___a_p_i.html#a87c6c18eb74b68a3849822c777864f79',1,'poeg_callback_args_t::p_context()'],['../group___p_o_e_g___a_p_i.html#a4c643319683a792e608a1331f00c0d9c',1,'poeg_cfg_t::p_context()'],['../group___s_p_i___a_p_i.html#acdafc89def1a4325004c5f7022e9488f',1,'spi_callback_args_t::p_context()'],['../group___s_p_i___a_p_i.html#ac54861ff0fab10bfb9cd8834c31ad9c0',1,'spi_cfg_t::p_context()'],['../group___t_i_m_e_r___a_p_i.html#a83bdbe351fc323e334f96bbf41420a07',1,'timer_callback_args_t::p_context()'],['../group___t_i_m_e_r___a_p_i.html#ad6aac1202b591958b40f1bc018abd387',1,'timer_cfg_t::p_context()'],['../group___u_a_r_t___a_p_i.html#af39b34ea2c03d20876045cbe6cba70a7',1,'uart_callback_args_t::p_context()'],['../group___u_a_r_t___a_p_i.html#a2ef1ef69636aec9cbfbac44db4a67db6',1,'uart_cfg_t::p_context()'],['../group___r_m___c_o_m_m_s___a_p_i.html#ac2f5d7d5bc7207eb617bcc8b668dc5b3',1,'rm_comms_cfg_t::p_context()'],['../group___r_m___h_s300_x___a_p_i.html#a2ee1168f444f962fd1807aa6a48776cb',1,'rm_hs300x_cfg_t::p_context()'],['../group___r_m___h_s400_x___a_p_i.html#a1275c87fc13e4effb686e72343b85ad2',1,'rm_hs400x_cfg_t::p_context()'],['../group___r_m___o_b1203___a_p_i.html#adf018d2e314ba41ba4dfb56ebd411501',1,'rm_ob1203_cfg_t::p_context()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abc68dcd903ac59de8c478b0d22d25bfa',1,'rm_zmod4xxx_cfg_t::p_context()'],['../group___i_n_t_c___i_r_q.html#a54e8132da6a0a3e951c50e71cf10d90b',1,'intc_irq_instance_ctrl_t::p_context()'],['../group___r_m___c_o_m_m_s___i2_c.html#a2bb5f217d51637d4e27b8da6761c2021',1,'rm_comms_i2c_instance_ctrl_t::p_context()'],['../group___r_m___h_s300_x.html#a36436afd1ed74c2bbf34eab8e5af34bc',1,'rm_hs300x_instance_ctrl_t::p_context()'],['../group___r_m___h_s400_x.html#afae51fca4d0796c27b1234c4d050f9e9',1,'rm_hs400x_instance_ctrl_t::p_context()'],['../group___r_m___o_b1203.html#a761b053d6f0276e7cdbef4ab857141b9',1,'rm_ob1203_instance_ctrl_t::p_context()'],['../group___r_m___z_m_o_d4_x_x_x.html#a6151d069461571549ecbf52193ab8624',1,'rm_zmod4xxx_instance_ctrl_t::p_context()']]], - ['p_5fctrl',['p_ctrl',['../group___c_a_n___a_p_i.html#ae4d4d032f3e4f0688879027286ae4dbe',1,'can_instance_t::p_ctrl()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a7bf006f685a26836095b1660bf2eb263',1,'external_irq_instance_t::p_ctrl()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a61db7ac4bf7c96d6cbc28c4db281fd6f',1,'i2c_master_instance_t::p_ctrl()'],['../group___i_o_p_o_r_t___a_p_i.html#af318c6344f0b7679df2ca79bf24bad6e',1,'ioport_instance_t::p_ctrl()'],['../group___m_h_u___a_p_i.html#a5a66c1be79665ce4b5d802f568d371cf',1,'mhu_instance_t::p_ctrl()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#af7a697adf7a1b68f31c055c8f2fe0836',1,'mhu_ns_swint_get_instance_t::p_ctrl()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#ad486d0fcb0595022f8d9dfcd9860e06f',1,'mhu_ns_swint_set_instance_t::p_ctrl()'],['../group___p_o_e_g___a_p_i.html#a475ca15f8e94a914ea5889e66b4d5ccc',1,'poeg_instance_t::p_ctrl()'],['../group___s_p_i___a_p_i.html#abd5918ae9720bacf1708e2a2dfed564b',1,'spi_instance_t::p_ctrl()'],['../group___t_i_m_e_r___a_p_i.html#a641f967b15711f0e91bc0f41fc8ebfe6',1,'timer_instance_t::p_ctrl()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a655547e7bbc2c8be77ac085f3417a389',1,'transfer_instance_t::p_ctrl()'],['../group___u_a_r_t___a_p_i.html#ae01cedb63e8739651eb14d0ccc9b54a4',1,'uart_instance_t::p_ctrl()'],['../group___r_m___h_s300_x___a_p_i.html#a70416ff9548ecd27d828617bd5dfdb8c',1,'rm_hs300x_instance_t::p_ctrl()'],['../group___r_m___h_s400_x___a_p_i.html#a9b456f4ea4caeb04061bca271c5cab66',1,'rm_hs400x_instance_t::p_ctrl()'],['../group___r_m___o_b1203___a_p_i.html#a5bdd78a4533b146b93676fb1f630eaee',1,'rm_ob1203_instance_t::p_ctrl()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5ce0b0a7d1b59a0ad9088449e884cbb4',1,'rm_zmod4xxx_instance_t::p_ctrl()']]], + ['p_5fcallback',['p_callback',['../group___a_d_c___a_p_i.html#a0e6dc3fd369994f549bf634f482fa4ae',1,'adc_cfg_t::p_callback()'],['../group___c_a_n___a_p_i.html#a8e79eb818c5aca4f925f2323f52d08f1',1,'can_cfg_t::p_callback()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ac8dadd8ef06c625a7b02c2eb06da7959',1,'external_irq_cfg_t::p_callback()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#adbd429cb907c4f2484900e4b0845b8f8',1,'i2c_master_cfg_t::p_callback()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ac194239c95dc0a5a71e220937295d67c',1,'i2c_slave_cfg_t::p_callback()'],['../group___i3_c___a_p_i.html#a476eb1c4e5a0defaa54d3b4a11ce099a',1,'i3c_cfg_t::p_callback()'],['../group___m_h_u___a_p_i.html#ae6ee1dfc1a00326e8b26dfc9701f0b31',1,'mhu_cfg_t::p_callback()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a7e503fe06a35c9645b5081bbfa0179ce',1,'mhu_ns_swint_get_cfg_t::p_callback()'],['../group___p_d_m___a_p_i.html#aee193c08a4d958f6dc4905479594109f',1,'pdm_cfg_t::p_callback()'],['../group___p_o_e_g___a_p_i.html#a70ca0636c969217533571c505f2e68ca',1,'poeg_cfg_t::p_callback()'],['../group___r_t_c___a_p_i.html#acb6915cb2c55dd196d4c35cbf805bab2',1,'rtc_cfg_t::p_callback()'],['../group___s_p_i___a_p_i.html#ae9becc8fedef1f029e6adc788611a276',1,'spi_cfg_t::p_callback()'],['../group___t_i_m_e_r___a_p_i.html#a7d2f434f07723a53b504751e9e5ac540',1,'timer_cfg_t::p_callback()'],['../group___u_a_r_t___a_p_i.html#a83efd5806d31817983f75bab4d415c87',1,'uart_cfg_t::p_callback()'],['../group___w_d_t___a_p_i.html#a123b3dbdef324ba5e27939fef7575cb6',1,'wdt_cfg_t::p_callback()'],['../group___r_m___c_o_m_m_s___a_p_i.html#aa7c637235b98c380a288bb1e5bbb4569',1,'rm_comms_cfg_t::p_callback()'],['../group___r_m___h_s300_x___a_p_i.html#a7e4a14435b06b381e41e2838af87a38c',1,'rm_hs300x_cfg_t::p_callback()'],['../group___d_m_a_c___b.html#a128e8c1345cc9470629fcb55871311a5',1,'dmac_b_extended_cfg_t::p_callback()'],['../group___m_t_u3.html#a1424b0f596d7101a897b5de751c06239',1,'mtu3_instance_ctrl_t::p_callback()']]], + ['p_5fcallback_5fmemory',['p_callback_memory',['../group___m_t_u3.html#a0985147b6d048419a186f194f670f606',1,'mtu3_instance_ctrl_t']]], + ['p_5fcfg',['p_cfg',['../group___a_d_c___a_p_i.html#a68d06edf3f5b759698d3ce981e773ef0',1,'adc_instance_t::p_cfg()'],['../group___c_a_n___a_p_i.html#a064fa2cd7b88461619693b1e2cad9530',1,'can_instance_t::p_cfg()'],['../group___c_r_c___a_p_i.html#aba878011b00301dd2d99582eda689dcd',1,'crc_instance_t::p_cfg()'],['../group___e_l_c___a_p_i.html#a90896863b4141cbbd2eb4d2eea7e58e4',1,'elc_instance_t::p_cfg()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ab32ad9ad3e7627390225d731f2834fd7',1,'external_irq_instance_t::p_cfg()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#aaff14ac14a40b21573f86fa65abe34f1',1,'i2c_master_instance_t::p_cfg()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ab197d0cd3aae178af5cc7add1a40ad44',1,'i2c_slave_instance_t::p_cfg()'],['../group___i3_c___a_p_i.html#a9076df3ea1eaa0842da95560f98309af',1,'i3c_instance_t::p_cfg()'],['../group___i_o_p_o_r_t___a_p_i.html#acef812bbce3afd1f4295fa7ff8b9ebfc',1,'ioport_instance_t::p_cfg()'],['../group___m_h_u___a_p_i.html#a2f882461a857251d03cbc5d63a6d52cb',1,'mhu_instance_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a13087ad031ff2d00bf58b47538a7d91a',1,'mhu_ns_swint_get_instance_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a4a58ec04b7950333b9de087d35219991',1,'mhu_ns_swint_set_instance_t::p_cfg()'],['../group___p_d_m___a_p_i.html#aa7507f32d16aa2574b645cd8ac720e30',1,'pdm_instance_t::p_cfg()'],['../group___p_o_e_g___a_p_i.html#a3952f94b0ec56e7d66d5e806578be4f4',1,'poeg_instance_t::p_cfg()'],['../group___r_t_c___a_p_i.html#af39ca95036c2304e17a64a8fac0e1a0b',1,'rtc_instance_t::p_cfg()'],['../group___s_p_i___a_p_i.html#a792a14261f15cfbf582d683c16f3da72',1,'spi_instance_t::p_cfg()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#a74f26946c33e77fda5b6e2d26b2c9fee',1,'spi_flash_instance_t::p_cfg()'],['../group___t_i_m_e_r___a_p_i.html#aebe4bd4819b5d24a8d4fa847359b6afa',1,'timer_instance_t::p_cfg()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a8ffd253e9be22795d2736d6dc683d710',1,'transfer_instance_t::p_cfg()'],['../group___u_a_r_t___a_p_i.html#a07af9be02a70a457bc4d5207c77e3bee',1,'uart_instance_t::p_cfg()'],['../group___w_d_t___a_p_i.html#a39a1f436f29b8db08e214bd85c6e53ff',1,'wdt_instance_t::p_cfg()'],['../group___r_m___h_s300_x___a_p_i.html#adc885d33644960e6c14860dfe1cc1cbe',1,'rm_hs300x_instance_t::p_cfg()'],['../group___r_m___h_s400_x___a_p_i.html#a9fa007f86deb655f999b5d0b1c4d65cb',1,'rm_hs400x_instance_t::p_cfg()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aac9344fd8efc73b82c65e1adcec5f88c',1,'rm_zmod4xxx_instance_t::p_cfg()'],['../group___i3_c___b.html#a6292eaa63c5ee2ceefc2c8404aa57fc7',1,'i3c_b_instance_ctrl_t::p_cfg()'],['../group___m_h_u___b___n_s.html#ab0e659a5bf2d3dbc21790c60e55e3502',1,'mhu_b_ns_instance_ctrl_t::p_cfg()'],['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#a0eefba6634fa0bc1909fcd1fc46ca7da',1,'mhu_b_ns_swint_get_instance_ctrl_t::p_cfg()'],['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#aceefb97edf194ab8591a4b3977f3c153',1,'mhu_b_ns_swint_set_instance_ctrl_t::p_cfg()'],['../group___m_h_u___b___s.html#a3b97d7aeb81bea198e1a0d059636094f',1,'mhu_b_s_instance_ctrl_t::p_cfg()'],['../group___m_h_u___n_s.html#a1ee2e9cadf1df4a9e3803a139c910f9a',1,'mhu_ns_instance_ctrl_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ac3fa10e51c1700db408b9e2febca0c45',1,'mhu_ns_swint_get_instance_ctrl_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#a2c2dcafbf0c66a844564cf48c5486f3f',1,'mhu_ns_swint_set_instance_ctrl_t::p_cfg()'],['../group___m_h_u___s.html#a721510fae53319c0919a0114969aad51',1,'mhu_s_instance_ctrl_t::p_cfg()'],['../group___m_t_u3.html#ab44e73386d7b2fe1ad3315b5655022e6',1,'mtu3_instance_ctrl_t::p_cfg()'],['../group___r_s_p_i.html#af4b65717f05932609172a0828cee1db4',1,'rspi_instance_ctrl_t::p_cfg()'],['../group___r_t_c.html#a02ff7a87b8c7fdf8ec2ecc4ad4a817c6',1,'rtc_instance_ctrl_t::p_cfg()'],['../group___s_p_i___b.html#a4d55d0c12d644e533249a943486a9b17',1,'spi_b_instance_ctrl_t::p_cfg()'],['../group___r_m___c_o_m_m_s___i2_c.html#a88d8fbd6294057b09ea0231637643011',1,'rm_comms_i2c_instance_ctrl_t::p_cfg()'],['../group___r_m___h_s300_x.html#a60925699b63829347739382ba48b1d13',1,'rm_hs300x_instance_ctrl_t::p_cfg()'],['../group___r_m___h_s400_x.html#a8a565adac63233a59d03487d1417b33b',1,'rm_hs400x_instance_ctrl_t::p_cfg()'],['../group___r_m___z_m_o_d4_x_x_x.html#a55df2cbb3cdc4bbeb75db1dba936d2b1',1,'rm_zmod4xxx_instance_ctrl_t::p_cfg()']]], + ['p_5fchannel_5fcfg',['p_channel_cfg',['../group___a_d_c___a_p_i.html#a4356f10e7c706f14370fed8599c6d4d0',1,'adc_instance_t']]], + ['p_5fcomms_5fcallback',['p_comms_callback',['../group___r_m___h_s400_x___a_p_i.html#a7050fd08733d97f90d0ce05faf6b2848',1,'rm_hs400x_cfg_t::p_comms_callback()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8f25d9bf4ff36c9dcf976a029ef49c10',1,'rm_zmod4xxx_cfg_t::p_comms_callback()'],['../group___r_m___h_s400_x.html#a6288740f2724536ce15942ec1e46ee3b',1,'rm_hs400x_instance_ctrl_t::p_comms_callback()'],['../group___r_m___z_m_o_d4_x_x_x.html#a57301a9ef64a2317881cdc7d89783fb5',1,'rm_zmod4xxx_instance_ctrl_t::p_comms_callback()']]], + ['p_5fcomms_5fi2c_5finstance',['p_comms_i2c_instance',['../group___r_m___h_s300_x.html#a36c21d0366384c0913491c536e81c280',1,'rm_hs300x_instance_ctrl_t::p_comms_i2c_instance()'],['../group___r_m___h_s400_x.html#a977c323e9b1fba0858f58d4e9baf0ad5',1,'rm_hs400x_instance_ctrl_t::p_comms_i2c_instance()'],['../group___r_m___z_m_o_d4_x_x_x.html#afc82544a966e7f146ceee4ef404b7582',1,'rm_zmod4xxx_instance_ctrl_t::p_comms_i2c_instance()']]], + ['p_5fcomms_5finstance',['p_comms_instance',['../group___r_m___h_s400_x___a_p_i.html#a36931367054e059ebbebccfda169927d',1,'rm_hs400x_cfg_t::p_comms_instance()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8cce7b013ebccc3b0b0aed0e9436e922',1,'rm_zmod4xxx_cfg_t::p_comms_instance()']]], + ['p_5fcontext',['p_context',['../group___a_d_c___a_p_i.html#a68c6287d395bac7964e20441638c69ac',1,'adc_callback_args_t::p_context()'],['../group___a_d_c___a_p_i.html#a3f426d9b4992a45674c0e8ead528202b',1,'adc_cfg_t::p_context()'],['../group___c_a_n___a_p_i.html#a663ed64c927057ab0ac45d02505dc758',1,'can_callback_args_t::p_context()'],['../group___c_a_n___a_p_i.html#a3699700f0a08a75159483ac2825dca90',1,'can_cfg_t::p_context()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ade4504697e9cde129dfbe8796985f66a',1,'external_irq_callback_args_t::p_context()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a4237b56a314b7e145aefb59e6e1def1b',1,'external_irq_cfg_t::p_context()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ab98d1221b3a246270ef56a57d947ac0c',1,'i2c_master_callback_args_t::p_context()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a37cfd76fa962aea67e76d6efaf16dfd7',1,'i2c_master_cfg_t::p_context()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a8480d2ef5f292fa836adfbaef1a0689c',1,'i2c_slave_callback_args_t::p_context()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a6cc910e14348a5c42bb4ffbf41dad5ba',1,'i2c_slave_cfg_t::p_context()'],['../group___i3_c___a_p_i.html#ac551df467b9752c621533d829cdd1e4d',1,'i3c_callback_args_t::p_context()'],['../group___i3_c___a_p_i.html#a8a5c800bff7722549723dea066fe19eb',1,'i3c_cfg_t::p_context()'],['../group___m_h_u___a_p_i.html#a2a3e7eaaacf7c526d9fe10427817f68d',1,'mhu_callback_args_t::p_context()'],['../group___m_h_u___a_p_i.html#ad3cc3a49b8f6d7cbbcc6a72833f51e2c',1,'mhu_cfg_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ac3fe2eadbd870c342ddda1aaef641568',1,'mhu_ns_swint_get_callback_args_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ab94275a9966c5a59c8bc8a06cbb2647c',1,'mhu_ns_swint_get_cfg_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a43558a76b254d006a32b55d251341171',1,'mhu_ns_swint_set_callback_args_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a7d3d94f9b3b9162cc59931ac56c36a73',1,'mhu_ns_swint_set_cfg_t::p_context()'],['../group___p_d_m___a_p_i.html#ac700c0b3e8b54aaee5e31e37d74c2f3f',1,'pdm_callback_args_t::p_context()'],['../group___p_d_m___a_p_i.html#aaff00f00bf416201caca2c61fb0b3d7b',1,'pdm_cfg_t::p_context()'],['../group___p_o_e_g___a_p_i.html#a87c6c18eb74b68a3849822c777864f79',1,'poeg_callback_args_t::p_context()'],['../group___p_o_e_g___a_p_i.html#a4c643319683a792e608a1331f00c0d9c',1,'poeg_cfg_t::p_context()'],['../group___r_t_c___a_p_i.html#a2a07242a217b804f8dc04fb078d4a6a1',1,'rtc_callback_args_t::p_context()'],['../group___r_t_c___a_p_i.html#a84d9e4ba135ac56c779ca525660d5c2a',1,'rtc_cfg_t::p_context()'],['../group___s_p_i___a_p_i.html#acdafc89def1a4325004c5f7022e9488f',1,'spi_callback_args_t::p_context()'],['../group___s_p_i___a_p_i.html#ac54861ff0fab10bfb9cd8834c31ad9c0',1,'spi_cfg_t::p_context()'],['../group___t_i_m_e_r___a_p_i.html#a83bdbe351fc323e334f96bbf41420a07',1,'timer_callback_args_t::p_context()'],['../group___t_i_m_e_r___a_p_i.html#ad6aac1202b591958b40f1bc018abd387',1,'timer_cfg_t::p_context()'],['../group___u_a_r_t___a_p_i.html#af39b34ea2c03d20876045cbe6cba70a7',1,'uart_callback_args_t::p_context()'],['../group___u_a_r_t___a_p_i.html#a2ef1ef69636aec9cbfbac44db4a67db6',1,'uart_cfg_t::p_context()'],['../group___w_d_t___a_p_i.html#a64eb19cb40d1c2e0d7a81d773289af4d',1,'wdt_callback_args_t::p_context()'],['../group___w_d_t___a_p_i.html#a7d1afa07628f9a7c0b9e3c74206d44e9',1,'wdt_cfg_t::p_context()'],['../group___r_m___c_o_m_m_s___a_p_i.html#ac2f5d7d5bc7207eb617bcc8b668dc5b3',1,'rm_comms_cfg_t::p_context()'],['../group___r_m___h_s300_x___a_p_i.html#a2ee1168f444f962fd1807aa6a48776cb',1,'rm_hs300x_cfg_t::p_context()'],['../group___r_m___h_s400_x___a_p_i.html#a1275c87fc13e4effb686e72343b85ad2',1,'rm_hs400x_cfg_t::p_context()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abc68dcd903ac59de8c478b0d22d25bfa',1,'rm_zmod4xxx_cfg_t::p_context()'],['../group___d_m_a_c___b.html#a3c0c11bbddaa1a47bf8b03b68de9f865',1,'dmac_b_callback_args_t::p_context()'],['../group___d_m_a_c___b.html#a810513506f2aa216b17f288ab8ef8bb5',1,'dmac_b_extended_cfg_t::p_context()'],['../group___i_n_t_c___i_r_q.html#a54e8132da6a0a3e951c50e71cf10d90b',1,'intc_irq_instance_ctrl_t::p_context()'],['../group___i_n_t_c___n_m_i.html#af0208db3467f67a11f7bfe085a79708e',1,'intc_nmi_instance_ctrl_t::p_context()'],['../group___i_n_t_c___t_i_n_t.html#a09938fef3661c208ee0e249c305d9cb7',1,'intc_tint_instance_ctrl_t::p_context()'],['../group___m_t_u3.html#a4ad3258449aecadc5d9d96f7b4325cde',1,'mtu3_instance_ctrl_t::p_context()'],['../group___r_m___c_o_m_m_s___i2_c.html#a2bb5f217d51637d4e27b8da6761c2021',1,'rm_comms_i2c_instance_ctrl_t::p_context()'],['../group___r_m___h_s300_x.html#a36436afd1ed74c2bbf34eab8e5af34bc',1,'rm_hs300x_instance_ctrl_t::p_context()'],['../group___r_m___h_s400_x.html#afae51fca4d0796c27b1234c4d050f9e9',1,'rm_hs400x_instance_ctrl_t::p_context()'],['../group___r_m___z_m_o_d4_x_x_x.html#a6151d069461571549ecbf52193ab8624',1,'rm_zmod4xxx_instance_ctrl_t::p_context()']]], + ['p_5fctrl',['p_ctrl',['../group___a_d_c___a_p_i.html#aa536102e4b637a09aa6c6744d8598c8f',1,'adc_instance_t::p_ctrl()'],['../group___c_a_n___a_p_i.html#ae4d4d032f3e4f0688879027286ae4dbe',1,'can_instance_t::p_ctrl()'],['../group___c_r_c___a_p_i.html#a43ca783a75a91815659195f46717b4ca',1,'crc_instance_t::p_ctrl()'],['../group___e_l_c___a_p_i.html#a666a726dd9209856799d03b62b703029',1,'elc_instance_t::p_ctrl()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a7bf006f685a26836095b1660bf2eb263',1,'external_irq_instance_t::p_ctrl()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a61db7ac4bf7c96d6cbc28c4db281fd6f',1,'i2c_master_instance_t::p_ctrl()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ae2d56c946cfbfae06c21f48be15d32cb',1,'i2c_slave_instance_t::p_ctrl()'],['../group___i3_c___a_p_i.html#a2ad3482a64914b52deb037ed89a5b023',1,'i3c_instance_t::p_ctrl()'],['../group___i_o_p_o_r_t___a_p_i.html#af318c6344f0b7679df2ca79bf24bad6e',1,'ioport_instance_t::p_ctrl()'],['../group___m_h_u___a_p_i.html#a5a66c1be79665ce4b5d802f568d371cf',1,'mhu_instance_t::p_ctrl()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#af7a697adf7a1b68f31c055c8f2fe0836',1,'mhu_ns_swint_get_instance_t::p_ctrl()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#ad486d0fcb0595022f8d9dfcd9860e06f',1,'mhu_ns_swint_set_instance_t::p_ctrl()'],['../group___p_d_m___a_p_i.html#a3c9a2ef616d009192da8185b064ba3ab',1,'pdm_instance_t::p_ctrl()'],['../group___p_o_e_g___a_p_i.html#a475ca15f8e94a914ea5889e66b4d5ccc',1,'poeg_instance_t::p_ctrl()'],['../group___r_t_c___a_p_i.html#acc669b027e055903ca6effb673182925',1,'rtc_instance_t::p_ctrl()'],['../group___s_p_i___a_p_i.html#abd5918ae9720bacf1708e2a2dfed564b',1,'spi_instance_t::p_ctrl()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#ab7cca7ee8e821effe8d7e8902e6a7514',1,'spi_flash_instance_t::p_ctrl()'],['../group___t_i_m_e_r___a_p_i.html#a641f967b15711f0e91bc0f41fc8ebfe6',1,'timer_instance_t::p_ctrl()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a655547e7bbc2c8be77ac085f3417a389',1,'transfer_instance_t::p_ctrl()'],['../group___u_a_r_t___a_p_i.html#ae01cedb63e8739651eb14d0ccc9b54a4',1,'uart_instance_t::p_ctrl()'],['../group___w_d_t___a_p_i.html#ac301430918784342b3f136d2afc705a7',1,'wdt_instance_t::p_ctrl()'],['../group___r_m___h_s300_x___a_p_i.html#a70416ff9548ecd27d828617bd5dfdb8c',1,'rm_hs300x_instance_t::p_ctrl()'],['../group___r_m___h_s400_x___a_p_i.html#a9b456f4ea4caeb04061bca271c5cab66',1,'rm_hs400x_instance_t::p_ctrl()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5ce0b0a7d1b59a0ad9088449e884cbb4',1,'rm_zmod4xxx_instance_t::p_ctrl()']]], ['p_5fdata_5ftiming',['p_data_timing',['../group___c_a_n_f_d.html#a924d2187cf551c85ded2b148e26bbfd9',1,'canfd_extended_cfg_t']]], - ['p_5fdest',['p_dest',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a176dc2f3d1edfc321fa248a7e4c3b549',1,'transfer_info_t']]], - ['p_5fdevice_5fstatus',['p_device_status',['../group___r_m___o_b1203.html#a6474b07ae9f3ac43315f3614be9de2d6',1,'rm_ob1203_instance_ctrl_t']]], + ['p_5fdest',['p_dest',['../group___t_r_a_n_s_f_e_r___a_p_i.html#acc20817272cf1db573a1dbc54a9cb3bf',1,'transfer_info_t::p_dest()'],['../group___d_m_a_c___b.html#a7413254141ea747d2f333335c5c07aff',1,'dmac_b_register_set_setting_t::p_dest()']]], + ['p_5ferase_5fcommand_5flist',['p_erase_command_list',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a59655a41dc087373e0a03d23a99f301a',1,'spi_flash_cfg_t']]], + ['p_5ferr_5fcfg',['p_err_cfg',['../group___r_t_c___a_p_i.html#ae9c6c82e443f75c0ad7ec40b178a3972',1,'rtc_cfg_t']]], ['p_5fext',['p_ext',['../group___r_s_p_i.html#a5c0b630ca16e1aa5a398850f669513db',1,'rspi_instance_ctrl_t']]], - ['p_5fextend',['p_extend',['../group___c_a_n___a_p_i.html#a0715ca299b94eea0ef2843b99e0d32e5',1,'can_cfg_t::p_extend()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#abce89fd1740fefc7c2d179ca751df78f',1,'external_irq_cfg_t::p_extend()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a6b8f5358d8bbec687ddcdb32c88a5f59',1,'i2c_master_cfg_t::p_extend()'],['../group___s_p_i___a_p_i.html#a78b80f52103ccfc52dbc78bffbc832b6',1,'spi_cfg_t::p_extend()'],['../group___t_i_m_e_r___a_p_i.html#a30a4d58bdfa5834a17d497c7f3906c75',1,'timer_cfg_t::p_extend()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a7dcf4353ecf5e5df7024e1a3d5db7c09',1,'transfer_cfg_t::p_extend()'],['../group___u_a_r_t___a_p_i.html#af0950404b4fc6329f9d6f7802b850531',1,'uart_cfg_t::p_extend()'],['../group___r_m___c_o_m_m_s___a_p_i.html#acfd68d17c8cad67545ef754a1f5f1322',1,'rm_comms_cfg_t::p_extend()'],['../group___r_m___h_s300_x___a_p_i.html#a2bef066ec906f14e411982dc7f51c64d',1,'rm_hs300x_cfg_t::p_extend()'],['../group___r_m___h_s400_x___a_p_i.html#ae6e90a1467d0a6ca0911845360356fc5',1,'rm_hs400x_cfg_t::p_extend()'],['../group___r_m___o_b1203___a_p_i.html#a4cbf8f98a7e43f101dceb15005784375',1,'rm_ob1203_cfg_t::p_extend()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af76dfeb408164a58e2571d56bcb40101',1,'rm_zmod4xxx_cfg_t::p_extend()']]], - ['p_5ffifo_5finfo',['p_fifo_info',['../group___r_m___o_b1203.html#af65f28877e8b54a1b22601e42ab7d1db',1,'rm_ob1203_instance_ctrl_t']]], + ['p_5fextend',['p_extend',['../group___a_d_c___a_p_i.html#a5463ef8731c3b8a0094fbfff74c73449',1,'adc_cfg_t::p_extend()'],['../group___c_a_n___a_p_i.html#a0715ca299b94eea0ef2843b99e0d32e5',1,'can_cfg_t::p_extend()'],['../group___c_r_c___a_p_i.html#aa38d898bb2b40f121ce3ec1b54bf921f',1,'crc_cfg_t::p_extend()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#abce89fd1740fefc7c2d179ca751df78f',1,'external_irq_cfg_t::p_extend()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a6b8f5358d8bbec687ddcdb32c88a5f59',1,'i2c_master_cfg_t::p_extend()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a6b56336af0eaf92db7006a028876c575',1,'i2c_slave_cfg_t::p_extend()'],['../group___i3_c___a_p_i.html#a446d4dde4f518d873b98362d3ab68303',1,'i3c_cfg_t::p_extend()'],['../group___i_o_p_o_r_t___a_p_i.html#a3c302ad5a452c415a6cb35ddecbe54bf',1,'ioport_cfg_t::p_extend()'],['../group___p_d_m___a_p_i.html#abff3295dd414d671e7c75d538d657cf7',1,'pdm_cfg_t::p_extend()'],['../group___r_t_c___a_p_i.html#a66dc93f732aa8ec1b07d036602974cb0',1,'rtc_cfg_t::p_extend()'],['../group___s_p_i___a_p_i.html#a78b80f52103ccfc52dbc78bffbc832b6',1,'spi_cfg_t::p_extend()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#ad2403240c3b40bb518d0623283712248',1,'spi_flash_cfg_t::p_extend()'],['../group___t_i_m_e_r___a_p_i.html#a30a4d58bdfa5834a17d497c7f3906c75',1,'timer_cfg_t::p_extend()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a7dcf4353ecf5e5df7024e1a3d5db7c09',1,'transfer_cfg_t::p_extend()'],['../group___u_a_r_t___a_p_i.html#af0950404b4fc6329f9d6f7802b850531',1,'uart_cfg_t::p_extend()'],['../group___w_d_t___a_p_i.html#a7291179f9c5dea0f40d384398f2d81fe',1,'wdt_cfg_t::p_extend()'],['../group___r_m___c_o_m_m_s___a_p_i.html#acfd68d17c8cad67545ef754a1f5f1322',1,'rm_comms_cfg_t::p_extend()'],['../group___r_m___h_s300_x___a_p_i.html#a2bef066ec906f14e411982dc7f51c64d',1,'rm_hs300x_cfg_t::p_extend()'],['../group___r_m___h_s400_x___a_p_i.html#ae6e90a1467d0a6ca0911845360356fc5',1,'rm_hs400x_cfg_t::p_extend()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af76dfeb408164a58e2571d56bcb40101',1,'rm_zmod4xxx_cfg_t::p_extend()']]], ['p_5fglobal_5fcfg',['p_global_cfg',['../group___c_a_n_f_d.html#a4cb13ba7074112d39a102638b7895a94',1,'canfd_extended_cfg_t']]], ['p_5finfo',['p_info',['../group___t_r_a_n_s_f_e_r___a_p_i.html#af99b114594ac2d55aae0c9e11f703164',1,'transfer_cfg_t']]], ['p_5finstance',['p_instance',['../group___r_m___h_s300_x___a_p_i.html#ac66a33236b3cb4b5106c22b063c43858',1,'rm_hs300x_cfg_t']]], - ['p_5firq_5fcallback',['p_irq_callback',['../group___r_m___o_b1203___a_p_i.html#a212ec348b354cb3cce33fc0d313feec8',1,'rm_ob1203_cfg_t::p_irq_callback()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a2ef43c9ece4e53557648b8a77ec406f5',1,'rm_zmod4xxx_cfg_t::p_irq_callback()'],['../group___r_m___o_b1203.html#aa936e3ee9a75bee3c5a4aad146f04c7e',1,'rm_ob1203_instance_ctrl_t::p_irq_callback()'],['../group___r_m___z_m_o_d4_x_x_x.html#a0438d7a16c46e81db655c9627a2e3fac',1,'rm_zmod4xxx_instance_ctrl_t::p_irq_callback()']]], - ['p_5firq_5finstance',['p_irq_instance',['../group___r_m___o_b1203___a_p_i.html#af8fdc3428fcbe22e4878a27ccde17b0b',1,'rm_ob1203_cfg_t::p_irq_instance()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a692f0a4eaad2c9e8e8cdbb0a2e792dd9',1,'rm_zmod4xxx_cfg_t::p_irq_instance()'],['../group___r_m___o_b1203.html#a189057778d7cbd48ac1ad8a1df064a77',1,'rm_ob1203_instance_ctrl_t::p_irq_instance()'],['../group___r_m___z_m_o_d4_x_x_x.html#a993f572e2bc8acef02a151b7e1a38808',1,'rm_zmod4xxx_instance_ctrl_t::p_irq_instance()']]], + ['p_5firq_5fcallback',['p_irq_callback',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a2ef43c9ece4e53557648b8a77ec406f5',1,'rm_zmod4xxx_cfg_t::p_irq_callback()'],['../group___r_m___z_m_o_d4_x_x_x.html#a0438d7a16c46e81db655c9627a2e3fac',1,'rm_zmod4xxx_instance_ctrl_t::p_irq_callback()']]], + ['p_5firq_5finstance',['p_irq_instance',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a692f0a4eaad2c9e8e8cdbb0a2e792dd9',1,'rm_zmod4xxx_cfg_t::p_irq_instance()'],['../group___r_m___z_m_o_d4_x_x_x.html#a993f572e2bc8acef02a151b7e1a38808',1,'rm_zmod4xxx_instance_ctrl_t::p_irq_instance()']]], ['p_5flower_5flevel_5fcfg',['p_lower_level_cfg',['../group___r_m___c_o_m_m_s___a_p_i.html#a8bcd1db3bbb96b2dd0cb252d2b580f53',1,'rm_comms_cfg_t::p_lower_level_cfg()'],['../group___r_m___c_o_m_m_s___i2_c.html#a98016cae64f53d4c8451a93fec50480d',1,'rm_comms_i2c_instance_ctrl_t::p_lower_level_cfg()']]], - ['p_5fmailbox',['p_mailbox',['../group___c_a_n___a_p_i.html#a564584ef9e48317f93f432a0b86b9af8',1,'can_cfg_t']]], - ['p_5fmode',['p_mode',['../group___r_m___o_b1203.html#af53827a211cd1402bd8945e8c5f16f5f',1,'rm_ob1203_instance_ctrl_t']]], + ['p_5fnext1_5fregister_5fsetting',['p_next1_register_setting',['../group___d_m_a_c___b.html#a8d1d6c80ac5dad8f955773d399390485',1,'dmac_b_extended_info_t']]], + ['p_5fnext1_5fsrc',['p_next1_src',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a07ff7ab703d6c6e5f3e2fdeabce7519a',1,'transfer_info_t']]], ['p_5fpin_5fcfg_5fdata',['p_pin_cfg_data',['../group___i_o_p_o_r_t___a_p_i.html#a024de5a09c01dd710ba447a9ffa3271b',1,'ioport_cfg_t']]], - ['p_5fpwm_5fcfg',['p_pwm_cfg',['../group___g_p_t.html#a55e5f85f57b77fd7ee5a1de7ff39da27',1,'gpt_extended_cfg_t']]], - ['p_5fregs',['p_regs',['../group___m_h_u___n_s.html#a61e5f2158fbbd11d05252a83571927dd',1,'mhu_ns_instance_ctrl_t::p_regs()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#aa0f0b0ca2034ddc5dbe9d143f1389799',1,'mhu_ns_swint_get_instance_ctrl_t::p_regs()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#a8d75e2e88164656cab2e3b921a1568e4',1,'mhu_ns_swint_set_instance_ctrl_t::p_regs()'],['../group___m_h_u___s.html#af745bc664f80d4fd4cf848e357801eca',1,'mhu_s_instance_ctrl_t::p_regs()'],['../group___r_s_p_i.html#aeac6ab8d657da805d12554dd8090af67',1,'rspi_instance_ctrl_t::p_regs()']]], - ['p_5frx_5fdata',['p_rx_data',['../group___r_s_p_i.html#a98166008c3a0b7f73b1c0e8e162c9969',1,'rspi_instance_ctrl_t']]], + ['p_5fport_5fgroup_5finput_5fcfg',['p_port_group_input_cfg',['../group___i_o_p_o_r_t.html#ae256dab18228aacaf260e215b0919086',1,'ioport_extend_cfg_t']]], + ['p_5fport_5fgroup_5foutput_5fcfg',['p_port_group_output_cfg',['../group___i_o_p_o_r_t.html#a4ee136a2b01acdbb29db539464741770',1,'ioport_extend_cfg_t']]], + ['p_5fpwm_5fcfg',['p_pwm_cfg',['../group___g_p_t.html#a55e5f85f57b77fd7ee5a1de7ff39da27',1,'gpt_extended_cfg_t::p_pwm_cfg()'],['../group___m_t_u3.html#aff82059debc7b813205be81de5f350c5',1,'mtu3_extended_cfg_t::p_pwm_cfg()']]], + ['p_5freg',['p_reg',['../group___i3_c___b.html#a1be04ad63b14c5df7547285f9c92ba66',1,'i3c_b_instance_ctrl_t::p_reg()'],['../group___m_t_u3.html#a4af7341566a2e88e2be9c7368e095ea5',1,'mtu3_instance_ctrl_t::p_reg()']]], + ['p_5freg_5fcom',['p_reg_com',['../group___m_t_u3.html#ab867c5de83802ed0b964c23e776b3702',1,'mtu3_instance_ctrl_t']]], + ['p_5freg_5fnf',['p_reg_nf',['../group___m_t_u3.html#abdb95c4611476cb60d46326fc0a79f8d',1,'mtu3_instance_ctrl_t']]], + ['p_5fregs',['p_regs',['../group___m_h_u___b___n_s.html#ad68f27c0f8259cfb7a6d58727c56b67c',1,'mhu_b_ns_instance_ctrl_t::p_regs()'],['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#af80195b0968f9c69dfd0c89fa645ac4f',1,'mhu_b_ns_swint_get_instance_ctrl_t::p_regs()'],['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#ae4b9ea02a0965d8918fa729c6b19e8b6',1,'mhu_b_ns_swint_set_instance_ctrl_t::p_regs()'],['../group___m_h_u___b___s.html#a2b8c58c859b360c49f9c132b8e9e56eb',1,'mhu_b_s_instance_ctrl_t::p_regs()'],['../group___m_h_u___n_s.html#a61e5f2158fbbd11d05252a83571927dd',1,'mhu_ns_instance_ctrl_t::p_regs()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#aa0f0b0ca2034ddc5dbe9d143f1389799',1,'mhu_ns_swint_get_instance_ctrl_t::p_regs()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#a8d75e2e88164656cab2e3b921a1568e4',1,'mhu_ns_swint_set_instance_ctrl_t::p_regs()'],['../group___m_h_u___s.html#af745bc664f80d4fd4cf848e357801eca',1,'mhu_s_instance_ctrl_t::p_regs()'],['../group___r_s_p_i.html#aeac6ab8d657da805d12554dd8090af67',1,'rspi_instance_ctrl_t::p_regs()'],['../group___s_p_i___b.html#a73e08678d0e9902c81c88b6f6ca19c02',1,'spi_b_instance_ctrl_t::p_regs()']]], + ['p_5frx_5fdata',['p_rx_data',['../group___r_s_p_i.html#a98166008c3a0b7f73b1c0e8e162c9969',1,'rspi_instance_ctrl_t::p_rx_data()'],['../group___s_p_i___b.html#a0688f8d078659fb2901ffe44d64d3045',1,'spi_b_instance_ctrl_t::p_rx_data()']]], ['p_5fshared_5fmemory',['p_shared_memory',['../group___m_h_u___a_p_i.html#a8820bea933c4deea77e01e48b6f76865',1,'mhu_cfg_t']]], - ['p_5fshared_5fmemory_5frx',['p_shared_memory_rx',['../group___m_h_u___n_s.html#af5fdb525ff4a77b4cddb17d066e8c246',1,'mhu_ns_instance_ctrl_t::p_shared_memory_rx()'],['../group___m_h_u___s.html#a74b1dc369c621b29c80cfec96a0189a2',1,'mhu_s_instance_ctrl_t::p_shared_memory_rx()']]], - ['p_5fshared_5fmemory_5ftx',['p_shared_memory_tx',['../group___m_h_u___n_s.html#aa4455658de7b85e233e61bfee994a130',1,'mhu_ns_instance_ctrl_t::p_shared_memory_tx()'],['../group___m_h_u___s.html#a397d3be13f6769fe0add08595aa197e2',1,'mhu_s_instance_ctrl_t::p_shared_memory_tx()']]], - ['p_5fsrc',['p_src',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ad264d20a1b0afc0100c2e3b1d5a1a1c8',1,'transfer_info_t']]], + ['p_5fshared_5fmemory_5frx',['p_shared_memory_rx',['../group___m_h_u___b___n_s.html#aba2ed695735df5ae0890447008554a1a',1,'mhu_b_ns_instance_ctrl_t::p_shared_memory_rx()'],['../group___m_h_u___b___s.html#a910e0327342316a77edb79f80e2beb2e',1,'mhu_b_s_instance_ctrl_t::p_shared_memory_rx()'],['../group___m_h_u___n_s.html#af5fdb525ff4a77b4cddb17d066e8c246',1,'mhu_ns_instance_ctrl_t::p_shared_memory_rx()'],['../group___m_h_u___s.html#a74b1dc369c621b29c80cfec96a0189a2',1,'mhu_s_instance_ctrl_t::p_shared_memory_rx()']]], + ['p_5fshared_5fmemory_5ftx',['p_shared_memory_tx',['../group___m_h_u___b___n_s.html#a697b7be0ff6ea5e30819c4936991a032',1,'mhu_b_ns_instance_ctrl_t::p_shared_memory_tx()'],['../group___m_h_u___b___s.html#aa89c2c59032c4f93ba53b8a8aaeec31c',1,'mhu_b_s_instance_ctrl_t::p_shared_memory_tx()'],['../group___m_h_u___n_s.html#aa4455658de7b85e233e61bfee994a130',1,'mhu_ns_instance_ctrl_t::p_shared_memory_tx()'],['../group___m_h_u___s.html#a397d3be13f6769fe0add08595aa197e2',1,'mhu_s_instance_ctrl_t::p_shared_memory_tx()']]], + ['p_5fsingle_5fport_5fcfg',['p_single_port_cfg',['../group___i_o_p_o_r_t.html#a4fda5dd01b9cdd2517e99df949b09c53',1,'ioport_extend_cfg_t']]], + ['p_5fslave_5finfo',['p_slave_info',['../group___i3_c___a_p_i.html#a28a15d1d237c21fbf3c61486fc5e7f9d',1,'i3c_callback_args_t']]], + ['p_5fsrc',['p_src',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a197ef7d84898829f988dca88fc9e481c',1,'transfer_info_t::p_src()'],['../group___d_m_a_c___b.html#a543a2e4f1901f1c745ae7f1eb0eff1a5',1,'dmac_b_register_set_setting_t::p_src()']]], ['p_5ftransfer_5fdata',['p_transfer_data',['../group___r_m___c_o_m_m_s___i2_c.html#a709194cfb42435320dd9a2f263850811',1,'rm_comms_i2c_instance_ctrl_t']]], - ['p_5ftransfer_5frx',['p_transfer_rx',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a80f1272727c156915cd589c2a881a58f',1,'i2c_master_cfg_t::p_transfer_rx()'],['../group___s_p_i___a_p_i.html#ab38fb6af687bdf7e0ea9143499849bc6',1,'spi_cfg_t::p_transfer_rx()'],['../group___u_a_r_t___a_p_i.html#a465fe0c740b4c6f289956849180e2621',1,'uart_cfg_t::p_transfer_rx()']]], + ['p_5ftransfer_5frx',['p_transfer_rx',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a80f1272727c156915cd589c2a881a58f',1,'i2c_master_cfg_t::p_transfer_rx()'],['../group___p_d_m___a_p_i.html#ad25f36a51d384189ebc129a471f88c4c',1,'pdm_cfg_t::p_transfer_rx()'],['../group___s_p_i___a_p_i.html#ab38fb6af687bdf7e0ea9143499849bc6',1,'spi_cfg_t::p_transfer_rx()'],['../group___u_a_r_t___a_p_i.html#a465fe0c740b4c6f289956849180e2621',1,'uart_cfg_t::p_transfer_rx()']]], ['p_5ftransfer_5ftx',['p_transfer_tx',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#afc60a909796633071932179988fc8d53',1,'i2c_master_cfg_t::p_transfer_tx()'],['../group___s_p_i___a_p_i.html#a312e4358f12551a3f7aaa5f0a09c0501',1,'spi_cfg_t::p_transfer_tx()'],['../group___u_a_r_t___a_p_i.html#a60b6abd0d74f5305fda32373371d8b3a',1,'uart_cfg_t::p_transfer_tx()']]], - ['p_5ftx_5fdata',['p_tx_data',['../group___r_s_p_i.html#ab6addb584c6cedbffe24dc9983b8aa07',1,'rspi_instance_ctrl_t']]], + ['p_5ftx_5fdata',['p_tx_data',['../group___r_s_p_i.html#ab6addb584c6cedbffe24dc9983b8aa07',1,'rspi_instance_ctrl_t::p_tx_data()'],['../group___s_p_i___b.html#a7f95eeca760420ef6d71e453f43e7154',1,'spi_b_instance_ctrl_t::p_tx_data()']]], + ['p_5fwindow_5fcfg',['p_window_cfg',['../group___a_d_c___e.html#a2e6ad852231e189d342c3845fe03562a',1,'adc_e_channel_cfg_t']]], ['p_5fzmod4xxx_5flib',['p_zmod4xxx_lib',['../group___r_m___z_m_o_d4_x_x_x.html#a68cd23f22e6e0fea3b8d8869ea3954f5',1,'rm_zmod4xxx_instance_ctrl_t']]], - ['parity',['parity',['../group___u_a_r_t___a_p_i.html#a07bd6b0ef728681a3abee96ada2ea79d',1,'uart_cfg_t']]], + ['page_5fprogram_5faddress_5flines',['page_program_address_lines',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ab612f8046209bbb2b29e5d3eee98831f',1,'spi_flash_cfg_t']]], + ['page_5fprogram_5fcommand',['page_program_command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ad630dd9c52ab12c077c5b27485b46017',1,'spi_flash_cfg_t']]], + ['page_5fsize_5fbytes',['page_size_bytes',['../group___s_p_i___f_l_a_s_h___a_p_i.html#abfd1deab895e3f8c8f38a51d74c79b17',1,'spi_flash_cfg_t']]], + ['parity',['parity',['../group___u_a_r_t___a_p_i.html#a07bd6b0ef728681a3abee96ada2ea79d',1,'uart_cfg_t::parity()'],['../group___s_p_i___b.html#af73d771092b53a6fe3556e39064ba38e',1,'spi_b_extended_cfg_t::parity()']]], + ['parity_5fphase_5fenable',['parity_phase_enable',['../group___i3_c___b.html#abf6047ed6b80423a3e34c58d7e6f2159',1,'i3c_b_clock_stalling_t']]], ['pclk_5fdiv',['pclk_div',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#acab3057d607bc3efd20955126a8e92d7',1,'external_irq_cfg_t']]], + ['pcm_5fedge',['pcm_edge',['../group___p_d_m___a_p_i.html#ab612a5c37643d9c506a10a9967b887c8',1,'pdm_cfg_t']]], + ['pcm_5fwidth',['pcm_width',['../group___p_d_m___a_p_i.html#a5ef7c8d0fc16829d08bf291a64b996b7',1,'pdm_cfg_t']]], + ['pdm_20interface_20_28r_5fpdm_29',['PDM Interface (r_pdm)',['../group___p_d_m.html',1,'']]], + ['pdm_20interface',['PDM Interface',['../group___p_d_m___a_p_i.html',1,'']]], + ['pdm_5fapi_5ft',['pdm_api_t',['../group___p_d_m___a_p_i.html#structpdm__api__t',1,'']]], + ['pdm_5fcallback_5fargs_5ft',['pdm_callback_args_t',['../group___p_d_m___a_p_i.html#structpdm__callback__args__t',1,'']]], + ['pdm_5fcfg_5ft',['pdm_cfg_t',['../group___p_d_m___a_p_i.html#structpdm__cfg__t',1,'']]], + ['pdm_5fclk_5fdiv_5ft',['pdm_clk_div_t',['../group___p_d_m.html#ga2666e0193f3d484391172283f9532c71',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f10',['PDM_CLOCK_DIV_10',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71addce245567626c37c31fc74845fbeb31',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f12',['PDM_CLOCK_DIV_12',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a045a957540a61e6d165357e660e3fe83',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f14',['PDM_CLOCK_DIV_14',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71af4822ad9efdcb34b3b627492c8d67791',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f16',['PDM_CLOCK_DIV_16',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71aaddbe76456afe39d63fea05b73a91b95',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f18',['PDM_CLOCK_DIV_18',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a2c5cb536d231f56d0ed006ca29cf0737',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f2',['PDM_CLOCK_DIV_2',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a54c68c8a370a4d7e1a1a1e8c1f88bbf7',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f20',['PDM_CLOCK_DIV_20',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71acec983b4a1f0f8048e33198a113c34fd',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f22',['PDM_CLOCK_DIV_22',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a6bc7098eb41738d9d95b47732e83f5a1',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f24',['PDM_CLOCK_DIV_24',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a75233dc7e955467e9ec57d112b8a798f',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f26',['PDM_CLOCK_DIV_26',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71ac173036e4d0c9187705b36bc9ccbe115',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f28',['PDM_CLOCK_DIV_28',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a3ec822a9c16b6773b5fee81bf37514b7',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f30',['PDM_CLOCK_DIV_30',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a8bb7b28dcfb9f3f5860897e85becbeda',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f32',['PDM_CLOCK_DIV_32',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a10032f0bd87fc702ba0d0ef6db2f2371',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f4',['PDM_CLOCK_DIV_4',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71ac892e5ea2e5d37f3d7b04a8bf21a0fb1',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f6',['PDM_CLOCK_DIV_6',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71aa9152eb960ed85321d4deb69838ed45f',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f8',['PDM_CLOCK_DIV_8',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71acae0bbc7c1abd4d0f572c4c468f3c738',1,'r_pdm.h']]], + ['pdm_5fcompensation_5ffilter_5fright_5fshift_5f0',['PDM_COMPENSATION_FILTER_RIGHT_SHIFT_0',['../group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca2d2217dde029d6b5477c1ebdb623459c',1,'r_pdm.h']]], + ['pdm_5fcompensation_5ffilter_5fright_5fshift_5f1',['PDM_COMPENSATION_FILTER_RIGHT_SHIFT_1',['../group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca26667abb7f4f7364d38993e2ac0329b9',1,'r_pdm.h']]], + ['pdm_5fcompensation_5ffilter_5fright_5fshift_5f2',['PDM_COMPENSATION_FILTER_RIGHT_SHIFT_2',['../group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca2487e27fddb6866e2b540f4bf270b83a',1,'r_pdm.h']]], + ['pdm_5fcompensation_5ffilter_5fright_5fshift_5f3',['PDM_COMPENSATION_FILTER_RIGHT_SHIFT_3',['../group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca61655ec7848f1bfc1604dd0d266a0b3b',1,'r_pdm.h']]], + ['pdm_5fcompensation_5ffilter_5fshift_5ft',['pdm_compensation_filter_shift_t',['../group___p_d_m.html#gad6b9c09e74442b86d88d1718f30844bc',1,'r_pdm.h']]], + ['pdm_5fctrl_5ft',['pdm_ctrl_t',['../group___p_d_m___a_p_i.html#ga16be2346ab1fd4d3929228a28914430c',1,'r_pdm_api.h']]], + ['pdm_5ferror_5fbuffer_5foverwrite',['PDM_ERROR_BUFFER_OVERWRITE',['../group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2da61c56fc9d6d836096a7c7e4b10c0ee17',1,'r_pdm_api.h']]], + ['pdm_5ferror_5fovervoltage_5flower',['PDM_ERROR_OVERVOLTAGE_LOWER',['../group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2da70bb4c740eec0bdd92cf20e63e540ba7',1,'r_pdm_api.h']]], + ['pdm_5ferror_5fovervoltage_5fupper',['PDM_ERROR_OVERVOLTAGE_UPPER',['../group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2dab00a11e564c13def3c78e520e09573ab',1,'r_pdm_api.h']]], + ['pdm_5ferror_5fshort_5fcircuit',['PDM_ERROR_SHORT_CIRCUIT',['../group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2da0507dc19cc300d66e07d4b452a44c9a9',1,'r_pdm_api.h']]], + ['pdm_5ferror_5ft',['pdm_error_t',['../group___p_d_m___a_p_i.html#gaf682776db13b51a982b047a8eb5fef2d',1,'r_pdm_api.h']]], + ['pdm_5fevent_5fdata',['PDM_EVENT_DATA',['../group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946ac3719cfdf7fc1e91172888da1ab6f511',1,'r_pdm_api.h']]], + ['pdm_5fevent_5ferror',['PDM_EVENT_ERROR',['../group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946a6ab9b149f9673d692a581c5211f13134',1,'r_pdm_api.h']]], + ['pdm_5fevent_5fidle',['PDM_EVENT_IDLE',['../group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946aa4e2f360c85f3e28c57bfa71b932a57d',1,'r_pdm_api.h']]], + ['pdm_5fevent_5fsound_5fdetection',['PDM_EVENT_SOUND_DETECTION',['../group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946a3cf03b37b166de31e8e8761161bf7e44',1,'r_pdm_api.h']]], + ['pdm_5fevent_5ft',['pdm_event_t',['../group___p_d_m___a_p_i.html#gafb514c195258d2f14c8e18e3778ad946',1,'r_pdm_api.h']]], + ['pdm_5fextended_5fcfg_5ft',['pdm_extended_cfg_t',['../group___p_d_m.html#structpdm__extended__cfg__t',1,'']]], + ['pdm_5fhigh_5fpass_5ffilter_5fshift_5ft',['pdm_high_pass_filter_shift_t',['../group___p_d_m.html#gaf2a94b0febed706bdad5526b11cb50c1',1,'r_pdm.h']]], + ['pdm_5fhpf_5fright_5fshift_5f0',['PDM_HPF_RIGHT_SHIFT_0',['../group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a3387643d4f8b7d4407785a063f7209a6',1,'r_pdm.h']]], + ['pdm_5fhpf_5fright_5fshift_5f1',['PDM_HPF_RIGHT_SHIFT_1',['../group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a05b61524d21f269e1d6e80495d18a54d',1,'r_pdm.h']]], + ['pdm_5fhpf_5fright_5fshift_5f2',['PDM_HPF_RIGHT_SHIFT_2',['../group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a10de74577af853e342fb6fa74cf5d701',1,'r_pdm.h']]], + ['pdm_5fhpf_5fright_5fshift_5f3',['PDM_HPF_RIGHT_SHIFT_3',['../group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a35ce50e6bef8cda1c1be3e751d8dd683',1,'r_pdm.h']]], + ['pdm_5finput_5fdata_5fedge_5ffall',['PDM_INPUT_DATA_EDGE_FALL',['../group___p_d_m___a_p_i.html#gga471ab0afd7d0f709e50ece23087b1759ad4f961a1e93d174697084cd288c0e57f',1,'r_pdm_api.h']]], + ['pdm_5finput_5fdata_5fedge_5frise',['PDM_INPUT_DATA_EDGE_RISE',['../group___p_d_m___a_p_i.html#gga471ab0afd7d0f709e50ece23087b1759ab7bc06eef0965cb223d7da74d5164afb',1,'r_pdm_api.h']]], + ['pdm_5finput_5fdata_5fedge_5ft',['pdm_input_data_edge_t',['../group___p_d_m___a_p_i.html#ga471ab0afd7d0f709e50ece23087b1759',1,'r_pdm_api.h']]], + ['pdm_5finstance_5fctrl_5ft',['pdm_instance_ctrl_t',['../group___p_d_m.html#structpdm__instance__ctrl__t',1,'']]], + ['pdm_5finstance_5ft',['pdm_instance_t',['../group___p_d_m___a_p_i.html#structpdm__instance__t',1,'']]], + ['pdm_5finterrupt_5fthreshold_5f1',['PDM_INTERRUPT_THRESHOLD_1',['../group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8a1b7068a93d97db9482f25f1c5bb89ab4',1,'r_pdm.h']]], + ['pdm_5finterrupt_5fthreshold_5f16',['PDM_INTERRUPT_THRESHOLD_16',['../group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8addb15f7e3c60581f90c436ab9eb3055d',1,'r_pdm.h']]], + ['pdm_5finterrupt_5fthreshold_5f2',['PDM_INTERRUPT_THRESHOLD_2',['../group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8a7ae437c0a00a82fb0d1155f2ae28e300',1,'r_pdm.h']]], + ['pdm_5finterrupt_5fthreshold_5f4',['PDM_INTERRUPT_THRESHOLD_4',['../group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8a5042bd3cf5897af4199e6834fde1e341',1,'r_pdm.h']]], + ['pdm_5finterrupt_5fthreshold_5f8',['PDM_INTERRUPT_THRESHOLD_8',['../group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8addbf54abea07e335a42267a1172e44bd',1,'r_pdm.h']]], + ['pdm_5finterrupt_5fthreshold_5ft',['pdm_interrupt_threshold_t',['../group___p_d_m.html#gaa14fe788b2c7ab49898fb7030c7fbee8',1,'r_pdm.h']]], + ['pdm_5flow_5fpass_5ffilter_5fshift_5ft',['pdm_low_pass_filter_shift_t',['../group___p_d_m.html#gacaad67afced89e9de93c82536d4dea0b',1,'r_pdm.h']]], + ['pdm_5flpf_5fright_5fshift_5f0',['PDM_LPF_RIGHT_SHIFT_0',['../group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0bab5b68c6092d9115647ae1cb92ca47118',1,'r_pdm.h']]], + ['pdm_5flpf_5fright_5fshift_5f1',['PDM_LPF_RIGHT_SHIFT_1',['../group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0ba9898049fbff6af21ffbf9be9db8df58c',1,'r_pdm.h']]], + ['pdm_5flpf_5fright_5fshift_5f2',['PDM_LPF_RIGHT_SHIFT_2',['../group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0bae87ed3ba2651f1e731c14d7a9628c598',1,'r_pdm.h']]], + ['pdm_5flpf_5fright_5fshift_5f3',['PDM_LPF_RIGHT_SHIFT_3',['../group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0baaf0fe07eca85a9fe3d708e60c2178eea',1,'r_pdm.h']]], + ['pdm_5fmoving_5faverage_5fmode_5f1_5forder',['PDM_MOVING_AVERAGE_MODE_1_ORDER',['../group___p_d_m.html#gga667e7ccab805f0976adc5015ecc35ecba6c440f66cd7e5625ca174c6d9c32bbd7',1,'r_pdm.h']]], + ['pdm_5fmoving_5faverage_5fmode_5f2_5forder',['PDM_MOVING_AVERAGE_MODE_2_ORDER',['../group___p_d_m.html#gga667e7ccab805f0976adc5015ecc35ecba224f34fe0e01101dddc123bb84485c65',1,'r_pdm.h']]], + ['pdm_5fmoving_5faverage_5fmode_5f4_5forder',['PDM_MOVING_AVERAGE_MODE_4_ORDER',['../group___p_d_m.html#gga667e7ccab805f0976adc5015ecc35ecba23061ce2fa64f6353fca3b383e431342',1,'r_pdm.h']]], + ['pdm_5fmoving_5faverage_5fmode_5ft',['pdm_moving_average_mode_t',['../group___p_d_m.html#ga667e7ccab805f0976adc5015ecc35ecb',1,'r_pdm.h']]], + ['pdm_5fpcm_5fwidth_5f16_5fbits_5f0_5f14',['PDM_PCM_WIDTH_16_BITS_0_14',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa3adeaaa39404c582601c40179f1e6629',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f16_5fbits_5f1_5f15',['PDM_PCM_WIDTH_16_BITS_1_15',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa324772bd777c1f50889a17b70f3444a8',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f16_5fbits_5f2_5f16',['PDM_PCM_WIDTH_16_BITS_2_16',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa8778dcb9208e5416f680c6fe1f1f6279',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f16_5fbits_5f3_5f17',['PDM_PCM_WIDTH_16_BITS_3_17',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fac2744c4aaff0de1651b0c61c39c2291e',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f16_5fbits_5f4_5f18',['PDM_PCM_WIDTH_16_BITS_4_18',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fae0af427ccb4ce9337eded095b609a2b6',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f20_5fbits_5f0_5f18',['PDM_PCM_WIDTH_20_BITS_0_18',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa66dcfd2b5e3f5c788bf30d09e33ecea9',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f20_5fbits_5f1_5f18',['PDM_PCM_WIDTH_20_BITS_1_18',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa5c1961f77255f5cc1e9b10bb2eb7a610',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f20_5fbits_5f2_5f18',['PDM_PCM_WIDTH_20_BITS_2_18',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa422ec8ffc432c508a18febbd57f857c9',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f20_5fbits_5f3_5f18',['PDM_PCM_WIDTH_20_BITS_3_18',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fabd56bdeaef4f1e776b865066e1dbe6b1',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5ft',['pdm_pcm_width_t',['../group___p_d_m___a_p_i.html#gac80768e70548497f4a739b84d0af572f',1,'r_pdm_api.h']]], + ['pdm_5fsinc_5ffilter_5fmode_5f1',['PDM_SINC_FILTER_MODE_1',['../group___p_d_m.html#gga10725534d91789f15654a46786339569af155835da1b4cb3df6766324e5b641c5',1,'r_pdm.h']]], + ['pdm_5fsinc_5ffilter_5fmode_5f2',['PDM_SINC_FILTER_MODE_2',['../group___p_d_m.html#gga10725534d91789f15654a46786339569a3dbb88baf2e552e517cc521917be33f4',1,'r_pdm.h']]], + ['pdm_5fsinc_5ffilter_5fmode_5f3',['PDM_SINC_FILTER_MODE_3',['../group___p_d_m.html#gga10725534d91789f15654a46786339569a2ff3cb58ab5a06c75199c82be7d36e39',1,'r_pdm.h']]], + ['pdm_5fsinc_5ffilter_5fmode_5f4',['PDM_SINC_FILTER_MODE_4',['../group___p_d_m.html#gga10725534d91789f15654a46786339569a4c023e6c0fd378a1efb57bf80297809c',1,'r_pdm.h']]], + ['pdm_5fsinc_5ffilter_5fmode_5ft',['pdm_sinc_filter_mode_t',['../group___p_d_m.html#ga10725534d91789f15654a46786339569',1,'r_pdm.h']]], + ['pdm_5fstate_5fin_5fuse',['PDM_STATE_IN_USE',['../group___p_d_m___a_p_i.html#gga09df76d543b0cc6b39c5fed3bf1f4485a886d05c63fd087836c605e609908161c',1,'r_pdm_api.h']]], + ['pdm_5fstate_5fstopped',['PDM_STATE_STOPPED',['../group___p_d_m___a_p_i.html#gga09df76d543b0cc6b39c5fed3bf1f4485a571969657d1a5ca91391807510eed100',1,'r_pdm_api.h']]], + ['pdm_5fstate_5ft',['pdm_state_t',['../group___p_d_m___a_p_i.html#ga09df76d543b0cc6b39c5fed3bf1f4485',1,'r_pdm_api.h']]], + ['pdm_5fstatus_5ft',['pdm_status_t',['../group___p_d_m___a_p_i.html#structpdm__status__t',1,'']]], + ['pending_5finterrupt',['pending_interrupt',['../group___i3_c___a_p_i.html#a3b2cd9c5022352d0b3275882dee97363',1,'i3c_device_status_t']]], ['period_5fcounts',['period_counts',['../group___t_i_m_e_r___a_p_i.html#a08b897cfbf2d0cefafe8d3abb1afc747',1,'timer_info_t::period_counts()'],['../group___t_i_m_e_r___a_p_i.html#aa892b6997a1972de6a6ebd48e0fb9233',1,'timer_cfg_t::period_counts()']]], + ['periodic_5fipl',['periodic_ipl',['../group___r_t_c___a_p_i.html#a784a723ee3542eecfa96de492dd511dc',1,'rtc_cfg_t']]], + ['periodic_5firq',['periodic_irq',['../group___r_t_c___a_p_i.html#a744ab95029f4675df63aec891d0f7269',1,'rtc_cfg_t']]], ['periodic_5fmeasurement_5fregister',['periodic_measurement_register',['../group___r_m___h_s400_x.html#aefb5d5f935001b4f4e33272387317282',1,'rm_hs400x_instance_ctrl_t']]], ['periodic_5fmeasurement_5fstop',['periodic_measurement_stop',['../group___r_m___h_s400_x.html#ac470e112ef6556c406bda75049c7f3d6',1,'rm_hs400x_instance_ctrl_t']]], + ['periodicirqrateset',['periodicIrqRateSet',['../group___r_t_c___a_p_i.html#a5a13e1acf6e07bfd87dc81bf65272951',1,'rtc_api_t']]], ['periodset',['periodSet',['../group___t_i_m_e_r___a_p_i.html#ae9aad84a01ccd7ce0039ed491faeff19',1,'timer_api_t']]], - ['persist',['persist',['../group___r_m___o_b1203___a_p_i.html#adf71a33aec370fd165af3dff0c4d8b7a',1,'rm_ob1203_device_interrupt_cfg_t']]], - ['pid',['pid',['../structzmod4xxx__dev__t.html#ac734bd796b3384826754f8db29214992',1,'zmod4xxx_dev_t']]], + ['pid',['pid',['../group___i3_c___a_p_i.html#ab4281472412829fccfae413a1c079838',1,'i3c_slave_info_t::pid()'],['../structzmod4xxx__dev__t.html#ac734bd796b3384826754f8db29214992',1,'zmod4xxx_dev_t::pid()']]], ['pin',['pin',['../group___i_o_p_o_r_t___a_p_i.html#a5e6a7a38da64dabdfc229f1727616bd0',1,'ioport_pin_cfg_t']]], ['pin_5fcfg',['pin_cfg',['../group___i_o_p_o_r_t___a_p_i.html#afbba86b25693590a1057e1ba1257341c',1,'ioport_pin_cfg_t']]], + ['pin_5fselect',['pin_select',['../group___i_o_p_o_r_t.html#afa7beb47d18cb3d5b96d5a8159e2db3e',1,'ioport_event_group_output_t::pin_select()'],['../group___i_o_p_o_r_t.html#acd1e6d8038a41d68e0843905a6f599ef',1,'ioport_event_group_input_t::pin_select()']]], ['pincfg',['pinCfg',['../group___i_o_p_o_r_t___a_p_i.html#a72162206113e825e83aa709c106cd94e',1,'ioport_api_t']]], - ['pinethernetmodecfg',['pinEthernetModeCfg',['../group___i_o_p_o_r_t___a_p_i.html#aebcf56ec700ec3e402c0ab437bc82d45',1,'ioport_api_t']]], - ['pinethernetvoltagemodecfg',['pinEthernetVoltageModeCfg',['../group___i_o_p_o_r_t___a_p_i.html#a88e49491b8dabcddac71cf6d2f0fb213',1,'ioport_api_t']]], ['pineventinputread',['pinEventInputRead',['../group___i_o_p_o_r_t___a_p_i.html#aed708d8a848a6e142ce5bf8cc085360f',1,'ioport_api_t']]], ['pineventoutputwrite',['pinEventOutputWrite',['../group___i_o_p_o_r_t___a_p_i.html#a52c0dcf252f3502911337a9f99e17986',1,'ioport_api_t']]], - ['pinqspivoltagemodecfg',['pinQSPIVoltageModeCfg',['../group___i_o_p_o_r_t___a_p_i.html#a6992c39238d4c6d0ed1469ff2e13492b',1,'ioport_api_t']]], ['pinread',['pinRead',['../group___i_o_p_o_r_t___a_p_i.html#afaba07fd298740d7a58a74720e259af2',1,'ioport_api_t']]], ['pinscfg',['pinsCfg',['../group___i_o_p_o_r_t___a_p_i.html#ac962e87038418a6a525ac9f763687c19',1,'ioport_api_t']]], - ['pinsdvoltagemodecfg',['pinSDVoltageModeCfg',['../group___i_o_p_o_r_t___a_p_i.html#a16b14ace200c93eabd87c57f2269e8fa',1,'ioport_api_t']]], ['pinwrite',['pinWrite',['../group___i_o_p_o_r_t___a_p_i.html#aad4fb5941cd80d4ed9db0262f29b30cf',1,'ioport_api_t']]], ['port_20output_20enable_20for_20gpt_20_28r_5fpoeg_29',['Port Output Enable for GPT (r_poeg)',['../group___p_o_e_g.html',1,'']]], ['poeg_20interface',['POEG Interface',['../group___p_o_e_g___a_p_i.html',1,'']]], @@ -96,49 +197,17 @@ var searchData= ['poeg_5ftrigger_5fpin',['POEG_TRIGGER_PIN',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a386ea44b929de5b16b1c459a37f866c3',1,'r_poeg_api.h']]], ['poeg_5ftrigger_5fsoftware',['POEG_TRIGGER_SOFTWARE',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a5844408e52ce8a8d819d594d4134de0b',1,'r_poeg_api.h']]], ['poeg_5ftrigger_5ft',['poeg_trigger_t',['../group___p_o_e_g___a_p_i.html#gad3a55ae7d23b90cc2621a83116d2e7d9',1,'r_poeg_api.h']]], - ['polarity',['polarity',['../group___p_o_e_g___a_p_i.html#a685fb10923443de2749de75bebcae85b',1,'poeg_cfg_t']]], + ['polarity',['polarity',['../group___p_o_e_g___a_p_i.html#a685fb10923443de2749de75bebcae85b',1,'poeg_cfg_t::polarity()'],['../group___s_c_i___b___u_a_r_t.html#a10b4002e82c8ca1eee90e84e3cdff02d',1,'sci_b_uart_rs485_setting_t::polarity()'],['../group___s_c_i_f___u_a_r_t.html#aafcbd1f2c02e2f81d81371bb9e6b895d',1,'sci_uart_rs485_setting_t::polarity()']]], + ['polynomial',['polynomial',['../group___c_r_c___a_p_i.html#a77a51a5aaddd34da23595f1b522cab3d',1,'crc_cfg_t']]], + ['port_5fnum',['port_num',['../group___i_o_p_o_r_t.html#ae9a5e65d3c876eb72f8bcfc15cea840a',1,'ioport_event_single_t']]], ['portdirectionset',['portDirectionSet',['../group___i_o_p_o_r_t___a_p_i.html#a15e2e35a9ea2163402cb38c29aaa6399',1,'ioport_api_t']]], ['porteventinputread',['portEventInputRead',['../group___i_o_p_o_r_t___a_p_i.html#ab369548c3b66d80747df3ed29ca336f0',1,'ioport_api_t']]], ['porteventoutputwrite',['portEventOutputWrite',['../group___i_o_p_o_r_t___a_p_i.html#afad905247e7c42fcb42d412a4e2d2d15',1,'ioport_api_t']]], ['portread',['portRead',['../group___i_o_p_o_r_t___a_p_i.html#ac0de7591b4c5680e87ab2d219e2748c2',1,'ioport_api_t']]], ['portwrite',['portWrite',['../group___i_o_p_o_r_t___a_p_i.html#a5a71c5cffcdcacab2425d46603451cf2',1,'ioport_api_t']]], - ['ppg_5fdata',['ppg_data',['../group___r_m___o_b1203___a_p_i.html#ab734102cdf18606c10541df451fcf963',1,'rm_ob1203_ppg_data_t']]], - ['ppg_5ffifo_5fempty_5fnum',['ppg_fifo_empty_num',['../group___r_m___o_b1203.html#a4a9e23f9ea29a94ce55aecf2a6a90efd',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5ffifo_5frollover',['ppg_fifo_rollover',['../group___r_m___o_b1203.html#a6b1b27c35ae14887c24ac87fc09ae5b2',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5finterrupt_5ftype',['ppg_interrupt_type',['../group___r_m___o_b1203.html#a8c2e28fd8857be8e771d04d82bc956ea',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fir_5fled_5fana_5fcan',['ppg_ir_led_ana_can',['../group___r_m___o_b1203.html#a2abd97a96166d245c48e6e0787693fb4',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fir_5fled_5fcurrent',['ppg_ir_led_current',['../group___r_m___o_b1203.html#a6d8a552db7926950c4b1c419a48fdf4e',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fnum_5faveraged_5fsamples',['ppg_num_averaged_samples',['../group___r_m___o_b1203.html#a5b83bc78a2501b848235a640aff20547',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fnumber_5fof_5fsamples',['ppg_number_of_samples',['../group___r_m___o_b1203.html#a7653a25ab1427a9ed18b79cdef7bfb16',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fpower_5fsave_5fmode',['ppg_power_save_mode',['../group___r_m___o_b1203.html#ae35c158322080273b5df3e059528f752',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fprox',['ppg_prox',['../group___r_m___o_b1203___a_p_i.html#a36749f94b25fce91140f34d29c8e30bb',1,'rm_ob1203_gain_t']]], - ['ppg_5fprox_5fgain',['ppg_prox_gain',['../group___r_m___o_b1203.html#a7d96e3fa4f80d77e18d6311b58abb351',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fred_5fled_5fana_5fcan',['ppg_red_led_ana_can',['../group___r_m___o_b1203.html#a5c280d0afc580954d5ed17337c03f5ef',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fred_5fled_5fcurrent',['ppg_red_led_current',['../group___r_m___o_b1203.html#a86d8b953af37f657dfeb162cd0591de0',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fsensor_5fmode',['ppg_sensor_mode',['../group___r_m___o_b1203.html#a5304c578e8d3e84524754223a865b89c',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5ftype',['ppg_type',['../group___r_m___o_b1203___a_p_i.html#a53330895d99a2275d9c0017cde87f7be',1,'rm_ob1203_device_interrupt_cfg_t']]], - ['ppg_5fwidth_5fperiod',['ppg_width_period',['../group___r_m___o_b1203.html#ae36a5f755dda4ad54a211d7beceaa1fe',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppgdatacalculate',['ppgDataCalculate',['../group___r_m___o_b1203___a_p_i.html#a2f7c11ddb2c3d8c9cf91c25e3183daa1',1,'rm_ob1203_api_t']]], - ['ppgread',['ppgRead',['../group___r_m___o_b1203___a_p_i.html#a9f902d2c8bf975288a49f443f20092ae',1,'rm_ob1203_api_t']]], + ['priority_5fgroup_5fa',['priority_group_a',['../group___a_d_c___e.html#a88a1a95d7b36e46463b0efdfc37620e3',1,'adc_e_channel_cfg_t']]], ['prod_5fdata',['prod_data',['../structzmod4xxx__dev__t.html#a2af9926b27af0eca9b87db21685b0934',1,'zmod4xxx_dev_t']]], ['programming_5fmode',['programming_mode',['../group___r_m___h_s300_x.html#a25114349d2d5b03b5062ef4c4af8bde9',1,'rm_hs300x_instance_ctrl_t']]], ['programmingmodeenter',['programmingModeEnter',['../group___r_m___h_s300_x___a_p_i.html#a103e89eaa5092238a9c039914b0eb629',1,'rm_hs300x_api_t']]], - ['programmingmodeexit',['programmingModeExit',['../group___r_m___h_s300_x___a_p_i.html#a1812c8a229f28823abb6dc167dd1f94f',1,'rm_hs300x_api_t']]], - ['prox_5fana_5fcan',['prox_ana_can',['../group___r_m___o_b1203.html#a76a478bfae379eccb11d7da016c0b223',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fdig_5fcan',['prox_dig_can',['../group___r_m___o_b1203.html#a602e9dc2a52e58a964e3d31d40f804bd',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fgain_5fupdate',['prox_gain_update',['../group___r_m___o_b1203.html#a8c18e88241e0b27b67d0f7fbaf65d94a',1,'rm_ob1203_instance_ctrl_t']]], - ['prox_5fhysteresis',['prox_hysteresis',['../group___r_m___o_b1203.html#a84152ba34a94d2cc53b01a0195d1e499',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5finterrupt_5fpersist',['prox_interrupt_persist',['../group___r_m___o_b1203.html#a0b8c9711655d57482f2fa4885b6fe358',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5finterrupt_5ftype',['prox_interrupt_type',['../group___r_m___o_b1203.html#a8f73599ce4c7f63c4c823e74f7c567cb',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fled_5fcurrent',['prox_led_current',['../group___r_m___o_b1203.html#a5a121bd4d0dd5525fe4fa1940c2807f7',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5flower_5fthreshold',['prox_lower_threshold',['../group___r_m___o_b1203.html#a0afb601514b214fc0f69648150d139b4',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fmoving_5faverage',['prox_moving_average',['../group___r_m___o_b1203.html#ae462f5fde180d3b4bc191a7b0b36de1a',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fnum_5fled_5fpulses',['prox_num_led_pulses',['../group___r_m___o_b1203.html#a8b1238b9262829b92acf3b488fba8164',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fsleep',['prox_sleep',['../group___r_m___o_b1203.html#a1ee453fb8ab99c99f7c66a81ec8930fc',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5ftype',['prox_type',['../group___r_m___o_b1203___a_p_i.html#a45f7c3c0573f56bf411ac2953b7c5883',1,'rm_ob1203_device_interrupt_cfg_t']]], - ['prox_5fupper_5fthreshold',['prox_upper_threshold',['../group___r_m___o_b1203.html#a5f59be16765f431c4a5793bfb2d6bf7b',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fwidth_5fperiod',['prox_width_period',['../group___r_m___o_b1203.html#a95edd35c1ca18bb45030ea849f72c079',1,'rm_ob1203_mode_extended_cfg_t']]], - ['proxdatacalculate',['proxDataCalculate',['../group___r_m___o_b1203___a_p_i.html#a9b7d68fb7a2baf7cca79ff3026e36cd5',1,'rm_ob1203_api_t']]], - ['proximity_5fdata',['proximity_data',['../group___r_m___o_b1203___a_p_i.html#a9ac32b72f200c27a6a0c01c0cea30fd3',1,'rm_ob1203_prox_data_t']]], - ['proxread',['proxRead',['../group___r_m___o_b1203___a_p_i.html#a198466f69342eda1f86d4853d0157f22',1,'rm_ob1203_api_t']]] + ['programmingmodeexit',['programmingModeExit',['../group___r_m___h_s300_x___a_p_i.html#a1812c8a229f28823abb6dc167dd1f94f',1,'rm_hs300x_api_t']]] ]; diff --git a/search/all_f.js b/search/all_f.js index 235a3d3..963f7ff 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -1,19 +1,88 @@ var searchData= [ + ['rzv2h',['RZV2H',['../group___b_s_p___m_c_u___r_z_v2_h.html',1,'']]], ['rzv2l',['RZV2L',['../group___b_s_p___m_c_u___r_z_v2_l.html',1,'']]], + ['r_5fadc_5fc_5fcalibrate',['R_ADC_C_Calibrate',['../group___a_d_c___c.html#ga5cbf5113221d2cdbf11f36eb8b7ea21a',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fcallbackset',['R_ADC_C_CallbackSet',['../group___a_d_c___c.html#ga1644c43f8469049a20a1c183682b2eda',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fclose',['R_ADC_C_Close',['../group___a_d_c___c.html#ga51e75a0613a836dda17e8dff336fa5b9',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5finfoget',['R_ADC_C_InfoGet',['../group___a_d_c___c.html#ga71b8dbb9de7e428dbdc0bdd56c2331a4',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5foffsetset',['R_ADC_C_OffsetSet',['../group___a_d_c___c.html#ga1a6bcd25e5366666a3f25062e4b9d615',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fopen',['R_ADC_C_Open',['../group___a_d_c___c.html#ga52f7eee41184b0a91cfa9e73b1833122',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fread',['R_ADC_C_Read',['../group___a_d_c___c.html#ga0971485949f985d827aeaa69feff4f5a',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fread32',['R_ADC_C_Read32',['../group___a_d_c___c.html#gad95fbc1b2b5d7ced0f332c6cab3be5a0',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fsamplestatecountset',['R_ADC_C_SampleStateCountSet',['../group___a_d_c___c.html#ga002b131506372adc9b7117ac980dd077',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fscancfg',['R_ADC_C_ScanCfg',['../group___a_d_c___c.html#ga5f0ecdfeeb82907f1d20e68284fe8861',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fscangroupstart',['R_ADC_C_ScanGroupStart',['../group___a_d_c___c.html#ga2a5b64c160eb0b849ea5043bde9188cb',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fscanstart',['R_ADC_C_ScanStart',['../group___a_d_c___c.html#ga11e9ba160e344dc72ab9e862f7ce70db',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fscanstop',['R_ADC_C_ScanStop',['../group___a_d_c___c.html#gad2ba1ea2171aafa77a4ea3de325ad11c',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fstatusget',['R_ADC_C_StatusGet',['../group___a_d_c___c.html#ga1d98d3b28202140cc37796dd60fde5e3',1,'r_adc_c.c']]], + ['r_5fadc_5fe_5fcalibrate',['R_ADC_E_Calibrate',['../group___a_d_c___e.html#ga60b7cc39514b62e1b0ea3eabaa7c27de',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fcallbackset',['R_ADC_E_CallbackSet',['../group___a_d_c___e.html#gaab99f6d8921a70ed3609a0d3ddabd09a',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fclose',['R_ADC_E_Close',['../group___a_d_c___e.html#ga1e0b524d58f582130181a3772222886a',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5finfoget',['R_ADC_E_InfoGet',['../group___a_d_c___e.html#gabaf26ddcab6a7151b670a3b62f1e87fa',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5foffsetset',['R_ADC_E_OffsetSet',['../group___a_d_c___e.html#ga70abfa718ea4f6fd5d14acbaf8730cbf',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fopen',['R_ADC_E_Open',['../group___a_d_c___e.html#ga1f1da31e1c595123236987ef670a2cbc',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fread',['R_ADC_E_Read',['../group___a_d_c___e.html#ga1768d1f5986545eb95ab8273559eaee5',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fread32',['R_ADC_E_Read32',['../group___a_d_c___e.html#ga0384d4b99b0e7b5dfb5d0ddf8ed6be83',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fscancfg',['R_ADC_E_ScanCfg',['../group___a_d_c___e.html#ga30f9dd58525ca2a59080a79222fbaf28',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fscangroupstart',['R_ADC_E_ScanGroupStart',['../group___a_d_c___e.html#gacf047cf112ab4235c12408eedb1328dc',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fscanstart',['R_ADC_E_ScanStart',['../group___a_d_c___e.html#ga646be994090e719609305eaa76b1df52',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fscanstop',['R_ADC_E_ScanStop',['../group___a_d_c___e.html#gaea1afc188601253968598bb4b19a682a',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fstatusget',['R_ADC_E_StatusGet',['../group___a_d_c___e.html#ga722dc99ac11774e87c083e66fce79127',1,'r_adc_e.c']]], + ['r_5fbsp_5fbypassmodecfg',['R_BSP_BypassModeCfg',['../group___b_s_p___i_o.html#gaa07b15ea5255e2d6ad2a8fb9231adcda',1,'bsp_io.h']]], + ['r_5fbsp_5fclockdividerset',['R_BSP_ClockDividerSet',['../group___b_s_p___m_c_u.html#gac27f5c8e3abd9d557b79ff1bdde2f932',1,'R_BSP_ClockDividerSet(fsp_priv_clock_divider_t divider, uint32_t clock_div): bsp_clocks.c'],['../group___b_s_p___m_c_u.html#gac27f5c8e3abd9d557b79ff1bdde2f932',1,'R_BSP_ClockDividerSet(fsp_priv_clock_divider_t divider, uint32_t clock_div): bsp_clocks.c']]], + ['r_5fbsp_5fclockselectorset',['R_BSP_ClockSelectorSet',['../group___b_s_p___m_c_u.html#ga6a8598c7564c37b201a19003d188de7f',1,'R_BSP_ClockSelectorSet(fsp_priv_clock_selector_t selector, uint32_t clock_sel): bsp_clocks.c'],['../group___b_s_p___m_c_u.html#ga6a8598c7564c37b201a19003d188de7f',1,'R_BSP_ClockSelectorSet(fsp_priv_clock_selector_t selector, uint32_t clock_sel): bsp_clocks.c']]], + ['r_5fbsp_5fethernetmodecfg',['R_BSP_EthernetModeCfg',['../group___b_s_p___i_o.html#ga12a7886e4da364860e1bd6236cdba973',1,'bsp_io.h']]], + ['r_5fbsp_5fethernetvoltagemodecfg',['R_BSP_EthernetVoltageModeCfg',['../group___b_s_p___i_o.html#gaee8fdb90b591063571f73dc23d4306b4',1,'bsp_io.h']]], ['r_5fbsp_5fgroupirqwrite',['R_BSP_GroupIrqWrite',['../group___b_s_p___m_c_u.html#gaed27ea47f0c85a1af9bb515600d5e2ba',1,'R_BSP_GroupIrqWrite(bsp_grp_irq_t irq, void(*p_callback)(bsp_grp_irq_t irq)): bsp_group_irq.c'],['../group___b_s_p___m_c_u.html#gaed27ea47f0c85a1af9bb515600d5e2ba',1,'R_BSP_GroupIrqWrite(bsp_grp_irq_t irq, void(*p_callback)(bsp_grp_irq_t irq)): bsp_group_irq.c']]], - ['r_5fbsp_5fmstpstart',['R_BSP_MSTPSTART',['../group___b_s_p___m_c_u.html#ga7f0f0fcc055b280ef901734d5481214d',1,'bsp_module_stop.h']]], - ['r_5fbsp_5fmstpstop',['R_BSP_MSTPSTOP',['../group___b_s_p___m_c_u.html#gad743b8c468bec4c2d15645c4e4b45f1f',1,'bsp_module_stop.h']]], - ['r_5fbsp_5fnonsecureenter',['R_BSP_NonSecureEnter',['../group___b_s_p___m_c_u.html#gae05dfbdf57eb8b0bea46f555a2845d7b',1,'R_BSP_NonSecureEnter(void): bsp_security.c'],['../group___b_s_p___m_c_u.html#gae05dfbdf57eb8b0bea46f555a2845d7b',1,'R_BSP_NonSecureEnter(void): bsp_security.c']]], + ['r_5fbsp_5fi3ccontrolcfg',['R_BSP_I3CControlCfg',['../group___b_s_p___i_o.html#gaea02bfef9058ac480e59f4175124c4da',1,'bsp_io.h']]], + ['r_5fbsp_5fmodule_5fstart',['R_BSP_MODULE_START',['../group___b_s_p___m_c_u.html#ga6c36d1d91a0e4e4a8373b2075f682145',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5fadc',['R_BSP_MODULE_START_FSP_IP_ADC',['../group___b_s_p___m_c_u.html#gaa36ef60e30f86593d24e7e25c6d026f1',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5fcanfd',['R_BSP_MODULE_START_FSP_IP_CANFD',['../group___b_s_p___m_c_u.html#ga436fdb330cf3ddb8918bdc21ace3d7df',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5fdmac',['R_BSP_MODULE_START_FSP_IP_DMAC',['../group___b_s_p___m_c_u.html#ga31421c06dc6abf9bf8fdc5e2317eb011',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5fgpt',['R_BSP_MODULE_START_FSP_IP_GPT',['../group___b_s_p___m_c_u.html#gae601568d46eef4eb5d36dffe9773412e',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5fgtm',['R_BSP_MODULE_START_FSP_IP_GTM',['../group___b_s_p___m_c_u.html#ga6c82e0b49d6583b7cb16bc15026ecfff',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5fmhu',['R_BSP_MODULE_START_FSP_IP_MHU',['../group___b_s_p___m_c_u.html#ga054640ac1e1672fbe931e334358fcf0c',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5fmtu3',['R_BSP_MODULE_START_FSP_IP_MTU3',['../group___b_s_p___m_c_u.html#ga006a2ccfdf5e149ab69755b3aceb5379',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5fpoeg',['R_BSP_MODULE_START_FSP_IP_POEG',['../group___b_s_p___m_c_u.html#ga22d14eac2a0c6e915d5e46fcdb19ebd1',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5friic',['R_BSP_MODULE_START_FSP_IP_RIIC',['../group___b_s_p___m_c_u.html#ga8d17b9855a7a617558dd4edd05ccc72a',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5frspi',['R_BSP_MODULE_START_FSP_IP_RSPI',['../group___b_s_p___m_c_u.html#ga6197c46ef462451012619c6c95a04322',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5fsci',['R_BSP_MODULE_START_FSP_IP_SCI',['../group___b_s_p___m_c_u.html#ga19696083f874c068c503afc369b343c5',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5fscif',['R_BSP_MODULE_START_FSP_IP_SCIF',['../group___b_s_p___m_c_u.html#gae7fdc2a01ee790e00cb199366aecb023',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5ftsu',['R_BSP_MODULE_START_FSP_IP_TSU',['../group___b_s_p___m_c_u.html#ga862122b7dfd27bc54da4f2e3b80b25d2',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstart_5ffsp_5fip_5fwdt',['R_BSP_MODULE_START_FSP_IP_WDT',['../group___b_s_p___m_c_u.html#ga06a1c99445f01a3287e05cddacbe2e69',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop',['R_BSP_MODULE_STOP',['../group___b_s_p___m_c_u.html#ga3cbe4efd62cee1db0288da2045d21319',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5fadc',['R_BSP_MODULE_STOP_FSP_IP_ADC',['../group___b_s_p___m_c_u.html#gad629661332b7063f9af17336dc879078',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5fcanfd',['R_BSP_MODULE_STOP_FSP_IP_CANFD',['../group___b_s_p___m_c_u.html#gae7636d5d0d2d310a45dc83b7a580ff2e',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5fdmac',['R_BSP_MODULE_STOP_FSP_IP_DMAC',['../group___b_s_p___m_c_u.html#ga3b2dc069b8a84fc43d0f495a785bcdd0',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5fgpt',['R_BSP_MODULE_STOP_FSP_IP_GPT',['../group___b_s_p___m_c_u.html#gae18fecd6a1f359727e18613fc19420f6',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5fgtm',['R_BSP_MODULE_STOP_FSP_IP_GTM',['../group___b_s_p___m_c_u.html#ga3de23334bfd3a83d11de893a68d8e03f',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5fmhu',['R_BSP_MODULE_STOP_FSP_IP_MHU',['../group___b_s_p___m_c_u.html#ga357da2217bfe606d9c18d5c36ab45df6',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5fmtu3',['R_BSP_MODULE_STOP_FSP_IP_MTU3',['../group___b_s_p___m_c_u.html#ga42dc365010b8db945264f8a51c8851ae',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5fpoeg',['R_BSP_MODULE_STOP_FSP_IP_POEG',['../group___b_s_p___m_c_u.html#ga077b44c9ad717bbb1ef2304599995397',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5friic',['R_BSP_MODULE_STOP_FSP_IP_RIIC',['../group___b_s_p___m_c_u.html#ga50ee7397627ca4c3f0858d6cb9696d90',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5frspi',['R_BSP_MODULE_STOP_FSP_IP_RSPI',['../group___b_s_p___m_c_u.html#ga86b4ea9d1a1c90ec107f408cddc889cd',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5fsci',['R_BSP_MODULE_STOP_FSP_IP_SCI',['../group___b_s_p___m_c_u.html#gaa638ec6a3ddaef0fb36cf8cc36510fb2',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5fscif',['R_BSP_MODULE_STOP_FSP_IP_SCIF',['../group___b_s_p___m_c_u.html#gaf942d58c6fc1e4c35940f38daa8a5027',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5ftsu',['R_BSP_MODULE_STOP_FSP_IP_TSU',['../group___b_s_p___m_c_u.html#gae90c804167db296853dc17af83649fe4',1,'fsp_features.h']]], + ['r_5fbsp_5fmodule_5fstop_5ffsp_5fip_5fwdt',['R_BSP_MODULE_STOP_FSP_IP_WDT',['../group___b_s_p___m_c_u.html#ga65c99544cc40603a2259ca9403f0f42c',1,'fsp_features.h']]], + ['r_5fbsp_5fmstp_5fstart',['R_BSP_MSTP_START',['../group___b_s_p___m_c_u.html#ga0b8dc4e44bb023105461f1563d302eea',1,'bsp_module_stop.h']]], + ['r_5fbsp_5fmstp_5fstop',['R_BSP_MSTP_STOP',['../group___b_s_p___m_c_u.html#ga4b9ba26ad9063f200e6b8e3a7c33959c',1,'bsp_module_stop.h']]], + ['r_5fbsp_5foenaccessdisable',['R_BSP_OENAccessDisable',['../group___b_s_p___i_o.html#ga9d18d53cf22913ba5379a9b2b78f8af9',1,'bsp_io.h']]], + ['r_5fbsp_5foenaccessenable',['R_BSP_OENAccessEnable',['../group___b_s_p___i_o.html#ga1366a1a0609b52482af37acf4b1354b8',1,'bsp_io.h']]], ['r_5fbsp_5fpinaccessdisable',['R_BSP_PinAccessDisable',['../group___b_s_p___i_o.html#gab5aab592b5fbbfa18d542c0812850b98',1,'bsp_io.h']]], ['r_5fbsp_5fpinaccessenable',['R_BSP_PinAccessEnable',['../group___b_s_p___i_o.html#ga0ad2123f7a5152cf108883163581f11b',1,'bsp_io.h']]], ['r_5fbsp_5fpinread',['R_BSP_PinRead',['../group___b_s_p___i_o.html#ga6764c3fac52569cadd44b83a6d3f432d',1,'bsp_io.h']]], ['r_5fbsp_5fpinwrite',['R_BSP_PinWrite',['../group___b_s_p___i_o.html#ga33cef14f93543bcb3531b4f2e377c5c4',1,'bsp_io.h']]], - ['r_5fbsp_5fsecurityinit',['R_BSP_SecurityInit',['../group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f',1,'R_BSP_SecurityInit(void): bsp_security.c'],['../group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f',1,'R_BSP_SecurityInit(void): bsp_security.c']]], + ['r_5fbsp_5fqspivoltagemodecfg',['R_BSP_QSPIVoltageModeCfg',['../group___b_s_p___i_o.html#ga273b018bc22b835afd630e6b46a3cc4e',1,'bsp_io.h']]], + ['r_5fbsp_5fsdvoltagemodecfg',['R_BSP_SDVoltageModeCfg',['../group___b_s_p___i_o.html#ga583ef49050efabf390c97e6e4633e173',1,'bsp_io.h']]], + ['r_5fbsp_5fsecurityinit',['R_BSP_SecurityInit',['../group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f',1,'R_BSP_SecurityInit(void): bsp_security.c'],['../group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f',1,'R_BSP_SecurityInit(void): bsp_security.c'],['../group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f',1,'R_BSP_SecurityInit(void): bsp_security.c'],['../group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f',1,'R_BSP_SecurityInit(void): bsp_security.c']]], ['r_5fbsp_5fsoftwaredelay',['R_BSP_SoftwareDelay',['../group___b_s_p___m_c_u.html#gaf3219448adfd1531cf69f68697ab184b',1,'R_BSP_SoftwareDelay(uint32_t delay, bsp_delay_units_t units): bsp_delay.c'],['../group___b_s_p___m_c_u.html#gaf3219448adfd1531cf69f68697ab184b',1,'R_BSP_SoftwareDelay(uint32_t delay, bsp_delay_units_t units): bsp_delay.c']]], - ['r_5fbsp_5funiqueidget',['R_BSP_UniqueIdGet',['../group___b_s_p___m_c_u.html#gadee5f5e0c5fa723426f73d7d5a07f9b2',1,'bsp_common.h']]], + ['r_5fbsp_5funiqueidget',['R_BSP_UniqueIdGet',['../group___b_s_p___m_c_u.html#ga1273625a09a1d570dea0c5189f6b5fe8',1,'bsp_common.h']]], ['r_5fbsp_5fversionget',['R_BSP_VersionGet',['../group___b_s_p___m_c_u.html#gade0e6b9fc5ca580d5bf6c8ae2a6af8d9',1,'R_BSP_VersionGet(fsp_version_t *p_version): bsp_common.c'],['../group___b_s_p___m_c_u.html#gade0e6b9fc5ca580d5bf6c8ae2a6af8d9',1,'R_BSP_VersionGet(fsp_version_t *p_version): bsp_common.c']]], ['r_5fbsp_5fwarmstart',['R_BSP_WarmStart',['../group___b_s_p___m_c_u.html#ga662624feaff3850ffbe7fb118ab140d7',1,'system.c']]], + ['r_5fbsp_5fxspioutputenablecfg',['R_BSP_XSPIOutputEnableCfg',['../group___b_s_p___i_o.html#ga3c75c9c53842401896a9feb2e969c5b0',1,'bsp_io.h']]], + ['r_5fbsp_5fxspivoltagemodecfg',['R_BSP_XSPIVoltageModeCfg',['../group___b_s_p___i_o.html#ga59bb3fd83a257bd92926ea266faa9fd8',1,'bsp_io.h']]], ['r_5fcanfd_5fcallbackset',['R_CANFD_CallbackSet',['../group___c_a_n_f_d.html#ga96f34361e525a46f121b11d627c3a1a8',1,'r_canfd.c']]], ['r_5fcanfd_5fclose',['R_CANFD_Close',['../group___c_a_n_f_d.html#ga7387d2e68262798a52c3a820ce12ea47',1,'r_canfd.c']]], ['r_5fcanfd_5finfoget',['R_CANFD_InfoGet',['../group___c_a_n_f_d.html#ga16ff5e9e44e32191944292aea98ab4cb',1,'r_canfd.c']]], @@ -21,6 +90,43 @@ var searchData= ['r_5fcanfd_5fopen',['R_CANFD_Open',['../group___c_a_n_f_d.html#ga664d1e07613b250a3084681a613334be',1,'r_canfd.c']]], ['r_5fcanfd_5fread',['R_CANFD_Read',['../group___c_a_n_f_d.html#gaa79e3baad3f67bc4a3d1741dea29a3ae',1,'r_canfd.c']]], ['r_5fcanfd_5fwrite',['R_CANFD_Write',['../group___c_a_n_f_d.html#ga9a43dfa148767d10e12b22cb317111a9',1,'r_canfd.c']]], + ['r_5fcmtw_5fcallbackset',['R_CMTW_CallbackSet',['../group___c_m_t_w.html#gabc760f97e8a609485ae6194571d41127',1,'r_cmtw.c']]], + ['r_5fcmtw_5fclose',['R_CMTW_Close',['../group___c_m_t_w.html#gac59c2dfa9436df60eb01971c996875aa',1,'r_cmtw.c']]], + ['r_5fcmtw_5fdisable',['R_CMTW_Disable',['../group___c_m_t_w.html#ga414c89c292c18a33619337489cd43787',1,'r_cmtw.c']]], + ['r_5fcmtw_5fdutycycleset',['R_CMTW_DutyCycleSet',['../group___c_m_t_w.html#ga928fd6d8249fe9c66e870849a6975ca9',1,'r_cmtw.c']]], + ['r_5fcmtw_5fenable',['R_CMTW_Enable',['../group___c_m_t_w.html#gadba23fc3303d81ce926ba6ebe9245e6a',1,'r_cmtw.c']]], + ['r_5fcmtw_5finfoget',['R_CMTW_InfoGet',['../group___c_m_t_w.html#gae56c5935864ef5ef23eeae25a95ab079',1,'r_cmtw.c']]], + ['r_5fcmtw_5fopen',['R_CMTW_Open',['../group___c_m_t_w.html#ga7b086a5e535460e7855000cc6141b22e',1,'r_cmtw.c']]], + ['r_5fcmtw_5foutputdisable',['R_CMTW_OutputDisable',['../group___c_m_t_w.html#gadd9a734062792a507971568dac4c3013',1,'r_cmtw.c']]], + ['r_5fcmtw_5foutputenable',['R_CMTW_OutputEnable',['../group___c_m_t_w.html#ga78987d5578215cbf098221602bbbc193',1,'r_cmtw.c']]], + ['r_5fcmtw_5fperiodset',['R_CMTW_PeriodSet',['../group___c_m_t_w.html#gaa50bb9ff96b3f0e38459a7e3e65c0a18',1,'r_cmtw.c']]], + ['r_5fcmtw_5freset',['R_CMTW_Reset',['../group___c_m_t_w.html#ga10851764cdad9c5c580e146501bc4352',1,'r_cmtw.c']]], + ['r_5fcmtw_5fstart',['R_CMTW_Start',['../group___c_m_t_w.html#ga874d0098275f48ec3c84e8587d262fce',1,'r_cmtw.c']]], + ['r_5fcmtw_5fstatusget',['R_CMTW_StatusGet',['../group___c_m_t_w.html#gacbdfc3716f8d5bd47edaa801eb50d1b7',1,'r_cmtw.c']]], + ['r_5fcmtw_5fstop',['R_CMTW_Stop',['../group___c_m_t_w.html#ga842bb3b9c5c12cdfff41dd8595defc70',1,'r_cmtw.c']]], + ['r_5fcrc_5fcalculate',['R_CRC_Calculate',['../group___c_r_c.html#ga89b0be959ce83ac6ca053329b1fddb75',1,'r_crc.c']]], + ['r_5fcrc_5fcalculatedvalueget',['R_CRC_CalculatedValueGet',['../group___c_r_c.html#ga5bb7766a9c3217d2da7b77ea203b8c74',1,'r_crc.c']]], + ['r_5fcrc_5fclose',['R_CRC_Close',['../group___c_r_c.html#gab1ba556ab77f9f3d32ed5a448ebc7f9c',1,'r_crc.c']]], + ['r_5fcrc_5fopen',['R_CRC_Open',['../group___c_r_c.html#gae4cc2bba5d6aeaadd9f4d43948fca5ac',1,'r_crc.c']]], + ['r_5fcrc_5fsnoopdisable',['R_CRC_SnoopDisable',['../group___c_r_c.html#ga5bda4df2557aeaaf312b23fb31568f20',1,'r_crc.c']]], + ['r_5fcrc_5fsnoopenable',['R_CRC_SnoopEnable',['../group___c_r_c.html#ga606b389497fa4cba30b0d8f9a658331f',1,'r_crc.c']]], + ['r_5fdmac_5fb_5fclose',['R_DMAC_B_Close',['../group___d_m_a_c___b.html#ga632bf5ab4aab7000686ef9f18a613362',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5fdisable',['R_DMAC_B_Disable',['../group___d_m_a_c___b.html#gaae171cb7c85d650ef946358a06f25f19',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5fenable',['R_DMAC_B_Enable',['../group___d_m_a_c___b.html#gad7d2d7ade93dc5fdb468f3ca4eb23904',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5finfoget',['R_DMAC_B_InfoGet',['../group___d_m_a_c___b.html#ga7edc253186828189c91ba0b183733c1b',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5fopen',['R_DMAC_B_Open',['../group___d_m_a_c___b.html#gac246f431e5d9b090d51fa82e1cf4c525',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5freconfigure',['R_DMAC_B_Reconfigure',['../group___d_m_a_c___b.html#ga2c6e7a22349d33428d977fec5547e3ea',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5freload',['R_DMAC_B_Reload',['../group___d_m_a_c___b.html#gadb30ad1a9a46b41838123869c5d9d5b7',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5freset',['R_DMAC_B_Reset',['../group___d_m_a_c___b.html#ga3aa063ea10c545145d43d90b46a5d34b',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5fsoftwarestart',['R_DMAC_B_SoftwareStart',['../group___d_m_a_c___b.html#ga13da20adc7b96463ae04f4c5cea24154',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5fsoftwarestop',['R_DMAC_B_SoftwareStop',['../group___d_m_a_c___b.html#gae209f9912564241da474026944c2d6a6',1,'r_dmac_b.c']]], + ['r_5felc_5fclose',['R_ELC_Close',['../group___e_l_c.html#gac5e6b998138cc28bcbd8b17a5eb26674',1,'r_elc.c']]], + ['r_5felc_5fdisable',['R_ELC_Disable',['../group___e_l_c.html#gad52f538fbce405f18a46f6e42cce9ebf',1,'r_elc.c']]], + ['r_5felc_5fenable',['R_ELC_Enable',['../group___e_l_c.html#ga4bcac22edb575069ba86d87ce9aea84c',1,'r_elc.c']]], + ['r_5felc_5flinkbreak',['R_ELC_LinkBreak',['../group___e_l_c.html#ga2b2ed9cb9e86bf6c75d85977c4c135ff',1,'r_elc.c']]], + ['r_5felc_5flinkset',['R_ELC_LinkSet',['../group___e_l_c.html#ga4b40a4cb59194b6315cf608cd5e36bd9',1,'r_elc.c']]], + ['r_5felc_5fopen',['R_ELC_Open',['../group___e_l_c.html#ga35864de459d2ef45a03da4343729712f',1,'r_elc.c']]], + ['r_5felc_5fsoftwareeventgenerate',['R_ELC_SoftwareEventGenerate',['../group___e_l_c.html#gaa8735a16325cfeff3c47a50345d11d82',1,'r_elc.c']]], ['r_5ffsp_5fcurrentirqget',['R_FSP_CurrentIrqGet',['../group___b_s_p___m_c_u.html#ga50cae0c65c54074c32d30eb4108d9a09',1,'bsp_common.h']]], ['r_5ffsp_5fsystemclockhzget',['R_FSP_SystemClockHzGet',['../group___b_s_p___m_c_u.html#ga992632ae2e45c2f962855fe4bbe98a63',1,'bsp_clocks.c']]], ['r_5ffsp_5fversionget',['R_FSP_VersionGet',['../group___b_s_p___m_c_u.html#gaf3ee66233fc75acfcc21a97d7a767aa1',1,'bsp_common.c']]], @@ -36,6 +142,8 @@ var searchData= ['r_5fgpt_5foutputdisable',['R_GPT_OutputDisable',['../group___g_p_t.html#gae204e5d6c9305923e98724005dcdf03d',1,'r_gpt.c']]], ['r_5fgpt_5foutputenable',['R_GPT_OutputEnable',['../group___g_p_t.html#ga0e6638508ec1d5441713195c877bb7a7',1,'r_gpt.c']]], ['r_5fgpt_5fperiodset',['R_GPT_PeriodSet',['../group___g_p_t.html#gafedbfd8bc3f534d06969588ff10a351b',1,'r_gpt.c']]], + ['r_5fgpt_5fpwmoutputdelayinitialize',['R_GPT_PwmOutputDelayInitialize',['../group___g_p_t.html#gada982ef1873ca00147f9692b42aba8f0',1,'r_gpt.c']]], + ['r_5fgpt_5fpwmoutputdelayset',['R_GPT_PwmOutputDelaySet',['../group___g_p_t.html#gaff2d30ece9bd30b5a9cc2117623834c6',1,'r_gpt.c']]], ['r_5fgpt_5freset',['R_GPT_Reset',['../group___g_p_t.html#ga5eb494add3d40775dbc48c5498e15a3a',1,'r_gpt.c']]], ['r_5fgpt_5fstart',['R_GPT_Start',['../group___g_p_t.html#ga2769f9fda49613246bc84dba41aa4863',1,'r_gpt.c']]], ['r_5fgpt_5fstatusget',['R_GPT_StatusGet',['../group___g_p_t.html#gaa6234faf45320a83382d7ea1923a2c49',1,'r_gpt.c']]], @@ -52,14 +160,35 @@ var searchData= ['r_5fgtm_5fstart',['R_GTM_Start',['../group___g_t_m.html#gae0fe404d6571eb59c9f05f43f55eed25',1,'r_gtm.c']]], ['r_5fgtm_5fstatusget',['R_GTM_StatusGet',['../group___g_t_m.html#gaa95357cd0d4d8c43f7a2523d4c3b24f7',1,'r_gtm.c']]], ['r_5fgtm_5fstop',['R_GTM_Stop',['../group___g_t_m.html#ga89c7ca62fbb288cd5f44e5c773c699cf',1,'r_gtm.c']]], + ['r_5fi3c_5fb_5fclose',['R_I3C_B_Close',['../group___i3_c___b.html#gadd84cf1baec319b18540a857545ab51b',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fcommandsend',['R_I3C_B_CommandSend',['../group___i3_c___b.html#gae6b65e6c1def97b4a105ac8aaa66d96c',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fdevicecfgset',['R_I3C_B_DeviceCfgSet',['../group___i3_c___b.html#ga07b0af405a9ca84c45aab74bd1c696c2',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fdeviceselect',['R_I3C_B_DeviceSelect',['../group___i3_c___b.html#ga2a3f7414a893b9c2b9135523c8f6d950',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fdynamicaddressassignmentstart',['R_I3C_B_DynamicAddressAssignmentStart',['../group___i3_c___b.html#ga014e6425d49e19f05d24fd345a785589',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fenable',['R_I3C_B_Enable',['../group___i3_c___b.html#gae1dcb91a0152da9a6676ee27d305dceb',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fibiread',['R_I3C_B_IbiRead',['../group___i3_c___b.html#gad786c546168aabcc04099f73a540af29',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fibiwrite',['R_I3C_B_IbiWrite',['../group___i3_c___b.html#ga0b4af888ebc4c210feea2a149fd4cfc1',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fmasterdevicetableset',['R_I3C_B_MasterDeviceTableSet',['../group___i3_c___b.html#ga9517cc752212a1423f0153c4330943b4',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fopen',['R_I3C_B_Open',['../group___i3_c___b.html#gaa9ce3fda0950ce2aaa0cd8cf51fb5f95',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fread',['R_I3C_B_Read',['../group___i3_c___b.html#ga69047e20f165f6e44fea97f3fec69399',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fslavestatusset',['R_I3C_B_SlaveStatusSet',['../group___i3_c___b.html#ga4178234c4311d227a6fb8844e1e3a49e',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fwrite',['R_I3C_B_Write',['../group___i3_c___b.html#gadf661fd87ee8c33efd8801d59997d4a1',1,'r_i3c_b.c']]], ['r_5fintc_5firq_5fexternalirqcallbackset',['R_INTC_IRQ_ExternalIrqCallbackSet',['../group___i_n_t_c___i_r_q.html#gaf37cb360e6d2cf2a02fd27351f03c9b4',1,'r_intc_irq.c']]], ['r_5fintc_5firq_5fexternalirqclose',['R_INTC_IRQ_ExternalIrqClose',['../group___i_n_t_c___i_r_q.html#gace7f959c11f27f74e34702079aec5fac',1,'r_intc_irq.c']]], ['r_5fintc_5firq_5fexternalirqdisable',['R_INTC_IRQ_ExternalIrqDisable',['../group___i_n_t_c___i_r_q.html#gab5e021772ee4e4e203ae1f6190a690e0',1,'r_intc_irq.c']]], ['r_5fintc_5firq_5fexternalirqenable',['R_INTC_IRQ_ExternalIrqEnable',['../group___i_n_t_c___i_r_q.html#ga72be4cc60c1dbd8e2924568cf4cfb7ba',1,'r_intc_irq.c']]], ['r_5fintc_5firq_5fexternalirqopen',['R_INTC_IRQ_ExternalIrqOpen',['../group___i_n_t_c___i_r_q.html#ga40d3aae06a43698ad595661ba287c279',1,'r_intc_irq.c']]], + ['r_5fintc_5fnmi_5fexternalirqcallbackset',['R_INTC_NMI_ExternalIrqCallbackSet',['../group___i_n_t_c___n_m_i.html#ga52b9b9595c41fcfef9abf3ed0dc05a14',1,'r_intc_nmi.c']]], + ['r_5fintc_5fnmi_5fexternalirqclose',['R_INTC_NMI_ExternalIrqClose',['../group___i_n_t_c___n_m_i.html#ga87b6b8010db2fcb6e7e9de9e42b5306a',1,'r_intc_nmi.c']]], + ['r_5fintc_5fnmi_5fexternalirqdisable',['R_INTC_NMI_ExternalIrqDisable',['../group___i_n_t_c___n_m_i.html#ga213e64c8943eae69a17b77273c459ff2',1,'r_intc_nmi.c']]], + ['r_5fintc_5fnmi_5fexternalirqenable',['R_INTC_NMI_ExternalIrqEnable',['../group___i_n_t_c___n_m_i.html#ga037bcbc05ae66d3cab50fcc159f04d52',1,'r_intc_nmi.c']]], + ['r_5fintc_5fnmi_5fexternalirqopen',['R_INTC_NMI_ExternalIrqOpen',['../group___i_n_t_c___n_m_i.html#ga22b4030a01652c42e160e109c5772beb',1,'r_intc_nmi.c']]], + ['r_5fintc_5ftint_5fexternalirqcallbackset',['R_INTC_TINT_ExternalIrqCallbackSet',['../group___i_n_t_c___t_i_n_t.html#ga3237412fedf68db30556824a96b2ecb6',1,'r_intc_tint.c']]], + ['r_5fintc_5ftint_5fexternalirqclose',['R_INTC_TINT_ExternalIrqClose',['../group___i_n_t_c___t_i_n_t.html#gaafe713f813011a846a754d9137fda61b',1,'r_intc_tint.c']]], + ['r_5fintc_5ftint_5fexternalirqdisable',['R_INTC_TINT_ExternalIrqDisable',['../group___i_n_t_c___t_i_n_t.html#gad244de976bca311f089962b82d3f850b',1,'r_intc_tint.c']]], + ['r_5fintc_5ftint_5fexternalirqenable',['R_INTC_TINT_ExternalIrqEnable',['../group___i_n_t_c___t_i_n_t.html#ga61a1dc7902ccb186b915b33b5d38a03d',1,'r_intc_tint.c']]], + ['r_5fintc_5ftint_5fexternalirqopen',['R_INTC_TINT_ExternalIrqOpen',['../group___i_n_t_c___t_i_n_t.html#gab01a60894ce57e9089bbdff30d38334f',1,'r_intc_tint.c']]], ['r_5fioport_5fclose',['R_IOPORT_Close',['../group___i_o_p_o_r_t.html#ga91d4fde6e5f7cdf57b99af5b5f89f1cc',1,'r_ioport.c']]], - ['r_5fioport_5fethernetmodecfg',['R_IOPORT_EthernetModeCfg',['../group___i_o_p_o_r_t.html#ga383b2f8df036fceeb7c5344c5654d2c3',1,'r_ioport.c']]], - ['r_5fioport_5fethernetvoltagemodecfg',['R_IOPORT_EthernetVoltageModeCfg',['../group___i_o_p_o_r_t.html#gacfd358d1a3bbaa2c6bbc980664cd2d30',1,'r_ioport.c']]], ['r_5fioport_5fopen',['R_IOPORT_Open',['../group___i_o_p_o_r_t.html#ga24938047dccc62c4426ff543489454de',1,'r_ioport.c']]], ['r_5fioport_5fpincfg',['R_IOPORT_PinCfg',['../group___i_o_p_o_r_t.html#gab518fc544fe2b59722e30bd0a28ef430',1,'r_ioport.c']]], ['r_5fioport_5fpineventinputread',['R_IOPORT_PinEventInputRead',['../group___i_o_p_o_r_t.html#ga01fe1fa97720d982173bf110032fa21f',1,'r_ioport.c']]], @@ -72,8 +201,23 @@ var searchData= ['r_5fioport_5fporteventoutputwrite',['R_IOPORT_PortEventOutputWrite',['../group___i_o_p_o_r_t.html#ga8d3f8c4c90241587fee076b6fb0623ff',1,'r_ioport.c']]], ['r_5fioport_5fportread',['R_IOPORT_PortRead',['../group___i_o_p_o_r_t.html#gab84c08b8ac66d18c5636ebc772133e77',1,'r_ioport.c']]], ['r_5fioport_5fportwrite',['R_IOPORT_PortWrite',['../group___i_o_p_o_r_t.html#ga31825f3f0295317e5b446d74f791cd68',1,'r_ioport.c']]], - ['r_5fioport_5fqspivoltagemodecfg',['R_IOPORT_QSPIVoltageModeCfg',['../group___i_o_p_o_r_t.html#ga89947e3a2708547f57c5fc020b45c777',1,'r_ioport.c']]], - ['r_5fioport_5fsdvoltagemodecfg',['R_IOPORT_SDVoltageModeCfg',['../group___i_o_p_o_r_t.html#gaee86fd299af255bc3020d38d691db7b6',1,'r_ioport.c']]], + ['r_5fmhu_5fb_5fns_5fcallbackset',['R_MHU_B_NS_CallbackSet',['../group___m_h_u___b___n_s.html#ga0e9a0ab284383893a02ab288ac885ee8',1,'r_mhu_b_ns.c']]], + ['r_5fmhu_5fb_5fns_5fclose',['R_MHU_B_NS_Close',['../group___m_h_u___b___n_s.html#gaa7e509b5c668cf5926959cb50f53ea06',1,'r_mhu_b_ns.c']]], + ['r_5fmhu_5fb_5fns_5fisrsub',['R_MHU_B_NS_IsrSub',['../group___m_h_u___b___n_s.html#gac10ebe6ec0a9dfc34d9b512bbf3fa66e',1,'R_MHU_B_NS_IsrSub(uint32_t irq): r_mhu_b_ns.c'],['../group___m_h_u___b___n_s.html#gac10ebe6ec0a9dfc34d9b512bbf3fa66e',1,'R_MHU_B_NS_IsrSub(uint32_t irq): r_mhu_b_ns.c']]], + ['r_5fmhu_5fb_5fns_5fmsgsend',['R_MHU_B_NS_MsgSend',['../group___m_h_u___b___n_s.html#ga1bba9825f978e9a56d75d167a7b5b179',1,'r_mhu_b_ns.c']]], + ['r_5fmhu_5fb_5fns_5fopen',['R_MHU_B_NS_Open',['../group___m_h_u___b___n_s.html#gafb961a25b2c2e6b965dfa1ba580450f5',1,'r_mhu_b_ns.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fget_5fcallbackset',['R_MHU_B_NS_SWINT_GET_CallbackSet',['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#ga662917c72899887e1ddd67cce497c732',1,'r_mhu_b_ns_swint_get.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fget_5fclose',['R_MHU_B_NS_SWINT_GET_Close',['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#gadab533dca3f9ebbd37eddda34b8269fe',1,'r_mhu_b_ns_swint_get.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fget_5fisrsub',['R_MHU_B_NS_SWINT_GET_IsrSub',['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#ga8a7c2ba26a5025d177316a6a5981c706',1,'R_MHU_B_NS_SWINT_GET_IsrSub(uint32_t irq): r_mhu_b_ns_swint_get.c'],['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#ga8a7c2ba26a5025d177316a6a5981c706',1,'R_MHU_B_NS_SWINT_GET_IsrSub(uint32_t irq): r_mhu_b_ns_swint_get.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fget_5fopen',['R_MHU_B_NS_SWINT_GET_Open',['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#gafd2f119cc386c1672bf465ccefb498c3',1,'r_mhu_b_ns_swint_get.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fset_5fclose',['R_MHU_B_NS_SWINT_SET_Close',['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#gae96425edecc8f21ed9681028dfb81019',1,'r_mhu_b_ns_swint_set.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fset_5finterruptset',['R_MHU_B_NS_SWINT_SET_InterruptSet',['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#gaddd83232518e56d27b705f7c8fc99f17',1,'r_mhu_b_ns_swint_set.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fset_5fopen',['R_MHU_B_NS_SWINT_SET_Open',['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#gaba5433742015125a5bf5d8e3ef75b980',1,'r_mhu_b_ns_swint_set.c']]], + ['r_5fmhu_5fb_5fs_5fcallbackset',['R_MHU_B_S_CallbackSet',['../group___m_h_u___b___s.html#gad7c066b75da3fbe82844c1474d6a3f07',1,'r_mhu_b_s.c']]], + ['r_5fmhu_5fb_5fs_5fclose',['R_MHU_B_S_Close',['../group___m_h_u___b___s.html#gac6ff12104bd7bf87ad37d80b447b3fe8',1,'r_mhu_b_s.c']]], + ['r_5fmhu_5fb_5fs_5fisrsub',['R_MHU_B_S_IsrSub',['../group___m_h_u___b___s.html#ga0222baa1c79edc091f8676c719d32c1b',1,'R_MHU_B_S_IsrSub(uint32_t irq): r_mhu_b_s.c'],['../group___m_h_u___b___s.html#ga0222baa1c79edc091f8676c719d32c1b',1,'R_MHU_B_S_IsrSub(uint32_t irq): r_mhu_b_s.c']]], + ['r_5fmhu_5fb_5fs_5fmsgsend',['R_MHU_B_S_MsgSend',['../group___m_h_u___b___s.html#gad99b4c1d18e5981c75895a2578765c55',1,'r_mhu_b_s.c']]], + ['r_5fmhu_5fb_5fs_5fopen',['R_MHU_B_S_Open',['../group___m_h_u___b___s.html#ga0b3f80725bd550c0ad45e65a2b1ce84d',1,'r_mhu_b_s.c']]], ['r_5fmhu_5fns_5fcallbackset',['R_MHU_NS_CallbackSet',['../group___m_h_u___n_s.html#ga13943d092624696482858ac43db16ac5',1,'r_mhu_ns.c']]], ['r_5fmhu_5fns_5fclose',['R_MHU_NS_Close',['../group___m_h_u___n_s.html#ga40504624dee60aaebfb8710b91483930',1,'r_mhu_ns.c']]], ['r_5fmhu_5fns_5fisrsub',['R_MHU_NS_IsrSub',['../group___m_h_u___n_s.html#ga1a325703fa61f7fff4e762b092cef2ad',1,'R_MHU_NS_IsrSub(uint32_t irq): r_mhu_ns.c'],['../group___m_h_u___n_s.html#ga1a325703fa61f7fff4e762b092cef2ad',1,'R_MHU_NS_IsrSub(uint32_t irq): r_mhu_ns.c']]], @@ -91,6 +235,29 @@ var searchData= ['r_5fmhu_5fs_5fisrsub',['R_MHU_S_IsrSub',['../group___m_h_u___s.html#gabb304fbb568e37940fe39bec2fb6a1af',1,'R_MHU_S_IsrSub(uint32_t irq): r_mhu_s.c'],['../group___m_h_u___s.html#gabb304fbb568e37940fe39bec2fb6a1af',1,'R_MHU_S_IsrSub(uint32_t irq): r_mhu_s.c']]], ['r_5fmhu_5fs_5fmsgsend',['R_MHU_S_MsgSend',['../group___m_h_u___s.html#gace961f8d144fe82cf739f96762a681a3',1,'r_mhu_s.c']]], ['r_5fmhu_5fs_5fopen',['R_MHU_S_Open',['../group___m_h_u___s.html#gad777d9161d5147e0eb546d107cf64259',1,'r_mhu_s.c']]], + ['r_5fmtu3_5fadctriggerset',['R_MTU3_AdcTriggerSet',['../group___m_t_u3.html#ga3e16434800b5d897208039f3398acf84',1,'r_mtu3.c']]], + ['r_5fmtu3_5fcallbackset',['R_MTU3_CallbackSet',['../group___m_t_u3.html#ga4ec0ad4f10536b74374b75f2ca46f527',1,'r_mtu3.c']]], + ['r_5fmtu3_5fclose',['R_MTU3_Close',['../group___m_t_u3.html#gace590734aa53fc0116c411decc0142d2',1,'r_mtu3.c']]], + ['r_5fmtu3_5fcounterset',['R_MTU3_CounterSet',['../group___m_t_u3.html#ga8cddfd80a2cfb39a4c69703c8e672368',1,'r_mtu3.c']]], + ['r_5fmtu3_5fdisable',['R_MTU3_Disable',['../group___m_t_u3.html#gab8b9c7b84a459fabd5449e83db526ee1',1,'r_mtu3.c']]], + ['r_5fmtu3_5fdutycycleset',['R_MTU3_DutyCycleSet',['../group___m_t_u3.html#ga5e4eda78ae4a5cb31e85eb682d6fe248',1,'r_mtu3.c']]], + ['r_5fmtu3_5fenable',['R_MTU3_Enable',['../group___m_t_u3.html#ga7be983a26523a21e6eec4ed02b3d0902',1,'r_mtu3.c']]], + ['r_5fmtu3_5finfoget',['R_MTU3_InfoGet',['../group___m_t_u3.html#ga0c1fcecad7205ef9928305c960c7e494',1,'r_mtu3.c']]], + ['r_5fmtu3_5fopen',['R_MTU3_Open',['../group___m_t_u3.html#ga0ee0beb7bd1f1773916b0c633454fe0b',1,'r_mtu3.c']]], + ['r_5fmtu3_5foutputdisable',['R_MTU3_OutputDisable',['../group___m_t_u3.html#ga37213c6f09b8122f3950a5a8a83adc34',1,'r_mtu3.c']]], + ['r_5fmtu3_5foutputenable',['R_MTU3_OutputEnable',['../group___m_t_u3.html#ga5a740d5042e7efdf698259f1a4b98ece',1,'r_mtu3.c']]], + ['r_5fmtu3_5fperiodset',['R_MTU3_PeriodSet',['../group___m_t_u3.html#ga0d64e832230506418738a816a38489e4',1,'r_mtu3.c']]], + ['r_5fmtu3_5freset',['R_MTU3_Reset',['../group___m_t_u3.html#gab23024474f1c7bb662f4f9dfc091d85c',1,'r_mtu3.c']]], + ['r_5fmtu3_5fstart',['R_MTU3_Start',['../group___m_t_u3.html#ga57aa8e231848fe1eb00775bd722418ee',1,'r_mtu3.c']]], + ['r_5fmtu3_5fstatusget',['R_MTU3_StatusGet',['../group___m_t_u3.html#ga8e02f073acf66a66ef6e525c8b57454e',1,'r_mtu3.c']]], + ['r_5fmtu3_5fstop',['R_MTU3_Stop',['../group___m_t_u3.html#ga396b95f942eed8fd222c67e5bfd22800',1,'r_mtu3.c']]], + ['r_5fpdm_5fcallbackset',['R_PDM_CallbackSet',['../group___p_d_m.html#gaecf26c2d11db2e9700beb41164b8a1fb',1,'r_pdm.c']]], + ['r_5fpdm_5fclose',['R_PDM_Close',['../group___p_d_m.html#ga0f07fb3bab80af13bd260b7f7f54062e',1,'r_pdm.c']]], + ['r_5fpdm_5fopen',['R_PDM_Open',['../group___p_d_m.html#ga348be7b997dd1200eb549ff3e7f946a0',1,'r_pdm.c']]], + ['r_5fpdm_5fread',['R_PDM_Read',['../group___p_d_m.html#ga62fc9390544cabfb4800f38125f748ab',1,'r_pdm.c']]], + ['r_5fpdm_5fstart',['R_PDM_Start',['../group___p_d_m.html#ga745fa70668486ae2a7d16bd72eb93a54',1,'r_pdm.c']]], + ['r_5fpdm_5fstatusget',['R_PDM_StatusGet',['../group___p_d_m.html#gaf5696a4b5a4e9f33f89baefe9a7e1f94',1,'r_pdm.c']]], + ['r_5fpdm_5fstop',['R_PDM_Stop',['../group___p_d_m.html#ga35f2abc47410d9906e8ae5bac12d7a29',1,'r_pdm.c']]], ['r_5fpoeg_5fcallbackset',['R_POEG_CallbackSet',['../group___p_o_e_g.html#ga299d7e0c935c5305d72077fdf1963c2d',1,'r_poeg.c']]], ['r_5fpoeg_5fclose',['R_POEG_Close',['../group___p_o_e_g.html#ga84dddc58a538b5a7c9c22b7f4412755a',1,'r_poeg.c']]], ['r_5fpoeg_5fopen',['R_POEG_Open',['../group___p_o_e_g.html#ga84d0272a9da17941d62d264ff3a7b678',1,'r_poeg.c']]], @@ -105,6 +272,11 @@ var searchData= ['r_5friic_5fmaster_5fslaveaddressset',['R_RIIC_MASTER_SlaveAddressSet',['../group___r_i_i_c___m_a_s_t_e_r.html#gafd5de8a9b0160931adaba85f614839f3',1,'r_riic_master.c']]], ['r_5friic_5fmaster_5fstatusget',['R_RIIC_MASTER_StatusGet',['../group___r_i_i_c___m_a_s_t_e_r.html#ga786eaee89f66ecbf8f4faea575ee6e56',1,'r_riic_master.c']]], ['r_5friic_5fmaster_5fwrite',['R_RIIC_MASTER_Write',['../group___r_i_i_c___m_a_s_t_e_r.html#ga492a86497c72e8f9bcf70d8dcd03c762',1,'r_riic_master.c']]], + ['r_5friic_5fslave_5fcallbackset',['R_RIIC_SLAVE_CallbackSet',['../group___r_i_i_c___s_l_a_v_e.html#gaeb7fb4539537de4f9388e6cdaab5f94d',1,'r_riic_slave.c']]], + ['r_5friic_5fslave_5fclose',['R_RIIC_SLAVE_Close',['../group___r_i_i_c___s_l_a_v_e.html#ga4a85c440574e6f2f837f3e19188d1a67',1,'r_riic_slave.c']]], + ['r_5friic_5fslave_5fopen',['R_RIIC_SLAVE_Open',['../group___r_i_i_c___s_l_a_v_e.html#gab0124cdb3b51609214466122053a7d15',1,'r_riic_slave.c']]], + ['r_5friic_5fslave_5fread',['R_RIIC_SLAVE_Read',['../group___r_i_i_c___s_l_a_v_e.html#ga46f545b8b7e7d94c773e2563f3cd2534',1,'r_riic_slave.c']]], + ['r_5friic_5fslave_5fwrite',['R_RIIC_SLAVE_Write',['../group___r_i_i_c___s_l_a_v_e.html#ga405ee8b79780785120d761af083f9557',1,'r_riic_slave.c']]], ['r_5frspi_5fcalculatebitrate',['R_RSPI_CalculateBitrate',['../group___r_s_p_i.html#gad663d0a4eb35992cbf804cc5da21cb45',1,'r_rspi.c']]], ['r_5frspi_5fcallbackset',['R_RSPI_CallbackSet',['../group___r_s_p_i.html#ga01e482fc0ce65e7462177bb7f5852ac2',1,'r_rspi.c']]], ['r_5frspi_5fclose',['R_RSPI_Close',['../group___r_s_p_i.html#ga9aee5ad3abd18ef054128c8542ec7f68',1,'r_rspi.c']]], @@ -112,6 +284,35 @@ var searchData= ['r_5frspi_5fread',['R_RSPI_Read',['../group___r_s_p_i.html#gabf563431c100264a744239953798e1ea',1,'r_rspi.c']]], ['r_5frspi_5fwrite',['R_RSPI_Write',['../group___r_s_p_i.html#gae60c894cc73159eb48885dd1ab0864eb',1,'r_rspi.c']]], ['r_5frspi_5fwriteread',['R_RSPI_WriteRead',['../group___r_s_p_i.html#gad52ea6e5651ab88e2cbacfec46f6a4b3',1,'r_rspi.c']]], + ['r_5frtc_5fcalendaralarmget',['R_RTC_CalendarAlarmGet',['../group___r_t_c.html#gacbb2641ed2236f071c001df6b025e0f2',1,'r_rtc.c']]], + ['r_5frtc_5fcalendaralarmset',['R_RTC_CalendarAlarmSet',['../group___r_t_c.html#ga5c39b02432cedcb7a29ae8bdc8fcefb8',1,'r_rtc.c']]], + ['r_5frtc_5fcalendartimeget',['R_RTC_CalendarTimeGet',['../group___r_t_c.html#gaabcfafd522c18288ac274f6b56f76366',1,'r_rtc.c']]], + ['r_5frtc_5fcalendartimeset',['R_RTC_CalendarTimeSet',['../group___r_t_c.html#ga3bf6329a0ea01943e385499fcac01e1e',1,'r_rtc.c']]], + ['r_5frtc_5fcallbackset',['R_RTC_CallbackSet',['../group___r_t_c.html#gaa6b50d916a9243792c0ea8b13744d25f',1,'r_rtc.c']]], + ['r_5frtc_5fclocksourceset',['R_RTC_ClockSourceSet',['../group___r_t_c.html#gaa08e35bcfca849283de15698beb6b150',1,'r_rtc.c']]], + ['r_5frtc_5fclose',['R_RTC_Close',['../group___r_t_c.html#gac1135140182189d9c1defa5846a375c8',1,'r_rtc.c']]], + ['r_5frtc_5ferroradjustmentset',['R_RTC_ErrorAdjustmentSet',['../group___r_t_c.html#ga6e0f357923c34057c8c938a52f6e8da8',1,'r_rtc.c']]], + ['r_5frtc_5finfoget',['R_RTC_InfoGet',['../group___r_t_c.html#ga311898f6b0ddd44d9b4c1b34defb0cf4',1,'r_rtc.c']]], + ['r_5frtc_5fopen',['R_RTC_Open',['../group___r_t_c.html#gae6b2cd0b0827d0fdef1dd148ddc354bb',1,'r_rtc.c']]], + ['r_5frtc_5fperiodicirqrateset',['R_RTC_PeriodicIrqRateSet',['../group___r_t_c.html#ga0fd1ee1e11ed683d7509f251bbd1f282',1,'r_rtc.c']]], + ['r_5fsci_5fb_5fi2c_5fabort',['R_SCI_B_I2C_Abort',['../group___s_c_i___b___i2_c.html#gadddbf1fa35661d53916faae95db97202',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fcallbackset',['R_SCI_B_I2C_CallbackSet',['../group___s_c_i___b___i2_c.html#gaa8c8d381f7c639650bf775c3eec125b9',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fclose',['R_SCI_B_I2C_Close',['../group___s_c_i___b___i2_c.html#ga1d57041c70f924d2968792d59d1b980b',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fopen',['R_SCI_B_I2C_Open',['../group___s_c_i___b___i2_c.html#gae457daf3146cc92adfadc471b5bebd27',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fread',['R_SCI_B_I2C_Read',['../group___s_c_i___b___i2_c.html#ga0d1ab3b59b204adb64bff01d4c83d10f',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fslaveaddressset',['R_SCI_B_I2C_SlaveAddressSet',['../group___s_c_i___b___i2_c.html#ga286e5448d62d962610e1c7e104eb3fe9',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fstatusget',['R_SCI_B_I2C_StatusGet',['../group___s_c_i___b___i2_c.html#ga677766a68a258bb7a2e97090cff1c03b',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fwrite',['R_SCI_B_I2C_Write',['../group___s_c_i___b___i2_c.html#gaa214ca399eb4bb9cb198237f608b4767',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fuart_5fabort',['R_SCI_B_UART_Abort',['../group___s_c_i___b___u_a_r_t.html#ga4c327408aaf082057bae8c89127e396c',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fbaudcalculate',['R_SCI_B_UART_BaudCalculate',['../group___s_c_i___b___u_a_r_t.html#gaafe9521b01cb274f8c8e45a4f62b020f',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fbaudset',['R_SCI_B_UART_BaudSet',['../group___s_c_i___b___u_a_r_t.html#gad9ae4780db497c17ae0c1677573f0320',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fcallbackset',['R_SCI_B_UART_CallbackSet',['../group___s_c_i___b___u_a_r_t.html#gabc9e9188d0150ff75f69f3217312691f',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fclose',['R_SCI_B_UART_Close',['../group___s_c_i___b___u_a_r_t.html#ga91e1364f8fd7b00073ccdb72a1bd34e9',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5finfoget',['R_SCI_B_UART_InfoGet',['../group___s_c_i___b___u_a_r_t.html#gafe20c9d0e52f1186c60033a5a1910119',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fopen',['R_SCI_B_UART_Open',['../group___s_c_i___b___u_a_r_t.html#ga60643fd4c7b00970ad9d295302498f13',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fread',['R_SCI_B_UART_Read',['../group___s_c_i___b___u_a_r_t.html#gaa0e296b71701a2d0045add3c75d2fdd7',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5freadstop',['R_SCI_B_UART_ReadStop',['../group___s_c_i___b___u_a_r_t.html#ga60ee90741cf1240c127d75acf9df50ed',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fwrite',['R_SCI_B_UART_Write',['../group___s_c_i___b___u_a_r_t.html#gad8456e403e88d52e1e858b62e19a2d0b',1,'r_sci_b_uart.c']]], ['r_5fscif_5fuart_5fabort',['R_SCIF_UART_Abort',['../group___s_c_i_f___u_a_r_t.html#ga540d3842dd9db9c39e36c230583e29b1',1,'r_scif_uart.c']]], ['r_5fscif_5fuart_5fbaudcalculate',['R_SCIF_UART_BaudCalculate',['../group___s_c_i_f___u_a_r_t.html#gad29ba19ecddc66108d794c93f9c1165f',1,'r_scif_uart.c']]], ['r_5fscif_5fuart_5fbaudset',['R_SCIF_UART_BaudSet',['../group___s_c_i_f___u_a_r_t.html#ga6ed81db7a7e6f618870e1479734c5860',1,'r_scif_uart.c']]], @@ -120,24 +321,82 @@ var searchData= ['r_5fscif_5fuart_5finfoget',['R_SCIF_UART_InfoGet',['../group___s_c_i_f___u_a_r_t.html#gafc4582fe6a3b46c7e933d709204c01f3',1,'r_scif_uart.c']]], ['r_5fscif_5fuart_5fopen',['R_SCIF_UART_Open',['../group___s_c_i_f___u_a_r_t.html#ga2a791c5e359c3fe2d85339fc3f915bc3',1,'r_scif_uart.c']]], ['r_5fscif_5fuart_5fread',['R_SCIF_UART_Read',['../group___s_c_i_f___u_a_r_t.html#ga07a261385112a6909e86c441411e2e53',1,'r_scif_uart.c']]], + ['r_5fscif_5fuart_5freadstop',['R_SCIF_UART_ReadStop',['../group___s_c_i_f___u_a_r_t.html#gaef7c79f4e4ed3370d27f6cc73d744270',1,'r_scif_uart.c']]], ['r_5fscif_5fuart_5fwrite',['R_SCIF_UART_Write',['../group___s_c_i_f___u_a_r_t.html#ga42409976902f41a6c92890ca8d9eb28a',1,'r_scif_uart.c']]], + ['r_5fspi_5fb_5fcalculatebitrate',['R_SPI_B_CalculateBitrate',['../group___s_p_i___b.html#ga4312b8a1c4aee284f3007621403a0b6d',1,'r_spi_b.c']]], + ['r_5fspi_5fb_5fcallbackset',['R_SPI_B_CallbackSet',['../group___s_p_i___b.html#ga588348788f8ed3f933befc5a1cbe9b90',1,'r_spi_b.c']]], + ['r_5fspi_5fb_5fclose',['R_SPI_B_Close',['../group___s_p_i___b.html#ga8e700b9cda9c467dde6090fb4c4a6969',1,'r_spi_b.c']]], + ['r_5fspi_5fb_5fopen',['R_SPI_B_Open',['../group___s_p_i___b.html#gab338db9c94dc09edc2ceddf87904845d',1,'r_spi_b.c']]], + ['r_5fspi_5fb_5fread',['R_SPI_B_Read',['../group___s_p_i___b.html#gabcc557f95c75b12b462962f6c709e229',1,'r_spi_b.c']]], + ['r_5fspi_5fb_5fwrite',['R_SPI_B_Write',['../group___s_p_i___b.html#ga2adf0b091362e84b71f1bd3a1d821f40',1,'r_spi_b.c']]], + ['r_5fspi_5fb_5fwriteread',['R_SPI_B_WriteRead',['../group___s_p_i___b.html#ga44658a0ea656e093e0eac61186aef274',1,'r_spi_b.c']]], + ['r_5ftsu_5fb_5fcalculatetemperature',['R_TSU_B_CalculateTemperature',['../group___t_s_u___b.html#ga7b164d0defb1b364c993b138a3ca0524',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fcalibrate',['R_TSU_B_Calibrate',['../group___t_s_u___b.html#ga11361111b88fa7e72cb9014d440c3ff1',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fcallbackset',['R_TSU_B_CallbackSet',['../group___t_s_u___b.html#gabfa2e53113bbd7e12dea5dabf227903c',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fclose',['R_TSU_B_Close',['../group___t_s_u___b.html#gab85e848ca49caaa929dd77dc8921e29f',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5finfoget',['R_TSU_B_InfoGet',['../group___t_s_u___b.html#ga5e8b4241a1e5e499da79c839aad0628e',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5foffsetset',['R_TSU_B_OffsetSet',['../group___t_s_u___b.html#gac01f0a25e022187d5a10913234c6dd8e',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fopen',['R_TSU_B_Open',['../group___t_s_u___b.html#ga97e39892fa51e09d3809f600781f3b98',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fread',['R_TSU_B_Read',['../group___t_s_u___b.html#gada13a2179de16db6073f307afae1e612',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fread32',['R_TSU_B_Read32',['../group___t_s_u___b.html#ga1b591622c668393be2a471acb5af0a09',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fscancfg',['R_TSU_B_ScanCfg',['../group___t_s_u___b.html#ga978c60f17aa8a2184140272e7588474e',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fscangroupstart',['R_TSU_B_ScanGroupStart',['../group___t_s_u___b.html#gaef9ec32a8de4e4286e10f0c87efd450d',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fscanstart',['R_TSU_B_ScanStart',['../group___t_s_u___b.html#ga39f1ed741b28eab45f1712935f3883e4',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fscanstop',['R_TSU_B_ScanStop',['../group___t_s_u___b.html#ga874a931c003bbe50ad12e6da4d87143f',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fstatusget',['R_TSU_B_StatusGet',['../group___t_s_u___b.html#ga15204e44f60f3f948c5b13983635742b',1,'r_tsu_b.c']]], + ['r_5fwdt_5fcallbackset',['R_WDT_CallbackSet',['../group___w_d_t.html#ga602ed1a63b61c46df822059ab6a5395e',1,'r_wdt.c']]], + ['r_5fwdt_5fcounterget',['R_WDT_CounterGet',['../group___w_d_t.html#gaf6b4f726ecfe6795c7887dc1226450ca',1,'r_wdt.c']]], + ['r_5fwdt_5fopen',['R_WDT_Open',['../group___w_d_t.html#gad64d0778fd0ceccb13a7287bb0d1fca8',1,'r_wdt.c']]], + ['r_5fwdt_5frefresh',['R_WDT_Refresh',['../group___w_d_t.html#gaff080d0dcc993cfbe7e99771396feffb',1,'r_wdt.c']]], + ['r_5fwdt_5fstatusclear',['R_WDT_StatusClear',['../group___w_d_t.html#gacd5b9ff42df96b9fd4603dda47b946cb',1,'r_wdt.c']]], + ['r_5fwdt_5fstatusget',['R_WDT_StatusGet',['../group___w_d_t.html#ga17bf328598042575cbe4f126f59bbc1b',1,'r_wdt.c']]], + ['r_5fwdt_5ftimeoutget',['R_WDT_TimeoutGet',['../group___w_d_t.html#gac6e98a5b526d81651da1ffeda3f70263',1,'r_wdt.c']]], + ['r_5fxspi_5fqspi_5fautocalibrate',['R_XSPI_QSPI_AutoCalibrate',['../group___x_s_p_i___q_s_p_i.html#ga6fceaa55b924ce5ecf7a00a962b5d529',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fbankset',['R_XSPI_QSPI_BankSet',['../group___x_s_p_i___q_s_p_i.html#ga384be6c60819abe2478a7b35c9a7a98e',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fclose',['R_XSPI_QSPI_Close',['../group___x_s_p_i___q_s_p_i.html#gaad19b3c8e517b9e614ee8697f8cef4e7',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fdirectread',['R_XSPI_QSPI_DirectRead',['../group___x_s_p_i___q_s_p_i.html#ga2f5bbf5d76d76c31840f4ce82d3393d2',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fdirecttransfer',['R_XSPI_QSPI_DirectTransfer',['../group___x_s_p_i___q_s_p_i.html#ga5e5bf2c3854fb149c7ac6f96fce9ee98',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fdirectwrite',['R_XSPI_QSPI_DirectWrite',['../group___x_s_p_i___q_s_p_i.html#ga1bfceb0eafe5923f05b90899c095bd2d',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5ferase',['R_XSPI_QSPI_Erase',['../group___x_s_p_i___q_s_p_i.html#ga35a0c5d80a5ae30d48b46b37153f7e76',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fopen',['R_XSPI_QSPI_Open',['../group___x_s_p_i___q_s_p_i.html#ga6e1ddbaec6b1d04c6425b3a271d9093a',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fspiprotocolset',['R_XSPI_QSPI_SpiProtocolSet',['../group___x_s_p_i___q_s_p_i.html#gac03a7edb53183d589372bd8be1ecf870',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fstatusget',['R_XSPI_QSPI_StatusGet',['../group___x_s_p_i___q_s_p_i.html#gaad73cce9b2ac857fbd0423223ae3388e',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fwrite',['R_XSPI_QSPI_Write',['../group___x_s_p_i___q_s_p_i.html#gaf2619573525414afefc46ebc2fd53bec',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fxipenter',['R_XSPI_QSPI_XipEnter',['../group___x_s_p_i___q_s_p_i.html#ga373731d45a2fdd625ee69b602ebc4d86',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fxipexit',['R_XSPI_QSPI_XipExit',['../group___x_s_p_i___q_s_p_i.html#gaedf789bc1d1335f9b2356eaaaa58694e',1,'r_xspi_qspi.c']]], ['raq',['raq',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aafd6e3d578d566d09fcae0b3b0c81851',1,'rm_zmod4xxx_raq_data_t']]], ['raqdatacalculate',['raqDataCalculate',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aa05768468433346424e7c695a0e0a4ed',1,'rm_zmod4xxx_api_t']]], - ['rate',['rate',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a14a4f6b4fb30067212155c989e5a65d2',1,'i2c_master_cfg_t']]], + ['rate',['rate',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a14a4f6b4fb30067212155c989e5a65d2',1,'i2c_master_cfg_t::rate()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a2abbee554bf1c554d96c8863eb3db77a',1,'i2c_slave_cfg_t::rate()']]], ['rcda',['rcda',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abdc449da78d2149a7b552ef545a1b069',1,'rm_zmod4xxx_iaq_1st_data_t']]], - ['read',['read',['../group___c_a_n___a_p_i.html#af6c0a7c4a078f852e7c332369f8de9e2',1,'can_api_t::read()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a7b874b282654d0649f041beb36ab9962',1,'i2c_master_api_t::read()'],['../group___s_p_i___a_p_i.html#a43d0988501f90910690a3357bda1a936',1,'spi_api_t::read()'],['../group___u_a_r_t___a_p_i.html#a75ba1611c4bba17f25f1957348991829',1,'uart_api_t::read()'],['../group___r_m___c_o_m_m_s___a_p_i.html#a40779e10d71d444a436dc2382003bc0b',1,'rm_comms_api_t::read()'],['../group___r_m___h_s300_x___a_p_i.html#a1e0d9168e53864f3fc70cf99077f6210',1,'rm_hs300x_api_t::read()'],['../group___r_m___h_s400_x___a_p_i.html#a66bd54ec8371b1b45b530c455e5d9ea0',1,'rm_hs400x_api_t::read()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8f0e582715db0dc1589f314944c2a41a',1,'rm_zmod4xxx_api_t::read()'],['../structzmod4xxx__dev__t.html#a83fc74e495a6ede0f9554bfd010d55ac',1,'zmod4xxx_dev_t::read()']]], + ['rcv_5firq',['rcv_irq',['../group___i3_c___b.html#a7aabb012263bcc0093e5ed6137b8a701',1,'i3c_b_extended_cfg_t']]], + ['read',['read',['../group___a_d_c___a_p_i.html#a9a540c52a5052a12b3b879d78543efd5',1,'adc_api_t::read()'],['../group___c_a_n___a_p_i.html#af6c0a7c4a078f852e7c332369f8de9e2',1,'can_api_t::read()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a7b874b282654d0649f041beb36ab9962',1,'i2c_master_api_t::read()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ad9693d9cbb58cc0abb6e4e85548e4e18',1,'i2c_slave_api_t::read()'],['../group___i3_c___a_p_i.html#ad013ffb59c95539c84fe217b90d897ad',1,'i3c_api_t::read()'],['../group___p_d_m___a_p_i.html#ac5a449eb8492fef49421d8e3babf205f',1,'pdm_api_t::read()'],['../group___s_p_i___a_p_i.html#a43d0988501f90910690a3357bda1a936',1,'spi_api_t::read()'],['../group___u_a_r_t___a_p_i.html#a75ba1611c4bba17f25f1957348991829',1,'uart_api_t::read()'],['../group___r_m___c_o_m_m_s___a_p_i.html#a40779e10d71d444a436dc2382003bc0b',1,'rm_comms_api_t::read()'],['../group___r_m___h_s300_x___a_p_i.html#a1e0d9168e53864f3fc70cf99077f6210',1,'rm_hs300x_api_t::read()'],['../group___r_m___h_s400_x___a_p_i.html#a66bd54ec8371b1b45b530c455e5d9ea0',1,'rm_hs400x_api_t::read()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8f0e582715db0dc1589f314944c2a41a',1,'rm_zmod4xxx_api_t::read()'],['../structzmod4xxx__dev__t.html#a83fc74e495a6ede0f9554bfd010d55ac',1,'zmod4xxx_dev_t::read()']]], + ['read32',['read32',['../group___a_d_c___a_p_i.html#a81338d39975b7fe87d5e06c55a8c5dc5',1,'adc_api_t']]], + ['read_5fbuffer_5fdescriptor',['read_buffer_descriptor',['../group___i3_c___b.html#a231f4fdcb227e5433b99eb4681092ea1',1,'i3c_b_instance_ctrl_t']]], ['read_5fbytes_5fmax',['read_bytes_max',['../group___u_a_r_t___a_p_i.html#a5cd3c3cd9abff685e954033d13e82bd2',1,'uart_info_t']]], - ['read_5findex',['read_index',['../group___r_m___o_b1203___a_p_i.html#a08c6a80cb4cea1048712c81229fc6d57',1,'rm_ob1203_fifo_info_t']]], + ['read_5fcommand',['read_command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a7c61a9a4dbc8bb415233c42cfdc34d6d',1,'spi_flash_cfg_t']]], + ['read_5fdata_5frate',['read_data_rate',['../group___i3_c___b.html#a9740e5cb2cd5e45294ebe55929c9daa7',1,'i3c_b_slave_command_response_info_t']]], + ['read_5flength',['read_length',['../group___i3_c___b.html#ac35a8a2ba71c865f91f85ceb8be2fe65',1,'i3c_b_slave_command_response_info_t']]], + ['read_5fmode',['read_mode',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a40a6269760d8c4aaf75bf84613d1f551',1,'spi_flash_cfg_t']]], + ['read_5ftransfer_5fcount_5ffinal',['read_transfer_count_final',['../group___i3_c___b.html#a19839c4573b756f918d79ed7b95db193',1,'i3c_b_instance_ctrl_t']]], + ['read_5fturnaround_5ftime',['read_turnaround_time',['../group___i3_c___b.html#ac817332b7a7317c6edc91a84c329c656',1,'i3c_b_slave_command_response_info_t']]], + ['read_5fturnaround_5ftime_5fenable',['read_turnaround_time_enable',['../group___i3_c___b.html#a680354fe57452deb48fd62692bddf62e',1,'i3c_b_slave_command_response_info_t']]], + ['readstop',['readStop',['../group___u_a_r_t___a_p_i.html#acb47c360a2ac4ddd36e53f0a4ad71b92',1,'uart_api_t']]], ['reconfigure',['reconfigure',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a1e38b8ef4e4fa3e59efb257102e72b72',1,'transfer_api_t']]], - ['red_5fdata',['red_data',['../group___r_m___o_b1203___a_p_i.html#ac6f9b82ccffba821d2d1d59cc044d024',1,'rm_ob1203_light_data_t']]], - ['red_5fled',['red_led',['../group___r_m___o_b1203___a_p_i.html#ac420d009e91e7281052cd9d34a057394',1,'rm_ob1203_led_current_t']]], - ['register_5faddress',['register_address',['../group___r_m___o_b1203.html#a8671a1b4dd57a4e872515a27904d712b',1,'rm_ob1203_instance_ctrl_t::register_address()'],['../group___r_m___z_m_o_d4_x_x_x.html#af89ee122a3cd7e3ab844bae5addfe9df',1,'rm_zmod4xxx_instance_ctrl_t::register_address()']]], + ['refresh',['refresh',['../group___w_d_t___a_p_i.html#a0d1533024396b8280b7240c781a09a44',1,'wdt_api_t']]], + ['register_5faddress',['register_address',['../group___r_m___z_m_o_d4_x_x_x.html#af89ee122a3cd7e3ab844bae5addfe9df',1,'rm_zmod4xxx_instance_ctrl_t']]], + ['reload',['reload',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a3af1d98295baf9bd92251f55c95f8868',1,'transfer_api_t']]], + ['rtos',['RTOS',['../group___r_e_n_e_s_a_s___r_t_o_s___m_o_d_u_l_e_s.html',1,'']]], ['reset',['reset',['../group___p_o_e_g___a_p_i.html#a5765dcf518892b71b73b5ae38942bd7f',1,'poeg_api_t::reset()'],['../group___t_i_m_e_r___a_p_i.html#ab1c62157861ef1ea8393bb3cafd72102',1,'timer_api_t::reset()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a9c096c8d0e78dfbf8b3809a4598b8619',1,'transfer_api_t::reset()']]], + ['reset_5fcontrol',['reset_control',['../group___w_d_t___a_p_i.html#aaa3b53f7c79a5f385cc6a8f987623b10',1,'wdt_cfg_t']]], ['reset_5fhandler_5fns',['Reset_Handler_NS',['../group___b_s_p___m_c_u.html#ga49c8711ce69459021327e37557a1a9f1',1,'startup.c']]], ['reset_5fhandler_5fs',['Reset_Handler_S',['../group___b_s_p___m_c_u.html#ga740c87d0bffe0692e1cdae0b96ab9ee9',1,'startups.c']]], + ['resolution',['resolution',['../group___a_d_c___a_p_i.html#a6926363295e23a6121e91095b9f6e28d',1,'adc_cfg_t']]], ['resolution_5fregister',['resolution_register',['../group___r_m___h_s400_x.html#a5a901725d640aab3b802cffa3159276e',1,'rm_hs400x_instance_ctrl_t']]], ['resolutionchange',['resolutionChange',['../group___r_m___h_s300_x___a_p_i.html#a069acb3e5dd3bc2445f053a7dae626bf',1,'rm_hs300x_api_t']]], + ['resp_5firq',['resp_irq',['../group___i3_c___b.html#a5566fbe13d210afcf9538b7f0ef30907',1,'i3c_b_extended_cfg_t']]], + ['restart',['restart',['../group___i3_c___a_p_i.html#a28a3c4290b712ff83b77fd4f7412c322',1,'i3c_command_descriptor_t']]], ['riic_5fmaster_5fextended_5fcfg_5ft',['riic_master_extended_cfg_t',['../group___r_i_i_c___m_a_s_t_e_r.html#structriic__master__extended__cfg__t',1,'']]], + ['riic_5fslave_5fextended_5fcfg_5ft',['riic_slave_extended_cfg_t',['../group___r_i_i_c___s_l_a_v_e.html#structriic__slave__extended__cfg__t',1,'']]], ['rm_5fcomms_5fapi_5ft',['rm_comms_api_t',['../group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__api__t',1,'']]], ['rm_5fcomms_5fcallback_5fargs_5ft',['rm_comms_callback_args_t',['../group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__callback__args__t',1,'']]], ['rm_5fcomms_5fcfg_5ft',['rm_comms_cfg_t',['../group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__cfg__t',1,'']]], @@ -198,205 +457,6 @@ var searchData= ['rm_5fhs400x_5fresolutions_5ft',['rm_hs400x_resolutions_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__resolutions__t',1,'']]], ['rm_5fhs400x_5fsensor_5fdata_5ft',['rm_hs400x_sensor_data_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__sensor__data__t',1,'']]], ['rm_5fhs400x_5ftemperature_5fresolution_5ft',['rm_hs400x_temperature_resolution_t',['../group___r_m___h_s400_x___a_p_i.html#ga5b0c2c5ce80e20f899cce8ac4d85cf84',1,'rm_hs400x_api.h']]], - ['rm_5fob1203_5fanalog_5fcancellation_5fdisable',['RM_OB1203_ANALOG_CANCELLATION_DISABLE',['../group___r_m___o_b1203___a_p_i.html#gga4d79e3bac567b22223b4e219a6ee7f34a70dd99f434b1ee1125f38037a11cafd0',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fanalog_5fcancellation_5fenable',['RM_OB1203_ANALOG_CANCELLATION_ENABLE',['../group___r_m___o_b1203___a_p_i.html#gga4d79e3bac567b22223b4e219a6ee7f34ae89ccedc87ea692b1f2413f5ca399d17',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fanalog_5fcancellation_5ft',['rm_ob1203_analog_cancellation_t',['../group___r_m___o_b1203___a_p_i.html#ga4d79e3bac567b22223b4e219a6ee7f34',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fapi_5ft',['rm_ob1203_api_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__api__t',1,'']]], - ['rm_5fob1203_5fcallback_5fargs_5ft',['rm_ob1203_callback_args_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__callback__args__t',1,'']]], - ['rm_5fob1203_5fcfg_5ft',['rm_ob1203_cfg_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__cfg__t',1,'']]], - ['rm_5fob1203_5fclose',['RM_OB1203_Close',['../group___r_m___o_b1203.html#gaff536e258d187d8efd6fac712ca885e1',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fctrl_5ft',['rm_ob1203_ctrl_t',['../group___r_m___o_b1203___a_p_i.html#gac6e75ff65e4c3354fac0f8a44b8545bf',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fdevice_5finterrupt_5fcfg_5ft',['rm_ob1203_device_interrupt_cfg_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__device__interrupt__cfg__t',1,'']]], - ['rm_5fob1203_5fdevice_5fstatus_5ft',['rm_ob1203_device_status_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__device__status__t',1,'']]], - ['rm_5fob1203_5fdeviceinterruptcfgset',['RM_OB1203_DeviceInterruptCfgSet',['../group___r_m___o_b1203.html#gae791e9a53d7642b5ab9bed5ddfb195fa',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fdevicestatusget',['RM_OB1203_DeviceStatusGet',['../group___r_m___o_b1203.html#ga13ab57714aafa9a3023a32f83c88e1dd',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fevent_5ft',['rm_ob1203_event_t',['../group___r_m___o_b1203___a_p_i.html#ga649fde9081cd4c40cac825f132598091',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5ffifo_5finfo_5ft',['rm_ob1203_fifo_info_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__fifo__info__t',1,'']]], - ['rm_5fob1203_5ffifo_5frollover_5fdisable',['RM_OB1203_FIFO_ROLLOVER_DISABLE',['../group___r_m___o_b1203___a_p_i.html#gga41b9839d52cdeaa01260dc24932d6fe3af28a76cfc08665e307291b6ca78afdb1',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5ffifo_5frollover_5fenable',['RM_OB1203_FIFO_ROLLOVER_ENABLE',['../group___r_m___o_b1203___a_p_i.html#gga41b9839d52cdeaa01260dc24932d6fe3a2673055a75c804ebb0186e805471c07b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5ffifo_5frollover_5ft',['rm_ob1203_fifo_rollover_t',['../group___r_m___o_b1203___a_p_i.html#ga41b9839d52cdeaa01260dc24932d6fe3',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5ffifoinfoget',['RM_OB1203_FifoInfoGet',['../group___r_m___o_b1203.html#ga6ffbbe58d90adb8001d2f6424987e71b',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fgain_5ft',['rm_ob1203_gain_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__gain__t',1,'']]], - ['rm_5fob1203_5fgainset',['RM_OB1203_GainSet',['../group___r_m___o_b1203.html#ga554b7652ea5ee0de096b21e6580f164f',1,'rm_ob1203.c']]], - ['rm_5fob1203_5finit_5fprocess_5fparams_5ft',['rm_ob1203_init_process_params_t',['../group___r_m___o_b1203.html#structrm__ob1203__init__process__params__t',1,'']]], - ['rm_5fob1203_5finstance_5fctrl_5ft',['rm_ob1203_instance_ctrl_t',['../group___r_m___o_b1203.html#structrm__ob1203__instance__ctrl__t',1,'']]], - ['rm_5fob1203_5finstance_5ft',['rm_ob1203_instance_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__instance__t',1,'']]], - ['rm_5fob1203_5fled_5fcurrent_5ft',['rm_ob1203_led_current_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__led__current__t',1,'']]], - ['rm_5fob1203_5fled_5fir_5ffirst_5fred_5fsecond',['RM_OB1203_LED_IR_FIRST_RED_SECOND',['../group___r_m___o_b1203___a_p_i.html#ggab0d74efedf983faf97798d0136376219a8317b7075ea1bdad158c89cdc45fb734',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fled_5forder_5ft',['rm_ob1203_led_order_t',['../group___r_m___o_b1203___a_p_i.html#gab0d74efedf983faf97798d0136376219',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fled_5fred_5ffirst_5fir_5fsecond',['RM_OB1203_LED_RED_FIRST_IR_SECOND',['../group___r_m___o_b1203___a_p_i.html#ggab0d74efedf983faf97798d0136376219aca0f3a2d81d8872da228cffe49b0298c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fledcurrentset',['RM_OB1203_LedCurrentSet',['../group___r_m___o_b1203.html#ga5666b0538afdae80059de7271667694c',1,'rm_ob1203.c']]], - ['rm_5fob1203_5flight_5fdata_5ft',['rm_ob1203_light_data_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__light__data__t',1,'']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5fall',['RM_OB1203_LIGHT_DATA_TYPE_ALL',['../group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337aea40c00eb88fbcade796b8bbdc7276db',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5fblue',['RM_OB1203_LIGHT_DATA_TYPE_BLUE',['../group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337a4bc0b692b6ccf21d3063c0b49f49f26b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5fclear',['RM_OB1203_LIGHT_DATA_TYPE_CLEAR',['../group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337af8b045c45eaa68438347223926bdb6ab',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5fcomp',['RM_OB1203_LIGHT_DATA_TYPE_COMP',['../group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337a9f0e97293c93ac039f14b52d12c5048b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5fgreen',['RM_OB1203_LIGHT_DATA_TYPE_GREEN',['../group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337ae914fde809d1209287046352826f65d5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5fred',['RM_OB1203_LIGHT_DATA_TYPE_RED',['../group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337a59270ba96c793b7dd2c76e740e3feb29',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5ft',['rm_ob1203_light_data_type_t',['../group___r_m___o_b1203___a_p_i.html#ga0c0d347b4e6af84c4f4148ea68280337',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fgain_5f1',['RM_OB1203_LIGHT_GAIN_1',['../group___r_m___o_b1203___a_p_i.html#ggaa246c1288f2d4941973249afa6acb4d4ae9174a008bd9ea518eae214629f0a814',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fgain_5f3',['RM_OB1203_LIGHT_GAIN_3',['../group___r_m___o_b1203___a_p_i.html#ggaa246c1288f2d4941973249afa6acb4d4a273cd76b959704750d9c97124d25c176',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fgain_5f6',['RM_OB1203_LIGHT_GAIN_6',['../group___r_m___o_b1203___a_p_i.html#ggaa246c1288f2d4941973249afa6acb4d4a992719f4c8e225f3a66e49139973ee7e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fgain_5ft',['rm_ob1203_light_gain_t',['../group___r_m___o_b1203___a_p_i.html#gaa246c1288f2d4941973249afa6acb4d4',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5fsource_5fblue_5fchannel',['RM_OB1203_LIGHT_INTERRUPT_SOURCE_BLUE_CHANNEL',['../group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aae7d921994b49292cf3f320e60f376cc6',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5fsource_5fclear_5fchannel',['RM_OB1203_LIGHT_INTERRUPT_SOURCE_CLEAR_CHANNEL',['../group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aa69050221f0025b3e93235e6e316b6dac',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5fsource_5fgreen_5fchannel',['RM_OB1203_LIGHT_INTERRUPT_SOURCE_GREEN_CHANNEL',['../group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aacc3d165eaaefc115adc56edc587ff98e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5fsource_5fred_5fchannel',['RM_OB1203_LIGHT_INTERRUPT_SOURCE_RED_CHANNEL',['../group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aab636540a1252aacc110fce0ee12335ed',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5fsource_5ft',['rm_ob1203_light_interrupt_source_t',['../group___r_m___o_b1203___a_p_i.html#gad65df49755c15c3a73ea8eb8ca2a9e3a',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5ftype_5ft',['rm_ob1203_light_interrupt_type_t',['../group___r_m___o_b1203___a_p_i.html#ga4569d4be03632003ce030d966d4e02c5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5ftype_5fthreshold',['RM_OB1203_LIGHT_INTERRUPT_TYPE_THRESHOLD',['../group___r_m___o_b1203___a_p_i.html#gga4569d4be03632003ce030d966d4e02c5a44bb84ec3d4ec69d6e51912dc260b5b0',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5ftype_5fvariation',['RM_OB1203_LIGHT_INTERRUPT_TYPE_VARIATION',['../group___r_m___o_b1203___a_p_i.html#gga4569d4be03632003ce030d966d4e02c5a94909f671cbef1a6b4fc76b6a9a1598d',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f1000ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_1000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a389a930d35eca8c775436eb3dfad1a7a',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f100ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ab73f57786abac264e13cbe66909a7069',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f2000ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_2000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8afb5da77ac9f5be32835578094b09033b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f200ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a3349948bf41a923ecebd7a8534a0a701',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f25ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_25MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a270de4113bcb56fa2d2cd33123c9300a',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f500ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_500MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a6b10517164efcb08e7b9710c005b045b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f50ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_50MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a4d38fd50dc593444db3f70eefdf6b84c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f1000ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_1000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8adc60ff2b74a6afbf149ae67b3cadc009',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f100ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a7d83d62a70213a3b0404370f69ac413f',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f2000ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_2000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a5e3736a8758ebd60d10fc97bc29f8b2c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f200ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ae00706e94ce2c350f033bb7a392adf1c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f25ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_25MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ad861783af9f2199aad76b67400421157',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f500ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_500MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a40e14ae9c5672a5b0b6f55f9049c80f9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f50ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_50MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a07b2a0293d949115e99655755e001a55',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f17bit_5fperiod_5f1000ms',['RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_1000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a852688e58f305b400ecec5c8b1b589e2',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f17bit_5fperiod_5f100ms',['RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8aa1355f1bdffe1e10329ae5d0c9c4cad1',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f17bit_5fperiod_5f2000ms',['RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_2000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a1e675d09585221bee21bb6dfc2796e23',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f17bit_5fperiod_5f200ms',['RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ac93631988e2c51f9118424bdcef20324',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f17bit_5fperiod_5f500ms',['RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_500MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a8bd726328882e0eef7f54db95c0ff492',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f17bit_5fperiod_5f50ms',['RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_50MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a0ba6189051af14d24d01dec04819bc7c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f18bit_5fperiod_5f1000ms',['RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_1000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a34c30ba32f9828c2381147e0fc1e695d',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f18bit_5fperiod_5f100ms',['RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a3d39da018f5b030535f8a2dd2b7a0677',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f18bit_5fperiod_5f2000ms',['RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_2000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ac287c0f09270b5e70996b9f9d1abdf5c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f18bit_5fperiod_5f200ms',['RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ac0e9b11ddac87432c2a0aabcee37bb3a',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f18bit_5fperiod_5f500ms',['RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_500MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ad7fee4ee27a9193608d6ed31d37e35f4',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f19bit_5fperiod_5f1000ms',['RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_1000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8adbb61242372029ffbb7718acb2420e6c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f19bit_5fperiod_5f2000ms',['RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_2000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a5cba3d5f2a792dcc31393207c035db7c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f19bit_5fperiod_5f200ms',['RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8abee592cc7872bb6d1c1b446ee30615cb',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f19bit_5fperiod_5f500ms',['RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_500MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a7018c6b3526b0c4ed0e53355ad1e9015',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f20bit_5fperiod_5f1000ms',['RM_OB1203_LIGHT_RESOLUTION_20BIT_PERIOD_1000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a3be781c8dc11d301cdca9a4f99028488',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f20bit_5fperiod_5f2000ms',['RM_OB1203_LIGHT_RESOLUTION_20BIT_PERIOD_2000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a96948352456100c3be91fc1936c9a024',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f20bit_5fperiod_5f500ms',['RM_OB1203_LIGHT_RESOLUTION_20BIT_PERIOD_500MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a09ba08ba7407e574104472a1f885b72e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5fmeas_5fperiod_5ft',['rm_ob1203_light_resolution_meas_period_t',['../group___r_m___o_b1203___a_p_i.html#gab55b5fd0ddd115230c80a2ef140cfdc8',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fsensor_5fmode_5fcs',['RM_OB1203_LIGHT_SENSOR_MODE_CS',['../group___r_m___o_b1203___a_p_i.html#gga35f1462a48dabaf6cf97ece29efe6271a13e03529af4c330ca76c006610e52c77',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fsensor_5fmode_5fls',['RM_OB1203_LIGHT_SENSOR_MODE_LS',['../group___r_m___o_b1203___a_p_i.html#gga35f1462a48dabaf6cf97ece29efe6271afd6cb7d5faabb578298d1b16364250ab',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fsensor_5fmode_5ft',['rm_ob1203_light_sensor_mode_t',['../group___r_m___o_b1203___a_p_i.html#ga35f1462a48dabaf6cf97ece29efe6271',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flightdatacalculate',['RM_OB1203_LightDataCalculate',['../group___r_m___o_b1203.html#ga56f8661c39d7b7b41e0799d528f08c92',1,'rm_ob1203.c']]], - ['rm_5fob1203_5flightread',['RM_OB1203_LightRead',['../group___r_m___o_b1203.html#gad3e86f2d3ee11e505e5df6fc8e1b5c1f',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fmeasurementstart',['RM_OB1203_MeasurementStart',['../group___r_m___o_b1203.html#gaabca4420cac85f4ea23be2454863d443',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fmeasurementstop',['RM_OB1203_MeasurementStop',['../group___r_m___o_b1203.html#gab851b2d1c598510756bea3608f3261a3',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fmode_5fextended_5fcfg_5ft',['rm_ob1203_mode_extended_cfg_t',['../group___r_m___o_b1203.html#structrm__ob1203__mode__extended__cfg__t',1,'']]], - ['rm_5fob1203_5fmoving_5faverage_5fdisable',['RM_OB1203_MOVING_AVERAGE_DISABLE',['../group___r_m___o_b1203___a_p_i.html#gga110a5efe8990e8dd03692e565f452910a95d8846c0785f83c63ab55edbfb06517',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fmoving_5faverage_5fenable',['RM_OB1203_MOVING_AVERAGE_ENABLE',['../group___r_m___o_b1203___a_p_i.html#gga110a5efe8990e8dd03692e565f452910a2fd48413cb54c599b6b162424e4536e1',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fmoving_5faverage_5ft',['rm_ob1203_moving_average_t',['../group___r_m___o_b1203___a_p_i.html#ga110a5efe8990e8dd03692e565f452910',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5faveraged_5fsamples_5f1',['RM_OB1203_NUM_AVERAGED_SAMPLES_1',['../group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5dae6cb3e25b7ddbdfe77af7449242e3a6b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5faveraged_5fsamples_5f16',['RM_OB1203_NUM_AVERAGED_SAMPLES_16',['../group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5daad4fcc097b074719edd601b0cd5eb5b4',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5faveraged_5fsamples_5f2',['RM_OB1203_NUM_AVERAGED_SAMPLES_2',['../group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5daf57cb92268f8a235f67068e0da7e7273',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5faveraged_5fsamples_5f32',['RM_OB1203_NUM_AVERAGED_SAMPLES_32',['../group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5da645e8b5b2e29f09e8e6cc83f94749e72',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5faveraged_5fsamples_5f4',['RM_OB1203_NUM_AVERAGED_SAMPLES_4',['../group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5da99ae90da914f6505845157ad0ac157c9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5faveraged_5fsamples_5f8',['RM_OB1203_NUM_AVERAGED_SAMPLES_8',['../group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5da99456feeb64e8edd8ca52377dcea9577',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5fled_5fpulses_5f1',['RM_OB1203_NUM_LED_PULSES_1',['../group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6aadeb97a8a692a60657fc1300364ef070',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5fled_5fpulses_5f16',['RM_OB1203_NUM_LED_PULSES_16',['../group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6a25b3df5b9008788cb20c5933c676c3e5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5fled_5fpulses_5f2',['RM_OB1203_NUM_LED_PULSES_2',['../group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6aad0e1e2f9b9af4113e192d88f78080e5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5fled_5fpulses_5f32',['RM_OB1203_NUM_LED_PULSES_32',['../group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6a24b5ddd343521d9b69e828ce0ba80d07',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5fled_5fpulses_5f4',['RM_OB1203_NUM_LED_PULSES_4',['../group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6a1435e83d507b41bd110a0240bc3950cd',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5fled_5fpulses_5f8',['RM_OB1203_NUM_LED_PULSES_8',['../group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6adf25dc114d5f5db0eea0e300df89d746',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnumber_5faveraged_5fsamples_5ft',['rm_ob1203_number_averaged_samples_t',['../group___r_m___o_b1203___a_p_i.html#ga7dc5ec94376eb3c1fa0a16b549c56f5d',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnumber_5fled_5fpulses_5ft',['rm_ob1203_number_led_pulses_t',['../group___r_m___o_b1203___a_p_i.html#gaf6e99ef0d49ecff17a9ffd16f0b096e6',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fopen',['RM_OB1203_Open',['../group___r_m___o_b1203.html#ga34d3b67d431ab9cdb45fa561196d8e85',1,'rm_ob1203.c']]], - ['rm_5fob1203_5foperation_5fmode_5flight',['RM_OB1203_OPERATION_MODE_LIGHT',['../group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847a3cc0b2281221c3d2485687d2a2b21ab7',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5foperation_5fmode_5fppg',['RM_OB1203_OPERATION_MODE_PPG',['../group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847ab4a3955dbe4126e7e2499886e90142f5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5foperation_5fmode_5fproximity',['RM_OB1203_OPERATION_MODE_PROXIMITY',['../group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847adef6dd35d4907586d53e93c43afa5dba',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5foperation_5fmode_5fstandby',['RM_OB1203_OPERATION_MODE_STANDBY',['../group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847a9416c58f6cd1559af0cc289ab9d55de9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5foperation_5fmode_5ft',['rm_ob1203_operation_mode_t',['../group___r_m___o_b1203___a_p_i.html#ga6c3b7fc2670bb119c9eb07acecf69847',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fpower_5fsave_5fmode_5fdisable',['RM_OB1203_POWER_SAVE_MODE_DISABLE',['../group___r_m___o_b1203___a_p_i.html#gga904954d6bf969490d7fc31d1589fba5ca370e4afaa8a380268c6a143fc0b58bf4',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fpower_5fsave_5fmode_5fenable',['RM_OB1203_POWER_SAVE_MODE_ENABLE',['../group___r_m___o_b1203___a_p_i.html#gga904954d6bf969490d7fc31d1589fba5ca426b1b1d7b3540f1537d7cf1b0cc81b0',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fpower_5fsave_5fmode_5ft',['rm_ob1203_power_save_mode_t',['../group___r_m___o_b1203___a_p_i.html#ga904954d6bf969490d7fc31d1589fba5c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fdata_5ft',['rm_ob1203_ppg_data_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__ppg__data__t',1,'']]], - ['rm_5fob1203_5fppg_5finterrupt_5ftype_5fdata',['RM_OB1203_PPG_INTERRUPT_TYPE_DATA',['../group___r_m___o_b1203___a_p_i.html#gga8ee7cd0bc32e3c09662791b7e86ffe83a45cc5bde2c5eb934a0b8236782159316',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5finterrupt_5ftype_5ffifo_5fafull',['RM_OB1203_PPG_INTERRUPT_TYPE_FIFO_AFULL',['../group___r_m___o_b1203___a_p_i.html#gga8ee7cd0bc32e3c09662791b7e86ffe83a1c7832e2114aa92813f87393cbcaecb9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5finterrupt_5ftype_5ft',['rm_ob1203_ppg_interrupt_type_t',['../group___r_m___o_b1203___a_p_i.html#ga8ee7cd0bc32e3c09662791b7e86ffe83',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fprox_5fgain_5f1',['RM_OB1203_PPG_PROX_GAIN_1',['../group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa1358cf29768b43f045fdef6e4ceb6ba9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fprox_5fgain_5f1p5',['RM_OB1203_PPG_PROX_GAIN_1P5',['../group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa802f734955e3c3bd8e129cdda3ec7cf5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fprox_5fgain_5f2',['RM_OB1203_PPG_PROX_GAIN_2',['../group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa37b9289fd92d4c206f21a06ea2a99ca5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fprox_5fgain_5f4',['RM_OB1203_PPG_PROX_GAIN_4',['../group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa9a996f750da299f4113478e15feb8ffa',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fprox_5fgain_5ft',['rm_ob1203_ppg_prox_gain_t',['../group___r_m___o_b1203___a_p_i.html#ga02afdc6d89538793ab3f1ebd2a84ff6f',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fpulse_5fwidth_5fmeas_5fperiod_5ft',['rm_ob1203_ppg_pulse_width_meas_period_t',['../group___r_m___o_b1203___a_p_i.html#ga5bb022affce59b47909e01ae68d01f5c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fsensor_5fmode_5fppg1',['RM_OB1203_PPG_SENSOR_MODE_PPG1',['../group___r_m___o_b1203___a_p_i.html#gga073572d75f036110608bf2a723c62fc8aff55255344406d1efbf027168091d6ad',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fsensor_5fmode_5fppg2',['RM_OB1203_PPG_SENSOR_MODE_PPG2',['../group___r_m___o_b1203___a_p_i.html#gga073572d75f036110608bf2a723c62fc8a31d155e569e27e89cb1fda28b9c873c2',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fsensor_5fmode_5ft',['rm_ob1203_ppg_sensor_mode_t',['../group___r_m___o_b1203___a_p_i.html#ga073572d75f036110608bf2a723c62fc8',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f0p3125ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_0P3125MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca68d8096f51f9e4445e056d251c9a88c5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f0p625ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_0P625MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caf6a2a946c6f32d87022c3ed12999923a',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f10ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_10MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca0946b20f3b3e2e60fe86686a44aa9b5e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f1ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_1MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caaab0ee2f34699c866e356cb92136a6f2',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f1p25ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_1P25MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca3887f415348499b2e9097bed0be1757e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f20ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_20MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca6d4aa062b55a71221c98969a3edacf98',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f2p5ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_2P5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca666997496dd31d5f539b709174542cf0',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f5ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca5b17dd61b00150dd65ee8755d832789c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f0p625ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_0P625MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca70c80a609dd57d364fbfbb9700571eb1',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f10ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_10MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cac99e47f5096ebabcfc6ecbbff2026ebc',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f1ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_1MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca36092df99bf6676f48f583acef13a6c9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f1p25ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_1P25MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cad7defeef4b79039ed7dd5cc5ca252cd0',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f20ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_20MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca6d207ac139414c5f54308f2d10682f54',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f2p5ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_2P5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cacf8b5fec64b36730138fbfb48d3aee83',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f5ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca3a797e28dd9b3a348ed631c88998f13e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f481us_5fperiod_5f10ms',['RM_OB1203_PPG_WIDTH_481US_PERIOD_10MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cab8f1d289625f598c8d1362ed8af6db89',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f481us_5fperiod_5f1ms',['RM_OB1203_PPG_WIDTH_481US_PERIOD_1MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cad14cde0ffc1055d92cb98f7a4b555b85',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f481us_5fperiod_5f1p25ms',['RM_OB1203_PPG_WIDTH_481US_PERIOD_1P25MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca2990f7a26248010de840856c3b147bd1',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f481us_5fperiod_5f20ms',['RM_OB1203_PPG_WIDTH_481US_PERIOD_20MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caaa5604553dc6456ec530a89d90224852',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f481us_5fperiod_5f2p5ms',['RM_OB1203_PPG_WIDTH_481US_PERIOD_2P5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cae69ecb057dda8bc16d7b3b130a04204e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f481us_5fperiod_5f5ms',['RM_OB1203_PPG_WIDTH_481US_PERIOD_5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca4f219d1661167b8f8609cd3334e24a16',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f949us_5fperiod_5f10ms',['RM_OB1203_PPG_WIDTH_949US_PERIOD_10MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caed7eef69ad7396ef62719d6592e9cb14',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f949us_5fperiod_5f20ms',['RM_OB1203_PPG_WIDTH_949US_PERIOD_20MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca64de6859dd6deb781311243f8b2390cc',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f949us_5fperiod_5f2p5ms',['RM_OB1203_PPG_WIDTH_949US_PERIOD_2P5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca7c2a342c7238d24959d5cf4367c42724',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f949us_5fperiod_5f5ms',['RM_OB1203_PPG_WIDTH_949US_PERIOD_5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca6a8367a0e9841b97a9ad7a875b2bfe63',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppgdatacalculate',['RM_OB1203_PpgDataCalculate',['../group___r_m___o_b1203.html#gaffe63df6ba35eb27989b694af004a87b',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fppgread',['RM_OB1203_PpgRead',['../group___r_m___o_b1203.html#ga306ea4427230d2c7c2e2c0ae53346a0b',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fprox_5fdata_5ft',['rm_ob1203_prox_data_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__prox__data__t',1,'']]], - ['rm_5fob1203_5fprox_5finterrupt_5ftype_5flogic',['RM_OB1203_PROX_INTERRUPT_TYPE_LOGIC',['../group___r_m___o_b1203___a_p_i.html#ggaac3af213866be23053d28609f06bf748ad3fdbc2dbf5eb8cc81809fb331ebab22',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5finterrupt_5ftype_5fnormal',['RM_OB1203_PROX_INTERRUPT_TYPE_NORMAL',['../group___r_m___o_b1203___a_p_i.html#ggaac3af213866be23053d28609f06bf748a6975eb682b450d57085774e5caa4e0a0',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5finterrupt_5ftype_5ft',['rm_ob1203_prox_interrupt_type_t',['../group___r_m___o_b1203___a_p_i.html#gaac3af213866be23053d28609f06bf748',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fpulse_5fwidth_5fmeas_5fperiod_5ft',['rm_ob1203_prox_pulse_width_meas_period_t',['../group___r_m___o_b1203___a_p_i.html#ga463e63a319a589ebdcf29b0b482b2f00',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f100ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a8bd871ff7eeb47240c756ff6abf77e7f',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f12p5ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_12P5MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a27d90b64352a53d0700ba95b3145258e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f200ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ac869d4e42f75cdbdd19a3d4cb21be2bd',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f25ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_25MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a57210f78a3b7ed1c3dd1ed2f99b226ad',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f3p125ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_3P125MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a314ab60d336fc12e5dfc2ae041443742',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f400ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_400MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ad620deac939b9257fe7b42a362498d08',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f50ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_50MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a467ccc7a5975e9b7c91887e843bb9d55',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f6p25ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_6P25MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a5df8af19ddf7e0e5b29382ca3a862548',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f100ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a13648173ac9d85546b5b8fb1b3c70f0b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f12p5ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_12P5MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ab983d1fc86076b118648a7e61d843471',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f200ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a6ace2781bd3f2b78dc2f1b8f51dbf245',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f25ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_25MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00af7dad8b9ae1d51a750327d06cadc78fc',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f3p125ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_3P125MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ab0c9375ebb576c01ebcbb79ba741ef17',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f400ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_400MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ae18888686afe4ccbea3605302bb00a56',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f50ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_50MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a25feb157e54b23c386c4c0e397bea4a5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f6p25ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_6P25MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00acf3e6a52d26718a151e3721641e2f4cd',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f100ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a174595a8a0904152de8b1b8e4f588b8b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f12p5ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_12P5MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00abb586783c011c8903ce5cae04074b9b7',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f200ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a2bdfe1777f9dbc98e07788109ec41d53',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f25ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_25MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a94505e88a6eec7889fe4bb9f53cc4884',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f3p125ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_3P125MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a0591b79b06cb0090a0f18f1690bf4ed1',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f400ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_400MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a6e4f60ef6f8a4af28ec19a6bc9f17012',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f50ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_50MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a22e8a697d05a88e2a1d3c9224bf927c8',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f6p25ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_6P25MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00aa164c28eae63fc9296c0430360ff2a8f',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fproxdatacalculate',['RM_OB1203_ProxDataCalculate',['../group___r_m___o_b1203.html#ga5888f249d9e67a2af39ce7977065d359',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fproxread',['RM_OB1203_ProxRead',['../group___r_m___o_b1203.html#ga1de710492d4da21656a5cbd62eb2b721',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fraw_5fdata_5ft',['rm_ob1203_raw_data_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__raw__data__t',1,'']]], - ['rm_5fob1203_5fsleep_5fafter_5finterrupt_5fdisable',['RM_OB1203_SLEEP_AFTER_INTERRUPT_DISABLE',['../group___r_m___o_b1203___a_p_i.html#gga3de882d54ed2555e788d24da2059217dac0f8b2f67cbdedb8ebaec4564742ab0b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fsleep_5fafter_5finterrupt_5fenable',['RM_OB1203_SLEEP_AFTER_INTERRUPT_ENABLE',['../group___r_m___o_b1203___a_p_i.html#gga3de882d54ed2555e788d24da2059217daf2c7dbd03421e0cecfcdadac5fdde530',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fsleep_5fafter_5finterrupt_5ft',['rm_ob1203_sleep_after_interrupt_t',['../group___r_m___o_b1203___a_p_i.html#ga3de882d54ed2555e788d24da2059217d',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f1024_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_1024_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaad8823af1f00716064d826b5117e90460',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f128_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_128_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaac750fdae8ec2c9149383a0c2bead3be9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f16_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_16_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa6eb8c5d746b48042d340aaccdbc771ac',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f256_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_256_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa01fe6dda3e7b16e13320cdccf3bd57c9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f32_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_32_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa4df81429a3b09e42a5c447880c69603a',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f512_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_512_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa88eda7368cb0d6f1d3d84628bee163f6',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f64_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_64_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa08857b0d4fa967c07482a838a0112f81',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f8_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_8_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaae5c20999c11a608e9118a20e28a4bca4',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5ft',['rm_ob1203_variance_threshold_t',['../group___r_m___o_b1203___a_p_i.html#gaeae8a766bbc25cd6e1097c44f03c8dea',1,'rm_ob1203_api.h']]], ['rm_5fzmod4xxx_5fapi_5ft',['rm_zmod4xxx_api_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__api__t',1,'']]], ['rm_5fzmod4xxx_5fcallback_5fargs_5ft',['rm_zmod4xxx_callback_args_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__callback__args__t',1,'']]], ['rm_5fzmod4xxx_5fcfg_5ft',['rm_zmod4xxx_cfg_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__cfg__t',1,'']]], @@ -433,6 +493,9 @@ var searchData= ['rm_5fzmod4xxx_5fsulfurodordatacalculate',['RM_ZMOD4XXX_SulfurOdorDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#gaf200a9dc7ca8bf0601c2a2b96c341ecf',1,'rm_zmod4xxx.c']]], ['rm_5fzmod4xxx_5ftemperatureandhumidityset',['RM_ZMOD4XXX_TemperatureAndHumiditySet',['../group___r_m___z_m_o_d4_x_x_x.html#ga5a6c9c9dcb25bc3964b07ed7fe002477',1,'rm_zmod4xxx.c']]], ['rmox',['rmox',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8d8907540984f151e5d47932c1db9b18',1,'rm_zmod4xxx_iaq_1st_data_t::rmox()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6486c18c874aacc219e4015104c62431',1,'rm_zmod4xxx_iaq_2nd_data_t::rmox()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a7b78eb5d21388e5e0c8cd7f0f72b39a9',1,'rm_zmod4xxx_sulfur_odor_data_t::rmox()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a322cc10b5fcff9b42f07c575c48da56f',1,'rm_zmod4xxx_oaq_1st_data_t::rmox()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a32901d3e447bf2fc0642b3c54be98d9a',1,'rm_zmod4xxx_oaq_2nd_data_t::rmox()']]], + ['rnw',['rnw',['../group___i3_c___a_p_i.html#ae4936b8865757d9656167fac18db6e1e',1,'i3c_command_descriptor_t']]], + ['rs485_5fsetting',['rs485_setting',['../group___s_c_i___b___u_a_r_t.html#a04aa2b43cd4a2879826033bc80c06bff',1,'sci_b_uart_extended_cfg_t::rs485_setting()'],['../group___s_c_i_f___u_a_r_t.html#a17bbc99632889e12269013e35f1dcfba',1,'scif_uart_extended_cfg_t::rs485_setting()']]], + ['rspck_5fdiv_5fsetting_5ft',['rspck_div_setting_t',['../group___s_p_i___b.html#structrspck__div__setting__t',1,'']]], ['renesas_20serial_20peripheral_20interface_20_28r_5frspi_29',['Renesas Serial Peripheral Interface (r_rspi)',['../group___r_s_p_i.html',1,'']]], ['rspi_5fdelay_5fcount_5f1',['RSPI_DELAY_COUNT_1',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775acf6c2af3c3fd7da891cd64c6ac082ed7',1,'r_rspi.h']]], ['rspi_5fdelay_5fcount_5f2',['RSPI_DELAY_COUNT_2',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a113a034f110841c3f8fb0c726238c7ea',1,'r_rspi.h']]], @@ -459,6 +522,9 @@ var searchData= ['rspi_5frx_5ftrigger_5f5',['RSPI_RX_TRIGGER_5',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caaf0c6136c76672af71b2a3a586013f395',1,'r_rspi.h']]], ['rspi_5frx_5ftrigger_5f8',['RSPI_RX_TRIGGER_8',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa036ea6f9fcfa956509de0e99167c61e7',1,'r_rspi.h']]], ['rspi_5frx_5ftrigger_5flevel_5ft',['rspi_rx_trigger_level_t',['../group___r_s_p_i.html#ga431fc619396f9d5cf2f1c495c2ed59ca',1,'r_rspi.h']]], + ['rspi_5fssl_5flevel_5fkeep_5fdisable',['RSPI_SSL_LEVEL_KEEP_DISABLE',['../group___r_s_p_i.html#ggaae19ba80f9290f4ad12e794cf1bac9f2ab841c4b6e56bf3a45f323d77f93b2d03',1,'r_rspi.h']]], + ['rspi_5fssl_5flevel_5fkeep_5fenable',['RSPI_SSL_LEVEL_KEEP_ENABLE',['../group___r_s_p_i.html#ggaae19ba80f9290f4ad12e794cf1bac9f2aabdf42d404217b46fab49e661dc6f128',1,'r_rspi.h']]], + ['rspi_5fssl_5flevel_5fkeep_5ft',['rspi_ssl_level_keep_t',['../group___r_s_p_i.html#gaae19ba80f9290f4ad12e794cf1bac9f2',1,'r_rspi.h']]], ['rspi_5fssl_5fpolarity_5ft',['rspi_ssl_polarity_t',['../group___r_s_p_i.html#ga2342f44b16c4072b5e9302c4f05b4f94',1,'r_rspi.h']]], ['rspi_5fsslp_5fhigh',['RSPI_SSLP_HIGH',['../group___r_s_p_i.html#gga2342f44b16c4072b5e9302c4f05b4f94af642f0a0ebd5e10f1e0f749f2a7b6861',1,'r_rspi.h']]], ['rspi_5fsslp_5flow',['RSPI_SSLP_LOW',['../group___r_s_p_i.html#gga2342f44b16c4072b5e9302c4f05b4f94a33e3a44f24010fc5a3f737b1fc451ed7',1,'r_rspi.h']]], @@ -467,16 +533,66 @@ var searchData= ['rspi_5ftx_5ftrigger_5f6',['RSPI_TX_TRIGGER_6',['../group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba39b767be6e7e52887162d6a45ef4ec1c',1,'r_rspi.h']]], ['rspi_5ftx_5ftrigger_5f7',['RSPI_TX_TRIGGER_7',['../group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba922c57b7e36774c42a3eb3efc1e91f75',1,'r_rspi.h']]], ['rspi_5ftx_5ftrigger_5flevel_5ft',['rspi_tx_trigger_level_t',['../group___r_s_p_i.html#ga8e48fdc14874a5cba28661ae549203ab',1,'r_rspi.h']]], + ['realtime_20clock_20_28r_5frtc_29',['Realtime Clock (r_rtc)',['../group___r_t_c.html',1,'']]], + ['rtc_5falarm_5fchannel_5ft',['rtc_alarm_channel_t',['../group___r_t_c___a_p_i.html#ga023e9e2043784cf17e3d3bf056ce14f1',1,'r_rtc_api.h']]], + ['rtc_5falarm_5ftime_5ft',['rtc_alarm_time_t',['../group___r_t_c___a_p_i.html#structrtc__alarm__time__t',1,'']]], + ['rtc_20interface',['RTC Interface',['../group___r_t_c___a_p_i.html',1,'']]], + ['rtc_5fapi_5ft',['rtc_api_t',['../group___r_t_c___a_p_i.html#structrtc__api__t',1,'']]], + ['rtc_5fcallback_5fargs_5ft',['rtc_callback_args_t',['../group___r_t_c___a_p_i.html#structrtc__callback__args__t',1,'']]], + ['rtc_5fcfg_5ft',['rtc_cfg_t',['../group___r_t_c___a_p_i.html#structrtc__cfg__t',1,'']]], + ['rtc_5fclock_5fbypass_5fmode_5ft',['rtc_clock_bypass_mode_t',['../group___r_t_c.html#ga17801e1ecb103e17bf1fd092c6a48461',1,'r_rtc.h']]], + ['rtc_5fclock_5fsource_5floco',['RTC_CLOCK_SOURCE_LOCO',['../group___r_t_c___a_p_i.html#ggad8eef26a825fa4a0c5a417f8be08ccc6abd7cdef56193166a8a680504e1f3f5fa',1,'r_rtc_api.h']]], + ['rtc_5fclock_5fsource_5fsubclk',['RTC_CLOCK_SOURCE_SUBCLK',['../group___r_t_c___a_p_i.html#ggad8eef26a825fa4a0c5a417f8be08ccc6a7b64e5bbc3adc81add25128016631364',1,'r_rtc_api.h']]], + ['rtc_5fclock_5fsource_5ft',['rtc_clock_source_t',['../group___r_t_c___a_p_i.html#gad8eef26a825fa4a0c5a417f8be08ccc6',1,'r_rtc_api.h']]], + ['rtc_5fctrl_5ft',['rtc_ctrl_t',['../group___r_t_c___a_p_i.html#ga324429d0f16e2a72abae17610d776f0e',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fadd_5fprescaler',['RTC_ERROR_ADJUSTMENT_ADD_PRESCALER',['../group___r_t_c___a_p_i.html#gga704067eae956dc872d24edf9b85b397fac08633933a5c2a53ee1031ddd6247335',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fcfg_5ft',['rtc_error_adjustment_cfg_t',['../group___r_t_c___a_p_i.html#structrtc__error__adjustment__cfg__t',1,'']]], + ['rtc_5ferror_5fadjustment_5fmode_5fautomatic',['RTC_ERROR_ADJUSTMENT_MODE_AUTOMATIC',['../group___r_t_c___a_p_i.html#gga4cbfe07cf288ae153c30b4fef99163e7ae772455e50f01892e6dffabf509ae66c',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fmode_5fmanual',['RTC_ERROR_ADJUSTMENT_MODE_MANUAL',['../group___r_t_c___a_p_i.html#gga4cbfe07cf288ae153c30b4fef99163e7a7b90f3b3332c2ba8fffd0921fddf1888',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fmode_5ft',['rtc_error_adjustment_mode_t',['../group___r_t_c___a_p_i.html#ga4cbfe07cf288ae153c30b4fef99163e7',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fnone',['RTC_ERROR_ADJUSTMENT_NONE',['../group___r_t_c___a_p_i.html#gga704067eae956dc872d24edf9b85b397faf14f20829e9678dd1187c0213e474b39',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fperiod_5f10_5fsecond',['RTC_ERROR_ADJUSTMENT_PERIOD_10_SECOND',['../group___r_t_c___a_p_i.html#ggaa9758f6f29579df6e9f5c64ff486c097abb5d066f25aa8878ef57848e7a8a28aa',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fperiod_5f1_5fminute',['RTC_ERROR_ADJUSTMENT_PERIOD_1_MINUTE',['../group___r_t_c___a_p_i.html#ggaa9758f6f29579df6e9f5c64ff486c097a4c96e106ab367f0a811813e6077c3a8c',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fperiod_5fnone',['RTC_ERROR_ADJUSTMENT_PERIOD_NONE',['../group___r_t_c___a_p_i.html#ggaa9758f6f29579df6e9f5c64ff486c097afe53e47d736acd5bd710bc610d1fd8bc',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fperiod_5ft',['rtc_error_adjustment_period_t',['../group___r_t_c___a_p_i.html#gaa9758f6f29579df6e9f5c64ff486c097',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fsubtract_5fprescaler',['RTC_ERROR_ADJUSTMENT_SUBTRACT_PRESCALER',['../group___r_t_c___a_p_i.html#gga704067eae956dc872d24edf9b85b397fa29f7a1f47e70b2bfc3050aad3459b366',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5ft',['rtc_error_adjustment_t',['../group___r_t_c___a_p_i.html#ga704067eae956dc872d24edf9b85b397f',1,'r_rtc_api.h']]], + ['rtc_5fevent_5falarm1_5firq',['RTC_EVENT_ALARM1_IRQ',['../group___r_t_c___a_p_i.html#ggad2e192ed9a33b6c005c2c19ccbd6a21bad269f3ac02b4c6a8cd6b0be90b62ba30',1,'r_rtc_api.h']]], + ['rtc_5fevent_5falarm_5firq',['RTC_EVENT_ALARM_IRQ',['../group___r_t_c___a_p_i.html#ggad2e192ed9a33b6c005c2c19ccbd6a21bab2d201ffa3ef8219d41fec7009c5a3d4',1,'r_rtc_api.h']]], + ['rtc_5fevent_5fperiodic_5firq',['RTC_EVENT_PERIODIC_IRQ',['../group___r_t_c___a_p_i.html#ggad2e192ed9a33b6c005c2c19ccbd6a21ba32818d089c15c50d17a13dce861db7d8',1,'r_rtc_api.h']]], + ['rtc_5fevent_5ft',['rtc_event_t',['../group___r_t_c___a_p_i.html#gad2e192ed9a33b6c005c2c19ccbd6a21b',1,'r_rtc_api.h']]], + ['rtc_5fextended_5fcfg_5ft',['rtc_extended_cfg_t',['../group___r_t_c.html#structrtc__extended__cfg__t',1,'']]], + ['rtc_5finfo_5ft',['rtc_info_t',['../group___r_t_c___a_p_i.html#structrtc__info__t',1,'']]], + ['rtc_5finstance_5fctrl_5ft',['rtc_instance_ctrl_t',['../group___r_t_c.html#structrtc__instance__ctrl__t',1,'']]], + ['rtc_5finstance_5ft',['rtc_instance_t',['../group___r_t_c___a_p_i.html#structrtc__instance__t',1,'']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f128_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_128_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01ac5e572907bd22dee0bcc223b701be0c7',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f16_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_16_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a19822146d83f4839005318b6ab299074',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f256_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_256_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a2f22d5de616b4249e26741a2d1af200d',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f2_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_2_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a5d684a2ff7ceabe98acb755095705f4e',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f32_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_32_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a61b490784dbe69ffd6740dfd21ba318c',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f4_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_4_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a2d83137f7be0a550f9e8533090186f17',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f64_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_64_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a202eb83ad25aebbdd9c6cee8def4619b',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f8_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_8_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a7d5fa9813737ea5f426a38c26349d244',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a35f83abe856065e723ec538a5e708a6d',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f2_5fsecond',['RTC_PERIODIC_IRQ_SELECT_2_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01ac05b73777b54b84cc0ed8c6ee4013f33',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5ft',['rtc_periodic_irq_select_t',['../group___r_t_c___a_p_i.html#gacbf0a3d09430a65ca1b3179819183f01',1,'r_rtc_api.h']]], + ['rtc_5fstatus_5frunning',['RTC_STATUS_RUNNING',['../group___r_t_c___a_p_i.html#ggab1079685ed8a9d30f32062b3bfedd041a894d35c1f934f700232ecd554c95b38d',1,'r_rtc_api.h']]], + ['rtc_5fstatus_5fstopped',['RTC_STATUS_STOPPED',['../group___r_t_c___a_p_i.html#ggab1079685ed8a9d30f32062b3bfedd041a1f6935d0b857ca464bac48d0532b9b48',1,'r_rtc_api.h']]], + ['rtc_5fstatus_5ft',['rtc_status_t',['../group___r_t_c___a_p_i.html#gab1079685ed8a9d30f32062b3bfedd041',1,'r_rtc_api.h']]], + ['rtc_5ftime_5ft',['rtc_time_t',['../group___r_t_c___a_p_i.html#gaf7de6d99d4c7fd767ebeaabf873fe56d',1,'r_rtc_api.h']]], ['rts_5ffifo_5ftrigger',['rts_fifo_trigger',['../group___s_c_i_f___u_a_r_t.html#a04920b030d567052f3b4efb1f85753e9',1,'scif_uart_extended_cfg_t']]], - ['rx_5fcount',['rx_count',['../group___r_s_p_i.html#af07a6630edcb186c8ccb2b74d228f729',1,'rspi_instance_ctrl_t']]], + ['rx_5fcount',['rx_count',['../group___r_s_p_i.html#af07a6630edcb186c8ccb2b74d228f729',1,'rspi_instance_ctrl_t::rx_count()'],['../group___s_p_i___b.html#a11eb6d582a56acdabafd9c6d50ce18d6',1,'spi_b_instance_ctrl_t::rx_count()']]], + ['rx_5fedge_5fstart',['rx_edge_start',['../group___s_c_i___b___u_a_r_t.html#ae12a126a40d35e484cb1c89474494b15',1,'sci_b_uart_extended_cfg_t']]], ['rx_5ffifo_5fconfig',['rx_fifo_config',['../group___c_a_n_f_d.html#aeb6bbed0e4cb76c06a947e009894608a',1,'canfd_global_cfg_t']]], ['rx_5ffifo_5fipl',['rx_fifo_ipl',['../group___c_a_n_f_d.html#a2bb06b2a4db018ac90193053131ee648',1,'canfd_global_cfg_t']]], - ['rx_5ffifo_5ftrigger',['rx_fifo_trigger',['../group___s_c_i_f___u_a_r_t.html#a1067241f2267052cd8240d136c0cba9c',1,'scif_uart_extended_cfg_t']]], + ['rx_5ffifo_5fstatus',['rx_fifo_status',['../group___c_a_n___a_p_i.html#a7cd7ac782cdb433247cc0f28f2755f81',1,'can_info_t']]], + ['rx_5ffifo_5ftrigger',['rx_fifo_trigger',['../group___s_c_i___b___u_a_r_t.html#a989ca4836b86b478612a9c33d5aacb03',1,'sci_b_uart_extended_cfg_t::rx_fifo_trigger()'],['../group___s_c_i_f___u_a_r_t.html#a1067241f2267052cd8240d136c0cba9c',1,'scif_uart_extended_cfg_t::rx_fifo_trigger()']]], ['rx_5fipl',['rx_ipl',['../group___m_h_u___a_p_i.html#a7845968f2caba53ceb0d64761b12bc6e',1,'mhu_cfg_t::rx_ipl()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a0485d0bdeaa7786fa0a1059fa2b17172',1,'mhu_ns_swint_get_cfg_t::rx_ipl()']]], - ['rx_5firq',['rx_irq',['../group___m_h_u___a_p_i.html#af6d5343757b4e233873d1707ceac8998',1,'mhu_cfg_t::rx_irq()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a2b7fe6de692d763e2ed654f7cb34976e',1,'mhu_ns_swint_get_cfg_t::rx_irq()']]], + ['rx_5firq',['rx_irq',['../group___c_a_n___a_p_i.html#a88ba0583ec46ae65985a733c38975c38',1,'can_cfg_t::rx_irq()'],['../group___m_h_u___a_p_i.html#af6d5343757b4e233873d1707ceac8998',1,'mhu_cfg_t::rx_irq()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a2b7fe6de692d763e2ed654f7cb34976e',1,'mhu_ns_swint_get_cfg_t::rx_irq()'],['../group___i3_c___b.html#a65d040ea1c91e96fbc4486e39b51c23d',1,'i3c_b_extended_cfg_t::rx_irq()']]], ['rx_5fmb_5fconfig',['rx_mb_config',['../group___c_a_n_f_d.html#a375e575afb5d17c01809a10d32ae59a5',1,'canfd_global_cfg_t']]], + ['rx_5fmb_5fstatus',['rx_mb_status',['../group___c_a_n___a_p_i.html#ade07c155f14547df76ac44249e0d0feb',1,'can_info_t']]], ['rx_5ftrigger_5flevel',['rx_trigger_level',['../group___r_s_p_i.html#a4d6543f22a352c931855cd85e19cfe45',1,'rspi_extended_cfg_t']]], ['rxfifo_5ftrigger_5fbytes',['rxfifo_trigger_bytes',['../group___r_s_p_i.html#aca5de5e6709e812f9f9f528a42f97e15',1,'rspi_instance_ctrl_t']]], ['rxi_5fipl',['rxi_ipl',['../group___s_p_i___a_p_i.html#a158d5d33a79faa329d9c6d0d02d9bd86',1,'spi_cfg_t::rxi_ipl()'],['../group___u_a_r_t___a_p_i.html#a37d3e833ad3e9a21467936db2a22e27d',1,'uart_cfg_t::rxi_ipl()']]], - ['rxi_5firq',['rxi_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#abd8565fa7ddc83acb87329275bb56b48',1,'i2c_master_cfg_t::rxi_irq()'],['../group___s_p_i___a_p_i.html#acd490330020cce12382d6ba1b1ad8bbe',1,'spi_cfg_t::rxi_irq()'],['../group___u_a_r_t___a_p_i.html#a14a3cdcd373af5dfc69a30206276a44f',1,'uart_cfg_t::rxi_irq()']]] + ['rxi_5firq',['rxi_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#abd8565fa7ddc83acb87329275bb56b48',1,'i2c_master_cfg_t::rxi_irq()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ad497920d5c927eff7d183500d8c21dd9',1,'i2c_slave_cfg_t::rxi_irq()'],['../group___s_p_i___a_p_i.html#acd490330020cce12382d6ba1b1ad8bbe',1,'spi_cfg_t::rxi_irq()'],['../group___u_a_r_t___a_p_i.html#a14a3cdcd373af5dfc69a30206276a44f',1,'uart_cfg_t::rxi_irq()']]] ]; diff --git a/search/classes_0.js b/search/classes_0.js index 6d8fcc1..70f5093 100644 --- a/search/classes_0.js +++ b/search/classes_0.js @@ -1,4 +1,17 @@ var searchData= [ + ['adc_5fapi_5ft',['adc_api_t',['../group___a_d_c___a_p_i.html#structadc__api__t',1,'']]], + ['adc_5fc_5fchannel_5fcfg_5ft',['adc_c_channel_cfg_t',['../group___a_d_c___c.html#structadc__c__channel__cfg__t',1,'']]], + ['adc_5fc_5fextended_5fcfg_5ft',['adc_c_extended_cfg_t',['../group___a_d_c___c.html#structadc__c__extended__cfg__t',1,'']]], + ['adc_5fc_5finstance_5fctrl_5ft',['adc_c_instance_ctrl_t',['../group___a_d_c___c.html#structadc__c__instance__ctrl__t',1,'']]], + ['adc_5fcallback_5fargs_5ft',['adc_callback_args_t',['../group___a_d_c___a_p_i.html#structadc__callback__args__t',1,'']]], + ['adc_5fcfg_5ft',['adc_cfg_t',['../group___a_d_c___a_p_i.html#structadc__cfg__t',1,'']]], + ['adc_5fe_5fchannel_5fcfg_5ft',['adc_e_channel_cfg_t',['../group___a_d_c___e.html#structadc__e__channel__cfg__t',1,'']]], + ['adc_5fe_5fextended_5fcfg_5ft',['adc_e_extended_cfg_t',['../group___a_d_c___e.html#structadc__e__extended__cfg__t',1,'']]], + ['adc_5fe_5finstance_5fctrl_5ft',['adc_e_instance_ctrl_t',['../group___a_d_c___e.html#structadc__e__instance__ctrl__t',1,'']]], + ['adc_5fe_5fwindow_5fcfg_5ft',['adc_e_window_cfg_t',['../group___a_d_c___e.html#structadc__e__window__cfg__t',1,'']]], + ['adc_5finfo_5ft',['adc_info_t',['../group___a_d_c___a_p_i.html#structadc__info__t',1,'']]], + ['adc_5finstance_5ft',['adc_instance_t',['../group___a_d_c___a_p_i.html#structadc__instance__t',1,'']]], + ['adc_5fstatus_5ft',['adc_status_t',['../group___a_d_c___a_p_i.html#structadc__status__t',1,'']]], ['algorithm_5fversion',['algorithm_version',['../structalgorithm__version.html',1,'']]] ]; diff --git a/search/classes_1.js b/search/classes_1.js index 3f6ef28..9725cbe 100644 --- a/search/classes_1.js +++ b/search/classes_1.js @@ -5,9 +5,17 @@ var searchData= ['can_5fcallback_5fargs_5ft',['can_callback_args_t',['../group___c_a_n___a_p_i.html#structcan__callback__args__t',1,'']]], ['can_5fcfg_5ft',['can_cfg_t',['../group___c_a_n___a_p_i.html#structcan__cfg__t',1,'']]], ['can_5fframe_5ft',['can_frame_t',['../group___c_a_n___a_p_i.html#structcan__frame__t',1,'']]], + ['can_5finfo_5ft',['can_info_t',['../group___c_a_n___a_p_i.html#structcan__info__t',1,'']]], ['can_5finstance_5ft',['can_instance_t',['../group___c_a_n___a_p_i.html#structcan__instance__t',1,'']]], - ['can_5fmailbox_5ft',['can_mailbox_t',['../group___c_a_n___a_p_i.html#structcan__mailbox__t',1,'']]], ['canfd_5fafl_5fentry_5ft',['canfd_afl_entry_t',['../group___c_a_n_f_d.html#structcanfd__afl__entry__t',1,'']]], ['canfd_5fextended_5fcfg_5ft',['canfd_extended_cfg_t',['../group___c_a_n_f_d.html#structcanfd__extended__cfg__t',1,'']]], - ['canfd_5fglobal_5fcfg_5ft',['canfd_global_cfg_t',['../group___c_a_n_f_d.html#structcanfd__global__cfg__t',1,'']]] + ['canfd_5fglobal_5fcfg_5ft',['canfd_global_cfg_t',['../group___c_a_n_f_d.html#structcanfd__global__cfg__t',1,'']]], + ['cmtw_5fextended_5fcfg_5ft',['cmtw_extended_cfg_t',['../group___c_m_t_w.html#structcmtw__extended__cfg__t',1,'']]], + ['cmtw_5finstance_5fctrl_5ft',['cmtw_instance_ctrl_t',['../group___c_m_t_w.html#structcmtw__instance__ctrl__t',1,'']]], + ['crc_5fapi_5ft',['crc_api_t',['../group___c_r_c___a_p_i.html#structcrc__api__t',1,'']]], + ['crc_5fcfg_5ft',['crc_cfg_t',['../group___c_r_c___a_p_i.html#structcrc__cfg__t',1,'']]], + ['crc_5fextended_5fcfg_5ft',['crc_extended_cfg_t',['../group___c_r_c.html#structcrc__extended__cfg__t',1,'']]], + ['crc_5finput_5ft',['crc_input_t',['../group___c_r_c___a_p_i.html#structcrc__input__t',1,'']]], + ['crc_5finstance_5fctrl_5ft',['crc_instance_ctrl_t',['../group___c_r_c.html#structcrc__instance__ctrl__t',1,'']]], + ['crc_5finstance_5ft',['crc_instance_t',['../group___c_r_c___a_p_i.html#structcrc__instance__t',1,'']]] ]; diff --git a/search/classes_2.js b/search/classes_2.js index bc87591..34c2a59 100644 --- a/search/classes_2.js +++ b/search/classes_2.js @@ -1,7 +1,8 @@ var searchData= [ - ['external_5firq_5fapi_5ft',['external_irq_api_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__api__t',1,'']]], - ['external_5firq_5fcallback_5fargs_5ft',['external_irq_callback_args_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__callback__args__t',1,'']]], - ['external_5firq_5fcfg_5ft',['external_irq_cfg_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__cfg__t',1,'']]], - ['external_5firq_5finstance_5ft',['external_irq_instance_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__instance__t',1,'']]] + ['dmac_5fb_5fcallback_5fargs_5ft',['dmac_b_callback_args_t',['../group___d_m_a_c___b.html#structdmac__b__callback__args__t',1,'']]], + ['dmac_5fb_5fextended_5fcfg_5ft',['dmac_b_extended_cfg_t',['../group___d_m_a_c___b.html#structdmac__b__extended__cfg__t',1,'']]], + ['dmac_5fb_5fextended_5finfo_5ft',['dmac_b_extended_info_t',['../group___d_m_a_c___b.html#structdmac__b__extended__info__t',1,'']]], + ['dmac_5fb_5finstance_5fctrl_5ft',['dmac_b_instance_ctrl_t',['../group___d_m_a_c___b.html#structdmac__b__instance__ctrl__t',1,'']]], + ['dmac_5fb_5fregister_5fset_5fsetting_5ft',['dmac_b_register_set_setting_t',['../group___d_m_a_c___b.html#structdmac__b__register__set__setting__t',1,'']]] ]; diff --git a/search/classes_3.js b/search/classes_3.js index b158452..80f4422 100644 --- a/search/classes_3.js +++ b/search/classes_3.js @@ -1,7 +1,11 @@ var searchData= [ - ['fsp_5fpack_5fversion_5ft',['fsp_pack_version_t',['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#unionfsp__pack__version__t',1,'']]], - ['fsp_5fpack_5fversion_5ft_2e_5f_5funnamed_5f_5f',['fsp_pack_version_t.__unnamed__',['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#structfsp__pack__version__t_8____unnamed____',1,'']]], - ['fsp_5fversion_5ft',['fsp_version_t',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#unionfsp__version__t',1,'']]], - ['fsp_5fversion_5ft_2e_5f_5funnamed_5f_5f',['fsp_version_t.__unnamed__',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#structfsp__version__t_8____unnamed____',1,'']]] + ['elc_5fapi_5ft',['elc_api_t',['../group___e_l_c___a_p_i.html#structelc__api__t',1,'']]], + ['elc_5fcfg_5ft',['elc_cfg_t',['../group___e_l_c___a_p_i.html#structelc__cfg__t',1,'']]], + ['elc_5finstance_5fctrl_5ft',['elc_instance_ctrl_t',['../group___e_l_c.html#structelc__instance__ctrl__t',1,'']]], + ['elc_5finstance_5ft',['elc_instance_t',['../group___e_l_c___a_p_i.html#structelc__instance__t',1,'']]], + ['external_5firq_5fapi_5ft',['external_irq_api_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__api__t',1,'']]], + ['external_5firq_5fcallback_5fargs_5ft',['external_irq_callback_args_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__callback__args__t',1,'']]], + ['external_5firq_5fcfg_5ft',['external_irq_cfg_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__cfg__t',1,'']]], + ['external_5firq_5finstance_5ft',['external_irq_instance_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#structexternal__irq__instance__t',1,'']]] ]; diff --git a/search/classes_4.js b/search/classes_4.js index 817b3ff..b158452 100644 --- a/search/classes_4.js +++ b/search/classes_4.js @@ -1,9 +1,7 @@ var searchData= [ - ['gpt_5fextended_5fcfg_5ft',['gpt_extended_cfg_t',['../group___g_p_t.html#structgpt__extended__cfg__t',1,'']]], - ['gpt_5fextended_5fpwm_5fcfg_5ft',['gpt_extended_pwm_cfg_t',['../group___g_p_t.html#structgpt__extended__pwm__cfg__t',1,'']]], - ['gpt_5finstance_5fctrl_5ft',['gpt_instance_ctrl_t',['../group___g_p_t.html#structgpt__instance__ctrl__t',1,'']]], - ['gpt_5foutput_5fpin_5ft',['gpt_output_pin_t',['../group___g_p_t.html#structgpt__output__pin__t',1,'']]], - ['gtm_5fextended_5fcfg_5ft',['gtm_extended_cfg_t',['../group___g_t_m.html#structgtm__extended__cfg__t',1,'']]], - ['gtm_5finstance_5fctrl_5ft',['gtm_instance_ctrl_t',['../group___g_t_m.html#structgtm__instance__ctrl__t',1,'']]] + ['fsp_5fpack_5fversion_5ft',['fsp_pack_version_t',['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#unionfsp__pack__version__t',1,'']]], + ['fsp_5fpack_5fversion_5ft_2e_5f_5funnamed_5f_5f',['fsp_pack_version_t.__unnamed__',['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#structfsp__pack__version__t_8____unnamed____',1,'']]], + ['fsp_5fversion_5ft',['fsp_version_t',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#unionfsp__version__t',1,'']]], + ['fsp_5fversion_5ft_2e_5f_5funnamed_5f_5f',['fsp_version_t.__unnamed__',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#structfsp__version__t_8____unnamed____',1,'']]] ]; diff --git a/search/classes_5.js b/search/classes_5.js index b57c7a6..4609379 100644 --- a/search/classes_5.js +++ b/search/classes_5.js @@ -1,16 +1,10 @@ var searchData= [ - ['i2c_5fmaster_5fapi_5ft',['i2c_master_api_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__api__t',1,'']]], - ['i2c_5fmaster_5fcallback_5fargs_5ft',['i2c_master_callback_args_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__callback__args__t',1,'']]], - ['i2c_5fmaster_5fcfg_5ft',['i2c_master_cfg_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__cfg__t',1,'']]], - ['i2c_5fmaster_5finstance_5ft',['i2c_master_instance_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__instance__t',1,'']]], - ['i2c_5fmaster_5fstatus_5ft',['i2c_master_status_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__status__t',1,'']]], - ['iic_5fmaster_5fclock_5fsettings_5ft',['iic_master_clock_settings_t',['../group___r_i_i_c___m_a_s_t_e_r.html#structiic__master__clock__settings__t',1,'']]], - ['iic_5fmaster_5finstance_5fctrl_5ft',['iic_master_instance_ctrl_t',['../group___r_i_i_c___m_a_s_t_e_r.html#structiic__master__instance__ctrl__t',1,'']]], - ['intc_5firq_5finstance_5fctrl_5ft',['intc_irq_instance_ctrl_t',['../group___i_n_t_c___i_r_q.html#structintc__irq__instance__ctrl__t',1,'']]], - ['ioport_5fapi_5ft',['ioport_api_t',['../group___i_o_p_o_r_t___a_p_i.html#structioport__api__t',1,'']]], - ['ioport_5fcfg_5ft',['ioport_cfg_t',['../group___i_o_p_o_r_t___a_p_i.html#structioport__cfg__t',1,'']]], - ['ioport_5finstance_5fctrl_5ft',['ioport_instance_ctrl_t',['../group___i_o_p_o_r_t.html#structioport__instance__ctrl__t',1,'']]], - ['ioport_5finstance_5ft',['ioport_instance_t',['../group___i_o_p_o_r_t___a_p_i.html#structioport__instance__t',1,'']]], - ['ioport_5fpin_5fcfg_5ft',['ioport_pin_cfg_t',['../group___i_o_p_o_r_t___a_p_i.html#structioport__pin__cfg__t',1,'']]] + ['gpt_5fextended_5fcfg_5ft',['gpt_extended_cfg_t',['../group___g_p_t.html#structgpt__extended__cfg__t',1,'']]], + ['gpt_5fextended_5fpwm_5fcfg_5ft',['gpt_extended_pwm_cfg_t',['../group___g_p_t.html#structgpt__extended__pwm__cfg__t',1,'']]], + ['gpt_5fgtior_5fsetting_5ft',['gpt_gtior_setting_t',['../group___g_p_t.html#structgpt__gtior__setting__t',1,'']]], + ['gpt_5finstance_5fctrl_5ft',['gpt_instance_ctrl_t',['../group___g_p_t.html#structgpt__instance__ctrl__t',1,'']]], + ['gpt_5foutput_5fpin_5ft',['gpt_output_pin_t',['../group___g_p_t.html#structgpt__output__pin__t',1,'']]], + ['gtm_5fextended_5fcfg_5ft',['gtm_extended_cfg_t',['../group___g_t_m.html#structgtm__extended__cfg__t',1,'']]], + ['gtm_5finstance_5fctrl_5ft',['gtm_instance_ctrl_t',['../group___g_t_m.html#structgtm__instance__ctrl__t',1,'']]] ]; diff --git a/search/classes_6.js b/search/classes_6.js index 0728ca0..7ba7740 100644 --- a/search/classes_6.js +++ b/search/classes_6.js @@ -1,20 +1,43 @@ var searchData= [ - ['mhu_5fapi_5ft',['mhu_api_t',['../group___m_h_u___a_p_i.html#structmhu__api__t',1,'']]], - ['mhu_5fcallback_5fargs_5ft',['mhu_callback_args_t',['../group___m_h_u___a_p_i.html#structmhu__callback__args__t',1,'']]], - ['mhu_5fcfg_5ft',['mhu_cfg_t',['../group___m_h_u___a_p_i.html#structmhu__cfg__t',1,'']]], - ['mhu_5finstance_5ft',['mhu_instance_t',['../group___m_h_u___a_p_i.html#structmhu__instance__t',1,'']]], - ['mhu_5fns_5finstance_5fctrl_5ft',['mhu_ns_instance_ctrl_t',['../group___m_h_u___n_s.html#structmhu__ns__instance__ctrl__t',1,'']]], - ['mhu_5fns_5fswint_5fget_5fapi_5ft',['mhu_ns_swint_get_api_t',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__api__t',1,'']]], - ['mhu_5fns_5fswint_5fget_5fcallback_5fargs_5ft',['mhu_ns_swint_get_callback_args_t',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__callback__args__t',1,'']]], - ['mhu_5fns_5fswint_5fget_5fcfg_5ft',['mhu_ns_swint_get_cfg_t',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__cfg__t',1,'']]], - ['mhu_5fns_5fswint_5fget_5finstance_5fctrl_5ft',['mhu_ns_swint_get_instance_ctrl_t',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#structmhu__ns__swint__get__instance__ctrl__t',1,'']]], - ['mhu_5fns_5fswint_5fget_5finstance_5ft',['mhu_ns_swint_get_instance_t',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__instance__t',1,'']]], - ['mhu_5fns_5fswint_5fset_5fapi_5ft',['mhu_ns_swint_set_api_t',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__api__t',1,'']]], - ['mhu_5fns_5fswint_5fset_5fcallback_5fargs_5ft',['mhu_ns_swint_set_callback_args_t',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__callback__args__t',1,'']]], - ['mhu_5fns_5fswint_5fset_5fcfg_5ft',['mhu_ns_swint_set_cfg_t',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__cfg__t',1,'']]], - ['mhu_5fns_5fswint_5fset_5finstance_5fctrl_5ft',['mhu_ns_swint_set_instance_ctrl_t',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#structmhu__ns__swint__set__instance__ctrl__t',1,'']]], - ['mhu_5fns_5fswint_5fset_5finstance_5ft',['mhu_ns_swint_set_instance_t',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__instance__t',1,'']]], - ['mhu_5fs_5finstance_5fctrl_5ft',['mhu_s_instance_ctrl_t',['../group___m_h_u___s.html#structmhu__s__instance__ctrl__t',1,'']]], - ['mpuregionsettings_5ft',['MPURegionSettings_t',['../struct_m_p_u_region_settings__t.html',1,'']]] + ['i2c_5fmaster_5fapi_5ft',['i2c_master_api_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__api__t',1,'']]], + ['i2c_5fmaster_5fcallback_5fargs_5ft',['i2c_master_callback_args_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__callback__args__t',1,'']]], + ['i2c_5fmaster_5fcfg_5ft',['i2c_master_cfg_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__cfg__t',1,'']]], + ['i2c_5fmaster_5finstance_5ft',['i2c_master_instance_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__instance__t',1,'']]], + ['i2c_5fmaster_5fstatus_5ft',['i2c_master_status_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#structi2c__master__status__t',1,'']]], + ['i2c_5fslave_5fapi_5ft',['i2c_slave_api_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__api__t',1,'']]], + ['i2c_5fslave_5fcallback_5fargs_5ft',['i2c_slave_callback_args_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__callback__args__t',1,'']]], + ['i2c_5fslave_5fcfg_5ft',['i2c_slave_cfg_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__cfg__t',1,'']]], + ['i2c_5fslave_5finstance_5ft',['i2c_slave_instance_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#structi2c__slave__instance__t',1,'']]], + ['i3c_5fapi_5ft',['i3c_api_t',['../group___i3_c___a_p_i.html#structi3c__api__t',1,'']]], + ['i3c_5fb_5fbitrate_5fsettings_5ft',['i3c_b_bitrate_settings_t',['../group___i3_c___b.html#structi3c__b__bitrate__settings__t',1,'']]], + ['i3c_5fb_5fclock_5fstalling_5ft',['i3c_b_clock_stalling_t',['../group___i3_c___b.html#structi3c__b__clock__stalling__t',1,'']]], + ['i3c_5fb_5fextended_5fcfg_5ft',['i3c_b_extended_cfg_t',['../group___i3_c___b.html#structi3c__b__extended__cfg__t',1,'']]], + ['i3c_5fb_5fibi_5fcontrol_5ft',['i3c_b_ibi_control_t',['../group___i3_c___b.html#structi3c__b__ibi__control__t',1,'']]], + ['i3c_5fb_5finstance_5fctrl_5ft',['i3c_b_instance_ctrl_t',['../group___i3_c___b.html#structi3c__b__instance__ctrl__t',1,'']]], + ['i3c_5fb_5fslave_5fcommand_5fresponse_5finfo_5ft',['i3c_b_slave_command_response_info_t',['../group___i3_c___b.html#structi3c__b__slave__command__response__info__t',1,'']]], + ['i3c_5fcallback_5fargs_5ft',['i3c_callback_args_t',['../group___i3_c___a_p_i.html#structi3c__callback__args__t',1,'']]], + ['i3c_5fcfg_5ft',['i3c_cfg_t',['../group___i3_c___a_p_i.html#structi3c__cfg__t',1,'']]], + ['i3c_5fcommand_5fdescriptor_5ft',['i3c_command_descriptor_t',['../group___i3_c___a_p_i.html#structi3c__command__descriptor__t',1,'']]], + ['i3c_5fdevice_5fcfg_5ft',['i3c_device_cfg_t',['../group___i3_c___a_p_i.html#structi3c__device__cfg__t',1,'']]], + ['i3c_5fdevice_5fstatus_5ft',['i3c_device_status_t',['../group___i3_c___a_p_i.html#structi3c__device__status__t',1,'']]], + ['i3c_5fdevice_5ftable_5fcfg_5ft',['i3c_device_table_cfg_t',['../group___i3_c___a_p_i.html#structi3c__device__table__cfg__t',1,'']]], + ['i3c_5finstance_5ft',['i3c_instance_t',['../group___i3_c___a_p_i.html#structi3c__instance__t',1,'']]], + ['i3c_5fslave_5finfo_5ft',['i3c_slave_info_t',['../group___i3_c___a_p_i.html#structi3c__slave__info__t',1,'']]], + ['iic_5fmaster_5fclock_5fsettings_5ft',['iic_master_clock_settings_t',['../group___r_i_i_c___m_a_s_t_e_r.html#structiic__master__clock__settings__t',1,'']]], + ['iic_5fmaster_5finstance_5fctrl_5ft',['iic_master_instance_ctrl_t',['../group___r_i_i_c___m_a_s_t_e_r.html#structiic__master__instance__ctrl__t',1,'']]], + ['iic_5fslave_5fclock_5fsettings_5ft',['iic_slave_clock_settings_t',['../group___r_i_i_c___s_l_a_v_e.html#structiic__slave__clock__settings__t',1,'']]], + ['intc_5firq_5finstance_5fctrl_5ft',['intc_irq_instance_ctrl_t',['../group___i_n_t_c___i_r_q.html#structintc__irq__instance__ctrl__t',1,'']]], + ['intc_5fnmi_5finstance_5fctrl_5ft',['intc_nmi_instance_ctrl_t',['../group___i_n_t_c___n_m_i.html#structintc__nmi__instance__ctrl__t',1,'']]], + ['intc_5ftint_5fextended_5fcfg_5ft',['intc_tint_extended_cfg_t',['../group___i_n_t_c___t_i_n_t.html#structintc__tint__extended__cfg__t',1,'']]], + ['intc_5ftint_5finstance_5fctrl_5ft',['intc_tint_instance_ctrl_t',['../group___i_n_t_c___t_i_n_t.html#structintc__tint__instance__ctrl__t',1,'']]], + ['ioport_5fapi_5ft',['ioport_api_t',['../group___i_o_p_o_r_t___a_p_i.html#structioport__api__t',1,'']]], + ['ioport_5fcfg_5ft',['ioport_cfg_t',['../group___i_o_p_o_r_t___a_p_i.html#structioport__cfg__t',1,'']]], + ['ioport_5fevent_5fgroup_5finput_5ft',['ioport_event_group_input_t',['../group___i_o_p_o_r_t.html#structioport__event__group__input__t',1,'']]], + ['ioport_5fevent_5fgroup_5foutput_5ft',['ioport_event_group_output_t',['../group___i_o_p_o_r_t.html#structioport__event__group__output__t',1,'']]], + ['ioport_5fevent_5fsingle_5ft',['ioport_event_single_t',['../group___i_o_p_o_r_t.html#structioport__event__single__t',1,'']]], + ['ioport_5fextend_5fcfg_5ft',['ioport_extend_cfg_t',['../group___i_o_p_o_r_t.html#structioport__extend__cfg__t',1,'']]], + ['ioport_5finstance_5fctrl_5ft',['ioport_instance_ctrl_t',['../group___i_o_p_o_r_t.html#structioport__instance__ctrl__t',1,'']]], + ['ioport_5finstance_5ft',['ioport_instance_t',['../group___i_o_p_o_r_t___a_p_i.html#structioport__instance__t',1,'']]], + ['ioport_5fpin_5fcfg_5ft',['ioport_pin_cfg_t',['../group___i_o_p_o_r_t___a_p_i.html#structioport__pin__cfg__t',1,'']]] ]; diff --git a/search/classes_7.js b/search/classes_7.js index 96e79e6..15a415e 100644 --- a/search/classes_7.js +++ b/search/classes_7.js @@ -1,9 +1,28 @@ var searchData= [ - ['poeg_5fapi_5ft',['poeg_api_t',['../group___p_o_e_g___a_p_i.html#structpoeg__api__t',1,'']]], - ['poeg_5fcallback_5fargs_5ft',['poeg_callback_args_t',['../group___p_o_e_g___a_p_i.html#structpoeg__callback__args__t',1,'']]], - ['poeg_5fcfg_5ft',['poeg_cfg_t',['../group___p_o_e_g___a_p_i.html#structpoeg__cfg__t',1,'']]], - ['poeg_5finstance_5fctrl_5ft',['poeg_instance_ctrl_t',['../group___p_o_e_g.html#structpoeg__instance__ctrl__t',1,'']]], - ['poeg_5finstance_5ft',['poeg_instance_t',['../group___p_o_e_g___a_p_i.html#structpoeg__instance__t',1,'']]], - ['poeg_5fstatus_5ft',['poeg_status_t',['../group___p_o_e_g___a_p_i.html#structpoeg__status__t',1,'']]] + ['mhu_5fapi_5ft',['mhu_api_t',['../group___m_h_u___a_p_i.html#structmhu__api__t',1,'']]], + ['mhu_5fb_5fns_5finstance_5fctrl_5ft',['mhu_b_ns_instance_ctrl_t',['../group___m_h_u___b___n_s.html#structmhu__b__ns__instance__ctrl__t',1,'']]], + ['mhu_5fb_5fns_5fswint_5fget_5finstance_5fctrl_5ft',['mhu_b_ns_swint_get_instance_ctrl_t',['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#structmhu__b__ns__swint__get__instance__ctrl__t',1,'']]], + ['mhu_5fb_5fns_5fswint_5fset_5finstance_5fctrl_5ft',['mhu_b_ns_swint_set_instance_ctrl_t',['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#structmhu__b__ns__swint__set__instance__ctrl__t',1,'']]], + ['mhu_5fb_5fs_5finstance_5fctrl_5ft',['mhu_b_s_instance_ctrl_t',['../group___m_h_u___b___s.html#structmhu__b__s__instance__ctrl__t',1,'']]], + ['mhu_5fcallback_5fargs_5ft',['mhu_callback_args_t',['../group___m_h_u___a_p_i.html#structmhu__callback__args__t',1,'']]], + ['mhu_5fcfg_5ft',['mhu_cfg_t',['../group___m_h_u___a_p_i.html#structmhu__cfg__t',1,'']]], + ['mhu_5finstance_5ft',['mhu_instance_t',['../group___m_h_u___a_p_i.html#structmhu__instance__t',1,'']]], + ['mhu_5fns_5finstance_5fctrl_5ft',['mhu_ns_instance_ctrl_t',['../group___m_h_u___n_s.html#structmhu__ns__instance__ctrl__t',1,'']]], + ['mhu_5fns_5fswint_5fget_5fapi_5ft',['mhu_ns_swint_get_api_t',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__api__t',1,'']]], + ['mhu_5fns_5fswint_5fget_5fcallback_5fargs_5ft',['mhu_ns_swint_get_callback_args_t',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__callback__args__t',1,'']]], + ['mhu_5fns_5fswint_5fget_5fcfg_5ft',['mhu_ns_swint_get_cfg_t',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__cfg__t',1,'']]], + ['mhu_5fns_5fswint_5fget_5finstance_5fctrl_5ft',['mhu_ns_swint_get_instance_ctrl_t',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#structmhu__ns__swint__get__instance__ctrl__t',1,'']]], + ['mhu_5fns_5fswint_5fget_5finstance_5ft',['mhu_ns_swint_get_instance_t',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#structmhu__ns__swint__get__instance__t',1,'']]], + ['mhu_5fns_5fswint_5fset_5fapi_5ft',['mhu_ns_swint_set_api_t',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__api__t',1,'']]], + ['mhu_5fns_5fswint_5fset_5fcallback_5fargs_5ft',['mhu_ns_swint_set_callback_args_t',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__callback__args__t',1,'']]], + ['mhu_5fns_5fswint_5fset_5fcfg_5ft',['mhu_ns_swint_set_cfg_t',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__cfg__t',1,'']]], + ['mhu_5fns_5fswint_5fset_5finstance_5fctrl_5ft',['mhu_ns_swint_set_instance_ctrl_t',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#structmhu__ns__swint__set__instance__ctrl__t',1,'']]], + ['mhu_5fns_5fswint_5fset_5finstance_5ft',['mhu_ns_swint_set_instance_t',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#structmhu__ns__swint__set__instance__t',1,'']]], + ['mhu_5fs_5finstance_5fctrl_5ft',['mhu_s_instance_ctrl_t',['../group___m_h_u___s.html#structmhu__s__instance__ctrl__t',1,'']]], + ['mpuregionsettings_5ft',['MPURegionSettings_t',['../struct_m_p_u_region_settings__t.html',1,'']]], + ['mtu3_5fextended_5fcfg_5ft',['mtu3_extended_cfg_t',['../group___m_t_u3.html#structmtu3__extended__cfg__t',1,'']]], + ['mtu3_5fextended_5fpwm_5fcfg_5ft',['mtu3_extended_pwm_cfg_t',['../group___m_t_u3.html#structmtu3__extended__pwm__cfg__t',1,'']]], + ['mtu3_5finstance_5fctrl_5ft',['mtu3_instance_ctrl_t',['../group___m_t_u3.html#structmtu3__instance__ctrl__t',1,'']]], + ['mtu3_5foutput_5fpin_5ft',['mtu3_output_pin_t',['../group___m_t_u3.html#structmtu3__output__pin__t',1,'']]] ]; diff --git a/search/classes_8.js b/search/classes_8.js index fa9e5af..a8af66b 100644 --- a/search/classes_8.js +++ b/search/classes_8.js @@ -1,62 +1,16 @@ var searchData= [ - ['riic_5fmaster_5fextended_5fcfg_5ft',['riic_master_extended_cfg_t',['../group___r_i_i_c___m_a_s_t_e_r.html#structriic__master__extended__cfg__t',1,'']]], - ['rm_5fcomms_5fapi_5ft',['rm_comms_api_t',['../group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__api__t',1,'']]], - ['rm_5fcomms_5fcallback_5fargs_5ft',['rm_comms_callback_args_t',['../group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__callback__args__t',1,'']]], - ['rm_5fcomms_5fcfg_5ft',['rm_comms_cfg_t',['../group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__cfg__t',1,'']]], - ['rm_5fcomms_5fi2c_5finstance_5fctrl_5ft',['rm_comms_i2c_instance_ctrl_t',['../group___r_m___c_o_m_m_s___i2_c.html#structrm__comms__i2c__instance__ctrl__t',1,'']]], - ['rm_5fcomms_5finstance_5ft',['rm_comms_instance_t',['../group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__instance__t',1,'']]], - ['rm_5fcomms_5fwrite_5fread_5fparams_5ft',['rm_comms_write_read_params_t',['../group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__write__read__params__t',1,'']]], - ['rm_5fhs300x_5fapi_5ft',['rm_hs300x_api_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__api__t',1,'']]], - ['rm_5fhs300x_5fcallback_5fargs_5ft',['rm_hs300x_callback_args_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__callback__args__t',1,'']]], - ['rm_5fhs300x_5fcfg_5ft',['rm_hs300x_cfg_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__cfg__t',1,'']]], - ['rm_5fhs300x_5fdata_5ft',['rm_hs300x_data_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__data__t',1,'']]], - ['rm_5fhs300x_5finstance_5fctrl_5ft',['rm_hs300x_instance_ctrl_t',['../group___r_m___h_s300_x.html#structrm__hs300x__instance__ctrl__t',1,'']]], - ['rm_5fhs300x_5finstance_5ft',['rm_hs300x_instance_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__instance__t',1,'']]], - ['rm_5fhs300x_5fprogrammnig_5fmode_5fparams_5ft',['rm_hs300x_programmnig_mode_params_t',['../group___r_m___h_s300_x.html#structrm__hs300x__programmnig__mode__params__t',1,'']]], - ['rm_5fhs300x_5fraw_5fdata_5ft',['rm_hs300x_raw_data_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__raw__data__t',1,'']]], - ['rm_5fhs300x_5fsensor_5fdata_5ft',['rm_hs300x_sensor_data_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__sensor__data__t',1,'']]], - ['rm_5fhs400x_5fapi_5ft',['rm_hs400x_api_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__api__t',1,'']]], - ['rm_5fhs400x_5fcallback_5fargs_5ft',['rm_hs400x_callback_args_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__callback__args__t',1,'']]], - ['rm_5fhs400x_5fcfg_5ft',['rm_hs400x_cfg_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__cfg__t',1,'']]], - ['rm_5fhs400x_5fdata_5ft',['rm_hs400x_data_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__data__t',1,'']]], - ['rm_5fhs400x_5finit_5fprocess_5fparams_5ft',['rm_hs400x_init_process_params_t',['../group___r_m___h_s400_x.html#structrm__hs400x__init__process__params__t',1,'']]], - ['rm_5fhs400x_5finstance_5fctrl_5ft',['rm_hs400x_instance_ctrl_t',['../group___r_m___h_s400_x.html#structrm__hs400x__instance__ctrl__t',1,'']]], - ['rm_5fhs400x_5finstance_5ft',['rm_hs400x_instance_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__instance__t',1,'']]], - ['rm_5fhs400x_5fraw_5fdata_5ft',['rm_hs400x_raw_data_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__raw__data__t',1,'']]], - ['rm_5fhs400x_5fresolutions_5ft',['rm_hs400x_resolutions_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__resolutions__t',1,'']]], - ['rm_5fhs400x_5fsensor_5fdata_5ft',['rm_hs400x_sensor_data_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__sensor__data__t',1,'']]], - ['rm_5fob1203_5fapi_5ft',['rm_ob1203_api_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__api__t',1,'']]], - ['rm_5fob1203_5fcallback_5fargs_5ft',['rm_ob1203_callback_args_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__callback__args__t',1,'']]], - ['rm_5fob1203_5fcfg_5ft',['rm_ob1203_cfg_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__cfg__t',1,'']]], - ['rm_5fob1203_5fdevice_5finterrupt_5fcfg_5ft',['rm_ob1203_device_interrupt_cfg_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__device__interrupt__cfg__t',1,'']]], - ['rm_5fob1203_5fdevice_5fstatus_5ft',['rm_ob1203_device_status_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__device__status__t',1,'']]], - ['rm_5fob1203_5ffifo_5finfo_5ft',['rm_ob1203_fifo_info_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__fifo__info__t',1,'']]], - ['rm_5fob1203_5fgain_5ft',['rm_ob1203_gain_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__gain__t',1,'']]], - ['rm_5fob1203_5finit_5fprocess_5fparams_5ft',['rm_ob1203_init_process_params_t',['../group___r_m___o_b1203.html#structrm__ob1203__init__process__params__t',1,'']]], - ['rm_5fob1203_5finstance_5fctrl_5ft',['rm_ob1203_instance_ctrl_t',['../group___r_m___o_b1203.html#structrm__ob1203__instance__ctrl__t',1,'']]], - ['rm_5fob1203_5finstance_5ft',['rm_ob1203_instance_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__instance__t',1,'']]], - ['rm_5fob1203_5fled_5fcurrent_5ft',['rm_ob1203_led_current_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__led__current__t',1,'']]], - ['rm_5fob1203_5flight_5fdata_5ft',['rm_ob1203_light_data_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__light__data__t',1,'']]], - ['rm_5fob1203_5fmode_5fextended_5fcfg_5ft',['rm_ob1203_mode_extended_cfg_t',['../group___r_m___o_b1203.html#structrm__ob1203__mode__extended__cfg__t',1,'']]], - ['rm_5fob1203_5fppg_5fdata_5ft',['rm_ob1203_ppg_data_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__ppg__data__t',1,'']]], - ['rm_5fob1203_5fprox_5fdata_5ft',['rm_ob1203_prox_data_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__prox__data__t',1,'']]], - ['rm_5fob1203_5fraw_5fdata_5ft',['rm_ob1203_raw_data_t',['../group___r_m___o_b1203___a_p_i.html#structrm__ob1203__raw__data__t',1,'']]], - ['rm_5fzmod4xxx_5fapi_5ft',['rm_zmod4xxx_api_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__api__t',1,'']]], - ['rm_5fzmod4xxx_5fcallback_5fargs_5ft',['rm_zmod4xxx_callback_args_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__callback__args__t',1,'']]], - ['rm_5fzmod4xxx_5fcfg_5ft',['rm_zmod4xxx_cfg_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__cfg__t',1,'']]], - ['rm_5fzmod4xxx_5fiaq_5f1st_5fdata_5ft',['rm_zmod4xxx_iaq_1st_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__iaq__1st__data__t',1,'']]], - ['rm_5fzmod4xxx_5fiaq_5f2nd_5fdata_5ft',['rm_zmod4xxx_iaq_2nd_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__iaq__2nd__data__t',1,'']]], - ['rm_5fzmod4xxx_5finit_5fprocess_5fparams_5ft',['rm_zmod4xxx_init_process_params_t',['../group___r_m___z_m_o_d4_x_x_x.html#structrm__zmod4xxx__init__process__params__t',1,'']]], - ['rm_5fzmod4xxx_5finstance_5fctrl_5ft',['rm_zmod4xxx_instance_ctrl_t',['../group___r_m___z_m_o_d4_x_x_x.html#structrm__zmod4xxx__instance__ctrl__t',1,'']]], - ['rm_5fzmod4xxx_5finstance_5ft',['rm_zmod4xxx_instance_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__instance__t',1,'']]], - ['rm_5fzmod4xxx_5foaq_5f1st_5fdata_5ft',['rm_zmod4xxx_oaq_1st_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__oaq__1st__data__t',1,'']]], - ['rm_5fzmod4xxx_5foaq_5f2nd_5fdata_5ft',['rm_zmod4xxx_oaq_2nd_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__oaq__2nd__data__t',1,'']]], - ['rm_5fzmod4xxx_5fodor_5fdata_5ft',['rm_zmod4xxx_odor_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__odor__data__t',1,'']]], - ['rm_5fzmod4xxx_5fraq_5fdata_5ft',['rm_zmod4xxx_raq_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__raq__data__t',1,'']]], - ['rm_5fzmod4xxx_5fraw_5fdata_5ft',['rm_zmod4xxx_raw_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__raw__data__t',1,'']]], - ['rm_5fzmod4xxx_5fsulfur_5fodor_5fdata_5ft',['rm_zmod4xxx_sulfur_odor_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__sulfur__odor__data__t',1,'']]], - ['rspi_5fextended_5fcfg_5ft',['rspi_extended_cfg_t',['../group___r_s_p_i.html#structrspi__extended__cfg__t',1,'']]], - ['rspi_5finstance_5fctrl_5ft',['rspi_instance_ctrl_t',['../group___r_s_p_i.html#structrspi__instance__ctrl__t',1,'']]], - ['rspi_5frspck_5fdiv_5fsetting_5ft',['rspi_rspck_div_setting_t',['../group___r_s_p_i.html#structrspi__rspck__div__setting__t',1,'']]] + ['pdm_5fapi_5ft',['pdm_api_t',['../group___p_d_m___a_p_i.html#structpdm__api__t',1,'']]], + ['pdm_5fcallback_5fargs_5ft',['pdm_callback_args_t',['../group___p_d_m___a_p_i.html#structpdm__callback__args__t',1,'']]], + ['pdm_5fcfg_5ft',['pdm_cfg_t',['../group___p_d_m___a_p_i.html#structpdm__cfg__t',1,'']]], + ['pdm_5fextended_5fcfg_5ft',['pdm_extended_cfg_t',['../group___p_d_m.html#structpdm__extended__cfg__t',1,'']]], + ['pdm_5finstance_5fctrl_5ft',['pdm_instance_ctrl_t',['../group___p_d_m.html#structpdm__instance__ctrl__t',1,'']]], + ['pdm_5finstance_5ft',['pdm_instance_t',['../group___p_d_m___a_p_i.html#structpdm__instance__t',1,'']]], + ['pdm_5fstatus_5ft',['pdm_status_t',['../group___p_d_m___a_p_i.html#structpdm__status__t',1,'']]], + ['poeg_5fapi_5ft',['poeg_api_t',['../group___p_o_e_g___a_p_i.html#structpoeg__api__t',1,'']]], + ['poeg_5fcallback_5fargs_5ft',['poeg_callback_args_t',['../group___p_o_e_g___a_p_i.html#structpoeg__callback__args__t',1,'']]], + ['poeg_5fcfg_5ft',['poeg_cfg_t',['../group___p_o_e_g___a_p_i.html#structpoeg__cfg__t',1,'']]], + ['poeg_5finstance_5fctrl_5ft',['poeg_instance_ctrl_t',['../group___p_o_e_g.html#structpoeg__instance__ctrl__t',1,'']]], + ['poeg_5finstance_5ft',['poeg_instance_t',['../group___p_o_e_g___a_p_i.html#structpoeg__instance__t',1,'']]], + ['poeg_5fstatus_5ft',['poeg_status_t',['../group___p_o_e_g___a_p_i.html#structpoeg__status__t',1,'']]] ]; diff --git a/search/classes_9.js b/search/classes_9.js index 2754d5d..7a850c8 100644 --- a/search/classes_9.js +++ b/search/classes_9.js @@ -1,11 +1,57 @@ var searchData= [ - ['scif_5fbaud_5fsetting_5ft',['scif_baud_setting_t',['../group___s_c_i_f___u_a_r_t.html#structscif__baud__setting__t',1,'']]], - ['scif_5fuart_5fextended_5fcfg_5ft',['scif_uart_extended_cfg_t',['../group___s_c_i_f___u_a_r_t.html#structscif__uart__extended__cfg__t',1,'']]], - ['scif_5fuart_5finstance_5fctrl_5ft',['scif_uart_instance_ctrl_t',['../group___s_c_i_f___u_a_r_t.html#structscif__uart__instance__ctrl__t',1,'']]], - ['spi_5fapi_5ft',['spi_api_t',['../group___s_p_i___a_p_i.html#structspi__api__t',1,'']]], - ['spi_5fcallback_5fargs_5ft',['spi_callback_args_t',['../group___s_p_i___a_p_i.html#structspi__callback__args__t',1,'']]], - ['spi_5fcfg_5ft',['spi_cfg_t',['../group___s_p_i___a_p_i.html#structspi__cfg__t',1,'']]], - ['spi_5finstance_5ft',['spi_instance_t',['../group___s_p_i___a_p_i.html#structspi__instance__t',1,'']]], - ['spi_5fwrite_5fread_5fguard_5fargs_5ft',['spi_write_read_guard_args_t',['../group___s_p_i___a_p_i.html#structspi__write__read__guard__args__t',1,'']]] + ['riic_5fmaster_5fextended_5fcfg_5ft',['riic_master_extended_cfg_t',['../group___r_i_i_c___m_a_s_t_e_r.html#structriic__master__extended__cfg__t',1,'']]], + ['riic_5fslave_5fextended_5fcfg_5ft',['riic_slave_extended_cfg_t',['../group___r_i_i_c___s_l_a_v_e.html#structriic__slave__extended__cfg__t',1,'']]], + ['rm_5fcomms_5fapi_5ft',['rm_comms_api_t',['../group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__api__t',1,'']]], + ['rm_5fcomms_5fcallback_5fargs_5ft',['rm_comms_callback_args_t',['../group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__callback__args__t',1,'']]], + ['rm_5fcomms_5fcfg_5ft',['rm_comms_cfg_t',['../group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__cfg__t',1,'']]], + ['rm_5fcomms_5fi2c_5finstance_5fctrl_5ft',['rm_comms_i2c_instance_ctrl_t',['../group___r_m___c_o_m_m_s___i2_c.html#structrm__comms__i2c__instance__ctrl__t',1,'']]], + ['rm_5fcomms_5finstance_5ft',['rm_comms_instance_t',['../group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__instance__t',1,'']]], + ['rm_5fcomms_5fwrite_5fread_5fparams_5ft',['rm_comms_write_read_params_t',['../group___r_m___c_o_m_m_s___a_p_i.html#structrm__comms__write__read__params__t',1,'']]], + ['rm_5fhs300x_5fapi_5ft',['rm_hs300x_api_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__api__t',1,'']]], + ['rm_5fhs300x_5fcallback_5fargs_5ft',['rm_hs300x_callback_args_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__callback__args__t',1,'']]], + ['rm_5fhs300x_5fcfg_5ft',['rm_hs300x_cfg_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__cfg__t',1,'']]], + ['rm_5fhs300x_5fdata_5ft',['rm_hs300x_data_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__data__t',1,'']]], + ['rm_5fhs300x_5finstance_5fctrl_5ft',['rm_hs300x_instance_ctrl_t',['../group___r_m___h_s300_x.html#structrm__hs300x__instance__ctrl__t',1,'']]], + ['rm_5fhs300x_5finstance_5ft',['rm_hs300x_instance_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__instance__t',1,'']]], + ['rm_5fhs300x_5fprogrammnig_5fmode_5fparams_5ft',['rm_hs300x_programmnig_mode_params_t',['../group___r_m___h_s300_x.html#structrm__hs300x__programmnig__mode__params__t',1,'']]], + ['rm_5fhs300x_5fraw_5fdata_5ft',['rm_hs300x_raw_data_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__raw__data__t',1,'']]], + ['rm_5fhs300x_5fsensor_5fdata_5ft',['rm_hs300x_sensor_data_t',['../group___r_m___h_s300_x___a_p_i.html#structrm__hs300x__sensor__data__t',1,'']]], + ['rm_5fhs400x_5fapi_5ft',['rm_hs400x_api_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__api__t',1,'']]], + ['rm_5fhs400x_5fcallback_5fargs_5ft',['rm_hs400x_callback_args_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__callback__args__t',1,'']]], + ['rm_5fhs400x_5fcfg_5ft',['rm_hs400x_cfg_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__cfg__t',1,'']]], + ['rm_5fhs400x_5fdata_5ft',['rm_hs400x_data_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__data__t',1,'']]], + ['rm_5fhs400x_5finit_5fprocess_5fparams_5ft',['rm_hs400x_init_process_params_t',['../group___r_m___h_s400_x.html#structrm__hs400x__init__process__params__t',1,'']]], + ['rm_5fhs400x_5finstance_5fctrl_5ft',['rm_hs400x_instance_ctrl_t',['../group___r_m___h_s400_x.html#structrm__hs400x__instance__ctrl__t',1,'']]], + ['rm_5fhs400x_5finstance_5ft',['rm_hs400x_instance_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__instance__t',1,'']]], + ['rm_5fhs400x_5fraw_5fdata_5ft',['rm_hs400x_raw_data_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__raw__data__t',1,'']]], + ['rm_5fhs400x_5fresolutions_5ft',['rm_hs400x_resolutions_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__resolutions__t',1,'']]], + ['rm_5fhs400x_5fsensor_5fdata_5ft',['rm_hs400x_sensor_data_t',['../group___r_m___h_s400_x___a_p_i.html#structrm__hs400x__sensor__data__t',1,'']]], + ['rm_5fzmod4xxx_5fapi_5ft',['rm_zmod4xxx_api_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__api__t',1,'']]], + ['rm_5fzmod4xxx_5fcallback_5fargs_5ft',['rm_zmod4xxx_callback_args_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__callback__args__t',1,'']]], + ['rm_5fzmod4xxx_5fcfg_5ft',['rm_zmod4xxx_cfg_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__cfg__t',1,'']]], + ['rm_5fzmod4xxx_5fiaq_5f1st_5fdata_5ft',['rm_zmod4xxx_iaq_1st_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__iaq__1st__data__t',1,'']]], + ['rm_5fzmod4xxx_5fiaq_5f2nd_5fdata_5ft',['rm_zmod4xxx_iaq_2nd_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__iaq__2nd__data__t',1,'']]], + ['rm_5fzmod4xxx_5finit_5fprocess_5fparams_5ft',['rm_zmod4xxx_init_process_params_t',['../group___r_m___z_m_o_d4_x_x_x.html#structrm__zmod4xxx__init__process__params__t',1,'']]], + ['rm_5fzmod4xxx_5finstance_5fctrl_5ft',['rm_zmod4xxx_instance_ctrl_t',['../group___r_m___z_m_o_d4_x_x_x.html#structrm__zmod4xxx__instance__ctrl__t',1,'']]], + ['rm_5fzmod4xxx_5finstance_5ft',['rm_zmod4xxx_instance_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__instance__t',1,'']]], + ['rm_5fzmod4xxx_5foaq_5f1st_5fdata_5ft',['rm_zmod4xxx_oaq_1st_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__oaq__1st__data__t',1,'']]], + ['rm_5fzmod4xxx_5foaq_5f2nd_5fdata_5ft',['rm_zmod4xxx_oaq_2nd_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__oaq__2nd__data__t',1,'']]], + ['rm_5fzmod4xxx_5fodor_5fdata_5ft',['rm_zmod4xxx_odor_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__odor__data__t',1,'']]], + ['rm_5fzmod4xxx_5fraq_5fdata_5ft',['rm_zmod4xxx_raq_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__raq__data__t',1,'']]], + ['rm_5fzmod4xxx_5fraw_5fdata_5ft',['rm_zmod4xxx_raw_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__raw__data__t',1,'']]], + ['rm_5fzmod4xxx_5fsulfur_5fodor_5fdata_5ft',['rm_zmod4xxx_sulfur_odor_data_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#structrm__zmod4xxx__sulfur__odor__data__t',1,'']]], + ['rspck_5fdiv_5fsetting_5ft',['rspck_div_setting_t',['../group___s_p_i___b.html#structrspck__div__setting__t',1,'']]], + ['rspi_5fextended_5fcfg_5ft',['rspi_extended_cfg_t',['../group___r_s_p_i.html#structrspi__extended__cfg__t',1,'']]], + ['rspi_5finstance_5fctrl_5ft',['rspi_instance_ctrl_t',['../group___r_s_p_i.html#structrspi__instance__ctrl__t',1,'']]], + ['rspi_5frspck_5fdiv_5fsetting_5ft',['rspi_rspck_div_setting_t',['../group___r_s_p_i.html#structrspi__rspck__div__setting__t',1,'']]], + ['rtc_5falarm_5ftime_5ft',['rtc_alarm_time_t',['../group___r_t_c___a_p_i.html#structrtc__alarm__time__t',1,'']]], + ['rtc_5fapi_5ft',['rtc_api_t',['../group___r_t_c___a_p_i.html#structrtc__api__t',1,'']]], + ['rtc_5fcallback_5fargs_5ft',['rtc_callback_args_t',['../group___r_t_c___a_p_i.html#structrtc__callback__args__t',1,'']]], + ['rtc_5fcfg_5ft',['rtc_cfg_t',['../group___r_t_c___a_p_i.html#structrtc__cfg__t',1,'']]], + ['rtc_5ferror_5fadjustment_5fcfg_5ft',['rtc_error_adjustment_cfg_t',['../group___r_t_c___a_p_i.html#structrtc__error__adjustment__cfg__t',1,'']]], + ['rtc_5fextended_5fcfg_5ft',['rtc_extended_cfg_t',['../group___r_t_c.html#structrtc__extended__cfg__t',1,'']]], + ['rtc_5finfo_5ft',['rtc_info_t',['../group___r_t_c___a_p_i.html#structrtc__info__t',1,'']]], + ['rtc_5finstance_5fctrl_5ft',['rtc_instance_ctrl_t',['../group___r_t_c.html#structrtc__instance__ctrl__t',1,'']]], + ['rtc_5finstance_5ft',['rtc_instance_t',['../group___r_t_c___a_p_i.html#structrtc__instance__t',1,'']]] ]; diff --git a/search/classes_a.js b/search/classes_a.js index 8219727..92f9929 100644 --- a/search/classes_a.js +++ b/search/classes_a.js @@ -1,14 +1,28 @@ var searchData= [ - ['timer_5fapi_5ft',['timer_api_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__api__t',1,'']]], - ['timer_5fcallback_5fargs_5ft',['timer_callback_args_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__callback__args__t',1,'']]], - ['timer_5fcfg_5ft',['timer_cfg_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__cfg__t',1,'']]], - ['timer_5finfo_5ft',['timer_info_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__info__t',1,'']]], - ['timer_5finstance_5ft',['timer_instance_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__instance__t',1,'']]], - ['timer_5fstatus_5ft',['timer_status_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__status__t',1,'']]], - ['transfer_5fapi_5ft',['transfer_api_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__api__t',1,'']]], - ['transfer_5fcfg_5ft',['transfer_cfg_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__cfg__t',1,'']]], - ['transfer_5finfo_5ft',['transfer_info_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__info__t',1,'']]], - ['transfer_5finstance_5ft',['transfer_instance_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__instance__t',1,'']]], - ['transfer_5fproperties_5ft',['transfer_properties_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__properties__t',1,'']]] + ['sci_5fb_5fbaud_5fsetting_5ft',['sci_b_baud_setting_t',['../group___s_c_i___b___u_a_r_t.html#structsci__b__baud__setting__t',1,'']]], + ['sci_5fb_5fi2c_5fclock_5fsettings_5ft',['sci_b_i2c_clock_settings_t',['../group___s_c_i___b___i2_c.html#structsci__b__i2c__clock__settings__t',1,'']]], + ['sci_5fb_5fi2c_5fextended_5fcfg_5ft',['sci_b_i2c_extended_cfg_t',['../group___s_c_i___b___i2_c.html#structsci__b__i2c__extended__cfg__t',1,'']]], + ['sci_5fb_5fi2c_5finstance_5fctrl_5ft',['sci_b_i2c_instance_ctrl_t',['../group___s_c_i___b___i2_c.html#structsci__b__i2c__instance__ctrl__t',1,'']]], + ['sci_5fb_5fuart_5fextended_5fcfg_5ft',['sci_b_uart_extended_cfg_t',['../group___s_c_i___b___u_a_r_t.html#structsci__b__uart__extended__cfg__t',1,'']]], + ['sci_5fb_5fuart_5fhalf_5fdata_5fsetting_5ft',['sci_b_uart_half_data_setting_t',['../group___s_c_i___b___u_a_r_t.html#structsci__b__uart__half__data__setting__t',1,'']]], + ['sci_5fb_5fuart_5finstance_5fctrl_5ft',['sci_b_uart_instance_ctrl_t',['../group___s_c_i___b___u_a_r_t.html#structsci__b__uart__instance__ctrl__t',1,'']]], + ['sci_5fb_5fuart_5frs485_5fsetting_5ft',['sci_b_uart_rs485_setting_t',['../group___s_c_i___b___u_a_r_t.html#structsci__b__uart__rs485__setting__t',1,'']]], + ['sci_5fuart_5frs485_5fsetting_5ft',['sci_uart_rs485_setting_t',['../group___s_c_i_f___u_a_r_t.html#structsci__uart__rs485__setting__t',1,'']]], + ['scif_5fbaud_5fsetting_5ft',['scif_baud_setting_t',['../group___s_c_i_f___u_a_r_t.html#structscif__baud__setting__t',1,'']]], + ['scif_5fuart_5fextended_5fcfg_5ft',['scif_uart_extended_cfg_t',['../group___s_c_i_f___u_a_r_t.html#structscif__uart__extended__cfg__t',1,'']]], + ['scif_5fuart_5finstance_5fctrl_5ft',['scif_uart_instance_ctrl_t',['../group___s_c_i_f___u_a_r_t.html#structscif__uart__instance__ctrl__t',1,'']]], + ['spi_5fapi_5ft',['spi_api_t',['../group___s_p_i___a_p_i.html#structspi__api__t',1,'']]], + ['spi_5fb_5fextended_5fcfg_5ft',['spi_b_extended_cfg_t',['../group___s_p_i___b.html#structspi__b__extended__cfg__t',1,'']]], + ['spi_5fb_5finstance_5fctrl_5ft',['spi_b_instance_ctrl_t',['../group___s_p_i___b.html#structspi__b__instance__ctrl__t',1,'']]], + ['spi_5fcallback_5fargs_5ft',['spi_callback_args_t',['../group___s_p_i___a_p_i.html#structspi__callback__args__t',1,'']]], + ['spi_5fcfg_5ft',['spi_cfg_t',['../group___s_p_i___a_p_i.html#structspi__cfg__t',1,'']]], + ['spi_5fflash_5fapi_5ft',['spi_flash_api_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__api__t',1,'']]], + ['spi_5fflash_5fcfg_5ft',['spi_flash_cfg_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__cfg__t',1,'']]], + ['spi_5fflash_5fdirect_5ftransfer_5ft',['spi_flash_direct_transfer_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__direct__transfer__t',1,'']]], + ['spi_5fflash_5ferase_5fcommand_5ft',['spi_flash_erase_command_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__erase__command__t',1,'']]], + ['spi_5fflash_5finstance_5ft',['spi_flash_instance_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__instance__t',1,'']]], + ['spi_5fflash_5fstatus_5ft',['spi_flash_status_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#structspi__flash__status__t',1,'']]], + ['spi_5finstance_5ft',['spi_instance_t',['../group___s_p_i___a_p_i.html#structspi__instance__t',1,'']]], + ['spi_5fwrite_5fread_5fguard_5fargs_5ft',['spi_write_read_guard_args_t',['../group___s_p_i___a_p_i.html#structspi__write__read__guard__args__t',1,'']]] ]; diff --git a/search/classes_b.js b/search/classes_b.js index 7376a8d..8c7bd0d 100644 --- a/search/classes_b.js +++ b/search/classes_b.js @@ -1,8 +1,16 @@ var searchData= [ - ['uart_5fapi_5ft',['uart_api_t',['../group___u_a_r_t___a_p_i.html#structuart__api__t',1,'']]], - ['uart_5fcallback_5fargs_5ft',['uart_callback_args_t',['../group___u_a_r_t___a_p_i.html#structuart__callback__args__t',1,'']]], - ['uart_5fcfg_5ft',['uart_cfg_t',['../group___u_a_r_t___a_p_i.html#structuart__cfg__t',1,'']]], - ['uart_5finfo_5ft',['uart_info_t',['../group___u_a_r_t___a_p_i.html#structuart__info__t',1,'']]], - ['uart_5finstance_5ft',['uart_instance_t',['../group___u_a_r_t___a_p_i.html#structuart__instance__t',1,'']]] + ['timer_5fapi_5ft',['timer_api_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__api__t',1,'']]], + ['timer_5fcallback_5fargs_5ft',['timer_callback_args_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__callback__args__t',1,'']]], + ['timer_5fcfg_5ft',['timer_cfg_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__cfg__t',1,'']]], + ['timer_5finfo_5ft',['timer_info_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__info__t',1,'']]], + ['timer_5finstance_5ft',['timer_instance_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__instance__t',1,'']]], + ['timer_5fstatus_5ft',['timer_status_t',['../group___t_i_m_e_r___a_p_i.html#structtimer__status__t',1,'']]], + ['transfer_5fapi_5ft',['transfer_api_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__api__t',1,'']]], + ['transfer_5fcfg_5ft',['transfer_cfg_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__cfg__t',1,'']]], + ['transfer_5finfo_5ft',['transfer_info_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__info__t',1,'']]], + ['transfer_5finstance_5ft',['transfer_instance_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__instance__t',1,'']]], + ['transfer_5fproperties_5ft',['transfer_properties_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#structtransfer__properties__t',1,'']]], + ['tsu_5fb_5fextended_5fcfg_5ft',['tsu_b_extended_cfg_t',['../group___t_s_u___b.html#structtsu__b__extended__cfg__t',1,'']]], + ['tsu_5fb_5finstance_5fctrl_5ft',['tsu_b_instance_ctrl_t',['../group___t_s_u___b.html#structtsu__b__instance__ctrl__t',1,'']]] ]; diff --git a/search/classes_c.js b/search/classes_c.js index 8f101cc..7376a8d 100644 --- a/search/classes_c.js +++ b/search/classes_c.js @@ -1,4 +1,8 @@ var searchData= [ - ['xmpu_5fsettings',['xMPU_SETTINGS',['../structx_m_p_u___s_e_t_t_i_n_g_s.html',1,'']]] + ['uart_5fapi_5ft',['uart_api_t',['../group___u_a_r_t___a_p_i.html#structuart__api__t',1,'']]], + ['uart_5fcallback_5fargs_5ft',['uart_callback_args_t',['../group___u_a_r_t___a_p_i.html#structuart__callback__args__t',1,'']]], + ['uart_5fcfg_5ft',['uart_cfg_t',['../group___u_a_r_t___a_p_i.html#structuart__cfg__t',1,'']]], + ['uart_5finfo_5ft',['uart_info_t',['../group___u_a_r_t___a_p_i.html#structuart__info__t',1,'']]], + ['uart_5finstance_5ft',['uart_instance_t',['../group___u_a_r_t___a_p_i.html#structuart__instance__t',1,'']]] ]; diff --git a/search/classes_d.js b/search/classes_d.js index acde949..ba61fce 100644 --- a/search/classes_d.js +++ b/search/classes_d.js @@ -1,6 +1,10 @@ var searchData= [ - ['zmod4xxx_5fconf',['zmod4xxx_conf',['../structzmod4xxx__conf.html',1,'']]], - ['zmod4xxx_5fconf_5fstr',['zmod4xxx_conf_str',['../structzmod4xxx__conf__str.html',1,'']]], - ['zmod4xxx_5fdev_5ft',['zmod4xxx_dev_t',['../structzmod4xxx__dev__t.html',1,'']]] + ['wdt_5fapi_5ft',['wdt_api_t',['../group___w_d_t___a_p_i.html#structwdt__api__t',1,'']]], + ['wdt_5fcallback_5fargs_5ft',['wdt_callback_args_t',['../group___w_d_t___a_p_i.html#structwdt__callback__args__t',1,'']]], + ['wdt_5fcfg_5ft',['wdt_cfg_t',['../group___w_d_t___a_p_i.html#structwdt__cfg__t',1,'']]], + ['wdt_5fextended_5fcfg_5ft',['wdt_extended_cfg_t',['../group___w_d_t.html#structwdt__extended__cfg__t',1,'']]], + ['wdt_5finstance_5fctrl_5ft',['wdt_instance_ctrl_t',['../group___w_d_t.html#structwdt__instance__ctrl__t',1,'']]], + ['wdt_5finstance_5ft',['wdt_instance_t',['../group___w_d_t___a_p_i.html#structwdt__instance__t',1,'']]], + ['wdt_5ftimeout_5fvalues_5ft',['wdt_timeout_values_t',['../group___w_d_t___a_p_i.html#structwdt__timeout__values__t',1,'']]] ]; diff --git a/search/classes_e.html b/search/classes_e.html new file mode 100644 index 0000000..9a9f48c --- /dev/null +++ b/search/classes_e.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/classes_e.js b/search/classes_e.js new file mode 100644 index 0000000..1f5553e --- /dev/null +++ b/search/classes_e.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['xmpu_5fsettings',['xMPU_SETTINGS',['../structx_m_p_u___s_e_t_t_i_n_g_s.html',1,'']]], + ['xspi_5fqspi_5finstance_5fctrl_5ft',['xspi_qspi_instance_ctrl_t',['../group___x_s_p_i___q_s_p_i.html#structxspi__qspi__instance__ctrl__t',1,'']]] +]; diff --git a/search/classes_f.html b/search/classes_f.html new file mode 100644 index 0000000..a128d60 --- /dev/null +++ b/search/classes_f.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/classes_f.js b/search/classes_f.js new file mode 100644 index 0000000..acde949 --- /dev/null +++ b/search/classes_f.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['zmod4xxx_5fconf',['zmod4xxx_conf',['../structzmod4xxx__conf.html',1,'']]], + ['zmod4xxx_5fconf_5fstr',['zmod4xxx_conf_str',['../structzmod4xxx__conf__str.html',1,'']]], + ['zmod4xxx_5fdev_5ft',['zmod4xxx_dev_t',['../structzmod4xxx__dev__t.html',1,'']]] +]; diff --git a/search/enums_0.js b/search/enums_0.js index 46dc06e..42d7e99 100644 --- a/search/enums_0.js +++ b/search/enums_0.js @@ -1,10 +1,31 @@ var searchData= [ - ['bsp_5fdelay_5funits_5ft',['bsp_delay_units_t',['../group___b_s_p___m_c_u.html#gafd98e2a6f080d6a52a3ef72e3d731b2b',1,'bsp_delay.h']]], - ['bsp_5fgrp_5firq_5ft',['bsp_grp_irq_t',['../group___b_s_p___m_c_u.html#ga72e70676360e6a4d753a8d235e6b93a2',1,'bsp_group_irq.h']]], - ['bsp_5fio_5fdirection_5ft',['bsp_io_direction_t',['../group___b_s_p___i_o.html#ga45a10c059c82e2062c0b72fa801dd78b',1,'bsp_io.h']]], - ['bsp_5fio_5flevel_5ft',['bsp_io_level_t',['../group___b_s_p___i_o.html#gab4ef0cc3fce421d48310f23c614aadc0',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5fpin_5ft',['bsp_io_port_pin_t',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5ft',['bsp_io_port_t',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46e',1,'bsp_io.h']]], - ['bsp_5fwarm_5fstart_5fevent_5ft',['bsp_warm_start_event_t',['../group___b_s_p___m_c_u.html#ga6fe6dc3c0813eeae8665430a31c005b4',1,'bsp_common.h']]] + ['adc_5falignment_5ft',['adc_alignment_t',['../group___a_d_c___a_p_i.html#gaab0104c9c876400deb5772a77c1c5d76',1,'r_adc_api.h']]], + ['adc_5fc_5factive_5ftrigger_5ft',['adc_c_active_trigger_t',['../group___a_d_c___c.html#ga7491e0c2eab4266fd44d7f92a3c69324',1,'r_adc_c.h']]], + ['adc_5fc_5fbuffer_5fmode_5ft',['adc_c_buffer_mode_t',['../group___a_d_c___c.html#gaa825c3919bb78f2b06cfb42e726f507b',1,'r_adc_c.h']]], + ['adc_5fc_5ffilter_5fstage_5fsetting_5ft',['adc_c_filter_stage_setting_t',['../group___a_d_c___c.html#ga034ccf534ec5fed75f8c33ad29c8e3be',1,'r_adc_c.h']]], + ['adc_5fc_5finput_5fmode_5ft',['adc_c_input_mode_t',['../group___a_d_c___c.html#ga50e12110f82b457bdd59bd0dbc0d0d89',1,'r_adc_c.h']]], + ['adc_5fc_5finterrupt_5fchannel_5fsetting_5ft',['adc_c_interrupt_channel_setting_t',['../group___a_d_c___c.html#gab74afcc80bd6ce8980feeadb9352449e',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5ft',['adc_c_mask_t',['../group___a_d_c___c.html#ga2f01cf47970d9f474abd9f8b68a36abf',1,'r_adc_c.h']]], + ['adc_5fc_5foperating_5fmode_5ft',['adc_c_operating_mode_t',['../group___a_d_c___c.html#ga1f6acb79f1626e0bd35e6f90752a015c',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fedge_5ft',['adc_c_trigger_edge_t',['../group___a_d_c___c.html#gaddac3354631a273d32f50f65b271de49',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fmode_5ft',['adc_c_trigger_mode_t',['../group___a_d_c___c.html#ga63b54f9f14640dd93668df6b63fa5208',1,'r_adc_c.h']]], + ['adc_5fchannel_5ft',['adc_channel_t',['../group___a_d_c___a_p_i.html#gaafc4060027875f8fe46242b0656d7814',1,'r_adc_api.h']]], + ['adc_5fe_5factive_5ftrigger_5ft',['adc_e_active_trigger_t',['../group___a_d_c___e.html#gae49c0a7e6cc3e0a75850e2529e2f557f',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5ft',['adc_e_add_t',['../group___a_d_c___e.html#gab0e11d4b95e596d916dc4eb65e22d4d3',1,'r_adc_e.h']]], + ['adc_5fe_5fclear_5ft',['adc_e_clear_t',['../group___a_d_c___e.html#ga422cf88cc9da3ba156d8714d12ab76ce',1,'r_adc_e.h']]], + ['adc_5fe_5fcompare_5fcfg_5ft',['adc_e_compare_cfg_t',['../group___a_d_c___e.html#ga4134f7cacd8b7ef6961cf6016097fb8b',1,'r_adc_e.h']]], + ['adc_5fe_5fdouble_5ftrigger_5ft',['adc_e_double_trigger_t',['../group___a_d_c___e.html#gac0b5736dc0689efc4adc399542f3071c',1,'r_adc_e.h']]], + ['adc_5fe_5felc_5ft',['adc_e_elc_t',['../group___a_d_c___e.html#gaa7e9c8ba1296fac868aa6decfa2225b4',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5ft',['adc_e_grpa_t',['../group___a_d_c___e.html#gaecc60f4098d74dddf3a8e98aa65e43af',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5ft',['adc_e_mask_t',['../group___a_d_c___e.html#ga04662c7da4042227d066baa5b109090b',1,'r_adc_e.h']]], + ['adc_5fe_5fwindow_5fb_5fchannel_5ft',['adc_e_window_b_channel_t',['../group___a_d_c___e.html#ga48312e85efd2f501384dd2df0b8f0288',1,'r_adc_e.h']]], + ['adc_5fe_5fwindow_5fb_5fmode_5ft',['adc_e_window_b_mode_t',['../group___a_d_c___e.html#ga647576a53ba70232efbd36994a8cd98c',1,'r_adc_e.h']]], + ['adc_5fevent_5ft',['adc_event_t',['../group___a_d_c___a_p_i.html#gae2177d6e5bf43e3749cc60f835456847',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5ft',['adc_group_id_t',['../group___a_d_c___a_p_i.html#ga625267e574e3f26d9d55918652e91176',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5ft',['adc_group_mask_t',['../group___a_d_c___a_p_i.html#gaee17c30275c1c9376cc485a62ea121eb',1,'r_adc_api.h']]], + ['adc_5fmode_5ft',['adc_mode_t',['../group___a_d_c___a_p_i.html#ga760a8dafdcddcfadfea0aa3e01159164',1,'r_adc_api.h']]], + ['adc_5fresolution_5ft',['adc_resolution_t',['../group___a_d_c___a_p_i.html#gaf88bfcbfc4a19c82f8bb423218d13cda',1,'r_adc_api.h']]], + ['adc_5fstate_5ft',['adc_state_t',['../group___a_d_c___a_p_i.html#ga2783ab2e29809bf0a50bc66c6fa8d3c6',1,'r_adc_api.h']]], + ['adc_5ftrigger_5ft',['adc_trigger_t',['../group___a_d_c___a_p_i.html#ga1ac380ffe2ebef256338616747d330e3',1,'r_adc_api.h']]] ]; diff --git a/search/enums_1.js b/search/enums_1.js index 497dcf5..d4d36c1 100644 --- a/search/enums_1.js +++ b/search/enums_1.js @@ -1,21 +1,22 @@ var searchData= [ - ['can_5fclock_5fsource_5ft',['can_clock_source_t',['../group___c_a_n___a_p_i.html#ga5bf3c71a3b53b409e9ee682c69189a39',1,'r_can_api.h']]], - ['can_5fevent_5ft',['can_event_t',['../group___c_a_n___a_p_i.html#gacc2e5bc68e8b707c069ca27f521695db',1,'r_can_api.h']]], - ['can_5fframe_5ftype_5ft',['can_frame_type_t',['../group___c_a_n___a_p_i.html#gad3ffe1ae0429fcd1053a969d96c47610',1,'r_can_api.h']]], - ['can_5fglobal_5fid_5fmode_5ft',['can_global_id_mode_t',['../group___c_a_n___a_p_i.html#gab798132b937282be9589b6ed177ea999',1,'r_can_api.h']]], - ['can_5fid_5fmode_5ft',['can_id_mode_t',['../group___c_a_n___a_p_i.html#gabc98e244722dcea05b5ce91bdb4c70c8',1,'r_can_api.h']]], - ['can_5fmailbox_5fsend_5freceive_5ft',['can_mailbox_send_receive_t',['../group___c_a_n___a_p_i.html#ga99db0880f7c03215e00781d3e57db3a3',1,'r_can_api.h']]], - ['can_5fmessage_5fmode_5ft',['can_message_mode_t',['../group___c_a_n___a_p_i.html#ga42c6d0b24e77b50c47ec54bafcac7604',1,'r_can_api.h']]], - ['can_5foperation_5fmode_5ft',['can_operation_mode_t',['../group___c_a_n___a_p_i.html#gac29bd7d00b06d7457ae786471c296ba7',1,'r_can_api.h']]], - ['can_5ftest_5fmode_5ft',['can_test_mode_t',['../group___c_a_n___a_p_i.html#ga93f2b2c53f782b0c21beeb1339a108b7',1,'r_can_api.h']]], - ['canfd_5ferror_5ft',['canfd_error_t',['../group___c_a_n_f_d.html#ga1598f08872dd960675f060c7e8c35cf4',1,'r_canfd.h']]], - ['canfd_5fframe_5foptions_5ft',['canfd_frame_options_t',['../group___c_a_n_f_d.html#ga6c4d104c3a9cce6b74a05035f0af6d87',1,'r_canfd.h']]], - ['canfd_5fminimum_5fdlc_5ft',['canfd_minimum_dlc_t',['../group___c_a_n_f_d.html#gae6c27cee7d37eff10c6bfa5250eafc8d',1,'r_canfd.h']]], - ['canfd_5frx_5fbuffer_5ft',['canfd_rx_buffer_t',['../group___c_a_n_f_d.html#gacccf33f0942180054dd71c26c512844d',1,'r_canfd.h']]], - ['canfd_5frx_5ffifo_5ft',['canfd_rx_fifo_t',['../group___c_a_n_f_d.html#ga0d7e38baf7141e9bad96675f5169e44b',1,'r_canfd.h']]], - ['canfd_5frx_5fmb_5ft',['canfd_rx_mb_t',['../group___c_a_n_f_d.html#ga888e511bc0fbb0ba049b49250400631f',1,'r_canfd.h']]], - ['canfd_5fstatus_5ft',['canfd_status_t',['../group___c_a_n_f_d.html#ga9bc23367cb7fb757b5ce2f29323524c0',1,'r_canfd.h']]], - ['canfd_5ftx_5fmb_5ft',['canfd_tx_mb_t',['../group___c_a_n_f_d.html#gaa7408bbf08466fb0f6025a8dfd93c714',1,'r_canfd.h']]], - ['canfd_5ftxmb_5fmerge_5fmode_5ft',['canfd_txmb_merge_mode_t',['../group___c_a_n_f_d.html#gad89cfc4708b4a1cf7a57e4fcd3ffacfc',1,'r_canfd.h']]] + ['bsp_5fbypass_5ffreq_5frange_5ft',['bsp_bypass_freq_range_t',['../group___b_s_p___i_o.html#gabb6374b9eb754bff909bb9b0d25a04fb',1,'bsp_io.h']]], + ['bsp_5fbypass_5fmode_5ft',['bsp_bypass_mode_t',['../group___b_s_p___i_o.html#ga65987c1da1d49f85463de102d5d24c2e',1,'bsp_io.h']]], + ['bsp_5fbypass_5foscillator_5ft',['bsp_bypass_oscillator_t',['../group___b_s_p___i_o.html#ga78e68e2247154764cd7d387d3b191095',1,'bsp_io.h']]], + ['bsp_5fdelay_5funits_5ft',['bsp_delay_units_t',['../group___b_s_p___m_c_u.html#gafd98e2a6f080d6a52a3ef72e3d731b2b',1,'bsp_delay.h']]], + ['bsp_5fethernet_5fchannel_5ft',['bsp_ethernet_channel_t',['../group___b_s_p___i_o.html#ga7a9217abd402bee215bab2874db8dbcd',1,'bsp_io.h']]], + ['bsp_5fethernet_5fmode_5ft',['bsp_ethernet_mode_t',['../group___b_s_p___i_o.html#ga96797df60510eb9bc4a73613de51fae5',1,'bsp_io.h']]], + ['bsp_5fethernet_5fvoltage_5ft',['bsp_ethernet_voltage_t',['../group___b_s_p___i_o.html#ga0eaa3fb56a6c45bb8725d7ccc3c7c67e',1,'bsp_io.h']]], + ['bsp_5fgrp_5firq_5ft',['bsp_grp_irq_t',['../group___b_s_p___m_c_u.html#ga72e70676360e6a4d753a8d235e6b93a2',1,'bsp_group_irq.h']]], + ['bsp_5fi3c_5fmode_5ft',['bsp_i3c_mode_t',['../group___b_s_p___i_o.html#gaf63bd80b976004bd5ed7fd251fcdf1b4',1,'bsp_io.h']]], + ['bsp_5fi3c_5fvoltage_5ft',['bsp_i3c_voltage_t',['../group___b_s_p___i_o.html#gac4cc2c33eed8a21f90fac99d323a2b85',1,'bsp_io.h']]], + ['bsp_5fio_5fdirection_5ft',['bsp_io_direction_t',['../group___b_s_p___i_o.html#ga45a10c059c82e2062c0b72fa801dd78b',1,'bsp_io.h']]], + ['bsp_5fio_5flevel_5ft',['bsp_io_level_t',['../group___b_s_p___i_o.html#gab4ef0cc3fce421d48310f23c614aadc0',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5fpin_5ft',['bsp_io_port_pin_t',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5ft',['bsp_io_port_t',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46e',1,'bsp_io.h']]], + ['bsp_5fqspi_5fvoltage_5ft',['bsp_qspi_voltage_t',['../group___b_s_p___i_o.html#gac10820a16ee9dcbe7fbbd21ad81eee9f',1,'bsp_io.h']]], + ['bsp_5fsd_5fchannel_5ft',['bsp_sd_channel_t',['../group___b_s_p___i_o.html#gad0c359892ab6323f72558fb6f0efbb39',1,'bsp_io.h']]], + ['bsp_5fsd_5fvoltage_5ft',['bsp_sd_voltage_t',['../group___b_s_p___i_o.html#ga5909e53671d51b521963bb4a9c5bb961',1,'bsp_io.h']]], + ['bsp_5fwarm_5fstart_5fevent_5ft',['bsp_warm_start_event_t',['../group___b_s_p___m_c_u.html#ga6fe6dc3c0813eeae8665430a31c005b4',1,'bsp_warm_start_event_t(): bsp_common.h'],['../group___b_s_p___m_c_u.html#ga6fe6dc3c0813eeae8665430a31c005b4',1,'bsp_warm_start_event_t(): bsp_common.h']]], + ['bsp_5fxspi_5fvoltage_5ft',['bsp_xspi_voltage_t',['../group___b_s_p___i_o.html#gaca40cd8c80dc5bf04d65d3d5db9e3d7c',1,'bsp_io.h']]] ]; diff --git a/search/enums_2.js b/search/enums_2.js index 8bee71b..0d88655 100644 --- a/search/enums_2.js +++ b/search/enums_2.js @@ -1,5 +1,26 @@ var searchData= [ - ['external_5firq_5fpclk_5fdiv_5ft',['external_irq_pclk_div_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ga692e093fc800ee08e3f84fae648372d8',1,'r_external_irq_api.h']]], - ['external_5firq_5ftrigger_5ft',['external_irq_trigger_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ga2d1960d763da14da209e16fbb972d57c',1,'r_external_irq_api.h']]] + ['can_5fevent_5ft',['can_event_t',['../group___c_a_n___a_p_i.html#gacc2e5bc68e8b707c069ca27f521695db',1,'r_can_api.h']]], + ['can_5fframe_5ftype_5ft',['can_frame_type_t',['../group___c_a_n___a_p_i.html#gad3ffe1ae0429fcd1053a969d96c47610',1,'r_can_api.h']]], + ['can_5fid_5fmode_5ft',['can_id_mode_t',['../group___c_a_n___a_p_i.html#gabc98e244722dcea05b5ce91bdb4c70c8',1,'r_can_api.h']]], + ['can_5foperation_5fmode_5ft',['can_operation_mode_t',['../group___c_a_n___a_p_i.html#gac29bd7d00b06d7457ae786471c296ba7',1,'r_can_api.h']]], + ['can_5ftest_5fmode_5ft',['can_test_mode_t',['../group___c_a_n___a_p_i.html#ga93f2b2c53f782b0c21beeb1339a108b7',1,'r_can_api.h']]], + ['canfd_5ferror_5ft',['canfd_error_t',['../group___c_a_n_f_d.html#ga1598f08872dd960675f060c7e8c35cf4',1,'r_canfd.h']]], + ['canfd_5fframe_5foptions_5ft',['canfd_frame_options_t',['../group___c_a_n_f_d.html#ga6c4d104c3a9cce6b74a05035f0af6d87',1,'r_canfd.h']]], + ['canfd_5fminimum_5fdlc_5ft',['canfd_minimum_dlc_t',['../group___c_a_n_f_d.html#gae6c27cee7d37eff10c6bfa5250eafc8d',1,'r_canfd.h']]], + ['canfd_5frx_5fbuffer_5ft',['canfd_rx_buffer_t',['../group___c_a_n_f_d.html#gacccf33f0942180054dd71c26c512844d',1,'r_canfd.h']]], + ['canfd_5frx_5ffifo_5ft',['canfd_rx_fifo_t',['../group___c_a_n_f_d.html#ga0d7e38baf7141e9bad96675f5169e44b',1,'r_canfd.h']]], + ['canfd_5frx_5fmb_5ft',['canfd_rx_mb_t',['../group___c_a_n_f_d.html#ga888e511bc0fbb0ba049b49250400631f',1,'r_canfd.h']]], + ['canfd_5fstatus_5ft',['canfd_status_t',['../group___c_a_n_f_d.html#ga9bc23367cb7fb757b5ce2f29323524c0',1,'r_canfd.h']]], + ['canfd_5ftx_5fmb_5ft',['canfd_tx_mb_t',['../group___c_a_n_f_d.html#gaa7408bbf08466fb0f6025a8dfd93c714',1,'r_canfd.h']]], + ['canfd_5ftxmb_5fmerge_5fmode_5ft',['canfd_txmb_merge_mode_t',['../group___c_a_n_f_d.html#gad89cfc4708b4a1cf7a57e4fcd3ffacfc',1,'r_canfd.h']]], + ['cmtw_5fclear_5fsource_5ft',['cmtw_clear_source_t',['../group___c_m_t_w.html#gab8cb04d74fe011e5742d07cddb9a8447',1,'r_cmtw.h']]], + ['cmtw_5finput_5fcontrol_5ft',['cmtw_input_control_t',['../group___c_m_t_w.html#gaa69aac2c20f895bd57f0d4dfa9da9c84',1,'r_cmtw.h']]], + ['cmtw_5fio_5fpin_5ft',['cmtw_io_pin_t',['../group___c_m_t_w.html#gaf5f1958607aa6c7f52f4e47195e3a61f',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fcontrol_5ft',['cmtw_output_control_t',['../group___c_m_t_w.html#ga0d3145595cde1b2a26d8812cbb1aac5c',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fpin_5ft',['cmtw_output_pin_t',['../group___c_m_t_w.html#ga46ea17c23eab6d920c84290eb5769f6b',1,'r_cmtw.h']]], + ['cmtw_5fsource_5fedge_5ft',['cmtw_source_edge_t',['../group___c_m_t_w.html#ga7bf1b1875884b0e1c847a3b54c440763',1,'r_cmtw.h']]], + ['crc_5fbit_5forder_5ft',['crc_bit_order_t',['../group___c_r_c___a_p_i.html#ga5d770a90efa92855a81b5ae47b50db70',1,'r_crc_api.h']]], + ['crc_5fpolynomial_5ft',['crc_polynomial_t',['../group___c_r_c___a_p_i.html#ga7daa8fa0df9f42a98afcf766a63d931d',1,'r_crc_api.h']]], + ['crc_5fsnoop_5fdirection_5ft',['crc_snoop_direction_t',['../group___c_r_c___a_p_i.html#gad26e18afbb5663c0bcb91d62d418e2e3',1,'r_crc_api.h']]] ]; diff --git a/search/enums_3.js b/search/enums_3.js index ff8f978..fb6586f 100644 --- a/search/enums_3.js +++ b/search/enums_3.js @@ -1,5 +1,12 @@ var searchData= [ - ['fsp_5ferr_5ft',['fsp_err_t',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#gadfb1288da0fcc7ae1dc88c58601374f8',1,'fsp_common_api.h']]], - ['fsp_5fip_5ft',['fsp_ip_t',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950',1,'fsp_features.h']]] + ['dmac_5fb_5fack_5fmode_5ft',['dmac_b_ack_mode_t',['../group___d_m_a_c___b.html#ga46c5c66fc820831bb56b5f6554f2890e',1,'r_dmac_b.h']]], + ['dmac_5fb_5fchannel_5fscheduling_5ft',['dmac_b_channel_scheduling_t',['../group___d_m_a_c___b.html#gab359dcd5cfb24ecd20655106c9397d63',1,'r_dmac_b.h']]], + ['dmac_5fb_5fcontinuous_5fsetting_5ft',['dmac_b_continuous_setting_t',['../group___d_m_a_c___b.html#ga096bd7a43751a80690fd7ed3454b78a7',1,'r_dmac_b.h']]], + ['dmac_5fb_5fevent_5ft',['dmac_b_event_t',['../group___d_m_a_c___b.html#ga1ea3acbac3625e15f0b656d9b220cc8a',1,'r_dmac_b.h']]], + ['dmac_5fb_5fexternal_5fdetection_5ft',['dmac_b_external_detection_t',['../group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355b',1,'r_dmac_b.h']]], + ['dmac_5fb_5finternal_5fdetection_5ft',['dmac_b_internal_detection_t',['../group___d_m_a_c___b.html#gaa15ccc56c79f1686821605ef2b8f36b9',1,'r_dmac_b.h']]], + ['dmac_5fb_5fmode_5fselect_5ft',['dmac_b_mode_select_t',['../group___d_m_a_c___b.html#ga94e377366e55d6e30cf97102474a5320',1,'r_dmac_b.h']]], + ['dmac_5fb_5frequest_5fdirection_5ft',['dmac_b_request_direction_t',['../group___d_m_a_c___b.html#ga16f1e4bdd626e2ffc16b8852ca8d8c29',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5ft',['dmac_b_transfer_size_t',['../group___d_m_a_c___b.html#ga77c350dbc52956dc8b1ce4987e721e05',1,'r_dmac_b.h']]] ]; diff --git a/search/enums_4.js b/search/enums_4.js index 3fed39e..6c57da2 100644 --- a/search/enums_4.js +++ b/search/enums_4.js @@ -1,18 +1,8 @@ var searchData= [ - ['gpt_5fadc_5fcompare_5fmatch_5ft',['gpt_adc_compare_match_t',['../group___g_p_t.html#ga2a838fffcbafd97778bbe3ffbfbf54b1',1,'r_gpt.h']]], - ['gpt_5fadc_5ftrigger_5ft',['gpt_adc_trigger_t',['../group___g_p_t.html#ga6dfe4ddfb53ba52c674039fd20b6c2b6',1,'r_gpt.h']]], - ['gpt_5fbuffer_5fmode_5ft',['gpt_buffer_mode_t',['../group___g_p_t.html#ga28d354e417a7a6666e0819387d8e7d8a',1,'r_gpt.h']]], - ['gpt_5fcapture_5ffilter_5ft',['gpt_capture_filter_t',['../group___g_p_t.html#ga4781e2b42b2ef339318ea0a70b250cd5',1,'r_gpt.h']]], - ['gpt_5fgtioc_5fdisable_5ft',['gpt_gtioc_disable_t',['../group___g_p_t.html#ga82d61d33edf38d50f1247d1d55ec506b',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fadc_5ft',['gpt_interrupt_skip_adc_t',['../group___g_p_t.html#ga9928e374919fa53240edaca52412beaa',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fcount_5ft',['gpt_interrupt_skip_count_t',['../group___g_p_t.html#gac737ceea25e4989a9afbf47969a71ba3',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fsource_5ft',['gpt_interrupt_skip_source_t',['../group___g_p_t.html#ga88d6114404f61d9ca10684f393deb613',1,'r_gpt.h']]], - ['gpt_5fio_5fpin_5ft',['gpt_io_pin_t',['../group___g_p_t.html#gaabd4a03d16b1b4254cc44c7779f44c60',1,'r_gpt.h']]], - ['gpt_5foutput_5fdisable_5ft',['gpt_output_disable_t',['../group___g_p_t.html#ga7e57d68f5f5d9757bab01857e8252ade',1,'r_gpt.h']]], - ['gpt_5fpin_5flevel_5ft',['gpt_pin_level_t',['../group___g_p_t.html#ga454c639e426428470ce78115af5d3648',1,'r_gpt.h']]], - ['gpt_5fpoeg_5flink_5ft',['gpt_poeg_link_t',['../group___g_p_t.html#gac13c16f82e0b7cafcdb8eb6892722943',1,'r_gpt.h']]], - ['gpt_5fsource_5ft',['gpt_source_t',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196a',1,'r_gpt.h']]], - ['gtm_5fgiws_5ftype_5ft',['gtm_giws_type_t',['../group___g_t_m.html#gaae830979c17ceebe80264f0727e8a6b6',1,'r_gtm.h']]], - ['gtm_5ftimer_5fmode_5ft',['gtm_timer_mode_t',['../group___g_t_m.html#gab3167c9bca77864d1f1c325314462618',1,'r_gtm.h']]] + ['elc_5fevent_5ft',['elc_event_t',['../group___b_s_p___m_c_u___r_z_v2_h.html#gaebe723200f2a7f181f08324128b9d7b5',1,'bsp_elc.h']]], + ['elc_5fperipheral_5ft',['elc_peripheral_t',['../group___e_l_c___a_p_i.html#gaa5bf5e18ceb8cf51ac6dce985f9230a7',1,'r_elc_api.h']]], + ['elc_5fsoftware_5fevent_5ft',['elc_software_event_t',['../group___e_l_c___a_p_i.html#ga5fed76c06664ddad69c5a7ccb0330f0e',1,'r_elc_api.h']]], + ['external_5firq_5fpclk_5fdiv_5ft',['external_irq_pclk_div_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ga692e093fc800ee08e3f84fae648372d8',1,'r_external_irq_api.h']]], + ['external_5firq_5ftrigger_5ft',['external_irq_trigger_t',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ga2d1960d763da14da209e16fbb972d57c',1,'r_external_irq_api.h']]] ]; diff --git a/search/enums_5.js b/search/enums_5.js index 7bf805e..ff8f978 100644 --- a/search/enums_5.js +++ b/search/enums_5.js @@ -1,18 +1,5 @@ var searchData= [ - ['i2c_5fmaster_5faddr_5fmode_5ft',['i2c_master_addr_mode_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ga6203bcd8d8127b8fd442a2d33d112940',1,'r_i2c_master_api.h']]], - ['i2c_5fmaster_5fevent_5ft',['i2c_master_event_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ga515f0c8b583f8851ce4d6474168769af',1,'r_i2c_master_api.h']]], - ['i2c_5fmaster_5frate_5ft',['i2c_master_rate_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#gaa30dd03665bdc1134233e8e2b1631f0a',1,'r_i2c_master_api.h']]], - ['iic_5fmaster_5ftimeout_5fmode_5ft',['iic_master_timeout_mode_t',['../group___r_i_i_c___m_a_s_t_e_r.html#gaf8ecd43a76bfa058281bb8b6b3981d3f',1,'r_riic_master.h']]], - ['ioport_5fcfg_5foptions_5ft',['ioport_cfg_options_t',['../group___i_o_p_o_r_t___a_p_i.html#gac617eebcb7c2c1e45fa8e04fc473e574',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fchannel_5ft',['ioport_ethernet_channel_t',['../group___i_o_p_o_r_t___a_p_i.html#gaf6a78fbc73b4e8acef86a12c21df2da0',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fmode_5ft',['ioport_ethernet_mode_t',['../group___i_o_p_o_r_t___a_p_i.html#gacaee6fc466858446638e79354043bb78',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fvoltage_5ft',['ioport_ethernet_voltage_t',['../group___i_o_p_o_r_t___a_p_i.html#ga76937b0cdeebfff6a5b22e5e89cb18b0',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5ft',['ioport_peripheral_t',['../group___i_o_p_o_r_t___a_p_i.html#gaebbb969fda93422aaf1878d6f4ff8fe8',1,'r_ioport_api.h']]], - ['ioport_5fport_5fpin_5ft',['ioport_port_pin_t',['../group___i_o_p_o_r_t.html#ga3a0a7f66458384069f25931ecb83840e',1,'r_ioport.h']]], - ['ioport_5fpwpr_5ft',['ioport_pwpr_t',['../group___i_o_p_o_r_t___a_p_i.html#ga25ef8d1291cc073dd48f57b16d91c13e',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fchannel_5ft',['ioport_qspi_channel_t',['../group___i_o_p_o_r_t___a_p_i.html#ga5948fec6dc0aecb3c09f9acec96fefca',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fvoltage_5ft',['ioport_qspi_voltage_t',['../group___i_o_p_o_r_t___a_p_i.html#ga6714c32ad1f21415d3c99d4f2d027616',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fchannel_5ft',['ioport_sd_channel_t',['../group___i_o_p_o_r_t___a_p_i.html#ga1e307d6ac8fce46a7b7c5a97acb66883',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fvoltage_5ft',['ioport_sd_voltage_t',['../group___i_o_p_o_r_t___a_p_i.html#gae6d3ffb13bd84935331f3b9f01607f41',1,'r_ioport_api.h']]] + ['fsp_5ferr_5ft',['fsp_err_t',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#gadfb1288da0fcc7ae1dc88c58601374f8',1,'fsp_common_api.h']]], + ['fsp_5fip_5ft',['fsp_ip_t',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950',1,'fsp_features.h']]] ]; diff --git a/search/enums_6.js b/search/enums_6.js index 3cc69d5..6e54a77 100644 --- a/search/enums_6.js +++ b/search/enums_6.js @@ -1,4 +1,21 @@ var searchData= [ - ['mhu_5fsend_5ftype_5ft',['mhu_send_type_t',['../group___m_h_u___a_p_i.html#ga2f810fc1366dd26cd5632846a65407ae',1,'r_mhu_api.h']]] + ['gpt_5fadc_5fcompare_5fmatch_5ft',['gpt_adc_compare_match_t',['../group___g_p_t.html#ga2a838fffcbafd97778bbe3ffbfbf54b1',1,'r_gpt.h']]], + ['gpt_5fadc_5ftrigger_5ft',['gpt_adc_trigger_t',['../group___g_p_t.html#ga6dfe4ddfb53ba52c674039fd20b6c2b6',1,'r_gpt.h']]], + ['gpt_5fbuffer_5fforce_5fpush',['gpt_buffer_force_push',['../group___g_p_t.html#ga8abd050b841fe99c9b641a22c69501c5',1,'r_gpt.h']]], + ['gpt_5fbuffer_5fmode_5ft',['gpt_buffer_mode_t',['../group___g_p_t.html#ga28d354e417a7a6666e0819387d8e7d8a',1,'r_gpt.h']]], + ['gpt_5fcapture_5ffilter_5ft',['gpt_capture_filter_t',['../group___g_p_t.html#ga4781e2b42b2ef339318ea0a70b250cd5',1,'r_gpt.h']]], + ['gpt_5fgtioc_5fdisable_5ft',['gpt_gtioc_disable_t',['../group___g_p_t.html#ga82d61d33edf38d50f1247d1d55ec506b',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fadc_5ft',['gpt_interrupt_skip_adc_t',['../group___g_p_t.html#ga9928e374919fa53240edaca52412beaa',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fcount_5ft',['gpt_interrupt_skip_count_t',['../group___g_p_t.html#gac737ceea25e4989a9afbf47969a71ba3',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fsource_5ft',['gpt_interrupt_skip_source_t',['../group___g_p_t.html#ga88d6114404f61d9ca10684f393deb613',1,'r_gpt.h']]], + ['gpt_5fio_5fpin_5ft',['gpt_io_pin_t',['../group___g_p_t.html#gaabd4a03d16b1b4254cc44c7779f44c60',1,'r_gpt.h']]], + ['gpt_5foutput_5fdisable_5ft',['gpt_output_disable_t',['../group___g_p_t.html#ga7e57d68f5f5d9757bab01857e8252ade',1,'r_gpt.h']]], + ['gpt_5fpin_5flevel_5ft',['gpt_pin_level_t',['../group___g_p_t.html#ga454c639e426428470ce78115af5d3648',1,'r_gpt.h']]], + ['gpt_5fpoeg_5flink_5ft',['gpt_poeg_link_t',['../group___g_p_t.html#gac13c16f82e0b7cafcdb8eb6892722943',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fedge_5ft',['gpt_pwm_output_delay_edge_t',['../group___g_p_t.html#ga6a1389fe5c3bef2301d294b88263628e',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5ft',['gpt_pwm_output_delay_setting_t',['../group___g_p_t.html#ga749be81f99469c5607a684976d9ae374',1,'r_gpt.h']]], + ['gpt_5fsource_5ft',['gpt_source_t',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196a',1,'r_gpt.h']]], + ['gtm_5fgiws_5ftype_5ft',['gtm_giws_type_t',['../group___g_t_m.html#gaae830979c17ceebe80264f0727e8a6b6',1,'r_gtm.h']]], + ['gtm_5ftimer_5fmode_5ft',['gtm_timer_mode_t',['../group___g_t_m.html#gab3167c9bca77864d1f1c325314462618',1,'r_gtm.h']]] ]; diff --git a/search/enums_7.js b/search/enums_7.js index 2ad86d7..3d2e72b 100644 --- a/search/enums_7.js +++ b/search/enums_7.js @@ -1,7 +1,33 @@ var searchData= [ - ['poeg_5fgtetrg_5fnoise_5ffilter_5ft',['poeg_gtetrg_noise_filter_t',['../group___p_o_e_g___a_p_i.html#gab482b24d14d1c94f6f4ba9f5e39f8d0b',1,'r_poeg_api.h']]], - ['poeg_5fgtetrg_5fpolarity_5ft',['poeg_gtetrg_polarity_t',['../group___p_o_e_g___a_p_i.html#gaab60100277a3b044c01007e6142704b9',1,'r_poeg_api.h']]], - ['poeg_5fstate_5ft',['poeg_state_t',['../group___p_o_e_g___a_p_i.html#ga6964e3b0b8b2d32d2428d86b32dfeef2',1,'r_poeg_api.h']]], - ['poeg_5ftrigger_5ft',['poeg_trigger_t',['../group___p_o_e_g___a_p_i.html#gad3a55ae7d23b90cc2621a83116d2e7d9',1,'r_poeg_api.h']]] + ['i2c_5fmaster_5faddr_5fmode_5ft',['i2c_master_addr_mode_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ga6203bcd8d8127b8fd442a2d33d112940',1,'r_i2c_master_api.h']]], + ['i2c_5fmaster_5fevent_5ft',['i2c_master_event_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ga515f0c8b583f8851ce4d6474168769af',1,'r_i2c_master_api.h']]], + ['i2c_5fmaster_5frate_5ft',['i2c_master_rate_t',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#gaa30dd03665bdc1134233e8e2b1631f0a',1,'r_i2c_master_api.h']]], + ['i2c_5fslave_5faddr_5fmode_5ft',['i2c_slave_addr_mode_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#ga8e76d805f1f518bf83a84f9df65beb1b',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5ft',['i2c_slave_event_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#gad8b613f0d4e9d1b9511ca0b6d6ab7e8c',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5frate_5ft',['i2c_slave_rate_t',['../group___i2_c___s_l_a_v_e___a_p_i.html#gaa26f7dd0df29bb18d57fa02c7f64588d',1,'r_i2c_slave_api.h']]], + ['i3c_5faddress_5fassignment_5fmode_5ft',['i3c_address_assignment_mode_t',['../group___i3_c___a_p_i.html#ga6ebef50cdf52650f03e1b449325779fc',1,'r_i3c_api.h']]], + ['i3c_5fb_5factivity_5fstate_5ft',['i3c_b_activity_state_t',['../group___i3_c___b.html#gab3ffca78d7da057f277bfd8ce2ef2e1a',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5ft',['i3c_b_bitrate_mode_t',['../group___i3_c___b.html#gac8fb0ec859c44282b8323eb13de6ad3c',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5ft',['i3c_b_clock_data_turnaround_t',['../group___i3_c___b.html#ga3289540419912324ce02f19ed6a972ca',1,'r_i3c_b.h']]], + ['i3c_5fb_5fdata_5frate_5fsetting_5ft',['i3c_b_data_rate_setting_t',['../group___i3_c___b.html#gaa100c24dc68792009da85deed2f6387a',1,'r_i3c_b.h']]], + ['i3c_5fcommon_5fcommand_5fcode_5ft',['i3c_common_command_code_t',['../group___i3_c___a_p_i.html#gae0fcac252ef200a5a24cdadfa123dc52',1,'r_i3c_api.h']]], + ['i3c_5fdevice_5fprotocol_5ft',['i3c_device_protocol_t',['../group___i3_c___a_p_i.html#gaa7585dee427a1d95926f88dd55ecf305',1,'r_i3c_api.h']]], + ['i3c_5fdevice_5ftype_5ft',['i3c_device_type_t',['../group___i3_c___a_p_i.html#ga890e3f0ba27c4a963dc5901bfbed439c',1,'r_i3c_api.h']]], + ['i3c_5fevent_5ft',['i3c_event_t',['../group___i3_c___a_p_i.html#gaaeacda02a21254776fcbc47ab1ff265c',1,'r_i3c_api.h']]], + ['i3c_5fibi_5ftype_5ft',['i3c_ibi_type_t',['../group___i3_c___a_p_i.html#ga81ac58196d67e74a0a3702c3e760ede7',1,'r_i3c_api.h']]], + ['iic_5fmaster_5ftimeout_5fmode_5ft',['iic_master_timeout_mode_t',['../group___r_i_i_c___m_a_s_t_e_r.html#gaf8ecd43a76bfa058281bb8b6b3981d3f',1,'r_riic_master.h']]], + ['iic_5fmaster_5ftimeout_5fscl_5flow_5ft',['iic_master_timeout_scl_low_t',['../group___r_i_i_c___m_a_s_t_e_r.html#ga9789e54472d093bd5348f202205d28ec',1,'r_riic_master.h']]], + ['intc_5ftint_5ftrigger_5ft',['intc_tint_trigger_t',['../group___i_n_t_c___t_i_n_t.html#ga050a0c4d8019d4576ca781ec7d27c5ed',1,'r_intc_tint.h']]], + ['ioport_5fcfg_5foptions_5ft',['ioport_cfg_options_t',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574',1,'r_ioport.h']]], + ['ioport_5fevent_5fcontrol_5ft',['ioport_event_control_t',['../group___i_o_p_o_r_t.html#ga04dddafb062136b04f33eeea27648397',1,'r_ioport.h']]], + ['ioport_5fevent_5fdetection_5ft',['ioport_event_detection_t',['../group___i_o_p_o_r_t.html#ga4f8bf2319abee01387ae77ca7e85fb0a',1,'r_ioport.h']]], + ['ioport_5fevent_5fdirection_5ft',['ioport_event_direction_t',['../group___i_o_p_o_r_t.html#ga06a4ad7ce5b0c573328feccb1e2c54fb',1,'r_ioport.h']]], + ['ioport_5fevent_5finitial_5fbuffer_5fvalue_5ft',['ioport_event_initial_buffer_value_t',['../group___i_o_p_o_r_t.html#gad182b542c7455ca61b70f0eeae3a380d',1,'r_ioport.h']]], + ['ioport_5fevent_5foutput_5foperation_5ft',['ioport_event_output_operation_t',['../group___i_o_p_o_r_t.html#ga6baec76057e6dbc11b3de637ba3ca76e',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5ft',['ioport_event_pin_selection_t',['../group___i_o_p_o_r_t.html#gac5793f51f8a5eb8095c52f9d633f94c3',1,'r_ioport.h']]], + ['ioport_5fnoise_5ffilter_5fdreq_5fport_5foffset_5ft',['ioport_noise_filter_dreq_port_offset_t',['../group___i_o_p_o_r_t.html#gaaa22d49ec43030ad6ed6bb18ed402f8d',1,'r_ioport.h']]], + ['ioport_5fnoise_5ffilter_5firq_5fport_5foffset_5ft',['ioport_noise_filter_irq_port_offset_t',['../group___i_o_p_o_r_t.html#ga460f424ee2c2c60d463bbdd45f9a2d4b',1,'r_ioport.h']]], + ['ioport_5fperipheral_5ft',['ioport_peripheral_t',['../group___i_o_p_o_r_t.html#gaebbb969fda93422aaf1878d6f4ff8fe8',1,'r_ioport.h']]], + ['ioport_5fpwpr_5ft',['ioport_pwpr_t',['../group___i_o_p_o_r_t___a_p_i.html#ga25ef8d1291cc073dd48f57b16d91c13e',1,'r_ioport_api.h']]] ]; diff --git a/search/enums_8.js b/search/enums_8.js index b702274..2b08457 100644 --- a/search/enums_8.js +++ b/search/enums_8.js @@ -1,42 +1,17 @@ var searchData= [ - ['rm_5fcomms_5fevent_5ft',['rm_comms_event_t',['../group___r_m___c_o_m_m_s___a_p_i.html#ga2f3ec78f69db27d891220c31183a7936',1,'rm_comms_api.h']]], - ['rm_5fhs300x_5fdata_5ftype_5ft',['rm_hs300x_data_type_t',['../group___r_m___h_s300_x___a_p_i.html#gaaab827d822b03dfceb75bb3071a4fad1',1,'rm_hs300x_api.h']]], - ['rm_5fhs300x_5fevent_5ft',['rm_hs300x_event_t',['../group___r_m___h_s300_x___a_p_i.html#gad56a7deec64851bc4919a7367823eecd',1,'rm_hs300x_api.h']]], - ['rm_5fhs300x_5fresolution_5ft',['rm_hs300x_resolution_t',['../group___r_m___h_s300_x___a_p_i.html#ga655f98816c2ac07b37b6b81ad8981c02',1,'rm_hs300x_api.h']]], - ['rm_5fhs400x_5fevent_5ft',['rm_hs400x_event_t',['../group___r_m___h_s400_x___a_p_i.html#gadb5e6e3edfdfe9ee37e4ed7941513032',1,'rm_hs400x_api.h']]], - ['rm_5fhs400x_5fhumidity_5fresolution_5ft',['rm_hs400x_humidity_resolution_t',['../group___r_m___h_s400_x___a_p_i.html#ga0593682edecc45c93a952cee4da7de1b',1,'rm_hs400x_api.h']]], - ['rm_5fhs400x_5fperiodic_5fmeasurement_5ffrequency_5ft',['rm_hs400x_periodic_measurement_frequency_t',['../group___r_m___h_s400_x___a_p_i.html#ga6ab3f5a23c4ddfcbf416027512700d69',1,'rm_hs400x_api.h']]], - ['rm_5fhs400x_5ftemperature_5fresolution_5ft',['rm_hs400x_temperature_resolution_t',['../group___r_m___h_s400_x___a_p_i.html#ga5b0c2c5ce80e20f899cce8ac4d85cf84',1,'rm_hs400x_api.h']]], - ['rm_5fob1203_5fanalog_5fcancellation_5ft',['rm_ob1203_analog_cancellation_t',['../group___r_m___o_b1203___a_p_i.html#ga4d79e3bac567b22223b4e219a6ee7f34',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fevent_5ft',['rm_ob1203_event_t',['../group___r_m___o_b1203___a_p_i.html#ga649fde9081cd4c40cac825f132598091',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5ffifo_5frollover_5ft',['rm_ob1203_fifo_rollover_t',['../group___r_m___o_b1203___a_p_i.html#ga41b9839d52cdeaa01260dc24932d6fe3',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fled_5forder_5ft',['rm_ob1203_led_order_t',['../group___r_m___o_b1203___a_p_i.html#gab0d74efedf983faf97798d0136376219',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5ft',['rm_ob1203_light_data_type_t',['../group___r_m___o_b1203___a_p_i.html#ga0c0d347b4e6af84c4f4148ea68280337',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fgain_5ft',['rm_ob1203_light_gain_t',['../group___r_m___o_b1203___a_p_i.html#gaa246c1288f2d4941973249afa6acb4d4',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5fsource_5ft',['rm_ob1203_light_interrupt_source_t',['../group___r_m___o_b1203___a_p_i.html#gad65df49755c15c3a73ea8eb8ca2a9e3a',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5ftype_5ft',['rm_ob1203_light_interrupt_type_t',['../group___r_m___o_b1203___a_p_i.html#ga4569d4be03632003ce030d966d4e02c5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5fmeas_5fperiod_5ft',['rm_ob1203_light_resolution_meas_period_t',['../group___r_m___o_b1203___a_p_i.html#gab55b5fd0ddd115230c80a2ef140cfdc8',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fsensor_5fmode_5ft',['rm_ob1203_light_sensor_mode_t',['../group___r_m___o_b1203___a_p_i.html#ga35f1462a48dabaf6cf97ece29efe6271',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fmoving_5faverage_5ft',['rm_ob1203_moving_average_t',['../group___r_m___o_b1203___a_p_i.html#ga110a5efe8990e8dd03692e565f452910',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnumber_5faveraged_5fsamples_5ft',['rm_ob1203_number_averaged_samples_t',['../group___r_m___o_b1203___a_p_i.html#ga7dc5ec94376eb3c1fa0a16b549c56f5d',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnumber_5fled_5fpulses_5ft',['rm_ob1203_number_led_pulses_t',['../group___r_m___o_b1203___a_p_i.html#gaf6e99ef0d49ecff17a9ffd16f0b096e6',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5foperation_5fmode_5ft',['rm_ob1203_operation_mode_t',['../group___r_m___o_b1203___a_p_i.html#ga6c3b7fc2670bb119c9eb07acecf69847',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fpower_5fsave_5fmode_5ft',['rm_ob1203_power_save_mode_t',['../group___r_m___o_b1203___a_p_i.html#ga904954d6bf969490d7fc31d1589fba5c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5finterrupt_5ftype_5ft',['rm_ob1203_ppg_interrupt_type_t',['../group___r_m___o_b1203___a_p_i.html#ga8ee7cd0bc32e3c09662791b7e86ffe83',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fprox_5fgain_5ft',['rm_ob1203_ppg_prox_gain_t',['../group___r_m___o_b1203___a_p_i.html#ga02afdc6d89538793ab3f1ebd2a84ff6f',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fpulse_5fwidth_5fmeas_5fperiod_5ft',['rm_ob1203_ppg_pulse_width_meas_period_t',['../group___r_m___o_b1203___a_p_i.html#ga5bb022affce59b47909e01ae68d01f5c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fsensor_5fmode_5ft',['rm_ob1203_ppg_sensor_mode_t',['../group___r_m___o_b1203___a_p_i.html#ga073572d75f036110608bf2a723c62fc8',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5finterrupt_5ftype_5ft',['rm_ob1203_prox_interrupt_type_t',['../group___r_m___o_b1203___a_p_i.html#gaac3af213866be23053d28609f06bf748',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fpulse_5fwidth_5fmeas_5fperiod_5ft',['rm_ob1203_prox_pulse_width_meas_period_t',['../group___r_m___o_b1203___a_p_i.html#ga463e63a319a589ebdcf29b0b482b2f00',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fsleep_5fafter_5finterrupt_5ft',['rm_ob1203_sleep_after_interrupt_t',['../group___r_m___o_b1203___a_p_i.html#ga3de882d54ed2555e788d24da2059217d',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5ft',['rm_ob1203_variance_threshold_t',['../group___r_m___o_b1203___a_p_i.html#gaeae8a766bbc25cd6e1097c44f03c8dea',1,'rm_ob1203_api.h']]], - ['rm_5fzmod4xxx_5fevent_5ft',['rm_zmod4xxx_event_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#gadd54ca8592a0f7cb81913d2250e89060',1,'rm_zmod4xxx_api.h']]], - ['rm_5fzmod4xxx_5flib_5ftype_5ft',['rm_zmod4xxx_lib_type_t',['../group___r_m___z_m_o_d4_x_x_x.html#gacebf611dd2d5d0b091db57023ea373b6',1,'rm_zmod4xxx.h']]], - ['rm_5fzmod4xxx_5fsulfur_5fodor_5ft',['rm_zmod4xxx_sulfur_odor_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ga47f50ad1a54e470fb44b443351c39beb',1,'rm_zmod4xxx_api.h']]], - ['rspi_5fdelay_5fcount_5ft',['rspi_delay_count_t',['../group___r_s_p_i.html#ga8f68c8c6c98ee871ad72bbb94c559775',1,'r_rspi.h']]], - ['rspi_5fmosi_5fidle_5fvalue_5ffixing_5ft',['rspi_mosi_idle_value_fixing_t',['../group___r_s_p_i.html#gae3deb1d097bc300a5ed42849ebb200c6',1,'r_rspi.h']]], - ['rspi_5frx_5ftrigger_5flevel_5ft',['rspi_rx_trigger_level_t',['../group___r_s_p_i.html#ga431fc619396f9d5cf2f1c495c2ed59ca',1,'r_rspi.h']]], - ['rspi_5fssl_5fpolarity_5ft',['rspi_ssl_polarity_t',['../group___r_s_p_i.html#ga2342f44b16c4072b5e9302c4f05b4f94',1,'r_rspi.h']]], - ['rspi_5ftx_5ftrigger_5flevel_5ft',['rspi_tx_trigger_level_t',['../group___r_s_p_i.html#ga8e48fdc14874a5cba28661ae549203ab',1,'r_rspi.h']]] + ['mhu_5fsend_5ftype_5ft',['mhu_send_type_t',['../group___m_h_u___a_p_i.html#ga2f810fc1366dd26cd5632846a65407ae',1,'r_mhu_api.h']]], + ['mtu3_5fadc_5factivation_5ftgra_5fcompare_5fmatch_5ft',['mtu3_adc_activation_tgra_compare_match_t',['../group___m_t_u3.html#ga8d63ef78e4ad3838c53bc5683d6d3485',1,'r_mtu3.h']]], + ['mtu3_5fadc_5fcompare_5fmatch_5ft',['mtu3_adc_compare_match_t',['../group___m_t_u3.html#ga41121fd0c747ec6e3ba93bcc94a73bdd',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5ft',['mtu3_clock_div_t',['../group___m_t_u3.html#ga9a9eea39b2f02b777dba8d344dc8eb3b',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fedge_5ft',['mtu3_clock_edge_t',['../group___m_t_u3.html#gaef0d6e7f5f99c9142dea22471d60df36',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5ft',['mtu3_interrupt_skip_count_t',['../group___m_t_u3.html#ga3ad32e2d3e0cebb7645750d6c0a8f692',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fmode_5ft',['mtu3_interrupt_skip_mode_t',['../group___m_t_u3.html#gaa9f9735282373eede4951043c95c2312',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5ft',['mtu3_io_pin_level_t',['../group___m_t_u3.html#ga4a8786cd182fb52e974c1214c2de627a',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5ft',['mtu3_io_pin_t',['../group___m_t_u3.html#ga8a74b8a0003ccd7602df801eb863a4ce',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fclock_5ft',['mtu3_noise_filter_clock_t',['../group___m_t_u3.html#gac04b193c244956523c5c5f0d70b29af5',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fexternal_5fclock_5ft',['mtu3_noise_filter_external_clock_t',['../group___m_t_u3.html#ga7e7928e4452d8a06a86269dcabc3a485',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fmtclk_5ft',['mtu3_noise_filter_mtclk_t',['../group___m_t_u3.html#ga000c28bcf923d3ccd0642c3c5dd9a794',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5ft',['mtu3_noise_filter_t',['../group___m_t_u3.html#ga6ce62ddb141bf440c0539fc47512c586',1,'r_mtu3.h']]], + ['mtu3_5ftcnt_5fclear_5ft',['mtu3_tcnt_clear_t',['../group___m_t_u3.html#ga031ed640883cba19cb1243d46ea54709',1,'r_mtu3.h']]] ]; diff --git a/search/enums_9.js b/search/enums_9.js index 59cf795..19fd4ee 100644 --- a/search/enums_9.js +++ b/search/enums_9.js @@ -1,16 +1,19 @@ var searchData= [ - ['scif_5fclk_5fsrc_5ft',['scif_clk_src_t',['../group___s_c_i_f___u_a_r_t.html#gaa31fbf8041a381d6da9c454be58ad613',1,'r_scif_uart.h']]], - ['scif_5fuart_5fflow_5fcontrol_5ft',['scif_uart_flow_control_t',['../group___s_c_i_f___u_a_r_t.html#ga023aa56b9ce183733d7933bf750fab6f',1,'r_scif_uart.h']]], - ['scif_5fuart_5fmode_5ft',['scif_uart_mode_t',['../group___s_c_i_f___u_a_r_t.html#ga3a8c9e8d2860a4f467aca2ae92675d4c',1,'r_scif_uart.h']]], - ['scif_5fuart_5fnoise_5fcancellation_5ft',['scif_uart_noise_cancellation_t',['../group___s_c_i_f___u_a_r_t.html#ga94601e39cbf40b77e5e4236385b58704',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5ft',['scif_uart_receive_trigger_t',['../group___s_c_i_f___u_a_r_t.html#ga5d3f2e170b79de59f46ae864fc993e95',1,'r_scif_uart.h']]], - ['scif_5fuart_5frts_5ftrigger_5ft',['scif_uart_rts_trigger_t',['../group___s_c_i_f___u_a_r_t.html#gaaee66fa30e6f9f0efb538ecb91a9ad89',1,'r_scif_uart.h']]], - ['spi_5fbit_5forder_5ft',['spi_bit_order_t',['../group___s_p_i___a_p_i.html#ga90f5b39d4872c0c09255af5dcea6cd3e',1,'r_spi_api.h']]], - ['spi_5fbit_5fwidth_5ft',['spi_bit_width_t',['../group___s_p_i___a_p_i.html#ga6ba4a8eef274a5b227fc2ab6ee61f8fd',1,'r_spi_api.h']]], - ['spi_5fclk_5fphase_5ft',['spi_clk_phase_t',['../group___s_p_i___a_p_i.html#gae514c0ed7b5a86723aa9451d623d35ab',1,'r_spi_api.h']]], - ['spi_5fclk_5fpolarity_5ft',['spi_clk_polarity_t',['../group___s_p_i___a_p_i.html#ga28c820896d3da6e8173ed07f7ca89cb0',1,'r_spi_api.h']]], - ['spi_5fevent_5ft',['spi_event_t',['../group___s_p_i___a_p_i.html#ga6e4960e8b344a8a8ec60f0c11d60f54c',1,'r_spi_api.h']]], - ['spi_5fmode_5ffault_5ft',['spi_mode_fault_t',['../group___s_p_i___a_p_i.html#gad24d01aba46c370e11e3f2df7d9b6776',1,'r_spi_api.h']]], - ['spi_5fmode_5ft',['spi_mode_t',['../group___s_p_i___a_p_i.html#gac4b206a51636d91c5cffcbcee458c3cb',1,'r_spi_api.h']]] + ['pdm_5fclk_5fdiv_5ft',['pdm_clk_div_t',['../group___p_d_m.html#ga2666e0193f3d484391172283f9532c71',1,'r_pdm.h']]], + ['pdm_5fcompensation_5ffilter_5fshift_5ft',['pdm_compensation_filter_shift_t',['../group___p_d_m.html#gad6b9c09e74442b86d88d1718f30844bc',1,'r_pdm.h']]], + ['pdm_5ferror_5ft',['pdm_error_t',['../group___p_d_m___a_p_i.html#gaf682776db13b51a982b047a8eb5fef2d',1,'r_pdm_api.h']]], + ['pdm_5fevent_5ft',['pdm_event_t',['../group___p_d_m___a_p_i.html#gafb514c195258d2f14c8e18e3778ad946',1,'r_pdm_api.h']]], + ['pdm_5fhigh_5fpass_5ffilter_5fshift_5ft',['pdm_high_pass_filter_shift_t',['../group___p_d_m.html#gaf2a94b0febed706bdad5526b11cb50c1',1,'r_pdm.h']]], + ['pdm_5finput_5fdata_5fedge_5ft',['pdm_input_data_edge_t',['../group___p_d_m___a_p_i.html#ga471ab0afd7d0f709e50ece23087b1759',1,'r_pdm_api.h']]], + ['pdm_5finterrupt_5fthreshold_5ft',['pdm_interrupt_threshold_t',['../group___p_d_m.html#gaa14fe788b2c7ab49898fb7030c7fbee8',1,'r_pdm.h']]], + ['pdm_5flow_5fpass_5ffilter_5fshift_5ft',['pdm_low_pass_filter_shift_t',['../group___p_d_m.html#gacaad67afced89e9de93c82536d4dea0b',1,'r_pdm.h']]], + ['pdm_5fmoving_5faverage_5fmode_5ft',['pdm_moving_average_mode_t',['../group___p_d_m.html#ga667e7ccab805f0976adc5015ecc35ecb',1,'r_pdm.h']]], + ['pdm_5fpcm_5fwidth_5ft',['pdm_pcm_width_t',['../group___p_d_m___a_p_i.html#gac80768e70548497f4a739b84d0af572f',1,'r_pdm_api.h']]], + ['pdm_5fsinc_5ffilter_5fmode_5ft',['pdm_sinc_filter_mode_t',['../group___p_d_m.html#ga10725534d91789f15654a46786339569',1,'r_pdm.h']]], + ['pdm_5fstate_5ft',['pdm_state_t',['../group___p_d_m___a_p_i.html#ga09df76d543b0cc6b39c5fed3bf1f4485',1,'r_pdm_api.h']]], + ['poeg_5fgtetrg_5fnoise_5ffilter_5ft',['poeg_gtetrg_noise_filter_t',['../group___p_o_e_g___a_p_i.html#gab482b24d14d1c94f6f4ba9f5e39f8d0b',1,'r_poeg_api.h']]], + ['poeg_5fgtetrg_5fpolarity_5ft',['poeg_gtetrg_polarity_t',['../group___p_o_e_g___a_p_i.html#gaab60100277a3b044c01007e6142704b9',1,'r_poeg_api.h']]], + ['poeg_5fstate_5ft',['poeg_state_t',['../group___p_o_e_g___a_p_i.html#ga6964e3b0b8b2d32d2428d86b32dfeef2',1,'r_poeg_api.h']]], + ['poeg_5ftrigger_5ft',['poeg_trigger_t',['../group___p_o_e_g___a_p_i.html#gad3a55ae7d23b90cc2621a83116d2e7d9',1,'r_poeg_api.h']]] ]; diff --git a/search/enums_a.js b/search/enums_a.js index c2196f2..0946559 100644 --- a/search/enums_a.js +++ b/search/enums_a.js @@ -1,16 +1,29 @@ var searchData= [ - ['timer_5fdirection_5ft',['timer_direction_t',['../group___t_i_m_e_r___a_p_i.html#ga8d600bb7885c5490bb7e8f989aa2ff83',1,'r_timer_api.h']]], - ['timer_5fevent_5ft',['timer_event_t',['../group___t_i_m_e_r___a_p_i.html#gac3bee51f7c9078f794c5ac19522f91eb',1,'r_timer_api.h']]], - ['timer_5fmode_5ft',['timer_mode_t',['../group___t_i_m_e_r___a_p_i.html#ga6d4cd64aed5c0009ac26803efc9c13b2',1,'r_timer_api.h']]], - ['timer_5fsource_5fdiv_5ft',['timer_source_div_t',['../group___t_i_m_e_r___a_p_i.html#ga820b425b44d7b551afd1797ecca7a5ad',1,'r_timer_api.h']]], - ['timer_5fstate_5ft',['timer_state_t',['../group___t_i_m_e_r___a_p_i.html#ga1360292eee5d5a5288646fd1eb37c83e',1,'r_timer_api.h']]], - ['timer_5fvariant_5ft',['timer_variant_t',['../group___t_i_m_e_r___a_p_i.html#gaa3525eef2e1fa1bc8809b2d3aaf0de5d',1,'r_timer_api.h']]], - ['transfer_5faddr_5fmode_5ft',['transfer_addr_mode_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51',1,'r_transfer_api.h']]], - ['transfer_5fchain_5fmode_5ft',['transfer_chain_mode_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga68f81dc8b9ca46fbe3a1e556c020436d',1,'r_transfer_api.h']]], - ['transfer_5firq_5ft',['transfer_irq_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gad71bdadb7f486bb5d3ca6ff508dc0b08',1,'r_transfer_api.h']]], - ['transfer_5fmode_5ft',['transfer_mode_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992f',1,'r_transfer_api.h']]], - ['transfer_5frepeat_5farea_5ft',['transfer_repeat_area_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga769464d2068881ccb44573c96167812b',1,'r_transfer_api.h']]], - ['transfer_5fsize_5ft',['transfer_size_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12',1,'r_transfer_api.h']]], - ['transfer_5fstart_5fmode_5ft',['transfer_start_mode_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga11917a0ab2cb8b878937c97691b07fd9',1,'r_transfer_api.h']]] + ['rm_5fcomms_5fevent_5ft',['rm_comms_event_t',['../group___r_m___c_o_m_m_s___a_p_i.html#ga2f3ec78f69db27d891220c31183a7936',1,'rm_comms_api.h']]], + ['rm_5fhs300x_5fdata_5ftype_5ft',['rm_hs300x_data_type_t',['../group___r_m___h_s300_x___a_p_i.html#gaaab827d822b03dfceb75bb3071a4fad1',1,'rm_hs300x_api.h']]], + ['rm_5fhs300x_5fevent_5ft',['rm_hs300x_event_t',['../group___r_m___h_s300_x___a_p_i.html#gad56a7deec64851bc4919a7367823eecd',1,'rm_hs300x_api.h']]], + ['rm_5fhs300x_5fresolution_5ft',['rm_hs300x_resolution_t',['../group___r_m___h_s300_x___a_p_i.html#ga655f98816c2ac07b37b6b81ad8981c02',1,'rm_hs300x_api.h']]], + ['rm_5fhs400x_5fevent_5ft',['rm_hs400x_event_t',['../group___r_m___h_s400_x___a_p_i.html#gadb5e6e3edfdfe9ee37e4ed7941513032',1,'rm_hs400x_api.h']]], + ['rm_5fhs400x_5fhumidity_5fresolution_5ft',['rm_hs400x_humidity_resolution_t',['../group___r_m___h_s400_x___a_p_i.html#ga0593682edecc45c93a952cee4da7de1b',1,'rm_hs400x_api.h']]], + ['rm_5fhs400x_5fperiodic_5fmeasurement_5ffrequency_5ft',['rm_hs400x_periodic_measurement_frequency_t',['../group___r_m___h_s400_x___a_p_i.html#ga6ab3f5a23c4ddfcbf416027512700d69',1,'rm_hs400x_api.h']]], + ['rm_5fhs400x_5ftemperature_5fresolution_5ft',['rm_hs400x_temperature_resolution_t',['../group___r_m___h_s400_x___a_p_i.html#ga5b0c2c5ce80e20f899cce8ac4d85cf84',1,'rm_hs400x_api.h']]], + ['rm_5fzmod4xxx_5fevent_5ft',['rm_zmod4xxx_event_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#gadd54ca8592a0f7cb81913d2250e89060',1,'rm_zmod4xxx_api.h']]], + ['rm_5fzmod4xxx_5flib_5ftype_5ft',['rm_zmod4xxx_lib_type_t',['../group___r_m___z_m_o_d4_x_x_x.html#gacebf611dd2d5d0b091db57023ea373b6',1,'rm_zmod4xxx.h']]], + ['rm_5fzmod4xxx_5fsulfur_5fodor_5ft',['rm_zmod4xxx_sulfur_odor_t',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ga47f50ad1a54e470fb44b443351c39beb',1,'rm_zmod4xxx_api.h']]], + ['rspi_5fdelay_5fcount_5ft',['rspi_delay_count_t',['../group___r_s_p_i.html#ga8f68c8c6c98ee871ad72bbb94c559775',1,'r_rspi.h']]], + ['rspi_5fmosi_5fidle_5fvalue_5ffixing_5ft',['rspi_mosi_idle_value_fixing_t',['../group___r_s_p_i.html#gae3deb1d097bc300a5ed42849ebb200c6',1,'r_rspi.h']]], + ['rspi_5frx_5ftrigger_5flevel_5ft',['rspi_rx_trigger_level_t',['../group___r_s_p_i.html#ga431fc619396f9d5cf2f1c495c2ed59ca',1,'r_rspi.h']]], + ['rspi_5fssl_5flevel_5fkeep_5ft',['rspi_ssl_level_keep_t',['../group___r_s_p_i.html#gaae19ba80f9290f4ad12e794cf1bac9f2',1,'r_rspi.h']]], + ['rspi_5fssl_5fpolarity_5ft',['rspi_ssl_polarity_t',['../group___r_s_p_i.html#ga2342f44b16c4072b5e9302c4f05b4f94',1,'r_rspi.h']]], + ['rspi_5ftx_5ftrigger_5flevel_5ft',['rspi_tx_trigger_level_t',['../group___r_s_p_i.html#ga8e48fdc14874a5cba28661ae549203ab',1,'r_rspi.h']]], + ['rtc_5falarm_5fchannel_5ft',['rtc_alarm_channel_t',['../group___r_t_c___a_p_i.html#ga023e9e2043784cf17e3d3bf056ce14f1',1,'r_rtc_api.h']]], + ['rtc_5fclock_5fbypass_5fmode_5ft',['rtc_clock_bypass_mode_t',['../group___r_t_c.html#ga17801e1ecb103e17bf1fd092c6a48461',1,'r_rtc.h']]], + ['rtc_5fclock_5fsource_5ft',['rtc_clock_source_t',['../group___r_t_c___a_p_i.html#gad8eef26a825fa4a0c5a417f8be08ccc6',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fmode_5ft',['rtc_error_adjustment_mode_t',['../group___r_t_c___a_p_i.html#ga4cbfe07cf288ae153c30b4fef99163e7',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fperiod_5ft',['rtc_error_adjustment_period_t',['../group___r_t_c___a_p_i.html#gaa9758f6f29579df6e9f5c64ff486c097',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5ft',['rtc_error_adjustment_t',['../group___r_t_c___a_p_i.html#ga704067eae956dc872d24edf9b85b397f',1,'r_rtc_api.h']]], + ['rtc_5fevent_5ft',['rtc_event_t',['../group___r_t_c___a_p_i.html#gad2e192ed9a33b6c005c2c19ccbd6a21b',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5ft',['rtc_periodic_irq_select_t',['../group___r_t_c___a_p_i.html#gacbf0a3d09430a65ca1b3179819183f01',1,'r_rtc_api.h']]], + ['rtc_5fstatus_5ft',['rtc_status_t',['../group___r_t_c___a_p_i.html#gab1079685ed8a9d30f32062b3bfedd041',1,'r_rtc_api.h']]] ]; diff --git a/search/enums_b.js b/search/enums_b.js index 45141e2..363103f 100644 --- a/search/enums_b.js +++ b/search/enums_b.js @@ -1,8 +1,43 @@ var searchData= [ - ['uart_5fdata_5fbits_5ft',['uart_data_bits_t',['../group___u_a_r_t___a_p_i.html#gadc68b8fd9ded3990f84129df23fee798',1,'r_uart_api.h']]], - ['uart_5fdir_5ft',['uart_dir_t',['../group___u_a_r_t___a_p_i.html#gac36c5a0dffa37b418fb9425a76c57740',1,'r_uart_api.h']]], - ['uart_5fevent_5ft',['uart_event_t',['../group___u_a_r_t___a_p_i.html#gaf739f04f788018b4b59fb7ad75da0a8d',1,'r_uart_api.h']]], - ['uart_5fparity_5ft',['uart_parity_t',['../group___u_a_r_t___a_p_i.html#ga6bcc37e31dd40c204b4ac6f6189e8878',1,'r_uart_api.h']]], - ['uart_5fstop_5fbits_5ft',['uart_stop_bits_t',['../group___u_a_r_t___a_p_i.html#ga6da57a73bbdbf830b845d4116f8341d7',1,'r_uart_api.h']]] + ['sci_5fb_5fclk_5fsrc_5ft',['sci_b_clk_src_t',['../group___s_c_i___b___u_a_r_t.html#ga6c7272b892e958ee32afb345eb1d1bd0',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fi2c_5fclock_5fsource_5ft',['sci_b_i2c_clock_source_t',['../group___s_c_i___b___i2_c.html#ga0209d1279b18f095fb8147fee7933c55',1,'r_sci_b_i2c.h']]], + ['sci_5fb_5fuart_5fflow_5fcontrol_5ft',['sci_b_uart_flow_control_t',['../group___s_c_i___b___u_a_r_t.html#gac7f2f9b2d11f95e1f0c627b7523bfa89',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fhalf_5fdata_5fenable_5ft',['sci_b_uart_half_data_enable_t',['../group___s_c_i___b___u_a_r_t.html#ga3bcc863f7888e3aaee224f8854988414',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fnoise_5fcancellation_5ft',['sci_b_uart_noise_cancellation_t',['../group___s_c_i___b___u_a_r_t.html#ga0fc68d0039faa0c546bc0a3e19f64934',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frs485_5fde_5fpolarity_5ft',['sci_b_uart_rs485_de_polarity_t',['../group___s_c_i___b___u_a_r_t.html#ga0563689caceebd791581b050e4961351',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frs485_5fenable_5ft',['sci_b_uart_rs485_enable_t',['../group___s_c_i___b___u_a_r_t.html#gacab2c97394068299908eb68925eb9fc2',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frx_5ffifo_5ftrigger_5ft',['sci_b_uart_rx_fifo_trigger_t',['../group___s_c_i___b___u_a_r_t.html#ga43307f95dde50ba9e4cf9b25f0d31d84',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fstart_5fbit_5fdetect_5ft',['sci_b_uart_start_bit_detect_t',['../group___s_c_i___b___u_a_r_t.html#ga12439cb11f88f10d53b36e6fbf966ce6',1,'r_sci_b_uart.h']]], + ['sci_5fuart_5frs485_5fde_5fpolarity_5ft',['sci_uart_rs485_de_polarity_t',['../group___s_c_i_f___u_a_r_t.html#ga0bd2440ef30f2feca9a2d129989bffce',1,'r_scif_uart.h']]], + ['sci_5fuart_5frs485_5fenable_5ft',['sci_uart_rs485_enable_t',['../group___s_c_i_f___u_a_r_t.html#ga9522502f434bcaa2bbaf9cb1321ce542',1,'r_scif_uart.h']]], + ['scif_5fclk_5fsrc_5ft',['scif_clk_src_t',['../group___s_c_i_f___u_a_r_t.html#gaa31fbf8041a381d6da9c454be58ad613',1,'r_scif_uart.h']]], + ['scif_5fuart_5fflow_5fcontrol_5ft',['scif_uart_flow_control_t',['../group___s_c_i_f___u_a_r_t.html#ga023aa56b9ce183733d7933bf750fab6f',1,'r_scif_uart.h']]], + ['scif_5fuart_5fmode_5ft',['scif_uart_mode_t',['../group___s_c_i_f___u_a_r_t.html#ga3a8c9e8d2860a4f467aca2ae92675d4c',1,'r_scif_uart.h']]], + ['scif_5fuart_5fnoise_5fcancellation_5ft',['scif_uart_noise_cancellation_t',['../group___s_c_i_f___u_a_r_t.html#ga94601e39cbf40b77e5e4236385b58704',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5ft',['scif_uart_receive_trigger_t',['../group___s_c_i_f___u_a_r_t.html#ga5d3f2e170b79de59f46ae864fc993e95',1,'r_scif_uart.h']]], + ['scif_5fuart_5frts_5ftrigger_5ft',['scif_uart_rts_trigger_t',['../group___s_c_i_f___u_a_r_t.html#gaaee66fa30e6f9f0efb538ecb91a9ad89',1,'r_scif_uart.h']]], + ['spi_5fb_5fbyte_5fswap_5ft',['spi_b_byte_swap_t',['../group___s_p_i___b.html#gac08d1276c78868e2844221679e6be657',1,'r_spi_b.h']]], + ['spi_5fb_5fclock_5fsource_5ft',['spi_b_clock_source_t',['../group___s_p_i___b.html#gabb41b27e51f28d09548219c18435346b',1,'r_spi_b.h']]], + ['spi_5fb_5fcommunication_5ft',['spi_b_communication_t',['../group___s_p_i___b.html#gae6d270a0823aeddcacb4a5006546e391',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5ft',['spi_b_delay_count_t',['../group___s_p_i___b.html#ga355039269814474fa2d7a016207df18e',1,'r_spi_b.h']]], + ['spi_5fb_5fmosi_5fidle_5fvalue_5ffixing_5ft',['spi_b_mosi_idle_value_fixing_t',['../group___s_p_i___b.html#ga566538943bf7a87f8ba8add6616d41db',1,'r_spi_b.h']]], + ['spi_5fb_5fparity_5ft',['spi_b_parity_t',['../group___s_p_i___b.html#ga500334da91202c65f50e5ba4cef38dcf',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5flevel_5fkeep_5ft',['spi_b_ssl_level_keep_t',['../group___s_p_i___b.html#ga8232020978a99300962810b2e9f9dc86',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fmode_5ft',['spi_b_ssl_mode_t',['../group___s_p_i___b.html#gaacc78eca6792fd5aeb2aef6a458d8fb7',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fpolarity_5ft',['spi_b_ssl_polarity_t',['../group___s_p_i___b.html#gaaaaa1d37089a7f8d222de49d8295c116',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fselect_5ft',['spi_b_ssl_select_t',['../group___s_p_i___b.html#ga3d063bb158a1005df5c7bde81538b373',1,'r_spi_b.h']]], + ['spi_5fbit_5forder_5ft',['spi_bit_order_t',['../group___s_p_i___a_p_i.html#ga90f5b39d4872c0c09255af5dcea6cd3e',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5ft',['spi_bit_width_t',['../group___s_p_i___a_p_i.html#ga6ba4a8eef274a5b227fc2ab6ee61f8fd',1,'r_spi_api.h']]], + ['spi_5fclk_5fphase_5ft',['spi_clk_phase_t',['../group___s_p_i___a_p_i.html#gae514c0ed7b5a86723aa9451d623d35ab',1,'r_spi_api.h']]], + ['spi_5fclk_5fpolarity_5ft',['spi_clk_polarity_t',['../group___s_p_i___a_p_i.html#ga28c820896d3da6e8173ed07f7ca89cb0',1,'r_spi_api.h']]], + ['spi_5fevent_5ft',['spi_event_t',['../group___s_p_i___a_p_i.html#ga6e4960e8b344a8a8ec60f0c11d60f54c',1,'r_spi_api.h']]], + ['spi_5fflash_5faddress_5fbytes_5ft',['spi_flash_address_bytes_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ga289ef915326b8e75e7d0dd331c2d0797',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdata_5flines_5ft',['spi_flash_data_lines_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gaae5c8f99b61e37b40b13f52e146f0bc5',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdirect_5ftransfer_5fdir_5ft',['spi_flash_direct_transfer_dir_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ga80ecf65e658f5b36bfe0bf2d88dd3ca5',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5ft',['spi_flash_dummy_clocks_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gaa1e03cbf0d565f4ae7ad2e41d85802fe',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5ft',['spi_flash_protocol_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ga17c347a498a8a9d38ffc36c0de49a535',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5ft',['spi_flash_read_mode_t',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gae289e2a797dab4712dfc07986f6a3544',1,'r_spi_flash_api.h']]], + ['spi_5fmode_5ffault_5ft',['spi_mode_fault_t',['../group___s_p_i___a_p_i.html#gad24d01aba46c370e11e3f2df7d9b6776',1,'r_spi_api.h']]], + ['spi_5fmode_5ft',['spi_mode_t',['../group___s_p_i___a_p_i.html#gac4b206a51636d91c5cffcbcee458c3cb',1,'r_spi_api.h']]] ]; diff --git a/search/enums_c.html b/search/enums_c.html new file mode 100644 index 0000000..326f9f8 --- /dev/null +++ b/search/enums_c.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/enums_c.js b/search/enums_c.js new file mode 100644 index 0000000..c2c55bc --- /dev/null +++ b/search/enums_c.js @@ -0,0 +1,18 @@ +var searchData= +[ + ['timer_5fdirection_5ft',['timer_direction_t',['../group___t_i_m_e_r___a_p_i.html#ga8d600bb7885c5490bb7e8f989aa2ff83',1,'r_timer_api.h']]], + ['timer_5fevent_5ft',['timer_event_t',['../group___t_i_m_e_r___a_p_i.html#gac3bee51f7c9078f794c5ac19522f91eb',1,'r_timer_api.h']]], + ['timer_5fmode_5ft',['timer_mode_t',['../group___t_i_m_e_r___a_p_i.html#ga6d4cd64aed5c0009ac26803efc9c13b2',1,'r_timer_api.h']]], + ['timer_5fsource_5fdiv_5ft',['timer_source_div_t',['../group___t_i_m_e_r___a_p_i.html#ga820b425b44d7b551afd1797ecca7a5ad',1,'r_timer_api.h']]], + ['timer_5fstate_5ft',['timer_state_t',['../group___t_i_m_e_r___a_p_i.html#ga1360292eee5d5a5288646fd1eb37c83e',1,'r_timer_api.h']]], + ['timer_5fvariant_5ft',['timer_variant_t',['../group___t_i_m_e_r___a_p_i.html#gaa3525eef2e1fa1bc8809b2d3aaf0de5d',1,'r_timer_api.h']]], + ['transfer_5faddr_5fmode_5ft',['transfer_addr_mode_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51',1,'r_transfer_api.h']]], + ['transfer_5fchain_5fmode_5ft',['transfer_chain_mode_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga68f81dc8b9ca46fbe3a1e556c020436d',1,'r_transfer_api.h']]], + ['transfer_5firq_5ft',['transfer_irq_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gad71bdadb7f486bb5d3ca6ff508dc0b08',1,'r_transfer_api.h']]], + ['transfer_5fmode_5ft',['transfer_mode_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992f',1,'r_transfer_api.h']]], + ['transfer_5frepeat_5farea_5ft',['transfer_repeat_area_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga769464d2068881ccb44573c96167812b',1,'r_transfer_api.h']]], + ['transfer_5fsize_5ft',['transfer_size_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12',1,'r_transfer_api.h']]], + ['transfer_5fstart_5fmode_5ft',['transfer_start_mode_t',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga11917a0ab2cb8b878937c97691b07fd9',1,'r_transfer_api.h']]], + ['tsu_5fb_5faverage_5ft',['tsu_b_average_t',['../group___t_s_u___b.html#ga5ab9606f8b75e848e5743dd79d08aa29',1,'r_tsu_b.h']]], + ['tsu_5fb_5fcompare_5fcfg_5ft',['tsu_b_compare_cfg_t',['../group___t_s_u___b.html#gae1e53473fd2f49e840ce26b43131aa29',1,'r_tsu_b.h']]] +]; diff --git a/search/enums_d.html b/search/enums_d.html new file mode 100644 index 0000000..597c54b --- /dev/null +++ b/search/enums_d.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/enums_d.js b/search/enums_d.js new file mode 100644 index 0000000..45141e2 --- /dev/null +++ b/search/enums_d.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['uart_5fdata_5fbits_5ft',['uart_data_bits_t',['../group___u_a_r_t___a_p_i.html#gadc68b8fd9ded3990f84129df23fee798',1,'r_uart_api.h']]], + ['uart_5fdir_5ft',['uart_dir_t',['../group___u_a_r_t___a_p_i.html#gac36c5a0dffa37b418fb9425a76c57740',1,'r_uart_api.h']]], + ['uart_5fevent_5ft',['uart_event_t',['../group___u_a_r_t___a_p_i.html#gaf739f04f788018b4b59fb7ad75da0a8d',1,'r_uart_api.h']]], + ['uart_5fparity_5ft',['uart_parity_t',['../group___u_a_r_t___a_p_i.html#ga6bcc37e31dd40c204b4ac6f6189e8878',1,'r_uart_api.h']]], + ['uart_5fstop_5fbits_5ft',['uart_stop_bits_t',['../group___u_a_r_t___a_p_i.html#ga6da57a73bbdbf830b845d4116f8341d7',1,'r_uart_api.h']]] +]; diff --git a/search/enums_e.html b/search/enums_e.html new file mode 100644 index 0000000..2881a15 --- /dev/null +++ b/search/enums_e.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/enums_e.js b/search/enums_e.js new file mode 100644 index 0000000..edcfd2f --- /dev/null +++ b/search/enums_e.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['wdt_5fclock_5fdivision_5ft',['wdt_clock_division_t',['../group___w_d_t___a_p_i.html#ga6b0f563a6311763e6204add68a018089',1,'r_wdt_api.h']]], + ['wdt_5freset_5fcontrol_5ft',['wdt_reset_control_t',['../group___w_d_t___a_p_i.html#ga7624d80dde311cb1289f558ea464fa63',1,'r_wdt_api.h']]], + ['wdt_5fstatus_5ft',['wdt_status_t',['../group___w_d_t___a_p_i.html#ga46c1d04f78b75ad1ad21314cac574935',1,'r_wdt_api.h']]], + ['wdt_5fstop_5fcontrol_5ft',['wdt_stop_control_t',['../group___w_d_t___a_p_i.html#ga803dd68cafce3a3d9ca5630b8c4838da',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5ft',['wdt_timeout_t',['../group___w_d_t___a_p_i.html#ga880fcf63a5220c6618a0cf380268a76c',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fend_5ft',['wdt_window_end_t',['../group___w_d_t___a_p_i.html#ga62d4360afabd1652aa7a1b9f624d7f61',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fstart_5ft',['wdt_window_start_t',['../group___w_d_t___a_p_i.html#ga9e0c1284f5d75d4a090d988536e3f633',1,'r_wdt_api.h']]] +]; diff --git a/search/enums_f.html b/search/enums_f.html new file mode 100644 index 0000000..4cb1b97 --- /dev/null +++ b/search/enums_f.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/enums_f.js b/search/enums_f.js new file mode 100644 index 0000000..3882e8c --- /dev/null +++ b/search/enums_f.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['xspi_5fqspi_5fchip_5fselect_5ft',['xspi_qspi_chip_select_t',['../group___x_s_p_i___q_s_p_i.html#ga9605c020c75bee5805972f74d27ffd2e',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5ft',['xspi_qspi_command_interval_clocks_t',['../group___x_s_p_i___q_s_p_i.html#ga8428f80201f33286966d2a84e0fb1f19',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcs_5fpulldown_5fclocks_5ft',['xspi_qspi_cs_pulldown_clocks_t',['../group___x_s_p_i___q_s_p_i.html#gae60133dc12f4f7ae05fff3e117a2669a',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcs_5fpullup_5fclocks_5ft',['xspi_qspi_cs_pullup_clocks_t',['../group___x_s_p_i___q_s_p_i.html#ga50d177e87a5a9279f0e1e37d73f7a58f',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5ft',['xspi_qspi_memory_size_t',['../group___x_s_p_i___q_s_p_i.html#ga760382ea0170990436140690f193bd65',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fprefetch_5ffunction_5ft',['xspi_qspi_prefetch_function_t',['../group___x_s_p_i___q_s_p_i.html#ga8c59ecaa03a56fa5db80924c81ff6fcc',1,'r_xspi_qspi.h']]] +]; diff --git a/search/enumvalues_0.js b/search/enumvalues_0.js index ba86b65..37e7dae 100644 --- a/search/enumvalues_0.js +++ b/search/enumvalues_0.js @@ -1,230 +1,227 @@ var searchData= [ - ['bsp_5fdelay_5funits_5fmicroseconds',['BSP_DELAY_UNITS_MICROSECONDS',['../group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2baa0312618f2508347a9a815b5887c12ae',1,'bsp_delay.h']]], - ['bsp_5fdelay_5funits_5fmilliseconds',['BSP_DELAY_UNITS_MILLISECONDS',['../group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2ba59fcc4e8d51046d4a1bd63c87ac64913',1,'bsp_delay.h']]], - ['bsp_5fdelay_5funits_5fseconds',['BSP_DELAY_UNITS_SECONDS',['../group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2bacc709da08ef4acc99bf6e2e84946be5d',1,'bsp_delay.h']]], - ['bsp_5fgrp_5firq_5funsupported',['BSP_GRP_IRQ_UNSUPPORTED',['../group___b_s_p___m_c_u.html#gga72e70676360e6a4d753a8d235e6b93a2a7478d3bbfdc1220e125de34635c0f47a',1,'bsp_group_irq.h']]], - ['bsp_5fio_5faudio_5fclk1',['BSP_IO_AUDIO_CLK1',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5116644c1d06c3af3240908b62f1a1e1',1,'bsp_io.h']]], - ['bsp_5fio_5faudio_5fclk2',['BSP_IO_AUDIO_CLK2',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa456bca4a2c1ee49955d22b162753d000',1,'bsp_io.h']]], - ['bsp_5fio_5fdirection_5fhiz',['BSP_IO_DIRECTION_HIZ',['../group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78bafea764c1f74ea85192b085e96d1b3684',1,'bsp_io.h']]], - ['bsp_5fio_5fdirection_5finput',['BSP_IO_DIRECTION_INPUT',['../group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78ba73a617ab836493568a0cf0aa4ba86484',1,'bsp_io.h']]], - ['bsp_5fio_5fdirection_5foutput',['BSP_IO_DIRECTION_OUTPUT',['../group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78bab665c3052bb5373b7821ab8898ee859b',1,'bsp_io.h']]], - ['bsp_5fio_5fdirection_5foutput_5fwith_5finput_5fenable',['BSP_IO_DIRECTION_OUTPUT_WITH_INPUT_ENABLE',['../group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78ba682fd05ca96b45840c4cd5d9fd35e405',1,'bsp_io.h']]], - ['bsp_5fio_5flevel_5fhigh',['BSP_IO_LEVEL_HIGH',['../group___b_s_p___i_o.html#ggab4ef0cc3fce421d48310f23c614aadc0acf9a28559b5a18ed9b8af4c2a7df10ef',1,'bsp_io.h']]], - ['bsp_5fio_5flevel_5flow',['BSP_IO_LEVEL_LOW',['../group___b_s_p___i_o.html#ggab4ef0cc3fce421d48310f23c614aadc0abb31064742440cdbdd638330a1cf7a9f',1,'bsp_io.h']]], - ['bsp_5fio_5fnmi',['BSP_IO_NMI',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa3bf300bb3aa746665b49bc8200bd7963',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f00',['BSP_IO_PORT_00',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea11fccb10e338ed526b52e66f3b0e6f92',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f00_5fpin_5f00',['BSP_IO_PORT_00_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa62ce6a7aef8164ea6bce7a9209b2506f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f00_5fpin_5f01',['BSP_IO_PORT_00_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa9068c73f5a59c1a55f6e57bd406edf6c',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f01',['BSP_IO_PORT_01',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea1465c0a3f756e587525c11d00e3883f9',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f01_5fpin_5f00',['BSP_IO_PORT_01_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0ae62012d023d55c6d1141e1f09d09d8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f01_5fpin_5f01',['BSP_IO_PORT_01_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa30e6ff3f5eca3d04bec3d714e474f3df',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f02',['BSP_IO_PORT_02',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4944568317a214298b34be9bc3f26e48',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f02_5fpin_5f00',['BSP_IO_PORT_02_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa635ed7a090bf9052c6cfc6c225335c9a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f02_5fpin_5f01',['BSP_IO_PORT_02_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaea414f512f3b2c84888d93d506fbe172',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f03',['BSP_IO_PORT_03',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea97a779742ba7c411dfa7edb66e9569e7',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f03_5fpin_5f00',['BSP_IO_PORT_03_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa939175dd8a48d965dd7c667764cc1fd5',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f03_5fpin_5f01',['BSP_IO_PORT_03_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac76bc2a911b588e27633978b1fe3f3f4',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f04',['BSP_IO_PORT_04',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea8807e320a0f7ce2bbc6b61cf25a0b072',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f04_5fpin_5f00',['BSP_IO_PORT_04_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa52d01ece7c8204d5780ce72179f09c76',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f04_5fpin_5f01',['BSP_IO_PORT_04_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaeb156edee3b3c89b68b51df1f396a61f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f05',['BSP_IO_PORT_05',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea20eb52e6abf9b112dc5af6931984dec1',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f05_5fpin_5f00',['BSP_IO_PORT_05_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaceb466e44e04e3b0ab04a7f10003a8be',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f05_5fpin_5f01',['BSP_IO_PORT_05_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aacf43fded0d1c0e1888ec9ae765ddf5f2',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f05_5fpin_5f02',['BSP_IO_PORT_05_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaab1bcef9f45fb16232cc5913697eed32',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f06',['BSP_IO_PORT_06',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea35098d51c380e353369db8e0881952a6',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f06_5fpin_5f00',['BSP_IO_PORT_06_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae9d15e574de9e35f7e1197c95d05dad9',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f06_5fpin_5f01',['BSP_IO_PORT_06_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa95398234ddf9c5235901f089d4e81662',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f07',['BSP_IO_PORT_07',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eab007ee52e771b0d17a8e54fa3fb6e93b',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f07_5fpin_5f00',['BSP_IO_PORT_07_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6569ae616e2c7ec066f05618be44d35a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f07_5fpin_5f01',['BSP_IO_PORT_07_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae3e273b0a415a41e1f4e3ae91817c186',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f07_5fpin_5f02',['BSP_IO_PORT_07_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa88e147f4775b65d5c96a282684a408c8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f08',['BSP_IO_PORT_08',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea3f042a23f398537b95fd88334a3b4d9e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f08_5fpin_5f00',['BSP_IO_PORT_08_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad47cbb33ca5c9f12ee8dca084e3062d3',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f08_5fpin_5f01',['BSP_IO_PORT_08_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaaedcbffa95e268f197778af394a4bf35',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f08_5fpin_5f02',['BSP_IO_PORT_08_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6c298d5d898981f883b4b01f90e5c996',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f09',['BSP_IO_PORT_09',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea584e14f51456fd94e7c7f0a9ed66b2bf',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f09_5fpin_5f00',['BSP_IO_PORT_09_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadb3e4e605bcb1d788367185e4058982f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f09_5fpin_5f01',['BSP_IO_PORT_09_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf9970a4d1a41e6482fad460393a196a1',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f10',['BSP_IO_PORT_10',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea0a6ffd6c20eaaa32409b9ca0dee293e8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f10_5fpin_5f00',['BSP_IO_PORT_10_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8ef0f2b6cc6de032c23c371dafc6004f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f10_5fpin_5f01',['BSP_IO_PORT_10_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0623a8fae8511929239804f47b76dbab',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f11',['BSP_IO_PORT_11',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eabf85020df009d581e4fadb6e8a1dbddb',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f11_5fpin_5f00',['BSP_IO_PORT_11_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa125041643933f0bc07f32f14887bdf9c',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f11_5fpin_5f01',['BSP_IO_PORT_11_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab951cf766f9cd671ae093a141bc0c49a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f12',['BSP_IO_PORT_12',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea78ad7bb48a9750a3ba08672b6baeef7e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f12_5fpin_5f00',['BSP_IO_PORT_12_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabaaa47451e1390c478c5b2a1725e6496',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f12_5fpin_5f01',['BSP_IO_PORT_12_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa41f8c9cb94f726c7030df2052fd79774',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f13',['BSP_IO_PORT_13',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eae0f99efe8ef380f164802966936f7847',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f13_5fpin_5f00',['BSP_IO_PORT_13_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0ed7d51f576b741e15330313031c2216',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f13_5fpin_5f01',['BSP_IO_PORT_13_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2014abe37005233fad759d8de134796a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f13_5fpin_5f02',['BSP_IO_PORT_13_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad24ad8bbfa5f6d10db6ff8dc75eadef5',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f14',['BSP_IO_PORT_14',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea775af46386b8ac7e29159624b9224295',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f14_5fpin_5f00',['BSP_IO_PORT_14_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad20c513c1e1b64b683255e3b3b34b09a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f14_5fpin_5f01',['BSP_IO_PORT_14_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7bf44c9d323051836f7cbdc7e9da06de',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f15',['BSP_IO_PORT_15',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea397323ae563e9bd7c503dc1c675fa395',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f15_5fpin_5f00',['BSP_IO_PORT_15_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa23d463236f6411d0c90196dabcc9c5cf',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f15_5fpin_5f01',['BSP_IO_PORT_15_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa191310dd2b5e6a16244b452a76983735',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f16',['BSP_IO_PORT_16',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea002722322e8a845391a87dcc7eb9cc45',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f16_5fpin_5f00',['BSP_IO_PORT_16_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae35842723dba01d6ced15e6349ad2d8e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f16_5fpin_5f01',['BSP_IO_PORT_16_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa922ad01a7323cb74f484964dc5d66697',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f17',['BSP_IO_PORT_17',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ead05a1353527cf2773715624fabd00a00',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f17_5fpin_5f00',['BSP_IO_PORT_17_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaae0e1e9e69f942b9db5e95ff83323ad4',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f17_5fpin_5f01',['BSP_IO_PORT_17_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa9e537caa46d62591f1a698b30897ee2',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f17_5fpin_5f02',['BSP_IO_PORT_17_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa16ff4369ccc2eb0e6447af953bc94500',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f18',['BSP_IO_PORT_18',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eae6713d42094e3ab520aabae92ebd40bc',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f18_5fpin_5f00',['BSP_IO_PORT_18_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa3c395ad7ae5d1d25edc8ba2a536d0525',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f18_5fpin_5f01',['BSP_IO_PORT_18_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac2479bdb7c292438a9d7c3dd4f48a16a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f19',['BSP_IO_PORT_19',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea175a84c2aa70454b4e6d4ab1c1bf09a6',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f19_5fpin_5f00',['BSP_IO_PORT_19_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadab728bf7f83ae6d642836403d5d2dc1',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f19_5fpin_5f01',['BSP_IO_PORT_19_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa1628f1c03dc3bfe49f118a6bb2400c53',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f20',['BSP_IO_PORT_20',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eabb06fb72ab7089198e72a6fea4a109e2',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f20_5fpin_5f00',['BSP_IO_PORT_20_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa53d05b3cda0c467bb7f5ed5999f2ab8f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f20_5fpin_5f01',['BSP_IO_PORT_20_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaaf1af3c7ee0c71fde7bfd1cd49949123',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f20_5fpin_5f02',['BSP_IO_PORT_20_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac47b0fc7594eb9f9b3b8b8ad31b464ec',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f21',['BSP_IO_PORT_21',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea26ec6accacb5dbb180a419780a88afe0',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f21_5fpin_5f00',['BSP_IO_PORT_21_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa26c218a01d621d492389ce4f74597f55',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f21_5fpin_5f01',['BSP_IO_PORT_21_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5dfe885cc0ee6d129a7759c8ffecfd7e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f22',['BSP_IO_PORT_22',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea2873610326361727fdadf7c95b1eb66f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f22_5fpin_5f00',['BSP_IO_PORT_22_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5c7fa78ba5a0152298956fda6cf85c5e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f22_5fpin_5f01',['BSP_IO_PORT_22_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa9ddc4ada31ca968e9b166cd11b440143',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f23',['BSP_IO_PORT_23',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4a80f7746adba5117728d74884967ff0',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f23_5fpin_5f00',['BSP_IO_PORT_23_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab4d640dac1a6dff63f33c79ee1e20c9e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f23_5fpin_5f01',['BSP_IO_PORT_23_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa98b1d268ef5f45e6751c0a99139acc5c',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f24',['BSP_IO_PORT_24',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea40a254bc0f42f443d78c717bed44a682',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f24_5fpin_5f00',['BSP_IO_PORT_24_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa40b055b032c42ad42b0d1878a4a52d73',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f24_5fpin_5f01',['BSP_IO_PORT_24_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa39f4c9b8a1bfe125213595ecc0b45df0',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f25',['BSP_IO_PORT_25',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea5f6e2b131b2f5b5dbd759533379d6105',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f25_5fpin_5f00',['BSP_IO_PORT_25_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa49e414efa6d0d02c604aac05bb9778db',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f25_5fpin_5f01',['BSP_IO_PORT_25_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf117a1aa77a1a547745adf145d8dc77e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f26',['BSP_IO_PORT_26',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eabc16d0f819ca9bb6eb8638e9b5e6c99e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f26_5fpin_5f00',['BSP_IO_PORT_26_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf4eff0573f5c549da8c41d0b38166e66',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f26_5fpin_5f01',['BSP_IO_PORT_26_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2a3374a2fd5198a534ee4a728349e13f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f27',['BSP_IO_PORT_27',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea566070ed168bf63dc412bdaf12d939e3',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f27_5fpin_5f00',['BSP_IO_PORT_27_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa1787bfc47089bd96d33fff7bad1153d1',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f27_5fpin_5f01',['BSP_IO_PORT_27_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa4a41ab4915afe1b7a374411fe9eb196e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f28',['BSP_IO_PORT_28',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea2657a0bb753f5a81301eda96ca631aa6',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f28_5fpin_5f00',['BSP_IO_PORT_28_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa614cf023157b36d3e2162e11318abc31',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f28_5fpin_5f01',['BSP_IO_PORT_28_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf8c5571fbe78f2c5e6a767c13aec041c',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f29',['BSP_IO_PORT_29',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4ea757a862c98494a0aaad6369a1f990',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f29_5fpin_5f00',['BSP_IO_PORT_29_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa57ff3c85ce33930afe04e3802c55227f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f29_5fpin_5f01',['BSP_IO_PORT_29_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2f376ba6a57ea3ac2d60a499a0f57c46',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f30',['BSP_IO_PORT_30',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea7faeb64a7250a38ddbc971bc030b07cb',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f30_5fpin_5f00',['BSP_IO_PORT_30_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2df8908dd4850253d394bc3b7e685a75',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f30_5fpin_5f01',['BSP_IO_PORT_30_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaaee42cef11c4a58e9e5aa68fd382299b',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f31',['BSP_IO_PORT_31',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4c75f0f2e7ca9e74a85f3b382e830b69',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f31_5fpin_5f00',['BSP_IO_PORT_31_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadc72aebfb0e4a967a56c0e6b9d00ef18',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f31_5fpin_5f01',['BSP_IO_PORT_31_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabc8eb75642cdbdaac75d88a34278250b',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f32',['BSP_IO_PORT_32',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eab5a70226eac6e8cdcdbf5d248637a917',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f32_5fpin_5f00',['BSP_IO_PORT_32_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac53d38f374d54699a1622468faedc544',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f32_5fpin_5f01',['BSP_IO_PORT_32_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac17f65dbf85a6c6e746f1bf21aa934db',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f33',['BSP_IO_PORT_33',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea6bf1e63d623c3adb59409fcc5c540be7',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f33_5fpin_5f00',['BSP_IO_PORT_33_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad9a5407f94f35c91c7d98c0c91ffd975',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f33_5fpin_5f01',['BSP_IO_PORT_33_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa62d85ff211777b182617b334c8f7e7b0',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f34',['BSP_IO_PORT_34',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea4654504be6ba72162f37014a9d73037c',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f34_5fpin_5f00',['BSP_IO_PORT_34_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab5b1771adf3821c23b1c4cfbeea5b4f5',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f34_5fpin_5f01',['BSP_IO_PORT_34_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae8415d4c07fce74af51a792896f3777e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f35',['BSP_IO_PORT_35',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eaf9d2db9d60f629faac9184c294f65984',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f35_5fpin_5f00',['BSP_IO_PORT_35_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0f2b7d0278bf5dcbe1a9d7b9cefd0c15',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f35_5fpin_5f01',['BSP_IO_PORT_35_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa25fdf456c4b05c5e15f51d615c3fa673',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f36',['BSP_IO_PORT_36',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea322678e3244fafb07badc6d529c62995',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f36_5fpin_5f00',['BSP_IO_PORT_36_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aadd39c324258c968a575e24a4fa7ff354',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f36_5fpin_5f01',['BSP_IO_PORT_36_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8d452d6083512df8aa8bcef4815ad8b8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f37',['BSP_IO_PORT_37',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea6d0ed5fd6b8112e4fe087bd4211e9cf8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f37_5fpin_5f00',['BSP_IO_PORT_37_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5f9f37be21799183925449eda63b433',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f37_5fpin_5f01',['BSP_IO_PORT_37_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2fae9399a986654ad829fd957a0b5129',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f37_5fpin_5f02',['BSP_IO_PORT_37_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa59817ac0e653810d530b8bb4a74305d6',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f38',['BSP_IO_PORT_38',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46eacee8ac33d0115b3997767c64527115ab',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f38_5fpin_5f00',['BSP_IO_PORT_38_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaba0a89ecb1ad6357f0ca6ca8067ff000',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f38_5fpin_5f01',['BSP_IO_PORT_38_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa9406041975509fcccff7d7dd93e786f3',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f39',['BSP_IO_PORT_39',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea994e790d360e9af8b4c681e3ce0bec74',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f39_5fpin_5f00',['BSP_IO_PORT_39_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0cd29a6c518b2c8e67932c1e8d6a62d4',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f39_5fpin_5f01',['BSP_IO_PORT_39_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa4f0e2180e0a141f1ef73934fa9c340d0',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f39_5fpin_5f02',['BSP_IO_PORT_39_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf0ecf908b8d4ce84a33b69ca4fdabca4',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f40',['BSP_IO_PORT_40',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea5e76257ac865ad0481c5ed353a4212c9',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f40_5fpin_5f00',['BSP_IO_PORT_40_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2d28483ae8cdc5474deca88e6bfe1dee',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f40_5fpin_5f01',['BSP_IO_PORT_40_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa63642ca9b2805ff92be0aa0bf7a66a9a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f40_5fpin_5f02',['BSP_IO_PORT_40_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6f5ee1365a8b7fc827fd3ceb3a4a8cb7',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f41',['BSP_IO_PORT_41',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea58562456ff71481a2de2866016b017f2',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f41_5fpin_5f00',['BSP_IO_PORT_41_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab20b0a224aa92ffab0e0405e33c7e61c',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f41_5fpin_5f01',['BSP_IO_PORT_41_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa72604af4694f399a0eca581ec5b897b8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f42',['BSP_IO_PORT_42',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea16bc2ebb264e5d30df602590dd0d4736',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f42_5fpin_5f00',['BSP_IO_PORT_42_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa51d3b48ed479b2ee3a46dc996d04b435',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f42_5fpin_5f01',['BSP_IO_PORT_42_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aacaf9e71dadad94b9b321585c69de0cd1',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f42_5fpin_5f02',['BSP_IO_PORT_42_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa7c6e61f76d6c3cc9a9dfd2f091bb0b3',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f42_5fpin_5f03',['BSP_IO_PORT_42_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaeffcc1d1f99236ae009d76eab5e0913d',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f42_5fpin_5f04',['BSP_IO_PORT_42_PIN_04',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa4f69d60a8685d441c35495d9d7dd09b8',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f43',['BSP_IO_PORT_43',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ead099a4e210a23e9a0370fd9a4cb13f3f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f43_5fpin_5f00',['BSP_IO_PORT_43_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa829088e17268397d6ddb14182a380e51',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f43_5fpin_5f01',['BSP_IO_PORT_43_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2c579ae3361bf6dfb4191b4da60910fe',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f43_5fpin_5f02',['BSP_IO_PORT_43_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa252a1fcd0f46a31afcf798e301bdba16',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f43_5fpin_5f03',['BSP_IO_PORT_43_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa37a5927be9bc40f6df0f64adc84d6006',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f44',['BSP_IO_PORT_44',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea21028efff67589ec637595607faf5c60',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f44_5fpin_5f00',['BSP_IO_PORT_44_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae4d19f207d3548baf4e742bfca68ae46',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f44_5fpin_5f01',['BSP_IO_PORT_44_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae3f2fd01c62e1ae8522ed5137ad07e5e',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f44_5fpin_5f02',['BSP_IO_PORT_44_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa73f9c0b7f80c8385d77008b1e785eb88',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f44_5fpin_5f03',['BSP_IO_PORT_44_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaff015065db131ce31c3e483ab8e9bb38',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f45',['BSP_IO_PORT_45',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea0650c44272c455fb11576525fe44580f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f45_5fpin_5f00',['BSP_IO_PORT_45_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac300c1ff8aaf37d2d3c840341888909a',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f45_5fpin_5f01',['BSP_IO_PORT_45_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa52b16585d757e097a7ff851e74748973',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f45_5fpin_5f02',['BSP_IO_PORT_45_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabfeca2fc1cd38d80e5e31eb3c5032b83',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f45_5fpin_5f03',['BSP_IO_PORT_45_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5d15277bbd25881faf865b00f8c46c1',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f46',['BSP_IO_PORT_46',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea8e4609c67698b2386ef7db4443b90bbb',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f46_5fpin_5f00',['BSP_IO_PORT_46_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5e49717d4d34dea314976288c20c6ee',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f46_5fpin_5f01',['BSP_IO_PORT_46_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa430a0d48fb4e6fc1f5a358a5c1b17d8f',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f46_5fpin_5f02',['BSP_IO_PORT_46_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa2818abb4ea0fa720d53bf0a0ba923870',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f46_5fpin_5f03',['BSP_IO_PORT_46_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa03dceeb58f56dc9a21b5bfa3176ab217',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f47',['BSP_IO_PORT_47',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ead500583b0bed23efc4b23cfaf604dfdb',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f47_5fpin_5f00',['BSP_IO_PORT_47_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafc63a732535ea65c522c06582757d4bb',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f47_5fpin_5f01',['BSP_IO_PORT_47_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa01a4990336c06cef1fea22c9ff2bfb2d',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f47_5fpin_5f02',['BSP_IO_PORT_47_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf98bbb6311738366fe772c4a0e320824',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f47_5fpin_5f03',['BSP_IO_PORT_47_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafbb3e071ee0dcccf61805c9bebb7befa',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f48',['BSP_IO_PORT_48',['../group___b_s_p___i_o.html#gga33a147902fb258f531c0bae40166f46ea41155aec80e8d3232eee7e5bd8576425',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f48_5fpin_5f00',['BSP_IO_PORT_48_PIN_00',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa57c5991f29df32eb1f4cd1c82082725b',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f48_5fpin_5f01',['BSP_IO_PORT_48_PIN_01',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa841054432251d0c7343d32144cee6789',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f48_5fpin_5f02',['BSP_IO_PORT_48_PIN_02',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa38e1abc8d5cae949e3f1e82f9f107cc3',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f48_5fpin_5f03',['BSP_IO_PORT_48_PIN_03',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5f53758d43bb074b01e3cba77cbb5cde',1,'bsp_io.h']]], - ['bsp_5fio_5fport_5f48_5fpin_5f04',['BSP_IO_PORT_48_PIN_04',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa60d189d33295043480ca9e91989fb126',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi0_5fio0',['BSP_IO_QSPI0_IO0',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6d353753e9a3f1ec95967f7e7fb630f5',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi0_5fio1',['BSP_IO_QSPI0_IO1',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7127f17a3754e1842aafd8c5b5d2062a',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi0_5fio2',['BSP_IO_QSPI0_IO2',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabcc1e97ac8b56e357b24ec536ddb4269',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi0_5fio3',['BSP_IO_QSPI0_IO3',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa62438f5462fd98d683368b464b18e4c',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi0_5fspclk',['BSP_IO_QSPI0_SPCLK',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaef51c0ad05848a82f97fa49a29f66f37',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi0_5fssl',['BSP_IO_QSPI0_SSL',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab0e97936a0410619b613d3e8ac4b0de1',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi1_5fio0',['BSP_IO_QSPI1_IO0',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5394e222d99a1ca17622c3d1c8a5c94d',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi1_5fio1',['BSP_IO_QSPI1_IO1',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7a1d5c0e646b87a381b9f1a829e2909b',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi1_5fio2',['BSP_IO_QSPI1_IO2',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa65598f991476837f7822ce44244e349e',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi1_5fio3',['BSP_IO_QSPI1_IO3',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa1e9673eef7a96cf9f46b8f75421075dd',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi1_5fspclk',['BSP_IO_QSPI1_SPCLK',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8b11501a458d5b7a82e5bdc80cb9252a',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi1_5fssl',['BSP_IO_QSPI1_SSL',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa7c30f479d99f883ee4b4fa27b6ae4f5',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi_5fint_5fn',['BSP_IO_QSPI_INT_N',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa12bccfc806539758e2b3a47e6ea93ca9',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi_5freset_5fn',['BSP_IO_QSPI_RESET_N',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8248388efb79c97a26893bb2de4c8d5b',1,'bsp_io.h']]], - ['bsp_5fio_5fqspi_5fwp_5fn',['BSP_IO_QSPI_WP_N',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aab466c8da8ed341f72fdc9e4059d9025c',1,'bsp_io.h']]], - ['bsp_5fio_5friic0_5fscl',['BSP_IO_RIIC0_SCL',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad77d8a140615854897936e80b31f0670',1,'bsp_io.h']]], - ['bsp_5fio_5friic0_5fsda',['BSP_IO_RIIC0_SDA',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaba9b7c124ac20c50a71563d64a068fc9',1,'bsp_io.h']]], - ['bsp_5fio_5friic1_5fscl',['BSP_IO_RIIC1_SCL',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa8c0b73a965fe066d0d58a4fb513d84dc',1,'bsp_io.h']]], - ['bsp_5fio_5friic1_5fsda',['BSP_IO_RIIC1_SDA',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa6828c5428be0bd1a3a5b79e111871411',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fclk',['BSP_IO_SD0_CLK',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aabccd7e7760466f8c666ae02e8d84267e',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fcmd',['BSP_IO_SD0_CMD',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa0ef28251d02b2be71736cd6709324cf7',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata0',['BSP_IO_SD0_DATA0',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa03979860d2850a4790a85a7012fff5b4',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata1',['BSP_IO_SD0_DATA1',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa5590555e0fa70d287a8a215b9a703de7',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata2',['BSP_IO_SD0_DATA2',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa73326eeb5a58de9766418893bcc1a284',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata3',['BSP_IO_SD0_DATA3',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaf2cf666df832a706dfdd973aac8406d8',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata4',['BSP_IO_SD0_DATA4',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa876a99deff86f8d09f1d96112a1b2dc3',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata5',['BSP_IO_SD0_DATA5',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aade0f69819cb635c9127516bcb86f5886',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata6',['BSP_IO_SD0_DATA6',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa3afa25e16d31202f5367150ce88e768e',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5fdata7',['BSP_IO_SD0_DATA7',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aac5e1dcfb012ca07ec05c7a5da14ad055',1,'bsp_io.h']]], - ['bsp_5fio_5fsd0_5frst_5fn',['BSP_IO_SD0_RST_N',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaa8daf070713048cb35f873e0490068df',1,'bsp_io.h']]], - ['bsp_5fio_5fsd1_5fclk',['BSP_IO_SD1_CLK',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aad2f6c4dec46159cddb6d967a551c7c2a',1,'bsp_io.h']]], - ['bsp_5fio_5fsd1_5fcmd',['BSP_IO_SD1_CMD',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa405fdd3dc66955a4858cc69a19016933',1,'bsp_io.h']]], - ['bsp_5fio_5fsd1_5fdata0',['BSP_IO_SD1_DATA0',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafbc2d3122913859d09d249bf264d4136',1,'bsp_io.h']]], - ['bsp_5fio_5fsd1_5fdata1',['BSP_IO_SD1_DATA1',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa67d5209707eab3f61c4eb9bbbd1ce73f',1,'bsp_io.h']]], - ['bsp_5fio_5fsd1_5fdata2',['BSP_IO_SD1_DATA2',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aaeaedf55bf5c303fdb8fd62b7df65f2e4',1,'bsp_io.h']]], - ['bsp_5fio_5fsd1_5fdata3',['BSP_IO_SD1_DATA3',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae758bfc092956cb39f9013b921753657',1,'bsp_io.h']]], - ['bsp_5fio_5ftdo',['BSP_IO_TDO',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aae97fc09171edc1a3c841cab7a1020fb2',1,'bsp_io.h']]], - ['bsp_5fio_5ftms_5fswdio',['BSP_IO_TMS_SWDIO',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aafd917ebff207c1b9456898a143d10c38',1,'bsp_io.h']]], - ['bsp_5fio_5fwdtovf_5fperrout_5fn',['BSP_IO_WDTOVF_PERROUT_N',['../group___b_s_p___i_o.html#gga0adbfd4b7db319886d667acb4804d80aa7901524777e247b132a543d19b8ddd4f',1,'bsp_io.h']]], - ['bsp_5fwarm_5fstart_5fpost_5fc',['BSP_WARM_START_POST_C',['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811',1,'bsp_common.h']]], - ['bsp_5fwarm_5fstart_5fpost_5fclock',['BSP_WARM_START_POST_CLOCK',['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7',1,'bsp_common.h']]], - ['bsp_5fwarm_5fstart_5freset',['BSP_WARM_START_RESET',['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2',1,'bsp_common.h']]] + ['adc_5falignment_5fleft',['ADC_ALIGNMENT_LEFT',['../group___a_d_c___a_p_i.html#ggaab0104c9c876400deb5772a77c1c5d76a7c98a604f4c957ba7151784fa3cd61a7',1,'r_adc_api.h']]], + ['adc_5falignment_5fright',['ADC_ALIGNMENT_RIGHT',['../group___a_d_c___a_p_i.html#ggaab0104c9c876400deb5772a77c1c5d76ae70affd23c02c0bc52dc0fe55c9c4879',1,'r_adc_api.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga0',['ADC_C_ACTIVE_TRIGGER_ADTRGA0',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324af3c255cbb8e850ba514039dadc6bf92a',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga0_5fb0',['ADC_C_ACTIVE_TRIGGER_ADTRGA0_B0',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a077311023b7c7723482d4c5c7d370be1',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga1',['ADC_C_ACTIVE_TRIGGER_ADTRGA1',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a656f9dceef714b697245a7f5bff691c3',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga1_5fb1',['ADC_C_ACTIVE_TRIGGER_ADTRGA1_B1',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aad2f3ddd5eb3347f71232e5bb3b561d1',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga2',['ADC_C_ACTIVE_TRIGGER_ADTRGA2',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a05fe5bc9f3a1fb82348c6bfd772224be',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga2_5fb2',['ADC_C_ACTIVE_TRIGGER_ADTRGA2_B2',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aad43bb4fbe4b2c0936b28843970e03a8',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga3',['ADC_C_ACTIVE_TRIGGER_ADTRGA3',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a5109da7296762f3d8a619d31a51ea5a3',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrga3_5fb3',['ADC_C_ACTIVE_TRIGGER_ADTRGA3_B3',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a3dec3d6634fe8fa6337ea9a60025d722',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrgb0',['ADC_C_ACTIVE_TRIGGER_ADTRGB0',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324abf5e08f2640ebc195c73e47c8e65643f',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrgb1',['ADC_C_ACTIVE_TRIGGER_ADTRGB1',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aa27f6fb1909ccf43a35c88409bfb906e',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrgb2',['ADC_C_ACTIVE_TRIGGER_ADTRGB2',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a74a5af0cf4d4a397f09877b9fe6f9324',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fadtrgb3',['ADC_C_ACTIVE_TRIGGER_ADTRGB3',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a336c6d7ff3ca435273e8c40ad4c6ea03',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5fexternal',['ADC_C_ACTIVE_TRIGGER_EXTERNAL',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324ae5fb7188a5493c2087429cf22d4cd2f4',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg0n',['ADC_C_ACTIVE_TRIGGER_TRG0N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324af54943db6ac19bc3469392b7dd1bf193',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg4abn',['ADC_C_ACTIVE_TRIGGER_TRG4ABN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a2bdbc28656119e798974fb9c2c6a4e63',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg4an',['ADC_C_ACTIVE_TRIGGER_TRG4AN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a60b1a080cb97f8c36886c8d8313f82b9',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg4an_5fbn',['ADC_C_ACTIVE_TRIGGER_TRG4AN_BN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a3e9a5e2d5a289cd86dc466fb491976cf',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg4bn',['ADC_C_ACTIVE_TRIGGER_TRG4BN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aa329f8ae24c1e72627aec16e56add4a8',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg7abn',['ADC_C_ACTIVE_TRIGGER_TRG7ABN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a0187bd6ce59d816a9c14d48a7ed745f7',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg7an',['ADC_C_ACTIVE_TRIGGER_TRG7AN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a6a3e1e29efd6b0726b986a61d26fbb9c',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg7an_5fbn',['ADC_C_ACTIVE_TRIGGER_TRG7AN_BN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a3966e7fc0d3839758c715ad9a5581587',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrg7bn',['ADC_C_ACTIVE_TRIGGER_TRG7BN',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324aa6f5ef5945ac95eb9850812798d478c3',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga0n',['ADC_C_ACTIVE_TRIGGER_TRGA0N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a38fcc2885633e438bc40bd92a2b84dca',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga1n',['ADC_C_ACTIVE_TRIGGER_TRGA1N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324abf1cba1bc639bd489c1434a8811f73d2',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga2n',['ADC_C_ACTIVE_TRIGGER_TRGA2N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a44ab6a715d5c6b4962ee09cd97b9738c',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga3n',['ADC_C_ACTIVE_TRIGGER_TRGA3N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324abca8fe161c59c71c347623b294e66974',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga4n',['ADC_C_ACTIVE_TRIGGER_TRGA4N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a558ad6214f6a2921415737991d2092d1',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga6n',['ADC_C_ACTIVE_TRIGGER_TRGA6N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a105e8fb8e9ac187017ea47c68e8053fa',1,'r_adc_c.h']]], + ['adc_5fc_5factive_5ftrigger_5ftrga7n',['ADC_C_ACTIVE_TRIGGER_TRGA7N',['../group___a_d_c___c.html#gga7491e0c2eab4266fd44d7f92a3c69324a843cb5544350c5c93a91b9c5f68e1e73',1,'r_adc_c.h']]], + ['adc_5fc_5fbuffer_5fmode_5f1',['ADC_C_BUFFER_MODE_1',['../group___a_d_c___c.html#ggaa825c3919bb78f2b06cfb42e726f507bacd2e2ea3702a77919d90e1620f8ecea9',1,'r_adc_c.h']]], + ['adc_5fc_5fbuffer_5fmode_5f4',['ADC_C_BUFFER_MODE_4',['../group___a_d_c___c.html#ggaa825c3919bb78f2b06cfb42e726f507baa23674fef20210a76d33298be9253183',1,'r_adc_c.h']]], + ['adc_5fc_5ffilter_5fstage_5fsetting_5f12',['ADC_C_FILTER_STAGE_SETTING_12',['../group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3beaf0ee05127742344df84853d642f4d0e9',1,'r_adc_c.h']]], + ['adc_5fc_5ffilter_5fstage_5fsetting_5f16',['ADC_C_FILTER_STAGE_SETTING_16',['../group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3bea45fc2724e94b772f7c82f16c108b876f',1,'r_adc_c.h']]], + ['adc_5fc_5ffilter_5fstage_5fsetting_5f4',['ADC_C_FILTER_STAGE_SETTING_4',['../group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3bea58499b9e7e17eae5511957f130890953',1,'r_adc_c.h']]], + ['adc_5fc_5ffilter_5fstage_5fsetting_5f8',['ADC_C_FILTER_STAGE_SETTING_8',['../group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3beaff4e1eb7b74d3c422f01aafae1b9117f',1,'r_adc_c.h']]], + ['adc_5fc_5ffilter_5fstage_5fsetting_5fdisable',['ADC_C_FILTER_STAGE_SETTING_DISABLE',['../group___a_d_c___c.html#gga034ccf534ec5fed75f8c33ad29c8e3bea0cea22fe02a308fa8dcb8622af5be267',1,'r_adc_c.h']]], + ['adc_5fc_5finput_5fmode_5fauto',['ADC_C_INPUT_MODE_AUTO',['../group___a_d_c___c.html#gga50e12110f82b457bdd59bd0dbc0d0d89a3b4fe16ae64b00c994f7273547ab9048',1,'r_adc_c.h']]], + ['adc_5fc_5finput_5fmode_5fstep',['ADC_C_INPUT_MODE_STEP',['../group___a_d_c___c.html#gga50e12110f82b457bdd59bd0dbc0d0d89adbdd34fbb2bc27ddafe211baae444392',1,'r_adc_c.h']]], + ['adc_5fc_5finterrupt_5fchannel_5fsetting_5fdisable',['ADC_C_INTERRUPT_CHANNEL_SETTING_DISABLE',['../group___a_d_c___c.html#ggab74afcc80bd6ce8980feeadb9352449ea06c8e5e55d072c7d8f0825b701dd27ab',1,'r_adc_c.h']]], + ['adc_5fc_5finterrupt_5fchannel_5fsetting_5fenable',['ADC_C_INTERRUPT_CHANNEL_SETTING_ENABLE',['../group___a_d_c___c.html#ggab74afcc80bd6ce8980feeadb9352449ea85786ffac329aa37580a8c071e1ebf13',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f0',['ADC_C_MASK_CHANNEL_0',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa526b225d2249c0e6b598d0cb15d23baf',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f1',['ADC_C_MASK_CHANNEL_1',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaa6022698b4c9597d629c54a2b24c35c1',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f2',['ADC_C_MASK_CHANNEL_2',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaed4a79299f7d28f3332bf8f311bbad01',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f3',['ADC_C_MASK_CHANNEL_3',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfad5324a7d55619eeb7c59ebc1d410e3f2',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f4',['ADC_C_MASK_CHANNEL_4',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaaa22536b05ed63aca9faf6123faeb56b',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f5',['ADC_C_MASK_CHANNEL_5',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa3ee0541dd2c83923941c6d60f9cc06fb',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f6',['ADC_C_MASK_CHANNEL_6',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa6a92d5b950930e683faec6d0f27a14fd',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f7',['ADC_C_MASK_CHANNEL_7',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfaf0025fb0928e54bb073bbfba22c27670',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5fchannel_5f8',['ADC_C_MASK_CHANNEL_8',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfae30eb419b469cf9b915ca07da7335fc9',1,'r_adc_c.h']]], + ['adc_5fc_5fmask_5foff',['ADC_C_MASK_OFF',['../group___a_d_c___c.html#gga2f01cf47970d9f474abd9f8b68a36abfa79ec471da64631d27a588d73ef193efe',1,'r_adc_c.h']]], + ['adc_5fc_5foperating_5fmode_5fscan',['ADC_C_OPERATING_MODE_SCAN',['../group___a_d_c___c.html#gga1f6acb79f1626e0bd35e6f90752a015ca63cedcfd78a812f8f284c2c256d60579',1,'r_adc_c.h']]], + ['adc_5fc_5foperating_5fmode_5fselect',['ADC_C_OPERATING_MODE_SELECT',['../group___a_d_c___c.html#gga1f6acb79f1626e0bd35e6f90752a015caa84e18043bb7ffa605aeedc5fd6c22f9',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fedge_5fboth',['ADC_C_TRIGGER_EDGE_BOTH',['../group___a_d_c___c.html#ggaddac3354631a273d32f50f65b271de49ac22d5d31e0596d826fbff03b476f0166',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fedge_5ffalling',['ADC_C_TRIGGER_EDGE_FALLING',['../group___a_d_c___c.html#ggaddac3354631a273d32f50f65b271de49a3d564c924b8980dfce73223e9447f870',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fedge_5frising',['ADC_C_TRIGGER_EDGE_RISING',['../group___a_d_c___c.html#ggaddac3354631a273d32f50f65b271de49ae5220b5deefd335b667937754602a1c1',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fmode_5fhardware',['ADC_C_TRIGGER_MODE_HARDWARE',['../group___a_d_c___c.html#gga63b54f9f14640dd93668df6b63fa5208a7fa4ed8065306ec04e54e7feda2e1dbc',1,'r_adc_c.h']]], + ['adc_5fc_5ftrigger_5fmode_5fsoftware',['ADC_C_TRIGGER_MODE_SOFTWARE',['../group___a_d_c___c.html#gga63b54f9f14640dd93668df6b63fa5208a96075d0fcdc8e5e9fe36ffed03f611e4',1,'r_adc_c.h']]], + ['adc_5fchannel_5f0',['ADC_CHANNEL_0',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a69dddf5b6edfe54ac25b653d8f62d104',1,'r_adc_api.h']]], + ['adc_5fchannel_5f1',['ADC_CHANNEL_1',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a203b48944d019f4fda969a6fc2a9e492',1,'r_adc_api.h']]], + ['adc_5fchannel_5f10',['ADC_CHANNEL_10',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a9db3195dade30ed8b254187c22616898',1,'r_adc_api.h']]], + ['adc_5fchannel_5f11',['ADC_CHANNEL_11',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814af6193eda0e4807c9d560aac13e302093',1,'r_adc_api.h']]], + ['adc_5fchannel_5f12',['ADC_CHANNEL_12',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a42838efffa3e21e6b970eee65de86e40',1,'r_adc_api.h']]], + ['adc_5fchannel_5f13',['ADC_CHANNEL_13',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa2718519e5964f136de3e5234e36264c',1,'r_adc_api.h']]], + ['adc_5fchannel_5f14',['ADC_CHANNEL_14',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a7f3900d4031a3f01889fbe4179d8cade',1,'r_adc_api.h']]], + ['adc_5fchannel_5f15',['ADC_CHANNEL_15',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814afa75046e6f6f23ed8e6573c7bc8563d2',1,'r_adc_api.h']]], + ['adc_5fchannel_5f16',['ADC_CHANNEL_16',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a61914b17568b94ef0651ee10e79e6892',1,'r_adc_api.h']]], + ['adc_5fchannel_5f17',['ADC_CHANNEL_17',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a22aa8198d9a4012a012ddd838adf256c',1,'r_adc_api.h']]], + ['adc_5fchannel_5f18',['ADC_CHANNEL_18',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ae47fe79b66fda5fcb9f02d6a648c8dc9',1,'r_adc_api.h']]], + ['adc_5fchannel_5f19',['ADC_CHANNEL_19',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a514ca4fdb7e9862d3d9ebe1d4e926349',1,'r_adc_api.h']]], + ['adc_5fchannel_5f2',['ADC_CHANNEL_2',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ab5ff3c915ec02ae6ac3980a1312a4815',1,'r_adc_api.h']]], + ['adc_5fchannel_5f20',['ADC_CHANNEL_20',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814afdcbeb5840bd281a4a2ec3f1f64ed52b',1,'r_adc_api.h']]], + ['adc_5fchannel_5f21',['ADC_CHANNEL_21',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814afaf1207b06cd7dc48c7f10ed6c95fb4a',1,'r_adc_api.h']]], + ['adc_5fchannel_5f22',['ADC_CHANNEL_22',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa5b37816645da11ff633a7e2d539da12',1,'r_adc_api.h']]], + ['adc_5fchannel_5f23',['ADC_CHANNEL_23',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a9009b78e30e87985cbfb40296a0bab16',1,'r_adc_api.h']]], + ['adc_5fchannel_5f24',['ADC_CHANNEL_24',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a7ae985a21367ea6d7488517948fc625d',1,'r_adc_api.h']]], + ['adc_5fchannel_5f25',['ADC_CHANNEL_25',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a31855ff8fefcff144e9dc4911466ce52',1,'r_adc_api.h']]], + ['adc_5fchannel_5f26',['ADC_CHANNEL_26',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa9c18e09bdb5cdf44c8c89ecdd7770d3',1,'r_adc_api.h']]], + ['adc_5fchannel_5f27',['ADC_CHANNEL_27',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ad002942933ed78124a50b3276f9d88cc',1,'r_adc_api.h']]], + ['adc_5fchannel_5f28',['ADC_CHANNEL_28',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a558a69bc271b849d3c3a2cca05ebbba0',1,'r_adc_api.h']]], + ['adc_5fchannel_5f3',['ADC_CHANNEL_3',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a6ca054f67bee5197eec92a0379cffb6e',1,'r_adc_api.h']]], + ['adc_5fchannel_5f4',['ADC_CHANNEL_4',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a358c6f5e7243a7ed09640253d83d2131',1,'r_adc_api.h']]], + ['adc_5fchannel_5f5',['ADC_CHANNEL_5',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814add27743e52a0719102130818d31d545a',1,'r_adc_api.h']]], + ['adc_5fchannel_5f6',['ADC_CHANNEL_6',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814acf3be71bfeb9d342e6d845db91782b79',1,'r_adc_api.h']]], + ['adc_5fchannel_5f7',['ADC_CHANNEL_7',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814ad6ef86ca1b448f220905d771f258586a',1,'r_adc_api.h']]], + ['adc_5fchannel_5f8',['ADC_CHANNEL_8',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a2875a590dc7e8502581ff68a075ce019',1,'r_adc_api.h']]], + ['adc_5fchannel_5f9',['ADC_CHANNEL_9',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a0e198353a76bf512e4dcc8224710d6b0',1,'r_adc_api.h']]], + ['adc_5fchannel_5fduplex',['ADC_CHANNEL_DUPLEX',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a2602b0a06ce1ce485d0812de6f6f4091',1,'r_adc_api.h']]], + ['adc_5fchannel_5fduplex_5fa',['ADC_CHANNEL_DUPLEX_A',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aadc3763b403f4b9ab667602137a9de57',1,'r_adc_api.h']]], + ['adc_5fchannel_5fduplex_5fb',['ADC_CHANNEL_DUPLEX_B',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aa66d57680818caebf7be4d68f8c505be',1,'r_adc_api.h']]], + ['adc_5fchannel_5ftemperature',['ADC_CHANNEL_TEMPERATURE',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814aff4cf0b5a9bfd1fc634f6b097e34fe73',1,'r_adc_api.h']]], + ['adc_5fchannel_5fvolt',['ADC_CHANNEL_VOLT',['../group___a_d_c___a_p_i.html#ggaafc4060027875f8fe46242b0656d7814a511e70765f3a63d0dea47ea585329641',1,'r_adc_api.h']]], + ['adc_5fe_5factive_5ftrigger_5fdisabled',['ADC_E_ACTIVE_TRIGGER_DISABLED',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa2b4b59316fb8fefb58e73185e11e8d63',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5felctrg0',['ADC_E_ACTIVE_TRIGGER_ELCTRG0',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa28e3a1a968ca839641207e0eaac50ad2',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fexternal',['ADC_E_ACTIVE_TRIGGER_EXTERNAL',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6a63b6c2445f9c3f512a74456c0c5f44',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra0n',['ADC_E_ACTIVE_TRIGGER_GTADTRA0N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa4c426f6a8605e9e919fbb77e0b01920e',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra0n_5fb0n',['ADC_E_ACTIVE_TRIGGER_GTADTRA0N_B0N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa8096ea25dd100d856524b905fc388603',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra10n',['ADC_E_ACTIVE_TRIGGER_GTADTRA10N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faaca5902231d50599b6034a6ff45a5143',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra10n_5fb10n',['ADC_E_ACTIVE_TRIGGER_GTADTRA10N_B10N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fac4ad89f15ce5582effbff589f28dd335',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra11n',['ADC_E_ACTIVE_TRIGGER_GTADTRA11N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9f1b97c0b0b5f733c16aac91cd6a1a5d',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra11n_5fb11n',['ADC_E_ACTIVE_TRIGGER_GTADTRA11N_B11N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa374edc9decb2c4cddcf99deca385a67c',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra12n',['ADC_E_ACTIVE_TRIGGER_GTADTRA12N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa31fdff2f29081b257445d6ba6d2a74e6',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra12n_5fb12n',['ADC_E_ACTIVE_TRIGGER_GTADTRA12N_B12N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa09082c6edf97f871bc12b2b61c718f6',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra13n',['ADC_E_ACTIVE_TRIGGER_GTADTRA13N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa3bceacf3e88dccada7241e842a82665d',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra13n_5fb13n',['ADC_E_ACTIVE_TRIGGER_GTADTRA13N_B13N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6ec9fbdf997ccc7090fbbfdd85e2b3da',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra14n',['ADC_E_ACTIVE_TRIGGER_GTADTRA14N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa727a862780e0fef71d313c712d46ed94',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra14n_5fb14n',['ADC_E_ACTIVE_TRIGGER_GTADTRA14N_B14N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faf121c0c74e2ab94d451fbff265037e16',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra15n',['ADC_E_ACTIVE_TRIGGER_GTADTRA15N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa8e90c5409cf4bccaf56eb5694907e35f',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra15n_5fb15n',['ADC_E_ACTIVE_TRIGGER_GTADTRA15N_B15N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa790de35506dc40dd6e2395b561d33c38',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra1n',['ADC_E_ACTIVE_TRIGGER_GTADTRA1N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9902642a17e4068b11f05666619ace88',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra1n_5fb1n',['ADC_E_ACTIVE_TRIGGER_GTADTRA1N_B1N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa215583c964e85bacdc90056b67ab9589',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra2n',['ADC_E_ACTIVE_TRIGGER_GTADTRA2N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa695ee73260f9b9f31d86d6ac565720d',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra2n_5fb2n',['ADC_E_ACTIVE_TRIGGER_GTADTRA2N_B2N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fac1ce41a1b9c81fd268303ceae19f1b33',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra3n',['ADC_E_ACTIVE_TRIGGER_GTADTRA3N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fabd1c0ab8049d40a082f9d6cc460eae9d',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra3n_5fb3n',['ADC_E_ACTIVE_TRIGGER_GTADTRA3N_B3N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa106f24545d7f52d7e2e0ec800848bf56',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra4n',['ADC_E_ACTIVE_TRIGGER_GTADTRA4N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fab97a0c9ee7c73c5e134a0e51411929a3',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra4n_5fb4n',['ADC_E_ACTIVE_TRIGGER_GTADTRA4N_B4N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fad04c5806b31c04576c04c05466ecb7fd',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra5n',['ADC_E_ACTIVE_TRIGGER_GTADTRA5N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fac5a7fe7f78684f5e2e58c7c1c6ef73c3',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra5n_5fb5n',['ADC_E_ACTIVE_TRIGGER_GTADTRA5N_B5N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa2fb982d751259b10f0d892e87cf34a94',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra6n',['ADC_E_ACTIVE_TRIGGER_GTADTRA6N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa5a16fcb8681d0cf1e741a9b307e88847',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra6n_5fb6n',['ADC_E_ACTIVE_TRIGGER_GTADTRA6N_B6N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fabbbd1ff618da6a0f205ac2b1e63e64b5',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra7n',['ADC_E_ACTIVE_TRIGGER_GTADTRA7N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa378bf8e67b6b93ec9880b0dda5a49cf1',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra7n_5fb7n',['ADC_E_ACTIVE_TRIGGER_GTADTRA7N_B7N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa28c50276ed742ce0db678377e18687e5',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra8n',['ADC_E_ACTIVE_TRIGGER_GTADTRA8N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faf8d4132591c78893ad583429c32ac4e8',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra8n_5fb8n',['ADC_E_ACTIVE_TRIGGER_GTADTRA8N_B8N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa5e524a4c78dec3eff0b12583fa1079ea',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra9n',['ADC_E_ACTIVE_TRIGGER_GTADTRA9N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6f493cf9c678ef4a1d368bb63bc6f2e0',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtra9n_5fb9n',['ADC_E_ACTIVE_TRIGGER_GTADTRA9N_B9N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fad91a9db8f7c795e2d11b825125758495',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb0n',['ADC_E_ACTIVE_TRIGGER_GTADTRB0N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa448af995c6515a9a4e86f04c46e8ada7',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb10n',['ADC_E_ACTIVE_TRIGGER_GTADTRB10N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faae587f46b153bbf2e99864de3797cdef',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb11n',['ADC_E_ACTIVE_TRIGGER_GTADTRB11N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa2c4758623e3a2aad4209c63491ca898',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb12n',['ADC_E_ACTIVE_TRIGGER_GTADTRB12N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9eff0146776bc2fd811f148a504234da',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb13n',['ADC_E_ACTIVE_TRIGGER_GTADTRB13N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fab20a730f226f3e7fbcf6921adf5bb5bc',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb14n',['ADC_E_ACTIVE_TRIGGER_GTADTRB14N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faf889da8954112cedca0f84bbb5a603c9',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb15n',['ADC_E_ACTIVE_TRIGGER_GTADTRB15N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa6163627f725cdbfdad6ebcc2e6b31846',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb1n',['ADC_E_ACTIVE_TRIGGER_GTADTRB1N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fafb7c42eaa57827783bb2eef236f31c00',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb2n',['ADC_E_ACTIVE_TRIGGER_GTADTRB2N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faae2c129cfe845f45768c8e2021d14343',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb3n',['ADC_E_ACTIVE_TRIGGER_GTADTRB3N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa574e696333924728cae8e361f78f29f',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb4n',['ADC_E_ACTIVE_TRIGGER_GTADTRB4N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa293d75611b1da95391d9b6af22cd68b0',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb5n',['ADC_E_ACTIVE_TRIGGER_GTADTRB5N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faff0811af228d90a5fe900fa96028078e',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb6n',['ADC_E_ACTIVE_TRIGGER_GTADTRB6N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557faa53fb29d181177973f0f9faa327a0424',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb7n',['ADC_E_ACTIVE_TRIGGER_GTADTRB7N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9a63067d741002399d546646cf9ea13d',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb8n',['ADC_E_ACTIVE_TRIGGER_GTADTRB8N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa5df525e46011f8befd1d42b25775206e',1,'r_adc_e.h']]], + ['adc_5fe_5factive_5ftrigger_5fgtadtrb9n',['ADC_E_ACTIVE_TRIGGER_GTADTRB9N',['../group___a_d_c___e.html#ggae49c0a7e6cc3e0a75850e2529e2f557fa9b6442c9b1add0999304ae38d9dbf368',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5faverage_5ffour',['ADC_E_ADD_AVERAGE_FOUR',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a44670148ec252d460b93341446298d65',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5faverage_5ftwo',['ADC_E_ADD_AVERAGE_TWO',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3adf05c281263ac034b85ee28759a22b09',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5ffour',['ADC_E_ADD_FOUR',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a4036c2cdaa57bf8599e36eb21d0a78a1',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5foff',['ADC_E_ADD_OFF',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3ab352925f95e9869bd239f31df58168b2',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5fsixteen',['ADC_E_ADD_SIXTEEN',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a8f16edf862670199e9a68347ece4840c',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5fthree',['ADC_E_ADD_THREE',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3a27eeeb12c5a0d9a0b1009520131be315',1,'r_adc_e.h']]], + ['adc_5fe_5fadd_5ftwo',['ADC_E_ADD_TWO',['../group___a_d_c___e.html#ggab0e11d4b95e596d916dc4eb65e22d4d3ad2dd39b24e9646d5807104257b69cc3d',1,'r_adc_e.h']]], + ['adc_5fe_5fclear_5fafter_5fread_5foff',['ADC_E_CLEAR_AFTER_READ_OFF',['../group___a_d_c___e.html#gga422cf88cc9da3ba156d8714d12ab76cea669d6e0019644b0499020a2cc9cbb6f6',1,'r_adc_e.h']]], + ['adc_5fe_5fclear_5fafter_5fread_5fon',['ADC_E_CLEAR_AFTER_READ_ON',['../group___a_d_c___e.html#gga422cf88cc9da3ba156d8714d12ab76ceab705431542744d64ac830f66defa61d0',1,'r_adc_e.h']]], + ['adc_5fe_5fdouble_5ftrigger_5fdisabled',['ADC_E_DOUBLE_TRIGGER_DISABLED',['../group___a_d_c___e.html#ggac0b5736dc0689efc4adc399542f3071ca865382fe418d7ab432b18c196f7ae8f1',1,'r_adc_e.h']]], + ['adc_5fe_5fdouble_5ftrigger_5fenabled',['ADC_E_DOUBLE_TRIGGER_ENABLED',['../group___a_d_c___e.html#ggac0b5736dc0689efc4adc399542f3071caa05d4613945e60b38cd50a7ab720c2fc',1,'r_adc_e.h']]], + ['adc_5fe_5fdouble_5ftrigger_5fenabled_5fextended',['ADC_E_DOUBLE_TRIGGER_ENABLED_EXTENDED',['../group___a_d_c___e.html#ggac0b5736dc0689efc4adc399542f3071cad3f6769a1a87595c24fe45ca41394de2',1,'r_adc_e.h']]], + ['adc_5fe_5felc_5fgroup_5fa_5fb_5fc_5fscan',['ADC_E_ELC_GROUP_A_B_C_SCAN',['../group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4aad16e88624cce006078aaec2f455fc4e',1,'r_adc_e.h']]], + ['adc_5fe_5felc_5fgroup_5fa_5fscan',['ADC_E_ELC_GROUP_A_SCAN',['../group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4a189d0a824d5db27f10917dbe522a78b7',1,'r_adc_e.h']]], + ['adc_5fe_5felc_5fgroup_5fb_5fscan',['ADC_E_ELC_GROUP_B_SCAN',['../group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4a4e40d19905cc52d4ee598eae53ab2fe6',1,'r_adc_e.h']]], + ['adc_5fe_5felc_5fgroup_5fc_5fscan',['ADC_E_ELC_GROUP_C_SCAN',['../group___a_d_c___e.html#ggaa7e9c8ba1296fac868aa6decfa2225b4a1c4f07380c5b0a7df77e5d1f5f59845b',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5fgrpb_5fgrpc_5frestart_5fcont_5fscan',['ADC_E_GRPA_GRPB_GRPC_RESTART_CONT_SCAN',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afac49f6eae45a6a5db0bce4b0a53b0a5ab',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5fgrpb_5fgrpc_5frestart_5fscan',['ADC_E_GRPA_GRPB_GRPC_RESTART_SCAN',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afac9d1cff44911bca45ae969e50ab63ff8',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5fgrpb_5fgrpc_5frestart_5ftop_5fcont_5fscan',['ADC_E_GRPA_GRPB_GRPC_RESTART_TOP_CONT_SCAN',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa27bb19af29f2a9b6790f28d4749f0658',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5fgrpb_5fgrpc_5ftop_5fcont_5fscan',['ADC_E_GRPA_GRPB_GRPC_TOP_CONT_SCAN',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa2b861d5fc5c79f234750c1ccd015dd82',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5fgrpb_5fgrpc_5ftop_5frestart_5fscan',['ADC_E_GRPA_GRPB_GRPC_TOP_RESTART_SCAN',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afaf26242454336838e0df3880b319ab436',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5fgrpb_5fgrpc_5fwait_5ftrig',['ADC_E_GRPA_GRPB_GRPC_WAIT_TRIG',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa94e2ddc531f07eb9c834a363f903b31e',1,'r_adc_e.h']]], + ['adc_5fe_5fgrpa_5fpriority_5foff',['ADC_E_GRPA_PRIORITY_OFF',['../group___a_d_c___e.html#ggaecc60f4098d74dddf3a8e98aa65e43afa4bc3e3609dc57526346083b466e065ee',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f0',['ADC_E_MASK_CHANNEL_0',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090baecaf6f7008e94a40b5a5c3f1f3961392',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f1',['ADC_E_MASK_CHANNEL_1',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba2b9c1663e5009446b538d2eb5e9f02e3',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f2',['ADC_E_MASK_CHANNEL_2',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090baad56d2d61a689b0d664177fa6e024b7a',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f3',['ADC_E_MASK_CHANNEL_3',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba8c387adca9c3324765fda24f66b46aa1',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f4',['ADC_E_MASK_CHANNEL_4',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090baaa6c0c0b4952290fdb21abca0a006076',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f5',['ADC_E_MASK_CHANNEL_5',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090bafb09eb3f26f0227861ef0d5c7c82a2e7',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f6',['ADC_E_MASK_CHANNEL_6',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba9d92286744ee3853f98595513297c3c1',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5fchannel_5f7',['ADC_E_MASK_CHANNEL_7',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090ba9ac287179e8ac16a2a512f6532172940',1,'r_adc_e.h']]], + ['adc_5fe_5fmask_5foff',['ADC_E_MASK_OFF',['../group___a_d_c___e.html#gga04662c7da4042227d066baa5b109090bab138f4d7f28ddb62f69104fcf4f0c0cc',1,'r_adc_e.h']]], + ['adc_5fevent_5fcalibration_5fcomplete',['ADC_EVENT_CALIBRATION_COMPLETE',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ae8d9c9c99ceb10f095bb4449fd2706b1',1,'r_adc_api.h']]], + ['adc_5fevent_5fcalibration_5frequest',['ADC_EVENT_CALIBRATION_REQUEST',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ae30b20571a57953009f49eb5cbc2866a',1,'r_adc_api.h']]], + ['adc_5fevent_5fconversion_5fcomplete',['ADC_EVENT_CONVERSION_COMPLETE',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847aa3091bf90a88f96ed9b5a6ab499680bb',1,'r_adc_api.h']]], + ['adc_5fevent_5fconversion_5ferror',['ADC_EVENT_CONVERSION_ERROR',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a4d62358854590ae9bed21fc8c8c96e09',1,'r_adc_api.h']]], + ['adc_5fevent_5ffifo_5foverflow',['ADC_EVENT_FIFO_OVERFLOW',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a0df21824c256f4cb9689cb1d6a3dd91a',1,'r_adc_api.h']]], + ['adc_5fevent_5ffifo_5fread_5frequest',['ADC_EVENT_FIFO_READ_REQUEST',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a227823940dfc7793973e6716ec17742e',1,'r_adc_api.h']]], + ['adc_5fevent_5flimit_5fclip',['ADC_EVENT_LIMIT_CLIP',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ac42d84c9087c3228125a5a2ae90f958f',1,'r_adc_api.h']]], + ['adc_5fevent_5foverflow',['ADC_EVENT_OVERFLOW',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a214f2bd1b932acbaacba970b138f23d2',1,'r_adc_api.h']]], + ['adc_5fevent_5fscan_5fcomplete',['ADC_EVENT_SCAN_COMPLETE',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a32297df4b82ea56a5536bb03fe907e64',1,'r_adc_api.h']]], + ['adc_5fevent_5fscan_5fcomplete_5fgroup_5fb',['ADC_EVENT_SCAN_COMPLETE_GROUP_B',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a8f67ee666423bc068d379ae85da36252',1,'r_adc_api.h']]], + ['adc_5fevent_5fscan_5fcomplete_5fgroup_5fc',['ADC_EVENT_SCAN_COMPLETE_GROUP_C',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ab7538351ad7e4ed3d866212b0e3b3099',1,'r_adc_api.h']]], + ['adc_5fevent_5fwindow_5fcompare_5fa',['ADC_EVENT_WINDOW_COMPARE_A',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847a0194955f4f59f8d6952adc058539632b',1,'r_adc_api.h']]], + ['adc_5fevent_5fwindow_5fcompare_5fb',['ADC_EVENT_WINDOW_COMPARE_B',['../group___a_d_c___a_p_i.html#ggae2177d6e5bf43e3749cc60f835456847ab32572630797968579adeed03f19bcd3',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f0',['ADC_GROUP_ID_0',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176af4886d3826fb26d4bbdfaeb2195a5ddc',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f1',['ADC_GROUP_ID_1',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a5affde6af0ba379220ade2c4ca8a027e',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f2',['ADC_GROUP_ID_2',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a3bbc61292808df4caf5c0991e7b9f73c',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f3',['ADC_GROUP_ID_3',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a10bc5348770837fad29ae361a75ede8e',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f4',['ADC_GROUP_ID_4',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a0dc20198ed1fcd90b6b5cee6da08677f',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f5',['ADC_GROUP_ID_5',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a4ce5371decbc45bfe70580f4d8717e39',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f6',['ADC_GROUP_ID_6',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176acc7f6d39b3a21eb846e58e1a8ce4142d',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f7',['ADC_GROUP_ID_7',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a21f524469d82b63154be5f2f1f9dd95d',1,'r_adc_api.h']]], + ['adc_5fgroup_5fid_5f8',['ADC_GROUP_ID_8',['../group___a_d_c___a_p_i.html#gga625267e574e3f26d9d55918652e91176a095b0310fe37230c34f3d1b4d48d4e42',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f0',['ADC_GROUP_MASK_0',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebaeedbedf9fc1fc6055524220d6e0af60d',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f1',['ADC_GROUP_MASK_1',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebaf727cf72c6c097e87f3e02209f1c2f1f',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f2',['ADC_GROUP_MASK_2',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba434af3ad0c8079644a51035acd8fd835',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f3',['ADC_GROUP_MASK_3',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba584a4fb88b98b8689d5a64e104fcbc6b',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f4',['ADC_GROUP_MASK_4',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba8a271a13324d7b13e732aeef6b5ef0dc',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f5',['ADC_GROUP_MASK_5',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba298a89e90d290117e69acb7569409a8a',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f6',['ADC_GROUP_MASK_6',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebadd19ea2551df6c56813bf9d9dfa3d218',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f7',['ADC_GROUP_MASK_7',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba0b145ee64281e271a0c2b075484b175a',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5f8',['ADC_GROUP_MASK_8',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebaad618fc3cf12d1bb5575659bb56ffb84',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5fall',['ADC_GROUP_MASK_ALL',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121ebafcbf5a874521ebcfb98323c2a7990847',1,'r_adc_api.h']]], + ['adc_5fgroup_5fmask_5fnone',['ADC_GROUP_MASK_NONE',['../group___a_d_c___a_p_i.html#ggaee17c30275c1c9376cc485a62ea121eba6cc9000330017d217de6ca0e3eb70af5',1,'r_adc_api.h']]], + ['adc_5fmode_5fcontinuous_5fscan',['ADC_MODE_CONTINUOUS_SCAN',['../group___a_d_c___a_p_i.html#gga760a8dafdcddcfadfea0aa3e01159164adb8344d57ee438ee90c65b79ff4f3e12',1,'r_adc_api.h']]], + ['adc_5fmode_5fgroup_5fscan',['ADC_MODE_GROUP_SCAN',['../group___a_d_c___a_p_i.html#gga760a8dafdcddcfadfea0aa3e01159164a39fdd1c003301890e59b5188a6cc6658',1,'r_adc_api.h']]], + ['adc_5fmode_5fsingle_5fscan',['ADC_MODE_SINGLE_SCAN',['../group___a_d_c___a_p_i.html#gga760a8dafdcddcfadfea0aa3e01159164a1ac4130959b24d8426fd8f59326a5630',1,'r_adc_api.h']]], + ['adc_5fresolution_5f10_5fbit',['ADC_RESOLUTION_10_BIT',['../group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaa24283bc621bcaa68a73c8eab142030b8',1,'r_adc_api.h']]], + ['adc_5fresolution_5f12_5fbit',['ADC_RESOLUTION_12_BIT',['../group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaab35c4dcc6cda85146a9ffd339c5de1c4',1,'r_adc_api.h']]], + ['adc_5fresolution_5f14_5fbit',['ADC_RESOLUTION_14_BIT',['../group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaa814e543d0745170516a09fb6de621ca8',1,'r_adc_api.h']]], + ['adc_5fresolution_5f16_5fbit',['ADC_RESOLUTION_16_BIT',['../group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaac28428ad60debb0ae5bfd0540c90f33c',1,'r_adc_api.h']]], + ['adc_5fresolution_5f24_5fbit',['ADC_RESOLUTION_24_BIT',['../group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaaebcd8848d34004d66f084b9f80a07d24',1,'r_adc_api.h']]], + ['adc_5fresolution_5f8_5fbit',['ADC_RESOLUTION_8_BIT',['../group___a_d_c___a_p_i.html#ggaf88bfcbfc4a19c82f8bb423218d13cdaa8ebd681650d751af22a7849be9ab8bc1',1,'r_adc_api.h']]], + ['adc_5fstate_5fcalibration_5fin_5fprogress',['ADC_STATE_CALIBRATION_IN_PROGRESS',['../group___a_d_c___a_p_i.html#gga2783ab2e29809bf0a50bc66c6fa8d3c6a4766863227ec2104751a15e3eb148d86',1,'r_adc_api.h']]], + ['adc_5fstate_5fidle',['ADC_STATE_IDLE',['../group___a_d_c___a_p_i.html#gga2783ab2e29809bf0a50bc66c6fa8d3c6a618306d7336575e80aa3d79865a52c2d',1,'r_adc_api.h']]], + ['adc_5fstate_5fscan_5fin_5fprogress',['ADC_STATE_SCAN_IN_PROGRESS',['../group___a_d_c___a_p_i.html#gga2783ab2e29809bf0a50bc66c6fa8d3c6abe1c11b191e48669cc5129aca45800d7',1,'r_adc_api.h']]], + ['adc_5ftrigger_5fasync_5fexternal',['ADC_TRIGGER_ASYNC_EXTERNAL',['../group___a_d_c___a_p_i.html#gga1ac380ffe2ebef256338616747d330e3a63f9a00e836c78964fa67c434a6718bc',1,'r_adc_api.h']]], + ['adc_5ftrigger_5fsoftware',['ADC_TRIGGER_SOFTWARE',['../group___a_d_c___a_p_i.html#gga1ac380ffe2ebef256338616747d330e3a627b041b2095033f96a9a97dc474d26a',1,'r_adc_api.h']]], + ['adc_5ftrigger_5fsync_5felc',['ADC_TRIGGER_SYNC_ELC',['../group___a_d_c___a_p_i.html#gga1ac380ffe2ebef256338616747d330e3a2a4fc2c9166f5013e45f534136a15990',1,'r_adc_api.h']]] ]; diff --git a/search/enumvalues_1.js b/search/enumvalues_1.js index b5d146f..bcc1012 100644 --- a/search/enumvalues_1.js +++ b/search/enumvalues_1.js @@ -1,66 +1,260 @@ var searchData= [ - ['can_5fclock_5fsource_5fcanmclk',['CAN_CLOCK_SOURCE_CANMCLK',['../group___c_a_n___a_p_i.html#gga5bf3c71a3b53b409e9ee682c69189a39a5c90a69c9ba1a8116b6ec45ff238e117',1,'r_can_api.h']]], - ['can_5fclock_5fsource_5fpclkb',['CAN_CLOCK_SOURCE_PCLKB',['../group___c_a_n___a_p_i.html#gga5bf3c71a3b53b409e9ee682c69189a39a7c0cedacb23a57e50692191f61915cbd',1,'r_can_api.h']]], - ['can_5fevent_5fbus_5frecovery',['CAN_EVENT_BUS_RECOVERY',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4a9b30162960edad175a755686a65a50',1,'r_can_api.h']]], - ['can_5fevent_5ferr_5fbus_5flock',['CAN_EVENT_ERR_BUS_LOCK',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbabd3cace64bccbd9bdc6219453b7cfbbd',1,'r_can_api.h']]], - ['can_5fevent_5ferr_5fbus_5foff',['CAN_EVENT_ERR_BUS_OFF',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbad11062356307dd2b72a96a00a4929037',1,'r_can_api.h']]], - ['can_5fevent_5ferr_5fchannel',['CAN_EVENT_ERR_CHANNEL',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbab16a5328b930c53524aecbc4d580bb24',1,'r_can_api.h']]], - ['can_5fevent_5ferr_5fglobal',['CAN_EVENT_ERR_GLOBAL',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba8adaa142ed94841f5f282232ce414333',1,'r_can_api.h']]], - ['can_5fevent_5ferr_5fpassive',['CAN_EVENT_ERR_PASSIVE',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbafd0c186a8462372ff19061f8ff97160f',1,'r_can_api.h']]], - ['can_5fevent_5ferr_5fwarning',['CAN_EVENT_ERR_WARNING',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4cf2031ec5e169907edd2bd5d0caee00',1,'r_can_api.h']]], - ['can_5fevent_5fmailbox_5fmessage_5flost',['CAN_EVENT_MAILBOX_MESSAGE_LOST',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbaacf601c286d90d108d59de289cdfd80c',1,'r_can_api.h']]], - ['can_5fevent_5frx_5fcomplete',['CAN_EVENT_RX_COMPLETE',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbaa0bc5e15cee037a1d102b517ef63e161',1,'r_can_api.h']]], - ['can_5fevent_5ftx_5faborted',['CAN_EVENT_TX_ABORTED',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba973c55ab2a29a1554f488fedf29fea8a',1,'r_can_api.h']]], - ['can_5fevent_5ftx_5fcomplete',['CAN_EVENT_TX_COMPLETE',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbac169b4940b7cb76562efd7439fc76949',1,'r_can_api.h']]], - ['can_5fframe_5ftype_5fdata',['CAN_FRAME_TYPE_DATA',['../group___c_a_n___a_p_i.html#ggad3ffe1ae0429fcd1053a969d96c47610a1da44b52c2731b02cf02ca55eec08899',1,'r_can_api.h']]], - ['can_5fframe_5ftype_5fremote',['CAN_FRAME_TYPE_REMOTE',['../group___c_a_n___a_p_i.html#ggad3ffe1ae0429fcd1053a969d96c47610a10c7ad0f4e083496ad3a3032fc533920',1,'r_can_api.h']]], - ['can_5fglobal_5fid_5fmode_5fextended',['CAN_GLOBAL_ID_MODE_EXTENDED',['../group___c_a_n___a_p_i.html#ggab798132b937282be9589b6ed177ea999a7dc9d3f494129db1c953915d1b781faa',1,'r_can_api.h']]], - ['can_5fglobal_5fid_5fmode_5fmixed',['CAN_GLOBAL_ID_MODE_MIXED',['../group___c_a_n___a_p_i.html#ggab798132b937282be9589b6ed177ea999aabdf871d5bbaf279c8dcf743ca64b488',1,'r_can_api.h']]], - ['can_5fglobal_5fid_5fmode_5fstandard',['CAN_GLOBAL_ID_MODE_STANDARD',['../group___c_a_n___a_p_i.html#ggab798132b937282be9589b6ed177ea999af93ba7d9a4356ffa8c9b49f26c4f1b3d',1,'r_can_api.h']]], - ['can_5fid_5fmode_5fextended',['CAN_ID_MODE_EXTENDED',['../group___c_a_n___a_p_i.html#ggabc98e244722dcea05b5ce91bdb4c70c8abc5a87ed8edf218a6b44e4cceb48c0cb',1,'r_can_api.h']]], - ['can_5fid_5fmode_5fstandard',['CAN_ID_MODE_STANDARD',['../group___c_a_n___a_p_i.html#ggabc98e244722dcea05b5ce91bdb4c70c8a5d29b837d94d14fb99868c2d0a5220b0',1,'r_can_api.h']]], - ['can_5fmailbox_5freceive',['CAN_MAILBOX_RECEIVE',['../group___c_a_n___a_p_i.html#gga99db0880f7c03215e00781d3e57db3a3a5f4004ddfe179e388be8bb240527450e',1,'r_can_api.h']]], - ['can_5fmailbox_5ftransmit',['CAN_MAILBOX_TRANSMIT',['../group___c_a_n___a_p_i.html#gga99db0880f7c03215e00781d3e57db3a3a1c100296f7b9384c8e09b55fd611242d',1,'r_can_api.h']]], - ['can_5fmessage_5fmode_5foverrun',['CAN_MESSAGE_MODE_OVERRUN',['../group___c_a_n___a_p_i.html#gga42c6d0b24e77b50c47ec54bafcac7604af25ce6de3b35f5abe47186351372b8b7',1,'r_can_api.h']]], - ['can_5fmessage_5fmode_5foverwrite',['CAN_MESSAGE_MODE_OVERWRITE',['../group___c_a_n___a_p_i.html#gga42c6d0b24e77b50c47ec54bafcac7604ad8aab020d2b6d64777a0be580f44ddb4',1,'r_can_api.h']]], - ['can_5foperation_5fmode_5fhalt',['CAN_OPERATION_MODE_HALT',['../group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7a38a4c4896b9a14a3fa8411468b5017ee',1,'r_can_api.h']]], - ['can_5foperation_5fmode_5fnormal',['CAN_OPERATION_MODE_NORMAL',['../group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7abde5d9e8f5711b6fe8374671c96e6f72',1,'r_can_api.h']]], - ['can_5foperation_5fmode_5freset',['CAN_OPERATION_MODE_RESET',['../group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7a91f40057ea820ca0cf30a52393d5d741',1,'r_can_api.h']]], - ['can_5foperation_5fmode_5fsleep',['CAN_OPERATION_MODE_SLEEP',['../group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7adaf544ef1adfe3c7db5634e04f765aa3',1,'r_can_api.h']]], - ['can_5ftest_5fmode_5fdisabled',['CAN_TEST_MODE_DISABLED',['../group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7ae7dee8043ba34d7a3d09f5246bd870f0',1,'r_can_api.h']]], - ['can_5ftest_5fmode_5finternal_5fbus',['CAN_TEST_MODE_INTERNAL_BUS',['../group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a1a181f00a1eab8aaae36031a9e403e88',1,'r_can_api.h']]], - ['can_5ftest_5fmode_5flisten',['CAN_TEST_MODE_LISTEN',['../group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a8e80b696c1567281ef11cc0d659b29bc',1,'r_can_api.h']]], - ['can_5ftest_5fmode_5floopback_5fexternal',['CAN_TEST_MODE_LOOPBACK_EXTERNAL',['../group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a892393a146c929398882d92a7c9303eb',1,'r_can_api.h']]], - ['can_5ftest_5fmode_5floopback_5finternal',['CAN_TEST_MODE_LOOPBACK_INTERNAL',['../group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a53216c2055f64910bb7a47d5aa239f90',1,'r_can_api.h']]], - ['canfd_5ferror_5fchannel_5fack',['CANFD_ERROR_CHANNEL_ACK',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abc967223593d6928cfa24aef349f5e64',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5fack_5fdelimiter',['CANFD_ERROR_CHANNEL_ACK_DELIMITER',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a5c4e3bece7c60441a51d3899e73a158f',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5farbitration_5floss',['CANFD_ERROR_CHANNEL_ARBITRATION_LOSS',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a38ec5eabdb1b8b29cece678ae973e1b8',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5fbit_5fdominant',['CANFD_ERROR_CHANNEL_BIT_DOMINANT',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4afe7d23457db11eedaa48cec9b1d9b3a6',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5fbit_5frecessive',['CANFD_ERROR_CHANNEL_BIT_RECESSIVE',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4acdd82b46241db3cd909c4950a263cb36',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5fbus',['CANFD_ERROR_CHANNEL_BUS',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a4fa7f77f606948c2409343b262b9a6a6',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5fbus_5flock',['CANFD_ERROR_CHANNEL_BUS_LOCK',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a62b2afdb4d00175d7ee90c4f86b917d9',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5fbus_5foff_5fentry',['CANFD_ERROR_CHANNEL_BUS_OFF_ENTRY',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a0fe1987f2df69fa7787ccae5a020968e',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5fbus_5foff_5frecovery',['CANFD_ERROR_CHANNEL_BUS_OFF_RECOVERY',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ad1f966b89bb8ff0403a70e3a0170383f',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5fcrc',['CANFD_ERROR_CHANNEL_CRC',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a529535a14f0b9aa29b20ba5b22abb225',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5fform',['CANFD_ERROR_CHANNEL_FORM',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abee54fb0333c85f37a216959e18b7a11',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5foverload',['CANFD_ERROR_CHANNEL_OVERLOAD',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ac0191e933ec767fbc545ff93697aaafb',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5fpassive',['CANFD_ERROR_CHANNEL_PASSIVE',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a30a620f848af57cf1da8fce485c518ee',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5fstuff',['CANFD_ERROR_CHANNEL_STUFF',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a47a1524b5138710ca7fd5b55325a823d',1,'r_canfd.h']]], - ['canfd_5ferror_5fchannel_5fwarning',['CANFD_ERROR_CHANNEL_WARNING',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a1e8de2fee13f446d6d7f218420af1a75',1,'r_canfd.h']]], - ['canfd_5ferror_5fglobal_5fdlc',['CANFD_ERROR_GLOBAL_DLC',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ac1b7da9fdca7a6fa3c9b9ba33371f4a8',1,'r_canfd.h']]], - ['canfd_5ferror_5fglobal_5fmessage_5flost',['CANFD_ERROR_GLOBAL_MESSAGE_LOST',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abee1888c27382c7121781db44c31bc2b',1,'r_canfd.h']]], - ['canfd_5ferror_5fglobal_5fpayload_5foverflow',['CANFD_ERROR_GLOBAL_PAYLOAD_OVERFLOW',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a5d38f69b80c5a2ca136cc2372885dd15',1,'r_canfd.h']]], - ['canfd_5fframe_5foption_5fbrs',['CANFD_FRAME_OPTION_BRS',['../group___c_a_n_f_d.html#gga6c4d104c3a9cce6b74a05035f0af6d87a4a5ce70c8fb9ab5d9e320a79dd59aebf',1,'r_canfd.h']]], - ['canfd_5fframe_5foption_5ferror',['CANFD_FRAME_OPTION_ERROR',['../group___c_a_n_f_d.html#gga6c4d104c3a9cce6b74a05035f0af6d87ad719b21681eae000b3bf7f55ef225470',1,'r_canfd.h']]], - ['canfd_5fframe_5foption_5ffd',['CANFD_FRAME_OPTION_FD',['../group___c_a_n_f_d.html#gga6c4d104c3a9cce6b74a05035f0af6d87a46bb2a869fc5c7b63b16bc822d4ec712',1,'r_canfd.h']]], - ['canfd_5fstatus_5fbus_5foff',['CANFD_STATUS_BUS_OFF',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a23dd8461a4d2bf187fba45b46a3fff93',1,'r_canfd.h']]], - ['canfd_5fstatus_5ferror_5fpassive',['CANFD_STATUS_ERROR_PASSIVE',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0aa108c9efbacb5e55777e0e0339a9be07',1,'r_canfd.h']]], - ['canfd_5fstatus_5fesi',['CANFD_STATUS_ESI',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a5701150882ad9d87efee5ade0a4c658c',1,'r_canfd.h']]], - ['canfd_5fstatus_5fhalt_5fmode',['CANFD_STATUS_HALT_MODE',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a3d1b4528bdce56d189277bedac424cc4',1,'r_canfd.h']]], - ['canfd_5fstatus_5fready',['CANFD_STATUS_READY',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a028b55778be2605790aedf97f8491c8d',1,'r_canfd.h']]], - ['canfd_5fstatus_5freceiving',['CANFD_STATUS_RECEIVING',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a0591ba665da851a63de95c9d819673d5',1,'r_canfd.h']]], - ['canfd_5fstatus_5freset_5fmode',['CANFD_STATUS_RESET_MODE',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a9d1022be800bc150d6daf64245c198ec',1,'r_canfd.h']]], - ['canfd_5fstatus_5fsleep_5fmode',['CANFD_STATUS_SLEEP_MODE',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a0a2d6442a22874bd0016a444f6f8d16a',1,'r_canfd.h']]], - ['canfd_5fstatus_5ftransmitting',['CANFD_STATUS_TRANSMITTING',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a3e66a7f94e0abd296376c545e7388f2e',1,'r_canfd.h']]] + ['bsp_5fbypass_5ffreq_5frange_5f12mhz',['BSP_BYPASS_FREQ_RANGE_12MHZ',['../group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fbad943f5284b3332ff337bc791ab36ffd4',1,'bsp_io.h']]], + ['bsp_5fbypass_5ffreq_5frange_5f1mhz',['BSP_BYPASS_FREQ_RANGE_1MHZ',['../group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fbaf7dda67eeadcf51f16aff39c09f7614b',1,'bsp_io.h']]], + ['bsp_5fbypass_5ffreq_5frange_5f24mhz',['BSP_BYPASS_FREQ_RANGE_24MHZ',['../group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fba0b0d404e8b95a60f5f6f8ce3f3b71ff4',1,'bsp_io.h']]], + ['bsp_5fbypass_5ffreq_5frange_5f48mhz',['BSP_BYPASS_FREQ_RANGE_48MHZ',['../group___b_s_p___i_o.html#ggabb6374b9eb754bff909bb9b0d25a04fba13b74446c67d06c3feffa96cd34a6dc3',1,'bsp_io.h']]], + ['bsp_5fbypass_5fmode_5fcrystal_5fosc',['BSP_BYPASS_MODE_CRYSTAL_OSC',['../group___b_s_p___i_o.html#gga65987c1da1d49f85463de102d5d24c2eafc7271d2760ab1dcd2e368e2eb7f9a7a',1,'bsp_io.h']]], + ['bsp_5fbypass_5fmode_5fexternal_5fclk',['BSP_BYPASS_MODE_EXTERNAL_CLK',['../group___b_s_p___i_o.html#gga65987c1da1d49f85463de102d5d24c2eaf8967b77658e57030b8e3b5611049e09',1,'bsp_io.h']]], + ['bsp_5fbypass_5fmode_5fpower_5fdown',['BSP_BYPASS_MODE_POWER_DOWN',['../group___b_s_p___i_o.html#gga65987c1da1d49f85463de102d5d24c2ea018ff64d40ae82d9f9014b637ba79869',1,'bsp_io.h']]], + ['bsp_5fbypass_5foscillator_5faudio',['BSP_BYPASS_OSCILLATOR_AUDIO',['../group___b_s_p___i_o.html#gga78e68e2247154764cd7d387d3b191095a4e41231154d741945cb439385369bdf3',1,'bsp_io.h']]], + ['bsp_5fbypass_5foscillator_5femclk',['BSP_BYPASS_OSCILLATOR_EMCLK',['../group___b_s_p___i_o.html#gga78e68e2247154764cd7d387d3b191095a9305c0e423f1fbafdd0e0e19e08bdbae',1,'bsp_io.h']]], + ['bsp_5fbypass_5foscillator_5frtc',['BSP_BYPASS_OSCILLATOR_RTC',['../group___b_s_p___i_o.html#gga78e68e2247154764cd7d387d3b191095a32152264d3d4ea0b5e8f3e4bb36346a8',1,'bsp_io.h']]], + ['bsp_5fdelay_5funits_5fmicroseconds',['BSP_DELAY_UNITS_MICROSECONDS',['../group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2baa0312618f2508347a9a815b5887c12ae',1,'bsp_delay.h']]], + ['bsp_5fdelay_5funits_5fmilliseconds',['BSP_DELAY_UNITS_MILLISECONDS',['../group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2ba59fcc4e8d51046d4a1bd63c87ac64913',1,'bsp_delay.h']]], + ['bsp_5fdelay_5funits_5fseconds',['BSP_DELAY_UNITS_SECONDS',['../group___b_s_p___m_c_u.html#ggafd98e2a6f080d6a52a3ef72e3d731b2bacc709da08ef4acc99bf6e2e84946be5d',1,'bsp_delay.h']]], + ['bsp_5fethernet_5fchannel_5f0',['BSP_ETHERNET_CHANNEL_0',['../group___b_s_p___i_o.html#gga7a9217abd402bee215bab2874db8dbcdadf0b3becd8ccf61e2336c87d51ebdb92',1,'bsp_io.h']]], + ['bsp_5fethernet_5fchannel_5f1',['BSP_ETHERNET_CHANNEL_1',['../group___b_s_p___i_o.html#gga7a9217abd402bee215bab2874db8dbcdac1123d8c4918b71283ddd440f9f6b679',1,'bsp_io.h']]], + ['bsp_5fethernet_5fmode_5fmii',['BSP_ETHERNET_MODE_MII',['../group___b_s_p___i_o.html#gga96797df60510eb9bc4a73613de51fae5a96490fa59d311791525aa664edd21abd',1,'bsp_io.h']]], + ['bsp_5fethernet_5fmode_5frmii',['BSP_ETHERNET_MODE_RMII',['../group___b_s_p___i_o.html#gga96797df60510eb9bc4a73613de51fae5a2a654e5a38c212f306093f5e60218a22',1,'bsp_io.h']]], + ['bsp_5fethernet_5fvoltage_5f18',['BSP_ETHERNET_VOLTAGE_18',['../group___b_s_p___i_o.html#gga0eaa3fb56a6c45bb8725d7ccc3c7c67ea188654c0888f5e6daa99f0f456128ce4',1,'bsp_io.h']]], + ['bsp_5fethernet_5fvoltage_5f25',['BSP_ETHERNET_VOLTAGE_25',['../group___b_s_p___i_o.html#gga0eaa3fb56a6c45bb8725d7ccc3c7c67eaaadd11c1476569d301871c45eae8d9eb',1,'bsp_io.h']]], + ['bsp_5fethernet_5fvoltage_5f33',['BSP_ETHERNET_VOLTAGE_33',['../group___b_s_p___i_o.html#gga0eaa3fb56a6c45bb8725d7ccc3c7c67ea74ec767baac2681f30afba30a09b80f5',1,'bsp_io.h']]], + ['bsp_5fgrp_5firq_5funsupported',['BSP_GRP_IRQ_UNSUPPORTED',['../group___b_s_p___m_c_u.html#gga72e70676360e6a4d753a8d235e6b93a2a7478d3bbfdc1220e125de34635c0f47a',1,'bsp_group_irq.h']]], + ['bsp_5fi3c_5fmode_5fnor',['BSP_I3C_MODE_NOR',['../group___b_s_p___i_o.html#ggaf63bd80b976004bd5ed7fd251fcdf1b4a36240372d534ab9cbe23287aa4020805',1,'bsp_io.h']]], + ['bsp_5fi3c_5fmode_5fstb',['BSP_I3C_MODE_STB',['../group___b_s_p___i_o.html#ggaf63bd80b976004bd5ed7fd251fcdf1b4a7bfb9e2a71ee2dcc6910de37e977ccc8',1,'bsp_io.h']]], + ['bsp_5fi3c_5fvoltage_5f12',['BSP_I3C_VOLTAGE_12',['../group___b_s_p___i_o.html#ggac4cc2c33eed8a21f90fac99d323a2b85a341c63122ad909d8ea4a615bdb3a9f8d',1,'bsp_io.h']]], + ['bsp_5fi3c_5fvoltage_5f18',['BSP_I3C_VOLTAGE_18',['../group___b_s_p___i_o.html#ggac4cc2c33eed8a21f90fac99d323a2b85a00b60308d9f46162d50bb8014fe345d0',1,'bsp_io.h']]], + ['bsp_5fio_5faudio_5fclk1',['BSP_IO_AUDIO_CLK1',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5116644c1d06c3af3240908b62f1a1e1',1,'bsp_io.h']]], + ['bsp_5fio_5faudio_5fclk2',['BSP_IO_AUDIO_CLK2',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa456bca4a2c1ee49955d22b162753d000',1,'bsp_io.h']]], + ['bsp_5fio_5fdirection_5fhiz',['BSP_IO_DIRECTION_HIZ',['../group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78bafea764c1f74ea85192b085e96d1b3684',1,'bsp_io.h']]], + ['bsp_5fio_5fdirection_5finput',['BSP_IO_DIRECTION_INPUT',['../group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78ba73a617ab836493568a0cf0aa4ba86484',1,'bsp_io.h']]], + ['bsp_5fio_5fdirection_5foutput',['BSP_IO_DIRECTION_OUTPUT',['../group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78bab665c3052bb5373b7821ab8898ee859b',1,'bsp_io.h']]], + ['bsp_5fio_5fdirection_5foutput_5fwith_5finput_5fenable',['BSP_IO_DIRECTION_OUTPUT_WITH_INPUT_ENABLE',['../group___b_s_p___i_o.html#gga45a10c059c82e2062c0b72fa801dd78ba682fd05ca96b45840c4cd5d9fd35e405',1,'bsp_io.h']]], + ['bsp_5fio_5flevel_5fhigh',['BSP_IO_LEVEL_HIGH',['../group___b_s_p___i_o.html#ggab4ef0cc3fce421d48310f23c614aadc0acf9a28559b5a18ed9b8af4c2a7df10ef',1,'bsp_io.h']]], + ['bsp_5fio_5flevel_5flow',['BSP_IO_LEVEL_LOW',['../group___b_s_p___i_o.html#ggab4ef0cc3fce421d48310f23c614aadc0abb31064742440cdbdd638330a1cf7a9f',1,'bsp_io.h']]], + ['bsp_5fio_5fnmi',['BSP_IO_NMI',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa3bf300bb3aa746665b49bc8200bd7963',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f00',['BSP_IO_PORT_00',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea11fccb10e338ed526b52e66f3b0e6f92',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f00_5fpin_5f00',['BSP_IO_PORT_00_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa62ce6a7aef8164ea6bce7a9209b2506f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f00_5fpin_5f01',['BSP_IO_PORT_00_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa9068c73f5a59c1a55f6e57bd406edf6c',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f01',['BSP_IO_PORT_01',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea1465c0a3f756e587525c11d00e3883f9',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f01_5fpin_5f00',['BSP_IO_PORT_01_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0ae62012d023d55c6d1141e1f09d09d8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f01_5fpin_5f01',['BSP_IO_PORT_01_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa30e6ff3f5eca3d04bec3d714e474f3df',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f02',['BSP_IO_PORT_02',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4944568317a214298b34be9bc3f26e48',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f02_5fpin_5f00',['BSP_IO_PORT_02_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa635ed7a090bf9052c6cfc6c225335c9a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f02_5fpin_5f01',['BSP_IO_PORT_02_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaea414f512f3b2c84888d93d506fbe172',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f03',['BSP_IO_PORT_03',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea97a779742ba7c411dfa7edb66e9569e7',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f03_5fpin_5f00',['BSP_IO_PORT_03_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa939175dd8a48d965dd7c667764cc1fd5',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f03_5fpin_5f01',['BSP_IO_PORT_03_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac76bc2a911b588e27633978b1fe3f3f4',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f04',['BSP_IO_PORT_04',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea8807e320a0f7ce2bbc6b61cf25a0b072',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f04_5fpin_5f00',['BSP_IO_PORT_04_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa52d01ece7c8204d5780ce72179f09c76',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f04_5fpin_5f01',['BSP_IO_PORT_04_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaeb156edee3b3c89b68b51df1f396a61f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f05',['BSP_IO_PORT_05',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea20eb52e6abf9b112dc5af6931984dec1',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f05_5fpin_5f00',['BSP_IO_PORT_05_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaceb466e44e04e3b0ab04a7f10003a8be',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f05_5fpin_5f01',['BSP_IO_PORT_05_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aacf43fded0d1c0e1888ec9ae765ddf5f2',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f05_5fpin_5f02',['BSP_IO_PORT_05_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaab1bcef9f45fb16232cc5913697eed32',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f06',['BSP_IO_PORT_06',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea35098d51c380e353369db8e0881952a6',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f06_5fpin_5f00',['BSP_IO_PORT_06_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae9d15e574de9e35f7e1197c95d05dad9',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f06_5fpin_5f01',['BSP_IO_PORT_06_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa95398234ddf9c5235901f089d4e81662',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f07',['BSP_IO_PORT_07',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eab007ee52e771b0d17a8e54fa3fb6e93b',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f07_5fpin_5f00',['BSP_IO_PORT_07_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6569ae616e2c7ec066f05618be44d35a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f07_5fpin_5f01',['BSP_IO_PORT_07_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae3e273b0a415a41e1f4e3ae91817c186',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f07_5fpin_5f02',['BSP_IO_PORT_07_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa88e147f4775b65d5c96a282684a408c8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f08',['BSP_IO_PORT_08',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea3f042a23f398537b95fd88334a3b4d9e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f08_5fpin_5f00',['BSP_IO_PORT_08_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad47cbb33ca5c9f12ee8dca084e3062d3',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f08_5fpin_5f01',['BSP_IO_PORT_08_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaaedcbffa95e268f197778af394a4bf35',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f08_5fpin_5f02',['BSP_IO_PORT_08_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6c298d5d898981f883b4b01f90e5c996',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f09',['BSP_IO_PORT_09',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea584e14f51456fd94e7c7f0a9ed66b2bf',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f09_5fpin_5f00',['BSP_IO_PORT_09_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadb3e4e605bcb1d788367185e4058982f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f09_5fpin_5f01',['BSP_IO_PORT_09_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf9970a4d1a41e6482fad460393a196a1',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f10',['BSP_IO_PORT_10',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea0a6ffd6c20eaaa32409b9ca0dee293e8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f10_5fpin_5f00',['BSP_IO_PORT_10_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8ef0f2b6cc6de032c23c371dafc6004f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f10_5fpin_5f01',['BSP_IO_PORT_10_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0623a8fae8511929239804f47b76dbab',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f11',['BSP_IO_PORT_11',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eabf85020df009d581e4fadb6e8a1dbddb',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f11_5fpin_5f00',['BSP_IO_PORT_11_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa125041643933f0bc07f32f14887bdf9c',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f11_5fpin_5f01',['BSP_IO_PORT_11_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab951cf766f9cd671ae093a141bc0c49a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f12',['BSP_IO_PORT_12',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea78ad7bb48a9750a3ba08672b6baeef7e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f12_5fpin_5f00',['BSP_IO_PORT_12_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabaaa47451e1390c478c5b2a1725e6496',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f12_5fpin_5f01',['BSP_IO_PORT_12_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa41f8c9cb94f726c7030df2052fd79774',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f13',['BSP_IO_PORT_13',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eae0f99efe8ef380f164802966936f7847',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f13_5fpin_5f00',['BSP_IO_PORT_13_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0ed7d51f576b741e15330313031c2216',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f13_5fpin_5f01',['BSP_IO_PORT_13_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2014abe37005233fad759d8de134796a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f13_5fpin_5f02',['BSP_IO_PORT_13_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad24ad8bbfa5f6d10db6ff8dc75eadef5',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f14',['BSP_IO_PORT_14',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea775af46386b8ac7e29159624b9224295',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f14_5fpin_5f00',['BSP_IO_PORT_14_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad20c513c1e1b64b683255e3b3b34b09a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f14_5fpin_5f01',['BSP_IO_PORT_14_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7bf44c9d323051836f7cbdc7e9da06de',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f15',['BSP_IO_PORT_15',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea397323ae563e9bd7c503dc1c675fa395',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f15_5fpin_5f00',['BSP_IO_PORT_15_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa23d463236f6411d0c90196dabcc9c5cf',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f15_5fpin_5f01',['BSP_IO_PORT_15_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa191310dd2b5e6a16244b452a76983735',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f16',['BSP_IO_PORT_16',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea002722322e8a845391a87dcc7eb9cc45',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f16_5fpin_5f00',['BSP_IO_PORT_16_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae35842723dba01d6ced15e6349ad2d8e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f16_5fpin_5f01',['BSP_IO_PORT_16_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa922ad01a7323cb74f484964dc5d66697',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f17',['BSP_IO_PORT_17',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ead05a1353527cf2773715624fabd00a00',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f17_5fpin_5f00',['BSP_IO_PORT_17_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaae0e1e9e69f942b9db5e95ff83323ad4',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f17_5fpin_5f01',['BSP_IO_PORT_17_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa9e537caa46d62591f1a698b30897ee2',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f17_5fpin_5f02',['BSP_IO_PORT_17_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa16ff4369ccc2eb0e6447af953bc94500',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f18',['BSP_IO_PORT_18',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eae6713d42094e3ab520aabae92ebd40bc',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f18_5fpin_5f00',['BSP_IO_PORT_18_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa3c395ad7ae5d1d25edc8ba2a536d0525',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f18_5fpin_5f01',['BSP_IO_PORT_18_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac2479bdb7c292438a9d7c3dd4f48a16a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f19',['BSP_IO_PORT_19',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea175a84c2aa70454b4e6d4ab1c1bf09a6',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f19_5fpin_5f00',['BSP_IO_PORT_19_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadab728bf7f83ae6d642836403d5d2dc1',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f19_5fpin_5f01',['BSP_IO_PORT_19_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa1628f1c03dc3bfe49f118a6bb2400c53',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f20',['BSP_IO_PORT_20',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eabb06fb72ab7089198e72a6fea4a109e2',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f20_5fpin_5f00',['BSP_IO_PORT_20_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa53d05b3cda0c467bb7f5ed5999f2ab8f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f20_5fpin_5f01',['BSP_IO_PORT_20_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaaf1af3c7ee0c71fde7bfd1cd49949123',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f20_5fpin_5f02',['BSP_IO_PORT_20_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac47b0fc7594eb9f9b3b8b8ad31b464ec',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f21',['BSP_IO_PORT_21',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea26ec6accacb5dbb180a419780a88afe0',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f21_5fpin_5f00',['BSP_IO_PORT_21_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa26c218a01d621d492389ce4f74597f55',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f21_5fpin_5f01',['BSP_IO_PORT_21_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5dfe885cc0ee6d129a7759c8ffecfd7e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f22',['BSP_IO_PORT_22',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea2873610326361727fdadf7c95b1eb66f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f22_5fpin_5f00',['BSP_IO_PORT_22_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5c7fa78ba5a0152298956fda6cf85c5e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f22_5fpin_5f01',['BSP_IO_PORT_22_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa9ddc4ada31ca968e9b166cd11b440143',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f23',['BSP_IO_PORT_23',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4a80f7746adba5117728d74884967ff0',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f23_5fpin_5f00',['BSP_IO_PORT_23_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab4d640dac1a6dff63f33c79ee1e20c9e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f23_5fpin_5f01',['BSP_IO_PORT_23_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa98b1d268ef5f45e6751c0a99139acc5c',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f24',['BSP_IO_PORT_24',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea40a254bc0f42f443d78c717bed44a682',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f24_5fpin_5f00',['BSP_IO_PORT_24_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa40b055b032c42ad42b0d1878a4a52d73',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f24_5fpin_5f01',['BSP_IO_PORT_24_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa39f4c9b8a1bfe125213595ecc0b45df0',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f25',['BSP_IO_PORT_25',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea5f6e2b131b2f5b5dbd759533379d6105',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f25_5fpin_5f00',['BSP_IO_PORT_25_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa49e414efa6d0d02c604aac05bb9778db',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f25_5fpin_5f01',['BSP_IO_PORT_25_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf117a1aa77a1a547745adf145d8dc77e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f26',['BSP_IO_PORT_26',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eabc16d0f819ca9bb6eb8638e9b5e6c99e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f26_5fpin_5f00',['BSP_IO_PORT_26_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf4eff0573f5c549da8c41d0b38166e66',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f26_5fpin_5f01',['BSP_IO_PORT_26_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2a3374a2fd5198a534ee4a728349e13f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f27',['BSP_IO_PORT_27',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea566070ed168bf63dc412bdaf12d939e3',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f27_5fpin_5f00',['BSP_IO_PORT_27_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa1787bfc47089bd96d33fff7bad1153d1',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f27_5fpin_5f01',['BSP_IO_PORT_27_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa4a41ab4915afe1b7a374411fe9eb196e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f28',['BSP_IO_PORT_28',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea2657a0bb753f5a81301eda96ca631aa6',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f28_5fpin_5f00',['BSP_IO_PORT_28_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa614cf023157b36d3e2162e11318abc31',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f28_5fpin_5f01',['BSP_IO_PORT_28_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf8c5571fbe78f2c5e6a767c13aec041c',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f29',['BSP_IO_PORT_29',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4ea757a862c98494a0aaad6369a1f990',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f29_5fpin_5f00',['BSP_IO_PORT_29_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa57ff3c85ce33930afe04e3802c55227f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f29_5fpin_5f01',['BSP_IO_PORT_29_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2f376ba6a57ea3ac2d60a499a0f57c46',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f30',['BSP_IO_PORT_30',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea7faeb64a7250a38ddbc971bc030b07cb',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f30_5fpin_5f00',['BSP_IO_PORT_30_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2df8908dd4850253d394bc3b7e685a75',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f30_5fpin_5f01',['BSP_IO_PORT_30_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaaee42cef11c4a58e9e5aa68fd382299b',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f31',['BSP_IO_PORT_31',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4c75f0f2e7ca9e74a85f3b382e830b69',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f31_5fpin_5f00',['BSP_IO_PORT_31_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadc72aebfb0e4a967a56c0e6b9d00ef18',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f31_5fpin_5f01',['BSP_IO_PORT_31_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabc8eb75642cdbdaac75d88a34278250b',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f32',['BSP_IO_PORT_32',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eab5a70226eac6e8cdcdbf5d248637a917',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f32_5fpin_5f00',['BSP_IO_PORT_32_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac53d38f374d54699a1622468faedc544',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f32_5fpin_5f01',['BSP_IO_PORT_32_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac17f65dbf85a6c6e746f1bf21aa934db',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f33',['BSP_IO_PORT_33',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea6bf1e63d623c3adb59409fcc5c540be7',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f33_5fpin_5f00',['BSP_IO_PORT_33_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad9a5407f94f35c91c7d98c0c91ffd975',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f33_5fpin_5f01',['BSP_IO_PORT_33_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa62d85ff211777b182617b334c8f7e7b0',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f34',['BSP_IO_PORT_34',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea4654504be6ba72162f37014a9d73037c',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f34_5fpin_5f00',['BSP_IO_PORT_34_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab5b1771adf3821c23b1c4cfbeea5b4f5',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f34_5fpin_5f01',['BSP_IO_PORT_34_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae8415d4c07fce74af51a792896f3777e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f35',['BSP_IO_PORT_35',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eaf9d2db9d60f629faac9184c294f65984',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f35_5fpin_5f00',['BSP_IO_PORT_35_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0f2b7d0278bf5dcbe1a9d7b9cefd0c15',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f35_5fpin_5f01',['BSP_IO_PORT_35_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa25fdf456c4b05c5e15f51d615c3fa673',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f36',['BSP_IO_PORT_36',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea322678e3244fafb07badc6d529c62995',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f36_5fpin_5f00',['BSP_IO_PORT_36_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aadd39c324258c968a575e24a4fa7ff354',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f36_5fpin_5f01',['BSP_IO_PORT_36_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8d452d6083512df8aa8bcef4815ad8b8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f37',['BSP_IO_PORT_37',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea6d0ed5fd6b8112e4fe087bd4211e9cf8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f37_5fpin_5f00',['BSP_IO_PORT_37_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5f9f37be21799183925449eda63b433',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f37_5fpin_5f01',['BSP_IO_PORT_37_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2fae9399a986654ad829fd957a0b5129',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f37_5fpin_5f02',['BSP_IO_PORT_37_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa59817ac0e653810d530b8bb4a74305d6',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f38',['BSP_IO_PORT_38',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46eacee8ac33d0115b3997767c64527115ab',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f38_5fpin_5f00',['BSP_IO_PORT_38_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaba0a89ecb1ad6357f0ca6ca8067ff000',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f38_5fpin_5f01',['BSP_IO_PORT_38_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa9406041975509fcccff7d7dd93e786f3',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f39',['BSP_IO_PORT_39',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea994e790d360e9af8b4c681e3ce0bec74',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f39_5fpin_5f00',['BSP_IO_PORT_39_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0cd29a6c518b2c8e67932c1e8d6a62d4',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f39_5fpin_5f01',['BSP_IO_PORT_39_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa4f0e2180e0a141f1ef73934fa9c340d0',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f39_5fpin_5f02',['BSP_IO_PORT_39_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf0ecf908b8d4ce84a33b69ca4fdabca4',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f40',['BSP_IO_PORT_40',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea5e76257ac865ad0481c5ed353a4212c9',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f40_5fpin_5f00',['BSP_IO_PORT_40_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2d28483ae8cdc5474deca88e6bfe1dee',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f40_5fpin_5f01',['BSP_IO_PORT_40_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa63642ca9b2805ff92be0aa0bf7a66a9a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f40_5fpin_5f02',['BSP_IO_PORT_40_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6f5ee1365a8b7fc827fd3ceb3a4a8cb7',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f41',['BSP_IO_PORT_41',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea58562456ff71481a2de2866016b017f2',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f41_5fpin_5f00',['BSP_IO_PORT_41_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab20b0a224aa92ffab0e0405e33c7e61c',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f41_5fpin_5f01',['BSP_IO_PORT_41_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa72604af4694f399a0eca581ec5b897b8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f42',['BSP_IO_PORT_42',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea16bc2ebb264e5d30df602590dd0d4736',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f42_5fpin_5f00',['BSP_IO_PORT_42_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa51d3b48ed479b2ee3a46dc996d04b435',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f42_5fpin_5f01',['BSP_IO_PORT_42_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aacaf9e71dadad94b9b321585c69de0cd1',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f42_5fpin_5f02',['BSP_IO_PORT_42_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa7c6e61f76d6c3cc9a9dfd2f091bb0b3',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f42_5fpin_5f03',['BSP_IO_PORT_42_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaeffcc1d1f99236ae009d76eab5e0913d',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f42_5fpin_5f04',['BSP_IO_PORT_42_PIN_04',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa4f69d60a8685d441c35495d9d7dd09b8',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f43',['BSP_IO_PORT_43',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ead099a4e210a23e9a0370fd9a4cb13f3f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f43_5fpin_5f00',['BSP_IO_PORT_43_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa829088e17268397d6ddb14182a380e51',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f43_5fpin_5f01',['BSP_IO_PORT_43_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2c579ae3361bf6dfb4191b4da60910fe',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f43_5fpin_5f02',['BSP_IO_PORT_43_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa252a1fcd0f46a31afcf798e301bdba16',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f43_5fpin_5f03',['BSP_IO_PORT_43_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa37a5927be9bc40f6df0f64adc84d6006',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f44',['BSP_IO_PORT_44',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea21028efff67589ec637595607faf5c60',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f44_5fpin_5f00',['BSP_IO_PORT_44_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae4d19f207d3548baf4e742bfca68ae46',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f44_5fpin_5f01',['BSP_IO_PORT_44_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae3f2fd01c62e1ae8522ed5137ad07e5e',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f44_5fpin_5f02',['BSP_IO_PORT_44_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa73f9c0b7f80c8385d77008b1e785eb88',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f44_5fpin_5f03',['BSP_IO_PORT_44_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaff015065db131ce31c3e483ab8e9bb38',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f45',['BSP_IO_PORT_45',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea0650c44272c455fb11576525fe44580f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f45_5fpin_5f00',['BSP_IO_PORT_45_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac300c1ff8aaf37d2d3c840341888909a',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f45_5fpin_5f01',['BSP_IO_PORT_45_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa52b16585d757e097a7ff851e74748973',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f45_5fpin_5f02',['BSP_IO_PORT_45_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabfeca2fc1cd38d80e5e31eb3c5032b83',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f45_5fpin_5f03',['BSP_IO_PORT_45_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5d15277bbd25881faf865b00f8c46c1',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f46',['BSP_IO_PORT_46',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea8e4609c67698b2386ef7db4443b90bbb',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f46_5fpin_5f00',['BSP_IO_PORT_46_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5e49717d4d34dea314976288c20c6ee',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f46_5fpin_5f01',['BSP_IO_PORT_46_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa430a0d48fb4e6fc1f5a358a5c1b17d8f',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f46_5fpin_5f02',['BSP_IO_PORT_46_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa2818abb4ea0fa720d53bf0a0ba923870',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f46_5fpin_5f03',['BSP_IO_PORT_46_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa03dceeb58f56dc9a21b5bfa3176ab217',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f47',['BSP_IO_PORT_47',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ead500583b0bed23efc4b23cfaf604dfdb',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f47_5fpin_5f00',['BSP_IO_PORT_47_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafc63a732535ea65c522c06582757d4bb',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f47_5fpin_5f01',['BSP_IO_PORT_47_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa01a4990336c06cef1fea22c9ff2bfb2d',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f47_5fpin_5f02',['BSP_IO_PORT_47_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf98bbb6311738366fe772c4a0e320824',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f47_5fpin_5f03',['BSP_IO_PORT_47_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafbb3e071ee0dcccf61805c9bebb7befa',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f48',['BSP_IO_PORT_48',['../group___b_s_p___i_o.html#ga33a147902fb258f531c0bae40166f46ea41155aec80e8d3232eee7e5bd8576425',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f48_5fpin_5f00',['BSP_IO_PORT_48_PIN_00',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa57c5991f29df32eb1f4cd1c82082725b',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f48_5fpin_5f01',['BSP_IO_PORT_48_PIN_01',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa841054432251d0c7343d32144cee6789',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f48_5fpin_5f02',['BSP_IO_PORT_48_PIN_02',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa38e1abc8d5cae949e3f1e82f9f107cc3',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f48_5fpin_5f03',['BSP_IO_PORT_48_PIN_03',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5f53758d43bb074b01e3cba77cbb5cde',1,'bsp_io.h']]], + ['bsp_5fio_5fport_5f48_5fpin_5f04',['BSP_IO_PORT_48_PIN_04',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa60d189d33295043480ca9e91989fb126',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi0_5fio0',['BSP_IO_QSPI0_IO0',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6d353753e9a3f1ec95967f7e7fb630f5',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi0_5fio1',['BSP_IO_QSPI0_IO1',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7127f17a3754e1842aafd8c5b5d2062a',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi0_5fio2',['BSP_IO_QSPI0_IO2',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabcc1e97ac8b56e357b24ec536ddb4269',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi0_5fio3',['BSP_IO_QSPI0_IO3',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa62438f5462fd98d683368b464b18e4c',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi0_5fspclk',['BSP_IO_QSPI0_SPCLK',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaef51c0ad05848a82f97fa49a29f66f37',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi0_5fssl',['BSP_IO_QSPI0_SSL',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab0e97936a0410619b613d3e8ac4b0de1',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi1_5fio0',['BSP_IO_QSPI1_IO0',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5394e222d99a1ca17622c3d1c8a5c94d',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi1_5fio1',['BSP_IO_QSPI1_IO1',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7a1d5c0e646b87a381b9f1a829e2909b',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi1_5fio2',['BSP_IO_QSPI1_IO2',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa65598f991476837f7822ce44244e349e',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi1_5fio3',['BSP_IO_QSPI1_IO3',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa1e9673eef7a96cf9f46b8f75421075dd',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi1_5fspclk',['BSP_IO_QSPI1_SPCLK',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8b11501a458d5b7a82e5bdc80cb9252a',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi1_5fssl',['BSP_IO_QSPI1_SSL',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa7c30f479d99f883ee4b4fa27b6ae4f5',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi_5fint_5fn',['BSP_IO_QSPI_INT_N',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa12bccfc806539758e2b3a47e6ea93ca9',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi_5freset_5fn',['BSP_IO_QSPI_RESET_N',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8248388efb79c97a26893bb2de4c8d5b',1,'bsp_io.h']]], + ['bsp_5fio_5fqspi_5fwp_5fn',['BSP_IO_QSPI_WP_N',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aab466c8da8ed341f72fdc9e4059d9025c',1,'bsp_io.h']]], + ['bsp_5fio_5friic0_5fscl',['BSP_IO_RIIC0_SCL',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad77d8a140615854897936e80b31f0670',1,'bsp_io.h']]], + ['bsp_5fio_5friic0_5fsda',['BSP_IO_RIIC0_SDA',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaba9b7c124ac20c50a71563d64a068fc9',1,'bsp_io.h']]], + ['bsp_5fio_5friic1_5fscl',['BSP_IO_RIIC1_SCL',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa8c0b73a965fe066d0d58a4fb513d84dc',1,'bsp_io.h']]], + ['bsp_5fio_5friic1_5fsda',['BSP_IO_RIIC1_SDA',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa6828c5428be0bd1a3a5b79e111871411',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fclk',['BSP_IO_SD0_CLK',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aabccd7e7760466f8c666ae02e8d84267e',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fcmd',['BSP_IO_SD0_CMD',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa0ef28251d02b2be71736cd6709324cf7',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata0',['BSP_IO_SD0_DATA0',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa03979860d2850a4790a85a7012fff5b4',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata1',['BSP_IO_SD0_DATA1',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa5590555e0fa70d287a8a215b9a703de7',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata2',['BSP_IO_SD0_DATA2',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa73326eeb5a58de9766418893bcc1a284',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata3',['BSP_IO_SD0_DATA3',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaf2cf666df832a706dfdd973aac8406d8',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata4',['BSP_IO_SD0_DATA4',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa876a99deff86f8d09f1d96112a1b2dc3',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata5',['BSP_IO_SD0_DATA5',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aade0f69819cb635c9127516bcb86f5886',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata6',['BSP_IO_SD0_DATA6',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa3afa25e16d31202f5367150ce88e768e',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5fdata7',['BSP_IO_SD0_DATA7',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aac5e1dcfb012ca07ec05c7a5da14ad055',1,'bsp_io.h']]], + ['bsp_5fio_5fsd0_5frst_5fn',['BSP_IO_SD0_RST_N',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaa8daf070713048cb35f873e0490068df',1,'bsp_io.h']]], + ['bsp_5fio_5fsd1_5fclk',['BSP_IO_SD1_CLK',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aad2f6c4dec46159cddb6d967a551c7c2a',1,'bsp_io.h']]], + ['bsp_5fio_5fsd1_5fcmd',['BSP_IO_SD1_CMD',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa405fdd3dc66955a4858cc69a19016933',1,'bsp_io.h']]], + ['bsp_5fio_5fsd1_5fdata0',['BSP_IO_SD1_DATA0',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafbc2d3122913859d09d249bf264d4136',1,'bsp_io.h']]], + ['bsp_5fio_5fsd1_5fdata1',['BSP_IO_SD1_DATA1',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa67d5209707eab3f61c4eb9bbbd1ce73f',1,'bsp_io.h']]], + ['bsp_5fio_5fsd1_5fdata2',['BSP_IO_SD1_DATA2',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aaeaedf55bf5c303fdb8fd62b7df65f2e4',1,'bsp_io.h']]], + ['bsp_5fio_5fsd1_5fdata3',['BSP_IO_SD1_DATA3',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae758bfc092956cb39f9013b921753657',1,'bsp_io.h']]], + ['bsp_5fio_5ftdo',['BSP_IO_TDO',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aae97fc09171edc1a3c841cab7a1020fb2',1,'bsp_io.h']]], + ['bsp_5fio_5ftms_5fswdio',['BSP_IO_TMS_SWDIO',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aafd917ebff207c1b9456898a143d10c38',1,'bsp_io.h']]], + ['bsp_5fio_5fwdtovf_5fperrout_5fn',['BSP_IO_WDTOVF_PERROUT_N',['../group___b_s_p___i_o.html#ga0adbfd4b7db319886d667acb4804d80aa7901524777e247b132a543d19b8ddd4f',1,'bsp_io.h']]], + ['bsp_5fqspi_5fvoltage_5f18',['BSP_QSPI_VOLTAGE_18',['../group___b_s_p___i_o.html#ggac10820a16ee9dcbe7fbbd21ad81eee9fa7b2e7dbd3b7011e86d86d71652eb843a',1,'bsp_io.h']]], + ['bsp_5fqspi_5fvoltage_5f33',['BSP_QSPI_VOLTAGE_33',['../group___b_s_p___i_o.html#ggac10820a16ee9dcbe7fbbd21ad81eee9fa87d2f4e20a62d305f5a9cd99e28093b1',1,'bsp_io.h']]], + ['bsp_5fsd_5fchannel_5f0',['BSP_SD_CHANNEL_0',['../group___b_s_p___i_o.html#ggad0c359892ab6323f72558fb6f0efbb39a78721ea751aeb12179ca343858f91c7b',1,'bsp_io.h']]], + ['bsp_5fsd_5fchannel_5f1',['BSP_SD_CHANNEL_1',['../group___b_s_p___i_o.html#ggad0c359892ab6323f72558fb6f0efbb39a982209b33546c7b97b98e0e182fee582',1,'bsp_io.h']]], + ['bsp_5fsd_5fvoltage_5f18',['BSP_SD_VOLTAGE_18',['../group___b_s_p___i_o.html#gga5909e53671d51b521963bb4a9c5bb961ad6d758c60ce16e34187d1c3ea956c983',1,'bsp_io.h']]], + ['bsp_5fsd_5fvoltage_5f33',['BSP_SD_VOLTAGE_33',['../group___b_s_p___i_o.html#gga5909e53671d51b521963bb4a9c5bb961a9a5b3ea4f1555314b07a3bf5567d96b5',1,'bsp_io.h']]], + ['bsp_5fwarm_5fstart_5fpost_5fc',['BSP_WARM_START_POST_C',['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811',1,'BSP_WARM_START_POST_C(): bsp_common.h'],['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4af322ff0740a8d31f831b98ff042f0811',1,'BSP_WARM_START_POST_C(): bsp_common.h']]], + ['bsp_5fwarm_5fstart_5fpost_5fclock',['BSP_WARM_START_POST_CLOCK',['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7',1,'BSP_WARM_START_POST_CLOCK(): bsp_common.h'],['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a0ac1a271ef413302af1558941563f3e7',1,'BSP_WARM_START_POST_CLOCK(): bsp_common.h']]], + ['bsp_5fwarm_5fstart_5freset',['BSP_WARM_START_RESET',['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2',1,'BSP_WARM_START_RESET(): bsp_common.h'],['../group___b_s_p___m_c_u.html#gga6fe6dc3c0813eeae8665430a31c005b4a682d5dad980652c1acbc5b04531f6da2',1,'BSP_WARM_START_RESET(): bsp_common.h']]], + ['bsp_5fxspi_5fvoltage_5f18',['BSP_XSPI_VOLTAGE_18',['../group___b_s_p___i_o.html#ggaca40cd8c80dc5bf04d65d3d5db9e3d7caf71bc73917bb7416833e3dca8a41a1b0',1,'bsp_io.h']]], + ['bsp_5fxspi_5fvoltage_5f25',['BSP_XSPI_VOLTAGE_25',['../group___b_s_p___i_o.html#ggaca40cd8c80dc5bf04d65d3d5db9e3d7ca37e1061cff55bbab7d5ddae4071322dd',1,'bsp_io.h']]], + ['bsp_5fxspi_5fvoltage_5f33',['BSP_XSPI_VOLTAGE_33',['../group___b_s_p___i_o.html#ggaca40cd8c80dc5bf04d65d3d5db9e3d7ca731b6ae8493cc93ec326574439aa983d',1,'bsp_io.h']]] ]; diff --git a/search/enumvalues_2.js b/search/enumvalues_2.js index 5d65d51..725524d 100644 --- a/search/enumvalues_2.js +++ b/search/enumvalues_2.js @@ -1,11 +1,93 @@ var searchData= [ - ['external_5firq_5fpclk_5fdiv_5fby_5f1',['EXTERNAL_IRQ_PCLK_DIV_BY_1',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8a8efd589848d944d15906446d30500c1a',1,'r_external_irq_api.h']]], - ['external_5firq_5fpclk_5fdiv_5fby_5f32',['EXTERNAL_IRQ_PCLK_DIV_BY_32',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8a0ec86c6eb31ac0c5e2a789e3bcefe334',1,'r_external_irq_api.h']]], - ['external_5firq_5fpclk_5fdiv_5fby_5f64',['EXTERNAL_IRQ_PCLK_DIV_BY_64',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8a50e18b67ca2b1d8c0efb69dac660c581',1,'r_external_irq_api.h']]], - ['external_5firq_5fpclk_5fdiv_5fby_5f8',['EXTERNAL_IRQ_PCLK_DIV_BY_8',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8aea6e72eaa11987f54579a14bb4b3a7e9',1,'r_external_irq_api.h']]], - ['external_5firq_5ftrig_5fboth_5fedge',['EXTERNAL_IRQ_TRIG_BOTH_EDGE',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57ca0a2ebac83c3e8ca3da64e703dda65b71',1,'r_external_irq_api.h']]], - ['external_5firq_5ftrig_5ffalling',['EXTERNAL_IRQ_TRIG_FALLING',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57caace14d51313fed5f17da4b9828fd5412',1,'r_external_irq_api.h']]], - ['external_5firq_5ftrig_5flevel_5flow',['EXTERNAL_IRQ_TRIG_LEVEL_LOW',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57cae0ae8739569bb4721c7ed289397b9c4f',1,'r_external_irq_api.h']]], - ['external_5firq_5ftrig_5frising',['EXTERNAL_IRQ_TRIG_RISING',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57ca2d7a4f8fd21fad6f5a671336152d46b0',1,'r_external_irq_api.h']]] + ['can_5fevent_5fbus_5frecovery',['CAN_EVENT_BUS_RECOVERY',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4a9b30162960edad175a755686a65a50',1,'r_can_api.h']]], + ['can_5fevent_5ferr_5fbus_5flock',['CAN_EVENT_ERR_BUS_LOCK',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbabd3cace64bccbd9bdc6219453b7cfbbd',1,'r_can_api.h']]], + ['can_5fevent_5ferr_5fbus_5foff',['CAN_EVENT_ERR_BUS_OFF',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbad11062356307dd2b72a96a00a4929037',1,'r_can_api.h']]], + ['can_5fevent_5ferr_5fchannel',['CAN_EVENT_ERR_CHANNEL',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbab16a5328b930c53524aecbc4d580bb24',1,'r_can_api.h']]], + ['can_5fevent_5ferr_5fglobal',['CAN_EVENT_ERR_GLOBAL',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba8adaa142ed94841f5f282232ce414333',1,'r_can_api.h']]], + ['can_5fevent_5ferr_5fpassive',['CAN_EVENT_ERR_PASSIVE',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbafd0c186a8462372ff19061f8ff97160f',1,'r_can_api.h']]], + ['can_5fevent_5ferr_5fwarning',['CAN_EVENT_ERR_WARNING',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4cf2031ec5e169907edd2bd5d0caee00',1,'r_can_api.h']]], + ['can_5fevent_5ffifo_5fmessage_5flost',['CAN_EVENT_FIFO_MESSAGE_LOST',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba4b9bfbf96c82d53ce3dd47e9a3237359',1,'r_can_api.h']]], + ['can_5fevent_5fmailbox_5fmessage_5flost',['CAN_EVENT_MAILBOX_MESSAGE_LOST',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbaacf601c286d90d108d59de289cdfd80c',1,'r_can_api.h']]], + ['can_5fevent_5frx_5fcomplete',['CAN_EVENT_RX_COMPLETE',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbaa0bc5e15cee037a1d102b517ef63e161',1,'r_can_api.h']]], + ['can_5fevent_5ftx_5faborted',['CAN_EVENT_TX_ABORTED',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba973c55ab2a29a1554f488fedf29fea8a',1,'r_can_api.h']]], + ['can_5fevent_5ftx_5fcomplete',['CAN_EVENT_TX_COMPLETE',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dbac169b4940b7cb76562efd7439fc76949',1,'r_can_api.h']]], + ['can_5fevent_5ftx_5ffifo_5fempty',['CAN_EVENT_TX_FIFO_EMPTY',['../group___c_a_n___a_p_i.html#ggacc2e5bc68e8b707c069ca27f521695dba838c3a494516ccd0326bc1dad93e35d8',1,'r_can_api.h']]], + ['can_5fframe_5ftype_5fdata',['CAN_FRAME_TYPE_DATA',['../group___c_a_n___a_p_i.html#ggad3ffe1ae0429fcd1053a969d96c47610a1da44b52c2731b02cf02ca55eec08899',1,'r_can_api.h']]], + ['can_5fframe_5ftype_5fremote',['CAN_FRAME_TYPE_REMOTE',['../group___c_a_n___a_p_i.html#ggad3ffe1ae0429fcd1053a969d96c47610a10c7ad0f4e083496ad3a3032fc533920',1,'r_can_api.h']]], + ['can_5fid_5fmode_5fextended',['CAN_ID_MODE_EXTENDED',['../group___c_a_n___a_p_i.html#ggabc98e244722dcea05b5ce91bdb4c70c8abc5a87ed8edf218a6b44e4cceb48c0cb',1,'r_can_api.h']]], + ['can_5fid_5fmode_5fstandard',['CAN_ID_MODE_STANDARD',['../group___c_a_n___a_p_i.html#ggabc98e244722dcea05b5ce91bdb4c70c8a5d29b837d94d14fb99868c2d0a5220b0',1,'r_can_api.h']]], + ['can_5foperation_5fmode_5fhalt',['CAN_OPERATION_MODE_HALT',['../group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7a38a4c4896b9a14a3fa8411468b5017ee',1,'r_can_api.h']]], + ['can_5foperation_5fmode_5fnormal',['CAN_OPERATION_MODE_NORMAL',['../group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7abde5d9e8f5711b6fe8374671c96e6f72',1,'r_can_api.h']]], + ['can_5foperation_5fmode_5freset',['CAN_OPERATION_MODE_RESET',['../group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7a91f40057ea820ca0cf30a52393d5d741',1,'r_can_api.h']]], + ['can_5foperation_5fmode_5fsleep',['CAN_OPERATION_MODE_SLEEP',['../group___c_a_n___a_p_i.html#ggac29bd7d00b06d7457ae786471c296ba7adaf544ef1adfe3c7db5634e04f765aa3',1,'r_can_api.h']]], + ['can_5ftest_5fmode_5fdisabled',['CAN_TEST_MODE_DISABLED',['../group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7ae7dee8043ba34d7a3d09f5246bd870f0',1,'r_can_api.h']]], + ['can_5ftest_5fmode_5finternal_5fbus',['CAN_TEST_MODE_INTERNAL_BUS',['../group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a1a181f00a1eab8aaae36031a9e403e88',1,'r_can_api.h']]], + ['can_5ftest_5fmode_5flisten',['CAN_TEST_MODE_LISTEN',['../group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a8e80b696c1567281ef11cc0d659b29bc',1,'r_can_api.h']]], + ['can_5ftest_5fmode_5floopback_5fexternal',['CAN_TEST_MODE_LOOPBACK_EXTERNAL',['../group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a892393a146c929398882d92a7c9303eb',1,'r_can_api.h']]], + ['can_5ftest_5fmode_5floopback_5finternal',['CAN_TEST_MODE_LOOPBACK_INTERNAL',['../group___c_a_n___a_p_i.html#gga93f2b2c53f782b0c21beeb1339a108b7a53216c2055f64910bb7a47d5aa239f90',1,'r_can_api.h']]], + ['canfd_5ferror_5fchannel_5fack',['CANFD_ERROR_CHANNEL_ACK',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abc967223593d6928cfa24aef349f5e64',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5fack_5fdelimiter',['CANFD_ERROR_CHANNEL_ACK_DELIMITER',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a5c4e3bece7c60441a51d3899e73a158f',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5farbitration_5floss',['CANFD_ERROR_CHANNEL_ARBITRATION_LOSS',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a38ec5eabdb1b8b29cece678ae973e1b8',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5fbit_5fdominant',['CANFD_ERROR_CHANNEL_BIT_DOMINANT',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4afe7d23457db11eedaa48cec9b1d9b3a6',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5fbit_5frecessive',['CANFD_ERROR_CHANNEL_BIT_RECESSIVE',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4acdd82b46241db3cd909c4950a263cb36',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5fbus',['CANFD_ERROR_CHANNEL_BUS',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a4fa7f77f606948c2409343b262b9a6a6',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5fbus_5flock',['CANFD_ERROR_CHANNEL_BUS_LOCK',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a62b2afdb4d00175d7ee90c4f86b917d9',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5fbus_5foff_5fentry',['CANFD_ERROR_CHANNEL_BUS_OFF_ENTRY',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a0fe1987f2df69fa7787ccae5a020968e',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5fbus_5foff_5frecovery',['CANFD_ERROR_CHANNEL_BUS_OFF_RECOVERY',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ad1f966b89bb8ff0403a70e3a0170383f',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5fcrc',['CANFD_ERROR_CHANNEL_CRC',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a529535a14f0b9aa29b20ba5b22abb225',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5fform',['CANFD_ERROR_CHANNEL_FORM',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abee54fb0333c85f37a216959e18b7a11',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5foverload',['CANFD_ERROR_CHANNEL_OVERLOAD',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ac0191e933ec767fbc545ff93697aaafb',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5fpassive',['CANFD_ERROR_CHANNEL_PASSIVE',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a30a620f848af57cf1da8fce485c518ee',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5fstuff',['CANFD_ERROR_CHANNEL_STUFF',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a47a1524b5138710ca7fd5b55325a823d',1,'r_canfd.h']]], + ['canfd_5ferror_5fchannel_5fwarning',['CANFD_ERROR_CHANNEL_WARNING',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a1e8de2fee13f446d6d7f218420af1a75',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5fch0_5fecc',['CANFD_ERROR_GLOBAL_CH0_ECC',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4acc2641aa9a3f9543af9d27313ba09001',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5fch0_5fscan_5ffail',['CANFD_ERROR_GLOBAL_CH0_SCAN_FAIL',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a12b3e818b05c74a2e138ea58893151af',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5fch1_5fecc',['CANFD_ERROR_GLOBAL_CH1_ECC',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a632b3d6e96c5d7f468dfd4c0b33b1f86',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5fch1_5fscan_5ffail',['CANFD_ERROR_GLOBAL_CH1_SCAN_FAIL',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abad26cd9692b98e885b8f80eea26c9d9',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5fdlc',['CANFD_ERROR_GLOBAL_DLC',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4ac1b7da9fdca7a6fa3c9b9ba33371f4a8',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5fmessage_5flost',['CANFD_ERROR_GLOBAL_MESSAGE_LOST',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4abee1888c27382c7121781db44c31bc2b',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5fpayload_5foverflow',['CANFD_ERROR_GLOBAL_PAYLOAD_OVERFLOW',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a5d38f69b80c5a2ca136cc2372885dd15',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5ftxq_5fmessage_5flost',['CANFD_ERROR_GLOBAL_TXQ_MESSAGE_LOST',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4a46568698565919a0a2f47cb8f3641799',1,'r_canfd.h']]], + ['canfd_5ferror_5fglobal_5ftxq_5foverwrite',['CANFD_ERROR_GLOBAL_TXQ_OVERWRITE',['../group___c_a_n_f_d.html#gga1598f08872dd960675f060c7e8c35cf4aabb74eb7c63e572823fdc251ee430510',1,'r_canfd.h']]], + ['canfd_5fframe_5foption_5fbrs',['CANFD_FRAME_OPTION_BRS',['../group___c_a_n_f_d.html#gga6c4d104c3a9cce6b74a05035f0af6d87a4a5ce70c8fb9ab5d9e320a79dd59aebf',1,'r_canfd.h']]], + ['canfd_5fframe_5foption_5ferror',['CANFD_FRAME_OPTION_ERROR',['../group___c_a_n_f_d.html#gga6c4d104c3a9cce6b74a05035f0af6d87ad719b21681eae000b3bf7f55ef225470',1,'r_canfd.h']]], + ['canfd_5fframe_5foption_5ffd',['CANFD_FRAME_OPTION_FD',['../group___c_a_n_f_d.html#gga6c4d104c3a9cce6b74a05035f0af6d87a46bb2a869fc5c7b63b16bc822d4ec712',1,'r_canfd.h']]], + ['canfd_5fstatus_5fbus_5foff',['CANFD_STATUS_BUS_OFF',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a23dd8461a4d2bf187fba45b46a3fff93',1,'r_canfd.h']]], + ['canfd_5fstatus_5ferror_5fpassive',['CANFD_STATUS_ERROR_PASSIVE',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0aa108c9efbacb5e55777e0e0339a9be07',1,'r_canfd.h']]], + ['canfd_5fstatus_5fesi',['CANFD_STATUS_ESI',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a5701150882ad9d87efee5ade0a4c658c',1,'r_canfd.h']]], + ['canfd_5fstatus_5fhalt_5fmode',['CANFD_STATUS_HALT_MODE',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a3d1b4528bdce56d189277bedac424cc4',1,'r_canfd.h']]], + ['canfd_5fstatus_5fready',['CANFD_STATUS_READY',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a028b55778be2605790aedf97f8491c8d',1,'r_canfd.h']]], + ['canfd_5fstatus_5freceiving',['CANFD_STATUS_RECEIVING',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a0591ba665da851a63de95c9d819673d5',1,'r_canfd.h']]], + ['canfd_5fstatus_5freset_5fmode',['CANFD_STATUS_RESET_MODE',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a9d1022be800bc150d6daf64245c198ec',1,'r_canfd.h']]], + ['canfd_5fstatus_5fsleep_5fmode',['CANFD_STATUS_SLEEP_MODE',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a0a2d6442a22874bd0016a444f6f8d16a',1,'r_canfd.h']]], + ['canfd_5fstatus_5ftransmitting',['CANFD_STATUS_TRANSMITTING',['../group___c_a_n_f_d.html#gga9bc23367cb7fb757b5ce2f29323524c0a3e66a7f94e0abd296376c545e7388f2e',1,'r_canfd.h']]], + ['cmtw_5fclear_5fsource_5fcompare_5fmatch_5fcmwcor',['CMTW_CLEAR_SOURCE_COMPARE_MATCH_CMWCOR',['../group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a29bae60b7e43072850cb4c44dffc3b1d',1,'r_cmtw.h']]], + ['cmtw_5fclear_5fsource_5fcompare_5fmatch_5fcmwocr0',['CMTW_CLEAR_SOURCE_COMPARE_MATCH_CMWOCR0',['../group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a017587b5ab692912de7865167cb32be8',1,'r_cmtw.h']]], + ['cmtw_5fclear_5fsource_5fcompare_5fmatch_5fcmwocr1',['CMTW_CLEAR_SOURCE_COMPARE_MATCH_CMWOCR1',['../group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a30c9445b77896f4583ee052861df0be0',1,'r_cmtw.h']]], + ['cmtw_5fclear_5fsource_5fdisabled',['CMTW_CLEAR_SOURCE_DISABLED',['../group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a7b1981140600ccabecbec2cce85ea30f',1,'r_cmtw.h']]], + ['cmtw_5fclear_5fsource_5finput_5fcapture_5fcmwicr0',['CMTW_CLEAR_SOURCE_INPUT_CAPTURE_CMWICR0',['../group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447a283a72ceb7ff6900d1d4d5184097ea34',1,'r_cmtw.h']]], + ['cmtw_5fclear_5fsource_5finput_5fcapture_5fcmwicr1',['CMTW_CLEAR_SOURCE_INPUT_CAPTURE_CMWICR1',['../group___c_m_t_w.html#ggab8cb04d74fe011e5742d07cddb9a8447adc588629f6353dc88c3661d3d3eeb57b',1,'r_cmtw.h']]], + ['cmtw_5finput_5fcontrol_5fdisabled',['CMTW_INPUT_CONTROL_DISABLED',['../group___c_m_t_w.html#ggaa69aac2c20f895bd57f0d4dfa9da9c84aef9e4feabd4045f976f8b85a535a1e6e',1,'r_cmtw.h']]], + ['cmtw_5finput_5fcontrol_5fenabled',['CMTW_INPUT_CONTROL_ENABLED',['../group___c_m_t_w.html#ggaa69aac2c20f895bd57f0d4dfa9da9c84a47a43fe08c66afb2854454bde1e0a235',1,'r_cmtw.h']]], + ['cmtw_5fio_5fpin_5ftoc0',['CMTW_IO_PIN_TOC0',['../group___c_m_t_w.html#ggaf5f1958607aa6c7f52f4e47195e3a61fac8abb25fd9d25d55bcdebb8780553f1d',1,'r_cmtw.h']]], + ['cmtw_5fio_5fpin_5ftoc0_5fand_5ftoc1',['CMTW_IO_PIN_TOC0_AND_TOC1',['../group___c_m_t_w.html#ggaf5f1958607aa6c7f52f4e47195e3a61fa7031caa0b57b3e17a531d44ef8e7fa0f',1,'r_cmtw.h']]], + ['cmtw_5fio_5fpin_5ftoc1',['CMTW_IO_PIN_TOC1',['../group___c_m_t_w.html#ggaf5f1958607aa6c7f52f4e47195e3a61fa7cb7514798b0fde43e9d028d7718f4f4',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fcontrol_5fdisabled',['CMTW_OUTPUT_CONTROL_DISABLED',['../group___c_m_t_w.html#gga0d3145595cde1b2a26d8812cbb1aac5ca1c9cd650977b70a3211d7a190085b0c5',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fcontrol_5fenabled',['CMTW_OUTPUT_CONTROL_ENABLED',['../group___c_m_t_w.html#gga0d3145595cde1b2a26d8812cbb1aac5ca89b0a65698f2c9dad74c7ba53ba9de5d',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fpin_5fretain',['CMTW_OUTPUT_PIN_RETAIN',['../group___c_m_t_w.html#gga46ea17c23eab6d920c84290eb5769f6ba5d4a192f5904e23a4aacfa1675613806',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fpin_5fstart_5flevel_5fhigh',['CMTW_OUTPUT_PIN_START_LEVEL_HIGH',['../group___c_m_t_w.html#gga46ea17c23eab6d920c84290eb5769f6bad4b944e10a406b9159fa59d5a666a284',1,'r_cmtw.h']]], + ['cmtw_5foutput_5fpin_5fstart_5flevel_5flow',['CMTW_OUTPUT_PIN_START_LEVEL_LOW',['../group___c_m_t_w.html#gga46ea17c23eab6d920c84290eb5769f6ba0f66391fe40f9d325a877e7f7a93bfde',1,'r_cmtw.h']]], + ['cmtw_5fsource_5fedge_5fboth',['CMTW_SOURCE_EDGE_BOTH',['../group___c_m_t_w.html#gga7bf1b1875884b0e1c847a3b54c440763a6f1ff1a299555fef86ec60c3e4f2d28c',1,'r_cmtw.h']]], + ['cmtw_5fsource_5fedge_5ffalling',['CMTW_SOURCE_EDGE_FALLING',['../group___c_m_t_w.html#gga7bf1b1875884b0e1c847a3b54c440763abd14459296fab9fec238c00996728beb',1,'r_cmtw.h']]], + ['cmtw_5fsource_5fedge_5frising',['CMTW_SOURCE_EDGE_RISING',['../group___c_m_t_w.html#gga7bf1b1875884b0e1c847a3b54c440763a70169e2f2026cef455de71078bf2250c',1,'r_cmtw.h']]], + ['crc_5fbit_5forder_5flms_5flsb',['CRC_BIT_ORDER_LMS_LSB',['../group___c_r_c___a_p_i.html#gga5d770a90efa92855a81b5ae47b50db70a938646e39c9f235ae7a23c19e03f6d53',1,'r_crc_api.h']]], + ['crc_5fbit_5forder_5flms_5fmsb',['CRC_BIT_ORDER_LMS_MSB',['../group___c_r_c___a_p_i.html#gga5d770a90efa92855a81b5ae47b50db70a929efb1d3d263f589cf6a6c650d5e393',1,'r_crc_api.h']]], + ['crc_5fpolynomial_5fcrc_5f16',['CRC_POLYNOMIAL_CRC_16',['../group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da6b5637781ae91033928a2e082c823465',1,'r_crc_api.h']]], + ['crc_5fpolynomial_5fcrc_5f32',['CRC_POLYNOMIAL_CRC_32',['../group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931dac9c97ab1a8814206b952a35066a861c2',1,'r_crc_api.h']]], + ['crc_5fpolynomial_5fcrc_5f32c',['CRC_POLYNOMIAL_CRC_32C',['../group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da8854edee82722360b9adbfbfda3843b1',1,'r_crc_api.h']]], + ['crc_5fpolynomial_5fcrc_5f8',['CRC_POLYNOMIAL_CRC_8',['../group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da3743dfb69b7a6127e74de34390f3a55c',1,'r_crc_api.h']]], + ['crc_5fpolynomial_5fcrc_5fccitt',['CRC_POLYNOMIAL_CRC_CCITT',['../group___c_r_c___a_p_i.html#gga7daa8fa0df9f42a98afcf766a63d931da5f95f86fa3c29357706b0eb54223ef62',1,'r_crc_api.h']]], + ['crc_5fsnoop_5fdirection_5freceive',['CRC_SNOOP_DIRECTION_RECEIVE',['../group___c_r_c___a_p_i.html#ggad26e18afbb5663c0bcb91d62d418e2e3af13bda1509e0658baf48a48eb9f1c03c',1,'r_crc_api.h']]], + ['crc_5fsnoop_5fdirection_5ftransmit',['CRC_SNOOP_DIRECTION_TRANSMIT',['../group___c_r_c___a_p_i.html#ggad26e18afbb5663c0bcb91d62d418e2e3a961727790a4640f4be3e6229068c6c62',1,'r_crc_api.h']]] ]; diff --git a/search/enumvalues_3.js b/search/enumvalues_3.js index 65b1192..9aa5011 100644 --- a/search/enumvalues_3.js +++ b/search/enumvalues_3.js @@ -1,206 +1,34 @@ var searchData= [ - ['fsp_5ferr_5faborted',['FSP_ERR_ABORTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abf03281ffe5a1adc5b3081f7adfe3f4e',1,'fsp_common_api.h']]], - ['fsp_5ferr_5falready_5fopen',['FSP_ERR_ALREADY_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae74f6f5d5f827f9891901781c754455b',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fapproximation',['FSP_ERR_APPROXIMATION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac62322154b85b6e0db84e59b6a117a38',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fassertion',['FSP_ERR_ASSERTION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa31a53c0ea5b86a8cb2bb9b3ccb99964',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fblank_5fcheck_5ffailed',['FSP_ERR_BLANK_CHECK_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a61a8e059198001f46af73f2930e6c144',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fble_5fabs_5finvalid_5foperation',['FSP_ERR_BLE_ABS_INVALID_OPERATION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad1049f36b3561899a547421a6117138c',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fble_5fabs_5fnot_5ffound',['FSP_ERR_BLE_ABS_NOT_FOUND',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad9c985872f1eee4c41ae4a30789c0761',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fble_5fconfig_5ffailed',['FSP_ERR_BLE_CONFIG_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aace5674d992838bd8dac5926188ea88c',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fble_5ffailed',['FSP_ERR_BLE_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aad12dc3bfd3947b7586c089ee6c15383',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fble_5finit_5ffailed',['FSP_ERR_BLE_INIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a151982a9bc9ba19d87b6a5a8b7679397',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fble_5fprf_5falready_5fenabled',['FSP_ERR_BLE_PRF_ALREADY_ENABLED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0bbf60d9eede358d4ebbdbd17eaf8854',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fble_5fprf_5fnot_5fenabled',['FSP_ERR_BLE_PRF_NOT_ENABLED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a517f6eb396408044e70353bedd2983e8',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fbreak_5fdetect',['FSP_ERR_BREAK_DETECT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae7b57f9284c226e7b524bcd9ee23cca9',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fbuffer_5fempty',['FSP_ERR_BUFFER_EMPTY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a36f32f07063bd03749f0410256fa95db',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fbuffer_5freleased',['FSP_ERR_BUFFER_RELEASED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3e6f68238ad78176d339b01ee9f396a2',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcalibrate_5ffailed',['FSP_ERR_CALIBRATE_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa4ed46a9d166f29b87a6f2ff89c458b7',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcan_5fdata_5funavailable',['FSP_ERR_CAN_DATA_UNAVAILABLE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac40178530b30251630ed759810117676',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcan_5finit_5ffailed',['FSP_ERR_CAN_INIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a842991deab0b4cbc07585d4f437c21dd',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcan_5fmessage_5flost',['FSP_ERR_CAN_MESSAGE_LOST',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a094ba75816525a5f0d620bdce195cc9e',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcan_5fmode_5fswitch_5ffailed',['FSP_ERR_CAN_MODE_SWITCH_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a86b1991ace24bc346dbb056d094c9886',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcan_5freceive_5fmailbox',['FSP_ERR_CAN_RECEIVE_MAILBOX',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a52e6bb08e856dae157893d1b6097f958',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcan_5ftransmit_5fmailbox',['FSP_ERR_CAN_TRANSMIT_MAILBOX',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a998bd409cde19062422795ab5ea13c77',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcan_5ftransmit_5fnot_5fready',['FSP_ERR_CAN_TRANSMIT_NOT_READY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abd2265d139f387f507a3179e8289357d',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcard_5finit_5ffailed',['FSP_ERR_CARD_INIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2ed5fe9a48f6c1a6e50b36b17158fc62',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcard_5fnot_5finitialized',['FSP_ERR_CARD_NOT_INITIALIZED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e8dcc9b22b1e904997c8b4781dc0a24',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcard_5fnot_5finserted',['FSP_ERR_CARD_NOT_INSERTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3224cc4e49b921121dd1c25e4b680d58',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcard_5fwrite_5fprotected',['FSP_ERR_CARD_WRITE_PROTECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5889b6693b9fe40f24d1454a12707004',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcellular_5fconfig_5ffailed',['FSP_ERR_CELLULAR_CONFIG_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a61cdc8708028a97a52556794d4c2e050',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcellular_5ffailed',['FSP_ERR_CELLULAR_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a007f3ee6fdd7d7da64d199bd33eea883',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcellular_5ffw_5fupgrade_5ffailed',['FSP_ERR_CELLULAR_FW_UPGRADE_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab802905d674ed99f0d219346a3ab54dc',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcellular_5ffw_5fuptodate',['FSP_ERR_CELLULAR_FW_UPTODATE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa24ae037217ddad097ab29975cbd03af',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcellular_5finit_5ffailed',['FSP_ERR_CELLULAR_INIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a4a5158a88f2ea654f62435a7b5ae72d2',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcellular_5finvalid_5fstate',['FSP_ERR_CELLULAR_INVALID_STATE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af06dbb8a78ccfbd897d25476da1190ac',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcellular_5fregistration_5ffailed',['FSP_ERR_CELLULAR_REGISTRATION_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a88587e0a35f8081d546cd72e48ddc198',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcellular_5ftransmit_5ffailed',['FSP_ERR_CELLULAR_TRANSMIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a1350c1ec5c0dc121c93983b2367a61ab',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fclamped',['FSP_ERR_CLAMPED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae62ec11818d3693b55fa3e4ecf55e8e0',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fclkout_5fexceeded',['FSP_ERR_CLKOUT_EXCEEDED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae00382cd27990b19544bd0b72cb6dd33',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fclock_5factive',['FSP_ERR_CLOCK_ACTIVE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad0991da0bb1261a103f9b86c179446cc',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fclock_5fgeneration',['FSP_ERR_CLOCK_GENERATION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a41282c4e46d7f2cc7869fcfd782fab54',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fclock_5finactive',['FSP_ERR_CLOCK_INACTIVE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a20165a34bc804ee7750960ad81853f20',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcmd_5flocked',['FSP_ERR_CMD_LOCKED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac967d11d3c3211ff7ce1c364a6376ed0',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcomms_5fbus_5fnot_5fopen',['FSP_ERR_COMMS_BUS_NOT_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad40d6aaad44e18804d771e2a7872a2de',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5falready_5fopen',['FSP_ERR_CRYPTO_ALREADY_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a4c0707d4a6169b664b80e107659336b0',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fauthentication_5ffailed',['FSP_ERR_CRYPTO_AUTHENTICATION_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af70132beb6b5b4cdaeaed4c70bd553c4',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fbuf_5foverflow',['FSP_ERR_CRYPTO_BUF_OVERFLOW',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a74865c26e4916c9348c2ee5c0201f9d9',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fcommon_5fnot_5fopened',['FSP_ERR_CRYPTO_COMMON_NOT_OPENED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acfbdf09c1ae8d64e7eb388094bf54b9b',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fcontinue',['FSP_ERR_CRYPTO_CONTINUE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a479e63b946d94636f905fd9bace227e9',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fhal_5ferror',['FSP_ERR_CRYPTO_HAL_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac42e16e1358505398e631062a1afbd45',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5finstall_5fkey_5ffailed',['FSP_ERR_CRYPTO_INSTALL_KEY_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad7a753235aa6ea399b96239f2f0f8efb',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5finvalid_5foperation_5fmode',['FSP_ERR_CRYPTO_INVALID_OPERATION_MODE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab4d37806bc2d73603698a975fad28672',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5finvalid_5fsize',['FSP_ERR_CRYPTO_INVALID_SIZE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a59b955195cb913a404830ddca3d0176a',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5finvalid_5fstate',['FSP_ERR_CRYPTO_INVALID_STATE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0333bd5f03a8366cc8c1c8628ebdee24',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fkey_5fbuf_5fnot_5fenough',['FSP_ERR_CRYPTO_KEY_BUF_NOT_ENOUGH',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a378b2876a363d8c3a3c7ccc15c0221f9',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fnot_5fimplemented',['FSP_ERR_CRYPTO_NOT_IMPLEMENTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a98ed4aa9d85ee3b480d9f4b834b6f41c',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fnot_5fopen',['FSP_ERR_CRYPTO_NOT_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9b382a4ee94f03de684126c67d14ee50',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fnull_5fpointer',['FSP_ERR_CRYPTO_NULL_POINTER',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa98c3f2932465676d70f00748856f61c',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5frng_5ffatal_5ferror',['FSP_ERR_CRYPTO_RNG_FATAL_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9611e83ff233e8a071999952f0836b1f',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5frng_5finvalid_5fparam',['FSP_ERR_CRYPTO_RNG_INVALID_PARAM',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a514ca2eb6423e25bed3982d27c9d979b',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fsce_5falready_5fopen',['FSP_ERR_CRYPTO_SCE_ALREADY_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acfa47fcf9dd431fe1022c0c54f651936',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fsce_5ffail',['FSP_ERR_CRYPTO_SCE_FAIL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2c7fd435f27316b840546c51d0e7658d',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fsce_5fhrk_5finvalid_5findex',['FSP_ERR_CRYPTO_SCE_HRK_INVALID_INDEX',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abca9038b509e767223fcd461b1be22aa',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fsce_5fkey_5fset_5ffail',['FSP_ERR_CRYPTO_SCE_KEY_SET_FAIL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af1bec53bb97a928b39bb4e9d5f66eb04',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fsce_5fresource_5fconflict',['FSP_ERR_CRYPTO_SCE_RESOURCE_CONFLICT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a558889b250c4c0dfa10cbce827f5b47e',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fsce_5fretry',['FSP_ERR_CRYPTO_SCE_RETRY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7f2691c6eef5893eae43b55495efff89',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5fsce_5fverify_5ffail',['FSP_ERR_CRYPTO_SCE_VERIFY_FAIL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae3da08cfbb0c6451f5ccf26d3cfdef12',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fcrypto_5funknown',['FSP_ERR_CRYPTO_UNKNOWN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9208c6be68de64b05a8bac94d68b1316',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fctsu_5fincomplete_5ftuning',['FSP_ERR_CTSU_INCOMPLETE_TUNING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a19beacb3a5e19f362431d08a1fcaaa5d',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fctsu_5fnot_5fget_5fdata',['FSP_ERR_CTSU_NOT_GET_DATA',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7cfb255a9b41bb7d578b892b94ec362c',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fctsu_5fscanning',['FSP_ERR_CTSU_SCANNING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abf96e28ad6ffcefb3753b3236b7d8f74',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fd2d_5ferror_5fdeinit',['FSP_ERR_D2D_ERROR_DEINIT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a89727736be0655b4f42ea4bb77f43942',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fd2d_5ferror_5finit',['FSP_ERR_D2D_ERROR_INIT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7dfc1b7578f229e739a22ecb69e4710a',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fd2d_5ferror_5frendering',['FSP_ERR_D2D_ERROR_RENDERING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af95284232b2ca5804c03171d71080bc4',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fd2d_5ferror_5fsize',['FSP_ERR_D2D_ERROR_SIZE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5612cd93ed5b3c657ace3c0a8831c4b5',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fdevice_5fbusy',['FSP_ERR_DEVICE_BUSY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acbadb8600c31a85deacc8092d6e4b4d7',1,'fsp_common_api.h']]], - ['fsp_5ferr_5ferase_5ffailed',['FSP_ERR_ERASE_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aedf5bd340743b4cad2a5b5370bdf3184',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fether_5ferror_5ffiltering',['FSP_ERR_ETHER_ERROR_FILTERING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8affc315c6031ade6b6642d2649281f2e0',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fether_5ferror_5flink',['FSP_ERR_ETHER_ERROR_LINK',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a58142c5af0984c7c4ede26c86aaf1376',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fether_5ferror_5fmagic_5fpacket_5fmode',['FSP_ERR_ETHER_ERROR_MAGIC_PACKET_MODE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aea683aeff347b767dcdcc7d3630f6395',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fether_5ferror_5fno_5fdata',['FSP_ERR_ETHER_ERROR_NO_DATA',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a39f6c51c69fd754c9a16551bbd8a7b59',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fether_5ferror_5fphy_5fcommunication',['FSP_ERR_ETHER_ERROR_PHY_COMMUNICATION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6240bb179602fe6d111b3cb464ca4612',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fether_5ferror_5ftransmit_5fbuffer_5ffull',['FSP_ERR_ETHER_ERROR_TRANSMIT_BUFFER_FULL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7ff828228ccab4f53b2438ddd1c7e11a',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fether_5fphy_5ferror_5flink',['FSP_ERR_ETHER_PHY_ERROR_LINK',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a629a12ea100187a63ddb2f8ee9a5c823',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fether_5fphy_5fnot_5fready',['FSP_ERR_ETHER_PHY_NOT_READY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aad936f5a80f8c3fe3faa8d6220189098',1,'fsp_common_api.h']]], - ['fsp_5ferr_5ffclk',['FSP_ERR_FCLK',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0f14549511d9e5e2bf488ef4abf284cf',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fframing',['FSP_ERR_FRAMING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8f76d058261cd655519cbc81f1586bc4',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fhardware_5ftimeout',['FSP_ERR_HARDWARE_TIMEOUT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab635959cb1f794d46c032e602353e5ac',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fhw_5flocked',['FSP_ERR_HW_LOCKED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a4b6b9e437964146efbcb4ad42397d265',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fillegal_5fbuffer_5faddress',['FSP_ERR_ILLEGAL_BUFFER_ADDRESS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aef76cb06aecdf33a1186e2b1dd830b1a',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fillegal_5fsubscriber_5flists',['FSP_ERR_ILLEGAL_SUBSCRIBER_LISTS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae13f3c9685ff3f32dcb2966ac77c05df',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fin_5fuse',['FSP_ERR_IN_USE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2273c35317c397d5b1b3e2709facadd0',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finsufficient_5fdata',['FSP_ERR_INSUFFICIENT_DATA',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5875afbb6b583cfef9a6c83a053b7be6',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finsufficient_5fspace',['FSP_ERR_INSUFFICIENT_SPACE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6c274324b8822d301de1de5077d385fc',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finternal',['FSP_ERR_INTERNAL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6d11b644cafb53d7d39f701de5ca026d',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5faddress',['FSP_ERR_INVALID_ADDRESS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae4ebd9838f9e69e526fae8ff7fad27f2',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5falignment',['FSP_ERR_INVALID_ALIGNMENT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a25f62aa698b401155e31627fbc50b006',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fargument',['FSP_ERR_INVALID_ARGUMENT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a47437bfbf555a04e9bad25b75425657f',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fblocks',['FSP_ERR_INVALID_BLOCKS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac15b49615174ed00b88a0fc3e7338e2d',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fbrightness_5fsetting',['FSP_ERR_INVALID_BRIGHTNESS_SETTING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a96657076ca10ddfd97018bfbbeb94132',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fcac_5fref_5fclock',['FSP_ERR_INVALID_CAC_REF_CLOCK',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a899d80c2fd828410b2d01a7a96528f8c',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fcall',['FSP_ERR_INVALID_CALL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e88aef301d6f509e663b741e2193e5d',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fchannel',['FSP_ERR_INVALID_CHANNEL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a08758cf67b1b1f99e0609f7d7d16942e',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fclut_5faccess',['FSP_ERR_INVALID_CLUT_ACCESS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9a88e15efe487b892de5976439b4cb1f',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5ffactory_5fflash',['FSP_ERR_INVALID_FACTORY_FLASH',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a06b56b3cf883cf010a7e5818246998b5',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5ffade_5fsetting',['FSP_ERR_INVALID_FADE_SETTING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a504225c32f7ce922fe8bd6eb3b71cb5a',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fgamma_5fsetting',['FSP_ERR_INVALID_GAMMA_SETTING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa080f63e010614e89f77e98db762a4a5',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fhw_5fcondition',['FSP_ERR_INVALID_HW_CONDITION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5197e695e1cbbce294aca76ed3ca570b',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5flayer_5fformat',['FSP_ERR_INVALID_LAYER_FORMAT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab5ae9d00d5529018895ddf39b2c3e5eb',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5flayer_5fsetting',['FSP_ERR_INVALID_LAYER_SETTING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a878fb55f61df59b8df5381f405d731c1',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5flinked_5faddress',['FSP_ERR_INVALID_LINKED_ADDRESS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a118e5ad68156cb8174e39b421abcf467',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fmode',['FSP_ERR_INVALID_MODE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad55fb9b2a3604266a75f735f4cd7f52c',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fmsg_5fbuffer_5fsize',['FSP_ERR_INVALID_MSG_BUFFER_SIZE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5324a3aee60be60cf0426cca90586892',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fpointer',['FSP_ERR_INVALID_POINTER',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aca11a0f89f57a43b6cf1a9d60fa3c013',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5frate',['FSP_ERR_INVALID_RATE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad03cea0891ae4463c964ed25a336caf0',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fsize',['FSP_ERR_INVALID_SIZE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac9c3ed9557b71ed6dbcabf4a4c4129ad',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fstate',['FSP_ERR_INVALID_STATE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af39326ab50613d8779ebc84e5da8ffbc',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5ftiming_5fsetting',['FSP_ERR_INVALID_TIMING_SETTING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0ae9f5e2b29a1355c61d1a6837fcc8a7',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fupdate_5ftiming',['FSP_ERR_INVALID_UPDATE_TIMING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2da63a5a8255b07061d01793d951b3af',1,'fsp_common_api.h']]], - ['fsp_5ferr_5finvalid_5fworkbuffer_5fsize',['FSP_ERR_INVALID_WORKBUFFER_SIZE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a1638d9aa9cae9a4a26945f4e06770278',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fip_5fchannel_5fnot_5fpresent',['FSP_ERR_IP_CHANNEL_NOT_PRESENT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af05386b34afb25ea06b40f7dd5d6ecf7',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fip_5fhardware_5fnot_5fpresent',['FSP_ERR_IP_HARDWARE_NOT_PRESENT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9949d6ad0b2b4e41a620c15c2bfa393f',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fip_5funit_5fnot_5fpresent',['FSP_ERR_IP_UNIT_NOT_PRESENT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a395e4056cceddf0f1606de74a028ed9e',1,'fsp_common_api.h']]], - ['fsp_5ferr_5firq_5fbsp_5fdisabled',['FSP_ERR_IRQ_BSP_DISABLED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8559df95856f0d5961b284bdbecbec4a',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5fblock_5fdata_5fnumber_5ferror',['FSP_ERR_JPEG_BLOCK_DATA_NUMBER_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2e783b2cf8434d9da89bdaa2a96de2bf',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5fbuffersize_5fnot_5fenough',['FSP_ERR_JPEG_BUFFERSIZE_NOT_ENOUGH',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a75d640ca7358ecbd243474c9355fd084',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5fcomponent_5ferror1',['FSP_ERR_JPEG_COMPONENT_ERROR1',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8a7b105a86fb8f28033c5d351d8a702d',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5fcomponent_5ferror2',['FSP_ERR_JPEG_COMPONENT_ERROR2',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0800521190fb997b5bdd6e442510dc21',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5fdqt_5faccuracy_5ferror',['FSP_ERR_JPEG_DQT_ACCURACY_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab1bebebe633bb879bba020add20a433b',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5feoi_5fnot_5fdetected',['FSP_ERR_JPEG_EOI_NOT_DETECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2d42e0616d35e614532c95bf780fe3a1',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5ferr',['FSP_ERR_JPEG_ERR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac2e2eac0e5d38ed6ec2c7b8891782df0',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5fimage_5fsize_5ferror',['FSP_ERR_JPEG_IMAGE_SIZE_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a58fa157c6894a408dab3175d77b6e250',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5flast_5fmcu_5fdata_5fnumber_5ferror',['FSP_ERR_JPEG_LAST_MCU_DATA_NUMBER_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa41c9b39372bc0ead5b051502bcf262c',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5frestart_5finterval_5fdata_5fnumber_5ferror',['FSP_ERR_JPEG_RESTART_INTERVAL_DATA_NUMBER_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac430678f17170002d5d8e71194803049',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5fsof0_5fdqt_5fdht_5fnot_5fdetected',['FSP_ERR_JPEG_SOF0_DQT_DHT_NOT_DETECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab3cce6d31e8a198b0e3ef9bbb7489ad2',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5fsof1_5fto_5fsoff_5fdetected',['FSP_ERR_JPEG_SOF1_TO_SOFF_DETECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0a63d0b8578305acef83fc2541a7791a',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5fsof_5faccuracy_5ferror',['FSP_ERR_JPEG_SOF_ACCURACY_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a15c30a4a6eb7992e2ecc7c319c93b61e',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5fsoi_5fnot_5fdetected',['FSP_ERR_JPEG_SOI_NOT_DETECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a05ef199ce97212663fa6c3edc947d3bd',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5fsos_5fnot_5fdetected',['FSP_ERR_JPEG_SOS_NOT_DETECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a65e4f50a62eb7dfb835d2013187fdc2e',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5funsupported_5fimage_5fsize',['FSP_ERR_JPEG_UNSUPPORTED_IMAGE_SIZE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9a874eddeb97d535b197a7fe3723a2f6',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fjpeg_5funsupported_5fpixel_5fformat',['FSP_ERR_JPEG_UNSUPPORTED_PIXEL_FORMAT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3c31107bd8ebd37bb8ff621758c25ecb',1,'fsp_common_api.h']]], - ['fsp_5ferr_5flow_5fvoltage_5fmode',['FSP_ERR_LOW_VOLTAGE_MODE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aac8334069ce27d25543b199d6b0afdb3',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fmedia_5fformat_5ffailed',['FSP_ERR_MEDIA_FORMAT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e0d94ec73cc2ff2c1076b7f2e39508a',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fmedia_5fopen_5ffailed',['FSP_ERR_MEDIA_OPEN_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a96b579c4bf9998918494fe0ed7ba5570',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fmessage_5fqueue_5fempty',['FSP_ERR_MESSAGE_QUEUE_EMPTY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a67eb0b2abc1ed0bc49f5287997cd4b88',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fmessage_5fqueue_5ffull',['FSP_ERR_MESSAGE_QUEUE_FULL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8addc1c8d5b6fc9f6d5f0c3ebb9840db76',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fmessage_5ftoo_5flong',['FSP_ERR_MESSAGE_TOO_LONG',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acbae29129db25e1b1d6c599f91f0dac4',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fmode_5ffault',['FSP_ERR_MODE_FAULT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a1009b837effcd110d0c0fb1106d90898',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fno_5fcallback_5fmemory',['FSP_ERR_NO_CALLBACK_MEMORY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0b11740f5efdcaa58bd9606a1e29fa53',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fno_5fmore_5fbuffer',['FSP_ERR_NO_MORE_BUFFER',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab4725f604ee9846237af90d47c659f5a',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fno_5fsubscriber_5ffound',['FSP_ERR_NO_SUBSCRIBER_FOUND',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a05030ff414a0d988a0f6b3ea086cb3ea',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fnot_5fenabled',['FSP_ERR_NOT_ENABLED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3f7ac1a0a2f4f1263320ce7a845852cc',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fnot_5ferased',['FSP_ERR_NOT_ERASED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0a6057def8440b3e3dd6ff5fe9d4d4a7',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fnot_5ffound',['FSP_ERR_NOT_FOUND',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5b3fa149fddaa9617a7d3cacf67810a4',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fnot_5finitialized',['FSP_ERR_NOT_INITIALIZED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8add81216e0221e6d8583d35b1b471199b',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fnot_5fopen',['FSP_ERR_NOT_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a50831305d5da65885b19304af8688f1a',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fnot_5fstabilized',['FSP_ERR_NOT_STABILIZED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2ca996df0892e635d629e5215a57fe52',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fosc_5fstop_5fclock_5factive',['FSP_ERR_OSC_STOP_CLOCK_ACTIVE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8e9e74ef9b1b0cd4caaa8dd3d41da83b',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fosc_5fstop_5fdet_5fenabled',['FSP_ERR_OSC_STOP_DET_ENABLED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8c8e1207d2980ba3dd772db6889d7504',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fosc_5fstop_5fdetected',['FSP_ERR_OSC_STOP_DETECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2afd955eba937108cc5cfaaae48f2364',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fout_5fof_5fmemory',['FSP_ERR_OUT_OF_MEMORY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac555b9f56bc564142de5f6f1c5e81462',1,'fsp_common_api.h']]], - ['fsp_5ferr_5foverflow',['FSP_ERR_OVERFLOW',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3da0834b14d2abd22cb01d7dade29d75',1,'fsp_common_api.h']]], - ['fsp_5ferr_5foverrun',['FSP_ERR_OVERRUN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab17e4b925713a575bdc269db3bb06f9b',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fparity',['FSP_ERR_PARITY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e304d49fbb08fc3b56558769148cf36',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fpe_5ffailure',['FSP_ERR_PE_FAILURE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab0136751a5a85aedba8975720d6d6976',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fpll_5fsrc_5finactive',['FSP_ERR_PLL_SRC_INACTIVE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad8118a39d8349c891f0d443764d915a5',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fqueue_5fempty',['FSP_ERR_QUEUE_EMPTY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a897263b6cfdd866f230ba767b01fd457',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fqueue_5ffull',['FSP_ERR_QUEUE_FULL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afe0f3347d7aed817201dac3bbad6fc75',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fqueue_5funavailable',['FSP_ERR_QUEUE_UNAVAILABLE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a40dc55384fe2838d6893037f2923d3d8',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fread_5foverflow',['FSP_ERR_READ_OVERFLOW',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9c9987a7651a37b59bb02cc1ed4361b2',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fresponse',['FSP_ERR_RESPONSE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a009dbf608109840cd7b1b82f08bf392b',1,'fsp_common_api.h']]], - ['fsp_5ferr_5frsa_5fdecryption_5ferror',['FSP_ERR_RSA_DECRYPTION_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a41434bdcf52a833b4fe1cc5ae322fe7a',1,'fsp_common_api.h']]], - ['fsp_5ferr_5frxbuf_5foverflow',['FSP_ERR_RXBUF_OVERFLOW',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab80d8e8c73b02af44003f87ea5f92a08',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fsector_5frelease_5ffailed',['FSP_ERR_SECTOR_RELEASE_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aada459ccb2b85a8dc33fabc987e173e4',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fsensor_5fin_5fstabilization',['FSP_ERR_SENSOR_IN_STABILIZATION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a585fcafaa5e5dbe0209e063f5ecf8898',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fsensor_5finvalid_5fdata',['FSP_ERR_SENSOR_INVALID_DATA',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a47bedb95f9926c8f1330bcf7846a548e',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fsensor_5fmeasurement_5fnot_5ffinished',['FSP_ERR_SENSOR_MEASUREMENT_NOT_FINISHED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a445a886afbb0951782907ac56e93d729',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fspi_5fparity',['FSP_ERR_SPI_PARITY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aea550d03d45b87a810329a6138a0b022',1,'fsp_common_api.h']]], - ['fsp_5ferr_5ftimeout',['FSP_ERR_TIMEOUT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a922f76a3a941dd4d49cc55d382cb16f4',1,'fsp_common_api.h']]], - ['fsp_5ferr_5ftoo_5fmany_5fbuffers',['FSP_ERR_TOO_MANY_BUFFERS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9a2d74abb0d93c43f58d08212e2da72a',1,'fsp_common_api.h']]], - ['fsp_5ferr_5ftransfer_5faborted',['FSP_ERR_TRANSFER_ABORTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aee232d80cec4c18cfae78bdfb718c7cf',1,'fsp_common_api.h']]], - ['fsp_5ferr_5ftransfer_5fbusy',['FSP_ERR_TRANSFER_BUSY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad4f4dc559cd966b28e349da4416af20e',1,'fsp_common_api.h']]], - ['fsp_5ferr_5funderflow',['FSP_ERR_UNDERFLOW',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8adec9d5635d494955de400ca230d64886',1,'fsp_common_api.h']]], - ['fsp_5ferr_5funsupported',['FSP_ERR_UNSUPPORTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a384fc7e9a644424c3e7743f24ad5c40f',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fusb_5fmodule_5fenabled',['FSP_ERR_USB_MODULE_ENABLED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afe6413d0677423f2f3d0fd0026899323',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fwait_5faborted',['FSP_ERR_WAIT_ABORTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa5cbda3787ddf5092d0fdf14b8e4fe57',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fwifi_5fconfig_5ffailed',['FSP_ERR_WIFI_CONFIG_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad59d257fc10762fe60683c45a3f1b90a',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fwifi_5ffailed',['FSP_ERR_WIFI_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5711df02b0d0b9e2027bef9de27948a4',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fwifi_5finit_5ffailed',['FSP_ERR_WIFI_INIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae1e9fb09fdb6841cf4379097812e6156',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fwifi_5finvalid_5fmode',['FSP_ERR_WIFI_INVALID_MODE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6955ee4b9476caa9941a4a30608b2d9f',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fwifi_5fscan_5fcomplete',['FSP_ERR_WIFI_SCAN_COMPLETE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0dfea4f4a09d2cb04031624c5c3bd753',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fwifi_5ftransmit_5ffailed',['FSP_ERR_WIFI_TRANSMIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8adeb727c2591c971117d47d29edec70e6',1,'fsp_common_api.h']]], - ['fsp_5ferr_5fwrite_5ffailed',['FSP_ERR_WRITE_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a23d4ede168571c3084157c0f99f6c60c',1,'fsp_common_api.h']]], - ['fsp_5fip_5fcanfd',['FSP_IP_CANFD',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950aacbead3e070986a6c40c32d2485d5c4e',1,'fsp_features.h']]], - ['fsp_5fip_5fdmac',['FSP_IP_DMAC',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a494addfd4ceb1fabb0bea0893b444641',1,'fsp_features.h']]], - ['fsp_5fip_5fgpt',['FSP_IP_GPT',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a83fe18962b058df65adb9ce089719ebb',1,'fsp_features.h']]], - ['fsp_5fip_5fgtm',['FSP_IP_GTM',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950afe554013bd2f3cbbd8462cea8eeee4ca',1,'fsp_features.h']]], - ['fsp_5fip_5fim33',['FSP_IP_IM33',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a4704af5ed32cbd6532fd28a44d0d028e',1,'fsp_features.h']]], - ['fsp_5fip_5fmhu',['FSP_IP_MHU',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950abfff39a6b8ca24d18832ad7153cc0880',1,'fsp_features.h']]], - ['fsp_5fip_5fpoeg',['FSP_IP_POEG',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950acfc9bb8ff007a7b82cf4fd845dfce053',1,'fsp_features.h']]], - ['fsp_5fip_5fport',['FSP_IP_PORT',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a3403f62d1f8cc29a868e5da9a86a46f7',1,'fsp_features.h']]], - ['fsp_5fip_5friic',['FSP_IP_RIIC',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a17e007a04505fb7a7614067e3d5e7447',1,'fsp_features.h']]], - ['fsp_5fip_5frspi',['FSP_IP_RSPI',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950acbce1d6d73ea0d9a18c42b2389c69888',1,'fsp_features.h']]], - ['fsp_5fip_5fscif',['FSP_IP_SCIF',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a837b8847e248ed296512f20813008cd5',1,'fsp_features.h']]], - ['fsp_5fip_5fssi',['FSP_IP_SSI',['../group___b_s_p___m_c_u.html#gga7880302f0edd7cc4290c037809975950a372bbc7267801454ac9a1bf3677ef60c',1,'fsp_features.h']]] + ['dmac_5fb_5fack_5fmode_5fbus_5fcycle_5fmode',['DMAC_B_ACK_MODE_BUS_CYCLE_MODE',['../group___d_m_a_c___b.html#gga46c5c66fc820831bb56b5f6554f2890eaf0702197abc49f459a920cfd07e079b9',1,'r_dmac_b.h']]], + ['dmac_5fb_5fack_5fmode_5flevel_5fmode',['DMAC_B_ACK_MODE_LEVEL_MODE',['../group___d_m_a_c___b.html#gga46c5c66fc820831bb56b5f6554f2890eaf2b54be1c14b4eaa12570b6bc5fec740',1,'r_dmac_b.h']]], + ['dmac_5fb_5fack_5fmode_5fmask_5fdack_5foutput',['DMAC_B_ACK_MODE_MASK_DACK_OUTPUT',['../group___d_m_a_c___b.html#gga46c5c66fc820831bb56b5f6554f2890ea2c0a3fc39b5304639b9b27528b37d368',1,'r_dmac_b.h']]], + ['dmac_5fb_5fchannel_5fscheduling_5ffixed',['DMAC_B_CHANNEL_SCHEDULING_FIXED',['../group___d_m_a_c___b.html#ggab359dcd5cfb24ecd20655106c9397d63ae7628013b57a05b3524bfa6b58eece1e',1,'r_dmac_b.h']]], + ['dmac_5fb_5fchannel_5fscheduling_5fround_5frobin',['DMAC_B_CHANNEL_SCHEDULING_ROUND_ROBIN',['../group___d_m_a_c___b.html#ggab359dcd5cfb24ecd20655106c9397d63a481ea85a54aca23ab1215c7b14a969fb',1,'r_dmac_b.h']]], + ['dmac_5fb_5fcontinuous_5fsetting_5ftransfer_5falternately',['DMAC_B_CONTINUOUS_SETTING_TRANSFER_ALTERNATELY',['../group___d_m_a_c___b.html#gga096bd7a43751a80690fd7ed3454b78a7a61c972e3ce54cbcb765c280c977e2857',1,'r_dmac_b.h']]], + ['dmac_5fb_5fcontinuous_5fsetting_5ftransfer_5fonce',['DMAC_B_CONTINUOUS_SETTING_TRANSFER_ONCE',['../group___d_m_a_c___b.html#gga096bd7a43751a80690fd7ed3454b78a7a7de91e47558887cbcf23934645dca258',1,'r_dmac_b.h']]], + ['dmac_5fb_5fevent_5ftransfer_5fend',['DMAC_B_EVENT_TRANSFER_END',['../group___d_m_a_c___b.html#gga1ea3acbac3625e15f0b656d9b220cc8aac41c065b08dd64341516cdc406f0a43a',1,'r_dmac_b.h']]], + ['dmac_5fb_5fevent_5ftransfer_5ferror',['DMAC_B_EVENT_TRANSFER_ERROR',['../group___d_m_a_c___b.html#gga1ea3acbac3625e15f0b656d9b220cc8aa63dd08ef2be01ac99472a7b9d39fabc0',1,'r_dmac_b.h']]], + ['dmac_5fb_5fexternal_5fdetection_5ffalling_5fedge',['DMAC_B_EXTERNAL_DETECTION_FALLING_EDGE',['../group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355ba1e4a1303234cd1b4bd879da0a5497c81',1,'r_dmac_b.h']]], + ['dmac_5fb_5fexternal_5fdetection_5ffalling_5frising_5fedge',['DMAC_B_EXTERNAL_DETECTION_FALLING_RISING_EDGE',['../group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355babdf24e175dde86c8a869f358d5bb30b1',1,'r_dmac_b.h']]], + ['dmac_5fb_5fexternal_5fdetection_5flow_5flevel',['DMAC_B_EXTERNAL_DETECTION_LOW_LEVEL',['../group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355ba9b733b38f6216a7bafaa62855dcdea06',1,'r_dmac_b.h']]], + ['dmac_5fb_5fexternal_5fdetection_5fno_5fdetection',['DMAC_B_EXTERNAL_DETECTION_NO_DETECTION',['../group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355baac86700726f22406c000acd5464a0737',1,'bsp_override.h']]], + ['dmac_5fb_5fexternal_5fdetection_5frising_5fedge',['DMAC_B_EXTERNAL_DETECTION_RISING_EDGE',['../group___d_m_a_c___b.html#ga14518809e8fbb9e21fdef462b5a6355ba71d49967fcb329386f7ad75c057af39f',1,'r_dmac_b.h']]], + ['dmac_5fb_5finternal_5fdetection_5ffalling_5fedge',['DMAC_B_INTERNAL_DETECTION_FALLING_EDGE',['../group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9a33a92c25dc8e8d12113e6deb4675c873',1,'r_dmac_b.h']]], + ['dmac_5fb_5finternal_5fdetection_5fhigh_5flevel',['DMAC_B_INTERNAL_DETECTION_HIGH_LEVEL',['../group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9a1299d6d4187c1bb2488f36aaaa595010',1,'r_dmac_b.h']]], + ['dmac_5fb_5finternal_5fdetection_5flow_5flevel',['DMAC_B_INTERNAL_DETECTION_LOW_LEVEL',['../group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9a4fb00d6fcdbad47c1093e14b8ae9e548',1,'r_dmac_b.h']]], + ['dmac_5fb_5finternal_5fdetection_5fno_5fdetection',['DMAC_B_INTERNAL_DETECTION_NO_DETECTION',['../group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9ab15a854ed45d602e8d626578289ce9ba',1,'r_dmac_b.h']]], + ['dmac_5fb_5finternal_5fdetection_5frising_5fedge',['DMAC_B_INTERNAL_DETECTION_RISING_EDGE',['../group___d_m_a_c___b.html#ggaa15ccc56c79f1686821605ef2b8f36b9ab7d1e90900549b57f72f0de1b45ea896',1,'r_dmac_b.h']]], + ['dmac_5fb_5fmode_5fselect_5flink',['DMAC_B_MODE_SELECT_LINK',['../group___d_m_a_c___b.html#gga94e377366e55d6e30cf97102474a5320a3baaab03184466785a334292da53798b',1,'r_dmac_b.h']]], + ['dmac_5fb_5fmode_5fselect_5fregister',['DMAC_B_MODE_SELECT_REGISTER',['../group___d_m_a_c___b.html#gga94e377366e55d6e30cf97102474a5320a7f8b6c67b1c4def19957ece68927e144',1,'r_dmac_b.h']]], + ['dmac_5fb_5frequest_5fdirection_5fdestination_5fmodule',['DMAC_B_REQUEST_DIRECTION_DESTINATION_MODULE',['../group___d_m_a_c___b.html#gga16f1e4bdd626e2ffc16b8852ca8d8c29adb00461b1b26e0bfbacec0a4ddabcdb1',1,'r_dmac_b.h']]], + ['dmac_5fb_5frequest_5fdirection_5fsource_5fmodule',['DMAC_B_REQUEST_DIRECTION_SOURCE_MODULE',['../group___d_m_a_c___b.html#gga16f1e4bdd626e2ffc16b8852ca8d8c29a93d8c7e5e86dacbe867b641d45c9a2b7',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f128_5fbyte',['DMAC_B_TRANSFER_SIZE_128_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a2c9e0298925cbd56844ad036ce1a912c',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f16_5fbyte',['DMAC_B_TRANSFER_SIZE_16_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a58ff436dad7b5de72f7dc3a260cbd330',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f1_5fbyte',['DMAC_B_TRANSFER_SIZE_1_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a721e23f79b32c72da736ec54d5421bec',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f2_5fbyte',['DMAC_B_TRANSFER_SIZE_2_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a4c2cfb773f20e835d60f56c0a629c8cf',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f32_5fbyte',['DMAC_B_TRANSFER_SIZE_32_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a805502107f3f216852993a50431d770b',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f4_5fbyte',['DMAC_B_TRANSFER_SIZE_4_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a85e3931c705b484424a1edb2e1524e84',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f64_5fbyte',['DMAC_B_TRANSFER_SIZE_64_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05aefe1c8b1b4337a4110e65e2ac44a9c45',1,'r_dmac_b.h']]], + ['dmac_5fb_5ftransfer_5fsize_5f8_5fbyte',['DMAC_B_TRANSFER_SIZE_8_BYTE',['../group___d_m_a_c___b.html#gga77c350dbc52956dc8b1ce4987e721e05a0c2745aba41ca5690310193c4bdf4e45',1,'r_dmac_b.h']]] ]; diff --git a/search/enumvalues_4.js b/search/enumvalues_4.js index dd680d0..bcdae47 100644 --- a/search/enumvalues_4.js +++ b/search/enumvalues_4.js @@ -1,71 +1,13 @@ var searchData= [ - ['gpt_5fadc_5fcompare_5fmatch_5fadc_5fa',['GPT_ADC_COMPARE_MATCH_ADC_A',['../group___g_p_t.html#gga2a838fffcbafd97778bbe3ffbfbf54b1a6f5dba4e42352f1bea9dccd3201021cc',1,'r_gpt.h']]], - ['gpt_5fadc_5fcompare_5fmatch_5fadc_5fb',['GPT_ADC_COMPARE_MATCH_ADC_B',['../group___g_p_t.html#gga2a838fffcbafd97778bbe3ffbfbf54b1abc17524a1e6137946784a36c5d31f27b',1,'r_gpt.h']]], - ['gpt_5fadc_5ftrigger_5fdown_5fcount_5fstart_5fadc_5fa',['GPT_ADC_TRIGGER_DOWN_COUNT_START_ADC_A',['../group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6afd744cee1c5e631263a043ec92af7510',1,'r_gpt.h']]], - ['gpt_5fadc_5ftrigger_5fdown_5fcount_5fstart_5fadc_5fb',['GPT_ADC_TRIGGER_DOWN_COUNT_START_ADC_B',['../group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a0d5922b5221be7b92ce2218c2d8fb50c',1,'r_gpt.h']]], - ['gpt_5fadc_5ftrigger_5fnone',['GPT_ADC_TRIGGER_NONE',['../group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a2818f2fff3a64fd3086a7230dabd7a14',1,'r_gpt.h']]], - ['gpt_5fadc_5ftrigger_5fup_5fcount_5fstart_5fadc_5fa',['GPT_ADC_TRIGGER_UP_COUNT_START_ADC_A',['../group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a2bd0475913403dab220b5e7d6c1acf72',1,'r_gpt.h']]], - ['gpt_5fadc_5ftrigger_5fup_5fcount_5fstart_5fadc_5fb',['GPT_ADC_TRIGGER_UP_COUNT_START_ADC_B',['../group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a850b0227fd4a50c51c146d44efe7c838',1,'r_gpt.h']]], - ['gpt_5fbuffer_5fmode_5fdouble',['GPT_BUFFER_MODE_DOUBLE',['../group___g_p_t.html#gga28d354e417a7a6666e0819387d8e7d8aaa04f95e24c83e681190e0553b33ef108',1,'r_gpt.h']]], - ['gpt_5fbuffer_5fmode_5fsingle',['GPT_BUFFER_MODE_SINGLE',['../group___g_p_t.html#gga28d354e417a7a6666e0819387d8e7d8aa55d1a551ce5c866c2917374f34c9dad1',1,'r_gpt.h']]], - ['gpt_5fcapture_5ffilter_5fnone',['GPT_CAPTURE_FILTER_NONE',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a9b2d993dbb736347b473101f14c1fde6',1,'r_gpt.h']]], - ['gpt_5fcapture_5ffilter_5fp0clk_5fdiv_5f1',['GPT_CAPTURE_FILTER_P0CLK_DIV_1',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5afbdc1a92e9b7d18e91ad7440144b022b',1,'r_gpt.h']]], - ['gpt_5fcapture_5ffilter_5fp0clk_5fdiv_5f16',['GPT_CAPTURE_FILTER_P0CLK_DIV_16',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a89dfc5c48b1c33a2aec0382baa92d808',1,'r_gpt.h']]], - ['gpt_5fcapture_5ffilter_5fp0clk_5fdiv_5f4',['GPT_CAPTURE_FILTER_P0CLK_DIV_4',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5aa30751bb9a5224fae95f55fd664c26e9',1,'r_gpt.h']]], - ['gpt_5fcapture_5ffilter_5fp0clk_5fdiv_5f64',['GPT_CAPTURE_FILTER_P0CLK_DIV_64',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5ac7c1be27c3e25a2486b1368df7092e1d',1,'r_gpt.h']]], - ['gpt_5fgtioc_5fdisable_5flevel_5fhigh',['GPT_GTIOC_DISABLE_LEVEL_HIGH',['../group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506ba2cd233e999331d566eafc32cd29ae9d0',1,'r_gpt.h']]], - ['gpt_5fgtioc_5fdisable_5flevel_5flow',['GPT_GTIOC_DISABLE_LEVEL_LOW',['../group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506babb7208f6cf212d2da6b806bf7f094ca5',1,'r_gpt.h']]], - ['gpt_5fgtioc_5fdisable_5fprohibited',['GPT_GTIOC_DISABLE_PROHIBITED',['../group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506ba1756f7251a83337222f68cc80bc33dfb',1,'r_gpt.h']]], - ['gpt_5fgtioc_5fdisable_5fset_5fhi_5fz',['GPT_GTIOC_DISABLE_SET_HI_Z',['../group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506bab3661e69b77c3086864f7872d264be75',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fadc_5fa',['GPT_INTERRUPT_SKIP_ADC_A',['../group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa43c4146c6bbaa9877dc6f1a34b6ccacf',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fadc_5fa_5fand_5fb',['GPT_INTERRUPT_SKIP_ADC_A_AND_B',['../group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa872ee214e5d3998245ac518730f9dde6',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fadc_5fb',['GPT_INTERRUPT_SKIP_ADC_B',['../group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa9bc6d33154685e53dab457675e8161e8',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fadc_5fnone',['GPT_INTERRUPT_SKIP_ADC_NONE',['../group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa9dee91a158ffa61d322cbbdac1ed99bd',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fcount_5f0',['GPT_INTERRUPT_SKIP_COUNT_0',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a6a175bfcdc5102e24b2f10726968262e',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fcount_5f1',['GPT_INTERRUPT_SKIP_COUNT_1',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a0168263b8e97f370e2d999e40e57689a',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fcount_5f2',['GPT_INTERRUPT_SKIP_COUNT_2',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3af6d98ec31f682d5439b5381dcb5305e4',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fcount_5f3',['GPT_INTERRUPT_SKIP_COUNT_3',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a3551066dcaffb033a40d7e329169a345',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fcount_5f4',['GPT_INTERRUPT_SKIP_COUNT_4',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3ab30f5da89de49b73e5d27e376a6702d9',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fcount_5f5',['GPT_INTERRUPT_SKIP_COUNT_5',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a21aec2bf2296497576f4f746e83078e9',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fcount_5f6',['GPT_INTERRUPT_SKIP_COUNT_6',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a46d2a195d3c9ab5c94c949ce243fbc46',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fcount_5f7',['GPT_INTERRUPT_SKIP_COUNT_7',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a1f87ae8bbf43b55f063cbcdbdc329d18',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fsource_5fcrest',['GPT_INTERRUPT_SKIP_SOURCE_CREST',['../group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a297710907b10befa05faa051f2e32be0',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fsource_5fnone',['GPT_INTERRUPT_SKIP_SOURCE_NONE',['../group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a88ebf7e3d8a17fa38f3a3251e76b76d4',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fsource_5foverflow_5funderflow',['GPT_INTERRUPT_SKIP_SOURCE_OVERFLOW_UNDERFLOW',['../group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a8525d45b1517b92b3b6d6f5b5a301083',1,'r_gpt.h']]], - ['gpt_5finterrupt_5fskip_5fsource_5ftrough',['GPT_INTERRUPT_SKIP_SOURCE_TROUGH',['../group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a75e3083840b7df9aa2883cded3cd2704',1,'r_gpt.h']]], - ['gpt_5fio_5fpin_5fgtioca',['GPT_IO_PIN_GTIOCA',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60aec2d2c471241869efb57a9a48a5d0eda',1,'r_gpt.h']]], - ['gpt_5fio_5fpin_5fgtioca_5fand_5fgtiocb',['GPT_IO_PIN_GTIOCA_AND_GTIOCB',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60a2b44d1e05050c34cc6e8d9ee4093294d',1,'r_gpt.h']]], - ['gpt_5fio_5fpin_5fgtiocb',['GPT_IO_PIN_GTIOCB',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60aebd74a7b9507fb082ec4cce60ebe9369',1,'r_gpt.h']]], - ['gpt_5foutput_5fdisable_5fdead_5ftime_5ferror',['GPT_OUTPUT_DISABLE_DEAD_TIME_ERROR',['../group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea36ab56234fbe2b5bb676c0962382bd96',1,'r_gpt.h']]], - ['gpt_5foutput_5fdisable_5fgtioca_5fgtiocb_5fhigh',['GPT_OUTPUT_DISABLE_GTIOCA_GTIOCB_HIGH',['../group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea236f4400f00369f754b3b88c8efc35a7',1,'r_gpt.h']]], - ['gpt_5foutput_5fdisable_5fgtioca_5fgtiocb_5flow',['GPT_OUTPUT_DISABLE_GTIOCA_GTIOCB_LOW',['../group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea3004c3e75921fa586fdf0538b7ef5abe',1,'r_gpt.h']]], - ['gpt_5foutput_5fdisable_5fnone',['GPT_OUTPUT_DISABLE_NONE',['../group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adeaa35910cb9d2f17f2488b4efdcb1b1fe9',1,'r_gpt.h']]], - ['gpt_5fpin_5flevel_5fhigh',['GPT_PIN_LEVEL_HIGH',['../group___g_p_t.html#gga454c639e426428470ce78115af5d3648adc8ebfd0f787322b884ca5d087b3a6a3',1,'r_gpt.h']]], - ['gpt_5fpin_5flevel_5flow',['GPT_PIN_LEVEL_LOW',['../group___g_p_t.html#gga454c639e426428470ce78115af5d3648a3270f1165e7a86c5b12eecb9501390f4',1,'r_gpt.h']]], - ['gpt_5fpoeg_5flink_5fpoeg0',['GPT_POEG_LINK_POEG0',['../group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943ae96e3845c4ea884a6d610a745a2c343c',1,'r_gpt.h']]], - ['gpt_5fpoeg_5flink_5fpoeg1',['GPT_POEG_LINK_POEG1',['../group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943ae9be405a3d64f348534f67710b37658c',1,'r_gpt.h']]], - ['gpt_5fpoeg_5flink_5fpoeg2',['GPT_POEG_LINK_POEG2',['../group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943a41eefcd7c70c85413a47d006127e112e',1,'r_gpt.h']]], - ['gpt_5fpoeg_5flink_5fpoeg3',['GPT_POEG_LINK_POEG3',['../group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943a7d98bec67e920f1f0f8a98ac18aaa7b5',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrga_5ffalling',['GPT_SOURCE_GTETRGA_FALLING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aab4c7fdaf7cfdd2d3730525965e68c982',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrga_5frising',['GPT_SOURCE_GTETRGA_RISING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa2ea3ebb2e30c10d0c5c087e198175220',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrgb_5ffalling',['GPT_SOURCE_GTETRGB_FALLING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aad01f879dc9132b0e05827cc7f4219a81',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrgb_5frising',['GPT_SOURCE_GTETRGB_RISING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa7af2b58b26be8c9b04ec5c31fdd66bab',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrgc_5ffalling',['GPT_SOURCE_GTETRGC_FALLING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaceecdd0276a5d1591246c1a2a294ddd3',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrgc_5frising',['GPT_SOURCE_GTETRGC_RISING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa5daee2c8037bdc04a019192efdd8af09',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrgd_5ffalling',['GPT_SOURCE_GTETRGD_FALLING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aad6f7ad7ca2dce583089104f23e27ed2c',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtetrgd_5frising',['GPT_SOURCE_GTETRGD_RISING',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaaa3e97349fb24f8ba0a431392a92f95e',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtioca_5ffalling_5fwhile_5fgtiocb_5fhigh',['GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aab844b52adc17cebabf04603fa993f176',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtioca_5ffalling_5fwhile_5fgtiocb_5flow',['GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa58b8714367e4bb5ec9eb6902c98fdb2e',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtioca_5frising_5fwhile_5fgtiocb_5fhigh',['GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaa03328ca033b8043537b813ecabe1c50',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtioca_5frising_5fwhile_5fgtiocb_5flow',['GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa1435f9ba57da19cfc255ea6f64ea7853',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtiocb_5ffalling_5fwhile_5fgtioca_5fhigh',['GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa037a151c14fea20ef0530f5a995f99e5',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtiocb_5ffalling_5fwhile_5fgtioca_5flow',['GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa3c659f3a22223a65ffdc96524249eec7',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtiocb_5frising_5fwhile_5fgtioca_5fhigh',['GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aaf6245811e4016299ba0acf0575389ba6',1,'r_gpt.h']]], - ['gpt_5fsource_5fgtiocb_5frising_5fwhile_5fgtioca_5flow',['GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aa4b546eda998208d87d6da5d0ad2f927a',1,'r_gpt.h']]], - ['gpt_5fsource_5fnone',['GPT_SOURCE_NONE',['../group___g_p_t.html#ggaa1457c9c1f178fff4dd1558832db196aae376db52803d52361481b2384c3a3bd8',1,'r_gpt.h']]], - ['gtm_5fgiws_5ftype_5fdisabled',['GTM_GIWS_TYPE_DISABLED',['../group___g_t_m.html#ggaae830979c17ceebe80264f0727e8a6b6a352d18878ec62f684b774ce2033e86ea',1,'r_gtm.h']]], - ['gtm_5fgiws_5ftype_5fenabled',['GTM_GIWS_TYPE_ENABLED',['../group___g_t_m.html#ggaae830979c17ceebe80264f0727e8a6b6af322eef944e25834f753b1e1d401684a',1,'r_gtm.h']]], - ['gtm_5ftimer_5fmode_5ffreerun',['GTM_TIMER_MODE_FREERUN',['../group___g_t_m.html#ggab3167c9bca77864d1f1c325314462618a056044e8d54ec9b0d6f7a2c17efea293',1,'r_gtm.h']]], - ['gtm_5ftimer_5fmode_5finterval',['GTM_TIMER_MODE_INTERVAL',['../group___g_t_m.html#ggab3167c9bca77864d1f1c325314462618a84b337d4b35086b476f3eaa2709b4241',1,'r_gtm.h']]] + ['elc_5fsoftware_5fevent_5f0',['ELC_SOFTWARE_EVENT_0',['../group___e_l_c___a_p_i.html#ga5fed76c06664ddad69c5a7ccb0330f0ea862eb8abb2f512a4b4caaa1ee6900d27',1,'r_elc_api.h']]], + ['elc_5fsoftware_5fevent_5f1',['ELC_SOFTWARE_EVENT_1',['../group___e_l_c___a_p_i.html#ga5fed76c06664ddad69c5a7ccb0330f0ea4ba5ce998b49ee8ba5fd264f53146d6d',1,'r_elc_api.h']]], + ['external_5firq_5fpclk_5fdiv_5fby_5f1',['EXTERNAL_IRQ_PCLK_DIV_BY_1',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8a8efd589848d944d15906446d30500c1a',1,'r_external_irq_api.h']]], + ['external_5firq_5fpclk_5fdiv_5fby_5f32',['EXTERNAL_IRQ_PCLK_DIV_BY_32',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8a0ec86c6eb31ac0c5e2a789e3bcefe334',1,'r_external_irq_api.h']]], + ['external_5firq_5fpclk_5fdiv_5fby_5f64',['EXTERNAL_IRQ_PCLK_DIV_BY_64',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8a50e18b67ca2b1d8c0efb69dac660c581',1,'r_external_irq_api.h']]], + ['external_5firq_5fpclk_5fdiv_5fby_5f8',['EXTERNAL_IRQ_PCLK_DIV_BY_8',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga692e093fc800ee08e3f84fae648372d8aea6e72eaa11987f54579a14bb4b3a7e9',1,'r_external_irq_api.h']]], + ['external_5firq_5ftrig_5fboth_5fedge',['EXTERNAL_IRQ_TRIG_BOTH_EDGE',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57ca0a2ebac83c3e8ca3da64e703dda65b71',1,'r_external_irq_api.h']]], + ['external_5firq_5ftrig_5ffalling',['EXTERNAL_IRQ_TRIG_FALLING',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57caace14d51313fed5f17da4b9828fd5412',1,'r_external_irq_api.h']]], + ['external_5firq_5ftrig_5flevel_5flow',['EXTERNAL_IRQ_TRIG_LEVEL_LOW',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57cae0ae8739569bb4721c7ed289397b9c4f',1,'r_external_irq_api.h']]], + ['external_5firq_5ftrig_5frising',['EXTERNAL_IRQ_TRIG_RISING',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#gga2d1960d763da14da209e16fbb972d57ca2d7a4f8fd21fad6f5a671336152d46b0',1,'r_external_irq_api.h']]] ]; diff --git a/search/enumvalues_5.js b/search/enumvalues_5.js index 8a34929..4b82b45 100644 --- a/search/enumvalues_5.js +++ b/search/enumvalues_5.js @@ -1,240 +1,240 @@ var searchData= [ - ['i2c_5fmaster_5faddr_5fmode_5f10bit',['I2C_MASTER_ADDR_MODE_10BIT',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#gga6203bcd8d8127b8fd442a2d33d112940a90fd4eafcbdc39a9f466f9342246ac4d',1,'r_i2c_master_api.h']]], - ['i2c_5fmaster_5faddr_5fmode_5f7bit',['I2C_MASTER_ADDR_MODE_7BIT',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#gga6203bcd8d8127b8fd442a2d33d112940ab42fbd73d951db4694494c5acfa19dd8',1,'r_i2c_master_api.h']]], - ['i2c_5fmaster_5fevent_5faborted',['I2C_MASTER_EVENT_ABORTED',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#gga515f0c8b583f8851ce4d6474168769afa22226fd293eb8a7f80e4a80ca8699a4d',1,'r_i2c_master_api.h']]], - ['i2c_5fmaster_5fevent_5frx_5fcomplete',['I2C_MASTER_EVENT_RX_COMPLETE',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#gga515f0c8b583f8851ce4d6474168769afa1b3d50a1a4fbf045307febd9eca1521a',1,'r_i2c_master_api.h']]], - ['i2c_5fmaster_5fevent_5ftx_5fcomplete',['I2C_MASTER_EVENT_TX_COMPLETE',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#gga515f0c8b583f8851ce4d6474168769afa9273437457da4f6369e937d257c0211b',1,'r_i2c_master_api.h']]], - ['i2c_5fmaster_5frate_5ffast',['I2C_MASTER_RATE_FAST',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ggaa30dd03665bdc1134233e8e2b1631f0aae2e38e76a2477e68f2685b403bdeb9a9',1,'r_i2c_master_api.h']]], - ['i2c_5fmaster_5frate_5ffastplus',['I2C_MASTER_RATE_FASTPLUS',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ggaa30dd03665bdc1134233e8e2b1631f0aaee266782cacb431c8623f7276063228b',1,'r_i2c_master_api.h']]], - ['i2c_5fmaster_5frate_5fstandard',['I2C_MASTER_RATE_STANDARD',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ggaa30dd03665bdc1134233e8e2b1631f0aa929a32b2615c7c54efa382f06e901cc0',1,'r_i2c_master_api.h']]], - ['iic_5fmaster_5ftimeout_5fmode_5flong',['IIC_MASTER_TIMEOUT_MODE_LONG',['../group___r_i_i_c___m_a_s_t_e_r.html#ggaf8ecd43a76bfa058281bb8b6b3981d3facc441997b6e18766361457d26227b4bd',1,'r_riic_master.h']]], - ['iic_5fmaster_5ftimeout_5fmode_5fshort',['IIC_MASTER_TIMEOUT_MODE_SHORT',['../group___r_i_i_c___m_a_s_t_e_r.html#ggaf8ecd43a76bfa058281bb8b6b3981d3fa4afacd0b267f604d06e2b83891c0e577',1,'r_riic_master.h']]], - ['ioport_5faudio_5fclk1',['IOPORT_AUDIO_CLK1',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea61f68231948579e8c2a62470e8fb0a68',1,'r_ioport.h']]], - ['ioport_5faudio_5fclk2',['IOPORT_AUDIO_CLK2',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea16d2b07cec666834a1ffca8c722dd575',1,'r_ioport.h']]], - ['ioport_5fcfg_5fdrive_5fb00',['IOPORT_CFG_DRIVE_B00',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a4f3c70e0bd324aecc0fed994903b63b0',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fdrive_5fb01',['IOPORT_CFG_DRIVE_B01',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574af4952693675255ac32a0813a1100e038',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fdrive_5fb10',['IOPORT_CFG_DRIVE_B10',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ac882c17c38a2a20dfd0b5e1dd3eaeaf4',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fdrive_5fb11',['IOPORT_CFG_DRIVE_B11',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a0c5a07dad389d25a576c734a391ec148',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5f18000',['IOPORT_CFG_NOISE_FILTER_DIVIDED_18000',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a47135d68ccd71227f089cdc67ff242b6',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5f36000',['IOPORT_CFG_NOISE_FILTER_DIVIDED_36000',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a6b8456cbcd1ab14dcec4c749b9b16c6b',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5f9000',['IOPORT_CFG_NOISE_FILTER_DIVIDED_9000',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a39721a40c76adc1584a6716a0187a344',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fnot_5fdivided',['IOPORT_CFG_NOISE_FILTER_NOT_DIVIDED',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a8d0959d2bac4007c7966402e1edd5cf7',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f12stage',['IOPORT_CFG_NOISE_FILTER_NUM_12STAGE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574af0dbea168d9df29c6a4180e202370f22',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f16stage',['IOPORT_CFG_NOISE_FILTER_NUM_16STAGE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ace057086d321233881c1f335b6764bc2',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f4stage',['IOPORT_CFG_NOISE_FILTER_NUM_4STAGE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a9a30d0a8eb346f1c1951396c0559ef64',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f8stage',['IOPORT_CFG_NOISE_FILTER_NUM_8STAGE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ab7e5fcab2fd99046fcedb85c34070e2c',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5foff',['IOPORT_CFG_NOISE_FILTER_OFF',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a23f3f6712eefca788aa61da4976fd565',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fnoise_5ffilter_5fon',['IOPORT_CFG_NOISE_FILTER_ON',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a816a25b17c72bca7e267d47eb7f45dbc',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fperipheral_5fpin',['IOPORT_CFG_PERIPHERAL_PIN',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a2066555437a19b9e6e721fb494c8f5c3',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fport_5fdirection_5fhiz',['IOPORT_CFG_PORT_DIRECTION_HIZ',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a627d716bdff4fe54f3cbf9f2a5b87bf9',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fport_5fdirection_5finput',['IOPORT_CFG_PORT_DIRECTION_INPUT',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a8d597c18cc5d24abc1b70f2526f2b6cb',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fport_5fdirection_5foutput',['IOPORT_CFG_PORT_DIRECTION_OUTPUT',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ab4d8c12714fab80d21b5b5a636f3cf97',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fport_5fdirection_5foutput_5finput',['IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a3a85f3deec88b01065fd3478ba691860',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fport_5foutput_5fhigh',['IOPORT_CFG_PORT_OUTPUT_HIGH',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a4b93b19150d018ab8ba5ef74e2852499',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fport_5foutput_5flow',['IOPORT_CFG_PORT_OUTPUT_LOW',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a1913e3b0734a4be613eb2fba8ec888c5',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fpulldown_5fenable',['IOPORT_CFG_PULLDOWN_ENABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a97baa43b94e675e2a4ae7a90dd4a94c6',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fpullup_5fenable',['IOPORT_CFG_PULLUP_ENABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a925954d59fa1101a4784a0d64a64d133',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fpullup_5fpulldown_5fdisable',['IOPORT_CFG_PULLUP_PULLDOWN_DISABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a3945f91ccb0beb4f87613fa0d9884965',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fslew_5frate_5ffast',['IOPORT_CFG_SLEW_RATE_FAST',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574accc921bf1d788c6f10b0225b65144f00',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fslew_5frate_5fflat',['IOPORT_CFG_SLEW_RATE_FLAT',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a14a3759e7b9db28ecd3e34968619c616',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fslew_5frate_5fslow',['IOPORT_CFG_SLEW_RATE_SLOW',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a9c17101eaef4bf0fd2beb880a29317a8',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fspecial_5fpurpose_5fport_5finput_5fdisable',['IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a968aea46146f3db05b2f9d2e1c29650f',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5fspecial_5fpurpose_5fport_5finput_5fenable',['IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a10595587e1c5984cecf3578625c05040',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5ftint_5fdisable',['IOPORT_CFG_TINT_DISABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574ac78c3e06c1adb07cd707118f321ef94e',1,'r_ioport_api.h']]], - ['ioport_5fcfg_5ftint_5fenable',['IOPORT_CFG_TINT_ENABLE',['../group___i_o_p_o_r_t___a_p_i.html#ggac617eebcb7c2c1e45fa8e04fc473e574a3691c62fc89eb3e7df1eae9064206c4e',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fchannel_5f0',['IOPORT_ETHERNET_CHANNEL_0',['../group___i_o_p_o_r_t___a_p_i.html#ggaf6a78fbc73b4e8acef86a12c21df2da0ad6e933716d34a0fbba5b3d9f589f7637',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fchannel_5f1',['IOPORT_ETHERNET_CHANNEL_1',['../group___i_o_p_o_r_t___a_p_i.html#ggaf6a78fbc73b4e8acef86a12c21df2da0a96f5c107a00efb1c4ccf9905540f1ee6',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fchannel_5fend',['IOPORT_ETHERNET_CHANNEL_END',['../group___i_o_p_o_r_t___a_p_i.html#ggaf6a78fbc73b4e8acef86a12c21df2da0ab054bb3020a4a296f0da7a11362c017c',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fmode_5fend',['IOPORT_ETHERNET_MODE_END',['../group___i_o_p_o_r_t___a_p_i.html#ggacaee6fc466858446638e79354043bb78a398ef6c7ab1704004f04168fb31cf38a',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fmode_5fmii',['IOPORT_ETHERNET_MODE_MII',['../group___i_o_p_o_r_t___a_p_i.html#ggacaee6fc466858446638e79354043bb78a21cfd34dda01172d7b86269be63708bb',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fmode_5frmii',['IOPORT_ETHERNET_MODE_RMII',['../group___i_o_p_o_r_t___a_p_i.html#ggacaee6fc466858446638e79354043bb78abcf9bf493cbb116eec49bc9e21424872',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fvoltage_5f18',['IOPORT_ETHERNET_VOLTAGE_18',['../group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0a85ecf006ee7e49708ac094d230bc9769',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fvoltage_5f25',['IOPORT_ETHERNET_VOLTAGE_25',['../group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0ac781714cf092bfaa8269439712564efa',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fvoltage_5f33',['IOPORT_ETHERNET_VOLTAGE_33',['../group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0a668aedbed44c6aad2dff4aeafd6cfe31',1,'r_ioport_api.h']]], - ['ioport_5fethernet_5fvoltage_5fend',['IOPORT_ETHERNET_VOLTAGE_END',['../group___i_o_p_o_r_t___a_p_i.html#gga76937b0cdeebfff6a5b22e5e89cb18b0a2e9d8318bfb8eccfcb8b4a38ac7718d0',1,'r_ioport_api.h']]], - ['ioport_5fnmi',['IOPORT_NMI',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea837ea61cf43956e07dac2caf276ea8db',1,'r_ioport.h']]], - ['ioport_5fperipheral_5fend',['IOPORT_PERIPHERAL_END',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a9885514f43d9d1c466ae689ef3608a9a',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5fmode0',['IOPORT_PERIPHERAL_MODE0',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a576f1af4e835f4533486d91cca50d8e9',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5fmode1',['IOPORT_PERIPHERAL_MODE1',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a5a8bf28d2e93cb6235e9a7beea2bfa0e',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5fmode2',['IOPORT_PERIPHERAL_MODE2',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ad7f23c31f6b56d6cf7b1024b8ea46b03',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5fmode3',['IOPORT_PERIPHERAL_MODE3',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a44817e0b76e81f0353e70fce82f556fa',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5fmode4',['IOPORT_PERIPHERAL_MODE4',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8afb9e29f050c27973d20c0273f88c6207',1,'r_ioport_api.h']]], - ['ioport_5fperipheral_5fmode5',['IOPORT_PERIPHERAL_MODE5',['../group___i_o_p_o_r_t___a_p_i.html#ggaebbb969fda93422aaf1878d6f4ff8fe8aa285c9c361e0be95e5e87e788bd8b2de',1,'r_ioport_api.h']]], - ['ioport_5fpfs_5fwrite_5fdisable',['IOPORT_PFS_WRITE_DISABLE',['../group___i_o_p_o_r_t___a_p_i.html#gga25ef8d1291cc073dd48f57b16d91c13eaf67cf250303fd4692c46717f0b7a9412',1,'r_ioport_api.h']]], - ['ioport_5fpfs_5fwrite_5fenable',['IOPORT_PFS_WRITE_ENABLE',['../group___i_o_p_o_r_t___a_p_i.html#gga25ef8d1291cc073dd48f57b16d91c13ea5d94e8d4ba61664a407a0d84538fc298',1,'r_ioport_api.h']]], - ['ioport_5fport_5f00_5fpin_5f00',['IOPORT_PORT_00_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9e8641427dce87cbb4b8e94da9988bb6',1,'r_ioport.h']]], - ['ioport_5fport_5f00_5fpin_5f01',['IOPORT_PORT_00_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa43e0035d6e67601f3e32afe2c866302',1,'r_ioport.h']]], - ['ioport_5fport_5f01_5fpin_5f00',['IOPORT_PORT_01_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea43352cc8543ee207ea9d59a9a61cea97',1,'r_ioport.h']]], - ['ioport_5fport_5f01_5fpin_5f01',['IOPORT_PORT_01_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2232cca0e019d0de7c090e0a4f46b040',1,'r_ioport.h']]], - ['ioport_5fport_5f02_5fpin_5f00',['IOPORT_PORT_02_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaccddb043ca627fb3f174e3c212c021c9',1,'r_ioport.h']]], - ['ioport_5fport_5f02_5fpin_5f01',['IOPORT_PORT_02_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea574b809835bddedd610d50bf74d696e1',1,'r_ioport.h']]], - ['ioport_5fport_5f03_5fpin_5f00',['IOPORT_PORT_03_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eade503295c3201143266caecb21087c0e',1,'r_ioport.h']]], - ['ioport_5fport_5f03_5fpin_5f01',['IOPORT_PORT_03_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea766a886ad8d781f1e027033bb4728169',1,'r_ioport.h']]], - ['ioport_5fport_5f04_5fpin_5f00',['IOPORT_PORT_04_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaed350ead2aa5cfc5b02fe968eed69c6e',1,'r_ioport.h']]], - ['ioport_5fport_5f04_5fpin_5f01',['IOPORT_PORT_04_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea008601cafccc5ef423b7b0fa2f10e774',1,'r_ioport.h']]], - ['ioport_5fport_5f05_5fpin_5f00',['IOPORT_PORT_05_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea73e637eb4faa0c0306364c7df1af095f',1,'r_ioport.h']]], - ['ioport_5fport_5f05_5fpin_5f01',['IOPORT_PORT_05_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea0c7644372a96f31edee311d1a3a8b2f2',1,'r_ioport.h']]], - ['ioport_5fport_5f05_5fpin_5f02',['IOPORT_PORT_05_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaec9b4eece5b92f63ca357e879d1a5b99',1,'r_ioport.h']]], - ['ioport_5fport_5f06_5fpin_5f00',['IOPORT_PORT_06_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead6f7b58c3226756f42a3e7683b536b13',1,'r_ioport.h']]], - ['ioport_5fport_5f06_5fpin_5f01',['IOPORT_PORT_06_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac8db29b7a712c7a4396332b902f87eab',1,'r_ioport.h']]], - ['ioport_5fport_5f07_5fpin_5f00',['IOPORT_PORT_07_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea419e03f7c7ca6e7e8c32710146ef628c',1,'r_ioport.h']]], - ['ioport_5fport_5f07_5fpin_5f01',['IOPORT_PORT_07_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab52bfe38ab8f85dc73ff58c440224ab5',1,'r_ioport.h']]], - ['ioport_5fport_5f07_5fpin_5f02',['IOPORT_PORT_07_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa47d77df21bad7b6b52e916e4f778382',1,'r_ioport.h']]], - ['ioport_5fport_5f08_5fpin_5f00',['IOPORT_PORT_08_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf7f5fc685631de387d29708b82032d42',1,'r_ioport.h']]], - ['ioport_5fport_5f08_5fpin_5f01',['IOPORT_PORT_08_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2da4f3380840124904c73877d5d9f947',1,'r_ioport.h']]], - ['ioport_5fport_5f08_5fpin_5f02',['IOPORT_PORT_08_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5296b9fb15049795284d6f7b06d7adbc',1,'r_ioport.h']]], - ['ioport_5fport_5f09_5fpin_5f00',['IOPORT_PORT_09_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea55123dd39739862f468305f1d80cd696',1,'r_ioport.h']]], - ['ioport_5fport_5f09_5fpin_5f01',['IOPORT_PORT_09_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9135241bca61a6acb3c444856b652b69',1,'r_ioport.h']]], - ['ioport_5fport_5f10_5fpin_5f00',['IOPORT_PORT_10_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4a316ebb9212390c839de79bf78fb699',1,'r_ioport.h']]], - ['ioport_5fport_5f10_5fpin_5f01',['IOPORT_PORT_10_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab18dacb19cfb46999a130cb41b5bd011',1,'r_ioport.h']]], - ['ioport_5fport_5f11_5fpin_5f00',['IOPORT_PORT_11_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9476c736ebc3faaf91c4807939a24dee',1,'r_ioport.h']]], - ['ioport_5fport_5f11_5fpin_5f01',['IOPORT_PORT_11_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea520361cb7a3c75b3b53de8064c568081',1,'r_ioport.h']]], - ['ioport_5fport_5f12_5fpin_5f00',['IOPORT_PORT_12_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea52513b77dbaf4f5b8960a87a81a06e79',1,'r_ioport.h']]], - ['ioport_5fport_5f12_5fpin_5f01',['IOPORT_PORT_12_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaecc9e48293365e0dd2b321efb6f5d39a',1,'r_ioport.h']]], - ['ioport_5fport_5f13_5fpin_5f00',['IOPORT_PORT_13_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5b0b18f88c4783b6bc28b3e7b51e4c03',1,'r_ioport.h']]], - ['ioport_5fport_5f13_5fpin_5f01',['IOPORT_PORT_13_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea99dff2c1a30315ab757bcc4dd902ff78',1,'r_ioport.h']]], - ['ioport_5fport_5f13_5fpin_5f02',['IOPORT_PORT_13_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8f5be37feb4892e7259c405b9e80cfc8',1,'r_ioport.h']]], - ['ioport_5fport_5f14_5fpin_5f00',['IOPORT_PORT_14_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eafe21679da09abea718bb09af6174304e',1,'r_ioport.h']]], - ['ioport_5fport_5f14_5fpin_5f01',['IOPORT_PORT_14_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2857769c0ab24657b2319590a25ec47a',1,'r_ioport.h']]], - ['ioport_5fport_5f15_5fpin_5f00',['IOPORT_PORT_15_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2a58348e464d6088768d03d709d8a26c',1,'r_ioport.h']]], - ['ioport_5fport_5f15_5fpin_5f01',['IOPORT_PORT_15_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf0a8acc41485bd9ee6b1fd7477bae513',1,'r_ioport.h']]], - ['ioport_5fport_5f16_5fpin_5f00',['IOPORT_PORT_16_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1f88aed824ad7ccc4e75d3534d8dce7f',1,'r_ioport.h']]], - ['ioport_5fport_5f16_5fpin_5f01',['IOPORT_PORT_16_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab7c4762a756f042c67897dd2c1e01979',1,'r_ioport.h']]], - ['ioport_5fport_5f17_5fpin_5f00',['IOPORT_PORT_17_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea51bd16052f2785769c23c64d60bac96c',1,'r_ioport.h']]], - ['ioport_5fport_5f17_5fpin_5f01',['IOPORT_PORT_17_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4edac109686b07e6e4f372f2e51e80e0',1,'r_ioport.h']]], - ['ioport_5fport_5f17_5fpin_5f02',['IOPORT_PORT_17_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3675fc32067ccd2882654241b29e62de',1,'r_ioport.h']]], - ['ioport_5fport_5f18_5fpin_5f00',['IOPORT_PORT_18_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea82ef8efec0a83b34ead4bc3f43128a6d',1,'r_ioport.h']]], - ['ioport_5fport_5f18_5fpin_5f01',['IOPORT_PORT_18_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2a8900e165fe1de4b6b842c2526d5e83',1,'r_ioport.h']]], - ['ioport_5fport_5f19_5fpin_5f00',['IOPORT_PORT_19_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac1e3d1a4944c6d997a33ea1801378cd8',1,'r_ioport.h']]], - ['ioport_5fport_5f19_5fpin_5f01',['IOPORT_PORT_19_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead42cf49d73c876c64dcab5d7408931df',1,'r_ioport.h']]], - ['ioport_5fport_5f20_5fpin_5f00',['IOPORT_PORT_20_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eace68a0576d4a5ff8df48808cfdeb8d98',1,'r_ioport.h']]], - ['ioport_5fport_5f20_5fpin_5f01',['IOPORT_PORT_20_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3cacfd8ce91b532493d14c75c7075a03',1,'r_ioport.h']]], - ['ioport_5fport_5f20_5fpin_5f02',['IOPORT_PORT_20_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea848a705c8ca2c2633e8f53e020f42015',1,'r_ioport.h']]], - ['ioport_5fport_5f21_5fpin_5f00',['IOPORT_PORT_21_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3d09e5b1493cc84079d401d2e7c357d5',1,'r_ioport.h']]], - ['ioport_5fport_5f21_5fpin_5f01',['IOPORT_PORT_21_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eabc7758254f4520983e755e6657dd3db8',1,'r_ioport.h']]], - ['ioport_5fport_5f22_5fpin_5f00',['IOPORT_PORT_22_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea24ad0afca1280d4bdaba9d099cc04f1e',1,'r_ioport.h']]], - ['ioport_5fport_5f22_5fpin_5f01',['IOPORT_PORT_22_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab21e3adba1d1c2a7610f65d78a5a2de5',1,'r_ioport.h']]], - ['ioport_5fport_5f23_5fpin_5f00',['IOPORT_PORT_23_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85b1edd2ae53a6c8fc908cd8d8e32949',1,'r_ioport.h']]], - ['ioport_5fport_5f23_5fpin_5f01',['IOPORT_PORT_23_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf7c2e37ea2ed8dbf8bd1ce4d5639c7cf',1,'r_ioport.h']]], - ['ioport_5fport_5f24_5fpin_5f00',['IOPORT_PORT_24_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2bba85a684b1b2acad5488f8aa9a0b49',1,'r_ioport.h']]], - ['ioport_5fport_5f24_5fpin_5f01',['IOPORT_PORT_24_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa4b7d5b6cd1e1348d889ff4d629def77',1,'r_ioport.h']]], - ['ioport_5fport_5f25_5fpin_5f00',['IOPORT_PORT_25_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf804b7f7a2d663c0ec96f1fc04d87c8b',1,'r_ioport.h']]], - ['ioport_5fport_5f25_5fpin_5f01',['IOPORT_PORT_25_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea818baced7ae6d55d2d9ae53f3fa05727',1,'r_ioport.h']]], - ['ioport_5fport_5f26_5fpin_5f00',['IOPORT_PORT_26_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf8a2fbf190a7253cf15b62fb4b1ed250',1,'r_ioport.h']]], - ['ioport_5fport_5f26_5fpin_5f01',['IOPORT_PORT_26_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa5c2f062b6dc22153c51224f5bf74831',1,'r_ioport.h']]], - ['ioport_5fport_5f27_5fpin_5f00',['IOPORT_PORT_27_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea434f1230c094bb875142ba381405c771',1,'r_ioport.h']]], - ['ioport_5fport_5f27_5fpin_5f01',['IOPORT_PORT_27_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea34d2b60eeb41747629287e896ff2e023',1,'r_ioport.h']]], - ['ioport_5fport_5f28_5fpin_5f00',['IOPORT_PORT_28_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaae17894663a054577834088bf4699d84',1,'r_ioport.h']]], - ['ioport_5fport_5f28_5fpin_5f01',['IOPORT_PORT_28_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6f2d280a974fcb51540e44652a540b7c',1,'r_ioport.h']]], - ['ioport_5fport_5f29_5fpin_5f00',['IOPORT_PORT_29_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eabb4c2bfccb51a7c79562e6e90100f27b',1,'r_ioport.h']]], - ['ioport_5fport_5f29_5fpin_5f01',['IOPORT_PORT_29_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacca4bf7e56b59adf9ef018f42dde6620',1,'r_ioport.h']]], - ['ioport_5fport_5f30_5fpin_5f00',['IOPORT_PORT_30_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa0925fbbe23680defb4e6302c0aa2349',1,'r_ioport.h']]], - ['ioport_5fport_5f30_5fpin_5f01',['IOPORT_PORT_30_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf30a0d759b8157b155be988101c69710',1,'r_ioport.h']]], - ['ioport_5fport_5f31_5fpin_5f00',['IOPORT_PORT_31_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead7622903be00b10039f5987e3bf6f8e6',1,'r_ioport.h']]], - ['ioport_5fport_5f31_5fpin_5f01',['IOPORT_PORT_31_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea268e2121d6a01e09280e75fa1ada4d3a',1,'r_ioport.h']]], - ['ioport_5fport_5f32_5fpin_5f00',['IOPORT_PORT_32_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea772c204e2baf5217fdb0ec708673b035',1,'r_ioport.h']]], - ['ioport_5fport_5f32_5fpin_5f01',['IOPORT_PORT_32_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8f143ad244f73b8f02c3f4eac606935c',1,'r_ioport.h']]], - ['ioport_5fport_5f33_5fpin_5f00',['IOPORT_PORT_33_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea35c44d77c4fd2847baaf885a720bb5a8',1,'r_ioport.h']]], - ['ioport_5fport_5f33_5fpin_5f01',['IOPORT_PORT_33_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadb25625b3e64951140630eb72d8ec9d7',1,'r_ioport.h']]], - ['ioport_5fport_5f34_5fpin_5f00',['IOPORT_PORT_34_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac53340cbc4667d63cb9964a2f3a0ab3a',1,'r_ioport.h']]], - ['ioport_5fport_5f34_5fpin_5f01',['IOPORT_PORT_34_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf0f0d0ddab21c0d394a1fea1d6255815',1,'r_ioport.h']]], - ['ioport_5fport_5f35_5fpin_5f00',['IOPORT_PORT_35_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea2517ff700ae9cbd08c9afa4bf2c6a5ba',1,'r_ioport.h']]], - ['ioport_5fport_5f35_5fpin_5f01',['IOPORT_PORT_35_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1215ed3fe9e45dc1fed620151a4c0fac',1,'r_ioport.h']]], - ['ioport_5fport_5f36_5fpin_5f00',['IOPORT_PORT_36_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea06732f1dfb71eb77e409a304e9e07dd5',1,'r_ioport.h']]], - ['ioport_5fport_5f36_5fpin_5f01',['IOPORT_PORT_36_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea93f0a6b6849fcd4e5776d7b73a27de41',1,'r_ioport.h']]], - ['ioport_5fport_5f37_5fpin_5f00',['IOPORT_PORT_37_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaceef8d66de036d8243971e09c734745d',1,'r_ioport.h']]], - ['ioport_5fport_5f37_5fpin_5f01',['IOPORT_PORT_37_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac9c963ad72529582b6a7c9610c577438',1,'r_ioport.h']]], - ['ioport_5fport_5f37_5fpin_5f02',['IOPORT_PORT_37_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea11ccfc96a5b692f76fe8438000a4ee1c',1,'r_ioport.h']]], - ['ioport_5fport_5f38_5fpin_5f00',['IOPORT_PORT_38_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea49442ae10c29c3813e551bfb47857c3a',1,'r_ioport.h']]], - ['ioport_5fport_5f38_5fpin_5f01',['IOPORT_PORT_38_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3b2d043c3624ad44607cfff3d830508f',1,'r_ioport.h']]], - ['ioport_5fport_5f39_5fpin_5f00',['IOPORT_PORT_39_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea7603fc9dff5daf10f6ea048074d8a3b1',1,'r_ioport.h']]], - ['ioport_5fport_5f39_5fpin_5f01',['IOPORT_PORT_39_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8f7dc4da027a768087f66e29357decf6',1,'r_ioport.h']]], - ['ioport_5fport_5f39_5fpin_5f02',['IOPORT_PORT_39_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadd6ef9d4c32065ffd10115120f10875d',1,'r_ioport.h']]], - ['ioport_5fport_5f40_5fpin_5f00',['IOPORT_PORT_40_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae1efb56949dcafe26fb4533344e05de4',1,'r_ioport.h']]], - ['ioport_5fport_5f40_5fpin_5f01',['IOPORT_PORT_40_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea03ce087f738cf60211d1b784d2104298',1,'r_ioport.h']]], - ['ioport_5fport_5f40_5fpin_5f02',['IOPORT_PORT_40_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3d8aad86bb03fe49685ce30174d42629',1,'r_ioport.h']]], - ['ioport_5fport_5f41_5fpin_5f00',['IOPORT_PORT_41_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea63e82c02108d13c80fe9c63345a342b1',1,'r_ioport.h']]], - ['ioport_5fport_5f41_5fpin_5f01',['IOPORT_PORT_41_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea55571b3fd29a380dcc685d2a96e7b911',1,'r_ioport.h']]], - ['ioport_5fport_5f42_5fpin_5f00',['IOPORT_PORT_42_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead1d820e91b2a4527e30edd99baf4ddb5',1,'r_ioport.h']]], - ['ioport_5fport_5f42_5fpin_5f01',['IOPORT_PORT_42_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa6c3592451584e70f36ab179635d2f7f',1,'r_ioport.h']]], - ['ioport_5fport_5f42_5fpin_5f02',['IOPORT_PORT_42_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaff56dcaf2d1f75b737a2148013ae7cb9',1,'r_ioport.h']]], - ['ioport_5fport_5f42_5fpin_5f03',['IOPORT_PORT_42_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ead846eb09dca598f33cb0e67f8f2d5939',1,'r_ioport.h']]], - ['ioport_5fport_5f42_5fpin_5f04',['IOPORT_PORT_42_PIN_04',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae05c2ca8144ab1655c21d4b4500e95b7',1,'r_ioport.h']]], - ['ioport_5fport_5f43_5fpin_5f00',['IOPORT_PORT_43_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacdf0005bb30c87ca6fe3175d331a9caf',1,'r_ioport.h']]], - ['ioport_5fport_5f43_5fpin_5f01',['IOPORT_PORT_43_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacfb029998452b9cb9186499e7057ed70',1,'r_ioport.h']]], - ['ioport_5fport_5f43_5fpin_5f02',['IOPORT_PORT_43_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea96a332bc30621413ab2d9fdfd85563c4',1,'r_ioport.h']]], - ['ioport_5fport_5f43_5fpin_5f03',['IOPORT_PORT_43_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea61161beff96648267c82588e10c0a6fa',1,'r_ioport.h']]], - ['ioport_5fport_5f44_5fpin_5f00',['IOPORT_PORT_44_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6d00496a003e48a7d8b1170bafb9157d',1,'r_ioport.h']]], - ['ioport_5fport_5f44_5fpin_5f01',['IOPORT_PORT_44_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea75ae1e764d349da782bab9cbf1d9ecb0',1,'r_ioport.h']]], - ['ioport_5fport_5f44_5fpin_5f02',['IOPORT_PORT_44_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea602aaee12cfedbbd7a45ac52491a931e',1,'r_ioport.h']]], - ['ioport_5fport_5f44_5fpin_5f03',['IOPORT_PORT_44_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6db1f2c8912880f0a5b12de3bc150e7c',1,'r_ioport.h']]], - ['ioport_5fport_5f45_5fpin_5f00',['IOPORT_PORT_45_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eacd8f65d2924a0afc8ce467f8d68e3325',1,'r_ioport.h']]], - ['ioport_5fport_5f45_5fpin_5f01',['IOPORT_PORT_45_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea01acb4cdb777dba092b2a380406c03fe',1,'r_ioport.h']]], - ['ioport_5fport_5f45_5fpin_5f02',['IOPORT_PORT_45_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab567b92c616b560f30e93d16d3391119',1,'r_ioport.h']]], - ['ioport_5fport_5f45_5fpin_5f03',['IOPORT_PORT_45_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85e6369b71fe56afa6d76ff489edd066',1,'r_ioport.h']]], - ['ioport_5fport_5f46_5fpin_5f00',['IOPORT_PORT_46_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85ebd2058b57e8af5d514057de0eb65b',1,'r_ioport.h']]], - ['ioport_5fport_5f46_5fpin_5f01',['IOPORT_PORT_46_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadae61ab83263cd30bde872e7d64e5a7e',1,'r_ioport.h']]], - ['ioport_5fport_5f46_5fpin_5f02',['IOPORT_PORT_46_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9863a865ad695de365f91f935d1052fc',1,'r_ioport.h']]], - ['ioport_5fport_5f46_5fpin_5f03',['IOPORT_PORT_46_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea35b4a0ced608f3e7d26f9e7bc046b796',1,'r_ioport.h']]], - ['ioport_5fport_5f47_5fpin_5f00',['IOPORT_PORT_47_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf0d44ed8ffe15d0e262f3acc77033796',1,'r_ioport.h']]], - ['ioport_5fport_5f47_5fpin_5f01',['IOPORT_PORT_47_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa84fc759a1a78a36a4a23f4ebb194d8f',1,'r_ioport.h']]], - ['ioport_5fport_5f47_5fpin_5f02',['IOPORT_PORT_47_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea25f5bd78838dffd5c27b17afb70fa691',1,'r_ioport.h']]], - ['ioport_5fport_5f47_5fpin_5f03',['IOPORT_PORT_47_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac331aec700b594f3cb5d1f46cf9f37b4',1,'r_ioport.h']]], - ['ioport_5fport_5f48_5fpin_5f00',['IOPORT_PORT_48_PIN_00',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaefb8b85fc7868573c775a508f79299fb',1,'r_ioport.h']]], - ['ioport_5fport_5f48_5fpin_5f01',['IOPORT_PORT_48_PIN_01',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea28d2b880c59b99ca445fdcd5cbce2683',1,'r_ioport.h']]], - ['ioport_5fport_5f48_5fpin_5f02',['IOPORT_PORT_48_PIN_02',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea85a5b29dc69dbbd49b7c313f0876e668',1,'r_ioport.h']]], - ['ioport_5fport_5f48_5fpin_5f03',['IOPORT_PORT_48_PIN_03',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea37557bcc8dbdc94c0ec3384e4b951e46',1,'r_ioport.h']]], - ['ioport_5fport_5f48_5fpin_5f04',['IOPORT_PORT_48_PIN_04',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea188e17e95c4825d3604cfe19e60ac21f',1,'r_ioport.h']]], - ['ioport_5fqspi0_5fio0',['IOPORT_QSPI0_IO0',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaa92561cb3f93b3f0957bfa8d3b1e1546',1,'r_ioport.h']]], - ['ioport_5fqspi0_5fio1',['IOPORT_QSPI0_IO1',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea144be6f5fc2b813888b674368ec9f39a',1,'r_ioport.h']]], - ['ioport_5fqspi0_5fio2',['IOPORT_QSPI0_IO2',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae2c00b6bf6c44eb8b0204dac0733bdc8',1,'r_ioport.h']]], - ['ioport_5fqspi0_5fio3',['IOPORT_QSPI0_IO3',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae7e423a820f12cdf7f716128b4025952',1,'r_ioport.h']]], - ['ioport_5fqspi0_5fspclk',['IOPORT_QSPI0_SPCLK',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea48de60bd8662827861ae919950ff59a5',1,'r_ioport.h']]], - ['ioport_5fqspi0_5fssl',['IOPORT_QSPI0_SSL',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf3fb451820b03a63a245bc2d30c73ab3',1,'r_ioport.h']]], - ['ioport_5fqspi1_5fio0',['IOPORT_QSPI1_IO0',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadb1891675452e2fac89e1191ee42f0e0',1,'r_ioport.h']]], - ['ioport_5fqspi1_5fio1',['IOPORT_QSPI1_IO1',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eadddbae4c2e5a5d5984627fc9f218418b',1,'r_ioport.h']]], - ['ioport_5fqspi1_5fio2',['IOPORT_QSPI1_IO2',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac4cfe7af0a59bdf8c0fb629e42e9908b',1,'r_ioport.h']]], - ['ioport_5fqspi1_5fio3',['IOPORT_QSPI1_IO3',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5dcde61ab3cc4c135683427b8874cbf5',1,'r_ioport.h']]], - ['ioport_5fqspi1_5fspclk',['IOPORT_QSPI1_SPCLK',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaae6d884cdb41ce1709161c3bdf9ce945',1,'r_ioport.h']]], - ['ioport_5fqspi1_5fssl',['IOPORT_QSPI1_SSL',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab2667bb41ffb795c8bc65735c2f5d424',1,'r_ioport.h']]], - ['ioport_5fqspi_5fchannel_5f0',['IOPORT_QSPI_CHANNEL_0',['../group___i_o_p_o_r_t___a_p_i.html#gga5948fec6dc0aecb3c09f9acec96fefcaac0d7aa925c74601ab0941f130f7cc8c6',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fchannel_5f1',['IOPORT_QSPI_CHANNEL_1',['../group___i_o_p_o_r_t___a_p_i.html#gga5948fec6dc0aecb3c09f9acec96fefcaa32067b0d8f31d117a52dd59b41349084',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fchannel_5fend',['IOPORT_QSPI_CHANNEL_END',['../group___i_o_p_o_r_t___a_p_i.html#gga5948fec6dc0aecb3c09f9acec96fefcaa236f9aab97155ac9eea90a479056715d',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fint_5fn',['IOPORT_QSPI_INT_N',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1e9e542e62fb69020948426b6175570c',1,'r_ioport.h']]], - ['ioport_5fqspi_5freset_5fn',['IOPORT_QSPI_RESET_N',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eae37036d2a5563a74c41d0244d07b1b7c',1,'r_ioport.h']]], - ['ioport_5fqspi_5fvoltage_5f18',['IOPORT_QSPI_VOLTAGE_18',['../group___i_o_p_o_r_t___a_p_i.html#gga6714c32ad1f21415d3c99d4f2d027616a5a7a7ae01402ba9752bf3fb5754e0668',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fvoltage_5f33',['IOPORT_QSPI_VOLTAGE_33',['../group___i_o_p_o_r_t___a_p_i.html#gga6714c32ad1f21415d3c99d4f2d027616ac0c0bb5c9fed3261177e8eaa3d89a838',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fvoltage_5fend',['IOPORT_QSPI_VOLTAGE_END',['../group___i_o_p_o_r_t___a_p_i.html#gga6714c32ad1f21415d3c99d4f2d027616a6edc05a8291b6b885b81f57ae55f38b3',1,'r_ioport_api.h']]], - ['ioport_5fqspi_5fwp_5fn',['IOPORT_QSPI_WP_N',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea964a485a68f15cec5cbea9107d537f30',1,'r_ioport.h']]], - ['ioport_5friic0_5fscl',['IOPORT_RIIC0_SCL',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6bdb72b4c7d733a09d7fa449a6e82a43',1,'r_ioport.h']]], - ['ioport_5friic0_5fsda',['IOPORT_RIIC0_SDA',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea48b61b705d3aeb5b03e79a6affe47c46',1,'r_ioport.h']]], - ['ioport_5friic1_5fscl',['IOPORT_RIIC1_SCL',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea6cb7a1bbfe93cd71b79a9d586268fa57',1,'r_ioport.h']]], - ['ioport_5friic1_5fsda',['IOPORT_RIIC1_SDA',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea0e30454819b72aefa2250971389f2765',1,'r_ioport.h']]], - ['ioport_5fsd0_5fclk',['IOPORT_SD0_CLK',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea78ae1323844721ac089c94334a2eed20',1,'r_ioport.h']]], - ['ioport_5fsd0_5fcmd',['IOPORT_SD0_CMD',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf4e2eb49a1d436176d92a273cf201e55',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata0',['IOPORT_SD0_DATA0',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea75c267849ebce9a4c50430b38915fe5e',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata1',['IOPORT_SD0_DATA1',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea09fb47b073ce0bc40744acb625938fcd',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata2',['IOPORT_SD0_DATA2',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea1f9e0e7feeda6f22885010e0b6ad4483',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata3',['IOPORT_SD0_DATA3',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea856ede443f9ef018a2847711a5f3c92e',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata4',['IOPORT_SD0_DATA4',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5093fb5b46c33af09c41b85aa6357edd',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata5',['IOPORT_SD0_DATA5',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4317b9d3d9ac6a4648cd4baffd7c2f27',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata6',['IOPORT_SD0_DATA6',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea5bc69a638a2c0de8a9c301288d090335',1,'r_ioport.h']]], - ['ioport_5fsd0_5fdata7',['IOPORT_SD0_DATA7',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4f113e86f2c0cb4e67e7e58cbedbbafc',1,'r_ioport.h']]], - ['ioport_5fsd0_5frst_5fn',['IOPORT_SD0_RST_N',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eab47a9b3b4be29d08e9dfbb455c4ffcce',1,'r_ioport.h']]], - ['ioport_5fsd1_5fclk',['IOPORT_SD1_CLK',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea67387cf0604bf4cd33ad3f2ba4498cc9',1,'r_ioport.h']]], - ['ioport_5fsd1_5fcmd',['IOPORT_SD1_CMD',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eaf5a5f64311459a33954c219ccf68ba86',1,'r_ioport.h']]], - ['ioport_5fsd1_5fdata0',['IOPORT_SD1_DATA0',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea8602d2422a4f422bf4183484822b032a',1,'r_ioport.h']]], - ['ioport_5fsd1_5fdata1',['IOPORT_SD1_DATA1',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea4d53f3410d7a514538dc6133769182ca',1,'r_ioport.h']]], - ['ioport_5fsd1_5fdata2',['IOPORT_SD1_DATA2',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea558ff8f715d38ea04d3eee1632ddea0e',1,'r_ioport.h']]], - ['ioport_5fsd1_5fdata3',['IOPORT_SD1_DATA3',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea3c4788599942e153b3248cde5f1d9cc1',1,'r_ioport.h']]], - ['ioport_5fsd_5fchannel_5f0',['IOPORT_SD_CHANNEL_0',['../group___i_o_p_o_r_t___a_p_i.html#gga1e307d6ac8fce46a7b7c5a97acb66883ac4b47bead8a8ae7f860fa697732f007b',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fchannel_5f1',['IOPORT_SD_CHANNEL_1',['../group___i_o_p_o_r_t___a_p_i.html#gga1e307d6ac8fce46a7b7c5a97acb66883ac8a8a59efed7b48b78174be7cf112c70',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fchannel_5fend',['IOPORT_SD_CHANNEL_END',['../group___i_o_p_o_r_t___a_p_i.html#gga1e307d6ac8fce46a7b7c5a97acb66883ae671312651ad5b7f9836caf35f55aa24',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fvoltage_5f18',['IOPORT_SD_VOLTAGE_18',['../group___i_o_p_o_r_t___a_p_i.html#ggae6d3ffb13bd84935331f3b9f01607f41a513793fc0a151e2f1a3d5240f6b97531',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fvoltage_5f33',['IOPORT_SD_VOLTAGE_33',['../group___i_o_p_o_r_t___a_p_i.html#ggae6d3ffb13bd84935331f3b9f01607f41a1cd8b8b65dec65682133ede683eecbc1',1,'r_ioport_api.h']]], - ['ioport_5fsd_5fvoltage_5fend',['IOPORT_SD_VOLTAGE_END',['../group___i_o_p_o_r_t___a_p_i.html#ggae6d3ffb13bd84935331f3b9f01607f41a8b98f9c193ab3ffd01e8a96b05001bc5',1,'r_ioport_api.h']]], - ['ioport_5ftdo',['IOPORT_TDO',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea9417750d44193bb9c16e528c62c17e51',1,'r_ioport.h']]], - ['ioport_5ftms_5fswdio',['IOPORT_TMS_SWDIO',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840eac411c9ef9aa6eec58b0f007ff106dc2d',1,'r_ioport.h']]], - ['ioport_5fwdtovf_5fperrout_5fn',['IOPORT_WDTOVF_PERROUT_N',['../group___i_o_p_o_r_t.html#gga3a0a7f66458384069f25931ecb83840ea97a8121677c7b7269587a0f58e1fd207',1,'r_ioport.h']]] + ['fsp_5ferr_5faborted',['FSP_ERR_ABORTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abf03281ffe5a1adc5b3081f7adfe3f4e',1,'fsp_common_api.h']]], + ['fsp_5ferr_5falready_5fopen',['FSP_ERR_ALREADY_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae74f6f5d5f827f9891901781c754455b',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fapproximation',['FSP_ERR_APPROXIMATION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac62322154b85b6e0db84e59b6a117a38',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fassertion',['FSP_ERR_ASSERTION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa31a53c0ea5b86a8cb2bb9b3ccb99964',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fblank_5fcheck_5ffailed',['FSP_ERR_BLANK_CHECK_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a61a8e059198001f46af73f2930e6c144',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fble_5fabs_5finvalid_5foperation',['FSP_ERR_BLE_ABS_INVALID_OPERATION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad1049f36b3561899a547421a6117138c',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fble_5fabs_5fnot_5ffound',['FSP_ERR_BLE_ABS_NOT_FOUND',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad9c985872f1eee4c41ae4a30789c0761',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fble_5fconfig_5ffailed',['FSP_ERR_BLE_CONFIG_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aace5674d992838bd8dac5926188ea88c',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fble_5ffailed',['FSP_ERR_BLE_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aad12dc3bfd3947b7586c089ee6c15383',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fble_5finit_5ffailed',['FSP_ERR_BLE_INIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a151982a9bc9ba19d87b6a5a8b7679397',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fble_5fprf_5falready_5fenabled',['FSP_ERR_BLE_PRF_ALREADY_ENABLED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0bbf60d9eede358d4ebbdbd17eaf8854',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fble_5fprf_5fnot_5fenabled',['FSP_ERR_BLE_PRF_NOT_ENABLED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a517f6eb396408044e70353bedd2983e8',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fbreak_5fdetect',['FSP_ERR_BREAK_DETECT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae7b57f9284c226e7b524bcd9ee23cca9',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fbuffer_5fempty',['FSP_ERR_BUFFER_EMPTY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a36f32f07063bd03749f0410256fa95db',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fbuffer_5freleased',['FSP_ERR_BUFFER_RELEASED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3e6f68238ad78176d339b01ee9f396a2',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcalibrate_5ffailed',['FSP_ERR_CALIBRATE_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa4ed46a9d166f29b87a6f2ff89c458b7',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcan_5fdata_5funavailable',['FSP_ERR_CAN_DATA_UNAVAILABLE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac40178530b30251630ed759810117676',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcan_5finit_5ffailed',['FSP_ERR_CAN_INIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a842991deab0b4cbc07585d4f437c21dd',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcan_5fmessage_5flost',['FSP_ERR_CAN_MESSAGE_LOST',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a094ba75816525a5f0d620bdce195cc9e',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcan_5fmode_5fswitch_5ffailed',['FSP_ERR_CAN_MODE_SWITCH_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a86b1991ace24bc346dbb056d094c9886',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcan_5freceive_5fmailbox',['FSP_ERR_CAN_RECEIVE_MAILBOX',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a52e6bb08e856dae157893d1b6097f958',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcan_5ftransmit_5ffifo_5ffull',['FSP_ERR_CAN_TRANSMIT_FIFO_FULL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a18b27ed6db9097ea399215224ad62d82',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcan_5ftransmit_5fmailbox',['FSP_ERR_CAN_TRANSMIT_MAILBOX',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a998bd409cde19062422795ab5ea13c77',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcan_5ftransmit_5fnot_5fready',['FSP_ERR_CAN_TRANSMIT_NOT_READY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abd2265d139f387f507a3179e8289357d',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcard_5finit_5ffailed',['FSP_ERR_CARD_INIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2ed5fe9a48f6c1a6e50b36b17158fc62',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcard_5fnot_5finitialized',['FSP_ERR_CARD_NOT_INITIALIZED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e8dcc9b22b1e904997c8b4781dc0a24',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcard_5fnot_5finserted',['FSP_ERR_CARD_NOT_INSERTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3224cc4e49b921121dd1c25e4b680d58',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcard_5fwrite_5fprotected',['FSP_ERR_CARD_WRITE_PROTECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5889b6693b9fe40f24d1454a12707004',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcellular_5fconfig_5ffailed',['FSP_ERR_CELLULAR_CONFIG_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a61cdc8708028a97a52556794d4c2e050',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcellular_5ffailed',['FSP_ERR_CELLULAR_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a007f3ee6fdd7d7da64d199bd33eea883',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcellular_5ffw_5fupgrade_5ffailed',['FSP_ERR_CELLULAR_FW_UPGRADE_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab802905d674ed99f0d219346a3ab54dc',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcellular_5ffw_5fuptodate',['FSP_ERR_CELLULAR_FW_UPTODATE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa24ae037217ddad097ab29975cbd03af',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcellular_5finit_5ffailed',['FSP_ERR_CELLULAR_INIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a4a5158a88f2ea654f62435a7b5ae72d2',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcellular_5finvalid_5fstate',['FSP_ERR_CELLULAR_INVALID_STATE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af06dbb8a78ccfbd897d25476da1190ac',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcellular_5fregistration_5ffailed',['FSP_ERR_CELLULAR_REGISTRATION_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a88587e0a35f8081d546cd72e48ddc198',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcellular_5ftransmit_5ffailed',['FSP_ERR_CELLULAR_TRANSMIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a1350c1ec5c0dc121c93983b2367a61ab',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fclamped',['FSP_ERR_CLAMPED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae62ec11818d3693b55fa3e4ecf55e8e0',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fclkout_5fexceeded',['FSP_ERR_CLKOUT_EXCEEDED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae00382cd27990b19544bd0b72cb6dd33',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fclock_5factive',['FSP_ERR_CLOCK_ACTIVE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad0991da0bb1261a103f9b86c179446cc',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fclock_5fgeneration',['FSP_ERR_CLOCK_GENERATION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a41282c4e46d7f2cc7869fcfd782fab54',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fclock_5finactive',['FSP_ERR_CLOCK_INACTIVE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a20165a34bc804ee7750960ad81853f20',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcmd_5flocked',['FSP_ERR_CMD_LOCKED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac967d11d3c3211ff7ce1c364a6376ed0',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcomms_5fbus_5fnot_5fopen',['FSP_ERR_COMMS_BUS_NOT_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad40d6aaad44e18804d771e2a7872a2de',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5falready_5fopen',['FSP_ERR_CRYPTO_ALREADY_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a4c0707d4a6169b664b80e107659336b0',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fauthentication_5ffailed',['FSP_ERR_CRYPTO_AUTHENTICATION_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af70132beb6b5b4cdaeaed4c70bd553c4',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fbuf_5foverflow',['FSP_ERR_CRYPTO_BUF_OVERFLOW',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a74865c26e4916c9348c2ee5c0201f9d9',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fcommon_5fnot_5fopened',['FSP_ERR_CRYPTO_COMMON_NOT_OPENED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acfbdf09c1ae8d64e7eb388094bf54b9b',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fcontinue',['FSP_ERR_CRYPTO_CONTINUE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a479e63b946d94636f905fd9bace227e9',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fhal_5ferror',['FSP_ERR_CRYPTO_HAL_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac42e16e1358505398e631062a1afbd45',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5finstall_5fkey_5ffailed',['FSP_ERR_CRYPTO_INSTALL_KEY_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad7a753235aa6ea399b96239f2f0f8efb',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5finvalid_5foperation_5fmode',['FSP_ERR_CRYPTO_INVALID_OPERATION_MODE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab4d37806bc2d73603698a975fad28672',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5finvalid_5fsize',['FSP_ERR_CRYPTO_INVALID_SIZE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a59b955195cb913a404830ddca3d0176a',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5finvalid_5fstate',['FSP_ERR_CRYPTO_INVALID_STATE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0333bd5f03a8366cc8c1c8628ebdee24',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fkey_5fbuf_5fnot_5fenough',['FSP_ERR_CRYPTO_KEY_BUF_NOT_ENOUGH',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a378b2876a363d8c3a3c7ccc15c0221f9',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fnot_5fimplemented',['FSP_ERR_CRYPTO_NOT_IMPLEMENTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a98ed4aa9d85ee3b480d9f4b834b6f41c',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fnot_5fopen',['FSP_ERR_CRYPTO_NOT_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9b382a4ee94f03de684126c67d14ee50',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fnull_5fpointer',['FSP_ERR_CRYPTO_NULL_POINTER',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa98c3f2932465676d70f00748856f61c',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5frng_5ffatal_5ferror',['FSP_ERR_CRYPTO_RNG_FATAL_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9611e83ff233e8a071999952f0836b1f',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5frng_5finvalid_5fparam',['FSP_ERR_CRYPTO_RNG_INVALID_PARAM',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a514ca2eb6423e25bed3982d27c9d979b',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fsce_5falready_5fopen',['FSP_ERR_CRYPTO_SCE_ALREADY_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acfa47fcf9dd431fe1022c0c54f651936',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fsce_5fauthentication',['FSP_ERR_CRYPTO_SCE_AUTHENTICATION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7c0bcb38871c57b0cbaf0a7f94b4a3b6',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fsce_5ffail',['FSP_ERR_CRYPTO_SCE_FAIL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2c7fd435f27316b840546c51d0e7658d',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fsce_5fhrk_5finvalid_5findex',['FSP_ERR_CRYPTO_SCE_HRK_INVALID_INDEX',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abca9038b509e767223fcd461b1be22aa',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fsce_5fkey_5fset_5ffail',['FSP_ERR_CRYPTO_SCE_KEY_SET_FAIL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af1bec53bb97a928b39bb4e9d5f66eb04',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fsce_5fparameter',['FSP_ERR_CRYPTO_SCE_PARAMETER',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a407432ab3c4ab46df3dbf12e27bd3ca8',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fsce_5fprohibit_5ffunction',['FSP_ERR_CRYPTO_SCE_PROHIBIT_FUNCTION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a03165ce74cc447e345998cc45810bb8f',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fsce_5fresource_5fconflict',['FSP_ERR_CRYPTO_SCE_RESOURCE_CONFLICT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a558889b250c4c0dfa10cbce827f5b47e',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fsce_5fretry',['FSP_ERR_CRYPTO_SCE_RETRY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7f2691c6eef5893eae43b55495efff89',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5fsce_5fverify_5ffail',['FSP_ERR_CRYPTO_SCE_VERIFY_FAIL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae3da08cfbb0c6451f5ccf26d3cfdef12',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fcrypto_5funknown',['FSP_ERR_CRYPTO_UNKNOWN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9208c6be68de64b05a8bac94d68b1316',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fcco_5fhigh',['FSP_ERR_CTSU_DIAG_CCO_HIGH',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7ee7b868f3bfce9f09e5a45c47cce101',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fcco_5flow',['FSP_ERR_CTSU_DIAG_CCO_LOW',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a53bf2288d2174c426d5626885a9cf3a5',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fcfc_5fgain',['FSP_ERR_CTSU_DIAG_CFC_GAIN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afa6bc60b26c1b7b906b9854b4db5060d',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fclock_5frecovery',['FSP_ERR_CTSU_DIAG_CLOCK_RECOVERY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab33453ae13bd3c15751b3962f5188364',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fcurrent_5fsource',['FSP_ERR_CTSU_DIAG_CURRENT_SOURCE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acf83225e14023205bc71ddddf1ef7a43',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fdac',['FSP_ERR_CTSU_DIAG_DAC',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a61d141714727223ba19d6303429ad330',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fldo_5fover_5fvoltage',['FSP_ERR_CTSU_DIAG_LDO_OVER_VOLTAGE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aab6cc8f1186d7e953d0a25806106b01c',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fload_5fresistance',['FSP_ERR_CTSU_DIAG_LOAD_RESISTANCE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a17e6e9756acd02df02d6975161aa9998',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fnot_5fyet',['FSP_ERR_CTSU_DIAG_NOT_YET',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac3355a82b4fc612941c6d2b8f4f52f90',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5foutput_5fvoltage',['FSP_ERR_CTSU_DIAG_OUTPUT_VOLTAGE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5c0d0b6394458760c2cdc05cdb237136',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fover_5fcurrent',['FSP_ERR_CTSU_DIAG_OVER_CURRENT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad8f0d03dcdebc03a19c8e4112c30b46b',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fover_5fvoltage',['FSP_ERR_CTSU_DIAG_OVER_VOLTAGE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa895abb7c999f8a17f0b5c634abe6ae7',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fsensclk_5fgain',['FSP_ERR_CTSU_DIAG_SENSCLK_GAIN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a886c9fb19f0d44f37da9259c09098e94',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fsscg',['FSP_ERR_CTSU_DIAG_SSCG',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a55211caeb32fda85000d88eab4c4766d',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fdiag_5fsuclk_5fgain',['FSP_ERR_CTSU_DIAG_SUCLK_GAIN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab3731e454e03487e43cfcad91be7643f',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fincomplete_5ftuning',['FSP_ERR_CTSU_INCOMPLETE_TUNING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a19beacb3a5e19f362431d08a1fcaaa5d',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fnot_5fget_5fdata',['FSP_ERR_CTSU_NOT_GET_DATA',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7cfb255a9b41bb7d578b892b94ec362c',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fctsu_5fscanning',['FSP_ERR_CTSU_SCANNING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8abf96e28ad6ffcefb3753b3236b7d8f74',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fd2d_5ferror_5fdeinit',['FSP_ERR_D2D_ERROR_DEINIT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a89727736be0655b4f42ea4bb77f43942',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fd2d_5ferror_5finit',['FSP_ERR_D2D_ERROR_INIT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7dfc1b7578f229e739a22ecb69e4710a',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fd2d_5ferror_5frendering',['FSP_ERR_D2D_ERROR_RENDERING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af95284232b2ca5804c03171d71080bc4',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fd2d_5ferror_5fsize',['FSP_ERR_D2D_ERROR_SIZE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5612cd93ed5b3c657ace3c0a8831c4b5',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fdevice_5fbusy',['FSP_ERR_DEVICE_BUSY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acbadb8600c31a85deacc8092d6e4b4d7',1,'fsp_common_api.h']]], + ['fsp_5ferr_5ferase_5ffailed',['FSP_ERR_ERASE_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aedf5bd340743b4cad2a5b5370bdf3184',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fether_5ferror_5ffiltering',['FSP_ERR_ETHER_ERROR_FILTERING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8affc315c6031ade6b6642d2649281f2e0',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fether_5ferror_5flink',['FSP_ERR_ETHER_ERROR_LINK',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a58142c5af0984c7c4ede26c86aaf1376',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fether_5ferror_5fmagic_5fpacket_5fmode',['FSP_ERR_ETHER_ERROR_MAGIC_PACKET_MODE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aea683aeff347b767dcdcc7d3630f6395',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fether_5ferror_5fno_5fdata',['FSP_ERR_ETHER_ERROR_NO_DATA',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a39f6c51c69fd754c9a16551bbd8a7b59',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fether_5ferror_5fphy_5fcommunication',['FSP_ERR_ETHER_ERROR_PHY_COMMUNICATION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6240bb179602fe6d111b3cb464ca4612',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fether_5ferror_5ftransmit_5fbuffer_5ffull',['FSP_ERR_ETHER_ERROR_TRANSMIT_BUFFER_FULL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a7ff828228ccab4f53b2438ddd1c7e11a',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fether_5fphy_5ferror_5flink',['FSP_ERR_ETHER_PHY_ERROR_LINK',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a629a12ea100187a63ddb2f8ee9a5c823',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fether_5fphy_5fnot_5fready',['FSP_ERR_ETHER_PHY_NOT_READY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aad936f5a80f8c3fe3faa8d6220189098',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fether_5freceive_5fbuffer_5factive',['FSP_ERR_ETHER_RECEIVE_BUFFER_ACTIVE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a092517cd93432a76ae16c3cc3ff4bc29',1,'fsp_common_api.h']]], + ['fsp_5ferr_5ffclk',['FSP_ERR_FCLK',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0f14549511d9e5e2bf488ef4abf284cf',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fframing',['FSP_ERR_FRAMING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8f76d058261cd655519cbc81f1586bc4',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fhardware_5ftimeout',['FSP_ERR_HARDWARE_TIMEOUT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab635959cb1f794d46c032e602353e5ac',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fhw_5flocked',['FSP_ERR_HW_LOCKED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a4b6b9e437964146efbcb4ad42397d265',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fillegal_5fbuffer_5faddress',['FSP_ERR_ILLEGAL_BUFFER_ADDRESS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aef76cb06aecdf33a1186e2b1dd830b1a',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fillegal_5fsubscriber_5flists',['FSP_ERR_ILLEGAL_SUBSCRIBER_LISTS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae13f3c9685ff3f32dcb2966ac77c05df',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fin_5fuse',['FSP_ERR_IN_USE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2273c35317c397d5b1b3e2709facadd0',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finsufficient_5fdata',['FSP_ERR_INSUFFICIENT_DATA',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5875afbb6b583cfef9a6c83a053b7be6',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finsufficient_5fspace',['FSP_ERR_INSUFFICIENT_SPACE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6c274324b8822d301de1de5077d385fc',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finternal',['FSP_ERR_INTERNAL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6d11b644cafb53d7d39f701de5ca026d',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5faddress',['FSP_ERR_INVALID_ADDRESS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae4ebd9838f9e69e526fae8ff7fad27f2',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5falignment',['FSP_ERR_INVALID_ALIGNMENT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a25f62aa698b401155e31627fbc50b006',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fargument',['FSP_ERR_INVALID_ARGUMENT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a47437bfbf555a04e9bad25b75425657f',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fblocks',['FSP_ERR_INVALID_BLOCKS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac15b49615174ed00b88a0fc3e7338e2d',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fbrightness_5fsetting',['FSP_ERR_INVALID_BRIGHTNESS_SETTING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a96657076ca10ddfd97018bfbbeb94132',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fcac_5fref_5fclock',['FSP_ERR_INVALID_CAC_REF_CLOCK',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a899d80c2fd828410b2d01a7a96528f8c',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fcall',['FSP_ERR_INVALID_CALL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e88aef301d6f509e663b741e2193e5d',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fchannel',['FSP_ERR_INVALID_CHANNEL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a08758cf67b1b1f99e0609f7d7d16942e',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fclut_5faccess',['FSP_ERR_INVALID_CLUT_ACCESS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9a88e15efe487b892de5976439b4cb1f',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fdata',['FSP_ERR_INVALID_DATA',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2b8bd9b82940ba39e5d6c8351a8e6528',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5ffactory_5fflash',['FSP_ERR_INVALID_FACTORY_FLASH',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a06b56b3cf883cf010a7e5818246998b5',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5ffade_5fsetting',['FSP_ERR_INVALID_FADE_SETTING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a504225c32f7ce922fe8bd6eb3b71cb5a',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fgamma_5fsetting',['FSP_ERR_INVALID_GAMMA_SETTING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa080f63e010614e89f77e98db762a4a5',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fhw_5fcondition',['FSP_ERR_INVALID_HW_CONDITION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5197e695e1cbbce294aca76ed3ca570b',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5flayer_5fformat',['FSP_ERR_INVALID_LAYER_FORMAT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab5ae9d00d5529018895ddf39b2c3e5eb',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5flayer_5fsetting',['FSP_ERR_INVALID_LAYER_SETTING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a878fb55f61df59b8df5381f405d731c1',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5flinked_5faddress',['FSP_ERR_INVALID_LINKED_ADDRESS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a118e5ad68156cb8174e39b421abcf467',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fmode',['FSP_ERR_INVALID_MODE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad55fb9b2a3604266a75f735f4cd7f52c',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fmsg_5fbuffer_5fsize',['FSP_ERR_INVALID_MSG_BUFFER_SIZE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5324a3aee60be60cf0426cca90586892',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fpointer',['FSP_ERR_INVALID_POINTER',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aca11a0f89f57a43b6cf1a9d60fa3c013',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5frate',['FSP_ERR_INVALID_RATE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad03cea0891ae4463c964ed25a336caf0',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fsize',['FSP_ERR_INVALID_SIZE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac9c3ed9557b71ed6dbcabf4a4c4129ad',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fstate',['FSP_ERR_INVALID_STATE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af39326ab50613d8779ebc84e5da8ffbc',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5ftiming_5fsetting',['FSP_ERR_INVALID_TIMING_SETTING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0ae9f5e2b29a1355c61d1a6837fcc8a7',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fupdate_5ftiming',['FSP_ERR_INVALID_UPDATE_TIMING',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2da63a5a8255b07061d01793d951b3af',1,'fsp_common_api.h']]], + ['fsp_5ferr_5finvalid_5fworkbuffer_5fsize',['FSP_ERR_INVALID_WORKBUFFER_SIZE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a1638d9aa9cae9a4a26945f4e06770278',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fip_5fchannel_5fnot_5fpresent',['FSP_ERR_IP_CHANNEL_NOT_PRESENT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8af05386b34afb25ea06b40f7dd5d6ecf7',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fip_5fhardware_5fnot_5fpresent',['FSP_ERR_IP_HARDWARE_NOT_PRESENT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9949d6ad0b2b4e41a620c15c2bfa393f',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fip_5funit_5fnot_5fpresent',['FSP_ERR_IP_UNIT_NOT_PRESENT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a395e4056cceddf0f1606de74a028ed9e',1,'fsp_common_api.h']]], + ['fsp_5ferr_5firq_5fbsp_5fdisabled',['FSP_ERR_IRQ_BSP_DISABLED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8559df95856f0d5961b284bdbecbec4a',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5fblock_5fdata_5fnumber_5ferror',['FSP_ERR_JPEG_BLOCK_DATA_NUMBER_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2e783b2cf8434d9da89bdaa2a96de2bf',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5fbuffersize_5fnot_5fenough',['FSP_ERR_JPEG_BUFFERSIZE_NOT_ENOUGH',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a75d640ca7358ecbd243474c9355fd084',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5fcomponent_5ferror1',['FSP_ERR_JPEG_COMPONENT_ERROR1',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8a7b105a86fb8f28033c5d351d8a702d',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5fcomponent_5ferror2',['FSP_ERR_JPEG_COMPONENT_ERROR2',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0800521190fb997b5bdd6e442510dc21',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5fdqt_5faccuracy_5ferror',['FSP_ERR_JPEG_DQT_ACCURACY_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab1bebebe633bb879bba020add20a433b',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5feoi_5fnot_5fdetected',['FSP_ERR_JPEG_EOI_NOT_DETECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2d42e0616d35e614532c95bf780fe3a1',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5ferr',['FSP_ERR_JPEG_ERR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac2e2eac0e5d38ed6ec2c7b8891782df0',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5fimage_5fsize_5ferror',['FSP_ERR_JPEG_IMAGE_SIZE_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a58fa157c6894a408dab3175d77b6e250',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5flast_5fmcu_5fdata_5fnumber_5ferror',['FSP_ERR_JPEG_LAST_MCU_DATA_NUMBER_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa41c9b39372bc0ead5b051502bcf262c',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5frestart_5finterval_5fdata_5fnumber_5ferror',['FSP_ERR_JPEG_RESTART_INTERVAL_DATA_NUMBER_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac430678f17170002d5d8e71194803049',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5fsof0_5fdqt_5fdht_5fnot_5fdetected',['FSP_ERR_JPEG_SOF0_DQT_DHT_NOT_DETECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab3cce6d31e8a198b0e3ef9bbb7489ad2',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5fsof1_5fto_5fsoff_5fdetected',['FSP_ERR_JPEG_SOF1_TO_SOFF_DETECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0a63d0b8578305acef83fc2541a7791a',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5fsof_5faccuracy_5ferror',['FSP_ERR_JPEG_SOF_ACCURACY_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a15c30a4a6eb7992e2ecc7c319c93b61e',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5fsoi_5fnot_5fdetected',['FSP_ERR_JPEG_SOI_NOT_DETECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a05ef199ce97212663fa6c3edc947d3bd',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5fsos_5fnot_5fdetected',['FSP_ERR_JPEG_SOS_NOT_DETECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a65e4f50a62eb7dfb835d2013187fdc2e',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5funsupported_5fimage_5fsize',['FSP_ERR_JPEG_UNSUPPORTED_IMAGE_SIZE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9a874eddeb97d535b197a7fe3723a2f6',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fjpeg_5funsupported_5fpixel_5fformat',['FSP_ERR_JPEG_UNSUPPORTED_PIXEL_FORMAT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3c31107bd8ebd37bb8ff621758c25ecb',1,'fsp_common_api.h']]], + ['fsp_5ferr_5flow_5fvoltage_5fmode',['FSP_ERR_LOW_VOLTAGE_MODE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aac8334069ce27d25543b199d6b0afdb3',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fmedia_5fformat_5ffailed',['FSP_ERR_MEDIA_FORMAT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e0d94ec73cc2ff2c1076b7f2e39508a',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fmedia_5fopen_5ffailed',['FSP_ERR_MEDIA_OPEN_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a96b579c4bf9998918494fe0ed7ba5570',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fmessage_5fqueue_5fempty',['FSP_ERR_MESSAGE_QUEUE_EMPTY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a67eb0b2abc1ed0bc49f5287997cd4b88',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fmessage_5fqueue_5ffull',['FSP_ERR_MESSAGE_QUEUE_FULL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8addc1c8d5b6fc9f6d5f0c3ebb9840db76',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fmessage_5ftoo_5flong',['FSP_ERR_MESSAGE_TOO_LONG',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8acbae29129db25e1b1d6c599f91f0dac4',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fmode_5ffault',['FSP_ERR_MODE_FAULT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a1009b837effcd110d0c0fb1106d90898',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fno_5fcallback_5fmemory',['FSP_ERR_NO_CALLBACK_MEMORY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0b11740f5efdcaa58bd9606a1e29fa53',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fno_5fmore_5fbuffer',['FSP_ERR_NO_MORE_BUFFER',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab4725f604ee9846237af90d47c659f5a',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fno_5fsubscriber_5ffound',['FSP_ERR_NO_SUBSCRIBER_FOUND',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a05030ff414a0d988a0f6b3ea086cb3ea',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fnot_5fenabled',['FSP_ERR_NOT_ENABLED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3f7ac1a0a2f4f1263320ce7a845852cc',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fnot_5ferased',['FSP_ERR_NOT_ERASED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0a6057def8440b3e3dd6ff5fe9d4d4a7',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fnot_5ffound',['FSP_ERR_NOT_FOUND',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5b3fa149fddaa9617a7d3cacf67810a4',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fnot_5finitialized',['FSP_ERR_NOT_INITIALIZED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8add81216e0221e6d8583d35b1b471199b',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fnot_5fopen',['FSP_ERR_NOT_OPEN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a50831305d5da65885b19304af8688f1a',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fnot_5fstabilized',['FSP_ERR_NOT_STABILIZED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2ca996df0892e635d629e5215a57fe52',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fosc_5fstop_5fclock_5factive',['FSP_ERR_OSC_STOP_CLOCK_ACTIVE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8e9e74ef9b1b0cd4caaa8dd3d41da83b',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fosc_5fstop_5fdet_5fenabled',['FSP_ERR_OSC_STOP_DET_ENABLED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a8c8e1207d2980ba3dd772db6889d7504',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fosc_5fstop_5fdetected',['FSP_ERR_OSC_STOP_DETECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a2afd955eba937108cc5cfaaae48f2364',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fout_5fof_5fmemory',['FSP_ERR_OUT_OF_MEMORY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ac555b9f56bc564142de5f6f1c5e81462',1,'fsp_common_api.h']]], + ['fsp_5ferr_5foverflow',['FSP_ERR_OVERFLOW',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a3da0834b14d2abd22cb01d7dade29d75',1,'fsp_common_api.h']]], + ['fsp_5ferr_5foverrun',['FSP_ERR_OVERRUN',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab17e4b925713a575bdc269db3bb06f9b',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fparity',['FSP_ERR_PARITY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6e304d49fbb08fc3b56558769148cf36',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fpe_5ffailure',['FSP_ERR_PE_FAILURE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab0136751a5a85aedba8975720d6d6976',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fpll_5fsrc_5finactive',['FSP_ERR_PLL_SRC_INACTIVE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad8118a39d8349c891f0d443764d915a5',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fqueue_5fempty',['FSP_ERR_QUEUE_EMPTY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a897263b6cfdd866f230ba767b01fd457',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fqueue_5ffull',['FSP_ERR_QUEUE_FULL',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afe0f3347d7aed817201dac3bbad6fc75',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fqueue_5funavailable',['FSP_ERR_QUEUE_UNAVAILABLE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a40dc55384fe2838d6893037f2923d3d8',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fread_5foverflow',['FSP_ERR_READ_OVERFLOW',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9c9987a7651a37b59bb02cc1ed4361b2',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fresponse',['FSP_ERR_RESPONSE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a009dbf608109840cd7b1b82f08bf392b',1,'fsp_common_api.h']]], + ['fsp_5ferr_5frsa_5fdecryption_5ferror',['FSP_ERR_RSA_DECRYPTION_ERROR',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a41434bdcf52a833b4fe1cc5ae322fe7a',1,'fsp_common_api.h']]], + ['fsp_5ferr_5frxbuf_5foverflow',['FSP_ERR_RXBUF_OVERFLOW',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ab80d8e8c73b02af44003f87ea5f92a08',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fsector_5frelease_5ffailed',['FSP_ERR_SECTOR_RELEASE_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aada459ccb2b85a8dc33fabc987e173e4',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fsensor_5fin_5fstabilization',['FSP_ERR_SENSOR_IN_STABILIZATION',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a585fcafaa5e5dbe0209e063f5ecf8898',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fsensor_5finvalid_5fdata',['FSP_ERR_SENSOR_INVALID_DATA',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a47bedb95f9926c8f1330bcf7846a548e',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fsensor_5fmeasurement_5fnot_5ffinished',['FSP_ERR_SENSOR_MEASUREMENT_NOT_FINISHED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a445a886afbb0951782907ac56e93d729',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fspi_5fparity',['FSP_ERR_SPI_PARITY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aea550d03d45b87a810329a6138a0b022',1,'fsp_common_api.h']]], + ['fsp_5ferr_5ftimeout',['FSP_ERR_TIMEOUT',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a922f76a3a941dd4d49cc55d382cb16f4',1,'fsp_common_api.h']]], + ['fsp_5ferr_5ftoo_5fmany_5fbuffers',['FSP_ERR_TOO_MANY_BUFFERS',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a9a2d74abb0d93c43f58d08212e2da72a',1,'fsp_common_api.h']]], + ['fsp_5ferr_5ftransfer_5faborted',['FSP_ERR_TRANSFER_ABORTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aee232d80cec4c18cfae78bdfb718c7cf',1,'fsp_common_api.h']]], + ['fsp_5ferr_5ftransfer_5fbusy',['FSP_ERR_TRANSFER_BUSY',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad4f4dc559cd966b28e349da4416af20e',1,'fsp_common_api.h']]], + ['fsp_5ferr_5funderflow',['FSP_ERR_UNDERFLOW',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8adec9d5635d494955de400ca230d64886',1,'fsp_common_api.h']]], + ['fsp_5ferr_5funsupported',['FSP_ERR_UNSUPPORTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a384fc7e9a644424c3e7743f24ad5c40f',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fusb_5fmodule_5fenabled',['FSP_ERR_USB_MODULE_ENABLED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8afe6413d0677423f2f3d0fd0026899323',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fwait_5faborted',['FSP_ERR_WAIT_ABORTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aa5cbda3787ddf5092d0fdf14b8e4fe57',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fwifi_5fap_5fnot_5fconnected',['FSP_ERR_WIFI_AP_NOT_CONNECTED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8aec3eea83b4e2e3c9ec447d4612d31e59',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fwifi_5fconfig_5ffailed',['FSP_ERR_WIFI_CONFIG_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ad59d257fc10762fe60683c45a3f1b90a',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fwifi_5ffailed',['FSP_ERR_WIFI_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a5711df02b0d0b9e2027bef9de27948a4',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fwifi_5finit_5ffailed',['FSP_ERR_WIFI_INIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8ae1e9fb09fdb6841cf4379097812e6156',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fwifi_5finvalid_5fmode',['FSP_ERR_WIFI_INVALID_MODE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a6955ee4b9476caa9941a4a30608b2d9f',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fwifi_5fscan_5fcomplete',['FSP_ERR_WIFI_SCAN_COMPLETE',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a0dfea4f4a09d2cb04031624c5c3bd753',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fwifi_5ftransmit_5ffailed',['FSP_ERR_WIFI_TRANSMIT_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8adeb727c2591c971117d47d29edec70e6',1,'fsp_common_api.h']]], + ['fsp_5ferr_5fwrite_5ffailed',['FSP_ERR_WRITE_FAILED',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#ggadfb1288da0fcc7ae1dc88c58601374f8a23d4ede168571c3084157c0f99f6c60c',1,'fsp_common_api.h']]], + ['fsp_5fip_5fadc',['FSP_IP_ADC',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ac49bfca1e1ccf88f53586fc28bd54250',1,'bsp_override.h']]], + ['fsp_5fip_5fcanfd',['FSP_IP_CANFD',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950aacbead3e070986a6c40c32d2485d5c4e',1,'FSP_IP_CANFD(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950aacbead3e070986a6c40c32d2485d5c4e',1,'FSP_IP_CANFD(): bsp_override.h']]], + ['fsp_5fip_5fcmtw',['FSP_IP_CMTW',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a41268ed3e6b973a85d0dcabaf5d1abf2',1,'bsp_override.h']]], + ['fsp_5fip_5fcrc',['FSP_IP_CRC',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a66f3b5b31f294d50f964990b205cb92b',1,'bsp_override.h']]], + ['fsp_5fip_5fdmac',['FSP_IP_DMAC',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a494addfd4ceb1fabb0bea0893b444641',1,'FSP_IP_DMAC(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a494addfd4ceb1fabb0bea0893b444641',1,'FSP_IP_DMAC(): bsp_override.h']]], + ['fsp_5fip_5fdmac_5fs',['FSP_IP_DMAC_s',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950adf8c428fc9e6594881035cfc67a66373',1,'bsp_override.h']]], + ['fsp_5fip_5fgpt',['FSP_IP_GPT',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a83fe18962b058df65adb9ce089719ebb',1,'FSP_IP_GPT(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a83fe18962b058df65adb9ce089719ebb',1,'FSP_IP_GPT(): bsp_override.h']]], + ['fsp_5fip_5fgtm',['FSP_IP_GTM',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950afe554013bd2f3cbbd8462cea8eeee4ca',1,'FSP_IP_GTM(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950afe554013bd2f3cbbd8462cea8eeee4ca',1,'FSP_IP_GTM(): bsp_override.h']]], + ['fsp_5fip_5fi3c',['FSP_IP_I3C',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950aaff0832d2687261b54f54189c224db06',1,'bsp_override.h']]], + ['fsp_5fip_5fim33',['FSP_IP_IM33',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a4704af5ed32cbd6532fd28a44d0d028e',1,'FSP_IP_IM33(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a4704af5ed32cbd6532fd28a44d0d028e',1,'FSP_IP_IM33(): bsp_override.h']]], + ['fsp_5fip_5fmhu',['FSP_IP_MHU',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950abfff39a6b8ca24d18832ad7153cc0880',1,'FSP_IP_MHU(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950abfff39a6b8ca24d18832ad7153cc0880',1,'FSP_IP_MHU(): bsp_override.h']]], + ['fsp_5fip_5fmtu3',['FSP_IP_MTU3',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a7e7705b2505050da600c075db4723581',1,'fsp_features.h']]], + ['fsp_5fip_5fpoeg',['FSP_IP_POEG',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acfc9bb8ff007a7b82cf4fd845dfce053',1,'FSP_IP_POEG(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acfc9bb8ff007a7b82cf4fd845dfce053',1,'FSP_IP_POEG(): bsp_override.h']]], + ['fsp_5fip_5fport',['FSP_IP_PORT',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a3403f62d1f8cc29a868e5da9a86a46f7',1,'FSP_IP_PORT(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a3403f62d1f8cc29a868e5da9a86a46f7',1,'FSP_IP_PORT(): bsp_override.h']]], + ['fsp_5fip_5friic',['FSP_IP_RIIC',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a17e007a04505fb7a7614067e3d5e7447',1,'FSP_IP_RIIC(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a17e007a04505fb7a7614067e3d5e7447',1,'FSP_IP_RIIC(): bsp_override.h']]], + ['fsp_5fip_5frspi',['FSP_IP_RSPI',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acbce1d6d73ea0d9a18c42b2389c69888',1,'FSP_IP_RSPI(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950acbce1d6d73ea0d9a18c42b2389c69888',1,'FSP_IP_RSPI(): bsp_override.h']]], + ['fsp_5fip_5frtc',['FSP_IP_RTC',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ae2e4b37d45024125cbb660f1b3a3090e',1,'bsp_override.h']]], + ['fsp_5fip_5fsci',['FSP_IP_SCI',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ad8802ee74d9cafca9a1c4d5faea8e253',1,'FSP_IP_SCI(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950ad8802ee74d9cafca9a1c4d5faea8e253',1,'FSP_IP_SCI(): bsp_override.h']]], + ['fsp_5fip_5fscif',['FSP_IP_SCIF',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a837b8847e248ed296512f20813008cd5',1,'FSP_IP_SCIF(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a837b8847e248ed296512f20813008cd5',1,'FSP_IP_SCIF(): bsp_override.h']]], + ['fsp_5fip_5fssi',['FSP_IP_SSI',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a372bbc7267801454ac9a1bf3677ef60c',1,'FSP_IP_SSI(): fsp_features.h'],['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a372bbc7267801454ac9a1bf3677ef60c',1,'FSP_IP_SSI(): bsp_override.h']]], + ['fsp_5fip_5fsyc',['FSP_IP_SYC',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a308404027f3f10d27b8cb240dec71244',1,'bsp_override.h']]], + ['fsp_5fip_5ftsu',['FSP_IP_TSU',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a55e1c8e5259f5bc822c320abb058142b',1,'bsp_override.h']]], + ['fsp_5fip_5fwdt',['FSP_IP_WDT',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a9b738d0f557574bb4d659abc2dc0fbf8',1,'bsp_override.h']]], + ['fsp_5fip_5fxspi',['FSP_IP_XSPI',['../group___b_s_p___m_c_u.html#ga7880302f0edd7cc4290c037809975950a8e412d35ce1643636ba6bc355914c5e0',1,'bsp_override.h']]] ]; diff --git a/search/enumvalues_6.js b/search/enumvalues_6.js index 0fdaaf9..e4aa6ea 100644 --- a/search/enumvalues_6.js +++ b/search/enumvalues_6.js @@ -1,5 +1,135 @@ var searchData= [ - ['mhu_5fsend_5ftype_5fmsg',['MHU_SEND_TYPE_MSG',['../group___m_h_u___a_p_i.html#gga2f810fc1366dd26cd5632846a65407aea72dd7fd31939b7f67d6b212b7b22917d',1,'r_mhu_api.h']]], - ['mhu_5fsend_5ftype_5frsp',['MHU_SEND_TYPE_RSP',['../group___m_h_u___a_p_i.html#gga2f810fc1366dd26cd5632846a65407aea0aed9dce78e782b034f672d0bf54cb2b',1,'r_mhu_api.h']]] + ['gpt_5fadc_5fcompare_5fmatch_5fadc_5fa',['GPT_ADC_COMPARE_MATCH_ADC_A',['../group___g_p_t.html#gga2a838fffcbafd97778bbe3ffbfbf54b1a6f5dba4e42352f1bea9dccd3201021cc',1,'r_gpt.h']]], + ['gpt_5fadc_5fcompare_5fmatch_5fadc_5fb',['GPT_ADC_COMPARE_MATCH_ADC_B',['../group___g_p_t.html#gga2a838fffcbafd97778bbe3ffbfbf54b1abc17524a1e6137946784a36c5d31f27b',1,'r_gpt.h']]], + ['gpt_5fadc_5ftrigger_5fdown_5fcount_5fstart_5fadc_5fa',['GPT_ADC_TRIGGER_DOWN_COUNT_START_ADC_A',['../group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6afd744cee1c5e631263a043ec92af7510',1,'r_gpt.h']]], + ['gpt_5fadc_5ftrigger_5fdown_5fcount_5fstart_5fadc_5fb',['GPT_ADC_TRIGGER_DOWN_COUNT_START_ADC_B',['../group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a0d5922b5221be7b92ce2218c2d8fb50c',1,'r_gpt.h']]], + ['gpt_5fadc_5ftrigger_5fnone',['GPT_ADC_TRIGGER_NONE',['../group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a2818f2fff3a64fd3086a7230dabd7a14',1,'r_gpt.h']]], + ['gpt_5fadc_5ftrigger_5fup_5fcount_5fstart_5fadc_5fa',['GPT_ADC_TRIGGER_UP_COUNT_START_ADC_A',['../group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a2bd0475913403dab220b5e7d6c1acf72',1,'r_gpt.h']]], + ['gpt_5fadc_5ftrigger_5fup_5fcount_5fstart_5fadc_5fb',['GPT_ADC_TRIGGER_UP_COUNT_START_ADC_B',['../group___g_p_t.html#gga6dfe4ddfb53ba52c674039fd20b6c2b6a850b0227fd4a50c51c146d44efe7c838',1,'r_gpt.h']]], + ['gpt_5fbuffer_5fforce_5fpush',['GPT_BUFFER_FORCE_PUSH',['../group___g_p_t.html#gga8abd050b841fe99c9b641a22c69501c5a23c94706bd1a34c9f1b9cfffea30f4cc',1,'r_gpt.h']]], + ['gpt_5fbuffer_5fmode_5fdouble',['GPT_BUFFER_MODE_DOUBLE',['../group___g_p_t.html#gga28d354e417a7a6666e0819387d8e7d8aaa04f95e24c83e681190e0553b33ef108',1,'r_gpt.h']]], + ['gpt_5fbuffer_5fmode_5fsingle',['GPT_BUFFER_MODE_SINGLE',['../group___g_p_t.html#gga28d354e417a7a6666e0819387d8e7d8aa55d1a551ce5c866c2917374f34c9dad1',1,'r_gpt.h']]], + ['gpt_5fcapture_5ffilter_5fclock_5fsource_5fdiv_5f1',['GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_1',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a01e1b277b55e4fafcb0c196099b51b5f',1,'r_gpt.h']]], + ['gpt_5fcapture_5ffilter_5fclock_5fsource_5fdiv_5f16',['GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_16',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a1be3c4269df18da7b54a4b884d792c59',1,'r_gpt.h']]], + ['gpt_5fcapture_5ffilter_5fclock_5fsource_5fdiv_5f4',['GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_4',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5aced01a5e1d1ad4aa3f9235dcc503d655',1,'r_gpt.h']]], + ['gpt_5fcapture_5ffilter_5fclock_5fsource_5fdiv_5f64',['GPT_CAPTURE_FILTER_CLOCK_SOURCE_DIV_64',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a70176680620465fca73aeda240eb441a',1,'r_gpt.h']]], + ['gpt_5fcapture_5ffilter_5fnone',['GPT_CAPTURE_FILTER_NONE',['../group___g_p_t.html#gga4781e2b42b2ef339318ea0a70b250cd5a9b2d993dbb736347b473101f14c1fde6',1,'r_gpt.h']]], + ['gpt_5fgtioc_5fdisable_5flevel_5fhigh',['GPT_GTIOC_DISABLE_LEVEL_HIGH',['../group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506ba2cd233e999331d566eafc32cd29ae9d0',1,'r_gpt.h']]], + ['gpt_5fgtioc_5fdisable_5flevel_5flow',['GPT_GTIOC_DISABLE_LEVEL_LOW',['../group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506babb7208f6cf212d2da6b806bf7f094ca5',1,'r_gpt.h']]], + ['gpt_5fgtioc_5fdisable_5fprohibited',['GPT_GTIOC_DISABLE_PROHIBITED',['../group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506ba1756f7251a83337222f68cc80bc33dfb',1,'r_gpt.h']]], + ['gpt_5fgtioc_5fdisable_5fset_5fhi_5fz',['GPT_GTIOC_DISABLE_SET_HI_Z',['../group___g_p_t.html#gga82d61d33edf38d50f1247d1d55ec506bab3661e69b77c3086864f7872d264be75',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fadc_5fa',['GPT_INTERRUPT_SKIP_ADC_A',['../group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa43c4146c6bbaa9877dc6f1a34b6ccacf',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fadc_5fa_5fand_5fb',['GPT_INTERRUPT_SKIP_ADC_A_AND_B',['../group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa872ee214e5d3998245ac518730f9dde6',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fadc_5fb',['GPT_INTERRUPT_SKIP_ADC_B',['../group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa9bc6d33154685e53dab457675e8161e8',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fadc_5fnone',['GPT_INTERRUPT_SKIP_ADC_NONE',['../group___g_p_t.html#gga9928e374919fa53240edaca52412beaaa9dee91a158ffa61d322cbbdac1ed99bd',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fcount_5f0',['GPT_INTERRUPT_SKIP_COUNT_0',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a6a175bfcdc5102e24b2f10726968262e',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fcount_5f1',['GPT_INTERRUPT_SKIP_COUNT_1',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a0168263b8e97f370e2d999e40e57689a',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fcount_5f2',['GPT_INTERRUPT_SKIP_COUNT_2',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3af6d98ec31f682d5439b5381dcb5305e4',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fcount_5f3',['GPT_INTERRUPT_SKIP_COUNT_3',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a3551066dcaffb033a40d7e329169a345',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fcount_5f4',['GPT_INTERRUPT_SKIP_COUNT_4',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3ab30f5da89de49b73e5d27e376a6702d9',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fcount_5f5',['GPT_INTERRUPT_SKIP_COUNT_5',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a21aec2bf2296497576f4f746e83078e9',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fcount_5f6',['GPT_INTERRUPT_SKIP_COUNT_6',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a46d2a195d3c9ab5c94c949ce243fbc46',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fcount_5f7',['GPT_INTERRUPT_SKIP_COUNT_7',['../group___g_p_t.html#ggac737ceea25e4989a9afbf47969a71ba3a1f87ae8bbf43b55f063cbcdbdc329d18',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fsource_5fcrest',['GPT_INTERRUPT_SKIP_SOURCE_CREST',['../group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a297710907b10befa05faa051f2e32be0',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fsource_5fnone',['GPT_INTERRUPT_SKIP_SOURCE_NONE',['../group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a88ebf7e3d8a17fa38f3a3251e76b76d4',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fsource_5foverflow_5funderflow',['GPT_INTERRUPT_SKIP_SOURCE_OVERFLOW_UNDERFLOW',['../group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a8525d45b1517b92b3b6d6f5b5a301083',1,'r_gpt.h']]], + ['gpt_5finterrupt_5fskip_5fsource_5ftrough',['GPT_INTERRUPT_SKIP_SOURCE_TROUGH',['../group___g_p_t.html#gga88d6114404f61d9ca10684f393deb613a75e3083840b7df9aa2883cded3cd2704',1,'r_gpt.h']]], + ['gpt_5fio_5fpin_5fcrest',['GPT_IO_PIN_CREST',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60acb3ba96929217eb6bb1ec5b2f1ccf9d4',1,'r_gpt.h']]], + ['gpt_5fio_5fpin_5fgtioca',['GPT_IO_PIN_GTIOCA',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60aec2d2c471241869efb57a9a48a5d0eda',1,'r_gpt.h']]], + ['gpt_5fio_5fpin_5fgtioca_5fand_5fgtiocb',['GPT_IO_PIN_GTIOCA_AND_GTIOCB',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60a2b44d1e05050c34cc6e8d9ee4093294d',1,'r_gpt.h']]], + ['gpt_5fio_5fpin_5fgtiocb',['GPT_IO_PIN_GTIOCB',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60aebd74a7b9507fb082ec4cce60ebe9369',1,'r_gpt.h']]], + ['gpt_5fio_5fpin_5fone_5fshot_5fleading_5fedge',['GPT_IO_PIN_ONE_SHOT_LEADING_EDGE',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60ae3e479af00c84f4ccf6e7376b4b44c8d',1,'r_gpt.h']]], + ['gpt_5fio_5fpin_5fone_5fshot_5ftrailing_5fedge',['GPT_IO_PIN_ONE_SHOT_TRAILING_EDGE',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60a59f7576cde98e497d35b98a926732e52',1,'r_gpt.h']]], + ['gpt_5fio_5fpin_5ftrough',['GPT_IO_PIN_TROUGH',['../group___g_p_t.html#ggaabd4a03d16b1b4254cc44c7779f44c60ac68b7e1ef5c48c55960faacd7eb538b9',1,'r_gpt.h']]], + ['gpt_5foutput_5fdisable_5fdead_5ftime_5ferror',['GPT_OUTPUT_DISABLE_DEAD_TIME_ERROR',['../group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea36ab56234fbe2b5bb676c0962382bd96',1,'r_gpt.h']]], + ['gpt_5foutput_5fdisable_5fgtioca_5fgtiocb_5fhigh',['GPT_OUTPUT_DISABLE_GTIOCA_GTIOCB_HIGH',['../group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea236f4400f00369f754b3b88c8efc35a7',1,'r_gpt.h']]], + ['gpt_5foutput_5fdisable_5fgtioca_5fgtiocb_5flow',['GPT_OUTPUT_DISABLE_GTIOCA_GTIOCB_LOW',['../group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adea3004c3e75921fa586fdf0538b7ef5abe',1,'r_gpt.h']]], + ['gpt_5foutput_5fdisable_5fnone',['GPT_OUTPUT_DISABLE_NONE',['../group___g_p_t.html#gga7e57d68f5f5d9757bab01857e8252adeaa35910cb9d2f17f2488b4efdcb1b1fe9',1,'r_gpt.h']]], + ['gpt_5fpin_5flevel_5fhigh',['GPT_PIN_LEVEL_HIGH',['../group___g_p_t.html#gga454c639e426428470ce78115af5d3648adc8ebfd0f787322b884ca5d087b3a6a3',1,'r_gpt.h']]], + ['gpt_5fpin_5flevel_5flow',['GPT_PIN_LEVEL_LOW',['../group___g_p_t.html#gga454c639e426428470ce78115af5d3648a3270f1165e7a86c5b12eecb9501390f4',1,'r_gpt.h']]], + ['gpt_5fpoeg_5flink_5fpoeg0',['GPT_POEG_LINK_POEG0',['../group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943ae96e3845c4ea884a6d610a745a2c343c',1,'r_gpt.h']]], + ['gpt_5fpoeg_5flink_5fpoeg1',['GPT_POEG_LINK_POEG1',['../group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943ae9be405a3d64f348534f67710b37658c',1,'r_gpt.h']]], + ['gpt_5fpoeg_5flink_5fpoeg2',['GPT_POEG_LINK_POEG2',['../group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943a41eefcd7c70c85413a47d006127e112e',1,'r_gpt.h']]], + ['gpt_5fpoeg_5flink_5fpoeg3',['GPT_POEG_LINK_POEG3',['../group___g_p_t.html#ggac13c16f82e0b7cafcdb8eb6892722943a7d98bec67e920f1f0f8a98ac18aaa7b5',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fedge_5ffalling',['GPT_PWM_OUTPUT_DELAY_EDGE_FALLING',['../group___g_p_t.html#gga6a1389fe5c3bef2301d294b88263628eab5c109cf3de710e61c90c3be2d72d9b7',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fedge_5frising',['GPT_PWM_OUTPUT_DELAY_EDGE_RISING',['../group___g_p_t.html#gga6a1389fe5c3bef2301d294b88263628ea51901797e055f1ec3e4dbe96bff03086',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f0_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_0_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ae167098278c50165bf61eec5987d4c53',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f10_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_10_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a196975439836e309f6244a8c0446f047',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f11_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_11_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a0198b5305a0a6853fc433ecf75d44f7f',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f12_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_12_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a1948c35883b0b199c8e6f89a64e53475',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f13_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_13_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a44d17777c6bee08909a70b95f86dc991',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f14_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_14_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a061a1822b878e73e25a3f5cc90ea0eea',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f15_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_15_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a8d827fe46b88273f1a3ecaafe74a6d72',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f16_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_16_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ac0195c74dd5aa183fe0ff13f3d037a47',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f17_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_17_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374abc73975b9e30401bbdbb7c5da506025b',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f18_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_18_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a95c8ef43442706c12c2ff0d94e1fb4da',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f19_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_19_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ac1341d99df3034c6cebc7d6885fc46b8',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f1_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_1_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a61477e753d166ccb25b77eced2e6f325',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f20_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_20_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ad781616613593d77ed681403590659e4',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f21_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_21_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a84dede23a60f4e4b02604d18a7e3c80a',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f22_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_22_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374aa29b8aeb45e93b8086d68f3ce7d60681',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f23_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_23_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374afa386802f529b7a1e6440335f29c0803',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f24_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_24_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a15baac27b4f36979352681a5b5969517',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f25_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_25_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ab000f412ff95dd16ff74748a96a305f8',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f26_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_26_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a03edb9eb3fdef9a37dbc4f44a077db5a',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f27_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_27_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a046f632a922738bb125dd671e28fc7d8',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f28_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_28_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374ac9942874a382d4e1f171bcd74db0ac62',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f29_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_29_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a9a0fa3e6bcc2de24f85ef0b9a1b4d914',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f2_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_2_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a39fed861a0d36f04aa30f3f960e3d2d0',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f30_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_30_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a1aeb241069f6fc33d5b9043bf2870596',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f31_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_31_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a8d0ff19f209e9c72f76c20b23a00c7a2',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f3_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_3_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a1f1aee9567a12196581000383e8d107b',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f4_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_4_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a8b235f3b68210961a821c11efa5bb205',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f5_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_5_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374af0aae115f89d76e4f3f48a0d36cf361b',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f6_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_6_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a5e6950d7178ff3af05f8f4932436b488',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f7_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_7_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a6984fb835233689f0aaebc39c5f9c000',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f8_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_8_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374acdb2fab565c1d8a20bdfb3822f326e81',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5f9_5f32',['GPT_PWM_OUTPUT_DELAY_SETTING_9_32',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374a0287632773cfa466bfa3016d67f14da5',1,'r_gpt.h']]], + ['gpt_5fpwm_5foutput_5fdelay_5fsetting_5fbypass',['GPT_PWM_OUTPUT_DELAY_SETTING_BYPASS',['../group___g_p_t.html#gga749be81f99469c5607a684976d9ae374af894b19d25eebc010ed5fc6ccea2cb29',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt0_5fact0',['GPT_SOURCE_GPT0_ACT0',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad0244ee6154cc4f48355fba3b0ccdd77',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact1',['GPT_SOURCE_GPT0_ACT1',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa9da09ff5cad371696a109a74ee0dc1ce',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact2',['GPT_SOURCE_GPT0_ACT2',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad0fa16e65ad15a166b4fa319fbeb80ad',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact3',['GPT_SOURCE_GPT0_ACT3',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa39e2ab9ce863edbf4bf639ec46db913b',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact4',['GPT_SOURCE_GPT0_ACT4',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa9ffb65a99521fcebfb3db2d31d44502d',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact5',['GPT_SOURCE_GPT0_ACT5',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aac7fdbcdd823ba55b00c647d518693382',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact6',['GPT_SOURCE_GPT0_ACT6',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa245bff8d720e94d00c4e61a5e3a172a7',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt0_5fact7',['GPT_SOURCE_GPT0_ACT7',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aafd603c07d1f03e02659c92e6e8991341',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact0',['GPT_SOURCE_GPT1_ACT0',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa760dcf7503c7ca6b790b398622372599',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact1',['GPT_SOURCE_GPT1_ACT1',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa087fd01a23f8a61c4c04c9655d1fdbbe',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact2',['GPT_SOURCE_GPT1_ACT2',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa68f70eae7db74c62888d368d01dce62',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact3',['GPT_SOURCE_GPT1_ACT3',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa159f75f7237097f61a1b1fcc93a5db0b',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact4',['GPT_SOURCE_GPT1_ACT4',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa8acc300684e40644a6fc935903221a7b',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact5',['GPT_SOURCE_GPT1_ACT5',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aadbf5c5ffebe54747c212d082bdb888f0',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact6',['GPT_SOURCE_GPT1_ACT6',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa38a04d6c6afff6e35d872de818c6592d',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt1_5fact7',['GPT_SOURCE_GPT1_ACT7',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7bc36dd829d3ab2b0748a9f7626388a8',1,'bsp_override.h']]], + ['gpt_5fsource_5fgpt_5fa',['GPT_SOURCE_GPT_A',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa8a81917a5ac9b747df42b174e5ae1ee6',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5fb',['GPT_SOURCE_GPT_B',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7b3ab8f76f2a808dbace3ede3e3faf06',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5fc',['GPT_SOURCE_GPT_C',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaeb63eaa38e2640b48259ddf029c27f54',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5fd',['GPT_SOURCE_GPT_D',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa23869f7d7ae4b5d82dac3d2301959b9',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5fe',['GPT_SOURCE_GPT_E',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaff70b0b5e755028cd77f859abb16fe06',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5ff',['GPT_SOURCE_GPT_F',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa010a99aa6c4e838ac1bce47abcbe38e5',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5fg',['GPT_SOURCE_GPT_G',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa51db9e1734d93f834b00868a9246db95',1,'r_gpt.h']]], + ['gpt_5fsource_5fgpt_5fh',['GPT_SOURCE_GPT_H',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa19df9d1f4ee5e610a74642fc14a212a3',1,'r_gpt.h']]], + ['gpt_5fsource_5fgtetrga_5ffalling',['GPT_SOURCE_GTETRGA_FALLING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab4c7fdaf7cfdd2d3730525965e68c982',1,'GPT_SOURCE_GTETRGA_FALLING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab4c7fdaf7cfdd2d3730525965e68c982',1,'GPT_SOURCE_GTETRGA_FALLING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrga_5frising',['GPT_SOURCE_GTETRGA_RISING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa2ea3ebb2e30c10d0c5c087e198175220',1,'GPT_SOURCE_GTETRGA_RISING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa2ea3ebb2e30c10d0c5c087e198175220',1,'GPT_SOURCE_GTETRGA_RISING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrgb_5ffalling',['GPT_SOURCE_GTETRGB_FALLING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad01f879dc9132b0e05827cc7f4219a81',1,'GPT_SOURCE_GTETRGB_FALLING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad01f879dc9132b0e05827cc7f4219a81',1,'GPT_SOURCE_GTETRGB_FALLING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrgb_5frising',['GPT_SOURCE_GTETRGB_RISING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7af2b58b26be8c9b04ec5c31fdd66bab',1,'GPT_SOURCE_GTETRGB_RISING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa7af2b58b26be8c9b04ec5c31fdd66bab',1,'GPT_SOURCE_GTETRGB_RISING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrgc_5ffalling',['GPT_SOURCE_GTETRGC_FALLING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaceecdd0276a5d1591246c1a2a294ddd3',1,'GPT_SOURCE_GTETRGC_FALLING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaceecdd0276a5d1591246c1a2a294ddd3',1,'GPT_SOURCE_GTETRGC_FALLING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrgc_5frising',['GPT_SOURCE_GTETRGC_RISING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa5daee2c8037bdc04a019192efdd8af09',1,'GPT_SOURCE_GTETRGC_RISING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa5daee2c8037bdc04a019192efdd8af09',1,'GPT_SOURCE_GTETRGC_RISING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrgd_5ffalling',['GPT_SOURCE_GTETRGD_FALLING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad6f7ad7ca2dce583089104f23e27ed2c',1,'GPT_SOURCE_GTETRGD_FALLING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aad6f7ad7ca2dce583089104f23e27ed2c',1,'GPT_SOURCE_GTETRGD_FALLING(): bsp_override.h']]], + ['gpt_5fsource_5fgtetrgd_5frising',['GPT_SOURCE_GTETRGD_RISING',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaaa3e97349fb24f8ba0a431392a92f95e',1,'GPT_SOURCE_GTETRGD_RISING(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaaa3e97349fb24f8ba0a431392a92f95e',1,'GPT_SOURCE_GTETRGD_RISING(): bsp_override.h']]], + ['gpt_5fsource_5fgtioca_5ffalling_5fwhile_5fgtiocb_5fhigh',['GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab844b52adc17cebabf04603fa993f176',1,'GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aab844b52adc17cebabf04603fa993f176',1,'GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_HIGH(): bsp_override.h']]], + ['gpt_5fsource_5fgtioca_5ffalling_5fwhile_5fgtiocb_5flow',['GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa58b8714367e4bb5ec9eb6902c98fdb2e',1,'GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa58b8714367e4bb5ec9eb6902c98fdb2e',1,'GPT_SOURCE_GTIOCA_FALLING_WHILE_GTIOCB_LOW(): bsp_override.h']]], + ['gpt_5fsource_5fgtioca_5frising_5fwhile_5fgtiocb_5fhigh',['GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa03328ca033b8043537b813ecabe1c50',1,'GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaa03328ca033b8043537b813ecabe1c50',1,'GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_HIGH(): bsp_override.h']]], + ['gpt_5fsource_5fgtioca_5frising_5fwhile_5fgtiocb_5flow',['GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa1435f9ba57da19cfc255ea6f64ea7853',1,'GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa1435f9ba57da19cfc255ea6f64ea7853',1,'GPT_SOURCE_GTIOCA_RISING_WHILE_GTIOCB_LOW(): bsp_override.h']]], + ['gpt_5fsource_5fgtiocb_5ffalling_5fwhile_5fgtioca_5fhigh',['GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa037a151c14fea20ef0530f5a995f99e5',1,'GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa037a151c14fea20ef0530f5a995f99e5',1,'GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_HIGH(): bsp_override.h']]], + ['gpt_5fsource_5fgtiocb_5ffalling_5fwhile_5fgtioca_5flow',['GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa3c659f3a22223a65ffdc96524249eec7',1,'GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa3c659f3a22223a65ffdc96524249eec7',1,'GPT_SOURCE_GTIOCB_FALLING_WHILE_GTIOCA_LOW(): bsp_override.h']]], + ['gpt_5fsource_5fgtiocb_5frising_5fwhile_5fgtioca_5fhigh',['GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaf6245811e4016299ba0acf0575389ba6',1,'GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aaf6245811e4016299ba0acf0575389ba6',1,'GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_HIGH(): bsp_override.h']]], + ['gpt_5fsource_5fgtiocb_5frising_5fwhile_5fgtioca_5flow',['GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa4b546eda998208d87d6da5d0ad2f927a',1,'GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aa4b546eda998208d87d6da5d0ad2f927a',1,'GPT_SOURCE_GTIOCB_RISING_WHILE_GTIOCA_LOW(): bsp_override.h']]], + ['gpt_5fsource_5fnone',['GPT_SOURCE_NONE',['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aae376db52803d52361481b2384c3a3bd8',1,'GPT_SOURCE_NONE(): r_gpt.h'],['../group___g_p_t.html#gaa1457c9c1f178fff4dd1558832db196aae376db52803d52361481b2384c3a3bd8',1,'GPT_SOURCE_NONE(): bsp_override.h']]], + ['gtm_5fgiws_5ftype_5fdisabled',['GTM_GIWS_TYPE_DISABLED',['../group___g_t_m.html#ggaae830979c17ceebe80264f0727e8a6b6a352d18878ec62f684b774ce2033e86ea',1,'r_gtm.h']]], + ['gtm_5fgiws_5ftype_5fenabled',['GTM_GIWS_TYPE_ENABLED',['../group___g_t_m.html#ggaae830979c17ceebe80264f0727e8a6b6af322eef944e25834f753b1e1d401684a',1,'r_gtm.h']]], + ['gtm_5ftimer_5fmode_5ffreerun',['GTM_TIMER_MODE_FREERUN',['../group___g_t_m.html#ggab3167c9bca77864d1f1c325314462618a056044e8d54ec9b0d6f7a2c17efea293',1,'r_gtm.h']]], + ['gtm_5ftimer_5fmode_5finterval',['GTM_TIMER_MODE_INTERVAL',['../group___g_t_m.html#ggab3167c9bca77864d1f1c325314462618a84b337d4b35086b476f3eaa2709b4241',1,'r_gtm.h']]] ]; diff --git a/search/enumvalues_7.js b/search/enumvalues_7.js index b8585b8..da5be64 100644 --- a/search/enumvalues_7.js +++ b/search/enumvalues_7.js @@ -1,26 +1,191 @@ var searchData= [ - ['poeg_5fgtetrg_5fnoise_5ffilter_5fdisabled',['POEG_GTETRG_NOISE_FILTER_DISABLED',['../group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba2ade356ffb1863fce2543f4b3440d526',1,'r_poeg_api.h']]], - ['poeg_5fgtetrg_5fnoise_5ffilter_5fpclkb_5fdiv_5f1',['POEG_GTETRG_NOISE_FILTER_PCLKB_DIV_1',['../group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba38f961191fa339ca693af2b31132e9cf',1,'r_poeg_api.h']]], - ['poeg_5fgtetrg_5fnoise_5ffilter_5fpclkb_5fdiv_5f128',['POEG_GTETRG_NOISE_FILTER_PCLKB_DIV_128',['../group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba88875580846aa38277404a473822fa54',1,'r_poeg_api.h']]], - ['poeg_5fgtetrg_5fnoise_5ffilter_5fpclkb_5fdiv_5f32',['POEG_GTETRG_NOISE_FILTER_PCLKB_DIV_32',['../group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba8a559716ca4f1164b677818843e90715',1,'r_poeg_api.h']]], - ['poeg_5fgtetrg_5fnoise_5ffilter_5fpclkb_5fdiv_5f8',['POEG_GTETRG_NOISE_FILTER_PCLKB_DIV_8',['../group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0bab361929a40b68a2e6bbac0b5e9213c5a',1,'r_poeg_api.h']]], - ['poeg_5fgtetrg_5fpolarity_5factive_5fhigh',['POEG_GTETRG_POLARITY_ACTIVE_HIGH',['../group___p_o_e_g___a_p_i.html#ggaab60100277a3b044c01007e6142704b9a6e980721d614a696895f9733ed1c5b0e',1,'r_poeg_api.h']]], - ['poeg_5fgtetrg_5fpolarity_5factive_5flow',['POEG_GTETRG_POLARITY_ACTIVE_LOW',['../group___p_o_e_g___a_p_i.html#ggaab60100277a3b044c01007e6142704b9a71e691b21c906dc492af3fcbbe5b9713',1,'r_poeg_api.h']]], - ['poeg_5fstate_5fgpt_5for_5fcomparator_5fdisable_5frequest',['POEG_STATE_GPT_OR_COMPARATOR_DISABLE_REQUEST',['../group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a580261ea46ea6dc549e4fbfd99a8c31c',1,'r_poeg_api.h']]], - ['poeg_5fstate_5fno_5fdisable_5frequest',['POEG_STATE_NO_DISABLE_REQUEST',['../group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a929680a05ecd96bb24dd053fb6dcc8b5',1,'r_poeg_api.h']]], - ['poeg_5fstate_5foscillation_5fstop_5fdisable_5frequest',['POEG_STATE_OSCILLATION_STOP_DISABLE_REQUEST',['../group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a6c587d6eeb64a3823a355199778e6a18',1,'r_poeg_api.h']]], - ['poeg_5fstate_5fpin_5fdisable_5frequest',['POEG_STATE_PIN_DISABLE_REQUEST',['../group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a965ed912f63e0044d9646693c909135b',1,'r_poeg_api.h']]], - ['poeg_5fstate_5fpin_5fdisable_5frequest_5factive',['POEG_STATE_PIN_DISABLE_REQUEST_ACTIVE',['../group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a1f07ec79529092ff47798e894f315adf',1,'r_poeg_api.h']]], - ['poeg_5fstate_5fsoftware_5fstop_5fdisable_5frequest',['POEG_STATE_SOFTWARE_STOP_DISABLE_REQUEST',['../group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2ad3a9db10800397084958747e9cb2260a',1,'r_poeg_api.h']]], - ['poeg_5ftrigger_5facmphs0',['POEG_TRIGGER_ACMPHS0',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a22c1283422f02a8c1a9c8b3aeeb9f156',1,'r_poeg_api.h']]], - ['poeg_5ftrigger_5facmphs1',['POEG_TRIGGER_ACMPHS1',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a4d37b4728c36a854139814813c4f1591',1,'r_poeg_api.h']]], - ['poeg_5ftrigger_5facmphs2',['POEG_TRIGGER_ACMPHS2',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9aeeaef1204479de8858543006572c56f1',1,'r_poeg_api.h']]], - ['poeg_5ftrigger_5facmphs3',['POEG_TRIGGER_ACMPHS3',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a23e020fd551b49c524d0f5ae343b6df4',1,'r_poeg_api.h']]], - ['poeg_5ftrigger_5facmphs4',['POEG_TRIGGER_ACMPHS4',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a38cfaa9e507532303a483369539418ce',1,'r_poeg_api.h']]], - ['poeg_5ftrigger_5facmphs5',['POEG_TRIGGER_ACMPHS5',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9aa4d56aee202d76e9efdf3bcfc181a12d',1,'r_poeg_api.h']]], - ['poeg_5ftrigger_5fgpt_5foutput_5flevel',['POEG_TRIGGER_GPT_OUTPUT_LEVEL',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9aedd4f2c94c2539026d15543c0f1457cc',1,'r_poeg_api.h']]], - ['poeg_5ftrigger_5foscillation_5fstop',['POEG_TRIGGER_OSCILLATION_STOP',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a4840d0ad9f40a09c2785be816c7e2884',1,'r_poeg_api.h']]], - ['poeg_5ftrigger_5fpin',['POEG_TRIGGER_PIN',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a386ea44b929de5b16b1c459a37f866c3',1,'r_poeg_api.h']]], - ['poeg_5ftrigger_5fsoftware',['POEG_TRIGGER_SOFTWARE',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a5844408e52ce8a8d819d594d4134de0b',1,'r_poeg_api.h']]] + ['i2c_5fmaster_5faddr_5fmode_5f10bit',['I2C_MASTER_ADDR_MODE_10BIT',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#gga6203bcd8d8127b8fd442a2d33d112940a90fd4eafcbdc39a9f466f9342246ac4d',1,'r_i2c_master_api.h']]], + ['i2c_5fmaster_5faddr_5fmode_5f7bit',['I2C_MASTER_ADDR_MODE_7BIT',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#gga6203bcd8d8127b8fd442a2d33d112940ab42fbd73d951db4694494c5acfa19dd8',1,'r_i2c_master_api.h']]], + ['i2c_5fmaster_5fevent_5faborted',['I2C_MASTER_EVENT_ABORTED',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#gga515f0c8b583f8851ce4d6474168769afa22226fd293eb8a7f80e4a80ca8699a4d',1,'r_i2c_master_api.h']]], + ['i2c_5fmaster_5fevent_5frx_5fcomplete',['I2C_MASTER_EVENT_RX_COMPLETE',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#gga515f0c8b583f8851ce4d6474168769afa1b3d50a1a4fbf045307febd9eca1521a',1,'r_i2c_master_api.h']]], + ['i2c_5fmaster_5fevent_5ftx_5fcomplete',['I2C_MASTER_EVENT_TX_COMPLETE',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#gga515f0c8b583f8851ce4d6474168769afa9273437457da4f6369e937d257c0211b',1,'r_i2c_master_api.h']]], + ['i2c_5fmaster_5frate_5ffast',['I2C_MASTER_RATE_FAST',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ggaa30dd03665bdc1134233e8e2b1631f0aae2e38e76a2477e68f2685b403bdeb9a9',1,'r_i2c_master_api.h']]], + ['i2c_5fmaster_5frate_5ffastplus',['I2C_MASTER_RATE_FASTPLUS',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ggaa30dd03665bdc1134233e8e2b1631f0aaee266782cacb431c8623f7276063228b',1,'r_i2c_master_api.h']]], + ['i2c_5fmaster_5frate_5fstandard',['I2C_MASTER_RATE_STANDARD',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ggaa30dd03665bdc1134233e8e2b1631f0aa929a32b2615c7c54efa382f06e901cc0',1,'r_i2c_master_api.h']]], + ['i2c_5fslave_5faddr_5fmode_5f10bit',['I2C_SLAVE_ADDR_MODE_10BIT',['../group___i2_c___s_l_a_v_e___a_p_i.html#gga8e76d805f1f518bf83a84f9df65beb1bafbc283c8ddb82d4704460fc1f9509552',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5faddr_5fmode_5f7bit',['I2C_SLAVE_ADDR_MODE_7BIT',['../group___i2_c___s_l_a_v_e___a_p_i.html#gga8e76d805f1f518bf83a84f9df65beb1ba545d1daef7aa30b4ca41077f570f8c42',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5faborted',['I2C_SLAVE_EVENT_ABORTED',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca0831b0e3a2fa5ee83aa651e6659d7cdf',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5fgeneral_5fcall',['I2C_SLAVE_EVENT_GENERAL_CALL',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca25d53326260faa954236b7af69b94852',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5frx_5fcomplete',['I2C_SLAVE_EVENT_RX_COMPLETE',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8cac04326f0bdc42f852e082d2fc0e7ad65',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5frx_5fmore_5frequest',['I2C_SLAVE_EVENT_RX_MORE_REQUEST',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca833bea612872cc350d74f6edb66e9fad',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5frx_5frequest',['I2C_SLAVE_EVENT_RX_REQUEST',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca35bbc925e0a13c90e6398f8df78a440a',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5ftx_5fcomplete',['I2C_SLAVE_EVENT_TX_COMPLETE',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca1017e760b355f9eef573d163c87893d9',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5ftx_5fmore_5frequest',['I2C_SLAVE_EVENT_TX_MORE_REQUEST',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca6b2e105a581ceb4a55850b03d1d6fe2c',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5fevent_5ftx_5frequest',['I2C_SLAVE_EVENT_TX_REQUEST',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggad8b613f0d4e9d1b9511ca0b6d6ab7e8ca9b0eb2a5a4dfdc44adf3838a6c2901c7',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5frate_5ffast',['I2C_SLAVE_RATE_FAST',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggaa26f7dd0df29bb18d57fa02c7f64588da0a93f42422a9c37f9eee450c8e497ab9',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5frate_5ffastplus',['I2C_SLAVE_RATE_FASTPLUS',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggaa26f7dd0df29bb18d57fa02c7f64588dad673e065daa619986628967645f3e5d8',1,'r_i2c_slave_api.h']]], + ['i2c_5fslave_5frate_5fstandard',['I2C_SLAVE_RATE_STANDARD',['../group___i2_c___s_l_a_v_e___a_p_i.html#ggaa26f7dd0df29bb18d57fa02c7f64588dafbf6971c770f59039c152748515d3da6',1,'r_i2c_slave_api.h']]], + ['i3c_5faddress_5fassignment_5fmode_5fentdaa',['I3C_ADDRESS_ASSIGNMENT_MODE_ENTDAA',['../group___i3_c___a_p_i.html#gga6ebef50cdf52650f03e1b449325779fca747529dae6e854111df4e95e9ba3c91a',1,'r_i3c_api.h']]], + ['i3c_5fb_5factivity_5fstate_5fentas0',['I3C_B_ACTIVITY_STATE_ENTAS0',['../group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aa9641d3bd84b3734620800d3242a048e1',1,'r_i3c_b.h']]], + ['i3c_5fb_5factivity_5fstate_5fentas1',['I3C_B_ACTIVITY_STATE_ENTAS1',['../group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aa313dcdfbf6c9106d85551b78fdc89c69',1,'r_i3c_b.h']]], + ['i3c_5fb_5factivity_5fstate_5fentas2',['I3C_B_ACTIVITY_STATE_ENTAS2',['../group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aa99e55224a2b5aff9072df1a13157b83a',1,'r_i3c_b.h']]], + ['i3c_5fb_5factivity_5fstate_5fentas3',['I3C_B_ACTIVITY_STATE_ENTAS3',['../group___i3_c___b.html#ggab3ffca78d7da057f277bfd8ce2ef2e1aaf6a3aacfe021bf6de8af4de066e3c768',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi2c_5fextbr',['I3C_B_BITRATE_MODE_I2C_EXTBR',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca1ea841b113c1fcc83d7caae57f91c266',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi2c_5fstdbr',['I3C_B_BITRATE_MODE_I2C_STDBR',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3caf4dc5a9d144776169e8a4d7f21a93b84',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi3c_5fsdr0_5fstdbr',['I3C_B_BITRATE_MODE_I3C_SDR0_STDBR',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca30e9d9ea007ba5c667387f1198721ff9',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi3c_5fsdr1_5fextbr',['I3C_B_BITRATE_MODE_I3C_SDR1_EXTBR',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca1a146a0c77e2b1aa523548e8464efbb4',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi3c_5fsdr2_5fstdbr_5fx2',['I3C_B_BITRATE_MODE_I3C_SDR2_STDBR_X2',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca2fc162047690642b1e930dcef91cfb81',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi3c_5fsdr3_5fextbr_5fx2',['I3C_B_BITRATE_MODE_I3C_SDR3_EXTBR_X2',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3caa5bb8590bfb9b8865b9cf64576ceadde',1,'r_i3c_b.h']]], + ['i3c_5fb_5fbitrate_5fmode_5fi3c_5fsdr4_5fextbr_5fx4',['I3C_B_BITRATE_MODE_I3C_SDR4_EXTBR_X4',['../group___i3_c___b.html#ggac8fb0ec859c44282b8323eb13de6ad3ca6643480973dab04e2eba54bc434222d5',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5f10ns',['I3C_B_CLOCK_DATA_TURNAROUND_10NS',['../group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa85d3de0c20f041144cd97c7dce45191b',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5f11ns',['I3C_B_CLOCK_DATA_TURNAROUND_11NS',['../group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caab708aab348be27544293dc3cd81f144b',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5f12ns',['I3C_B_CLOCK_DATA_TURNAROUND_12NS',['../group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa75bf3ed70a8bc727c29bf17241694e7d',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5f8ns',['I3C_B_CLOCK_DATA_TURNAROUND_8NS',['../group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa5d48558b7227efb68f158286ead5a083',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5f9ns',['I3C_B_CLOCK_DATA_TURNAROUND_9NS',['../group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caae7c84e04abd9a4d740b89bd866b05064',1,'r_i3c_b.h']]], + ['i3c_5fb_5fclock_5fdata_5fturnaround_5fextended',['I3C_B_CLOCK_DATA_TURNAROUND_EXTENDED',['../group___i3_c___b.html#gga3289540419912324ce02f19ed6a972caa5afb800692fec260506825c1766d5a77',1,'r_i3c_b.h']]], + ['i3c_5fb_5fdata_5frate_5fsetting_5f2mhz',['I3C_B_DATA_RATE_SETTING_2MHZ',['../group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aae74d814458aa0d31cb6503c0f144a3c6',1,'r_i3c_b.h']]], + ['i3c_5fb_5fdata_5frate_5fsetting_5f4mhz',['I3C_B_DATA_RATE_SETTING_4MHZ',['../group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa63e2f583c75a7225371ba173ce4c7c6a',1,'r_i3c_b.h']]], + ['i3c_5fb_5fdata_5frate_5fsetting_5f6mhz',['I3C_B_DATA_RATE_SETTING_6MHZ',['../group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa2039c607365d844eb591d5a95ae2f932',1,'r_i3c_b.h']]], + ['i3c_5fb_5fdata_5frate_5fsetting_5f8mhz',['I3C_B_DATA_RATE_SETTING_8MHZ',['../group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa9193b4d9e54c0c7c9f1e046c39795ea6',1,'r_i3c_b.h']]], + ['i3c_5fb_5fdata_5frate_5fsetting_5ffscl_5fmax',['I3C_B_DATA_RATE_SETTING_FSCL_MAX',['../group___i3_c___b.html#ggaa100c24dc68792009da85deed2f6387aa5c4464e2154d923a7dbcf46a52486f9f',1,'r_i3c_b.h']]], + ['i3c_5fccc_5fbroadcast_5fdefsvls',['I3C_CCC_BROADCAST_DEFSVLS',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52abbab4c6a19959b0ce8e01d97db4f04e7',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fdisec',['I3C_CCC_BROADCAST_DISEC',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a1f75c76bf09458b99003305112107dc7',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenec',['I3C_CCC_BROADCAST_ENEC',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52acc5d7a5de1e6f3169a5b89f675feca40',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fentas0',['I3C_CCC_BROADCAST_ENTAS0',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a73ea75bd16a55fb64d2cb4788ec9b94e',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fentas1',['I3C_CCC_BROADCAST_ENTAS1',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a9b8ecc4370c7361e6a7a074e03390be0',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fentas2',['I3C_CCC_BROADCAST_ENTAS2',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8a571cf772f5717fa91172048322e739',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fentas3',['I3C_CCC_BROADCAST_ENTAS3',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a9f16a8d29a4f814f9b9627603817df7d',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fentdaa',['I3C_CCC_BROADCAST_ENTDAA',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aaa285307604c96afab5e8477583b25d0',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr0',['I3C_CCC_BROADCAST_ENTHDR0',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a08c0920a5a317949946c27ecd501ec7d',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr1',['I3C_CCC_BROADCAST_ENTHDR1',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a56334065601b234cb7a51495a87dc79f',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr2',['I3C_CCC_BROADCAST_ENTHDR2',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ae6bfede59f2548525cd5440894c556ae',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr3',['I3C_CCC_BROADCAST_ENTHDR3',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ae75b0aea11da4b68f572fe92b464cd96',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr4',['I3C_CCC_BROADCAST_ENTHDR4',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a6cfb1fec206cea9e4004277a49345c45',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr5',['I3C_CCC_BROADCAST_ENTHDR5',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ab56b79fda699c783a225ebcdeef12e17',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr6',['I3C_CCC_BROADCAST_ENTHDR6',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ab14dcd17df603d88deb2c9d2a6112cea',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenthdr7',['I3C_CCC_BROADCAST_ENTHDR7',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8b91860514ba2dab9ad0188c1265c2ce',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fenttm',['I3C_CCC_BROADCAST_ENTTM',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a497ea998fd00601fece9bc4f537c5069',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5frstdaa',['I3C_CCC_BROADCAST_RSTDAA',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52afd8c362bd9653f12f39c6d508dc6b370',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fsetaasa',['I3C_CCC_BROADCAST_SETAASA',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af3d7fa76699eb260edb16b1365a83a80',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fsetmrl',['I3C_CCC_BROADCAST_SETMRL',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ae23ff44b4be0d920a3cd686dbaefa2d4',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fsetmwl',['I3C_CCC_BROADCAST_SETMWL',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aec2e7382aa38f0a4c99bfcfeb609910d',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fbroadcast_5fsetxtime',['I3C_CCC_BROADCAST_SETXTIME',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a1b45b49fd85d7ac9804cdb5d44a3d226',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fdisec',['I3C_CCC_DIRECT_DISEC',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a66d0ccdd8df6e8ee6335d86b56b3fb2c',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fenec',['I3C_CCC_DIRECT_ENEC',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af979c7917ae589e3a9a2617f161f5a04',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fentas0',['I3C_CCC_DIRECT_ENTAS0',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a7b5746e3c19c17b4ca7485b06da59adc',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fentas1',['I3C_CCC_DIRECT_ENTAS1',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af2896458dc1ef08bcb97926be03678e3',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fentas2',['I3C_CCC_DIRECT_ENTAS2',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aa2cd6c5a0491fd3fe6be81521d4dc75e',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fentas3',['I3C_CCC_DIRECT_ENTAS3',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a6f12cb17e3064ffd538da94b08c21b95',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetaccmst',['I3C_CCC_DIRECT_GETACCMST',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a696a95c054c95406323e9cefa14b1b93',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetbcr',['I3C_CCC_DIRECT_GETBCR',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a5fd66e6e9c4409de3d8d7e0161fb8cdd',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetdcr',['I3C_CCC_DIRECT_GETDCR',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a83759ef85966ef3d6098e0eda089ab19',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetmrl',['I3C_CCC_DIRECT_GETMRL',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a343b8fc7c704fa205b530aa9ac1c0c16',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetmwl',['I3C_CCC_DIRECT_GETMWL',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ad329d0765a5a641db81f8292335f9e99',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetmxds',['I3C_CCC_DIRECT_GETMXDS',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a29237e5c8191b16f48c66cf5a484b812',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetpid',['I3C_CCC_DIRECT_GETPID',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af74c0d73517685e8be6ae66f6a07c05c',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetstatus',['I3C_CCC_DIRECT_GETSTATUS',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52af39fa810aa779ab934064116903c409f',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fgetxtime',['I3C_CCC_DIRECT_GETXTIME',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a66ec92cc7e4fd378938a6d623bd44b6b',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5frstdaa',['I3C_CCC_DIRECT_RSTDAA',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8db31c2c1ca8424755d3d59ce623fb08',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fsetdasa',['I3C_CCC_DIRECT_SETDASA',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a196c567a68ade8d03a9863b6fa472eca',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fsetmrl',['I3C_CCC_DIRECT_SETMRL',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a8dd9c7bcb05442fcf0a4751608a4a57f',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fsetmwl',['I3C_CCC_DIRECT_SETMWL',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52ac9fac028a90f4a7afe693f23838e9869',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fsetnewda',['I3C_CCC_DIRECT_SETNEWDA',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52a56c1f2be3412ee3af9678b2bdf95102a',1,'r_i3c_api.h']]], + ['i3c_5fccc_5fdirect_5fsetxtime',['I3C_CCC_DIRECT_SETXTIME',['../group___i3_c___a_p_i.html#ggae0fcac252ef200a5a24cdadfa123dc52aa92f265992e1acc07c57946f1c8d10d2',1,'r_i3c_api.h']]], + ['i3c_5fdevice_5fprotocol_5fi2c',['I3C_DEVICE_PROTOCOL_I2C',['../group___i3_c___a_p_i.html#ggaa7585dee427a1d95926f88dd55ecf305a68c12b56610277eac342a9aa5b5fcb1b',1,'r_i3c_api.h']]], + ['i3c_5fdevice_5fprotocol_5fi3c',['I3C_DEVICE_PROTOCOL_I3C',['../group___i3_c___a_p_i.html#ggaa7585dee427a1d95926f88dd55ecf305a6b32868175ba9fb454f459441be611be',1,'r_i3c_api.h']]], + ['i3c_5fdevice_5ftype_5fmain_5fmaster',['I3C_DEVICE_TYPE_MAIN_MASTER',['../group___i3_c___a_p_i.html#gga890e3f0ba27c4a963dc5901bfbed439ca55632ac0c5b5d0e704a0b7c6b405beba',1,'r_i3c_api.h']]], + ['i3c_5fdevice_5ftype_5fslave',['I3C_DEVICE_TYPE_SLAVE',['../group___i3_c___a_p_i.html#gga890e3f0ba27c4a963dc5901bfbed439caf0202c7dc1948d7191c5005fc9d38b47',1,'r_i3c_api.h']]], + ['i3c_5fevent_5faddress_5fassignment_5fcomplete',['I3C_EVENT_ADDRESS_ASSIGNMENT_COMPLETE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca178a51755c49a2a63cf7b376b2578f2a',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fcommand_5fcomplete',['I3C_EVENT_COMMAND_COMPLETE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca2e5a0467001efaba19b6c2de17d182be',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fentdaa_5faddress_5fphase',['I3C_EVENT_ENTDAA_ADDRESS_PHASE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265cadfebca77a845caf0935ca9647c66eb67',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fhdr_5fexit_5fpattern_5fdetected',['I3C_EVENT_HDR_EXIT_PATTERN_DETECTED',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265caa2355b778aac9f8345b76e1aa6bbcfb5',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fibi_5fread_5fbuffer_5ffull',['I3C_EVENT_IBI_READ_BUFFER_FULL',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265cac5b7d7a4cdbe9197e4c6034008270fa8',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fibi_5fread_5fcomplete',['I3C_EVENT_IBI_READ_COMPLETE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca9af3b8a5b489c8cd30b2f563b4323f5e',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fibi_5fwrite_5fcomplete',['I3C_EVENT_IBI_WRITE_COMPLETE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca49e2d860a954f25bfee5d3f6755d3b54',1,'r_i3c_api.h']]], + ['i3c_5fevent_5finternal_5ferror',['I3C_EVENT_INTERNAL_ERROR',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca2f461eca70d64741f14d4b92445608d3',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fread_5fbuffer_5ffull',['I3C_EVENT_READ_BUFFER_FULL',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca401943802babdddf23fdc32573c220d2',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fread_5fcomplete',['I3C_EVENT_READ_COMPLETE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265cabfc8612eeb0cd4e93456d6844686c135',1,'r_i3c_api.h']]], + ['i3c_5fevent_5ftimeout_5fdetected',['I3C_EVENT_TIMEOUT_DETECTED',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca68834ad7d19b19947bafc01ce50a8e3f',1,'r_i3c_api.h']]], + ['i3c_5fevent_5fwrite_5fcomplete',['I3C_EVENT_WRITE_COMPLETE',['../group___i3_c___a_p_i.html#ggaaeacda02a21254776fcbc47ab1ff265ca9379590b2f8f1411715ba425c6c15a4b',1,'r_i3c_api.h']]], + ['i3c_5fibi_5ftype_5fhot_5fjoin',['I3C_IBI_TYPE_HOT_JOIN',['../group___i3_c___a_p_i.html#gga81ac58196d67e74a0a3702c3e760ede7ae53f3f0966395df095e951839052c6ca',1,'r_i3c_api.h']]], + ['i3c_5fibi_5ftype_5finterrupt',['I3C_IBI_TYPE_INTERRUPT',['../group___i3_c___a_p_i.html#gga81ac58196d67e74a0a3702c3e760ede7a29e66a0c093804099f1680935b8390a7',1,'r_i3c_api.h']]], + ['i3c_5fibi_5ftype_5fmastership_5frequest',['I3C_IBI_TYPE_MASTERSHIP_REQUEST',['../group___i3_c___a_p_i.html#gga81ac58196d67e74a0a3702c3e760ede7a6aec7546d7484201fa4442c4b37b3d8c',1,'r_i3c_api.h']]], + ['iic_5fmaster_5ftimeout_5fmode_5flong',['IIC_MASTER_TIMEOUT_MODE_LONG',['../group___r_i_i_c___m_a_s_t_e_r.html#ggaf8ecd43a76bfa058281bb8b6b3981d3facc441997b6e18766361457d26227b4bd',1,'r_riic_master.h']]], + ['iic_5fmaster_5ftimeout_5fmode_5fshort',['IIC_MASTER_TIMEOUT_MODE_SHORT',['../group___r_i_i_c___m_a_s_t_e_r.html#ggaf8ecd43a76bfa058281bb8b6b3981d3fa4afacd0b267f604d06e2b83891c0e577',1,'r_riic_master.h']]], + ['iic_5fmaster_5ftimeout_5fscl_5flow_5fdisabled',['IIC_MASTER_TIMEOUT_SCL_LOW_DISABLED',['../group___r_i_i_c___m_a_s_t_e_r.html#gga9789e54472d093bd5348f202205d28eca0773c9356e560a84576f1d5498234a09',1,'r_riic_master.h']]], + ['iic_5fmaster_5ftimeout_5fscl_5flow_5fenabled',['IIC_MASTER_TIMEOUT_SCL_LOW_ENABLED',['../group___r_i_i_c___m_a_s_t_e_r.html#gga9789e54472d093bd5348f202205d28eca62238f63df0d06f25af5b158bbfb2169',1,'r_riic_master.h']]], + ['intc_5ftint_5ftrigger_5ffalling',['INTC_TINT_TRIGGER_FALLING',['../group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5edae0b70e173c23a2bb41685eedcca0eaa2',1,'r_intc_tint.h']]], + ['intc_5ftint_5ftrigger_5flevel_5fhigh',['INTC_TINT_TRIGGER_LEVEL_HIGH',['../group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5eda005c2f7b5cbb161fb0bf671952ca60fd',1,'r_intc_tint.h']]], + ['intc_5ftint_5ftrigger_5flevel_5flow',['INTC_TINT_TRIGGER_LEVEL_LOW',['../group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5edab9b8df90dff304ec0c877b337c417188',1,'r_intc_tint.h']]], + ['intc_5ftint_5ftrigger_5frising',['INTC_TINT_TRIGGER_RISING',['../group___i_n_t_c___t_i_n_t.html#gga050a0c4d8019d4576ca781ec7d27c5edab0877acf066a60852cf20f2555246521',1,'r_intc_tint.h']]], + ['ioport_5fcfg_5fdrive_5fb00',['IOPORT_CFG_DRIVE_B00',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4f3c70e0bd324aecc0fed994903b63b0',1,'IOPORT_CFG_DRIVE_B00(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4f3c70e0bd324aecc0fed994903b63b0',1,'IOPORT_CFG_DRIVE_B00(): bsp_override.h']]], + ['ioport_5fcfg_5fdrive_5fb01',['IOPORT_CFG_DRIVE_B01',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af4952693675255ac32a0813a1100e038',1,'IOPORT_CFG_DRIVE_B01(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af4952693675255ac32a0813a1100e038',1,'IOPORT_CFG_DRIVE_B01(): bsp_override.h']]], + ['ioport_5fcfg_5fdrive_5fb10',['IOPORT_CFG_DRIVE_B10',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac882c17c38a2a20dfd0b5e1dd3eaeaf4',1,'IOPORT_CFG_DRIVE_B10(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac882c17c38a2a20dfd0b5e1dd3eaeaf4',1,'IOPORT_CFG_DRIVE_B10(): bsp_override.h']]], + ['ioport_5fcfg_5fdrive_5fb11',['IOPORT_CFG_DRIVE_B11',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a0c5a07dad389d25a576c734a391ec148',1,'IOPORT_CFG_DRIVE_B11(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a0c5a07dad389d25a576c734a391ec148',1,'IOPORT_CFG_DRIVE_B11(): bsp_override.h']]], + ['ioport_5fcfg_5fnod_5fdisable',['IOPORT_CFG_NOD_DISABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a6d26833fed98c1306a3f41882c24c66d',1,'IOPORT_CFG_NOD_DISABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a6d26833fed98c1306a3f41882c24c66d',1,'IOPORT_CFG_NOD_DISABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fnod_5fenable',['IOPORT_CFG_NOD_ENABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8c15fce9c42b94e63e3bd4bacc36df55',1,'IOPORT_CFG_NOD_ENABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8c15fce9c42b94e63e3bd4bacc36df55',1,'IOPORT_CFG_NOD_ENABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5fb00',['IOPORT_CFG_NOISE_FILTER_DIVIDED_B00',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a06cd1c84c6f44e8d7a932962f605e649',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B00(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a06cd1c84c6f44e8d7a932962f605e649',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B00(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5fb01',['IOPORT_CFG_NOISE_FILTER_DIVIDED_B01',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a57ddc25ef284420d97a12a7eca0a0a9b',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B01(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a57ddc25ef284420d97a12a7eca0a0a9b',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B01(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5fb10',['IOPORT_CFG_NOISE_FILTER_DIVIDED_B10',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a189170b389c1f0430c626bd367b47bf7',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B10(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a189170b389c1f0430c626bd367b47bf7',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B10(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fdivided_5fb11',['IOPORT_CFG_NOISE_FILTER_DIVIDED_B11',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4e5c1c29a153030dbaeae8b7d6643d48',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B11(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4e5c1c29a153030dbaeae8b7d6643d48',1,'IOPORT_CFG_NOISE_FILTER_DIVIDED_B11(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f12stage',['IOPORT_CFG_NOISE_FILTER_NUM_12STAGE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af0dbea168d9df29c6a4180e202370f22',1,'IOPORT_CFG_NOISE_FILTER_NUM_12STAGE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574af0dbea168d9df29c6a4180e202370f22',1,'IOPORT_CFG_NOISE_FILTER_NUM_12STAGE(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f16stage',['IOPORT_CFG_NOISE_FILTER_NUM_16STAGE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ace057086d321233881c1f335b6764bc2',1,'IOPORT_CFG_NOISE_FILTER_NUM_16STAGE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ace057086d321233881c1f335b6764bc2',1,'IOPORT_CFG_NOISE_FILTER_NUM_16STAGE(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f4stage',['IOPORT_CFG_NOISE_FILTER_NUM_4STAGE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9a30d0a8eb346f1c1951396c0559ef64',1,'IOPORT_CFG_NOISE_FILTER_NUM_4STAGE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9a30d0a8eb346f1c1951396c0559ef64',1,'IOPORT_CFG_NOISE_FILTER_NUM_4STAGE(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fnum_5f8stage',['IOPORT_CFG_NOISE_FILTER_NUM_8STAGE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab7e5fcab2fd99046fcedb85c34070e2c',1,'IOPORT_CFG_NOISE_FILTER_NUM_8STAGE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab7e5fcab2fd99046fcedb85c34070e2c',1,'IOPORT_CFG_NOISE_FILTER_NUM_8STAGE(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5foff',['IOPORT_CFG_NOISE_FILTER_OFF',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a23f3f6712eefca788aa61da4976fd565',1,'IOPORT_CFG_NOISE_FILTER_OFF(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a23f3f6712eefca788aa61da4976fd565',1,'IOPORT_CFG_NOISE_FILTER_OFF(): bsp_override.h']]], + ['ioport_5fcfg_5fnoise_5ffilter_5fon',['IOPORT_CFG_NOISE_FILTER_ON',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a816a25b17c72bca7e267d47eb7f45dbc',1,'IOPORT_CFG_NOISE_FILTER_ON(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a816a25b17c72bca7e267d47eb7f45dbc',1,'IOPORT_CFG_NOISE_FILTER_ON(): bsp_override.h']]], + ['ioport_5fcfg_5fperipheral_5fpin',['IOPORT_CFG_PERIPHERAL_PIN',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a2066555437a19b9e6e721fb494c8f5c3',1,'IOPORT_CFG_PERIPHERAL_PIN(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a2066555437a19b9e6e721fb494c8f5c3',1,'IOPORT_CFG_PERIPHERAL_PIN(): bsp_override.h']]], + ['ioport_5fcfg_5fport_5fdirection_5fhiz',['IOPORT_CFG_PORT_DIRECTION_HIZ',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a627d716bdff4fe54f3cbf9f2a5b87bf9',1,'IOPORT_CFG_PORT_DIRECTION_HIZ(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a627d716bdff4fe54f3cbf9f2a5b87bf9',1,'IOPORT_CFG_PORT_DIRECTION_HIZ(): bsp_override.h']]], + ['ioport_5fcfg_5fport_5fdirection_5finput',['IOPORT_CFG_PORT_DIRECTION_INPUT',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8d597c18cc5d24abc1b70f2526f2b6cb',1,'IOPORT_CFG_PORT_DIRECTION_INPUT(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a8d597c18cc5d24abc1b70f2526f2b6cb',1,'IOPORT_CFG_PORT_DIRECTION_INPUT(): bsp_override.h']]], + ['ioport_5fcfg_5fport_5fdirection_5foutput',['IOPORT_CFG_PORT_DIRECTION_OUTPUT',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab4d8c12714fab80d21b5b5a636f3cf97',1,'IOPORT_CFG_PORT_DIRECTION_OUTPUT(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ab4d8c12714fab80d21b5b5a636f3cf97',1,'IOPORT_CFG_PORT_DIRECTION_OUTPUT(): bsp_override.h']]], + ['ioport_5fcfg_5fport_5fdirection_5foutput_5finput',['IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3a85f3deec88b01065fd3478ba691860',1,'IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3a85f3deec88b01065fd3478ba691860',1,'IOPORT_CFG_PORT_DIRECTION_OUTPUT_INPUT(): bsp_override.h']]], + ['ioport_5fcfg_5fport_5foutput_5fhigh',['IOPORT_CFG_PORT_OUTPUT_HIGH',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4b93b19150d018ab8ba5ef74e2852499',1,'IOPORT_CFG_PORT_OUTPUT_HIGH(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a4b93b19150d018ab8ba5ef74e2852499',1,'IOPORT_CFG_PORT_OUTPUT_HIGH(): bsp_override.h']]], + ['ioport_5fcfg_5fport_5foutput_5flow',['IOPORT_CFG_PORT_OUTPUT_LOW',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a1913e3b0734a4be613eb2fba8ec888c5',1,'IOPORT_CFG_PORT_OUTPUT_LOW(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a1913e3b0734a4be613eb2fba8ec888c5',1,'IOPORT_CFG_PORT_OUTPUT_LOW(): bsp_override.h']]], + ['ioport_5fcfg_5fpulldown_5fenable',['IOPORT_CFG_PULLDOWN_ENABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a97baa43b94e675e2a4ae7a90dd4a94c6',1,'IOPORT_CFG_PULLDOWN_ENABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a97baa43b94e675e2a4ae7a90dd4a94c6',1,'IOPORT_CFG_PULLDOWN_ENABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fpullup_5fenable',['IOPORT_CFG_PULLUP_ENABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a925954d59fa1101a4784a0d64a64d133',1,'IOPORT_CFG_PULLUP_ENABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a925954d59fa1101a4784a0d64a64d133',1,'IOPORT_CFG_PULLUP_ENABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fpullup_5fpulldown_5fdisable',['IOPORT_CFG_PULLUP_PULLDOWN_DISABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3945f91ccb0beb4f87613fa0d9884965',1,'IOPORT_CFG_PULLUP_PULLDOWN_DISABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3945f91ccb0beb4f87613fa0d9884965',1,'IOPORT_CFG_PULLUP_PULLDOWN_DISABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fschmitt_5fdisable',['IOPORT_CFG_SCHMITT_DISABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574abaa22c1510b13b07ab320d289584266b',1,'IOPORT_CFG_SCHMITT_DISABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574abaa22c1510b13b07ab320d289584266b',1,'IOPORT_CFG_SCHMITT_DISABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fschmitt_5fenable',['IOPORT_CFG_SCHMITT_ENABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a73cdc97104d6368ec1b37ed3ee39ec2d',1,'IOPORT_CFG_SCHMITT_ENABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a73cdc97104d6368ec1b37ed3ee39ec2d',1,'IOPORT_CFG_SCHMITT_ENABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fslew_5frate_5ffast',['IOPORT_CFG_SLEW_RATE_FAST',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574accc921bf1d788c6f10b0225b65144f00',1,'IOPORT_CFG_SLEW_RATE_FAST(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574accc921bf1d788c6f10b0225b65144f00',1,'IOPORT_CFG_SLEW_RATE_FAST(): bsp_override.h']]], + ['ioport_5fcfg_5fslew_5frate_5fslow',['IOPORT_CFG_SLEW_RATE_SLOW',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9c17101eaef4bf0fd2beb880a29317a8',1,'IOPORT_CFG_SLEW_RATE_SLOW(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a9c17101eaef4bf0fd2beb880a29317a8',1,'IOPORT_CFG_SLEW_RATE_SLOW(): bsp_override.h']]], + ['ioport_5fcfg_5fspecial_5fpurpose_5fport_5finput_5fdisable',['IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a968aea46146f3db05b2f9d2e1c29650f',1,'IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a968aea46146f3db05b2f9d2e1c29650f',1,'IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_DISABLE(): bsp_override.h']]], + ['ioport_5fcfg_5fspecial_5fpurpose_5fport_5finput_5fenable',['IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a10595587e1c5984cecf3578625c05040',1,'IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a10595587e1c5984cecf3578625c05040',1,'IOPORT_CFG_SPECIAL_PURPOSE_PORT_INPUT_ENABLE(): bsp_override.h']]], + ['ioport_5fcfg_5ftint_5fdisable',['IOPORT_CFG_TINT_DISABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac78c3e06c1adb07cd707118f321ef94e',1,'IOPORT_CFG_TINT_DISABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574ac78c3e06c1adb07cd707118f321ef94e',1,'IOPORT_CFG_TINT_DISABLE(): bsp_override.h']]], + ['ioport_5fcfg_5ftint_5fenable',['IOPORT_CFG_TINT_ENABLE',['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3691c62fc89eb3e7df1eae9064206c4e',1,'IOPORT_CFG_TINT_ENABLE(): r_ioport.h'],['../group___i_o_p_o_r_t.html#gac617eebcb7c2c1e45fa8e04fc473e574a3691c62fc89eb3e7df1eae9064206c4e',1,'IOPORT_CFG_TINT_ENABLE(): bsp_override.h']]], + ['ioport_5fevent_5fcontrol_5fdisable',['IOPORT_EVENT_CONTROL_DISABLE',['../group___i_o_p_o_r_t.html#gga04dddafb062136b04f33eeea27648397ae908e927047c7e835f63c760732fc8f8',1,'r_ioport.h']]], + ['ioport_5fevent_5fcontrol_5fenable',['IOPORT_EVENT_CONTROL_ENABLE',['../group___i_o_p_o_r_t.html#gga04dddafb062136b04f33eeea27648397a79407e79fac3398eb44cb42f2b1ccbf7',1,'r_ioport.h']]], + ['ioport_5fevent_5fdetection_5fboth_5fegde',['IOPORT_EVENT_DETECTION_BOTH_EGDE',['../group___i_o_p_o_r_t.html#gga4f8bf2319abee01387ae77ca7e85fb0aa1775a3e0a4f16c2142edf5630a2f8fe7',1,'r_ioport.h']]], + ['ioport_5fevent_5fdetection_5ffalling_5fedge',['IOPORT_EVENT_DETECTION_FALLING_EDGE',['../group___i_o_p_o_r_t.html#gga4f8bf2319abee01387ae77ca7e85fb0aac82e04418fb0057bd1338d7b164646aa',1,'r_ioport.h']]], + ['ioport_5fevent_5fdetection_5frising_5fedge',['IOPORT_EVENT_DETECTION_RISING_EDGE',['../group___i_o_p_o_r_t.html#gga4f8bf2319abee01387ae77ca7e85fb0aa9c18854cc01e8280ace1975aa3528619',1,'r_ioport.h']]], + ['ioport_5fevent_5fdirection_5finput',['IOPORT_EVENT_DIRECTION_INPUT',['../group___i_o_p_o_r_t.html#gga06a4ad7ce5b0c573328feccb1e2c54fbaf147669fc3abf3e19614e0f246bcd3a6',1,'r_ioport.h']]], + ['ioport_5fevent_5fdirection_5foutput',['IOPORT_EVENT_DIRECTION_OUTPUT',['../group___i_o_p_o_r_t.html#gga06a4ad7ce5b0c573328feccb1e2c54fba36d0452e98647759803ddc117bbc1b40',1,'r_ioport.h']]], + ['ioport_5fevent_5finitial_5fbuffer_5fvalue_5fhigh',['IOPORT_EVENT_INITIAL_BUFFER_VALUE_HIGH',['../group___i_o_p_o_r_t.html#ggad182b542c7455ca61b70f0eeae3a380da1225085ace99cb7e29b0edf93c641964',1,'r_ioport.h']]], + ['ioport_5fevent_5finitial_5fbuffer_5fvalue_5flow',['IOPORT_EVENT_INITIAL_BUFFER_VALUE_LOW',['../group___i_o_p_o_r_t.html#ggad182b542c7455ca61b70f0eeae3a380daaab0a473693e38386dbfe2790c08f477',1,'r_ioport.h']]], + ['ioport_5fevent_5foutput_5foperation_5fbuffer',['IOPORT_EVENT_OUTPUT_OPERATION_BUFFER',['../group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76ea3d60129c28b149e16e64b72f2eeb972b',1,'r_ioport.h']]], + ['ioport_5fevent_5foutput_5foperation_5fhigh',['IOPORT_EVENT_OUTPUT_OPERATION_HIGH',['../group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76ea62fd4002a13cc7fcb07c3b5814eda983',1,'r_ioport.h']]], + ['ioport_5fevent_5foutput_5foperation_5flow',['IOPORT_EVENT_OUTPUT_OPERATION_LOW',['../group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76eaafb9b741a35dfd3f106e5b4e21cbb194',1,'r_ioport.h']]], + ['ioport_5fevent_5foutput_5foperation_5ftoggle',['IOPORT_EVENT_OUTPUT_OPERATION_TOGGLE',['../group___i_o_p_o_r_t.html#gga6baec76057e6dbc11b3de637ba3ca76eac8f41721c8941ae9416e6d087d4698be',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fnone',['IOPORT_EVENT_PIN_SELECTION_NONE',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a5c3f74d09c25193ae18d86a96486dd0a',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f0',['IOPORT_EVENT_PIN_SELECTION_PIN_0',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a471a5ced9edf3fa45a5e7eb9edcad6e5',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f1',['IOPORT_EVENT_PIN_SELECTION_PIN_1',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3af429ab99f338e50f87fb142003c66fdb',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f2',['IOPORT_EVENT_PIN_SELECTION_PIN_2',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a8fce07d6436c77998f57f299f6f4299f',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f3',['IOPORT_EVENT_PIN_SELECTION_PIN_3',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a1f67b9c95b521733719d929698d5fe70',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f4',['IOPORT_EVENT_PIN_SELECTION_PIN_4',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3a8450fceb594a4085be3eadbc0c37e2f3',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f5',['IOPORT_EVENT_PIN_SELECTION_PIN_5',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3ad0927af63b964b328c23b86ffe02bc4d',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f6',['IOPORT_EVENT_PIN_SELECTION_PIN_6',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3aaacc4bcde3273b270b49be1cc4313e00',1,'r_ioport.h']]], + ['ioport_5fevent_5fpin_5fselection_5fpin_5f7',['IOPORT_EVENT_PIN_SELECTION_PIN_7',['../group___i_o_p_o_r_t.html#ggac5793f51f8a5eb8095c52f9d633f94c3ac9f5095893196090d15c2f7dc08210ad',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode0',['IOPORT_PERIPHERAL_MODE0',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a576f1af4e835f4533486d91cca50d8e9',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode1',['IOPORT_PERIPHERAL_MODE1',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a5a8bf28d2e93cb6235e9a7beea2bfa0e',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode10',['IOPORT_PERIPHERAL_MODE10',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ac5c270420b2ae084817ee66214bbab36',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode11',['IOPORT_PERIPHERAL_MODE11',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a59e432aac051ffe1f8cbf0c34bff6bec',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode12',['IOPORT_PERIPHERAL_MODE12',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8abc5b8302f7e467ec4c95faeb996cc012',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode13',['IOPORT_PERIPHERAL_MODE13',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ad95d5ee06e7b584f16ebe622321a4f1c',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode14',['IOPORT_PERIPHERAL_MODE14',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a0956043c330b44ecbdc66009955514cc',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode15',['IOPORT_PERIPHERAL_MODE15',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a79024706312ec731e9bf51d957ebbe71',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode2',['IOPORT_PERIPHERAL_MODE2',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ad7f23c31f6b56d6cf7b1024b8ea46b03',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode3',['IOPORT_PERIPHERAL_MODE3',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a44817e0b76e81f0353e70fce82f556fa',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode4',['IOPORT_PERIPHERAL_MODE4',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8afb9e29f050c27973d20c0273f88c6207',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode5',['IOPORT_PERIPHERAL_MODE5',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8aa285c9c361e0be95e5e87e788bd8b2de',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode6',['IOPORT_PERIPHERAL_MODE6',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a8f3a71786ad28300fa1a6ac3c13c2785',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode7',['IOPORT_PERIPHERAL_MODE7',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ae66fce3d3c2f6f91af8c75de2a05ae72',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode8',['IOPORT_PERIPHERAL_MODE8',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8ac3fc51d181290cff176e3aea6b74e37d',1,'r_ioport.h']]], + ['ioport_5fperipheral_5fmode9',['IOPORT_PERIPHERAL_MODE9',['../group___i_o_p_o_r_t.html#ggaebbb969fda93422aaf1878d6f4ff8fe8a1279dc7076cbf2067f29fc53d5f40f03',1,'r_ioport.h']]], + ['ioport_5fpfs_5fwrite_5fdisable',['IOPORT_PFS_WRITE_DISABLE',['../group___i_o_p_o_r_t___a_p_i.html#gga25ef8d1291cc073dd48f57b16d91c13eaf67cf250303fd4692c46717f0b7a9412',1,'r_ioport_api.h']]], + ['ioport_5fpfs_5fwrite_5fenable',['IOPORT_PFS_WRITE_ENABLE',['../group___i_o_p_o_r_t___a_p_i.html#gga25ef8d1291cc073dd48f57b16d91c13ea5d94e8d4ba61664a407a0d84538fc298',1,'r_ioport_api.h']]] ]; diff --git a/search/enumvalues_8.js b/search/enumvalues_8.js index 2774cb5..6d8d801 100644 --- a/search/enumvalues_8.js +++ b/search/enumvalues_8.js @@ -1,177 +1,82 @@ var searchData= [ - ['rm_5fhs400x_5fperiodic_5fmeasurement_5ffrequency_5f0p4hz',['RM_HS400X_PERIODIC_MEASUREMENT_FREQUENCY_0P4HZ',['../group___r_m___h_s400_x___a_p_i.html#gga6ab3f5a23c4ddfcbf416027512700d69a065a54759d825775527b92f4c02342ef',1,'rm_hs400x_api.h']]], - ['rm_5fhs400x_5fperiodic_5fmeasurement_5ffrequency_5f1hz',['RM_HS400X_PERIODIC_MEASUREMENT_FREQUENCY_1HZ',['../group___r_m___h_s400_x___a_p_i.html#gga6ab3f5a23c4ddfcbf416027512700d69a71fd810a9f93f8190420c5717a999ba2',1,'rm_hs400x_api.h']]], - ['rm_5fhs400x_5fperiodic_5fmeasurement_5ffrequency_5f2hz',['RM_HS400X_PERIODIC_MEASUREMENT_FREQUENCY_2HZ',['../group___r_m___h_s400_x___a_p_i.html#gga6ab3f5a23c4ddfcbf416027512700d69aaeebce78040edb12cb5737d5708df752',1,'rm_hs400x_api.h']]], - ['rm_5fob1203_5fanalog_5fcancellation_5fdisable',['RM_OB1203_ANALOG_CANCELLATION_DISABLE',['../group___r_m___o_b1203___a_p_i.html#gga4d79e3bac567b22223b4e219a6ee7f34a70dd99f434b1ee1125f38037a11cafd0',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fanalog_5fcancellation_5fenable',['RM_OB1203_ANALOG_CANCELLATION_ENABLE',['../group___r_m___o_b1203___a_p_i.html#gga4d79e3bac567b22223b4e219a6ee7f34ae89ccedc87ea692b1f2413f5ca399d17',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5ffifo_5frollover_5fdisable',['RM_OB1203_FIFO_ROLLOVER_DISABLE',['../group___r_m___o_b1203___a_p_i.html#gga41b9839d52cdeaa01260dc24932d6fe3af28a76cfc08665e307291b6ca78afdb1',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5ffifo_5frollover_5fenable',['RM_OB1203_FIFO_ROLLOVER_ENABLE',['../group___r_m___o_b1203___a_p_i.html#gga41b9839d52cdeaa01260dc24932d6fe3a2673055a75c804ebb0186e805471c07b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fled_5fir_5ffirst_5fred_5fsecond',['RM_OB1203_LED_IR_FIRST_RED_SECOND',['../group___r_m___o_b1203___a_p_i.html#ggab0d74efedf983faf97798d0136376219a8317b7075ea1bdad158c89cdc45fb734',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fled_5fred_5ffirst_5fir_5fsecond',['RM_OB1203_LED_RED_FIRST_IR_SECOND',['../group___r_m___o_b1203___a_p_i.html#ggab0d74efedf983faf97798d0136376219aca0f3a2d81d8872da228cffe49b0298c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5fall',['RM_OB1203_LIGHT_DATA_TYPE_ALL',['../group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337aea40c00eb88fbcade796b8bbdc7276db',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5fblue',['RM_OB1203_LIGHT_DATA_TYPE_BLUE',['../group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337a4bc0b692b6ccf21d3063c0b49f49f26b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5fclear',['RM_OB1203_LIGHT_DATA_TYPE_CLEAR',['../group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337af8b045c45eaa68438347223926bdb6ab',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5fcomp',['RM_OB1203_LIGHT_DATA_TYPE_COMP',['../group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337a9f0e97293c93ac039f14b52d12c5048b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5fgreen',['RM_OB1203_LIGHT_DATA_TYPE_GREEN',['../group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337ae914fde809d1209287046352826f65d5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fdata_5ftype_5fred',['RM_OB1203_LIGHT_DATA_TYPE_RED',['../group___r_m___o_b1203___a_p_i.html#gga0c0d347b4e6af84c4f4148ea68280337a59270ba96c793b7dd2c76e740e3feb29',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fgain_5f1',['RM_OB1203_LIGHT_GAIN_1',['../group___r_m___o_b1203___a_p_i.html#ggaa246c1288f2d4941973249afa6acb4d4ae9174a008bd9ea518eae214629f0a814',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fgain_5f3',['RM_OB1203_LIGHT_GAIN_3',['../group___r_m___o_b1203___a_p_i.html#ggaa246c1288f2d4941973249afa6acb4d4a273cd76b959704750d9c97124d25c176',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fgain_5f6',['RM_OB1203_LIGHT_GAIN_6',['../group___r_m___o_b1203___a_p_i.html#ggaa246c1288f2d4941973249afa6acb4d4a992719f4c8e225f3a66e49139973ee7e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5fsource_5fblue_5fchannel',['RM_OB1203_LIGHT_INTERRUPT_SOURCE_BLUE_CHANNEL',['../group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aae7d921994b49292cf3f320e60f376cc6',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5fsource_5fclear_5fchannel',['RM_OB1203_LIGHT_INTERRUPT_SOURCE_CLEAR_CHANNEL',['../group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aa69050221f0025b3e93235e6e316b6dac',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5fsource_5fgreen_5fchannel',['RM_OB1203_LIGHT_INTERRUPT_SOURCE_GREEN_CHANNEL',['../group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aacc3d165eaaefc115adc56edc587ff98e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5fsource_5fred_5fchannel',['RM_OB1203_LIGHT_INTERRUPT_SOURCE_RED_CHANNEL',['../group___r_m___o_b1203___a_p_i.html#ggad65df49755c15c3a73ea8eb8ca2a9e3aab636540a1252aacc110fce0ee12335ed',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5ftype_5fthreshold',['RM_OB1203_LIGHT_INTERRUPT_TYPE_THRESHOLD',['../group___r_m___o_b1203___a_p_i.html#gga4569d4be03632003ce030d966d4e02c5a44bb84ec3d4ec69d6e51912dc260b5b0',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5finterrupt_5ftype_5fvariation',['RM_OB1203_LIGHT_INTERRUPT_TYPE_VARIATION',['../group___r_m___o_b1203___a_p_i.html#gga4569d4be03632003ce030d966d4e02c5a94909f671cbef1a6b4fc76b6a9a1598d',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f1000ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_1000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a389a930d35eca8c775436eb3dfad1a7a',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f100ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ab73f57786abac264e13cbe66909a7069',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f2000ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_2000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8afb5da77ac9f5be32835578094b09033b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f200ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a3349948bf41a923ecebd7a8534a0a701',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f25ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_25MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a270de4113bcb56fa2d2cd33123c9300a',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f500ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_500MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a6b10517164efcb08e7b9710c005b045b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f13bit_5fperiod_5f50ms',['RM_OB1203_LIGHT_RESOLUTION_13BIT_PERIOD_50MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a4d38fd50dc593444db3f70eefdf6b84c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f1000ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_1000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8adc60ff2b74a6afbf149ae67b3cadc009',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f100ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a7d83d62a70213a3b0404370f69ac413f',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f2000ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_2000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a5e3736a8758ebd60d10fc97bc29f8b2c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f200ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ae00706e94ce2c350f033bb7a392adf1c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f25ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_25MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ad861783af9f2199aad76b67400421157',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f500ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_500MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a40e14ae9c5672a5b0b6f55f9049c80f9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f16bit_5fperiod_5f50ms',['RM_OB1203_LIGHT_RESOLUTION_16BIT_PERIOD_50MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a07b2a0293d949115e99655755e001a55',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f17bit_5fperiod_5f1000ms',['RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_1000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a852688e58f305b400ecec5c8b1b589e2',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f17bit_5fperiod_5f100ms',['RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8aa1355f1bdffe1e10329ae5d0c9c4cad1',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f17bit_5fperiod_5f2000ms',['RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_2000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a1e675d09585221bee21bb6dfc2796e23',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f17bit_5fperiod_5f200ms',['RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ac93631988e2c51f9118424bdcef20324',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f17bit_5fperiod_5f500ms',['RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_500MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a8bd726328882e0eef7f54db95c0ff492',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f17bit_5fperiod_5f50ms',['RM_OB1203_LIGHT_RESOLUTION_17BIT_PERIOD_50MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a0ba6189051af14d24d01dec04819bc7c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f18bit_5fperiod_5f1000ms',['RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_1000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a34c30ba32f9828c2381147e0fc1e695d',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f18bit_5fperiod_5f100ms',['RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a3d39da018f5b030535f8a2dd2b7a0677',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f18bit_5fperiod_5f2000ms',['RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_2000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ac287c0f09270b5e70996b9f9d1abdf5c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f18bit_5fperiod_5f200ms',['RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ac0e9b11ddac87432c2a0aabcee37bb3a',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f18bit_5fperiod_5f500ms',['RM_OB1203_LIGHT_RESOLUTION_18BIT_PERIOD_500MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8ad7fee4ee27a9193608d6ed31d37e35f4',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f19bit_5fperiod_5f1000ms',['RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_1000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8adbb61242372029ffbb7718acb2420e6c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f19bit_5fperiod_5f2000ms',['RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_2000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a5cba3d5f2a792dcc31393207c035db7c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f19bit_5fperiod_5f200ms',['RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8abee592cc7872bb6d1c1b446ee30615cb',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f19bit_5fperiod_5f500ms',['RM_OB1203_LIGHT_RESOLUTION_19BIT_PERIOD_500MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a7018c6b3526b0c4ed0e53355ad1e9015',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f20bit_5fperiod_5f1000ms',['RM_OB1203_LIGHT_RESOLUTION_20BIT_PERIOD_1000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a3be781c8dc11d301cdca9a4f99028488',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f20bit_5fperiod_5f2000ms',['RM_OB1203_LIGHT_RESOLUTION_20BIT_PERIOD_2000MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a96948352456100c3be91fc1936c9a024',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fresolution_5f20bit_5fperiod_5f500ms',['RM_OB1203_LIGHT_RESOLUTION_20BIT_PERIOD_500MS',['../group___r_m___o_b1203___a_p_i.html#ggab55b5fd0ddd115230c80a2ef140cfdc8a09ba08ba7407e574104472a1f885b72e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fsensor_5fmode_5fcs',['RM_OB1203_LIGHT_SENSOR_MODE_CS',['../group___r_m___o_b1203___a_p_i.html#gga35f1462a48dabaf6cf97ece29efe6271a13e03529af4c330ca76c006610e52c77',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5flight_5fsensor_5fmode_5fls',['RM_OB1203_LIGHT_SENSOR_MODE_LS',['../group___r_m___o_b1203___a_p_i.html#gga35f1462a48dabaf6cf97ece29efe6271afd6cb7d5faabb578298d1b16364250ab',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fmoving_5faverage_5fdisable',['RM_OB1203_MOVING_AVERAGE_DISABLE',['../group___r_m___o_b1203___a_p_i.html#gga110a5efe8990e8dd03692e565f452910a95d8846c0785f83c63ab55edbfb06517',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fmoving_5faverage_5fenable',['RM_OB1203_MOVING_AVERAGE_ENABLE',['../group___r_m___o_b1203___a_p_i.html#gga110a5efe8990e8dd03692e565f452910a2fd48413cb54c599b6b162424e4536e1',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5faveraged_5fsamples_5f1',['RM_OB1203_NUM_AVERAGED_SAMPLES_1',['../group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5dae6cb3e25b7ddbdfe77af7449242e3a6b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5faveraged_5fsamples_5f16',['RM_OB1203_NUM_AVERAGED_SAMPLES_16',['../group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5daad4fcc097b074719edd601b0cd5eb5b4',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5faveraged_5fsamples_5f2',['RM_OB1203_NUM_AVERAGED_SAMPLES_2',['../group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5daf57cb92268f8a235f67068e0da7e7273',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5faveraged_5fsamples_5f32',['RM_OB1203_NUM_AVERAGED_SAMPLES_32',['../group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5da645e8b5b2e29f09e8e6cc83f94749e72',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5faveraged_5fsamples_5f4',['RM_OB1203_NUM_AVERAGED_SAMPLES_4',['../group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5da99ae90da914f6505845157ad0ac157c9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5faveraged_5fsamples_5f8',['RM_OB1203_NUM_AVERAGED_SAMPLES_8',['../group___r_m___o_b1203___a_p_i.html#gga7dc5ec94376eb3c1fa0a16b549c56f5da99456feeb64e8edd8ca52377dcea9577',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5fled_5fpulses_5f1',['RM_OB1203_NUM_LED_PULSES_1',['../group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6aadeb97a8a692a60657fc1300364ef070',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5fled_5fpulses_5f16',['RM_OB1203_NUM_LED_PULSES_16',['../group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6a25b3df5b9008788cb20c5933c676c3e5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5fled_5fpulses_5f2',['RM_OB1203_NUM_LED_PULSES_2',['../group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6aad0e1e2f9b9af4113e192d88f78080e5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5fled_5fpulses_5f32',['RM_OB1203_NUM_LED_PULSES_32',['../group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6a24b5ddd343521d9b69e828ce0ba80d07',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5fled_5fpulses_5f4',['RM_OB1203_NUM_LED_PULSES_4',['../group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6a1435e83d507b41bd110a0240bc3950cd',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fnum_5fled_5fpulses_5f8',['RM_OB1203_NUM_LED_PULSES_8',['../group___r_m___o_b1203___a_p_i.html#ggaf6e99ef0d49ecff17a9ffd16f0b096e6adf25dc114d5f5db0eea0e300df89d746',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5foperation_5fmode_5flight',['RM_OB1203_OPERATION_MODE_LIGHT',['../group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847a3cc0b2281221c3d2485687d2a2b21ab7',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5foperation_5fmode_5fppg',['RM_OB1203_OPERATION_MODE_PPG',['../group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847ab4a3955dbe4126e7e2499886e90142f5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5foperation_5fmode_5fproximity',['RM_OB1203_OPERATION_MODE_PROXIMITY',['../group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847adef6dd35d4907586d53e93c43afa5dba',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5foperation_5fmode_5fstandby',['RM_OB1203_OPERATION_MODE_STANDBY',['../group___r_m___o_b1203___a_p_i.html#gga6c3b7fc2670bb119c9eb07acecf69847a9416c58f6cd1559af0cc289ab9d55de9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fpower_5fsave_5fmode_5fdisable',['RM_OB1203_POWER_SAVE_MODE_DISABLE',['../group___r_m___o_b1203___a_p_i.html#gga904954d6bf969490d7fc31d1589fba5ca370e4afaa8a380268c6a143fc0b58bf4',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fpower_5fsave_5fmode_5fenable',['RM_OB1203_POWER_SAVE_MODE_ENABLE',['../group___r_m___o_b1203___a_p_i.html#gga904954d6bf969490d7fc31d1589fba5ca426b1b1d7b3540f1537d7cf1b0cc81b0',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5finterrupt_5ftype_5fdata',['RM_OB1203_PPG_INTERRUPT_TYPE_DATA',['../group___r_m___o_b1203___a_p_i.html#gga8ee7cd0bc32e3c09662791b7e86ffe83a45cc5bde2c5eb934a0b8236782159316',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5finterrupt_5ftype_5ffifo_5fafull',['RM_OB1203_PPG_INTERRUPT_TYPE_FIFO_AFULL',['../group___r_m___o_b1203___a_p_i.html#gga8ee7cd0bc32e3c09662791b7e86ffe83a1c7832e2114aa92813f87393cbcaecb9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fprox_5fgain_5f1',['RM_OB1203_PPG_PROX_GAIN_1',['../group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa1358cf29768b43f045fdef6e4ceb6ba9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fprox_5fgain_5f1p5',['RM_OB1203_PPG_PROX_GAIN_1P5',['../group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa802f734955e3c3bd8e129cdda3ec7cf5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fprox_5fgain_5f2',['RM_OB1203_PPG_PROX_GAIN_2',['../group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa37b9289fd92d4c206f21a06ea2a99ca5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fprox_5fgain_5f4',['RM_OB1203_PPG_PROX_GAIN_4',['../group___r_m___o_b1203___a_p_i.html#gga02afdc6d89538793ab3f1ebd2a84ff6fa9a996f750da299f4113478e15feb8ffa',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fsensor_5fmode_5fppg1',['RM_OB1203_PPG_SENSOR_MODE_PPG1',['../group___r_m___o_b1203___a_p_i.html#gga073572d75f036110608bf2a723c62fc8aff55255344406d1efbf027168091d6ad',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fsensor_5fmode_5fppg2',['RM_OB1203_PPG_SENSOR_MODE_PPG2',['../group___r_m___o_b1203___a_p_i.html#gga073572d75f036110608bf2a723c62fc8a31d155e569e27e89cb1fda28b9c873c2',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f0p3125ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_0P3125MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca68d8096f51f9e4445e056d251c9a88c5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f0p625ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_0P625MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caf6a2a946c6f32d87022c3ed12999923a',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f10ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_10MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca0946b20f3b3e2e60fe86686a44aa9b5e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f1ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_1MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caaab0ee2f34699c866e356cb92136a6f2',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f1p25ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_1P25MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca3887f415348499b2e9097bed0be1757e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f20ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_20MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca6d4aa062b55a71221c98969a3edacf98',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f2p5ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_2P5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca666997496dd31d5f539b709174542cf0',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f130us_5fperiod_5f5ms',['RM_OB1203_PPG_WIDTH_130US_PERIOD_5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca5b17dd61b00150dd65ee8755d832789c',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f0p625ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_0P625MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca70c80a609dd57d364fbfbb9700571eb1',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f10ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_10MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cac99e47f5096ebabcfc6ecbbff2026ebc',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f1ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_1MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca36092df99bf6676f48f583acef13a6c9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f1p25ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_1P25MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cad7defeef4b79039ed7dd5cc5ca252cd0',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f20ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_20MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca6d207ac139414c5f54308f2d10682f54',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f2p5ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_2P5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cacf8b5fec64b36730138fbfb48d3aee83',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f247us_5fperiod_5f5ms',['RM_OB1203_PPG_WIDTH_247US_PERIOD_5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca3a797e28dd9b3a348ed631c88998f13e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f481us_5fperiod_5f10ms',['RM_OB1203_PPG_WIDTH_481US_PERIOD_10MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cab8f1d289625f598c8d1362ed8af6db89',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f481us_5fperiod_5f1ms',['RM_OB1203_PPG_WIDTH_481US_PERIOD_1MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cad14cde0ffc1055d92cb98f7a4b555b85',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f481us_5fperiod_5f1p25ms',['RM_OB1203_PPG_WIDTH_481US_PERIOD_1P25MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca2990f7a26248010de840856c3b147bd1',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f481us_5fperiod_5f20ms',['RM_OB1203_PPG_WIDTH_481US_PERIOD_20MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caaa5604553dc6456ec530a89d90224852',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f481us_5fperiod_5f2p5ms',['RM_OB1203_PPG_WIDTH_481US_PERIOD_2P5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5cae69ecb057dda8bc16d7b3b130a04204e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f481us_5fperiod_5f5ms',['RM_OB1203_PPG_WIDTH_481US_PERIOD_5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca4f219d1661167b8f8609cd3334e24a16',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f949us_5fperiod_5f10ms',['RM_OB1203_PPG_WIDTH_949US_PERIOD_10MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5caed7eef69ad7396ef62719d6592e9cb14',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f949us_5fperiod_5f20ms',['RM_OB1203_PPG_WIDTH_949US_PERIOD_20MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca64de6859dd6deb781311243f8b2390cc',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f949us_5fperiod_5f2p5ms',['RM_OB1203_PPG_WIDTH_949US_PERIOD_2P5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca7c2a342c7238d24959d5cf4367c42724',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fppg_5fwidth_5f949us_5fperiod_5f5ms',['RM_OB1203_PPG_WIDTH_949US_PERIOD_5MS',['../group___r_m___o_b1203___a_p_i.html#gga5bb022affce59b47909e01ae68d01f5ca6a8367a0e9841b97a9ad7a875b2bfe63',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5finterrupt_5ftype_5flogic',['RM_OB1203_PROX_INTERRUPT_TYPE_LOGIC',['../group___r_m___o_b1203___a_p_i.html#ggaac3af213866be23053d28609f06bf748ad3fdbc2dbf5eb8cc81809fb331ebab22',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5finterrupt_5ftype_5fnormal',['RM_OB1203_PROX_INTERRUPT_TYPE_NORMAL',['../group___r_m___o_b1203___a_p_i.html#ggaac3af213866be23053d28609f06bf748a6975eb682b450d57085774e5caa4e0a0',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f100ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a8bd871ff7eeb47240c756ff6abf77e7f',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f12p5ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_12P5MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a27d90b64352a53d0700ba95b3145258e',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f200ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ac869d4e42f75cdbdd19a3d4cb21be2bd',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f25ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_25MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a57210f78a3b7ed1c3dd1ed2f99b226ad',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f3p125ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_3P125MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a314ab60d336fc12e5dfc2ae041443742',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f400ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_400MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ad620deac939b9257fe7b42a362498d08',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f50ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_50MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a467ccc7a5975e9b7c91887e843bb9d55',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f26us_5fperiod_5f6p25ms',['RM_OB1203_PROX_WIDTH_26US_PERIOD_6P25MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a5df8af19ddf7e0e5b29382ca3a862548',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f100ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a13648173ac9d85546b5b8fb1b3c70f0b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f12p5ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_12P5MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ab983d1fc86076b118648a7e61d843471',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f200ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a6ace2781bd3f2b78dc2f1b8f51dbf245',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f25ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_25MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00af7dad8b9ae1d51a750327d06cadc78fc',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f3p125ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_3P125MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ab0c9375ebb576c01ebcbb79ba741ef17',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f400ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_400MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00ae18888686afe4ccbea3605302bb00a56',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f50ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_50MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a25feb157e54b23c386c4c0e397bea4a5',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f42us_5fperiod_5f6p25ms',['RM_OB1203_PROX_WIDTH_42US_PERIOD_6P25MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00acf3e6a52d26718a151e3721641e2f4cd',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f100ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_100MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a174595a8a0904152de8b1b8e4f588b8b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f12p5ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_12P5MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00abb586783c011c8903ce5cae04074b9b7',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f200ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_200MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a2bdfe1777f9dbc98e07788109ec41d53',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f25ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_25MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a94505e88a6eec7889fe4bb9f53cc4884',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f3p125ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_3P125MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a0591b79b06cb0090a0f18f1690bf4ed1',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f400ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_400MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a6e4f60ef6f8a4af28ec19a6bc9f17012',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f50ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_50MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00a22e8a697d05a88e2a1d3c9224bf927c8',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fprox_5fwidth_5f71us_5fperiod_5f6p25ms',['RM_OB1203_PROX_WIDTH_71US_PERIOD_6P25MS',['../group___r_m___o_b1203___a_p_i.html#gga463e63a319a589ebdcf29b0b482b2f00aa164c28eae63fc9296c0430360ff2a8f',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fsleep_5fafter_5finterrupt_5fdisable',['RM_OB1203_SLEEP_AFTER_INTERRUPT_DISABLE',['../group___r_m___o_b1203___a_p_i.html#gga3de882d54ed2555e788d24da2059217dac0f8b2f67cbdedb8ebaec4564742ab0b',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fsleep_5fafter_5finterrupt_5fenable',['RM_OB1203_SLEEP_AFTER_INTERRUPT_ENABLE',['../group___r_m___o_b1203___a_p_i.html#gga3de882d54ed2555e788d24da2059217daf2c7dbd03421e0cecfcdadac5fdde530',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f1024_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_1024_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaad8823af1f00716064d826b5117e90460',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f128_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_128_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaac750fdae8ec2c9149383a0c2bead3be9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f16_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_16_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa6eb8c5d746b48042d340aaccdbc771ac',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f256_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_256_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa01fe6dda3e7b16e13320cdccf3bd57c9',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f32_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_32_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa4df81429a3b09e42a5c447880c69603a',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f512_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_512_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa88eda7368cb0d6f1d3d84628bee163f6',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f64_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_64_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaa08857b0d4fa967c07482a838a0112f81',1,'rm_ob1203_api.h']]], - ['rm_5fob1203_5fvariance_5fthreshold_5f8_5fcounts',['RM_OB1203_VARIANCE_THRESHOLD_8_COUNTS',['../group___r_m___o_b1203___a_p_i.html#ggaeae8a766bbc25cd6e1097c44f03c8deaae5c20999c11a608e9118a20e28a4bca4',1,'rm_ob1203_api.h']]], - ['rm_5fzmod4xxx_5fevent_5fdev_5ferr_5faccess_5fconflict',['RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ggadd54ca8592a0f7cb81913d2250e89060aa55c18d81d34427bcfd2f631e6b2a3a4',1,'rm_zmod4xxx_api.h']]], - ['rm_5fzmod4xxx_5fevent_5fdev_5ferr_5fpower_5fon_5freset',['RM_ZMOD4XXX_EVENT_DEV_ERR_POWER_ON_RESET',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ggadd54ca8592a0f7cb81913d2250e89060a55d1b247ecb594b099b15e120ae6b6a4',1,'rm_zmod4xxx_api.h']]], - ['rspi_5fdelay_5fcount_5f1',['RSPI_DELAY_COUNT_1',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775acf6c2af3c3fd7da891cd64c6ac082ed7',1,'r_rspi.h']]], - ['rspi_5fdelay_5fcount_5f2',['RSPI_DELAY_COUNT_2',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a113a034f110841c3f8fb0c726238c7ea',1,'r_rspi.h']]], - ['rspi_5fdelay_5fcount_5f3',['RSPI_DELAY_COUNT_3',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a278ef944fd2a6485be24ddc58e154e00',1,'r_rspi.h']]], - ['rspi_5fdelay_5fcount_5f4',['RSPI_DELAY_COUNT_4',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a97aed5f01b2294bc3fd7a64645f67a69',1,'r_rspi.h']]], - ['rspi_5fdelay_5fcount_5f5',['RSPI_DELAY_COUNT_5',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a76dd1b81a9f64fcccfd74406bf67d712',1,'r_rspi.h']]], - ['rspi_5fdelay_5fcount_5f6',['RSPI_DELAY_COUNT_6',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a7e2364c6d0f338da53c4eb5e96c6e0fe',1,'r_rspi.h']]], - ['rspi_5fdelay_5fcount_5f7',['RSPI_DELAY_COUNT_7',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775ad0ac09d0f4cbd2e59603fbfaf8195cc8',1,'r_rspi.h']]], - ['rspi_5fdelay_5fcount_5f8',['RSPI_DELAY_COUNT_8',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a5ac1f6ea1b0b10b12ff8e91ec32f9ce9',1,'r_rspi.h']]], - ['rspi_5fmosi_5fidle_5fvalue_5ffixing_5fdisable',['RSPI_MOSI_IDLE_VALUE_FIXING_DISABLE',['../group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a671c871f2ed8584714caf4c0d562da4e',1,'r_rspi.h']]], - ['rspi_5fmosi_5fidle_5fvalue_5ffixing_5fhigh',['RSPI_MOSI_IDLE_VALUE_FIXING_HIGH',['../group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a334fbae8188c8d89825231b5126c432d',1,'r_rspi.h']]], - ['rspi_5fmosi_5fidle_5fvalue_5ffixing_5flow',['RSPI_MOSI_IDLE_VALUE_FIXING_LOW',['../group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a2a42bca9fb7a5f485d0c21c70d83c6bc',1,'r_rspi.h']]], - ['rspi_5frx_5ftrigger_5f1',['RSPI_RX_TRIGGER_1',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa6e2d61b897292531bcf0a4dd66e7ce74',1,'r_rspi.h']]], - ['rspi_5frx_5ftrigger_5f16',['RSPI_RX_TRIGGER_16',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caad83aa485a255af67211f9455b77dcdd5',1,'r_rspi.h']]], - ['rspi_5frx_5ftrigger_5f2',['RSPI_RX_TRIGGER_2',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa0075abb73fd4b57739d3dc2ce736e8f7',1,'r_rspi.h']]], - ['rspi_5frx_5ftrigger_5f24',['RSPI_RX_TRIGGER_24',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caaf2e133c6790fa395dcb1cbe1be0b90b0',1,'r_rspi.h']]], - ['rspi_5frx_5ftrigger_5f32',['RSPI_RX_TRIGGER_32',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caacd53b2a36ff3174ca39d448d47626dbf',1,'r_rspi.h']]], - ['rspi_5frx_5ftrigger_5f4',['RSPI_RX_TRIGGER_4',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa5514129ce285974d810db5f22e2518d1',1,'r_rspi.h']]], - ['rspi_5frx_5ftrigger_5f5',['RSPI_RX_TRIGGER_5',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caaf0c6136c76672af71b2a3a586013f395',1,'r_rspi.h']]], - ['rspi_5frx_5ftrigger_5f8',['RSPI_RX_TRIGGER_8',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa036ea6f9fcfa956509de0e99167c61e7',1,'r_rspi.h']]], - ['rspi_5fsslp_5fhigh',['RSPI_SSLP_HIGH',['../group___r_s_p_i.html#gga2342f44b16c4072b5e9302c4f05b4f94af642f0a0ebd5e10f1e0f749f2a7b6861',1,'r_rspi.h']]], - ['rspi_5fsslp_5flow',['RSPI_SSLP_LOW',['../group___r_s_p_i.html#gga2342f44b16c4072b5e9302c4f05b4f94a33e3a44f24010fc5a3f737b1fc451ed7',1,'r_rspi.h']]], - ['rspi_5ftx_5ftrigger_5f0',['RSPI_TX_TRIGGER_0',['../group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203abacfc42fd65ae0d7a0f60aed988a4fa1e8',1,'r_rspi.h']]], - ['rspi_5ftx_5ftrigger_5f4',['RSPI_TX_TRIGGER_4',['../group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba9d9724c3300e18d9ed1985559558d0bf',1,'r_rspi.h']]], - ['rspi_5ftx_5ftrigger_5f6',['RSPI_TX_TRIGGER_6',['../group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba39b767be6e7e52887162d6a45ef4ec1c',1,'r_rspi.h']]], - ['rspi_5ftx_5ftrigger_5f7',['RSPI_TX_TRIGGER_7',['../group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba922c57b7e36774c42a3eb3efc1e91f75',1,'r_rspi.h']]] + ['mhu_5fsend_5ftype_5fmsg',['MHU_SEND_TYPE_MSG',['../group___m_h_u___a_p_i.html#gga2f810fc1366dd26cd5632846a65407aea72dd7fd31939b7f67d6b212b7b22917d',1,'r_mhu_api.h']]], + ['mhu_5fsend_5ftype_5frsp',['MHU_SEND_TYPE_RSP',['../group___m_h_u___a_p_i.html#gga2f810fc1366dd26cd5632846a65407aea0aed9dce78e782b034f672d0bf54cb2b',1,'r_mhu_api.h']]], + ['mtu3_5fadc_5fcompare_5fmatch_5fadc_5fa',['MTU3_ADC_COMPARE_MATCH_ADC_A',['../group___m_t_u3.html#gga41121fd0c747ec6e3ba93bcc94a73bddacd70ef6a0cddbebba7480ce8b801b531',1,'r_mtu3.h']]], + ['mtu3_5fadc_5fcompare_5fmatch_5fadc_5fb',['MTU3_ADC_COMPARE_MATCH_ADC_B',['../group___m_t_u3.html#gga41121fd0c747ec6e3ba93bcc94a73bddaae499e3fe16a915b8baf1ffe81e2bcaf',1,'r_mtu3.h']]], + ['mtu3_5fadc_5ftgra_5fcompare_5fmatch_5fdisable',['MTU3_ADC_TGRA_COMPARE_MATCH_DISABLE',['../group___m_t_u3.html#gga8d63ef78e4ad3838c53bc5683d6d3485ac41b3f08145ec498d6b5df97de3ea77f',1,'r_mtu3.h']]], + ['mtu3_5fadc_5ftgra_5fcompare_5fmatch_5fenable',['MTU3_ADC_TGRA_COMPARE_MATCH_ENABLE',['../group___m_t_u3.html#gga8d63ef78e4ad3838c53bc5683d6d3485a8e34a4cdb9bc2d8eb2c8228049285a4e',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f1',['MTU3_CLOCK_DIV_1',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bae874f2689e6f1c19c30b0f8f7babc6fc',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f1024_5fch_5f0',['MTU3_CLOCK_DIV_1024_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bae115e32bcce74086cfde1ad2f39c43f7',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f1024_5fch_5f1',['MTU3_CLOCK_DIV_1024_CH_1',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3baefe9f7918f14abdff93d9f72cd599ee7',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f1024_5fch_5f2',['MTU3_CLOCK_DIV_1024_CH_2',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba5d95ba198fd3bb9a1d7a0cf5275fde7e',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f1024_5fch_5f3_5f4_5f6_5f7_5f8',['MTU3_CLOCK_DIV_1024_CH_3_4_6_7_8',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba5700159b9400663b6f120540720cdf16',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f16',['MTU3_CLOCK_DIV_16',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba62f2036a3e569253e5374c1ccc03cc4f',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f2',['MTU3_CLOCK_DIV_2',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba1c2ede9d17050523d97a2e03975cc83e',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f256_5fch_5f0',['MTU3_CLOCK_DIV_256_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba4f65b02bc6d926659bed0d2321f1886d',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f256_5fch_5f1',['MTU3_CLOCK_DIV_256_CH_1',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba407f297d4853f8d0e8364cb3aabab04d',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f256_5fch_5f2',['MTU3_CLOCK_DIV_256_CH_2',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba04bcba9332e29629ee8615298355d069',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f256_5fch_5f3_5f4_5f6_5f7_5f8',['MTU3_CLOCK_DIV_256_CH_3_4_6_7_8',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba2515d8c539b465cdfc9b73429cf38105',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f32',['MTU3_CLOCK_DIV_32',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba1f0f14e4639e2f615f01246baad8009a',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f4',['MTU3_CLOCK_DIV_4',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba66f56ded610017e021f65fe657ebcca8',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f64',['MTU3_CLOCK_DIV_64',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba7f8a017ef1a628f2a12d36747628ac4a',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5f8',['MTU3_CLOCK_DIV_8',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba701bed0b83349f72da65617d5530d640',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclka_5fch_5f0',['MTU3_CLOCK_DIV_MTCLKA_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab04764ab43d2f0270af4f6adc1d51cf2',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclka_5fch_5f1',['MTU3_CLOCK_DIV_MTCLKA_CH_1',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bad2f9be0d2ce8a82284f34f4ec98b94ac',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclka_5fch_5f2',['MTU3_CLOCK_DIV_MTCLKA_CH_2',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab5252c159c1697999ee622504bff5b8a',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclka_5fch_5f3_5f4_5f6_5f7_5f8',['MTU3_CLOCK_DIV_MTCLKA_CH_3_4_6_7_8',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba91170275703436b2b4a331bdc7e7dd28',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkb_5fch_5f0',['MTU3_CLOCK_DIV_MTCLKB_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba5e74e73b437531bd05b4f537cf72231d',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkb_5fch_5f1',['MTU3_CLOCK_DIV_MTCLKB_CH_1',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba3a726180c0e0c51f1057c6d143891abe',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkb_5fch_5f2',['MTU3_CLOCK_DIV_MTCLKB_CH_2',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bacc4faaf9336db93e0be2b783b484d3e0',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkb_5fch_5f3_5f4_5f6_5f7_5f8',['MTU3_CLOCK_DIV_MTCLKB_CH_3_4_6_7_8',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab6865991c1903e6ebb1df94294ca86a1',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkc_5fch_5f0',['MTU3_CLOCK_DIV_MTCLKC_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bab17376b3b14504a2a296b53b1723938b',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkc_5fch_5f2',['MTU3_CLOCK_DIV_MTCLKC_CH_2',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3baea32e309ae09841686be347670eb2dbd',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtclkd_5fch_5f0',['MTU3_CLOCK_DIV_MTCLKD_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba375a978b7228e8bfc55527c82b167669',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5fmtioc1a_5fch_5f0',['MTU3_CLOCK_DIV_MTIOC1A_CH_0',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3bae76246ad6dd264b3ab4a09ce9e95b9ee',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fdiv_5ftcnt_5fch1',['MTU3_CLOCK_DIV_TCNT_CH1',['../group___m_t_u3.html#gga9a9eea39b2f02b777dba8d344dc8eb3ba0e32af4cc5c42c1f7951fd6ef3113a13',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fedge_5fboth',['MTU3_CLOCK_EDGE_BOTH',['../group___m_t_u3.html#ggaef0d6e7f5f99c9142dea22471d60df36a2813c691ad28795563c78ee270fe760a',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fedge_5ffalling',['MTU3_CLOCK_EDGE_FALLING',['../group___m_t_u3.html#ggaef0d6e7f5f99c9142dea22471d60df36ae165912b6df21de4925f8361d8c630d6',1,'r_mtu3.h']]], + ['mtu3_5fclock_5fedge_5frising',['MTU3_CLOCK_EDGE_RISING',['../group___m_t_u3.html#ggaef0d6e7f5f99c9142dea22471d60df36aa4a9bd1f72de2c259e18ed59bc547e8a',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f0',['MTU3_INTERRUPT_SKIP_COUNT_0',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a669abe23b86af53bff6aee3883ced7ca',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f1',['MTU3_INTERRUPT_SKIP_COUNT_1',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692aeb4e2a88b51b85e79a97bd36f1d4603e',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f2',['MTU3_INTERRUPT_SKIP_COUNT_2',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a967dfd369ac7f512c7523058aeb9d958',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f3',['MTU3_INTERRUPT_SKIP_COUNT_3',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692affae7913c291ab2b45f5975dd245d46e',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f4',['MTU3_INTERRUPT_SKIP_COUNT_4',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692aaa21c802db8257f48d08dd7983a06495',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f5',['MTU3_INTERRUPT_SKIP_COUNT_5',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a124774c9b768380d6fdc6355a670cc9e',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f6',['MTU3_INTERRUPT_SKIP_COUNT_6',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a5cd89c876da9eacd4fb26083e54d0d2f',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fcount_5f7',['MTU3_INTERRUPT_SKIP_COUNT_7',['../group___m_t_u3.html#gga3ad32e2d3e0cebb7645750d6c0a8f692a9fa7dcb45ab1dea49a6f54c99fc8a7f7',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fmode_5f1',['MTU3_INTERRUPT_SKIP_MODE_1',['../group___m_t_u3.html#ggaa9f9735282373eede4951043c95c2312af504f08d77384dae2d0be021caa9dc92',1,'r_mtu3.h']]], + ['mtu3_5finterrupt_5fskip_5fmode_5f2',['MTU3_INTERRUPT_SKIP_MODE_2',['../group___m_t_u3.html#ggaa9f9735282373eede4951043c95c2312ad50979af2f5e0cf1d9751f936709991a',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finitial_5fhigh_5fcompare_5fhigh',['MTU3_IO_PIN_LEVEL_INITIAL_HIGH_COMPARE_HIGH',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aad21bb53ae71711700a34ed9f7c8734eb',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finitial_5fhigh_5fcompare_5flow',['MTU3_IO_PIN_LEVEL_INITIAL_HIGH_COMPARE_LOW',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa4163d703b041fe158960693cf722147b',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finitial_5fhigh_5fcompare_5ftoggle',['MTU3_IO_PIN_LEVEL_INITIAL_HIGH_COMPARE_TOGGLE',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa906726a828affd3ced2153afcad5c560',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finitial_5flow_5fcompare_5fhigh',['MTU3_IO_PIN_LEVEL_INITIAL_LOW_COMPARE_HIGH',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa0b50c080f4d0da8eaebb4f8fbdcaffa4',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finitial_5flow_5fcompare_5flow',['MTU3_IO_PIN_LEVEL_INITIAL_LOW_COMPARE_LOW',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa0584b3bcc6c6623299cd6e8364f6dc69',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finitial_5flow_5fcompare_5ftoggle',['MTU3_IO_PIN_LEVEL_INITIAL_LOW_COMPARE_TOGGLE',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa9e8afa21b22ec2819a98e61c008826c6',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finput_5fboth_5fedge',['MTU3_IO_PIN_LEVEL_INPUT_BOTH_EDGE',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aafc54fef0ded76646e75e0c5843ee1e62',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finput_5ffalling_5fedge',['MTU3_IO_PIN_LEVEL_INPUT_FALLING_EDGE',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aaca2a023c3381cefc724b746cb8661b68',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5finput_5frising_5fedge',['MTU3_IO_PIN_LEVEL_INPUT_RISING_EDGE',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aac1d4f7271562936841736a3ade4363ea',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5flevel_5fno_5foutput',['MTU3_IO_PIN_LEVEL_NO_OUTPUT',['../group___m_t_u3.html#gga4a8786cd182fb52e974c1214c2de627aa61e5eccf44d43e36ee349a9ef52ab2fe',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5fmtioca',['MTU3_IO_PIN_MTIOCA',['../group___m_t_u3.html#gga8a74b8a0003ccd7602df801eb863a4ceaf069a55c34b8d9ef53ad57dc014259bc',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5fmtioca_5fand_5fmtiocb',['MTU3_IO_PIN_MTIOCA_AND_MTIOCB',['../group___m_t_u3.html#gga8a74b8a0003ccd7602df801eb863a4cea6579c2e2017ea2d1a473d06d6554d528',1,'r_mtu3.h']]], + ['mtu3_5fio_5fpin_5fmtiocb',['MTU3_IO_PIN_MTIOCB',['../group___m_t_u3.html#gga8a74b8a0003ccd7602df801eb863a4ceacd3adaab6bac29b0b63bd9c6a156c028',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fa_5fenable',['MTU3_NOISE_FILTER_A_ENABLE',['../group___m_t_u3.html#gga6ce62ddb141bf440c0539fc47512c586a99ecb4bf189434da6ef15bf58a73e665',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fb_5fenable',['MTU3_NOISE_FILTER_B_ENABLE',['../group___m_t_u3.html#gga6ce62ddb141bf440c0539fc47512c586ab0e36e5481656608bcca54312a3bbb37',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fclock_5fdiv_5f1',['MTU3_NOISE_FILTER_CLOCK_DIV_1',['../group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a12a3b47c245a69650ec7ef8f4684b203',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fclock_5fdiv_5f32',['MTU3_NOISE_FILTER_CLOCK_DIV_32',['../group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a6f8cd3a55abb64cdb1fe6e9486f16c52',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fclock_5fdiv_5f8',['MTU3_NOISE_FILTER_CLOCK_DIV_8',['../group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a11075c2cee823cec78ea4f68865c1daa',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fclock_5fsource',['MTU3_NOISE_FILTER_CLOCK_SOURCE',['../group___m_t_u3.html#ggac04b193c244956523c5c5f0d70b29af5a2c555ce0b8db45b21c04b431c34d154b',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fdisable',['MTU3_NOISE_FILTER_DISABLE',['../group___m_t_u3.html#gga6ce62ddb141bf440c0539fc47512c586aef6de8ca9710e328d82501ba5ffcbf9d',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fexternal_5fclock_5fdiv_5f1',['MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_1',['../group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485a6e40db422538cdf8cde1c540eb311e66',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fexternal_5fclock_5fdiv_5f2',['MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_2',['../group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485a7881f227aeeede564739112e79c90aca',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fexternal_5fclock_5fdiv_5f32',['MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_32',['../group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485a0d8588e4c98d3691d6201d4de347099f',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fexternal_5fclock_5fdiv_5f8',['MTU3_NOISE_FILTER_EXTERNAL_CLOCK_DIV_8',['../group___m_t_u3.html#gga7e7928e4452d8a06a86269dcabc3a485ad0776747373fdfca5f20758766b97321',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fmtclk_5fa_5fenable',['MTU3_NOISE_FILTER_MTCLK_A_ENABLE',['../group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794a088e0050227671eab214afc2c02d0697',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fmtclk_5fb_5fenable',['MTU3_NOISE_FILTER_MTCLK_B_ENABLE',['../group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794a586cffe1579c0f2244357ce55ee0f21b',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fmtclk_5fc_5fenable',['MTU3_NOISE_FILTER_MTCLK_C_ENABLE',['../group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794af347277f21b1a43eac30d8eb1b895c12',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fmtclk_5fd_5fenable',['MTU3_NOISE_FILTER_MTCLK_D_ENABLE',['../group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794a0f3d2d63639430864b7935de79fc899c',1,'r_mtu3.h']]], + ['mtu3_5fnoise_5ffilter_5fmtclk_5fdisable',['MTU3_NOISE_FILTER_MTCLK_DISABLE',['../group___m_t_u3.html#gga000c28bcf923d3ccd0642c3c5dd9a794afcd6a47a8930c33f033e099d8336a127',1,'r_mtu3.h']]], + ['mtu3_5ftcnt_5fclear_5fdisable',['MTU3_TCNT_CLEAR_DISABLE',['../group___m_t_u3.html#gga031ed640883cba19cb1243d46ea54709aeeef3908d66e9cc2ea6545d98aa52ce0',1,'r_mtu3.h']]], + ['mtu3_5ftcnt_5fclear_5ftgra',['MTU3_TCNT_CLEAR_TGRA',['../group___m_t_u3.html#gga031ed640883cba19cb1243d46ea54709a546e3a5b2cac7873b10c4eb914cb0ba1',1,'r_mtu3.h']]], + ['mtu3_5ftcnt_5fclear_5ftgrb',['MTU3_TCNT_CLEAR_TGRB',['../group___m_t_u3.html#gga031ed640883cba19cb1243d46ea54709a7ab7fef8e1167140423f0d3bd325853b',1,'r_mtu3.h']]] ]; diff --git a/search/enumvalues_9.js b/search/enumvalues_9.js index bacad95..3e762fb 100644 --- a/search/enumvalues_9.js +++ b/search/enumvalues_9.js @@ -1,62 +1,87 @@ var searchData= [ - ['scif_5fuart_5fclock_5fext16x',['SCIF_UART_CLOCK_EXT16X',['../group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613af4a4b829fd6e162e8572760595be226b',1,'r_scif_uart.h']]], - ['scif_5fuart_5fclock_5fext8x',['SCIF_UART_CLOCK_EXT8X',['../group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613a98d63305c87c9cf86a5c6123464723a4',1,'r_scif_uart.h']]], - ['scif_5fuart_5fclock_5fint',['SCIF_UART_CLOCK_INT',['../group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613a51c6cc623adda130f372f24e12128e4b',1,'r_scif_uart.h']]], - ['scif_5fuart_5fclock_5fint_5fwith_5fbaudrate_5foutput',['SCIF_UART_CLOCK_INT_WITH_BAUDRATE_OUTPUT',['../group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613a754b82d17863d7a0ff2b782285e9ca5b',1,'r_scif_uart.h']]], - ['scif_5fuart_5fflow_5fcontrol_5fauto',['SCIF_UART_FLOW_CONTROL_AUTO',['../group___s_c_i_f___u_a_r_t.html#gga023aa56b9ce183733d7933bf750fab6faa7f57854411216312fad5f3d6abb3551',1,'r_scif_uart.h']]], - ['scif_5fuart_5fflow_5fcontrol_5fnone',['SCIF_UART_FLOW_CONTROL_NONE',['../group___s_c_i_f___u_a_r_t.html#gga023aa56b9ce183733d7933bf750fab6fae2a15d92815c84415931688271be5392',1,'r_scif_uart.h']]], - ['scif_5fuart_5fmode_5frs232',['SCIF_UART_MODE_RS232',['../group___s_c_i_f___u_a_r_t.html#gga3a8c9e8d2860a4f467aca2ae92675d4ca1a384dea42c4cc16ceca1923546709c7',1,'r_scif_uart.h']]], - ['scif_5fuart_5fmode_5frs485_5ffd',['SCIF_UART_MODE_RS485_FD',['../group___s_c_i_f___u_a_r_t.html#gga3a8c9e8d2860a4f467aca2ae92675d4ca749fe7aee711151eef0226933d9a5829',1,'r_scif_uart.h']]], - ['scif_5fuart_5fmode_5frs485_5fhd',['SCIF_UART_MODE_RS485_HD',['../group___s_c_i_f___u_a_r_t.html#gga3a8c9e8d2860a4f467aca2ae92675d4caa7ed834f5731674f7b20ea22c79da715',1,'r_scif_uart.h']]], - ['scif_5fuart_5fnoise_5fcancellation_5fdisable',['SCIF_UART_NOISE_CANCELLATION_DISABLE',['../group___s_c_i_f___u_a_r_t.html#gga94601e39cbf40b77e5e4236385b58704ad882f64a494b61ff64e551ad3011a5b7',1,'r_scif_uart.h']]], - ['scif_5fuart_5fnoise_5fcancellation_5fenable',['SCIF_UART_NOISE_CANCELLATION_ENABLE',['../group___s_c_i_f___u_a_r_t.html#gga94601e39cbf40b77e5e4236385b58704ad3f821ad6438fb954b659c75d156d662',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f1',['SCIF_UART_RECEIVE_TRIGGER_1',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a2b6427033846f866ffd254b632b07a9b',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f10',['SCIF_UART_RECEIVE_TRIGGER_10',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ae9eba978351e7f07759323c1e3d2e3e5',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f11',['SCIF_UART_RECEIVE_TRIGGER_11',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a2488b7b352248b736ad778549ba64f3f',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f12',['SCIF_UART_RECEIVE_TRIGGER_12',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a849bd498e980ed5291b9fade846d748f',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f13',['SCIF_UART_RECEIVE_TRIGGER_13',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a020affbf40082d7c07ab5fa8a0fe802e',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f14',['SCIF_UART_RECEIVE_TRIGGER_14',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a19329bac313a91e73554cf5571941a7e',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f15',['SCIF_UART_RECEIVE_TRIGGER_15',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ae66c9b5ef3fc1aac931dd80766cdfe3c',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f2',['SCIF_UART_RECEIVE_TRIGGER_2',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95af3ba973f1fdbd89fb035e63925eba079',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f3',['SCIF_UART_RECEIVE_TRIGGER_3',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ac1a24c19641762ce694726ef9da404e1',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f4',['SCIF_UART_RECEIVE_TRIGGER_4',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a94ab8d8849528a45bd87bc014ff2352a',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f5',['SCIF_UART_RECEIVE_TRIGGER_5',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ac644a3e7327d3998cf0e300c6fa38b4e',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f6',['SCIF_UART_RECEIVE_TRIGGER_6',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ae81d37bcbe15cf0adbee5556a96ce7f3',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f7',['SCIF_UART_RECEIVE_TRIGGER_7',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a6532d2cfae53c35e93bf72db2e17e954',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f8',['SCIF_UART_RECEIVE_TRIGGER_8',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a479ec5b31c57f9fae8c4d6a7aac71b50',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5f9',['SCIF_UART_RECEIVE_TRIGGER_9',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a8ecbc830c93a7b39eef1409cf89bc98a',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5fhalf',['SCIF_UART_RECEIVE_TRIGGER_HALF',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95adf5efc0954d8d3ee2e132940e8010e16',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5fmax',['SCIF_UART_RECEIVE_TRIGGER_MAX',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a8c61ea1a1f8a53bd2ef81a135ce6fb65',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5fone',['SCIF_UART_RECEIVE_TRIGGER_ONE',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ad8eb49bdf41e9867d8a6d0986b9343a6',1,'r_scif_uart.h']]], - ['scif_5fuart_5freceive_5ftrigger_5fquarter',['SCIF_UART_RECEIVE_TRIGGER_QUARTER',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ab85d375110c92593e11c02c28acf75a0',1,'r_scif_uart.h']]], - ['scif_5fuart_5frts_5ftrigger_5f1',['SCIF_UART_RTS_TRIGGER_1',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a9b2d1ca1de149e8561561ac69573e3de',1,'r_scif_uart.h']]], - ['scif_5fuart_5frts_5ftrigger_5f10',['SCIF_UART_RTS_TRIGGER_10',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a94a36bf05c3529a4eb80aa4386fd1bf3',1,'r_scif_uart.h']]], - ['scif_5fuart_5frts_5ftrigger_5f12',['SCIF_UART_RTS_TRIGGER_12',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ad0db387e28a0ed3d63add574f599e026',1,'r_scif_uart.h']]], - ['scif_5fuart_5frts_5ftrigger_5f14',['SCIF_UART_RTS_TRIGGER_14',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89afd80607e5a941b03255635196a53a004',1,'r_scif_uart.h']]], - ['scif_5fuart_5frts_5ftrigger_5f15',['SCIF_UART_RTS_TRIGGER_15',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a72f3e438f603dd31866ee7002856934a',1,'r_scif_uart.h']]], - ['scif_5fuart_5frts_5ftrigger_5f4',['SCIF_UART_RTS_TRIGGER_4',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ab8da90640e88e64a86e25159a0b8683e',1,'r_scif_uart.h']]], - ['scif_5fuart_5frts_5ftrigger_5f6',['SCIF_UART_RTS_TRIGGER_6',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ad36001398f868aef10e35c4992f37afb',1,'r_scif_uart.h']]], - ['scif_5fuart_5frts_5ftrigger_5f8',['SCIF_UART_RTS_TRIGGER_8',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89abad73882425c2d7ce6934938f6dcaebc',1,'r_scif_uart.h']]], - ['spi_5fbit_5forder_5flsb_5ffirst',['SPI_BIT_ORDER_LSB_FIRST',['../group___s_p_i___a_p_i.html#gga90f5b39d4872c0c09255af5dcea6cd3ea8b9afce8db1ee080e7f9d65aa1aaeae5',1,'r_spi_api.h']]], - ['spi_5fbit_5forder_5fmsb_5ffirst',['SPI_BIT_ORDER_MSB_FIRST',['../group___s_p_i___a_p_i.html#gga90f5b39d4872c0c09255af5dcea6cd3ea2f62df128ff20f3a9632c7f72732491a',1,'r_spi_api.h']]], - ['spi_5fbit_5fwidth_5f16_5fbits',['SPI_BIT_WIDTH_16_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda62f8d41fec9f532ac41463037534e582',1,'r_spi_api.h']]], - ['spi_5fbit_5fwidth_5f32_5fbits',['SPI_BIT_WIDTH_32_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf69633d9ed10c0d07cea1ded1b562aed',1,'r_spi_api.h']]], - ['spi_5fbit_5fwidth_5f8_5fbits',['SPI_BIT_WIDTH_8_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdad6fa8af050db98465c43fd25fb8e8090',1,'r_spi_api.h']]], - ['spi_5fclk_5fphase_5fedge_5feven',['SPI_CLK_PHASE_EDGE_EVEN',['../group___s_p_i___a_p_i.html#ggae514c0ed7b5a86723aa9451d623d35aba6a695897644ab53c608247fd67209e82',1,'r_spi_api.h']]], - ['spi_5fclk_5fphase_5fedge_5fodd',['SPI_CLK_PHASE_EDGE_ODD',['../group___s_p_i___a_p_i.html#ggae514c0ed7b5a86723aa9451d623d35aba52bdac64004112bc083e6dbcc4f5d9b7',1,'r_spi_api.h']]], - ['spi_5fclk_5fpolarity_5fhigh',['SPI_CLK_POLARITY_HIGH',['../group___s_p_i___a_p_i.html#gga28c820896d3da6e8173ed07f7ca89cb0acb77929e5ac9f1f0fe2adf3aece45958',1,'r_spi_api.h']]], - ['spi_5fclk_5fpolarity_5flow',['SPI_CLK_POLARITY_LOW',['../group___s_p_i___a_p_i.html#gga28c820896d3da6e8173ed07f7ca89cb0a1901f5e3018e5ab36c30d721854d65a2',1,'r_spi_api.h']]], - ['spi_5fevent_5ferr_5fframing',['SPI_EVENT_ERR_FRAMING',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54caeaac307aea3da421c6cc960b146899ce',1,'r_spi_api.h']]], - ['spi_5fevent_5ferr_5fmode_5ffault',['SPI_EVENT_ERR_MODE_FAULT',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca65e04eb27a5e00a37e1cf2b9a3ed4d32',1,'r_spi_api.h']]], - ['spi_5fevent_5ferr_5fmode_5funderrun',['SPI_EVENT_ERR_MODE_UNDERRUN',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca0176b7b836076f7cb6eb900e29a61d0b',1,'r_spi_api.h']]], - ['spi_5fevent_5ferr_5foverrun',['SPI_EVENT_ERR_OVERRUN',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca055c216253298b6af279e64eb542b689',1,'r_spi_api.h']]], - ['spi_5fevent_5ferr_5fparity',['SPI_EVENT_ERR_PARITY',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca1a718a357bce9eb804a3b3a350ca894c',1,'r_spi_api.h']]], - ['spi_5fevent_5ferr_5fread_5foverflow',['SPI_EVENT_ERR_READ_OVERFLOW',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca71a3d6fe1922346e01054bb11993b26a',1,'r_spi_api.h']]], - ['spi_5fevent_5ftransfer_5faborted',['SPI_EVENT_TRANSFER_ABORTED',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca02af67a21905e378eb464ba80117142c',1,'r_spi_api.h']]], - ['spi_5fevent_5ftransfer_5fcomplete',['SPI_EVENT_TRANSFER_COMPLETE',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca2b456074a7304b0ac4be1cbe69d6dad1',1,'r_spi_api.h']]], - ['spi_5fmode_5ffault_5ferror_5fdisable',['SPI_MODE_FAULT_ERROR_DISABLE',['../group___s_p_i___a_p_i.html#ggad24d01aba46c370e11e3f2df7d9b6776ada1c119cee344e3a48f8ff33350d707b',1,'r_spi_api.h']]], - ['spi_5fmode_5ffault_5ferror_5fenable',['SPI_MODE_FAULT_ERROR_ENABLE',['../group___s_p_i___a_p_i.html#ggad24d01aba46c370e11e3f2df7d9b6776a7966b9fbe2b8517dc1dbec4aeb783f7c',1,'r_spi_api.h']]], - ['spi_5fmode_5fmaster',['SPI_MODE_MASTER',['../group___s_p_i___a_p_i.html#ggac4b206a51636d91c5cffcbcee458c3cbae68a8adf6e5b67a7bdbe9526b15dae99',1,'r_spi_api.h']]], - ['spi_5fmode_5fslave',['SPI_MODE_SLAVE',['../group___s_p_i___a_p_i.html#ggac4b206a51636d91c5cffcbcee458c3cbad1131ed33ad43ab3f667070b04454439',1,'r_spi_api.h']]] + ['pdm_5fclock_5fdiv_5f10',['PDM_CLOCK_DIV_10',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71addce245567626c37c31fc74845fbeb31',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f12',['PDM_CLOCK_DIV_12',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a045a957540a61e6d165357e660e3fe83',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f14',['PDM_CLOCK_DIV_14',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71af4822ad9efdcb34b3b627492c8d67791',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f16',['PDM_CLOCK_DIV_16',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71aaddbe76456afe39d63fea05b73a91b95',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f18',['PDM_CLOCK_DIV_18',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a2c5cb536d231f56d0ed006ca29cf0737',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f2',['PDM_CLOCK_DIV_2',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a54c68c8a370a4d7e1a1a1e8c1f88bbf7',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f20',['PDM_CLOCK_DIV_20',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71acec983b4a1f0f8048e33198a113c34fd',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f22',['PDM_CLOCK_DIV_22',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a6bc7098eb41738d9d95b47732e83f5a1',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f24',['PDM_CLOCK_DIV_24',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a75233dc7e955467e9ec57d112b8a798f',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f26',['PDM_CLOCK_DIV_26',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71ac173036e4d0c9187705b36bc9ccbe115',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f28',['PDM_CLOCK_DIV_28',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a3ec822a9c16b6773b5fee81bf37514b7',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f30',['PDM_CLOCK_DIV_30',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a8bb7b28dcfb9f3f5860897e85becbeda',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f32',['PDM_CLOCK_DIV_32',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71a10032f0bd87fc702ba0d0ef6db2f2371',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f4',['PDM_CLOCK_DIV_4',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71ac892e5ea2e5d37f3d7b04a8bf21a0fb1',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f6',['PDM_CLOCK_DIV_6',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71aa9152eb960ed85321d4deb69838ed45f',1,'r_pdm.h']]], + ['pdm_5fclock_5fdiv_5f8',['PDM_CLOCK_DIV_8',['../group___p_d_m.html#gga2666e0193f3d484391172283f9532c71acae0bbc7c1abd4d0f572c4c468f3c738',1,'r_pdm.h']]], + ['pdm_5fcompensation_5ffilter_5fright_5fshift_5f0',['PDM_COMPENSATION_FILTER_RIGHT_SHIFT_0',['../group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca2d2217dde029d6b5477c1ebdb623459c',1,'r_pdm.h']]], + ['pdm_5fcompensation_5ffilter_5fright_5fshift_5f1',['PDM_COMPENSATION_FILTER_RIGHT_SHIFT_1',['../group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca26667abb7f4f7364d38993e2ac0329b9',1,'r_pdm.h']]], + ['pdm_5fcompensation_5ffilter_5fright_5fshift_5f2',['PDM_COMPENSATION_FILTER_RIGHT_SHIFT_2',['../group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca2487e27fddb6866e2b540f4bf270b83a',1,'r_pdm.h']]], + ['pdm_5fcompensation_5ffilter_5fright_5fshift_5f3',['PDM_COMPENSATION_FILTER_RIGHT_SHIFT_3',['../group___p_d_m.html#ggad6b9c09e74442b86d88d1718f30844bca61655ec7848f1bfc1604dd0d266a0b3b',1,'r_pdm.h']]], + ['pdm_5ferror_5fbuffer_5foverwrite',['PDM_ERROR_BUFFER_OVERWRITE',['../group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2da61c56fc9d6d836096a7c7e4b10c0ee17',1,'r_pdm_api.h']]], + ['pdm_5ferror_5fovervoltage_5flower',['PDM_ERROR_OVERVOLTAGE_LOWER',['../group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2da70bb4c740eec0bdd92cf20e63e540ba7',1,'r_pdm_api.h']]], + ['pdm_5ferror_5fovervoltage_5fupper',['PDM_ERROR_OVERVOLTAGE_UPPER',['../group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2dab00a11e564c13def3c78e520e09573ab',1,'r_pdm_api.h']]], + ['pdm_5ferror_5fshort_5fcircuit',['PDM_ERROR_SHORT_CIRCUIT',['../group___p_d_m___a_p_i.html#ggaf682776db13b51a982b047a8eb5fef2da0507dc19cc300d66e07d4b452a44c9a9',1,'r_pdm_api.h']]], + ['pdm_5fevent_5fdata',['PDM_EVENT_DATA',['../group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946ac3719cfdf7fc1e91172888da1ab6f511',1,'r_pdm_api.h']]], + ['pdm_5fevent_5ferror',['PDM_EVENT_ERROR',['../group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946a6ab9b149f9673d692a581c5211f13134',1,'r_pdm_api.h']]], + ['pdm_5fevent_5fidle',['PDM_EVENT_IDLE',['../group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946aa4e2f360c85f3e28c57bfa71b932a57d',1,'r_pdm_api.h']]], + ['pdm_5fevent_5fsound_5fdetection',['PDM_EVENT_SOUND_DETECTION',['../group___p_d_m___a_p_i.html#ggafb514c195258d2f14c8e18e3778ad946a3cf03b37b166de31e8e8761161bf7e44',1,'r_pdm_api.h']]], + ['pdm_5fhpf_5fright_5fshift_5f0',['PDM_HPF_RIGHT_SHIFT_0',['../group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a3387643d4f8b7d4407785a063f7209a6',1,'r_pdm.h']]], + ['pdm_5fhpf_5fright_5fshift_5f1',['PDM_HPF_RIGHT_SHIFT_1',['../group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a05b61524d21f269e1d6e80495d18a54d',1,'r_pdm.h']]], + ['pdm_5fhpf_5fright_5fshift_5f2',['PDM_HPF_RIGHT_SHIFT_2',['../group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a10de74577af853e342fb6fa74cf5d701',1,'r_pdm.h']]], + ['pdm_5fhpf_5fright_5fshift_5f3',['PDM_HPF_RIGHT_SHIFT_3',['../group___p_d_m.html#ggaf2a94b0febed706bdad5526b11cb50c1a35ce50e6bef8cda1c1be3e751d8dd683',1,'r_pdm.h']]], + ['pdm_5finput_5fdata_5fedge_5ffall',['PDM_INPUT_DATA_EDGE_FALL',['../group___p_d_m___a_p_i.html#gga471ab0afd7d0f709e50ece23087b1759ad4f961a1e93d174697084cd288c0e57f',1,'r_pdm_api.h']]], + ['pdm_5finput_5fdata_5fedge_5frise',['PDM_INPUT_DATA_EDGE_RISE',['../group___p_d_m___a_p_i.html#gga471ab0afd7d0f709e50ece23087b1759ab7bc06eef0965cb223d7da74d5164afb',1,'r_pdm_api.h']]], + ['pdm_5finterrupt_5fthreshold_5f1',['PDM_INTERRUPT_THRESHOLD_1',['../group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8a1b7068a93d97db9482f25f1c5bb89ab4',1,'r_pdm.h']]], + ['pdm_5finterrupt_5fthreshold_5f16',['PDM_INTERRUPT_THRESHOLD_16',['../group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8addb15f7e3c60581f90c436ab9eb3055d',1,'r_pdm.h']]], + ['pdm_5finterrupt_5fthreshold_5f2',['PDM_INTERRUPT_THRESHOLD_2',['../group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8a7ae437c0a00a82fb0d1155f2ae28e300',1,'r_pdm.h']]], + ['pdm_5finterrupt_5fthreshold_5f4',['PDM_INTERRUPT_THRESHOLD_4',['../group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8a5042bd3cf5897af4199e6834fde1e341',1,'r_pdm.h']]], + ['pdm_5finterrupt_5fthreshold_5f8',['PDM_INTERRUPT_THRESHOLD_8',['../group___p_d_m.html#ggaa14fe788b2c7ab49898fb7030c7fbee8addbf54abea07e335a42267a1172e44bd',1,'r_pdm.h']]], + ['pdm_5flpf_5fright_5fshift_5f0',['PDM_LPF_RIGHT_SHIFT_0',['../group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0bab5b68c6092d9115647ae1cb92ca47118',1,'r_pdm.h']]], + ['pdm_5flpf_5fright_5fshift_5f1',['PDM_LPF_RIGHT_SHIFT_1',['../group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0ba9898049fbff6af21ffbf9be9db8df58c',1,'r_pdm.h']]], + ['pdm_5flpf_5fright_5fshift_5f2',['PDM_LPF_RIGHT_SHIFT_2',['../group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0bae87ed3ba2651f1e731c14d7a9628c598',1,'r_pdm.h']]], + ['pdm_5flpf_5fright_5fshift_5f3',['PDM_LPF_RIGHT_SHIFT_3',['../group___p_d_m.html#ggacaad67afced89e9de93c82536d4dea0baaf0fe07eca85a9fe3d708e60c2178eea',1,'r_pdm.h']]], + ['pdm_5fmoving_5faverage_5fmode_5f1_5forder',['PDM_MOVING_AVERAGE_MODE_1_ORDER',['../group___p_d_m.html#gga667e7ccab805f0976adc5015ecc35ecba6c440f66cd7e5625ca174c6d9c32bbd7',1,'r_pdm.h']]], + ['pdm_5fmoving_5faverage_5fmode_5f2_5forder',['PDM_MOVING_AVERAGE_MODE_2_ORDER',['../group___p_d_m.html#gga667e7ccab805f0976adc5015ecc35ecba224f34fe0e01101dddc123bb84485c65',1,'r_pdm.h']]], + ['pdm_5fmoving_5faverage_5fmode_5f4_5forder',['PDM_MOVING_AVERAGE_MODE_4_ORDER',['../group___p_d_m.html#gga667e7ccab805f0976adc5015ecc35ecba23061ce2fa64f6353fca3b383e431342',1,'r_pdm.h']]], + ['pdm_5fpcm_5fwidth_5f16_5fbits_5f0_5f14',['PDM_PCM_WIDTH_16_BITS_0_14',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa3adeaaa39404c582601c40179f1e6629',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f16_5fbits_5f1_5f15',['PDM_PCM_WIDTH_16_BITS_1_15',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa324772bd777c1f50889a17b70f3444a8',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f16_5fbits_5f2_5f16',['PDM_PCM_WIDTH_16_BITS_2_16',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa8778dcb9208e5416f680c6fe1f1f6279',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f16_5fbits_5f3_5f17',['PDM_PCM_WIDTH_16_BITS_3_17',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fac2744c4aaff0de1651b0c61c39c2291e',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f16_5fbits_5f4_5f18',['PDM_PCM_WIDTH_16_BITS_4_18',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fae0af427ccb4ce9337eded095b609a2b6',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f20_5fbits_5f0_5f18',['PDM_PCM_WIDTH_20_BITS_0_18',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa66dcfd2b5e3f5c788bf30d09e33ecea9',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f20_5fbits_5f1_5f18',['PDM_PCM_WIDTH_20_BITS_1_18',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa5c1961f77255f5cc1e9b10bb2eb7a610',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f20_5fbits_5f2_5f18',['PDM_PCM_WIDTH_20_BITS_2_18',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fa422ec8ffc432c508a18febbd57f857c9',1,'r_pdm_api.h']]], + ['pdm_5fpcm_5fwidth_5f20_5fbits_5f3_5f18',['PDM_PCM_WIDTH_20_BITS_3_18',['../group___p_d_m___a_p_i.html#ggac80768e70548497f4a739b84d0af572fabd56bdeaef4f1e776b865066e1dbe6b1',1,'r_pdm_api.h']]], + ['pdm_5fsinc_5ffilter_5fmode_5f1',['PDM_SINC_FILTER_MODE_1',['../group___p_d_m.html#gga10725534d91789f15654a46786339569af155835da1b4cb3df6766324e5b641c5',1,'r_pdm.h']]], + ['pdm_5fsinc_5ffilter_5fmode_5f2',['PDM_SINC_FILTER_MODE_2',['../group___p_d_m.html#gga10725534d91789f15654a46786339569a3dbb88baf2e552e517cc521917be33f4',1,'r_pdm.h']]], + ['pdm_5fsinc_5ffilter_5fmode_5f3',['PDM_SINC_FILTER_MODE_3',['../group___p_d_m.html#gga10725534d91789f15654a46786339569a2ff3cb58ab5a06c75199c82be7d36e39',1,'r_pdm.h']]], + ['pdm_5fsinc_5ffilter_5fmode_5f4',['PDM_SINC_FILTER_MODE_4',['../group___p_d_m.html#gga10725534d91789f15654a46786339569a4c023e6c0fd378a1efb57bf80297809c',1,'r_pdm.h']]], + ['pdm_5fstate_5fin_5fuse',['PDM_STATE_IN_USE',['../group___p_d_m___a_p_i.html#gga09df76d543b0cc6b39c5fed3bf1f4485a886d05c63fd087836c605e609908161c',1,'r_pdm_api.h']]], + ['pdm_5fstate_5fstopped',['PDM_STATE_STOPPED',['../group___p_d_m___a_p_i.html#gga09df76d543b0cc6b39c5fed3bf1f4485a571969657d1a5ca91391807510eed100',1,'r_pdm_api.h']]], + ['poeg_5fgtetrg_5fnoise_5ffilter_5fdisabled',['POEG_GTETRG_NOISE_FILTER_DISABLED',['../group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba2ade356ffb1863fce2543f4b3440d526',1,'r_poeg_api.h']]], + ['poeg_5fgtetrg_5fnoise_5ffilter_5fpclkb_5fdiv_5f1',['POEG_GTETRG_NOISE_FILTER_PCLKB_DIV_1',['../group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba38f961191fa339ca693af2b31132e9cf',1,'r_poeg_api.h']]], + ['poeg_5fgtetrg_5fnoise_5ffilter_5fpclkb_5fdiv_5f128',['POEG_GTETRG_NOISE_FILTER_PCLKB_DIV_128',['../group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba88875580846aa38277404a473822fa54',1,'r_poeg_api.h']]], + ['poeg_5fgtetrg_5fnoise_5ffilter_5fpclkb_5fdiv_5f32',['POEG_GTETRG_NOISE_FILTER_PCLKB_DIV_32',['../group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0ba8a559716ca4f1164b677818843e90715',1,'r_poeg_api.h']]], + ['poeg_5fgtetrg_5fnoise_5ffilter_5fpclkb_5fdiv_5f8',['POEG_GTETRG_NOISE_FILTER_PCLKB_DIV_8',['../group___p_o_e_g___a_p_i.html#ggab482b24d14d1c94f6f4ba9f5e39f8d0bab361929a40b68a2e6bbac0b5e9213c5a',1,'r_poeg_api.h']]], + ['poeg_5fgtetrg_5fpolarity_5factive_5fhigh',['POEG_GTETRG_POLARITY_ACTIVE_HIGH',['../group___p_o_e_g___a_p_i.html#ggaab60100277a3b044c01007e6142704b9a6e980721d614a696895f9733ed1c5b0e',1,'r_poeg_api.h']]], + ['poeg_5fgtetrg_5fpolarity_5factive_5flow',['POEG_GTETRG_POLARITY_ACTIVE_LOW',['../group___p_o_e_g___a_p_i.html#ggaab60100277a3b044c01007e6142704b9a71e691b21c906dc492af3fcbbe5b9713',1,'r_poeg_api.h']]], + ['poeg_5fstate_5fgpt_5for_5fcomparator_5fdisable_5frequest',['POEG_STATE_GPT_OR_COMPARATOR_DISABLE_REQUEST',['../group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a580261ea46ea6dc549e4fbfd99a8c31c',1,'r_poeg_api.h']]], + ['poeg_5fstate_5fno_5fdisable_5frequest',['POEG_STATE_NO_DISABLE_REQUEST',['../group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a929680a05ecd96bb24dd053fb6dcc8b5',1,'r_poeg_api.h']]], + ['poeg_5fstate_5foscillation_5fstop_5fdisable_5frequest',['POEG_STATE_OSCILLATION_STOP_DISABLE_REQUEST',['../group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a6c587d6eeb64a3823a355199778e6a18',1,'r_poeg_api.h']]], + ['poeg_5fstate_5fpin_5fdisable_5frequest',['POEG_STATE_PIN_DISABLE_REQUEST',['../group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a965ed912f63e0044d9646693c909135b',1,'r_poeg_api.h']]], + ['poeg_5fstate_5fpin_5fdisable_5frequest_5factive',['POEG_STATE_PIN_DISABLE_REQUEST_ACTIVE',['../group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2a1f07ec79529092ff47798e894f315adf',1,'r_poeg_api.h']]], + ['poeg_5fstate_5fsoftware_5fstop_5fdisable_5frequest',['POEG_STATE_SOFTWARE_STOP_DISABLE_REQUEST',['../group___p_o_e_g___a_p_i.html#gga6964e3b0b8b2d32d2428d86b32dfeef2ad3a9db10800397084958747e9cb2260a',1,'r_poeg_api.h']]], + ['poeg_5ftrigger_5facmphs0',['POEG_TRIGGER_ACMPHS0',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a22c1283422f02a8c1a9c8b3aeeb9f156',1,'r_poeg_api.h']]], + ['poeg_5ftrigger_5facmphs1',['POEG_TRIGGER_ACMPHS1',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a4d37b4728c36a854139814813c4f1591',1,'r_poeg_api.h']]], + ['poeg_5ftrigger_5facmphs2',['POEG_TRIGGER_ACMPHS2',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9aeeaef1204479de8858543006572c56f1',1,'r_poeg_api.h']]], + ['poeg_5ftrigger_5facmphs3',['POEG_TRIGGER_ACMPHS3',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a23e020fd551b49c524d0f5ae343b6df4',1,'r_poeg_api.h']]], + ['poeg_5ftrigger_5facmphs4',['POEG_TRIGGER_ACMPHS4',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a38cfaa9e507532303a483369539418ce',1,'r_poeg_api.h']]], + ['poeg_5ftrigger_5facmphs5',['POEG_TRIGGER_ACMPHS5',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9aa4d56aee202d76e9efdf3bcfc181a12d',1,'r_poeg_api.h']]], + ['poeg_5ftrigger_5fgpt_5foutput_5flevel',['POEG_TRIGGER_GPT_OUTPUT_LEVEL',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9aedd4f2c94c2539026d15543c0f1457cc',1,'r_poeg_api.h']]], + ['poeg_5ftrigger_5foscillation_5fstop',['POEG_TRIGGER_OSCILLATION_STOP',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a4840d0ad9f40a09c2785be816c7e2884',1,'r_poeg_api.h']]], + ['poeg_5ftrigger_5fpin',['POEG_TRIGGER_PIN',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a386ea44b929de5b16b1c459a37f866c3',1,'r_poeg_api.h']]], + ['poeg_5ftrigger_5fsoftware',['POEG_TRIGGER_SOFTWARE',['../group___p_o_e_g___a_p_i.html#ggad3a55ae7d23b90cc2621a83116d2e7d9a5844408e52ce8a8d819d594d4134de0b',1,'r_poeg_api.h']]] ]; diff --git a/search/enumvalues_a.js b/search/enumvalues_a.js index 0052d44..a566a98 100644 --- a/search/enumvalues_a.js +++ b/search/enumvalues_a.js @@ -1,48 +1,60 @@ var searchData= [ - ['timer_5fdirection_5fdown',['TIMER_DIRECTION_DOWN',['../group___t_i_m_e_r___a_p_i.html#gga8d600bb7885c5490bb7e8f989aa2ff83a6a5c25392297a9e6adcc2a31d210e654',1,'r_timer_api.h']]], - ['timer_5fdirection_5fup',['TIMER_DIRECTION_UP',['../group___t_i_m_e_r___a_p_i.html#gga8d600bb7885c5490bb7e8f989aa2ff83aa6e92d4dfd3483ec2ca281fae716c3db',1,'r_timer_api.h']]], - ['timer_5fevent_5fcapture_5fa',['TIMER_EVENT_CAPTURE_A',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba4bc1252f63147f4a01f7b7ba88afac1d',1,'r_timer_api.h']]], - ['timer_5fevent_5fcapture_5fb',['TIMER_EVENT_CAPTURE_B',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebab7b635fbf34ede5a3e2f55b5a60ac21b',1,'r_timer_api.h']]], - ['timer_5fevent_5fcrest',['TIMER_EVENT_CREST',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba73d4afde72c0b28a768c8e6d25c050f8',1,'r_timer_api.h']]], - ['timer_5fevent_5fcycle_5fend',['TIMER_EVENT_CYCLE_END',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebae310bef0d640f06765c01b4b91a5b84c',1,'r_timer_api.h']]], - ['timer_5fevent_5ftrough',['TIMER_EVENT_TROUGH',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba83cb2de8ac629fcd95525e94b94089f0',1,'r_timer_api.h']]], - ['timer_5fmode_5fone_5fshot',['TIMER_MODE_ONE_SHOT',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a140f07675d67258a7ca9a95a9a793e3a',1,'r_timer_api.h']]], - ['timer_5fmode_5fperiodic',['TIMER_MODE_PERIODIC',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a78838cf8d728f8c64bb8012d522d1e2e',1,'r_timer_api.h']]], - ['timer_5fmode_5fpwm',['TIMER_MODE_PWM',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2aca44e952a6930f39ac05393522392eac',1,'r_timer_api.h']]], - ['timer_5fmode_5ftriangle_5fwave_5fasymmetric_5fpwm',['TIMER_MODE_TRIANGLE_WAVE_ASYMMETRIC_PWM',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a204001ad413e9ad0db08a66d004a555a',1,'r_timer_api.h']]], - ['timer_5fmode_5ftriangle_5fwave_5fsymmetric_5fpwm',['TIMER_MODE_TRIANGLE_WAVE_SYMMETRIC_PWM',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a6a3c462f9e9cc1b26ab68f38efd79b14',1,'r_timer_api.h']]], - ['timer_5fsource_5fdiv_5f1',['TIMER_SOURCE_DIV_1',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada387f7122153dd7d860762a6f73485fb8',1,'r_timer_api.h']]], - ['timer_5fsource_5fdiv_5f1024',['TIMER_SOURCE_DIV_1024',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adaee99148dc7c32f0764c7cb3b3e45ca30',1,'r_timer_api.h']]], - ['timer_5fsource_5fdiv_5f128',['TIMER_SOURCE_DIV_128',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada8828520a3958955a4e2835785787c801',1,'r_timer_api.h']]], - ['timer_5fsource_5fdiv_5f16',['TIMER_SOURCE_DIV_16',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adae36be19b8ae1b3b3918e39c738e62c82',1,'r_timer_api.h']]], - ['timer_5fsource_5fdiv_5f2',['TIMER_SOURCE_DIV_2',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adafa4194764952e26c833bdaa26587f245',1,'r_timer_api.h']]], - ['timer_5fsource_5fdiv_5f256',['TIMER_SOURCE_DIV_256',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada6680e947eb6455f9d0ee007645ea707d',1,'r_timer_api.h']]], - ['timer_5fsource_5fdiv_5f32',['TIMER_SOURCE_DIV_32',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adacccb03dab14c93d036cdff662b1686a1',1,'r_timer_api.h']]], - ['timer_5fsource_5fdiv_5f4',['TIMER_SOURCE_DIV_4',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada6cf9f5fb4095fd15027e6d06a811a3f5',1,'r_timer_api.h']]], - ['timer_5fsource_5fdiv_5f64',['TIMER_SOURCE_DIV_64',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada1cc7525fed9c5374c3a530e17453e670',1,'r_timer_api.h']]], - ['timer_5fsource_5fdiv_5f8',['TIMER_SOURCE_DIV_8',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adaa2da1d2d669ae1f3baf715e96a803be3',1,'r_timer_api.h']]], - ['timer_5fstate_5fcounting',['TIMER_STATE_COUNTING',['../group___t_i_m_e_r___a_p_i.html#gga1360292eee5d5a5288646fd1eb37c83eaba4825c92c8291b64e827943330007b7',1,'r_timer_api.h']]], - ['timer_5fstate_5fstopped',['TIMER_STATE_STOPPED',['../group___t_i_m_e_r___a_p_i.html#gga1360292eee5d5a5288646fd1eb37c83ea92e859c83369128798902fd7a86a3320',1,'r_timer_api.h']]], - ['timer_5fvariant_5f16_5fbit',['TIMER_VARIANT_16_BIT',['../group___t_i_m_e_r___a_p_i.html#ggaa3525eef2e1fa1bc8809b2d3aaf0de5dab2eba551f1a7140323af63a66a137b49',1,'r_timer_api.h']]], - ['timer_5fvariant_5f32_5fbit',['TIMER_VARIANT_32_BIT',['../group___t_i_m_e_r___a_p_i.html#ggaa3525eef2e1fa1bc8809b2d3aaf0de5da7dddd2791567467dc7bcf74ca2fc2cbb',1,'r_timer_api.h']]], - ['transfer_5faddr_5fmode_5fdecremented',['TRANSFER_ADDR_MODE_DECREMENTED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51a56a87e1587844119831414f3d5e6d761',1,'r_transfer_api.h']]], - ['transfer_5faddr_5fmode_5ffixed',['TRANSFER_ADDR_MODE_FIXED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47',1,'r_transfer_api.h']]], - ['transfer_5faddr_5fmode_5fincremented',['TRANSFER_ADDR_MODE_INCREMENTED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad',1,'r_transfer_api.h']]], - ['transfer_5faddr_5fmode_5foffset',['TRANSFER_ADDR_MODE_OFFSET',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadce62e6c2407d6ffd5a94636736f7c51ab8b3f8ce28fb6f7a57a1b87db0d612c2',1,'r_transfer_api.h']]], - ['transfer_5fchain_5fmode_5fdisabled',['TRANSFER_CHAIN_MODE_DISABLED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga68f81dc8b9ca46fbe3a1e556c020436dae974453c306b4959252905e362d75067',1,'r_transfer_api.h']]], - ['transfer_5fchain_5fmode_5feach',['TRANSFER_CHAIN_MODE_EACH',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga68f81dc8b9ca46fbe3a1e556c020436dadab837d29a543149d35ed2fd28d8e4e8',1,'r_transfer_api.h']]], - ['transfer_5fchain_5fmode_5fend',['TRANSFER_CHAIN_MODE_END',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga68f81dc8b9ca46fbe3a1e556c020436dab853bdecc90c476b995644c273e0ee75',1,'r_transfer_api.h']]], - ['transfer_5firq_5feach',['TRANSFER_IRQ_EACH',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggad71bdadb7f486bb5d3ca6ff508dc0b08a0929782b61686db69e12b3cb18175b35',1,'r_transfer_api.h']]], - ['transfer_5firq_5fend',['TRANSFER_IRQ_END',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggad71bdadb7f486bb5d3ca6ff508dc0b08ada378ad830e44cc0c25d4fe2413e11de',1,'r_transfer_api.h']]], - ['transfer_5fmode_5fblock',['TRANSFER_MODE_BLOCK',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55',1,'r_transfer_api.h']]], - ['transfer_5fmode_5fnormal',['TRANSFER_MODE_NORMAL',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d',1,'r_transfer_api.h']]], - ['transfer_5fmode_5frepeat',['TRANSFER_MODE_REPEAT',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggadfb7c2a6a73bfdf993e50505aa92992fa607c41bfd08797c08a5ee9bd4dfb9c8b',1,'r_transfer_api.h']]], - ['transfer_5frepeat_5farea_5fdestination',['TRANSFER_REPEAT_AREA_DESTINATION',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga769464d2068881ccb44573c96167812ba77aeeab30b003de23742e40a57f19239',1,'r_transfer_api.h']]], - ['transfer_5frepeat_5farea_5fsource',['TRANSFER_REPEAT_AREA_SOURCE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga769464d2068881ccb44573c96167812ba2002ef7bbc49f7c9ebfac1618ba3c391',1,'r_transfer_api.h']]], - ['transfer_5fsize_5f1_5fbyte',['TRANSFER_SIZE_1_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21',1,'r_transfer_api.h']]], - ['transfer_5fsize_5f2_5fbyte',['TRANSFER_SIZE_2_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f',1,'r_transfer_api.h']]], - ['transfer_5fsize_5f4_5fbyte',['TRANSFER_SIZE_4_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412',1,'r_transfer_api.h']]], - ['transfer_5fstart_5fmode_5frepeat',['TRANSFER_START_MODE_REPEAT',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga11917a0ab2cb8b878937c97691b07fd9aa9b89e5adf9e24c9203f9fdf6c6aa331',1,'r_transfer_api.h']]], - ['transfer_5fstart_5fmode_5fsingle',['TRANSFER_START_MODE_SINGLE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga11917a0ab2cb8b878937c97691b07fd9aca210983d734307a694af55fbf11ed7e',1,'r_transfer_api.h']]] + ['rm_5fhs400x_5fperiodic_5fmeasurement_5ffrequency_5f0p4hz',['RM_HS400X_PERIODIC_MEASUREMENT_FREQUENCY_0P4HZ',['../group___r_m___h_s400_x___a_p_i.html#gga6ab3f5a23c4ddfcbf416027512700d69a065a54759d825775527b92f4c02342ef',1,'rm_hs400x_api.h']]], + ['rm_5fhs400x_5fperiodic_5fmeasurement_5ffrequency_5f1hz',['RM_HS400X_PERIODIC_MEASUREMENT_FREQUENCY_1HZ',['../group___r_m___h_s400_x___a_p_i.html#gga6ab3f5a23c4ddfcbf416027512700d69a71fd810a9f93f8190420c5717a999ba2',1,'rm_hs400x_api.h']]], + ['rm_5fhs400x_5fperiodic_5fmeasurement_5ffrequency_5f2hz',['RM_HS400X_PERIODIC_MEASUREMENT_FREQUENCY_2HZ',['../group___r_m___h_s400_x___a_p_i.html#gga6ab3f5a23c4ddfcbf416027512700d69aaeebce78040edb12cb5737d5708df752',1,'rm_hs400x_api.h']]], + ['rm_5fzmod4xxx_5fevent_5fdev_5ferr_5faccess_5fconflict',['RM_ZMOD4XXX_EVENT_DEV_ERR_ACCESS_CONFLICT',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ggadd54ca8592a0f7cb81913d2250e89060aa55c18d81d34427bcfd2f631e6b2a3a4',1,'rm_zmod4xxx_api.h']]], + ['rm_5fzmod4xxx_5fevent_5fdev_5ferr_5fpower_5fon_5freset',['RM_ZMOD4XXX_EVENT_DEV_ERR_POWER_ON_RESET',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ggadd54ca8592a0f7cb81913d2250e89060a55d1b247ecb594b099b15e120ae6b6a4',1,'rm_zmod4xxx_api.h']]], + ['rspi_5fdelay_5fcount_5f1',['RSPI_DELAY_COUNT_1',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775acf6c2af3c3fd7da891cd64c6ac082ed7',1,'r_rspi.h']]], + ['rspi_5fdelay_5fcount_5f2',['RSPI_DELAY_COUNT_2',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a113a034f110841c3f8fb0c726238c7ea',1,'r_rspi.h']]], + ['rspi_5fdelay_5fcount_5f3',['RSPI_DELAY_COUNT_3',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a278ef944fd2a6485be24ddc58e154e00',1,'r_rspi.h']]], + ['rspi_5fdelay_5fcount_5f4',['RSPI_DELAY_COUNT_4',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a97aed5f01b2294bc3fd7a64645f67a69',1,'r_rspi.h']]], + ['rspi_5fdelay_5fcount_5f5',['RSPI_DELAY_COUNT_5',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a76dd1b81a9f64fcccfd74406bf67d712',1,'r_rspi.h']]], + ['rspi_5fdelay_5fcount_5f6',['RSPI_DELAY_COUNT_6',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a7e2364c6d0f338da53c4eb5e96c6e0fe',1,'r_rspi.h']]], + ['rspi_5fdelay_5fcount_5f7',['RSPI_DELAY_COUNT_7',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775ad0ac09d0f4cbd2e59603fbfaf8195cc8',1,'r_rspi.h']]], + ['rspi_5fdelay_5fcount_5f8',['RSPI_DELAY_COUNT_8',['../group___r_s_p_i.html#gga8f68c8c6c98ee871ad72bbb94c559775a5ac1f6ea1b0b10b12ff8e91ec32f9ce9',1,'r_rspi.h']]], + ['rspi_5fmosi_5fidle_5fvalue_5ffixing_5fdisable',['RSPI_MOSI_IDLE_VALUE_FIXING_DISABLE',['../group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a671c871f2ed8584714caf4c0d562da4e',1,'r_rspi.h']]], + ['rspi_5fmosi_5fidle_5fvalue_5ffixing_5fhigh',['RSPI_MOSI_IDLE_VALUE_FIXING_HIGH',['../group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a334fbae8188c8d89825231b5126c432d',1,'r_rspi.h']]], + ['rspi_5fmosi_5fidle_5fvalue_5ffixing_5flow',['RSPI_MOSI_IDLE_VALUE_FIXING_LOW',['../group___r_s_p_i.html#ggae3deb1d097bc300a5ed42849ebb200c6a2a42bca9fb7a5f485d0c21c70d83c6bc',1,'r_rspi.h']]], + ['rspi_5frx_5ftrigger_5f1',['RSPI_RX_TRIGGER_1',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa6e2d61b897292531bcf0a4dd66e7ce74',1,'r_rspi.h']]], + ['rspi_5frx_5ftrigger_5f16',['RSPI_RX_TRIGGER_16',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caad83aa485a255af67211f9455b77dcdd5',1,'r_rspi.h']]], + ['rspi_5frx_5ftrigger_5f2',['RSPI_RX_TRIGGER_2',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa0075abb73fd4b57739d3dc2ce736e8f7',1,'r_rspi.h']]], + ['rspi_5frx_5ftrigger_5f24',['RSPI_RX_TRIGGER_24',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caaf2e133c6790fa395dcb1cbe1be0b90b0',1,'r_rspi.h']]], + ['rspi_5frx_5ftrigger_5f32',['RSPI_RX_TRIGGER_32',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caacd53b2a36ff3174ca39d448d47626dbf',1,'r_rspi.h']]], + ['rspi_5frx_5ftrigger_5f4',['RSPI_RX_TRIGGER_4',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa5514129ce285974d810db5f22e2518d1',1,'r_rspi.h']]], + ['rspi_5frx_5ftrigger_5f5',['RSPI_RX_TRIGGER_5',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caaf0c6136c76672af71b2a3a586013f395',1,'r_rspi.h']]], + ['rspi_5frx_5ftrigger_5f8',['RSPI_RX_TRIGGER_8',['../group___r_s_p_i.html#gga431fc619396f9d5cf2f1c495c2ed59caa036ea6f9fcfa956509de0e99167c61e7',1,'r_rspi.h']]], + ['rspi_5fssl_5flevel_5fkeep_5fdisable',['RSPI_SSL_LEVEL_KEEP_DISABLE',['../group___r_s_p_i.html#ggaae19ba80f9290f4ad12e794cf1bac9f2ab841c4b6e56bf3a45f323d77f93b2d03',1,'r_rspi.h']]], + ['rspi_5fssl_5flevel_5fkeep_5fenable',['RSPI_SSL_LEVEL_KEEP_ENABLE',['../group___r_s_p_i.html#ggaae19ba80f9290f4ad12e794cf1bac9f2aabdf42d404217b46fab49e661dc6f128',1,'r_rspi.h']]], + ['rspi_5fsslp_5fhigh',['RSPI_SSLP_HIGH',['../group___r_s_p_i.html#gga2342f44b16c4072b5e9302c4f05b4f94af642f0a0ebd5e10f1e0f749f2a7b6861',1,'r_rspi.h']]], + ['rspi_5fsslp_5flow',['RSPI_SSLP_LOW',['../group___r_s_p_i.html#gga2342f44b16c4072b5e9302c4f05b4f94a33e3a44f24010fc5a3f737b1fc451ed7',1,'r_rspi.h']]], + ['rspi_5ftx_5ftrigger_5f0',['RSPI_TX_TRIGGER_0',['../group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203abacfc42fd65ae0d7a0f60aed988a4fa1e8',1,'r_rspi.h']]], + ['rspi_5ftx_5ftrigger_5f4',['RSPI_TX_TRIGGER_4',['../group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba9d9724c3300e18d9ed1985559558d0bf',1,'r_rspi.h']]], + ['rspi_5ftx_5ftrigger_5f6',['RSPI_TX_TRIGGER_6',['../group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba39b767be6e7e52887162d6a45ef4ec1c',1,'r_rspi.h']]], + ['rspi_5ftx_5ftrigger_5f7',['RSPI_TX_TRIGGER_7',['../group___r_s_p_i.html#gga8e48fdc14874a5cba28661ae549203aba922c57b7e36774c42a3eb3efc1e91f75',1,'r_rspi.h']]], + ['rtc_5fclock_5fsource_5floco',['RTC_CLOCK_SOURCE_LOCO',['../group___r_t_c___a_p_i.html#ggad8eef26a825fa4a0c5a417f8be08ccc6abd7cdef56193166a8a680504e1f3f5fa',1,'r_rtc_api.h']]], + ['rtc_5fclock_5fsource_5fsubclk',['RTC_CLOCK_SOURCE_SUBCLK',['../group___r_t_c___a_p_i.html#ggad8eef26a825fa4a0c5a417f8be08ccc6a7b64e5bbc3adc81add25128016631364',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fadd_5fprescaler',['RTC_ERROR_ADJUSTMENT_ADD_PRESCALER',['../group___r_t_c___a_p_i.html#gga704067eae956dc872d24edf9b85b397fac08633933a5c2a53ee1031ddd6247335',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fmode_5fautomatic',['RTC_ERROR_ADJUSTMENT_MODE_AUTOMATIC',['../group___r_t_c___a_p_i.html#gga4cbfe07cf288ae153c30b4fef99163e7ae772455e50f01892e6dffabf509ae66c',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fmode_5fmanual',['RTC_ERROR_ADJUSTMENT_MODE_MANUAL',['../group___r_t_c___a_p_i.html#gga4cbfe07cf288ae153c30b4fef99163e7a7b90f3b3332c2ba8fffd0921fddf1888',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fnone',['RTC_ERROR_ADJUSTMENT_NONE',['../group___r_t_c___a_p_i.html#gga704067eae956dc872d24edf9b85b397faf14f20829e9678dd1187c0213e474b39',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fperiod_5f10_5fsecond',['RTC_ERROR_ADJUSTMENT_PERIOD_10_SECOND',['../group___r_t_c___a_p_i.html#ggaa9758f6f29579df6e9f5c64ff486c097abb5d066f25aa8878ef57848e7a8a28aa',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fperiod_5f1_5fminute',['RTC_ERROR_ADJUSTMENT_PERIOD_1_MINUTE',['../group___r_t_c___a_p_i.html#ggaa9758f6f29579df6e9f5c64ff486c097a4c96e106ab367f0a811813e6077c3a8c',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fperiod_5fnone',['RTC_ERROR_ADJUSTMENT_PERIOD_NONE',['../group___r_t_c___a_p_i.html#ggaa9758f6f29579df6e9f5c64ff486c097afe53e47d736acd5bd710bc610d1fd8bc',1,'r_rtc_api.h']]], + ['rtc_5ferror_5fadjustment_5fsubtract_5fprescaler',['RTC_ERROR_ADJUSTMENT_SUBTRACT_PRESCALER',['../group___r_t_c___a_p_i.html#gga704067eae956dc872d24edf9b85b397fa29f7a1f47e70b2bfc3050aad3459b366',1,'r_rtc_api.h']]], + ['rtc_5fevent_5falarm1_5firq',['RTC_EVENT_ALARM1_IRQ',['../group___r_t_c___a_p_i.html#ggad2e192ed9a33b6c005c2c19ccbd6a21bad269f3ac02b4c6a8cd6b0be90b62ba30',1,'r_rtc_api.h']]], + ['rtc_5fevent_5falarm_5firq',['RTC_EVENT_ALARM_IRQ',['../group___r_t_c___a_p_i.html#ggad2e192ed9a33b6c005c2c19ccbd6a21bab2d201ffa3ef8219d41fec7009c5a3d4',1,'r_rtc_api.h']]], + ['rtc_5fevent_5fperiodic_5firq',['RTC_EVENT_PERIODIC_IRQ',['../group___r_t_c___a_p_i.html#ggad2e192ed9a33b6c005c2c19ccbd6a21ba32818d089c15c50d17a13dce861db7d8',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f128_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_128_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01ac5e572907bd22dee0bcc223b701be0c7',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f16_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_16_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a19822146d83f4839005318b6ab299074',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f256_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_256_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a2f22d5de616b4249e26741a2d1af200d',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f2_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_2_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a5d684a2ff7ceabe98acb755095705f4e',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f32_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_32_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a61b490784dbe69ffd6740dfd21ba318c',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f4_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_4_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a2d83137f7be0a550f9e8533090186f17',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f64_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_64_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a202eb83ad25aebbdd9c6cee8def4619b',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fdiv_5fby_5f8_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_DIV_BY_8_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a7d5fa9813737ea5f426a38c26349d244',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f1_5fsecond',['RTC_PERIODIC_IRQ_SELECT_1_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01a35f83abe856065e723ec538a5e708a6d',1,'r_rtc_api.h']]], + ['rtc_5fperiodic_5firq_5fselect_5f2_5fsecond',['RTC_PERIODIC_IRQ_SELECT_2_SECOND',['../group___r_t_c___a_p_i.html#ggacbf0a3d09430a65ca1b3179819183f01ac05b73777b54b84cc0ed8c6ee4013f33',1,'r_rtc_api.h']]], + ['rtc_5fstatus_5frunning',['RTC_STATUS_RUNNING',['../group___r_t_c___a_p_i.html#ggab1079685ed8a9d30f32062b3bfedd041a894d35c1f934f700232ecd554c95b38d',1,'r_rtc_api.h']]], + ['rtc_5fstatus_5fstopped',['RTC_STATUS_STOPPED',['../group___r_t_c___a_p_i.html#ggab1079685ed8a9d30f32062b3bfedd041a1f6935d0b857ca464bac48d0532b9b48',1,'r_rtc_api.h']]] ]; diff --git a/search/enumvalues_b.js b/search/enumvalues_b.js index 991e29c..f10ee57 100644 --- a/search/enumvalues_b.js +++ b/search/enumvalues_b.js @@ -1,22 +1,196 @@ var searchData= [ - ['uart_5fdata_5fbits_5f7',['UART_DATA_BITS_7',['../group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798a317e473e32315f1632829d176fbfd545',1,'r_uart_api.h']]], - ['uart_5fdata_5fbits_5f8',['UART_DATA_BITS_8',['../group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798ad768185f3773e2d5953b28f3345561db',1,'r_uart_api.h']]], - ['uart_5fdata_5fbits_5f9',['UART_DATA_BITS_9',['../group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798a57a012c58e476a76ed8f54db28d94810',1,'r_uart_api.h']]], - ['uart_5fdir_5frx',['UART_DIR_RX',['../group___u_a_r_t___a_p_i.html#ggac36c5a0dffa37b418fb9425a76c57740a01ae18be82be0fa74527fe8f23499895',1,'r_uart_api.h']]], - ['uart_5fdir_5frx_5ftx',['UART_DIR_RX_TX',['../group___u_a_r_t___a_p_i.html#ggac36c5a0dffa37b418fb9425a76c57740a91dcd653bcf1b052bd7bd9ee7210ad83',1,'r_uart_api.h']]], - ['uart_5fdir_5ftx',['UART_DIR_TX',['../group___u_a_r_t___a_p_i.html#ggac36c5a0dffa37b418fb9425a76c57740a915c39567f2bb1393e506373749767e1',1,'r_uart_api.h']]], - ['uart_5fevent_5fbreak_5fdetect',['UART_EVENT_BREAK_DETECT',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da089ae47ff2f451fdc369c8d04c50c8ea',1,'r_uart_api.h']]], - ['uart_5fevent_5ferr_5fframing',['UART_EVENT_ERR_FRAMING',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da92ecf40776a80db956fb45b8a5ae02cb',1,'r_uart_api.h']]], - ['uart_5fevent_5ferr_5foverflow',['UART_EVENT_ERR_OVERFLOW',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8dab21c836f6c9fa84f41fc41a8cf9c2d1e',1,'r_uart_api.h']]], - ['uart_5fevent_5ferr_5fparity',['UART_EVENT_ERR_PARITY',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da2ea6d7a4ff18bf123facf225a6954329',1,'r_uart_api.h']]], - ['uart_5fevent_5frx_5fchar',['UART_EVENT_RX_CHAR',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da794925d1c74f16bde84152508e66a6bd',1,'r_uart_api.h']]], - ['uart_5fevent_5frx_5fcomplete',['UART_EVENT_RX_COMPLETE',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8dabe2b1428416bd300ee15a2608df30837',1,'r_uart_api.h']]], - ['uart_5fevent_5ftx_5fcomplete',['UART_EVENT_TX_COMPLETE',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da56867c1db03ea3ee2c704604ac94b767',1,'r_uart_api.h']]], - ['uart_5fevent_5ftx_5fdata_5fempty',['UART_EVENT_TX_DATA_EMPTY',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da03e2fd44218712f18f3cceb0a0ad7442',1,'r_uart_api.h']]], - ['uart_5fparity_5feven',['UART_PARITY_EVEN',['../group___u_a_r_t___a_p_i.html#gga6bcc37e31dd40c204b4ac6f6189e8878ad908a637b1dd23f93b149dd2d8bdfdb8',1,'r_uart_api.h']]], - ['uart_5fparity_5fodd',['UART_PARITY_ODD',['../group___u_a_r_t___a_p_i.html#gga6bcc37e31dd40c204b4ac6f6189e8878ad90cc425f5ba447773a44a75be6593e2',1,'r_uart_api.h']]], - ['uart_5fparity_5foff',['UART_PARITY_OFF',['../group___u_a_r_t___a_p_i.html#gga6bcc37e31dd40c204b4ac6f6189e8878acdbc0c60cf74e4febad92afc44b88641',1,'r_uart_api.h']]], - ['uart_5fstop_5fbits_5f1',['UART_STOP_BITS_1',['../group___u_a_r_t___a_p_i.html#gga6da57a73bbdbf830b845d4116f8341d7a44b3bfbe90aebe2b23227f5c011f41cc',1,'r_uart_api.h']]], - ['uart_5fstop_5fbits_5f2',['UART_STOP_BITS_2',['../group___u_a_r_t___a_p_i.html#gga6da57a73bbdbf830b845d4116f8341d7a00c73c92b3d624bc86cfa63636dd99b3',1,'r_uart_api.h']]] + ['sci_5fb_5fuart_5fclock_5fext16x',['SCI_B_UART_CLOCK_EXT16X',['../group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0ae6341abde349fd5354d9fccfd3b82448',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fclock_5fext8x',['SCI_B_UART_CLOCK_EXT8X',['../group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0acf92ad58648eb51823b24f83fe3831eb',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fclock_5fint',['SCI_B_UART_CLOCK_INT',['../group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0ae7e751b6add47042b86579de38c7a594',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fclock_5fint_5fwith_5fbaudrate_5foutput',['SCI_B_UART_CLOCK_INT_WITH_BAUDRATE_OUTPUT',['../group___s_c_i___b___u_a_r_t.html#gga6c7272b892e958ee32afb345eb1d1bd0a84f9bc793954950b01385a933f8b588f',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fflow_5fcontrol_5fcts',['SCI_B_UART_FLOW_CONTROL_CTS',['../group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89a6336e452a610c15b03b15585894b3bed',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fflow_5fcontrol_5fctsrts',['SCI_B_UART_FLOW_CONTROL_CTSRTS',['../group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89aabd2461e141009a78626768f0ac07583',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fflow_5fcontrol_5fhardware_5fctsrts',['SCI_B_UART_FLOW_CONTROL_HARDWARE_CTSRTS',['../group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89ab135f56a360b5266eb0988bb59650276',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fflow_5fcontrol_5frts',['SCI_B_UART_FLOW_CONTROL_RTS',['../group___s_c_i___b___u_a_r_t.html#ggac7f2f9b2d11f95e1f0c627b7523bfa89a8578df672d3b0f890b958db33d0e25b2',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fhalf_5fdata_5fdisable',['SCI_B_UART_HALF_DATA_DISABLE',['../group___s_c_i___b___u_a_r_t.html#gga3bcc863f7888e3aaee224f8854988414a637f7cea2b6601327efb3c85365a4dbd',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fhalf_5fdata_5fenable',['SCI_B_UART_HALF_DATA_ENABLE',['../group___s_c_i___b___u_a_r_t.html#gga3bcc863f7888e3aaee224f8854988414a4e3532db5f60d5a8779e0a5b6f1813f4',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fnoise_5fcancellation_5fdisable',['SCI_B_UART_NOISE_CANCELLATION_DISABLE',['../group___s_c_i___b___u_a_r_t.html#gga0fc68d0039faa0c546bc0a3e19f64934a21e61dfcb71ea33310c7f1aeada055a2',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fnoise_5fcancellation_5fenable',['SCI_B_UART_NOISE_CANCELLATION_ENABLE',['../group___s_c_i___b___u_a_r_t.html#gga0fc68d0039faa0c546bc0a3e19f64934a970ad9148c96d1db288edc7a370c20ad',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frs485_5fde_5fpolarity_5fhigh',['SCI_B_UART_RS485_DE_POLARITY_HIGH',['../group___s_c_i___b___u_a_r_t.html#gga0563689caceebd791581b050e4961351a86f62195b4aa840c0d10ac01299fe4cd',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frs485_5fde_5fpolarity_5flow',['SCI_B_UART_RS485_DE_POLARITY_LOW',['../group___s_c_i___b___u_a_r_t.html#gga0563689caceebd791581b050e4961351a18e7bfd946135c6768a8918b7d7dd954',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frs485_5fdisable',['SCI_B_UART_RS485_DISABLE',['../group___s_c_i___b___u_a_r_t.html#ggacab2c97394068299908eb68925eb9fc2aecd04009e4cd1a48fabc0df33c320e91',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frs485_5fenable',['SCI_B_UART_RS485_ENABLE',['../group___s_c_i___b___u_a_r_t.html#ggacab2c97394068299908eb68925eb9fc2add22e1606ec4ab3accaa55c69d8f657a',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frx_5ffifo_5ftrigger_5f1',['SCI_B_UART_RX_FIFO_TRIGGER_1',['../group___s_c_i___b___u_a_r_t.html#gga43307f95dde50ba9e4cf9b25f0d31d84aa8f1e72bd48f194a0cd82112024850e1',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5frx_5ffifo_5ftrigger_5fmax',['SCI_B_UART_RX_FIFO_TRIGGER_MAX',['../group___s_c_i___b___u_a_r_t.html#gga43307f95dde50ba9e4cf9b25f0d31d84a73839ba4bf30c0e127ba11f0ba4130a2',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fstart_5fbit_5ffalling_5fedge',['SCI_B_UART_START_BIT_FALLING_EDGE',['../group___s_c_i___b___u_a_r_t.html#gga12439cb11f88f10d53b36e6fbf966ce6aa0a9f4e8ad3d8ed3a85359792e082f3a',1,'r_sci_b_uart.h']]], + ['sci_5fb_5fuart_5fstart_5fbit_5flow_5flevel',['SCI_B_UART_START_BIT_LOW_LEVEL',['../group___s_c_i___b___u_a_r_t.html#gga12439cb11f88f10d53b36e6fbf966ce6a966b25af49006a6c4ddc1979382f8189',1,'r_sci_b_uart.h']]], + ['sci_5fuart_5frs485_5fde_5fpolarity_5fhigh',['SCI_UART_RS485_DE_POLARITY_HIGH',['../group___s_c_i_f___u_a_r_t.html#gga0bd2440ef30f2feca9a2d129989bffcea7cfd9e1ff7eca0657388f7cf9ce708fc',1,'r_scif_uart.h']]], + ['sci_5fuart_5frs485_5fde_5fpolarity_5flow',['SCI_UART_RS485_DE_POLARITY_LOW',['../group___s_c_i_f___u_a_r_t.html#gga0bd2440ef30f2feca9a2d129989bffceac1a061d1cb22d6b336e23185af20e089',1,'r_scif_uart.h']]], + ['sci_5fuart_5frs485_5fdisable',['SCI_UART_RS485_DISABLE',['../group___s_c_i_f___u_a_r_t.html#gga9522502f434bcaa2bbaf9cb1321ce542aa05bec8fad1420e777b184f55300b484',1,'r_scif_uart.h']]], + ['sci_5fuart_5frs485_5fenable',['SCI_UART_RS485_ENABLE',['../group___s_c_i_f___u_a_r_t.html#gga9522502f434bcaa2bbaf9cb1321ce542acd3ee665f5225c5bb017bb64d33cf127',1,'r_scif_uart.h']]], + ['scif_5fuart_5fclock_5fext16x',['SCIF_UART_CLOCK_EXT16X',['../group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613af4a4b829fd6e162e8572760595be226b',1,'r_scif_uart.h']]], + ['scif_5fuart_5fclock_5fext8x',['SCIF_UART_CLOCK_EXT8X',['../group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613a98d63305c87c9cf86a5c6123464723a4',1,'r_scif_uart.h']]], + ['scif_5fuart_5fclock_5fint',['SCIF_UART_CLOCK_INT',['../group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613a51c6cc623adda130f372f24e12128e4b',1,'r_scif_uart.h']]], + ['scif_5fuart_5fclock_5fint_5fwith_5fbaudrate_5foutput',['SCIF_UART_CLOCK_INT_WITH_BAUDRATE_OUTPUT',['../group___s_c_i_f___u_a_r_t.html#ggaa31fbf8041a381d6da9c454be58ad613a754b82d17863d7a0ff2b782285e9ca5b',1,'r_scif_uart.h']]], + ['scif_5fuart_5fflow_5fcontrol_5fauto',['SCIF_UART_FLOW_CONTROL_AUTO',['../group___s_c_i_f___u_a_r_t.html#gga023aa56b9ce183733d7933bf750fab6faa7f57854411216312fad5f3d6abb3551',1,'r_scif_uart.h']]], + ['scif_5fuart_5fflow_5fcontrol_5fnone',['SCIF_UART_FLOW_CONTROL_NONE',['../group___s_c_i_f___u_a_r_t.html#gga023aa56b9ce183733d7933bf750fab6fae2a15d92815c84415931688271be5392',1,'r_scif_uart.h']]], + ['scif_5fuart_5fmode_5frs232',['SCIF_UART_MODE_RS232',['../group___s_c_i_f___u_a_r_t.html#gga3a8c9e8d2860a4f467aca2ae92675d4ca1a384dea42c4cc16ceca1923546709c7',1,'r_scif_uart.h']]], + ['scif_5fuart_5fmode_5frs485_5ffd',['SCIF_UART_MODE_RS485_FD',['../group___s_c_i_f___u_a_r_t.html#gga3a8c9e8d2860a4f467aca2ae92675d4ca749fe7aee711151eef0226933d9a5829',1,'r_scif_uart.h']]], + ['scif_5fuart_5fmode_5frs485_5fhd',['SCIF_UART_MODE_RS485_HD',['../group___s_c_i_f___u_a_r_t.html#gga3a8c9e8d2860a4f467aca2ae92675d4caa7ed834f5731674f7b20ea22c79da715',1,'r_scif_uart.h']]], + ['scif_5fuart_5fnoise_5fcancellation_5fdisable',['SCIF_UART_NOISE_CANCELLATION_DISABLE',['../group___s_c_i_f___u_a_r_t.html#gga94601e39cbf40b77e5e4236385b58704ad882f64a494b61ff64e551ad3011a5b7',1,'r_scif_uart.h']]], + ['scif_5fuart_5fnoise_5fcancellation_5fenable',['SCIF_UART_NOISE_CANCELLATION_ENABLE',['../group___s_c_i_f___u_a_r_t.html#gga94601e39cbf40b77e5e4236385b58704ad3f821ad6438fb954b659c75d156d662',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f1',['SCIF_UART_RECEIVE_TRIGGER_1',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a2b6427033846f866ffd254b632b07a9b',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f10',['SCIF_UART_RECEIVE_TRIGGER_10',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ae9eba978351e7f07759323c1e3d2e3e5',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f11',['SCIF_UART_RECEIVE_TRIGGER_11',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a2488b7b352248b736ad778549ba64f3f',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f12',['SCIF_UART_RECEIVE_TRIGGER_12',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a849bd498e980ed5291b9fade846d748f',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f13',['SCIF_UART_RECEIVE_TRIGGER_13',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a020affbf40082d7c07ab5fa8a0fe802e',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f14',['SCIF_UART_RECEIVE_TRIGGER_14',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a19329bac313a91e73554cf5571941a7e',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f15',['SCIF_UART_RECEIVE_TRIGGER_15',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ae66c9b5ef3fc1aac931dd80766cdfe3c',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f2',['SCIF_UART_RECEIVE_TRIGGER_2',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95af3ba973f1fdbd89fb035e63925eba079',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f3',['SCIF_UART_RECEIVE_TRIGGER_3',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ac1a24c19641762ce694726ef9da404e1',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f4',['SCIF_UART_RECEIVE_TRIGGER_4',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a94ab8d8849528a45bd87bc014ff2352a',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f5',['SCIF_UART_RECEIVE_TRIGGER_5',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ac644a3e7327d3998cf0e300c6fa38b4e',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f6',['SCIF_UART_RECEIVE_TRIGGER_6',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ae81d37bcbe15cf0adbee5556a96ce7f3',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f7',['SCIF_UART_RECEIVE_TRIGGER_7',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a6532d2cfae53c35e93bf72db2e17e954',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f8',['SCIF_UART_RECEIVE_TRIGGER_8',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a479ec5b31c57f9fae8c4d6a7aac71b50',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5f9',['SCIF_UART_RECEIVE_TRIGGER_9',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a8ecbc830c93a7b39eef1409cf89bc98a',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5fhalf',['SCIF_UART_RECEIVE_TRIGGER_HALF',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95adf5efc0954d8d3ee2e132940e8010e16',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5fmax',['SCIF_UART_RECEIVE_TRIGGER_MAX',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95a8c61ea1a1f8a53bd2ef81a135ce6fb65',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5fone',['SCIF_UART_RECEIVE_TRIGGER_ONE',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ad8eb49bdf41e9867d8a6d0986b9343a6',1,'r_scif_uart.h']]], + ['scif_5fuart_5freceive_5ftrigger_5fquarter',['SCIF_UART_RECEIVE_TRIGGER_QUARTER',['../group___s_c_i_f___u_a_r_t.html#gga5d3f2e170b79de59f46ae864fc993e95ab85d375110c92593e11c02c28acf75a0',1,'r_scif_uart.h']]], + ['scif_5fuart_5frts_5ftrigger_5f1',['SCIF_UART_RTS_TRIGGER_1',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a9b2d1ca1de149e8561561ac69573e3de',1,'r_scif_uart.h']]], + ['scif_5fuart_5frts_5ftrigger_5f10',['SCIF_UART_RTS_TRIGGER_10',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a94a36bf05c3529a4eb80aa4386fd1bf3',1,'r_scif_uart.h']]], + ['scif_5fuart_5frts_5ftrigger_5f12',['SCIF_UART_RTS_TRIGGER_12',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ad0db387e28a0ed3d63add574f599e026',1,'r_scif_uart.h']]], + ['scif_5fuart_5frts_5ftrigger_5f14',['SCIF_UART_RTS_TRIGGER_14',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89afd80607e5a941b03255635196a53a004',1,'r_scif_uart.h']]], + ['scif_5fuart_5frts_5ftrigger_5f15',['SCIF_UART_RTS_TRIGGER_15',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a72f3e438f603dd31866ee7002856934a',1,'r_scif_uart.h']]], + ['scif_5fuart_5frts_5ftrigger_5f4',['SCIF_UART_RTS_TRIGGER_4',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ab8da90640e88e64a86e25159a0b8683e',1,'r_scif_uart.h']]], + ['scif_5fuart_5frts_5ftrigger_5f6',['SCIF_UART_RTS_TRIGGER_6',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89ad36001398f868aef10e35c4992f37afb',1,'r_scif_uart.h']]], + ['scif_5fuart_5frts_5ftrigger_5f8',['SCIF_UART_RTS_TRIGGER_8',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89abad73882425c2d7ce6934938f6dcaebc',1,'r_scif_uart.h']]], + ['scif_5fuart_5frts_5ftrigger_5fdisable',['SCIF_UART_RTS_TRIGGER_DISABLE',['../group___s_c_i_f___u_a_r_t.html#ggaaee66fa30e6f9f0efb538ecb91a9ad89a6568db3143c7183716313ed5b5825713',1,'r_scif_uart.h']]], + ['spi_5fb_5fbyte_5fswap_5fdisable',['SPI_B_BYTE_SWAP_DISABLE',['../group___s_p_i___b.html#ggac08d1276c78868e2844221679e6be657a6d5c072358543e275822669ab01f3cce',1,'r_spi_b.h']]], + ['spi_5fb_5fbyte_5fswap_5fenable',['SPI_B_BYTE_SWAP_ENABLE',['../group___s_p_i___b.html#ggac08d1276c78868e2844221679e6be657ac9e89947b2b88db4111a3338b6a0213d',1,'r_spi_b.h']]], + ['spi_5fb_5fcommunication_5ffull_5fduplex',['SPI_B_COMMUNICATION_FULL_DUPLEX',['../group___s_p_i___b.html#ggae6d270a0823aeddcacb4a5006546e391ae3954204fe4e76df8af7fcf26786f861',1,'r_spi_b.h']]], + ['spi_5fb_5fcommunication_5ftransmit_5fonly',['SPI_B_COMMUNICATION_TRANSMIT_ONLY',['../group___s_p_i___b.html#ggae6d270a0823aeddcacb4a5006546e391af257ec37578d4668398933881df14b13',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f1',['SPI_B_DELAY_COUNT_1',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea731a04cd52441636e5caaebaae3ea515',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f2',['SPI_B_DELAY_COUNT_2',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea49b6fe18afd4d62f4aea24c3fdac48d2',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f3',['SPI_B_DELAY_COUNT_3',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea4e646f9d36c3b20d6cb0974e7741e3f5',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f4',['SPI_B_DELAY_COUNT_4',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea273da42218915f084f5167cf6d0605b8',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f5',['SPI_B_DELAY_COUNT_5',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea76b1672b4ffcee90924aa69e2faa407d',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f6',['SPI_B_DELAY_COUNT_6',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea679f5372399b3a86e5ba849f4db0504b',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f7',['SPI_B_DELAY_COUNT_7',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea93cd345b5c636461c54b93905fd35ba9',1,'r_spi_b.h']]], + ['spi_5fb_5fdelay_5fcount_5f8',['SPI_B_DELAY_COUNT_8',['../group___s_p_i___b.html#gga355039269814474fa2d7a016207df18ea54a1d1391831fd7afe9fa1839370665d',1,'r_spi_b.h']]], + ['spi_5fb_5fmosi_5fidle_5fvalue_5ffixing_5fdisable',['SPI_B_MOSI_IDLE_VALUE_FIXING_DISABLE',['../group___s_p_i___b.html#gga566538943bf7a87f8ba8add6616d41dba84ed2b07cb18a4e99da47e9d579d7186',1,'r_spi_b.h']]], + ['spi_5fb_5fmosi_5fidle_5fvalue_5ffixing_5fhigh',['SPI_B_MOSI_IDLE_VALUE_FIXING_HIGH',['../group___s_p_i___b.html#gga566538943bf7a87f8ba8add6616d41dba34d640ed44fb4472192b408225814c8e',1,'r_spi_b.h']]], + ['spi_5fb_5fmosi_5fidle_5fvalue_5ffixing_5flow',['SPI_B_MOSI_IDLE_VALUE_FIXING_LOW',['../group___s_p_i___b.html#gga566538943bf7a87f8ba8add6616d41dbadcee5907d986759f1f6d761c093bda65',1,'r_spi_b.h']]], + ['spi_5fb_5fparity_5fmode_5fdisable',['SPI_B_PARITY_MODE_DISABLE',['../group___s_p_i___b.html#gga500334da91202c65f50e5ba4cef38dcfa9a6b54da3fd6b5d0621e95e431582fde',1,'r_spi_b.h']]], + ['spi_5fb_5fparity_5fmode_5feven',['SPI_B_PARITY_MODE_EVEN',['../group___s_p_i___b.html#gga500334da91202c65f50e5ba4cef38dcfa9ce206b45bd35f5038a68ffc58573bdb',1,'r_spi_b.h']]], + ['spi_5fb_5fparity_5fmode_5fodd',['SPI_B_PARITY_MODE_ODD',['../group___s_p_i___b.html#gga500334da91202c65f50e5ba4cef38dcfa7e2ae6f701908c5a9e8c2e791c985222',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5flevel_5fkeep_5fdisable',['SPI_B_SSL_LEVEL_KEEP_DISABLE',['../group___s_p_i___b.html#gga8232020978a99300962810b2e9f9dc86a74c4d474dc8844704917781a861159aa',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5flevel_5fkeep_5fenable',['SPI_B_SSL_LEVEL_KEEP_ENABLE',['../group___s_p_i___b.html#gga8232020978a99300962810b2e9f9dc86af7408a6172952573cc49aae43aff1a43',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fmode_5fclk_5fsyn',['SPI_B_SSL_MODE_CLK_SYN',['../group___s_p_i___b.html#ggaacc78eca6792fd5aeb2aef6a458d8fb7a7f839e42cba15c37a4698c894630739b',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fmode_5fspi',['SPI_B_SSL_MODE_SPI',['../group___s_p_i___b.html#ggaacc78eca6792fd5aeb2aef6a458d8fb7a0cad981405018e399b84bce877574709',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fselect_5fssl0',['SPI_B_SSL_SELECT_SSL0',['../group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373ad96087ca4208105609349dab7e3b2cc4',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fselect_5fssl1',['SPI_B_SSL_SELECT_SSL1',['../group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373a881b605b37191ce8363c1e34bae1bc23',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fselect_5fssl2',['SPI_B_SSL_SELECT_SSL2',['../group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373aeb71783e644812cc42d83f59780ac8e4',1,'r_spi_b.h']]], + ['spi_5fb_5fssl_5fselect_5fssl3',['SPI_B_SSL_SELECT_SSL3',['../group___s_p_i___b.html#gga3d063bb158a1005df5c7bde81538b373a9c1720bf8ab08c5ba6f54fabaa2030f3',1,'r_spi_b.h']]], + ['spi_5fb_5fsslp_5fhigh',['SPI_B_SSLP_HIGH',['../group___s_p_i___b.html#ggaaaaa1d37089a7f8d222de49d8295c116ace10a6e8df5d3a4140ac10cd1a0b293d',1,'r_spi_b.h']]], + ['spi_5fb_5fsslp_5flow',['SPI_B_SSLP_LOW',['../group___s_p_i___b.html#ggaaaaa1d37089a7f8d222de49d8295c116a17d87ee36cef5eb5820a80a88de4138b',1,'r_spi_b.h']]], + ['spi_5fbit_5forder_5flsb_5ffirst',['SPI_BIT_ORDER_LSB_FIRST',['../group___s_p_i___a_p_i.html#gga90f5b39d4872c0c09255af5dcea6cd3ea8b9afce8db1ee080e7f9d65aa1aaeae5',1,'r_spi_api.h']]], + ['spi_5fbit_5forder_5fmsb_5ffirst',['SPI_BIT_ORDER_MSB_FIRST',['../group___s_p_i___a_p_i.html#gga90f5b39d4872c0c09255af5dcea6cd3ea2f62df128ff20f3a9632c7f72732491a',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f10_5fbits',['SPI_BIT_WIDTH_10_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf1aefd864f4f60e49990d4fad936ce21',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f11_5fbits',['SPI_BIT_WIDTH_11_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda88f58430f3fecf9a39ec42943e0bb733',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f12_5fbits',['SPI_BIT_WIDTH_12_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda1a4f404e28d648b608c5711b5552090b',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f13_5fbits',['SPI_BIT_WIDTH_13_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda75ce94ca33921b755ff60ae3cf781d2a',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f14_5fbits',['SPI_BIT_WIDTH_14_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda8de43c8612ae97eaf447c95718e7f461',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f15_5fbits',['SPI_BIT_WIDTH_15_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda05c6f46ea4bb0182d526a6bf451d68e1',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f16_5fbits',['SPI_BIT_WIDTH_16_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda62f8d41fec9f532ac41463037534e582',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f17_5fbits',['SPI_BIT_WIDTH_17_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaaf752ab8e386cd474ee33d83df10ad88',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f18_5fbits',['SPI_BIT_WIDTH_18_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda0f15c66b4564dce0f4811d754186ad12',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f19_5fbits',['SPI_BIT_WIDTH_19_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf8e4023bcac026b1d1930114105da401',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f20_5fbits',['SPI_BIT_WIDTH_20_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaa0e0e171fd2f36e3fa41cfb960842396',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f21_5fbits',['SPI_BIT_WIDTH_21_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdad0a9bce1bfca6895716ee32d198f949d',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f22_5fbits',['SPI_BIT_WIDTH_22_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda2b1e938b3bb827bcacb1a6d74f4c60f7',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f23_5fbits',['SPI_BIT_WIDTH_23_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda303f3f218214fd2a69e4fc2511974024',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f24_5fbits',['SPI_BIT_WIDTH_24_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda5696f5183bed267a4d0023bdc19bb357',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f25_5fbits',['SPI_BIT_WIDTH_25_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda6d44c4678bc27af2e39a8a22e78e6cf0',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f26_5fbits',['SPI_BIT_WIDTH_26_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda56b072a3333dd1637f9b1488f7fb208b',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f27_5fbits',['SPI_BIT_WIDTH_27_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda8df31a66c303df4aba56807aae14c4c9',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f28_5fbits',['SPI_BIT_WIDTH_28_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda11d6d5a759ae229607060f7cf6d8102d',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f29_5fbits',['SPI_BIT_WIDTH_29_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda09bb056981764315ea1d3f979f453129',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f30_5fbits',['SPI_BIT_WIDTH_30_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda0b55867d8d019e07982c011e04f1f4ac',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f31_5fbits',['SPI_BIT_WIDTH_31_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdabe79ca891b6f1b7b60317f5425a6b9cf',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f32_5fbits',['SPI_BIT_WIDTH_32_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf69633d9ed10c0d07cea1ded1b562aed',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f4_5fbits',['SPI_BIT_WIDTH_4_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda6a007a4d6a949aeb0ce52aa4f31d3b88',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f5_5fbits',['SPI_BIT_WIDTH_5_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fda3cca9398fbfe913a5c52cd7359864be6',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f6_5fbits',['SPI_BIT_WIDTH_6_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdae5193130db6bdfdf9bb780abf606beb1',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f7_5fbits',['SPI_BIT_WIDTH_7_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdae54951e7d79149bda93b99f18ea2e7a0',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f8_5fbits',['SPI_BIT_WIDTH_8_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdad6fa8af050db98465c43fd25fb8e8090',1,'r_spi_api.h']]], + ['spi_5fbit_5fwidth_5f9_5fbits',['SPI_BIT_WIDTH_9_BITS',['../group___s_p_i___a_p_i.html#gga6ba4a8eef274a5b227fc2ab6ee61f8fdaf0519b353e4cfb4440088212f4aca8cc',1,'r_spi_api.h']]], + ['spi_5fclk_5fphase_5fedge_5feven',['SPI_CLK_PHASE_EDGE_EVEN',['../group___s_p_i___a_p_i.html#ggae514c0ed7b5a86723aa9451d623d35aba6a695897644ab53c608247fd67209e82',1,'r_spi_api.h']]], + ['spi_5fclk_5fphase_5fedge_5fodd',['SPI_CLK_PHASE_EDGE_ODD',['../group___s_p_i___a_p_i.html#ggae514c0ed7b5a86723aa9451d623d35aba52bdac64004112bc083e6dbcc4f5d9b7',1,'r_spi_api.h']]], + ['spi_5fclk_5fpolarity_5fhigh',['SPI_CLK_POLARITY_HIGH',['../group___s_p_i___a_p_i.html#gga28c820896d3da6e8173ed07f7ca89cb0acb77929e5ac9f1f0fe2adf3aece45958',1,'r_spi_api.h']]], + ['spi_5fclk_5fpolarity_5flow',['SPI_CLK_POLARITY_LOW',['../group___s_p_i___a_p_i.html#gga28c820896d3da6e8173ed07f7ca89cb0a1901f5e3018e5ab36c30d721854d65a2',1,'r_spi_api.h']]], + ['spi_5fevent_5ferr_5fframing',['SPI_EVENT_ERR_FRAMING',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54caeaac307aea3da421c6cc960b146899ce',1,'r_spi_api.h']]], + ['spi_5fevent_5ferr_5fmode_5ffault',['SPI_EVENT_ERR_MODE_FAULT',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca65e04eb27a5e00a37e1cf2b9a3ed4d32',1,'r_spi_api.h']]], + ['spi_5fevent_5ferr_5fmode_5funderrun',['SPI_EVENT_ERR_MODE_UNDERRUN',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca0176b7b836076f7cb6eb900e29a61d0b',1,'r_spi_api.h']]], + ['spi_5fevent_5ferr_5foverrun',['SPI_EVENT_ERR_OVERRUN',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca055c216253298b6af279e64eb542b689',1,'r_spi_api.h']]], + ['spi_5fevent_5ferr_5fparity',['SPI_EVENT_ERR_PARITY',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca1a718a357bce9eb804a3b3a350ca894c',1,'r_spi_api.h']]], + ['spi_5fevent_5ferr_5fread_5foverflow',['SPI_EVENT_ERR_READ_OVERFLOW',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca71a3d6fe1922346e01054bb11993b26a',1,'r_spi_api.h']]], + ['spi_5fevent_5ftransfer_5faborted',['SPI_EVENT_TRANSFER_ABORTED',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca02af67a21905e378eb464ba80117142c',1,'r_spi_api.h']]], + ['spi_5fevent_5ftransfer_5fcomplete',['SPI_EVENT_TRANSFER_COMPLETE',['../group___s_p_i___a_p_i.html#gga6e4960e8b344a8a8ec60f0c11d60f54ca2b456074a7304b0ac4be1cbe69d6dad1',1,'r_spi_api.h']]], + ['spi_5fflash_5faddress_5fbytes_5f3',['SPI_FLASH_ADDRESS_BYTES_3',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga289ef915326b8e75e7d0dd331c2d0797ab4c7c4e57259098044562889ba84709f',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5faddress_5fbytes_5f4',['SPI_FLASH_ADDRESS_BYTES_4',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga289ef915326b8e75e7d0dd331c2d0797a186abc2724fdf1c4fac86d0d83cb5303',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5faddress_5fbytes_5f4_5f4byte_5fread_5fcode',['SPI_FLASH_ADDRESS_BYTES_4_4BYTE_READ_CODE',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga289ef915326b8e75e7d0dd331c2d0797aed752a37fe0a5f0b6dfb6781d67319bb',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdata_5flines_5f1',['SPI_FLASH_DATA_LINES_1',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaae5c8f99b61e37b40b13f52e146f0bc5a724520599856ece833bddc89d146d68e',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdata_5flines_5f2',['SPI_FLASH_DATA_LINES_2',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaae5c8f99b61e37b40b13f52e146f0bc5add8eaf5b2c9b3749d5425cc8596aa564',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdata_5flines_5f4',['SPI_FLASH_DATA_LINES_4',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaae5c8f99b61e37b40b13f52e146f0bc5a78b1e4dfcdf7632ea626d7c1d74dd317',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f0',['SPI_FLASH_DUMMY_CLOCKS_0',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feaed09e7b9b5d0d7b7be12e3677eba59a1',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f1',['SPI_FLASH_DUMMY_CLOCKS_1',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feafac1c75f76f2f0a4027b1544fecb48b4',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f10',['SPI_FLASH_DUMMY_CLOCKS_10',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feab7bb5a56f34654e4d07779b33ed62c4e',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f11',['SPI_FLASH_DUMMY_CLOCKS_11',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea1db4bf767cc8df4e417a13151bf2ef91',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f12',['SPI_FLASH_DUMMY_CLOCKS_12',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feac6f24dbd14abddeb713c6d3b349a2586',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f13',['SPI_FLASH_DUMMY_CLOCKS_13',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea94649b553a8dfb3df7d2dfcf5964c099',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f14',['SPI_FLASH_DUMMY_CLOCKS_14',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fead706a5a9ba8b806ffeb13adc5979823b',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f15',['SPI_FLASH_DUMMY_CLOCKS_15',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea5c661aa719d0f2846d0a4a3bea4e3f37',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f16',['SPI_FLASH_DUMMY_CLOCKS_16',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feab4afe95b4c411fbe7b17252fce3e9776',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f17',['SPI_FLASH_DUMMY_CLOCKS_17',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea34ec51de93041c3710730907347e29ce',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f18',['SPI_FLASH_DUMMY_CLOCKS_18',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feaccd9eab44effb89164d68dc55c73e10f',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f19',['SPI_FLASH_DUMMY_CLOCKS_19',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea32e0c7ab537261464e48be07bda963f0',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f2',['SPI_FLASH_DUMMY_CLOCKS_2',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feab4dcd627f0f4766d0e7fbf76a2160a98',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f20',['SPI_FLASH_DUMMY_CLOCKS_20',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea3490679f14cbe6dca290459020f75c71',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f21',['SPI_FLASH_DUMMY_CLOCKS_21',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fead65e7e0db08823212d8aca1feaae5279',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f22',['SPI_FLASH_DUMMY_CLOCKS_22',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea245eb3e209ead164289e776f8a1c3db5',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f23',['SPI_FLASH_DUMMY_CLOCKS_23',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea27f73312dc3edb2114956dd060693c96',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f24',['SPI_FLASH_DUMMY_CLOCKS_24',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feabaf62da3a1a577e312e0b0be000770cc',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f25',['SPI_FLASH_DUMMY_CLOCKS_25',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea36b30b484ac7ba6d951f42664c17bccc',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f26',['SPI_FLASH_DUMMY_CLOCKS_26',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea6cf608f95e25bdbde4af0fd0caa0844e',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f27',['SPI_FLASH_DUMMY_CLOCKS_27',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feabf7dd140ea6e3b47246e8dd6c2b812bc',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f28',['SPI_FLASH_DUMMY_CLOCKS_28',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feacf3e6ceb051173c3017ce7c715c96c77',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f29',['SPI_FLASH_DUMMY_CLOCKS_29',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea76793d9f869335cb3f6c46c30539d6a9',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f3',['SPI_FLASH_DUMMY_CLOCKS_3',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feaca19d746031e96849279c7f9c9365f73',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f30',['SPI_FLASH_DUMMY_CLOCKS_30',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea047f2b71267ffaee5a6912d58854302b',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f31',['SPI_FLASH_DUMMY_CLOCKS_31',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802feafaa464bb01a99230e64495288b7592c1',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f4',['SPI_FLASH_DUMMY_CLOCKS_4',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea95bef5ad77102b394b5ca8bd38bb73be',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f5',['SPI_FLASH_DUMMY_CLOCKS_5',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea5a76c99649b40742470d90e7b0c8c474',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f6',['SPI_FLASH_DUMMY_CLOCKS_6',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea801c037b43cbd06e07774303a64b0e7e',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f7',['SPI_FLASH_DUMMY_CLOCKS_7',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea941cef4707042e59f64a679053c9d097',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f8',['SPI_FLASH_DUMMY_CLOCKS_8',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea59162e7f319c830647330780799e12d4',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fdummy_5fclocks_5f9',['SPI_FLASH_DUMMY_CLOCKS_9',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggaa1e03cbf0d565f4ae7ad2e41d85802fea85dec8f02ca9a503cc9d554131c51f92',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5f1s_5f1s_5f1s',['SPI_FLASH_PROTOCOL_1S_1S_1S',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a3066069aa9be28b050e57faa29cf5be5',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5f1s_5f2s_5f2s',['SPI_FLASH_PROTOCOL_1S_2S_2S',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a6d421df12293ebbae4fa97b4cf152081',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5f1s_5f4s_5f4s',['SPI_FLASH_PROTOCOL_1S_4S_4S',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535acd8ffe88180ff5b8288dee7739e581a8',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5f2s_5f2s_5f2s',['SPI_FLASH_PROTOCOL_2S_2S_2S',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a668b4a0330a7e2de10b77f25fbea4567',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5f4s_5f4d_5f4d',['SPI_FLASH_PROTOCOL_4S_4D_4D',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a54c52d62f8a1e16099da8ab9a203a1be',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5f4s_5f4s_5f4s',['SPI_FLASH_PROTOCOL_4S_4S_4S',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a21ac68039ffa6d214173ada7fe558a05',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5f8d_5f8d_5f8d',['SPI_FLASH_PROTOCOL_8D_8D_8D',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535acf8fc61585bd2209fc3953d8d2eb4606',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5fdopi',['SPI_FLASH_PROTOCOL_DOPI',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535afd83f451b4164b209b240ebb0f4bb158',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5fextended_5fspi',['SPI_FLASH_PROTOCOL_EXTENDED_SPI',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535a1b7d1595891e2e14a3dc9e718b5188c3',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5fqpi',['SPI_FLASH_PROTOCOL_QPI',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535abf7718fe53c0e4daa1dcad6f4d6d215e',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fprotocol_5fsopi',['SPI_FLASH_PROTOCOL_SOPI',['../group___s_p_i___f_l_a_s_h___a_p_i.html#gga17c347a498a8a9d38ffc36c0de49a535aa8b956dd00ae8afcb2e4497fb1b9ab58',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5ffast_5fread',['SPI_FLASH_READ_MODE_FAST_READ',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544afb88c529acf619eb6e3d0ffb752f8386',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5ffast_5fread_5fdual_5fio',['SPI_FLASH_READ_MODE_FAST_READ_DUAL_IO',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544af6d14d59f1598cf51a11f1629bf2be6c',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5ffast_5fread_5fdual_5foutput',['SPI_FLASH_READ_MODE_FAST_READ_DUAL_OUTPUT',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544aa0d4e30b32b497827cf2924036320193',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5ffast_5fread_5fquad_5fio',['SPI_FLASH_READ_MODE_FAST_READ_QUAD_IO',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544adba367ad1ab093f75047ed401e8c7cd1',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5ffast_5fread_5fquad_5foutput',['SPI_FLASH_READ_MODE_FAST_READ_QUAD_OUTPUT',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544abbf688966c22416d5835ad02cc322187',1,'r_spi_flash_api.h']]], + ['spi_5fflash_5fread_5fmode_5fstandard',['SPI_FLASH_READ_MODE_STANDARD',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ggae289e2a797dab4712dfc07986f6a3544a912b5c3ede07dc88c2241c7abb92fb52',1,'r_spi_flash_api.h']]], + ['spi_5fmode_5ffault_5ferror_5fdisable',['SPI_MODE_FAULT_ERROR_DISABLE',['../group___s_p_i___a_p_i.html#ggad24d01aba46c370e11e3f2df7d9b6776ada1c119cee344e3a48f8ff33350d707b',1,'r_spi_api.h']]], + ['spi_5fmode_5ffault_5ferror_5fenable',['SPI_MODE_FAULT_ERROR_ENABLE',['../group___s_p_i___a_p_i.html#ggad24d01aba46c370e11e3f2df7d9b6776a7966b9fbe2b8517dc1dbec4aeb783f7c',1,'r_spi_api.h']]], + ['spi_5fmode_5fmaster',['SPI_MODE_MASTER',['../group___s_p_i___a_p_i.html#ggac4b206a51636d91c5cffcbcee458c3cbae68a8adf6e5b67a7bdbe9526b15dae99',1,'r_spi_api.h']]], + ['spi_5fmode_5fslave',['SPI_MODE_SLAVE',['../group___s_p_i___a_p_i.html#ggac4b206a51636d91c5cffcbcee458c3cbad1131ed33ad43ab3f667070b04454439',1,'r_spi_api.h']]] ]; diff --git a/search/enumvalues_c.html b/search/enumvalues_c.html new file mode 100644 index 0000000..82ba68a --- /dev/null +++ b/search/enumvalues_c.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/enumvalues_c.js b/search/enumvalues_c.js new file mode 100644 index 0000000..fae0b9a --- /dev/null +++ b/search/enumvalues_c.js @@ -0,0 +1,70 @@ +var searchData= +[ + ['timer_5fdirection_5fdown',['TIMER_DIRECTION_DOWN',['../group___t_i_m_e_r___a_p_i.html#gga8d600bb7885c5490bb7e8f989aa2ff83a6a5c25392297a9e6adcc2a31d210e654',1,'r_timer_api.h']]], + ['timer_5fdirection_5fup',['TIMER_DIRECTION_UP',['../group___t_i_m_e_r___a_p_i.html#gga8d600bb7885c5490bb7e8f989aa2ff83aa6e92d4dfd3483ec2ca281fae716c3db',1,'r_timer_api.h']]], + ['timer_5fevent_5fcapture_5fa',['TIMER_EVENT_CAPTURE_A',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba4bc1252f63147f4a01f7b7ba88afac1d',1,'r_timer_api.h']]], + ['timer_5fevent_5fcapture_5fb',['TIMER_EVENT_CAPTURE_B',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebab7b635fbf34ede5a3e2f55b5a60ac21b',1,'r_timer_api.h']]], + ['timer_5fevent_5fcapture_5fu',['TIMER_EVENT_CAPTURE_U',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebadc420bfc9860b5d461f10e557f9bb043',1,'r_timer_api.h']]], + ['timer_5fevent_5fcapture_5fv',['TIMER_EVENT_CAPTURE_V',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba25cd94f46448cd5938f32c6a25438091',1,'r_timer_api.h']]], + ['timer_5fevent_5fcapture_5fw',['TIMER_EVENT_CAPTURE_W',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba58d231c0801a39b29b761e77dbdae2cf',1,'r_timer_api.h']]], + ['timer_5fevent_5fcrest',['TIMER_EVENT_CREST',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba73d4afde72c0b28a768c8e6d25c050f8',1,'r_timer_api.h']]], + ['timer_5fevent_5fcycle_5fend',['TIMER_EVENT_CYCLE_END',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91ebae310bef0d640f06765c01b4b91a5b84c',1,'r_timer_api.h']]], + ['timer_5fevent_5fdead_5ftime',['TIMER_EVENT_DEAD_TIME',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba83346d837d9c89b9b1bed8c9a0078660',1,'r_timer_api.h']]], + ['timer_5fevent_5foutput_5fcompare_5f0',['TIMER_EVENT_OUTPUT_COMPARE_0',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba5935edbb3d0b6d8b6f74a8402e758adf',1,'r_timer_api.h']]], + ['timer_5fevent_5foutput_5fcompare_5f1',['TIMER_EVENT_OUTPUT_COMPARE_1',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba1618c4f47f889499fe72ef5a3c2cf4eb',1,'r_timer_api.h']]], + ['timer_5fevent_5ftrough',['TIMER_EVENT_TROUGH',['../group___t_i_m_e_r___a_p_i.html#ggac3bee51f7c9078f794c5ac19522f91eba83cb2de8ac629fcd95525e94b94089f0',1,'r_timer_api.h']]], + ['timer_5fmode_5fone_5fshot',['TIMER_MODE_ONE_SHOT',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a140f07675d67258a7ca9a95a9a793e3a',1,'r_timer_api.h']]], + ['timer_5fmode_5fone_5fshot_5fpulse',['TIMER_MODE_ONE_SHOT_PULSE',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2afe99f13968cabc479896dfd0bc67fb6a',1,'r_timer_api.h']]], + ['timer_5fmode_5fperiodic',['TIMER_MODE_PERIODIC',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a78838cf8d728f8c64bb8012d522d1e2e',1,'r_timer_api.h']]], + ['timer_5fmode_5fpwm',['TIMER_MODE_PWM',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2aca44e952a6930f39ac05393522392eac',1,'r_timer_api.h']]], + ['timer_5fmode_5ftriangle_5fwave_5fasymmetric_5fpwm',['TIMER_MODE_TRIANGLE_WAVE_ASYMMETRIC_PWM',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a204001ad413e9ad0db08a66d004a555a',1,'r_timer_api.h']]], + ['timer_5fmode_5ftriangle_5fwave_5fasymmetric_5fpwm_5fmode3',['TIMER_MODE_TRIANGLE_WAVE_ASYMMETRIC_PWM_MODE3',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2aa2eb9fa5372856039d5d53dfbbbe6040',1,'r_timer_api.h']]], + ['timer_5fmode_5ftriangle_5fwave_5fsymmetric_5fpwm',['TIMER_MODE_TRIANGLE_WAVE_SYMMETRIC_PWM',['../group___t_i_m_e_r___a_p_i.html#gga6d4cd64aed5c0009ac26803efc9c13b2a6a3c462f9e9cc1b26ab68f38efd79b14',1,'r_timer_api.h']]], + ['timer_5fsource_5fdiv_5f1',['TIMER_SOURCE_DIV_1',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada387f7122153dd7d860762a6f73485fb8',1,'r_timer_api.h']]], + ['timer_5fsource_5fdiv_5f1024',['TIMER_SOURCE_DIV_1024',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adaee99148dc7c32f0764c7cb3b3e45ca30',1,'r_timer_api.h']]], + ['timer_5fsource_5fdiv_5f128',['TIMER_SOURCE_DIV_128',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada8828520a3958955a4e2835785787c801',1,'r_timer_api.h']]], + ['timer_5fsource_5fdiv_5f16',['TIMER_SOURCE_DIV_16',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adae36be19b8ae1b3b3918e39c738e62c82',1,'r_timer_api.h']]], + ['timer_5fsource_5fdiv_5f2',['TIMER_SOURCE_DIV_2',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adafa4194764952e26c833bdaa26587f245',1,'r_timer_api.h']]], + ['timer_5fsource_5fdiv_5f256',['TIMER_SOURCE_DIV_256',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada6680e947eb6455f9d0ee007645ea707d',1,'r_timer_api.h']]], + ['timer_5fsource_5fdiv_5f32',['TIMER_SOURCE_DIV_32',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adacccb03dab14c93d036cdff662b1686a1',1,'r_timer_api.h']]], + ['timer_5fsource_5fdiv_5f4',['TIMER_SOURCE_DIV_4',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada6cf9f5fb4095fd15027e6d06a811a3f5',1,'r_timer_api.h']]], + ['timer_5fsource_5fdiv_5f512',['TIMER_SOURCE_DIV_512',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada2bcc6bb5346907da7e45b74449588132',1,'r_timer_api.h']]], + ['timer_5fsource_5fdiv_5f64',['TIMER_SOURCE_DIV_64',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5ada1cc7525fed9c5374c3a530e17453e670',1,'r_timer_api.h']]], + ['timer_5fsource_5fdiv_5f8',['TIMER_SOURCE_DIV_8',['../group___t_i_m_e_r___a_p_i.html#gga820b425b44d7b551afd1797ecca7a5adaa2da1d2d669ae1f3baf715e96a803be3',1,'r_timer_api.h']]], + ['timer_5fstate_5fcounting',['TIMER_STATE_COUNTING',['../group___t_i_m_e_r___a_p_i.html#gga1360292eee5d5a5288646fd1eb37c83eaba4825c92c8291b64e827943330007b7',1,'r_timer_api.h']]], + ['timer_5fstate_5fstopped',['TIMER_STATE_STOPPED',['../group___t_i_m_e_r___a_p_i.html#gga1360292eee5d5a5288646fd1eb37c83ea92e859c83369128798902fd7a86a3320',1,'r_timer_api.h']]], + ['timer_5fvariant_5f16_5fbit',['TIMER_VARIANT_16_BIT',['../group___t_i_m_e_r___a_p_i.html#ggaa3525eef2e1fa1bc8809b2d3aaf0de5dab2eba551f1a7140323af63a66a137b49',1,'r_timer_api.h']]], + ['timer_5fvariant_5f32_5fbit',['TIMER_VARIANT_32_BIT',['../group___t_i_m_e_r___a_p_i.html#ggaa3525eef2e1fa1bc8809b2d3aaf0de5da7dddd2791567467dc7bcf74ca2fc2cbb',1,'r_timer_api.h']]], + ['transfer_5faddr_5fmode_5fdecremented',['TRANSFER_ADDR_MODE_DECREMENTED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a56a87e1587844119831414f3d5e6d761',1,'r_transfer_api.h']]], + ['transfer_5faddr_5fmode_5ffixed',['TRANSFER_ADDR_MODE_FIXED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47',1,'TRANSFER_ADDR_MODE_FIXED(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47',1,'TRANSFER_ADDR_MODE_FIXED(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51abf18f9b3701e9e91f44055ee47d0ca47',1,'TRANSFER_ADDR_MODE_FIXED(): bsp_override.h']]], + ['transfer_5faddr_5fmode_5fincremented',['TRANSFER_ADDR_MODE_INCREMENTED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad',1,'TRANSFER_ADDR_MODE_INCREMENTED(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad',1,'TRANSFER_ADDR_MODE_INCREMENTED(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51a7665741e25c4cc78fd24745efbd2eaad',1,'TRANSFER_ADDR_MODE_INCREMENTED(): bsp_override.h']]], + ['transfer_5faddr_5fmode_5foffset',['TRANSFER_ADDR_MODE_OFFSET',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadce62e6c2407d6ffd5a94636736f7c51ab8b3f8ce28fb6f7a57a1b87db0d612c2',1,'r_transfer_api.h']]], + ['transfer_5fchain_5fmode_5fdisabled',['TRANSFER_CHAIN_MODE_DISABLED',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga68f81dc8b9ca46fbe3a1e556c020436dae974453c306b4959252905e362d75067',1,'r_transfer_api.h']]], + ['transfer_5fchain_5fmode_5feach',['TRANSFER_CHAIN_MODE_EACH',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga68f81dc8b9ca46fbe3a1e556c020436dadab837d29a543149d35ed2fd28d8e4e8',1,'r_transfer_api.h']]], + ['transfer_5fchain_5fmode_5fend',['TRANSFER_CHAIN_MODE_END',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga68f81dc8b9ca46fbe3a1e556c020436dab853bdecc90c476b995644c273e0ee75',1,'r_transfer_api.h']]], + ['transfer_5firq_5feach',['TRANSFER_IRQ_EACH',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggad71bdadb7f486bb5d3ca6ff508dc0b08a0929782b61686db69e12b3cb18175b35',1,'r_transfer_api.h']]], + ['transfer_5firq_5fend',['TRANSFER_IRQ_END',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ggad71bdadb7f486bb5d3ca6ff508dc0b08ada378ad830e44cc0c25d4fe2413e11de',1,'r_transfer_api.h']]], + ['transfer_5fmode_5fblock',['TRANSFER_MODE_BLOCK',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55',1,'TRANSFER_MODE_BLOCK(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55',1,'TRANSFER_MODE_BLOCK(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992faa4f65de2d9454af406f60172ff858d55',1,'TRANSFER_MODE_BLOCK(): bsp_override.h']]], + ['transfer_5fmode_5fnormal',['TRANSFER_MODE_NORMAL',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d',1,'TRANSFER_MODE_NORMAL(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d',1,'TRANSFER_MODE_NORMAL(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fada90d8a89f98ff82475383b14141b08d',1,'TRANSFER_MODE_NORMAL(): bsp_override.h']]], + ['transfer_5fmode_5frepeat',['TRANSFER_MODE_REPEAT',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fa607c41bfd08797c08a5ee9bd4dfb9c8b',1,'r_transfer_api.h']]], + ['transfer_5fmode_5frepeat_5fblock',['TRANSFER_MODE_REPEAT_BLOCK',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gadfb7c2a6a73bfdf993e50505aa92992fafb43c6e62b61f0dbb9a5bcd5575e79e2',1,'r_transfer_api.h']]], + ['transfer_5frepeat_5farea_5fdestination',['TRANSFER_REPEAT_AREA_DESTINATION',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga769464d2068881ccb44573c96167812ba77aeeab30b003de23742e40a57f19239',1,'r_transfer_api.h']]], + ['transfer_5frepeat_5farea_5fsource',['TRANSFER_REPEAT_AREA_SOURCE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga769464d2068881ccb44573c96167812ba2002ef7bbc49f7c9ebfac1618ba3c391',1,'r_transfer_api.h']]], + ['transfer_5fsize_5f128_5fbyte',['TRANSFER_SIZE_128_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12aa5cbd2b9aced79bfb6b5858f8ebbe011',1,'TRANSFER_SIZE_128_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12aa5cbd2b9aced79bfb6b5858f8ebbe011',1,'TRANSFER_SIZE_128_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f16_5fbyte',['TRANSFER_SIZE_16_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a12fac298210b545231c2c38dfafd07a0',1,'TRANSFER_SIZE_16_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a12fac298210b545231c2c38dfafd07a0',1,'TRANSFER_SIZE_16_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f1_5fbyte',['TRANSFER_SIZE_1_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21',1,'TRANSFER_SIZE_1_BYTE(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21',1,'TRANSFER_SIZE_1_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12accfeb24892ec24e42ccf14e4d4896c21',1,'TRANSFER_SIZE_1_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f2_5fbyte',['TRANSFER_SIZE_2_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f',1,'TRANSFER_SIZE_2_BYTE(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f',1,'TRANSFER_SIZE_2_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a8b6b33a085b51ea2eeed1ef119de562f',1,'TRANSFER_SIZE_2_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f32_5fbyte',['TRANSFER_SIZE_32_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a7568398002399c1e898dab6f8e8a0418',1,'TRANSFER_SIZE_32_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a7568398002399c1e898dab6f8e8a0418',1,'TRANSFER_SIZE_32_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f4_5fbyte',['TRANSFER_SIZE_4_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412',1,'TRANSFER_SIZE_4_BYTE(): r_transfer_api.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412',1,'TRANSFER_SIZE_4_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a18482bfa86e737cde78042be4db54412',1,'TRANSFER_SIZE_4_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f64_5fbyte',['TRANSFER_SIZE_64_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a4284e820735faa08a0702f0d430f2924',1,'TRANSFER_SIZE_64_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a4284e820735faa08a0702f0d430f2924',1,'TRANSFER_SIZE_64_BYTE(): bsp_override.h']]], + ['transfer_5fsize_5f8_5fbyte',['TRANSFER_SIZE_8_BYTE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a5bb02177f10ea6a06f9fdf3d8f353d6f',1,'TRANSFER_SIZE_8_BYTE(): bsp_override.h'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ga6c224e5afb174f3f6ea9eddbb9da8b12a5bb02177f10ea6a06f9fdf3d8f353d6f',1,'TRANSFER_SIZE_8_BYTE(): bsp_override.h']]], + ['transfer_5fstart_5fmode_5frepeat',['TRANSFER_START_MODE_REPEAT',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga11917a0ab2cb8b878937c97691b07fd9aa9b89e5adf9e24c9203f9fdf6c6aa331',1,'r_transfer_api.h']]], + ['transfer_5fstart_5fmode_5fsingle',['TRANSFER_START_MODE_SINGLE',['../group___t_r_a_n_s_f_e_r___a_p_i.html#gga11917a0ab2cb8b878937c97691b07fd9aca210983d734307a694af55fbf11ed7e',1,'r_transfer_api.h']]], + ['tsu_5fb_5faverage_5feight',['TSU_B_AVERAGE_EIGHT',['../group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29afa39988bdc4f045e0cae55754afe8d14',1,'r_tsu_b.h']]], + ['tsu_5fb_5faverage_5ffour',['TSU_B_AVERAGE_FOUR',['../group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29af001e8665548dd625eff4fe09f1d0102',1,'r_tsu_b.h']]], + ['tsu_5fb_5faverage_5foff',['TSU_B_AVERAGE_OFF',['../group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29a0c5fc7fe1db6dc27007a10395c080d74',1,'r_tsu_b.h']]], + ['tsu_5fb_5faverage_5ftwo',['TSU_B_AVERAGE_TWO',['../group___t_s_u___b.html#gga5ab9606f8b75e848e5743dd79d08aa29a77418279f9f52d5ca8ffa8418e42d8bf',1,'r_tsu_b.h']]], + ['tsu_5fb_5fcompare_5fcfg_5fdisable',['TSU_B_COMPARE_CFG_DISABLE',['../group___t_s_u___b.html#ggae1e53473fd2f49e840ce26b43131aa29a21127683f9dd0b510c15ebab44d7bf8a',1,'r_tsu_b.h']]], + ['tsu_5fb_5fcompare_5fcfg_5finside',['TSU_B_COMPARE_CFG_INSIDE',['../group___t_s_u___b.html#ggae1e53473fd2f49e840ce26b43131aa29aabcb24a3f71042eff1118cb3ebf8b318',1,'r_tsu_b.h']]], + ['tsu_5fb_5fcompare_5fcfg_5foutside',['TSU_B_COMPARE_CFG_OUTSIDE',['../group___t_s_u___b.html#ggae1e53473fd2f49e840ce26b43131aa29ab9a284ff26dcbb57af3e9278b7882702',1,'r_tsu_b.h']]] +]; diff --git a/search/enumvalues_d.html b/search/enumvalues_d.html new file mode 100644 index 0000000..8516692 --- /dev/null +++ b/search/enumvalues_d.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/enumvalues_d.js b/search/enumvalues_d.js new file mode 100644 index 0000000..991e29c --- /dev/null +++ b/search/enumvalues_d.js @@ -0,0 +1,22 @@ +var searchData= +[ + ['uart_5fdata_5fbits_5f7',['UART_DATA_BITS_7',['../group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798a317e473e32315f1632829d176fbfd545',1,'r_uart_api.h']]], + ['uart_5fdata_5fbits_5f8',['UART_DATA_BITS_8',['../group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798ad768185f3773e2d5953b28f3345561db',1,'r_uart_api.h']]], + ['uart_5fdata_5fbits_5f9',['UART_DATA_BITS_9',['../group___u_a_r_t___a_p_i.html#ggadc68b8fd9ded3990f84129df23fee798a57a012c58e476a76ed8f54db28d94810',1,'r_uart_api.h']]], + ['uart_5fdir_5frx',['UART_DIR_RX',['../group___u_a_r_t___a_p_i.html#ggac36c5a0dffa37b418fb9425a76c57740a01ae18be82be0fa74527fe8f23499895',1,'r_uart_api.h']]], + ['uart_5fdir_5frx_5ftx',['UART_DIR_RX_TX',['../group___u_a_r_t___a_p_i.html#ggac36c5a0dffa37b418fb9425a76c57740a91dcd653bcf1b052bd7bd9ee7210ad83',1,'r_uart_api.h']]], + ['uart_5fdir_5ftx',['UART_DIR_TX',['../group___u_a_r_t___a_p_i.html#ggac36c5a0dffa37b418fb9425a76c57740a915c39567f2bb1393e506373749767e1',1,'r_uart_api.h']]], + ['uart_5fevent_5fbreak_5fdetect',['UART_EVENT_BREAK_DETECT',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da089ae47ff2f451fdc369c8d04c50c8ea',1,'r_uart_api.h']]], + ['uart_5fevent_5ferr_5fframing',['UART_EVENT_ERR_FRAMING',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da92ecf40776a80db956fb45b8a5ae02cb',1,'r_uart_api.h']]], + ['uart_5fevent_5ferr_5foverflow',['UART_EVENT_ERR_OVERFLOW',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8dab21c836f6c9fa84f41fc41a8cf9c2d1e',1,'r_uart_api.h']]], + ['uart_5fevent_5ferr_5fparity',['UART_EVENT_ERR_PARITY',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da2ea6d7a4ff18bf123facf225a6954329',1,'r_uart_api.h']]], + ['uart_5fevent_5frx_5fchar',['UART_EVENT_RX_CHAR',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da794925d1c74f16bde84152508e66a6bd',1,'r_uart_api.h']]], + ['uart_5fevent_5frx_5fcomplete',['UART_EVENT_RX_COMPLETE',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8dabe2b1428416bd300ee15a2608df30837',1,'r_uart_api.h']]], + ['uart_5fevent_5ftx_5fcomplete',['UART_EVENT_TX_COMPLETE',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da56867c1db03ea3ee2c704604ac94b767',1,'r_uart_api.h']]], + ['uart_5fevent_5ftx_5fdata_5fempty',['UART_EVENT_TX_DATA_EMPTY',['../group___u_a_r_t___a_p_i.html#ggaf739f04f788018b4b59fb7ad75da0a8da03e2fd44218712f18f3cceb0a0ad7442',1,'r_uart_api.h']]], + ['uart_5fparity_5feven',['UART_PARITY_EVEN',['../group___u_a_r_t___a_p_i.html#gga6bcc37e31dd40c204b4ac6f6189e8878ad908a637b1dd23f93b149dd2d8bdfdb8',1,'r_uart_api.h']]], + ['uart_5fparity_5fodd',['UART_PARITY_ODD',['../group___u_a_r_t___a_p_i.html#gga6bcc37e31dd40c204b4ac6f6189e8878ad90cc425f5ba447773a44a75be6593e2',1,'r_uart_api.h']]], + ['uart_5fparity_5foff',['UART_PARITY_OFF',['../group___u_a_r_t___a_p_i.html#gga6bcc37e31dd40c204b4ac6f6189e8878acdbc0c60cf74e4febad92afc44b88641',1,'r_uart_api.h']]], + ['uart_5fstop_5fbits_5f1',['UART_STOP_BITS_1',['../group___u_a_r_t___a_p_i.html#gga6da57a73bbdbf830b845d4116f8341d7a44b3bfbe90aebe2b23227f5c011f41cc',1,'r_uart_api.h']]], + ['uart_5fstop_5fbits_5f2',['UART_STOP_BITS_2',['../group___u_a_r_t___a_p_i.html#gga6da57a73bbdbf830b845d4116f8341d7a00c73c92b3d624bc86cfa63636dd99b3',1,'r_uart_api.h']]] +]; diff --git a/search/enumvalues_e.html b/search/enumvalues_e.html new file mode 100644 index 0000000..d95adb6 --- /dev/null +++ b/search/enumvalues_e.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/enumvalues_e.js b/search/enumvalues_e.js new file mode 100644 index 0000000..c98ab72 --- /dev/null +++ b/search/enumvalues_e.js @@ -0,0 +1,37 @@ +var searchData= +[ + ['wdt_5fclock_5fdivision_5f1',['WDT_CLOCK_DIVISION_1',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089adced8472c808262dd429d0151c3b2797',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f128',['WDT_CLOCK_DIVISION_128',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a0746eb0ddedfafa127e0e42b64136661',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f16',['WDT_CLOCK_DIVISION_16',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089ad8412b1a44d913b0ed2d8a00a7b7ebbd',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f2048',['WDT_CLOCK_DIVISION_2048',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a723dd4048f03d861e42890fc8bd0913a',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f256',['WDT_CLOCK_DIVISION_256',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a85b86587793408cd7b12fc4eb18e93c0',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f32',['WDT_CLOCK_DIVISION_32',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a1387532a717e5c3e03489a1eb4319b3b',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f4',['WDT_CLOCK_DIVISION_4',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a676cc419b2a32f1d5bc621da6c27eed8',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f512',['WDT_CLOCK_DIVISION_512',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089adf7e020a0f0702f5c0bbb2cd5bdb4a67',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f64',['WDT_CLOCK_DIVISION_64',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089aad499bbad13bd81c4246370b18470955',1,'r_wdt_api.h']]], + ['wdt_5fclock_5fdivision_5f8192',['WDT_CLOCK_DIVISION_8192',['../group___w_d_t___a_p_i.html#gga6b0f563a6311763e6204add68a018089a379cad22ab77f5b144788ae4fb82e7af',1,'r_wdt_api.h']]], + ['wdt_5freset_5fcontrol_5fnmi',['WDT_RESET_CONTROL_NMI',['../group___w_d_t___a_p_i.html#gga7624d80dde311cb1289f558ea464fa63a9025ac51aeed3fac87e3733965b06215',1,'r_wdt_api.h']]], + ['wdt_5freset_5fcontrol_5freset',['WDT_RESET_CONTROL_RESET',['../group___w_d_t___a_p_i.html#gga7624d80dde311cb1289f558ea464fa63a71f32c409072999582d4e4afb789b096',1,'r_wdt_api.h']]], + ['wdt_5fstatus_5fno_5ferror',['WDT_STATUS_NO_ERROR',['../group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935a0f1543f47bca7e987fe86ab04dd16e46',1,'r_wdt_api.h']]], + ['wdt_5fstatus_5foverflow',['WDT_STATUS_OVERFLOW',['../group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935ad930e4c90d18d3d5caebe11d602dd630',1,'r_wdt_api.h']]], + ['wdt_5fstatus_5frefresh_5ferror',['WDT_STATUS_REFRESH_ERROR',['../group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935a4b045e0cf22adf889286b3184bb212bf',1,'r_wdt_api.h']]], + ['wdt_5fstatus_5funderflow',['WDT_STATUS_UNDERFLOW',['../group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935a67430b92ca3930bb185d76449309004b',1,'r_wdt_api.h']]], + ['wdt_5fstatus_5funderflow_5fand_5frefresh_5ferror',['WDT_STATUS_UNDERFLOW_AND_REFRESH_ERROR',['../group___w_d_t___a_p_i.html#gga46c1d04f78b75ad1ad21314cac574935ae49ea1e31c6a71b8acf1617f144dfcad',1,'r_wdt_api.h']]], + ['wdt_5fstop_5fcontrol_5fdisable',['WDT_STOP_CONTROL_DISABLE',['../group___w_d_t___a_p_i.html#gga803dd68cafce3a3d9ca5630b8c4838daac3a7223139a46596bf979e607c7c26f2',1,'r_wdt_api.h']]], + ['wdt_5fstop_5fcontrol_5fenable',['WDT_STOP_CONTROL_ENABLE',['../group___w_d_t___a_p_i.html#gga803dd68cafce3a3d9ca5630b8c4838daa7dda22fd5a14857cc859222620b71368',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f1024',['WDT_TIMEOUT_1024',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76caadc98a5e3f05b010d9a4d8ce9b3c5c8f',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f128',['WDT_TIMEOUT_128',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76ca03952a0bb059b3ed8291d777d3ac36ff',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f16384',['WDT_TIMEOUT_16384',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76cacd016302c00b39880d3828d18467833e',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f2048',['WDT_TIMEOUT_2048',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76ca228d47dafe4a9026129b377155831621',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f4096',['WDT_TIMEOUT_4096',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76ca43fb8078a97d4935af9a4c49a8e268d1',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f512',['WDT_TIMEOUT_512',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76cadf9f61c33547bd76c982a981e428b27d',1,'r_wdt_api.h']]], + ['wdt_5ftimeout_5f8192',['WDT_TIMEOUT_8192',['../group___w_d_t___a_p_i.html#gga880fcf63a5220c6618a0cf380268a76cafb02fadb0bfdbf020583711d850670bf',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fend_5f0',['WDT_WINDOW_END_0',['../group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61ad9fd7f9a41a89a9d67f0b8c37cbfdc12',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fend_5f25',['WDT_WINDOW_END_25',['../group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61a77562b1a64c2bf2e4385c3fad6f439c6',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fend_5f50',['WDT_WINDOW_END_50',['../group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61ab9dbf43bd2759f8fbb331dfb86dcc576',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fend_5f75',['WDT_WINDOW_END_75',['../group___w_d_t___a_p_i.html#gga62d4360afabd1652aa7a1b9f624d7f61a35cf30e3a9e6f2f3c76726a7acc753ec',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fstart_5f100',['WDT_WINDOW_START_100',['../group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633a8677bab323b9b04737bf003bc8c68703',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fstart_5f25',['WDT_WINDOW_START_25',['../group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633a54d48a740d3d733e9011271800984229',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fstart_5f50',['WDT_WINDOW_START_50',['../group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633af678a5920dbf49ca5cc9b235fe2b50a6',1,'r_wdt_api.h']]], + ['wdt_5fwindow_5fstart_5f75',['WDT_WINDOW_START_75',['../group___w_d_t___a_p_i.html#gga9e0c1284f5d75d4a090d988536e3f633ab268e222207739405538345ae67483c8',1,'r_wdt_api.h']]] +]; diff --git a/search/enumvalues_f.html b/search/enumvalues_f.html new file mode 100644 index 0000000..1cced59 --- /dev/null +++ b/search/enumvalues_f.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/enumvalues_f.js b/search/enumvalues_f.js new file mode 100644 index 0000000..c534262 --- /dev/null +++ b/search/enumvalues_f.js @@ -0,0 +1,34 @@ +var searchData= +[ + ['xspi_5fqspi_5fchip_5fselect_5f0',['XSPI_QSPI_CHIP_SELECT_0',['../group___x_s_p_i___q_s_p_i.html#gga9605c020c75bee5805972f74d27ffd2eacf34145ba6a0b294cbdeeab976c150bf',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fchip_5fselect_5f1',['XSPI_QSPI_CHIP_SELECT_1',['../group___x_s_p_i___q_s_p_i.html#gga9605c020c75bee5805972f74d27ffd2eaa1bbf9d876e73b7627f55c2deaf857c9',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f1',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_1',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a4543d64f407a096d164d15e3365603e8',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f10',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_10',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a89788712416b1af5ccd9082d62d30b43',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f11',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_11',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a5fd5dda031287b82ff5dad2e40dffde4',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f12',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_12',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a58c5ad4643d6d653624543356554ee3c',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f13',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_13',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a6439af4e411e4d03f3c8d3f15722e9dd',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f14',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_14',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a8ceda90ab2581dba8ad9529b5fae8145',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f15',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_15',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a7700b8b6feef66da31cac305527bc77d',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f16',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_16',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a41c8bb40efff3fa720011b912c303f47',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f2',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_2',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a760752bfe782b735d449bc5c679e470b',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f3',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_3',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a7387eebf4b950e72afb60bbbea754971',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f4',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_4',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a79078d67905481f14a81061cdd17e9f1',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f5',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_5',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19aecaadb970c633b9360fdfce5e5c7c527',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f6',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_6',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19ab03ff44395500c6b4f9d4bcca356bac2',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f7',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_7',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a6f389a6a78b28558ed2c8a5a830d64a6',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f8',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_8',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19a86bb1c93ed0d8bc69e66a31adbe493d8',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcommand_5finterval_5fclocks_5f9',['XSPI_QSPI_COMMAND_INTERVAL_CLOCKS_9',['../group___x_s_p_i___q_s_p_i.html#gga8428f80201f33286966d2a84e0fb1f19acf18d60fd2f71e556ada7debeb513525',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcs_5fpulldown_5fclocks_5f1',['XSPI_QSPI_CS_PULLDOWN_CLOCKS_1',['../group___x_s_p_i___q_s_p_i.html#ggae60133dc12f4f7ae05fff3e117a2669aab743d88ab010960508bead3d47c4c117',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcs_5fpulldown_5fclocks_5fno_5fextension',['XSPI_QSPI_CS_PULLDOWN_CLOCKS_NO_EXTENSION',['../group___x_s_p_i___q_s_p_i.html#ggae60133dc12f4f7ae05fff3e117a2669aae9c45150b1ef316f0de9bccb1fc3f270',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcs_5fpullup_5fclocks_5f1',['XSPI_QSPI_CS_PULLUP_CLOCKS_1',['../group___x_s_p_i___q_s_p_i.html#gga50d177e87a5a9279f0e1e37d73f7a58fa11ba4008e1f95981db11d99da3aeca65',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fcs_5fpullup_5fclocks_5fno_5fextension',['XSPI_QSPI_CS_PULLUP_CLOCKS_NO_EXTENSION',['../group___x_s_p_i___q_s_p_i.html#gga50d177e87a5a9279f0e1e37d73f7a58fa3d1564719853f7d8fa5f0bcea21107c0',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5f16mb',['XSPI_QSPI_MEMORY_SIZE_16MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a9ac43acaa7d21c3ba76800735a579208',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5f1mb',['XSPI_QSPI_MEMORY_SIZE_1MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a8afb5fb7a7a5339b758f53fceb91268b',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5f2mb',['XSPI_QSPI_MEMORY_SIZE_2MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a0e615937696c1873b137727947c525f5',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5f32mb',['XSPI_QSPI_MEMORY_SIZE_32MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a67f21ed518757add425655b28b865f4c',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5f4mb',['XSPI_QSPI_MEMORY_SIZE_4MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a1551217a1fa6407d02e750cefc928d54',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5f64mb',['XSPI_QSPI_MEMORY_SIZE_64MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a2c0d20ccd99bfe1c7171778ebb3818f1',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fmemory_5fsize_5f8mb',['XSPI_QSPI_MEMORY_SIZE_8MB',['../group___x_s_p_i___q_s_p_i.html#gga760382ea0170990436140690f193bd65a214e6e08bb13c027a5f5d94464d263b6',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fprefetch_5ffunction_5fdisable',['XSPI_QSPI_PREFETCH_FUNCTION_DISABLE',['../group___x_s_p_i___q_s_p_i.html#gga8c59ecaa03a56fa5db80924c81ff6fccafd2c195951167330e5b7a90ae262d361',1,'r_xspi_qspi.h']]], + ['xspi_5fqspi_5fprefetch_5ffunction_5fenable',['XSPI_QSPI_PREFETCH_FUNCTION_ENABLE',['../group___x_s_p_i___q_s_p_i.html#gga8c59ecaa03a56fa5db80924c81ff6fcca152b74d0c0cf97d6a36343f724a8d6ee',1,'r_xspi_qspi.h']]] +]; diff --git a/search/functions_0.js b/search/functions_0.js index 0fc9be9..a729cdf 100644 --- a/search/functions_0.js +++ b/search/functions_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['_5f_5fattribute_5f_5f',['__attribute__',['../group___b_s_p___m_c_u.html#ga1300de3839c776da2d29a95c154e0c7a',1,'systems.c']]] + ['_5f_5fattribute_5f_5f',['__attribute__',['../group___b_s_p___m_c_u.html#ga2804a023941a956288c32ad08b2cf59e',1,'systems.c']]] ]; diff --git a/search/functions_1.js b/search/functions_1.js index b28797f..cd6940a 100644 --- a/search/functions_1.js +++ b/search/functions_1.js @@ -1,5 +1,4 @@ var searchData= [ - ['default_5fhandler',['Default_Handler',['../group___b_s_p___m_c_u.html#ga4e0c522c1bb26af24accaf20e6b87d12',1,'startup.c']]], - ['default_5fhandler_5fs',['Default_Handler_S',['../group___b_s_p___m_c_u.html#gae8a3e014a73051cf3acf3ff54e54cdbc',1,'startups.c']]] + ['bsp_5falign_5fvariable',['BSP_ALIGN_VARIABLE',['../group___i3_c___b.html#ac04ccc58562da71c2a9381b35acdf0d3',1,'i3c_b_instance_ctrl_t']]] ]; diff --git a/search/functions_2.js b/search/functions_2.js index 8c7d1fd..b28797f 100644 --- a/search/functions_2.js +++ b/search/functions_2.js @@ -1,5 +1,5 @@ var searchData= [ - ['nmi_5fhandler_5fns',['NMI_Handler_NS',['../group___b_s_p___m_c_u.html#gafdfd4e716271df720f7abe57bdca2e5d',1,'startup.c']]], - ['nmi_5fhandler_5fs',['NMI_Handler_S',['../group___b_s_p___m_c_u.html#ga44d44e7bd7f7e06f05b1f420479d3e74',1,'startups.c']]] + ['default_5fhandler',['Default_Handler',['../group___b_s_p___m_c_u.html#ga4e0c522c1bb26af24accaf20e6b87d12',1,'startup.c']]], + ['default_5fhandler_5fs',['Default_Handler_S',['../group___b_s_p___m_c_u.html#gae8a3e014a73051cf3acf3ff54e54cdbc',1,'startups.c']]] ]; diff --git a/search/functions_3.js b/search/functions_3.js index 77bf6cf..8c7d1fd 100644 --- a/search/functions_3.js +++ b/search/functions_3.js @@ -1,174 +1,5 @@ var searchData= [ - ['r_5fbsp_5fgroupirqwrite',['R_BSP_GroupIrqWrite',['../group___b_s_p___m_c_u.html#gaed27ea47f0c85a1af9bb515600d5e2ba',1,'R_BSP_GroupIrqWrite(bsp_grp_irq_t irq, void(*p_callback)(bsp_grp_irq_t irq)): bsp_group_irq.c'],['../group___b_s_p___m_c_u.html#gaed27ea47f0c85a1af9bb515600d5e2ba',1,'R_BSP_GroupIrqWrite(bsp_grp_irq_t irq, void(*p_callback)(bsp_grp_irq_t irq)): bsp_group_irq.c']]], - ['r_5fbsp_5fnonsecureenter',['R_BSP_NonSecureEnter',['../group___b_s_p___m_c_u.html#gae05dfbdf57eb8b0bea46f555a2845d7b',1,'R_BSP_NonSecureEnter(void): bsp_security.c'],['../group___b_s_p___m_c_u.html#gae05dfbdf57eb8b0bea46f555a2845d7b',1,'R_BSP_NonSecureEnter(void): bsp_security.c']]], - ['r_5fbsp_5fpinaccessdisable',['R_BSP_PinAccessDisable',['../group___b_s_p___i_o.html#gab5aab592b5fbbfa18d542c0812850b98',1,'bsp_io.h']]], - ['r_5fbsp_5fpinaccessenable',['R_BSP_PinAccessEnable',['../group___b_s_p___i_o.html#ga0ad2123f7a5152cf108883163581f11b',1,'bsp_io.h']]], - ['r_5fbsp_5fpinread',['R_BSP_PinRead',['../group___b_s_p___i_o.html#ga6764c3fac52569cadd44b83a6d3f432d',1,'bsp_io.h']]], - ['r_5fbsp_5fpinwrite',['R_BSP_PinWrite',['../group___b_s_p___i_o.html#ga33cef14f93543bcb3531b4f2e377c5c4',1,'bsp_io.h']]], - ['r_5fbsp_5fsecurityinit',['R_BSP_SecurityInit',['../group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f',1,'R_BSP_SecurityInit(void): bsp_security.c'],['../group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f',1,'R_BSP_SecurityInit(void): bsp_security.c']]], - ['r_5fbsp_5fsoftwaredelay',['R_BSP_SoftwareDelay',['../group___b_s_p___m_c_u.html#gaf3219448adfd1531cf69f68697ab184b',1,'R_BSP_SoftwareDelay(uint32_t delay, bsp_delay_units_t units): bsp_delay.c'],['../group___b_s_p___m_c_u.html#gaf3219448adfd1531cf69f68697ab184b',1,'R_BSP_SoftwareDelay(uint32_t delay, bsp_delay_units_t units): bsp_delay.c']]], - ['r_5fbsp_5funiqueidget',['R_BSP_UniqueIdGet',['../group___b_s_p___m_c_u.html#gadee5f5e0c5fa723426f73d7d5a07f9b2',1,'bsp_common.h']]], - ['r_5fbsp_5fversionget',['R_BSP_VersionGet',['../group___b_s_p___m_c_u.html#gade0e6b9fc5ca580d5bf6c8ae2a6af8d9',1,'R_BSP_VersionGet(fsp_version_t *p_version): bsp_common.c'],['../group___b_s_p___m_c_u.html#gade0e6b9fc5ca580d5bf6c8ae2a6af8d9',1,'R_BSP_VersionGet(fsp_version_t *p_version): bsp_common.c']]], - ['r_5fbsp_5fwarmstart',['R_BSP_WarmStart',['../group___b_s_p___m_c_u.html#ga662624feaff3850ffbe7fb118ab140d7',1,'system.c']]], - ['r_5fcanfd_5fcallbackset',['R_CANFD_CallbackSet',['../group___c_a_n_f_d.html#ga96f34361e525a46f121b11d627c3a1a8',1,'r_canfd.c']]], - ['r_5fcanfd_5fclose',['R_CANFD_Close',['../group___c_a_n_f_d.html#ga7387d2e68262798a52c3a820ce12ea47',1,'r_canfd.c']]], - ['r_5fcanfd_5finfoget',['R_CANFD_InfoGet',['../group___c_a_n_f_d.html#ga16ff5e9e44e32191944292aea98ab4cb',1,'r_canfd.c']]], - ['r_5fcanfd_5fmodetransition',['R_CANFD_ModeTransition',['../group___c_a_n_f_d.html#ga00c7557917ce6e78eb2969d7b5855890',1,'r_canfd.c']]], - ['r_5fcanfd_5fopen',['R_CANFD_Open',['../group___c_a_n_f_d.html#ga664d1e07613b250a3084681a613334be',1,'r_canfd.c']]], - ['r_5fcanfd_5fread',['R_CANFD_Read',['../group___c_a_n_f_d.html#gaa79e3baad3f67bc4a3d1741dea29a3ae',1,'r_canfd.c']]], - ['r_5fcanfd_5fwrite',['R_CANFD_Write',['../group___c_a_n_f_d.html#ga9a43dfa148767d10e12b22cb317111a9',1,'r_canfd.c']]], - ['r_5ffsp_5fcurrentirqget',['R_FSP_CurrentIrqGet',['../group___b_s_p___m_c_u.html#ga50cae0c65c54074c32d30eb4108d9a09',1,'bsp_common.h']]], - ['r_5ffsp_5fsystemclockhzget',['R_FSP_SystemClockHzGet',['../group___b_s_p___m_c_u.html#ga992632ae2e45c2f962855fe4bbe98a63',1,'bsp_clocks.c']]], - ['r_5ffsp_5fversionget',['R_FSP_VersionGet',['../group___b_s_p___m_c_u.html#gaf3ee66233fc75acfcc21a97d7a767aa1',1,'bsp_common.c']]], - ['r_5fgpt_5fadctriggerset',['R_GPT_AdcTriggerSet',['../group___g_p_t.html#ga311c91c55f20338f7082fa4369e7c80f',1,'r_gpt.c']]], - ['r_5fgpt_5fcallbackset',['R_GPT_CallbackSet',['../group___g_p_t.html#ga2a09de185d3b7f1c301b33330931bac4',1,'r_gpt.c']]], - ['r_5fgpt_5fclose',['R_GPT_Close',['../group___g_p_t.html#ga2fc5d6a737a00948802e2bb77fbe8d8c',1,'r_gpt.c']]], - ['r_5fgpt_5fcounterset',['R_GPT_CounterSet',['../group___g_p_t.html#ga4126139a9c63f1963ffdaea6cc697fe9',1,'r_gpt.c']]], - ['r_5fgpt_5fdisable',['R_GPT_Disable',['../group___g_p_t.html#ga338dd3c38477ee40c90c13f3a4c9ecfd',1,'r_gpt.c']]], - ['r_5fgpt_5fdutycycleset',['R_GPT_DutyCycleSet',['../group___g_p_t.html#gad14bacf6fb7fce88f3e877160be529ea',1,'r_gpt.c']]], - ['r_5fgpt_5fenable',['R_GPT_Enable',['../group___g_p_t.html#ga6e14d15c781e316e640c280b4983be28',1,'r_gpt.c']]], - ['r_5fgpt_5finfoget',['R_GPT_InfoGet',['../group___g_p_t.html#gaca62ac33de2c05918b0fc359aeaebd97',1,'r_gpt.c']]], - ['r_5fgpt_5fopen',['R_GPT_Open',['../group___g_p_t.html#ga97d0a9c1a8fb6b88d1c12756dd8ce2d2',1,'r_gpt.c']]], - ['r_5fgpt_5foutputdisable',['R_GPT_OutputDisable',['../group___g_p_t.html#gae204e5d6c9305923e98724005dcdf03d',1,'r_gpt.c']]], - ['r_5fgpt_5foutputenable',['R_GPT_OutputEnable',['../group___g_p_t.html#ga0e6638508ec1d5441713195c877bb7a7',1,'r_gpt.c']]], - ['r_5fgpt_5fperiodset',['R_GPT_PeriodSet',['../group___g_p_t.html#gafedbfd8bc3f534d06969588ff10a351b',1,'r_gpt.c']]], - ['r_5fgpt_5freset',['R_GPT_Reset',['../group___g_p_t.html#ga5eb494add3d40775dbc48c5498e15a3a',1,'r_gpt.c']]], - ['r_5fgpt_5fstart',['R_GPT_Start',['../group___g_p_t.html#ga2769f9fda49613246bc84dba41aa4863',1,'r_gpt.c']]], - ['r_5fgpt_5fstatusget',['R_GPT_StatusGet',['../group___g_p_t.html#gaa6234faf45320a83382d7ea1923a2c49',1,'r_gpt.c']]], - ['r_5fgpt_5fstop',['R_GPT_Stop',['../group___g_p_t.html#ga1e6af74d7faaf735f5847a34121eff71',1,'r_gpt.c']]], - ['r_5fgtm_5fcallbackset',['R_GTM_CallbackSet',['../group___g_t_m.html#ga0213edecdcc056ecf3353c3b59a85bd9',1,'r_gtm.c']]], - ['r_5fgtm_5fclose',['R_GTM_Close',['../group___g_t_m.html#ga95721f8cb1f66dd8556d03b94abc40ed',1,'r_gtm.c']]], - ['r_5fgtm_5fdisable',['R_GTM_Disable',['../group___g_t_m.html#ga25c4fd1a5cbb556a97d22f7c5d4e7df5',1,'r_gtm.c']]], - ['r_5fgtm_5fdutycycleset',['R_GTM_DutyCycleSet',['../group___g_t_m.html#ga98e91cf35dfcff3ed975ee2b07bdd379',1,'r_gtm.c']]], - ['r_5fgtm_5fenable',['R_GTM_Enable',['../group___g_t_m.html#ga853124c4bd7f079cb4040694fa13c22c',1,'r_gtm.c']]], - ['r_5fgtm_5finfoget',['R_GTM_InfoGet',['../group___g_t_m.html#ga553dfdd88e36aaf3c58088a5a7774156',1,'r_gtm.c']]], - ['r_5fgtm_5fopen',['R_GTM_Open',['../group___g_t_m.html#ga329fac4f1af8dee4e45200fd0ce5a9a5',1,'r_gtm.c']]], - ['r_5fgtm_5fperiodset',['R_GTM_PeriodSet',['../group___g_t_m.html#ga4368d6d5d2ae11cdb0f18cf8bdc75e24',1,'r_gtm.c']]], - ['r_5fgtm_5freset',['R_GTM_Reset',['../group___g_t_m.html#ga406683b70b461dec28c6a707eab2993d',1,'r_gtm.c']]], - ['r_5fgtm_5fstart',['R_GTM_Start',['../group___g_t_m.html#gae0fe404d6571eb59c9f05f43f55eed25',1,'r_gtm.c']]], - ['r_5fgtm_5fstatusget',['R_GTM_StatusGet',['../group___g_t_m.html#gaa95357cd0d4d8c43f7a2523d4c3b24f7',1,'r_gtm.c']]], - ['r_5fgtm_5fstop',['R_GTM_Stop',['../group___g_t_m.html#ga89c7ca62fbb288cd5f44e5c773c699cf',1,'r_gtm.c']]], - ['r_5fintc_5firq_5fexternalirqcallbackset',['R_INTC_IRQ_ExternalIrqCallbackSet',['../group___i_n_t_c___i_r_q.html#gaf37cb360e6d2cf2a02fd27351f03c9b4',1,'r_intc_irq.c']]], - ['r_5fintc_5firq_5fexternalirqclose',['R_INTC_IRQ_ExternalIrqClose',['../group___i_n_t_c___i_r_q.html#gace7f959c11f27f74e34702079aec5fac',1,'r_intc_irq.c']]], - ['r_5fintc_5firq_5fexternalirqdisable',['R_INTC_IRQ_ExternalIrqDisable',['../group___i_n_t_c___i_r_q.html#gab5e021772ee4e4e203ae1f6190a690e0',1,'r_intc_irq.c']]], - ['r_5fintc_5firq_5fexternalirqenable',['R_INTC_IRQ_ExternalIrqEnable',['../group___i_n_t_c___i_r_q.html#ga72be4cc60c1dbd8e2924568cf4cfb7ba',1,'r_intc_irq.c']]], - ['r_5fintc_5firq_5fexternalirqopen',['R_INTC_IRQ_ExternalIrqOpen',['../group___i_n_t_c___i_r_q.html#ga40d3aae06a43698ad595661ba287c279',1,'r_intc_irq.c']]], - ['r_5fioport_5fclose',['R_IOPORT_Close',['../group___i_o_p_o_r_t.html#ga91d4fde6e5f7cdf57b99af5b5f89f1cc',1,'r_ioport.c']]], - ['r_5fioport_5fethernetmodecfg',['R_IOPORT_EthernetModeCfg',['../group___i_o_p_o_r_t.html#ga383b2f8df036fceeb7c5344c5654d2c3',1,'r_ioport.c']]], - ['r_5fioport_5fethernetvoltagemodecfg',['R_IOPORT_EthernetVoltageModeCfg',['../group___i_o_p_o_r_t.html#gacfd358d1a3bbaa2c6bbc980664cd2d30',1,'r_ioport.c']]], - ['r_5fioport_5fopen',['R_IOPORT_Open',['../group___i_o_p_o_r_t.html#ga24938047dccc62c4426ff543489454de',1,'r_ioport.c']]], - ['r_5fioport_5fpincfg',['R_IOPORT_PinCfg',['../group___i_o_p_o_r_t.html#gab518fc544fe2b59722e30bd0a28ef430',1,'r_ioport.c']]], - ['r_5fioport_5fpineventinputread',['R_IOPORT_PinEventInputRead',['../group___i_o_p_o_r_t.html#ga01fe1fa97720d982173bf110032fa21f',1,'r_ioport.c']]], - ['r_5fioport_5fpineventoutputwrite',['R_IOPORT_PinEventOutputWrite',['../group___i_o_p_o_r_t.html#gaa561f3c4df61925e4c24b420b78a5583',1,'r_ioport.c']]], - ['r_5fioport_5fpinread',['R_IOPORT_PinRead',['../group___i_o_p_o_r_t.html#gadb3ad72c9add6d73eb896c58c36f34ee',1,'r_ioport.c']]], - ['r_5fioport_5fpinscfg',['R_IOPORT_PinsCfg',['../group___i_o_p_o_r_t.html#ga3daa7097b08c7f623a741e2e481cf89f',1,'r_ioport.c']]], - ['r_5fioport_5fpinwrite',['R_IOPORT_PinWrite',['../group___i_o_p_o_r_t.html#ga1b17ca2e38acde207881e7e4ba2a7e28',1,'r_ioport.c']]], - ['r_5fioport_5fportdirectionset',['R_IOPORT_PortDirectionSet',['../group___i_o_p_o_r_t.html#gab83a07936c37ad904c329f8209d735e1',1,'r_ioport.c']]], - ['r_5fioport_5fporteventinputread',['R_IOPORT_PortEventInputRead',['../group___i_o_p_o_r_t.html#gae310ec091b58570972ea46f1f263985d',1,'r_ioport.c']]], - ['r_5fioport_5fporteventoutputwrite',['R_IOPORT_PortEventOutputWrite',['../group___i_o_p_o_r_t.html#ga8d3f8c4c90241587fee076b6fb0623ff',1,'r_ioport.c']]], - ['r_5fioport_5fportread',['R_IOPORT_PortRead',['../group___i_o_p_o_r_t.html#gab84c08b8ac66d18c5636ebc772133e77',1,'r_ioport.c']]], - ['r_5fioport_5fportwrite',['R_IOPORT_PortWrite',['../group___i_o_p_o_r_t.html#ga31825f3f0295317e5b446d74f791cd68',1,'r_ioport.c']]], - ['r_5fioport_5fqspivoltagemodecfg',['R_IOPORT_QSPIVoltageModeCfg',['../group___i_o_p_o_r_t.html#ga89947e3a2708547f57c5fc020b45c777',1,'r_ioport.c']]], - ['r_5fioport_5fsdvoltagemodecfg',['R_IOPORT_SDVoltageModeCfg',['../group___i_o_p_o_r_t.html#gaee86fd299af255bc3020d38d691db7b6',1,'r_ioport.c']]], - ['r_5fmhu_5fns_5fcallbackset',['R_MHU_NS_CallbackSet',['../group___m_h_u___n_s.html#ga13943d092624696482858ac43db16ac5',1,'r_mhu_ns.c']]], - ['r_5fmhu_5fns_5fclose',['R_MHU_NS_Close',['../group___m_h_u___n_s.html#ga40504624dee60aaebfb8710b91483930',1,'r_mhu_ns.c']]], - ['r_5fmhu_5fns_5fisrsub',['R_MHU_NS_IsrSub',['../group___m_h_u___n_s.html#ga1a325703fa61f7fff4e762b092cef2ad',1,'R_MHU_NS_IsrSub(uint32_t irq): r_mhu_ns.c'],['../group___m_h_u___n_s.html#ga1a325703fa61f7fff4e762b092cef2ad',1,'R_MHU_NS_IsrSub(uint32_t irq): r_mhu_ns.c']]], - ['r_5fmhu_5fns_5fmsgsend',['R_MHU_NS_MsgSend',['../group___m_h_u___n_s.html#gae5992c9313b0a0de777234abca176aaf',1,'r_mhu_ns.c']]], - ['r_5fmhu_5fns_5fopen',['R_MHU_NS_Open',['../group___m_h_u___n_s.html#ga38a24972860d1453ec85d28970d3eca4',1,'r_mhu_ns.c']]], - ['r_5fmhu_5fns_5fswint_5fget_5fcallbackset',['R_MHU_NS_SWINT_GET_CallbackSet',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga81d3b1a8847d43fbd10ee226377bb309',1,'r_mhu_ns_swint_get.c']]], - ['r_5fmhu_5fns_5fswint_5fget_5fclose',['R_MHU_NS_SWINT_GET_Close',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#gaaf04bfeb26451f6fc7da14fe1825e705',1,'r_mhu_ns_swint_get.c']]], - ['r_5fmhu_5fns_5fswint_5fget_5fisrsub',['R_MHU_NS_SWINT_GET_IsrSub',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga0d89407bf3cb2dbc8d34e7a1f8dc1820',1,'R_MHU_NS_SWINT_GET_IsrSub(uint32_t irq): r_mhu_ns_swint_get.c'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga0d89407bf3cb2dbc8d34e7a1f8dc1820',1,'R_MHU_NS_SWINT_GET_IsrSub(uint32_t irq): r_mhu_ns_swint_get.c']]], - ['r_5fmhu_5fns_5fswint_5fget_5fopen',['R_MHU_NS_SWINT_GET_Open',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga3015e5dbd9204be24c79c0a69510e7ee',1,'r_mhu_ns_swint_get.c']]], - ['r_5fmhu_5fns_5fswint_5fset_5fclose',['R_MHU_NS_SWINT_SET_Close',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#gaccf0e3ebba04709c5fa1818c6b9bff31',1,'r_mhu_ns_swint_set.c']]], - ['r_5fmhu_5fns_5fswint_5fset_5finterruptset',['R_MHU_NS_SWINT_SET_InterruptSet',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#ga192b92d34e30e2170c6fa7002589db8e',1,'r_mhu_ns_swint_set.c']]], - ['r_5fmhu_5fns_5fswint_5fset_5fopen',['R_MHU_NS_SWINT_SET_Open',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#gaa38f2de3d81a051565c900098d904543',1,'r_mhu_ns_swint_set.c']]], - ['r_5fmhu_5fs_5fcallbackset',['R_MHU_S_CallbackSet',['../group___m_h_u___s.html#ga7b8e03e44542ae70f5b20e37e058fdd6',1,'r_mhu_s.c']]], - ['r_5fmhu_5fs_5fclose',['R_MHU_S_Close',['../group___m_h_u___s.html#gaaaee4d1fe5df68815f36021a1daefe46',1,'r_mhu_s.c']]], - ['r_5fmhu_5fs_5fisrsub',['R_MHU_S_IsrSub',['../group___m_h_u___s.html#gabb304fbb568e37940fe39bec2fb6a1af',1,'R_MHU_S_IsrSub(uint32_t irq): r_mhu_s.c'],['../group___m_h_u___s.html#gabb304fbb568e37940fe39bec2fb6a1af',1,'R_MHU_S_IsrSub(uint32_t irq): r_mhu_s.c']]], - ['r_5fmhu_5fs_5fmsgsend',['R_MHU_S_MsgSend',['../group___m_h_u___s.html#gace961f8d144fe82cf739f96762a681a3',1,'r_mhu_s.c']]], - ['r_5fmhu_5fs_5fopen',['R_MHU_S_Open',['../group___m_h_u___s.html#gad777d9161d5147e0eb546d107cf64259',1,'r_mhu_s.c']]], - ['r_5fpoeg_5fcallbackset',['R_POEG_CallbackSet',['../group___p_o_e_g.html#ga299d7e0c935c5305d72077fdf1963c2d',1,'r_poeg.c']]], - ['r_5fpoeg_5fclose',['R_POEG_Close',['../group___p_o_e_g.html#ga84dddc58a538b5a7c9c22b7f4412755a',1,'r_poeg.c']]], - ['r_5fpoeg_5fopen',['R_POEG_Open',['../group___p_o_e_g.html#ga84d0272a9da17941d62d264ff3a7b678',1,'r_poeg.c']]], - ['r_5fpoeg_5foutputdisable',['R_POEG_OutputDisable',['../group___p_o_e_g.html#ga42b42cd05ed30c698ba2dab5a32154dd',1,'r_poeg.c']]], - ['r_5fpoeg_5freset',['R_POEG_Reset',['../group___p_o_e_g.html#ga6713a1b99790d8e56d475bb377b5cb0c',1,'r_poeg.c']]], - ['r_5fpoeg_5fstatusget',['R_POEG_StatusGet',['../group___p_o_e_g.html#gacc13125edbed3049ff434195ed6dc66e',1,'r_poeg.c']]], - ['r_5friic_5fmaster_5fabort',['R_RIIC_MASTER_Abort',['../group___r_i_i_c___m_a_s_t_e_r.html#ga978fc692cf57fadf35e57123b717be3d',1,'r_riic_master.c']]], - ['r_5friic_5fmaster_5fcallbackset',['R_RIIC_MASTER_CallbackSet',['../group___r_i_i_c___m_a_s_t_e_r.html#gaaa8f27a523bc16f11c179ff05f9aed78',1,'r_riic_master.c']]], - ['r_5friic_5fmaster_5fclose',['R_RIIC_MASTER_Close',['../group___r_i_i_c___m_a_s_t_e_r.html#ga56dab8b87d138f1e86f718dff839bbb0',1,'r_riic_master.c']]], - ['r_5friic_5fmaster_5fopen',['R_RIIC_MASTER_Open',['../group___r_i_i_c___m_a_s_t_e_r.html#ga0e3fee8948f4df299977350491d537fa',1,'r_riic_master.c']]], - ['r_5friic_5fmaster_5fread',['R_RIIC_MASTER_Read',['../group___r_i_i_c___m_a_s_t_e_r.html#ga2a0ac14ddd932a9cab8faf253dcdbbb5',1,'r_riic_master.c']]], - ['r_5friic_5fmaster_5fslaveaddressset',['R_RIIC_MASTER_SlaveAddressSet',['../group___r_i_i_c___m_a_s_t_e_r.html#gafd5de8a9b0160931adaba85f614839f3',1,'r_riic_master.c']]], - ['r_5friic_5fmaster_5fstatusget',['R_RIIC_MASTER_StatusGet',['../group___r_i_i_c___m_a_s_t_e_r.html#ga786eaee89f66ecbf8f4faea575ee6e56',1,'r_riic_master.c']]], - ['r_5friic_5fmaster_5fwrite',['R_RIIC_MASTER_Write',['../group___r_i_i_c___m_a_s_t_e_r.html#ga492a86497c72e8f9bcf70d8dcd03c762',1,'r_riic_master.c']]], - ['r_5frspi_5fcalculatebitrate',['R_RSPI_CalculateBitrate',['../group___r_s_p_i.html#gad663d0a4eb35992cbf804cc5da21cb45',1,'r_rspi.c']]], - ['r_5frspi_5fcallbackset',['R_RSPI_CallbackSet',['../group___r_s_p_i.html#ga01e482fc0ce65e7462177bb7f5852ac2',1,'r_rspi.c']]], - ['r_5frspi_5fclose',['R_RSPI_Close',['../group___r_s_p_i.html#ga9aee5ad3abd18ef054128c8542ec7f68',1,'r_rspi.c']]], - ['r_5frspi_5fopen',['R_RSPI_Open',['../group___r_s_p_i.html#gaa303bc3394f99cd07e2ae96139651529',1,'r_rspi.c']]], - ['r_5frspi_5fread',['R_RSPI_Read',['../group___r_s_p_i.html#gabf563431c100264a744239953798e1ea',1,'r_rspi.c']]], - ['r_5frspi_5fwrite',['R_RSPI_Write',['../group___r_s_p_i.html#gae60c894cc73159eb48885dd1ab0864eb',1,'r_rspi.c']]], - ['r_5frspi_5fwriteread',['R_RSPI_WriteRead',['../group___r_s_p_i.html#gad52ea6e5651ab88e2cbacfec46f6a4b3',1,'r_rspi.c']]], - ['r_5fscif_5fuart_5fabort',['R_SCIF_UART_Abort',['../group___s_c_i_f___u_a_r_t.html#ga540d3842dd9db9c39e36c230583e29b1',1,'r_scif_uart.c']]], - ['r_5fscif_5fuart_5fbaudcalculate',['R_SCIF_UART_BaudCalculate',['../group___s_c_i_f___u_a_r_t.html#gad29ba19ecddc66108d794c93f9c1165f',1,'r_scif_uart.c']]], - ['r_5fscif_5fuart_5fbaudset',['R_SCIF_UART_BaudSet',['../group___s_c_i_f___u_a_r_t.html#ga6ed81db7a7e6f618870e1479734c5860',1,'r_scif_uart.c']]], - ['r_5fscif_5fuart_5fcallbackset',['R_SCIF_UART_CallbackSet',['../group___s_c_i_f___u_a_r_t.html#ga6880b7cd58a44c99fe197b1b0a14e737',1,'r_scif_uart.c']]], - ['r_5fscif_5fuart_5fclose',['R_SCIF_UART_Close',['../group___s_c_i_f___u_a_r_t.html#ga0d573f7ffdec42630a06605b64c00482',1,'r_scif_uart.c']]], - ['r_5fscif_5fuart_5finfoget',['R_SCIF_UART_InfoGet',['../group___s_c_i_f___u_a_r_t.html#gafc4582fe6a3b46c7e933d709204c01f3',1,'r_scif_uart.c']]], - ['r_5fscif_5fuart_5fopen',['R_SCIF_UART_Open',['../group___s_c_i_f___u_a_r_t.html#ga2a791c5e359c3fe2d85339fc3f915bc3',1,'r_scif_uart.c']]], - ['r_5fscif_5fuart_5fread',['R_SCIF_UART_Read',['../group___s_c_i_f___u_a_r_t.html#ga07a261385112a6909e86c441411e2e53',1,'r_scif_uart.c']]], - ['r_5fscif_5fuart_5fwrite',['R_SCIF_UART_Write',['../group___s_c_i_f___u_a_r_t.html#ga42409976902f41a6c92890ca8d9eb28a',1,'r_scif_uart.c']]], - ['reset_5fhandler_5fns',['Reset_Handler_NS',['../group___b_s_p___m_c_u.html#ga49c8711ce69459021327e37557a1a9f1',1,'startup.c']]], - ['reset_5fhandler_5fs',['Reset_Handler_S',['../group___b_s_p___m_c_u.html#ga740c87d0bffe0692e1cdae0b96ab9ee9',1,'startups.c']]], - ['rm_5fcomms_5fi2c_5fcallback',['rm_comms_i2c_callback',['../group___r_m___c_o_m_m_s___i2_c.html#ga6fcbfc873b11a9f4c743ab36f52d1b09',1,'rm_comms_i2c_callback(i2c_master_callback_args_t *p_args): rm_comms_i2c_driver_rz.c'],['../group___r_m___c_o_m_m_s___i2_c.html#ga6fcbfc873b11a9f4c743ab36f52d1b09',1,'rm_comms_i2c_callback(i2c_master_callback_args_t *p_args): rm_comms_i2c_driver_rz.c']]], - ['rm_5fcomms_5fi2c_5fclose',['RM_COMMS_I2C_Close',['../group___r_m___c_o_m_m_s___i2_c.html#ga85e5f34d0ec4c6e2633a37fcdba7a255',1,'rm_comms_i2c.c']]], - ['rm_5fcomms_5fi2c_5fopen',['RM_COMMS_I2C_Open',['../group___r_m___c_o_m_m_s___i2_c.html#ga0560f3c49dbff678d8cbda3e5b8bf44b',1,'rm_comms_i2c.c']]], - ['rm_5fcomms_5fi2c_5fread',['RM_COMMS_I2C_Read',['../group___r_m___c_o_m_m_s___i2_c.html#ga5f84cbe68338541d75b220fb374f192b',1,'rm_comms_i2c.c']]], - ['rm_5fcomms_5fi2c_5fwrite',['RM_COMMS_I2C_Write',['../group___r_m___c_o_m_m_s___i2_c.html#gada9c139b138ed7c6d4b9bbeae0ffcb52',1,'rm_comms_i2c.c']]], - ['rm_5fcomms_5fi2c_5fwriteread',['RM_COMMS_I2C_WriteRead',['../group___r_m___c_o_m_m_s___i2_c.html#ga58164da5f2284c73a72902f85814438e',1,'rm_comms_i2c.c']]], - ['rm_5fhs300x_5fclose',['RM_HS300X_Close',['../group___r_m___h_s300_x.html#gaa9adabc57bc72f5440aca8fa1addde26',1,'rm_hs300x.c']]], - ['rm_5fhs300x_5fdatacalculate',['RM_HS300X_DataCalculate',['../group___r_m___h_s300_x.html#gac41a24eae1e4f6ebdb80c2eae32cec63',1,'rm_hs300x.c']]], - ['rm_5fhs300x_5fmeasurementstart',['RM_HS300X_MeasurementStart',['../group___r_m___h_s300_x.html#ga6b1687477a1eceb91a00b77bf34b31c3',1,'rm_hs300x.c']]], - ['rm_5fhs300x_5fopen',['RM_HS300X_Open',['../group___r_m___h_s300_x.html#ga09a980a63a6863d373370361f8f607da',1,'rm_hs300x.c']]], - ['rm_5fhs300x_5fprogrammingmodeenter',['RM_HS300X_ProgrammingModeEnter',['../group___r_m___h_s300_x.html#gaad0bf1f3d2428b136553060792c65632',1,'rm_hs300x.c']]], - ['rm_5fhs300x_5fprogrammingmodeexit',['RM_HS300X_ProgrammingModeExit',['../group___r_m___h_s300_x.html#gaa5596bf0a35a1e1c15aa214abdbcb653',1,'rm_hs300x.c']]], - ['rm_5fhs300x_5fread',['RM_HS300X_Read',['../group___r_m___h_s300_x.html#gaa3d8795e62cc694a4b93382a713ed452',1,'rm_hs300x.c']]], - ['rm_5fhs300x_5fresolutionchange',['RM_HS300X_ResolutionChange',['../group___r_m___h_s300_x.html#gabc4a07b3c9843357f322c6b9dc8e8abe',1,'rm_hs300x.c']]], - ['rm_5fhs300x_5fsensoridget',['RM_HS300X_SensorIdGet',['../group___r_m___h_s300_x.html#ga3360174eadfe24421084be0881b7c4f6',1,'rm_hs300x.c']]], - ['rm_5fhs400x_5fclose',['RM_HS400X_Close',['../group___r_m___h_s400_x.html#gadf41bfc87749833ce99276321fabb35c',1,'rm_hs400x.c']]], - ['rm_5fhs400x_5fdatacalculate',['RM_HS400X_DataCalculate',['../group___r_m___h_s400_x.html#gaa9dfab1c5a32803f66b8713adfd76d1d',1,'rm_hs400x.c']]], - ['rm_5fhs400x_5fmeasurementstart',['RM_HS400X_MeasurementStart',['../group___r_m___h_s400_x.html#ga21afc7bb8b35ca56c4918ddd26a1549a',1,'rm_hs400x.c']]], - ['rm_5fhs400x_5fmeasurementstop',['RM_HS400X_MeasurementStop',['../group___r_m___h_s400_x.html#gac7959f33340cb226d60a3b31ffd8e3e1',1,'rm_hs400x.c']]], - ['rm_5fhs400x_5fopen',['RM_HS400X_Open',['../group___r_m___h_s400_x.html#gaa263adbe024135888d31e141ce18d52c',1,'rm_hs400x.c']]], - ['rm_5fhs400x_5fread',['RM_HS400X_Read',['../group___r_m___h_s400_x.html#ga746a0ada3830ba954f47de6ed4f9746c',1,'rm_hs400x.c']]], - ['rm_5fob1203_5fclose',['RM_OB1203_Close',['../group___r_m___o_b1203.html#gaff536e258d187d8efd6fac712ca885e1',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fdeviceinterruptcfgset',['RM_OB1203_DeviceInterruptCfgSet',['../group___r_m___o_b1203.html#gae791e9a53d7642b5ab9bed5ddfb195fa',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fdevicestatusget',['RM_OB1203_DeviceStatusGet',['../group___r_m___o_b1203.html#ga13ab57714aafa9a3023a32f83c88e1dd',1,'rm_ob1203.c']]], - ['rm_5fob1203_5ffifoinfoget',['RM_OB1203_FifoInfoGet',['../group___r_m___o_b1203.html#ga6ffbbe58d90adb8001d2f6424987e71b',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fgainset',['RM_OB1203_GainSet',['../group___r_m___o_b1203.html#ga554b7652ea5ee0de096b21e6580f164f',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fledcurrentset',['RM_OB1203_LedCurrentSet',['../group___r_m___o_b1203.html#ga5666b0538afdae80059de7271667694c',1,'rm_ob1203.c']]], - ['rm_5fob1203_5flightdatacalculate',['RM_OB1203_LightDataCalculate',['../group___r_m___o_b1203.html#ga56f8661c39d7b7b41e0799d528f08c92',1,'rm_ob1203.c']]], - ['rm_5fob1203_5flightread',['RM_OB1203_LightRead',['../group___r_m___o_b1203.html#gad3e86f2d3ee11e505e5df6fc8e1b5c1f',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fmeasurementstart',['RM_OB1203_MeasurementStart',['../group___r_m___o_b1203.html#gaabca4420cac85f4ea23be2454863d443',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fmeasurementstop',['RM_OB1203_MeasurementStop',['../group___r_m___o_b1203.html#gab851b2d1c598510756bea3608f3261a3',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fopen',['RM_OB1203_Open',['../group___r_m___o_b1203.html#ga34d3b67d431ab9cdb45fa561196d8e85',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fppgdatacalculate',['RM_OB1203_PpgDataCalculate',['../group___r_m___o_b1203.html#gaffe63df6ba35eb27989b694af004a87b',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fppgread',['RM_OB1203_PpgRead',['../group___r_m___o_b1203.html#ga306ea4427230d2c7c2e2c0ae53346a0b',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fproxdatacalculate',['RM_OB1203_ProxDataCalculate',['../group___r_m___o_b1203.html#ga5888f249d9e67a2af39ce7977065d359',1,'rm_ob1203.c']]], - ['rm_5fob1203_5fproxread',['RM_OB1203_ProxRead',['../group___r_m___o_b1203.html#ga1de710492d4da21656a5cbd62eb2b721',1,'rm_ob1203.c']]], - ['rm_5fzmod4xxx_5fclose',['RM_ZMOD4XXX_Close',['../group___r_m___z_m_o_d4_x_x_x.html#ga564266f1fd972d2a4b0d607925a8be48',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5fdeviceerrorcheck',['RM_ZMOD4XXX_DeviceErrorCheck',['../group___r_m___z_m_o_d4_x_x_x.html#gac455a0f48d2eb704341bd83bb37fff94',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5fiaq1stgendatacalculate',['RM_ZMOD4XXX_Iaq1stGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#ga3ee9369b728a5687fcc637114b563875',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5fiaq2ndgendatacalculate',['RM_ZMOD4XXX_Iaq2ndGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#gaa2b8de7170ff85a0f991dfdb6fb71317',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5fmeasurementstart',['RM_ZMOD4XXX_MeasurementStart',['../group___r_m___z_m_o_d4_x_x_x.html#ga21bde6c18d166c38790d044a3325d7b9',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5fmeasurementstop',['RM_ZMOD4XXX_MeasurementStop',['../group___r_m___z_m_o_d4_x_x_x.html#ga1a9e4762c544db1dc924fdff62bf9cc7',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5foaq1stgendatacalculate',['RM_ZMOD4XXX_Oaq1stGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#gaeafe7943df31f237ac45310796df64b2',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5foaq2ndgendatacalculate',['RM_ZMOD4XXX_Oaq2ndGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#ga8dcfe9a7b0b9419f1ecfce5d82c3fc33',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5fodordatacalculate',['RM_ZMOD4XXX_OdorDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#gaed61c1d9714552e574a4e6037d926180',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5fopen',['RM_ZMOD4XXX_Open',['../group___r_m___z_m_o_d4_x_x_x.html#ga2d4f33091a3b32dc0bda323c24a4eb15',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5fraqdatacalculate',['RM_ZMOD4XXX_RaqDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#gadaee5fde2afbb40e28f40b1de50daf45',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5fread',['RM_ZMOD4XXX_Read',['../group___r_m___z_m_o_d4_x_x_x.html#gafabd01cfcb93ac2bcdc4378dc94ec804',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5fstatuscheck',['RM_ZMOD4XXX_StatusCheck',['../group___r_m___z_m_o_d4_x_x_x.html#gaad8d1b8d7b71762b60c6078f9059bf1d',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5fsulfurodordatacalculate',['RM_ZMOD4XXX_SulfurOdorDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#gaf200a9dc7ca8bf0601c2a2b96c341ecf',1,'rm_zmod4xxx.c']]], - ['rm_5fzmod4xxx_5ftemperatureandhumidityset',['RM_ZMOD4XXX_TemperatureAndHumiditySet',['../group___r_m___z_m_o_d4_x_x_x.html#ga5a6c9c9dcb25bc3964b07ed7fe002477',1,'rm_zmod4xxx.c']]] + ['nmi_5fhandler_5fns',['NMI_Handler_NS',['../group___b_s_p___m_c_u.html#gafdfd4e716271df720f7abe57bdca2e5d',1,'startup.c']]], + ['nmi_5fhandler_5fs',['NMI_Handler_S',['../group___b_s_p___m_c_u.html#ga44d44e7bd7f7e06f05b1f420479d3e74',1,'startups.c']]] ]; diff --git a/search/functions_4.js b/search/functions_4.js index b35c531..f4a7969 100644 --- a/search/functions_4.js +++ b/search/functions_4.js @@ -1,6 +1,371 @@ var searchData= [ - ['securefault_5fhandler',['SecureFault_Handler',['../group___b_s_p___m_c_u.html#gacafcf7aae8e82ba63c6d74db1f574aad',1,'startups.c']]], - ['systeminit',['SystemInit',['../group___b_s_p___m_c_u.html#ga93f514700ccf00d08dbdcff7f1224eb2',1,'system.c']]], - ['systeminit_5fs',['SystemInit_S',['../group___b_s_p___m_c_u.html#ga5cd95eba95dc2c1bad0bf05398c9779c',1,'systems.c']]] + ['r_5fadc_5fc_5fcalibrate',['R_ADC_C_Calibrate',['../group___a_d_c___c.html#ga5cbf5113221d2cdbf11f36eb8b7ea21a',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fcallbackset',['R_ADC_C_CallbackSet',['../group___a_d_c___c.html#ga1644c43f8469049a20a1c183682b2eda',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fclose',['R_ADC_C_Close',['../group___a_d_c___c.html#ga51e75a0613a836dda17e8dff336fa5b9',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5finfoget',['R_ADC_C_InfoGet',['../group___a_d_c___c.html#ga71b8dbb9de7e428dbdc0bdd56c2331a4',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5foffsetset',['R_ADC_C_OffsetSet',['../group___a_d_c___c.html#ga1a6bcd25e5366666a3f25062e4b9d615',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fopen',['R_ADC_C_Open',['../group___a_d_c___c.html#ga52f7eee41184b0a91cfa9e73b1833122',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fread',['R_ADC_C_Read',['../group___a_d_c___c.html#ga0971485949f985d827aeaa69feff4f5a',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fread32',['R_ADC_C_Read32',['../group___a_d_c___c.html#gad95fbc1b2b5d7ced0f332c6cab3be5a0',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fsamplestatecountset',['R_ADC_C_SampleStateCountSet',['../group___a_d_c___c.html#ga002b131506372adc9b7117ac980dd077',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fscancfg',['R_ADC_C_ScanCfg',['../group___a_d_c___c.html#ga5f0ecdfeeb82907f1d20e68284fe8861',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fscangroupstart',['R_ADC_C_ScanGroupStart',['../group___a_d_c___c.html#ga2a5b64c160eb0b849ea5043bde9188cb',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fscanstart',['R_ADC_C_ScanStart',['../group___a_d_c___c.html#ga11e9ba160e344dc72ab9e862f7ce70db',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fscanstop',['R_ADC_C_ScanStop',['../group___a_d_c___c.html#gad2ba1ea2171aafa77a4ea3de325ad11c',1,'r_adc_c.c']]], + ['r_5fadc_5fc_5fstatusget',['R_ADC_C_StatusGet',['../group___a_d_c___c.html#ga1d98d3b28202140cc37796dd60fde5e3',1,'r_adc_c.c']]], + ['r_5fadc_5fe_5fcalibrate',['R_ADC_E_Calibrate',['../group___a_d_c___e.html#ga60b7cc39514b62e1b0ea3eabaa7c27de',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fcallbackset',['R_ADC_E_CallbackSet',['../group___a_d_c___e.html#gaab99f6d8921a70ed3609a0d3ddabd09a',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fclose',['R_ADC_E_Close',['../group___a_d_c___e.html#ga1e0b524d58f582130181a3772222886a',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5finfoget',['R_ADC_E_InfoGet',['../group___a_d_c___e.html#gabaf26ddcab6a7151b670a3b62f1e87fa',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5foffsetset',['R_ADC_E_OffsetSet',['../group___a_d_c___e.html#ga70abfa718ea4f6fd5d14acbaf8730cbf',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fopen',['R_ADC_E_Open',['../group___a_d_c___e.html#ga1f1da31e1c595123236987ef670a2cbc',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fread',['R_ADC_E_Read',['../group___a_d_c___e.html#ga1768d1f5986545eb95ab8273559eaee5',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fread32',['R_ADC_E_Read32',['../group___a_d_c___e.html#ga0384d4b99b0e7b5dfb5d0ddf8ed6be83',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fscancfg',['R_ADC_E_ScanCfg',['../group___a_d_c___e.html#ga30f9dd58525ca2a59080a79222fbaf28',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fscangroupstart',['R_ADC_E_ScanGroupStart',['../group___a_d_c___e.html#gacf047cf112ab4235c12408eedb1328dc',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fscanstart',['R_ADC_E_ScanStart',['../group___a_d_c___e.html#ga646be994090e719609305eaa76b1df52',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fscanstop',['R_ADC_E_ScanStop',['../group___a_d_c___e.html#gaea1afc188601253968598bb4b19a682a',1,'r_adc_e.c']]], + ['r_5fadc_5fe_5fstatusget',['R_ADC_E_StatusGet',['../group___a_d_c___e.html#ga722dc99ac11774e87c083e66fce79127',1,'r_adc_e.c']]], + ['r_5fbsp_5fbypassmodecfg',['R_BSP_BypassModeCfg',['../group___b_s_p___i_o.html#gaa07b15ea5255e2d6ad2a8fb9231adcda',1,'bsp_io.h']]], + ['r_5fbsp_5fclockdividerset',['R_BSP_ClockDividerSet',['../group___b_s_p___m_c_u.html#gac27f5c8e3abd9d557b79ff1bdde2f932',1,'R_BSP_ClockDividerSet(fsp_priv_clock_divider_t divider, uint32_t clock_div): bsp_clocks.c'],['../group___b_s_p___m_c_u.html#gac27f5c8e3abd9d557b79ff1bdde2f932',1,'R_BSP_ClockDividerSet(fsp_priv_clock_divider_t divider, uint32_t clock_div): bsp_clocks.c']]], + ['r_5fbsp_5fclockselectorset',['R_BSP_ClockSelectorSet',['../group___b_s_p___m_c_u.html#ga6a8598c7564c37b201a19003d188de7f',1,'R_BSP_ClockSelectorSet(fsp_priv_clock_selector_t selector, uint32_t clock_sel): bsp_clocks.c'],['../group___b_s_p___m_c_u.html#ga6a8598c7564c37b201a19003d188de7f',1,'R_BSP_ClockSelectorSet(fsp_priv_clock_selector_t selector, uint32_t clock_sel): bsp_clocks.c']]], + ['r_5fbsp_5fethernetmodecfg',['R_BSP_EthernetModeCfg',['../group___b_s_p___i_o.html#ga12a7886e4da364860e1bd6236cdba973',1,'bsp_io.h']]], + ['r_5fbsp_5fethernetvoltagemodecfg',['R_BSP_EthernetVoltageModeCfg',['../group___b_s_p___i_o.html#gaee8fdb90b591063571f73dc23d4306b4',1,'bsp_io.h']]], + ['r_5fbsp_5fgroupirqwrite',['R_BSP_GroupIrqWrite',['../group___b_s_p___m_c_u.html#gaed27ea47f0c85a1af9bb515600d5e2ba',1,'R_BSP_GroupIrqWrite(bsp_grp_irq_t irq, void(*p_callback)(bsp_grp_irq_t irq)): bsp_group_irq.c'],['../group___b_s_p___m_c_u.html#gaed27ea47f0c85a1af9bb515600d5e2ba',1,'R_BSP_GroupIrqWrite(bsp_grp_irq_t irq, void(*p_callback)(bsp_grp_irq_t irq)): bsp_group_irq.c']]], + ['r_5fbsp_5fi3ccontrolcfg',['R_BSP_I3CControlCfg',['../group___b_s_p___i_o.html#gaea02bfef9058ac480e59f4175124c4da',1,'bsp_io.h']]], + ['r_5fbsp_5foenaccessdisable',['R_BSP_OENAccessDisable',['../group___b_s_p___i_o.html#ga9d18d53cf22913ba5379a9b2b78f8af9',1,'bsp_io.h']]], + ['r_5fbsp_5foenaccessenable',['R_BSP_OENAccessEnable',['../group___b_s_p___i_o.html#ga1366a1a0609b52482af37acf4b1354b8',1,'bsp_io.h']]], + ['r_5fbsp_5fpinaccessdisable',['R_BSP_PinAccessDisable',['../group___b_s_p___i_o.html#gab5aab592b5fbbfa18d542c0812850b98',1,'bsp_io.h']]], + ['r_5fbsp_5fpinaccessenable',['R_BSP_PinAccessEnable',['../group___b_s_p___i_o.html#ga0ad2123f7a5152cf108883163581f11b',1,'bsp_io.h']]], + ['r_5fbsp_5fpinread',['R_BSP_PinRead',['../group___b_s_p___i_o.html#ga6764c3fac52569cadd44b83a6d3f432d',1,'bsp_io.h']]], + ['r_5fbsp_5fpinwrite',['R_BSP_PinWrite',['../group___b_s_p___i_o.html#ga33cef14f93543bcb3531b4f2e377c5c4',1,'bsp_io.h']]], + ['r_5fbsp_5fqspivoltagemodecfg',['R_BSP_QSPIVoltageModeCfg',['../group___b_s_p___i_o.html#ga273b018bc22b835afd630e6b46a3cc4e',1,'bsp_io.h']]], + ['r_5fbsp_5fsdvoltagemodecfg',['R_BSP_SDVoltageModeCfg',['../group___b_s_p___i_o.html#ga583ef49050efabf390c97e6e4633e173',1,'bsp_io.h']]], + ['r_5fbsp_5fsecurityinit',['R_BSP_SecurityInit',['../group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f',1,'R_BSP_SecurityInit(void): bsp_security.c'],['../group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f',1,'R_BSP_SecurityInit(void): bsp_security.c'],['../group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f',1,'R_BSP_SecurityInit(void): bsp_security.c'],['../group___b_s_p___m_c_u.html#ga0d1fdb0e18d303e7f6ed3410d52c9d7f',1,'R_BSP_SecurityInit(void): bsp_security.c']]], + ['r_5fbsp_5fsoftwaredelay',['R_BSP_SoftwareDelay',['../group___b_s_p___m_c_u.html#gaf3219448adfd1531cf69f68697ab184b',1,'R_BSP_SoftwareDelay(uint32_t delay, bsp_delay_units_t units): bsp_delay.c'],['../group___b_s_p___m_c_u.html#gaf3219448adfd1531cf69f68697ab184b',1,'R_BSP_SoftwareDelay(uint32_t delay, bsp_delay_units_t units): bsp_delay.c']]], + ['r_5fbsp_5funiqueidget',['R_BSP_UniqueIdGet',['../group___b_s_p___m_c_u.html#ga1273625a09a1d570dea0c5189f6b5fe8',1,'bsp_common.h']]], + ['r_5fbsp_5fversionget',['R_BSP_VersionGet',['../group___b_s_p___m_c_u.html#gade0e6b9fc5ca580d5bf6c8ae2a6af8d9',1,'R_BSP_VersionGet(fsp_version_t *p_version): bsp_common.c'],['../group___b_s_p___m_c_u.html#gade0e6b9fc5ca580d5bf6c8ae2a6af8d9',1,'R_BSP_VersionGet(fsp_version_t *p_version): bsp_common.c']]], + ['r_5fbsp_5fwarmstart',['R_BSP_WarmStart',['../group___b_s_p___m_c_u.html#ga662624feaff3850ffbe7fb118ab140d7',1,'system.c']]], + ['r_5fbsp_5fxspioutputenablecfg',['R_BSP_XSPIOutputEnableCfg',['../group___b_s_p___i_o.html#ga3c75c9c53842401896a9feb2e969c5b0',1,'bsp_io.h']]], + ['r_5fbsp_5fxspivoltagemodecfg',['R_BSP_XSPIVoltageModeCfg',['../group___b_s_p___i_o.html#ga59bb3fd83a257bd92926ea266faa9fd8',1,'bsp_io.h']]], + ['r_5fcanfd_5fcallbackset',['R_CANFD_CallbackSet',['../group___c_a_n_f_d.html#ga96f34361e525a46f121b11d627c3a1a8',1,'r_canfd.c']]], + ['r_5fcanfd_5fclose',['R_CANFD_Close',['../group___c_a_n_f_d.html#ga7387d2e68262798a52c3a820ce12ea47',1,'r_canfd.c']]], + ['r_5fcanfd_5finfoget',['R_CANFD_InfoGet',['../group___c_a_n_f_d.html#ga16ff5e9e44e32191944292aea98ab4cb',1,'r_canfd.c']]], + ['r_5fcanfd_5fmodetransition',['R_CANFD_ModeTransition',['../group___c_a_n_f_d.html#ga00c7557917ce6e78eb2969d7b5855890',1,'r_canfd.c']]], + ['r_5fcanfd_5fopen',['R_CANFD_Open',['../group___c_a_n_f_d.html#ga664d1e07613b250a3084681a613334be',1,'r_canfd.c']]], + ['r_5fcanfd_5fread',['R_CANFD_Read',['../group___c_a_n_f_d.html#gaa79e3baad3f67bc4a3d1741dea29a3ae',1,'r_canfd.c']]], + ['r_5fcanfd_5fwrite',['R_CANFD_Write',['../group___c_a_n_f_d.html#ga9a43dfa148767d10e12b22cb317111a9',1,'r_canfd.c']]], + ['r_5fcmtw_5fcallbackset',['R_CMTW_CallbackSet',['../group___c_m_t_w.html#gabc760f97e8a609485ae6194571d41127',1,'r_cmtw.c']]], + ['r_5fcmtw_5fclose',['R_CMTW_Close',['../group___c_m_t_w.html#gac59c2dfa9436df60eb01971c996875aa',1,'r_cmtw.c']]], + ['r_5fcmtw_5fdisable',['R_CMTW_Disable',['../group___c_m_t_w.html#ga414c89c292c18a33619337489cd43787',1,'r_cmtw.c']]], + ['r_5fcmtw_5fdutycycleset',['R_CMTW_DutyCycleSet',['../group___c_m_t_w.html#ga928fd6d8249fe9c66e870849a6975ca9',1,'r_cmtw.c']]], + ['r_5fcmtw_5fenable',['R_CMTW_Enable',['../group___c_m_t_w.html#gadba23fc3303d81ce926ba6ebe9245e6a',1,'r_cmtw.c']]], + ['r_5fcmtw_5finfoget',['R_CMTW_InfoGet',['../group___c_m_t_w.html#gae56c5935864ef5ef23eeae25a95ab079',1,'r_cmtw.c']]], + ['r_5fcmtw_5fopen',['R_CMTW_Open',['../group___c_m_t_w.html#ga7b086a5e535460e7855000cc6141b22e',1,'r_cmtw.c']]], + ['r_5fcmtw_5foutputdisable',['R_CMTW_OutputDisable',['../group___c_m_t_w.html#gadd9a734062792a507971568dac4c3013',1,'r_cmtw.c']]], + ['r_5fcmtw_5foutputenable',['R_CMTW_OutputEnable',['../group___c_m_t_w.html#ga78987d5578215cbf098221602bbbc193',1,'r_cmtw.c']]], + ['r_5fcmtw_5fperiodset',['R_CMTW_PeriodSet',['../group___c_m_t_w.html#gaa50bb9ff96b3f0e38459a7e3e65c0a18',1,'r_cmtw.c']]], + ['r_5fcmtw_5freset',['R_CMTW_Reset',['../group___c_m_t_w.html#ga10851764cdad9c5c580e146501bc4352',1,'r_cmtw.c']]], + ['r_5fcmtw_5fstart',['R_CMTW_Start',['../group___c_m_t_w.html#ga874d0098275f48ec3c84e8587d262fce',1,'r_cmtw.c']]], + ['r_5fcmtw_5fstatusget',['R_CMTW_StatusGet',['../group___c_m_t_w.html#gacbdfc3716f8d5bd47edaa801eb50d1b7',1,'r_cmtw.c']]], + ['r_5fcmtw_5fstop',['R_CMTW_Stop',['../group___c_m_t_w.html#ga842bb3b9c5c12cdfff41dd8595defc70',1,'r_cmtw.c']]], + ['r_5fcrc_5fcalculate',['R_CRC_Calculate',['../group___c_r_c.html#ga89b0be959ce83ac6ca053329b1fddb75',1,'r_crc.c']]], + ['r_5fcrc_5fcalculatedvalueget',['R_CRC_CalculatedValueGet',['../group___c_r_c.html#ga5bb7766a9c3217d2da7b77ea203b8c74',1,'r_crc.c']]], + ['r_5fcrc_5fclose',['R_CRC_Close',['../group___c_r_c.html#gab1ba556ab77f9f3d32ed5a448ebc7f9c',1,'r_crc.c']]], + ['r_5fcrc_5fopen',['R_CRC_Open',['../group___c_r_c.html#gae4cc2bba5d6aeaadd9f4d43948fca5ac',1,'r_crc.c']]], + ['r_5fcrc_5fsnoopdisable',['R_CRC_SnoopDisable',['../group___c_r_c.html#ga5bda4df2557aeaaf312b23fb31568f20',1,'r_crc.c']]], + ['r_5fcrc_5fsnoopenable',['R_CRC_SnoopEnable',['../group___c_r_c.html#ga606b389497fa4cba30b0d8f9a658331f',1,'r_crc.c']]], + ['r_5fdmac_5fb_5fclose',['R_DMAC_B_Close',['../group___d_m_a_c___b.html#ga632bf5ab4aab7000686ef9f18a613362',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5fdisable',['R_DMAC_B_Disable',['../group___d_m_a_c___b.html#gaae171cb7c85d650ef946358a06f25f19',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5fenable',['R_DMAC_B_Enable',['../group___d_m_a_c___b.html#gad7d2d7ade93dc5fdb468f3ca4eb23904',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5finfoget',['R_DMAC_B_InfoGet',['../group___d_m_a_c___b.html#ga7edc253186828189c91ba0b183733c1b',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5fopen',['R_DMAC_B_Open',['../group___d_m_a_c___b.html#gac246f431e5d9b090d51fa82e1cf4c525',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5freconfigure',['R_DMAC_B_Reconfigure',['../group___d_m_a_c___b.html#ga2c6e7a22349d33428d977fec5547e3ea',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5freload',['R_DMAC_B_Reload',['../group___d_m_a_c___b.html#gadb30ad1a9a46b41838123869c5d9d5b7',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5freset',['R_DMAC_B_Reset',['../group___d_m_a_c___b.html#ga3aa063ea10c545145d43d90b46a5d34b',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5fsoftwarestart',['R_DMAC_B_SoftwareStart',['../group___d_m_a_c___b.html#ga13da20adc7b96463ae04f4c5cea24154',1,'r_dmac_b.c']]], + ['r_5fdmac_5fb_5fsoftwarestop',['R_DMAC_B_SoftwareStop',['../group___d_m_a_c___b.html#gae209f9912564241da474026944c2d6a6',1,'r_dmac_b.c']]], + ['r_5felc_5fclose',['R_ELC_Close',['../group___e_l_c.html#gac5e6b998138cc28bcbd8b17a5eb26674',1,'r_elc.c']]], + ['r_5felc_5fdisable',['R_ELC_Disable',['../group___e_l_c.html#gad52f538fbce405f18a46f6e42cce9ebf',1,'r_elc.c']]], + ['r_5felc_5fenable',['R_ELC_Enable',['../group___e_l_c.html#ga4bcac22edb575069ba86d87ce9aea84c',1,'r_elc.c']]], + ['r_5felc_5flinkbreak',['R_ELC_LinkBreak',['../group___e_l_c.html#ga2b2ed9cb9e86bf6c75d85977c4c135ff',1,'r_elc.c']]], + ['r_5felc_5flinkset',['R_ELC_LinkSet',['../group___e_l_c.html#ga4b40a4cb59194b6315cf608cd5e36bd9',1,'r_elc.c']]], + ['r_5felc_5fopen',['R_ELC_Open',['../group___e_l_c.html#ga35864de459d2ef45a03da4343729712f',1,'r_elc.c']]], + ['r_5felc_5fsoftwareeventgenerate',['R_ELC_SoftwareEventGenerate',['../group___e_l_c.html#gaa8735a16325cfeff3c47a50345d11d82',1,'r_elc.c']]], + ['r_5ffsp_5fcurrentirqget',['R_FSP_CurrentIrqGet',['../group___b_s_p___m_c_u.html#ga50cae0c65c54074c32d30eb4108d9a09',1,'bsp_common.h']]], + ['r_5ffsp_5fsystemclockhzget',['R_FSP_SystemClockHzGet',['../group___b_s_p___m_c_u.html#ga992632ae2e45c2f962855fe4bbe98a63',1,'bsp_clocks.c']]], + ['r_5ffsp_5fversionget',['R_FSP_VersionGet',['../group___b_s_p___m_c_u.html#gaf3ee66233fc75acfcc21a97d7a767aa1',1,'bsp_common.c']]], + ['r_5fgpt_5fadctriggerset',['R_GPT_AdcTriggerSet',['../group___g_p_t.html#ga311c91c55f20338f7082fa4369e7c80f',1,'r_gpt.c']]], + ['r_5fgpt_5fcallbackset',['R_GPT_CallbackSet',['../group___g_p_t.html#ga2a09de185d3b7f1c301b33330931bac4',1,'r_gpt.c']]], + ['r_5fgpt_5fclose',['R_GPT_Close',['../group___g_p_t.html#ga2fc5d6a737a00948802e2bb77fbe8d8c',1,'r_gpt.c']]], + ['r_5fgpt_5fcounterset',['R_GPT_CounterSet',['../group___g_p_t.html#ga4126139a9c63f1963ffdaea6cc697fe9',1,'r_gpt.c']]], + ['r_5fgpt_5fdisable',['R_GPT_Disable',['../group___g_p_t.html#ga338dd3c38477ee40c90c13f3a4c9ecfd',1,'r_gpt.c']]], + ['r_5fgpt_5fdutycycleset',['R_GPT_DutyCycleSet',['../group___g_p_t.html#gad14bacf6fb7fce88f3e877160be529ea',1,'r_gpt.c']]], + ['r_5fgpt_5fenable',['R_GPT_Enable',['../group___g_p_t.html#ga6e14d15c781e316e640c280b4983be28',1,'r_gpt.c']]], + ['r_5fgpt_5finfoget',['R_GPT_InfoGet',['../group___g_p_t.html#gaca62ac33de2c05918b0fc359aeaebd97',1,'r_gpt.c']]], + ['r_5fgpt_5fopen',['R_GPT_Open',['../group___g_p_t.html#ga97d0a9c1a8fb6b88d1c12756dd8ce2d2',1,'r_gpt.c']]], + ['r_5fgpt_5foutputdisable',['R_GPT_OutputDisable',['../group___g_p_t.html#gae204e5d6c9305923e98724005dcdf03d',1,'r_gpt.c']]], + ['r_5fgpt_5foutputenable',['R_GPT_OutputEnable',['../group___g_p_t.html#ga0e6638508ec1d5441713195c877bb7a7',1,'r_gpt.c']]], + ['r_5fgpt_5fperiodset',['R_GPT_PeriodSet',['../group___g_p_t.html#gafedbfd8bc3f534d06969588ff10a351b',1,'r_gpt.c']]], + ['r_5fgpt_5fpwmoutputdelayinitialize',['R_GPT_PwmOutputDelayInitialize',['../group___g_p_t.html#gada982ef1873ca00147f9692b42aba8f0',1,'r_gpt.c']]], + ['r_5fgpt_5fpwmoutputdelayset',['R_GPT_PwmOutputDelaySet',['../group___g_p_t.html#gaff2d30ece9bd30b5a9cc2117623834c6',1,'r_gpt.c']]], + ['r_5fgpt_5freset',['R_GPT_Reset',['../group___g_p_t.html#ga5eb494add3d40775dbc48c5498e15a3a',1,'r_gpt.c']]], + ['r_5fgpt_5fstart',['R_GPT_Start',['../group___g_p_t.html#ga2769f9fda49613246bc84dba41aa4863',1,'r_gpt.c']]], + ['r_5fgpt_5fstatusget',['R_GPT_StatusGet',['../group___g_p_t.html#gaa6234faf45320a83382d7ea1923a2c49',1,'r_gpt.c']]], + ['r_5fgpt_5fstop',['R_GPT_Stop',['../group___g_p_t.html#ga1e6af74d7faaf735f5847a34121eff71',1,'r_gpt.c']]], + ['r_5fgtm_5fcallbackset',['R_GTM_CallbackSet',['../group___g_t_m.html#ga0213edecdcc056ecf3353c3b59a85bd9',1,'r_gtm.c']]], + ['r_5fgtm_5fclose',['R_GTM_Close',['../group___g_t_m.html#ga95721f8cb1f66dd8556d03b94abc40ed',1,'r_gtm.c']]], + ['r_5fgtm_5fdisable',['R_GTM_Disable',['../group___g_t_m.html#ga25c4fd1a5cbb556a97d22f7c5d4e7df5',1,'r_gtm.c']]], + ['r_5fgtm_5fdutycycleset',['R_GTM_DutyCycleSet',['../group___g_t_m.html#ga98e91cf35dfcff3ed975ee2b07bdd379',1,'r_gtm.c']]], + ['r_5fgtm_5fenable',['R_GTM_Enable',['../group___g_t_m.html#ga853124c4bd7f079cb4040694fa13c22c',1,'r_gtm.c']]], + ['r_5fgtm_5finfoget',['R_GTM_InfoGet',['../group___g_t_m.html#ga553dfdd88e36aaf3c58088a5a7774156',1,'r_gtm.c']]], + ['r_5fgtm_5fopen',['R_GTM_Open',['../group___g_t_m.html#ga329fac4f1af8dee4e45200fd0ce5a9a5',1,'r_gtm.c']]], + ['r_5fgtm_5fperiodset',['R_GTM_PeriodSet',['../group___g_t_m.html#ga4368d6d5d2ae11cdb0f18cf8bdc75e24',1,'r_gtm.c']]], + ['r_5fgtm_5freset',['R_GTM_Reset',['../group___g_t_m.html#ga406683b70b461dec28c6a707eab2993d',1,'r_gtm.c']]], + ['r_5fgtm_5fstart',['R_GTM_Start',['../group___g_t_m.html#gae0fe404d6571eb59c9f05f43f55eed25',1,'r_gtm.c']]], + ['r_5fgtm_5fstatusget',['R_GTM_StatusGet',['../group___g_t_m.html#gaa95357cd0d4d8c43f7a2523d4c3b24f7',1,'r_gtm.c']]], + ['r_5fgtm_5fstop',['R_GTM_Stop',['../group___g_t_m.html#ga89c7ca62fbb288cd5f44e5c773c699cf',1,'r_gtm.c']]], + ['r_5fi3c_5fb_5fclose',['R_I3C_B_Close',['../group___i3_c___b.html#gadd84cf1baec319b18540a857545ab51b',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fcommandsend',['R_I3C_B_CommandSend',['../group___i3_c___b.html#gae6b65e6c1def97b4a105ac8aaa66d96c',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fdevicecfgset',['R_I3C_B_DeviceCfgSet',['../group___i3_c___b.html#ga07b0af405a9ca84c45aab74bd1c696c2',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fdeviceselect',['R_I3C_B_DeviceSelect',['../group___i3_c___b.html#ga2a3f7414a893b9c2b9135523c8f6d950',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fdynamicaddressassignmentstart',['R_I3C_B_DynamicAddressAssignmentStart',['../group___i3_c___b.html#ga014e6425d49e19f05d24fd345a785589',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fenable',['R_I3C_B_Enable',['../group___i3_c___b.html#gae1dcb91a0152da9a6676ee27d305dceb',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fibiread',['R_I3C_B_IbiRead',['../group___i3_c___b.html#gad786c546168aabcc04099f73a540af29',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fibiwrite',['R_I3C_B_IbiWrite',['../group___i3_c___b.html#ga0b4af888ebc4c210feea2a149fd4cfc1',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fmasterdevicetableset',['R_I3C_B_MasterDeviceTableSet',['../group___i3_c___b.html#ga9517cc752212a1423f0153c4330943b4',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fopen',['R_I3C_B_Open',['../group___i3_c___b.html#gaa9ce3fda0950ce2aaa0cd8cf51fb5f95',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fread',['R_I3C_B_Read',['../group___i3_c___b.html#ga69047e20f165f6e44fea97f3fec69399',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fslavestatusset',['R_I3C_B_SlaveStatusSet',['../group___i3_c___b.html#ga4178234c4311d227a6fb8844e1e3a49e',1,'r_i3c_b.c']]], + ['r_5fi3c_5fb_5fwrite',['R_I3C_B_Write',['../group___i3_c___b.html#gadf661fd87ee8c33efd8801d59997d4a1',1,'r_i3c_b.c']]], + ['r_5fintc_5firq_5fexternalirqcallbackset',['R_INTC_IRQ_ExternalIrqCallbackSet',['../group___i_n_t_c___i_r_q.html#gaf37cb360e6d2cf2a02fd27351f03c9b4',1,'r_intc_irq.c']]], + ['r_5fintc_5firq_5fexternalirqclose',['R_INTC_IRQ_ExternalIrqClose',['../group___i_n_t_c___i_r_q.html#gace7f959c11f27f74e34702079aec5fac',1,'r_intc_irq.c']]], + ['r_5fintc_5firq_5fexternalirqdisable',['R_INTC_IRQ_ExternalIrqDisable',['../group___i_n_t_c___i_r_q.html#gab5e021772ee4e4e203ae1f6190a690e0',1,'r_intc_irq.c']]], + ['r_5fintc_5firq_5fexternalirqenable',['R_INTC_IRQ_ExternalIrqEnable',['../group___i_n_t_c___i_r_q.html#ga72be4cc60c1dbd8e2924568cf4cfb7ba',1,'r_intc_irq.c']]], + ['r_5fintc_5firq_5fexternalirqopen',['R_INTC_IRQ_ExternalIrqOpen',['../group___i_n_t_c___i_r_q.html#ga40d3aae06a43698ad595661ba287c279',1,'r_intc_irq.c']]], + ['r_5fintc_5fnmi_5fexternalirqcallbackset',['R_INTC_NMI_ExternalIrqCallbackSet',['../group___i_n_t_c___n_m_i.html#ga52b9b9595c41fcfef9abf3ed0dc05a14',1,'r_intc_nmi.c']]], + ['r_5fintc_5fnmi_5fexternalirqclose',['R_INTC_NMI_ExternalIrqClose',['../group___i_n_t_c___n_m_i.html#ga87b6b8010db2fcb6e7e9de9e42b5306a',1,'r_intc_nmi.c']]], + ['r_5fintc_5fnmi_5fexternalirqdisable',['R_INTC_NMI_ExternalIrqDisable',['../group___i_n_t_c___n_m_i.html#ga213e64c8943eae69a17b77273c459ff2',1,'r_intc_nmi.c']]], + ['r_5fintc_5fnmi_5fexternalirqenable',['R_INTC_NMI_ExternalIrqEnable',['../group___i_n_t_c___n_m_i.html#ga037bcbc05ae66d3cab50fcc159f04d52',1,'r_intc_nmi.c']]], + ['r_5fintc_5fnmi_5fexternalirqopen',['R_INTC_NMI_ExternalIrqOpen',['../group___i_n_t_c___n_m_i.html#ga22b4030a01652c42e160e109c5772beb',1,'r_intc_nmi.c']]], + ['r_5fintc_5ftint_5fexternalirqcallbackset',['R_INTC_TINT_ExternalIrqCallbackSet',['../group___i_n_t_c___t_i_n_t.html#ga3237412fedf68db30556824a96b2ecb6',1,'r_intc_tint.c']]], + ['r_5fintc_5ftint_5fexternalirqclose',['R_INTC_TINT_ExternalIrqClose',['../group___i_n_t_c___t_i_n_t.html#gaafe713f813011a846a754d9137fda61b',1,'r_intc_tint.c']]], + ['r_5fintc_5ftint_5fexternalirqdisable',['R_INTC_TINT_ExternalIrqDisable',['../group___i_n_t_c___t_i_n_t.html#gad244de976bca311f089962b82d3f850b',1,'r_intc_tint.c']]], + ['r_5fintc_5ftint_5fexternalirqenable',['R_INTC_TINT_ExternalIrqEnable',['../group___i_n_t_c___t_i_n_t.html#ga61a1dc7902ccb186b915b33b5d38a03d',1,'r_intc_tint.c']]], + ['r_5fintc_5ftint_5fexternalirqopen',['R_INTC_TINT_ExternalIrqOpen',['../group___i_n_t_c___t_i_n_t.html#gab01a60894ce57e9089bbdff30d38334f',1,'r_intc_tint.c']]], + ['r_5fioport_5fclose',['R_IOPORT_Close',['../group___i_o_p_o_r_t.html#ga91d4fde6e5f7cdf57b99af5b5f89f1cc',1,'r_ioport.c']]], + ['r_5fioport_5fopen',['R_IOPORT_Open',['../group___i_o_p_o_r_t.html#ga24938047dccc62c4426ff543489454de',1,'r_ioport.c']]], + ['r_5fioport_5fpincfg',['R_IOPORT_PinCfg',['../group___i_o_p_o_r_t.html#gab518fc544fe2b59722e30bd0a28ef430',1,'r_ioport.c']]], + ['r_5fioport_5fpineventinputread',['R_IOPORT_PinEventInputRead',['../group___i_o_p_o_r_t.html#ga01fe1fa97720d982173bf110032fa21f',1,'r_ioport.c']]], + ['r_5fioport_5fpineventoutputwrite',['R_IOPORT_PinEventOutputWrite',['../group___i_o_p_o_r_t.html#gaa561f3c4df61925e4c24b420b78a5583',1,'r_ioport.c']]], + ['r_5fioport_5fpinread',['R_IOPORT_PinRead',['../group___i_o_p_o_r_t.html#gadb3ad72c9add6d73eb896c58c36f34ee',1,'r_ioport.c']]], + ['r_5fioport_5fpinscfg',['R_IOPORT_PinsCfg',['../group___i_o_p_o_r_t.html#ga3daa7097b08c7f623a741e2e481cf89f',1,'r_ioport.c']]], + ['r_5fioport_5fpinwrite',['R_IOPORT_PinWrite',['../group___i_o_p_o_r_t.html#ga1b17ca2e38acde207881e7e4ba2a7e28',1,'r_ioport.c']]], + ['r_5fioport_5fportdirectionset',['R_IOPORT_PortDirectionSet',['../group___i_o_p_o_r_t.html#gab83a07936c37ad904c329f8209d735e1',1,'r_ioport.c']]], + ['r_5fioport_5fporteventinputread',['R_IOPORT_PortEventInputRead',['../group___i_o_p_o_r_t.html#gae310ec091b58570972ea46f1f263985d',1,'r_ioport.c']]], + ['r_5fioport_5fporteventoutputwrite',['R_IOPORT_PortEventOutputWrite',['../group___i_o_p_o_r_t.html#ga8d3f8c4c90241587fee076b6fb0623ff',1,'r_ioport.c']]], + ['r_5fioport_5fportread',['R_IOPORT_PortRead',['../group___i_o_p_o_r_t.html#gab84c08b8ac66d18c5636ebc772133e77',1,'r_ioport.c']]], + ['r_5fioport_5fportwrite',['R_IOPORT_PortWrite',['../group___i_o_p_o_r_t.html#ga31825f3f0295317e5b446d74f791cd68',1,'r_ioport.c']]], + ['r_5fmhu_5fb_5fns_5fcallbackset',['R_MHU_B_NS_CallbackSet',['../group___m_h_u___b___n_s.html#ga0e9a0ab284383893a02ab288ac885ee8',1,'r_mhu_b_ns.c']]], + ['r_5fmhu_5fb_5fns_5fclose',['R_MHU_B_NS_Close',['../group___m_h_u___b___n_s.html#gaa7e509b5c668cf5926959cb50f53ea06',1,'r_mhu_b_ns.c']]], + ['r_5fmhu_5fb_5fns_5fisrsub',['R_MHU_B_NS_IsrSub',['../group___m_h_u___b___n_s.html#gac10ebe6ec0a9dfc34d9b512bbf3fa66e',1,'R_MHU_B_NS_IsrSub(uint32_t irq): r_mhu_b_ns.c'],['../group___m_h_u___b___n_s.html#gac10ebe6ec0a9dfc34d9b512bbf3fa66e',1,'R_MHU_B_NS_IsrSub(uint32_t irq): r_mhu_b_ns.c']]], + ['r_5fmhu_5fb_5fns_5fmsgsend',['R_MHU_B_NS_MsgSend',['../group___m_h_u___b___n_s.html#ga1bba9825f978e9a56d75d167a7b5b179',1,'r_mhu_b_ns.c']]], + ['r_5fmhu_5fb_5fns_5fopen',['R_MHU_B_NS_Open',['../group___m_h_u___b___n_s.html#gafb961a25b2c2e6b965dfa1ba580450f5',1,'r_mhu_b_ns.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fget_5fcallbackset',['R_MHU_B_NS_SWINT_GET_CallbackSet',['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#ga662917c72899887e1ddd67cce497c732',1,'r_mhu_b_ns_swint_get.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fget_5fclose',['R_MHU_B_NS_SWINT_GET_Close',['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#gadab533dca3f9ebbd37eddda34b8269fe',1,'r_mhu_b_ns_swint_get.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fget_5fisrsub',['R_MHU_B_NS_SWINT_GET_IsrSub',['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#ga8a7c2ba26a5025d177316a6a5981c706',1,'R_MHU_B_NS_SWINT_GET_IsrSub(uint32_t irq): r_mhu_b_ns_swint_get.c'],['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#ga8a7c2ba26a5025d177316a6a5981c706',1,'R_MHU_B_NS_SWINT_GET_IsrSub(uint32_t irq): r_mhu_b_ns_swint_get.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fget_5fopen',['R_MHU_B_NS_SWINT_GET_Open',['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#gafd2f119cc386c1672bf465ccefb498c3',1,'r_mhu_b_ns_swint_get.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fset_5fclose',['R_MHU_B_NS_SWINT_SET_Close',['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#gae96425edecc8f21ed9681028dfb81019',1,'r_mhu_b_ns_swint_set.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fset_5finterruptset',['R_MHU_B_NS_SWINT_SET_InterruptSet',['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#gaddd83232518e56d27b705f7c8fc99f17',1,'r_mhu_b_ns_swint_set.c']]], + ['r_5fmhu_5fb_5fns_5fswint_5fset_5fopen',['R_MHU_B_NS_SWINT_SET_Open',['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#gaba5433742015125a5bf5d8e3ef75b980',1,'r_mhu_b_ns_swint_set.c']]], + ['r_5fmhu_5fb_5fs_5fcallbackset',['R_MHU_B_S_CallbackSet',['../group___m_h_u___b___s.html#gad7c066b75da3fbe82844c1474d6a3f07',1,'r_mhu_b_s.c']]], + ['r_5fmhu_5fb_5fs_5fclose',['R_MHU_B_S_Close',['../group___m_h_u___b___s.html#gac6ff12104bd7bf87ad37d80b447b3fe8',1,'r_mhu_b_s.c']]], + ['r_5fmhu_5fb_5fs_5fisrsub',['R_MHU_B_S_IsrSub',['../group___m_h_u___b___s.html#ga0222baa1c79edc091f8676c719d32c1b',1,'R_MHU_B_S_IsrSub(uint32_t irq): r_mhu_b_s.c'],['../group___m_h_u___b___s.html#ga0222baa1c79edc091f8676c719d32c1b',1,'R_MHU_B_S_IsrSub(uint32_t irq): r_mhu_b_s.c']]], + ['r_5fmhu_5fb_5fs_5fmsgsend',['R_MHU_B_S_MsgSend',['../group___m_h_u___b___s.html#gad99b4c1d18e5981c75895a2578765c55',1,'r_mhu_b_s.c']]], + ['r_5fmhu_5fb_5fs_5fopen',['R_MHU_B_S_Open',['../group___m_h_u___b___s.html#ga0b3f80725bd550c0ad45e65a2b1ce84d',1,'r_mhu_b_s.c']]], + ['r_5fmhu_5fns_5fcallbackset',['R_MHU_NS_CallbackSet',['../group___m_h_u___n_s.html#ga13943d092624696482858ac43db16ac5',1,'r_mhu_ns.c']]], + ['r_5fmhu_5fns_5fclose',['R_MHU_NS_Close',['../group___m_h_u___n_s.html#ga40504624dee60aaebfb8710b91483930',1,'r_mhu_ns.c']]], + ['r_5fmhu_5fns_5fisrsub',['R_MHU_NS_IsrSub',['../group___m_h_u___n_s.html#ga1a325703fa61f7fff4e762b092cef2ad',1,'R_MHU_NS_IsrSub(uint32_t irq): r_mhu_ns.c'],['../group___m_h_u___n_s.html#ga1a325703fa61f7fff4e762b092cef2ad',1,'R_MHU_NS_IsrSub(uint32_t irq): r_mhu_ns.c']]], + ['r_5fmhu_5fns_5fmsgsend',['R_MHU_NS_MsgSend',['../group___m_h_u___n_s.html#gae5992c9313b0a0de777234abca176aaf',1,'r_mhu_ns.c']]], + ['r_5fmhu_5fns_5fopen',['R_MHU_NS_Open',['../group___m_h_u___n_s.html#ga38a24972860d1453ec85d28970d3eca4',1,'r_mhu_ns.c']]], + ['r_5fmhu_5fns_5fswint_5fget_5fcallbackset',['R_MHU_NS_SWINT_GET_CallbackSet',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga81d3b1a8847d43fbd10ee226377bb309',1,'r_mhu_ns_swint_get.c']]], + ['r_5fmhu_5fns_5fswint_5fget_5fclose',['R_MHU_NS_SWINT_GET_Close',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#gaaf04bfeb26451f6fc7da14fe1825e705',1,'r_mhu_ns_swint_get.c']]], + ['r_5fmhu_5fns_5fswint_5fget_5fisrsub',['R_MHU_NS_SWINT_GET_IsrSub',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga0d89407bf3cb2dbc8d34e7a1f8dc1820',1,'R_MHU_NS_SWINT_GET_IsrSub(uint32_t irq): r_mhu_ns_swint_get.c'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga0d89407bf3cb2dbc8d34e7a1f8dc1820',1,'R_MHU_NS_SWINT_GET_IsrSub(uint32_t irq): r_mhu_ns_swint_get.c']]], + ['r_5fmhu_5fns_5fswint_5fget_5fopen',['R_MHU_NS_SWINT_GET_Open',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ga3015e5dbd9204be24c79c0a69510e7ee',1,'r_mhu_ns_swint_get.c']]], + ['r_5fmhu_5fns_5fswint_5fset_5fclose',['R_MHU_NS_SWINT_SET_Close',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#gaccf0e3ebba04709c5fa1818c6b9bff31',1,'r_mhu_ns_swint_set.c']]], + ['r_5fmhu_5fns_5fswint_5fset_5finterruptset',['R_MHU_NS_SWINT_SET_InterruptSet',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#ga192b92d34e30e2170c6fa7002589db8e',1,'r_mhu_ns_swint_set.c']]], + ['r_5fmhu_5fns_5fswint_5fset_5fopen',['R_MHU_NS_SWINT_SET_Open',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#gaa38f2de3d81a051565c900098d904543',1,'r_mhu_ns_swint_set.c']]], + ['r_5fmhu_5fs_5fcallbackset',['R_MHU_S_CallbackSet',['../group___m_h_u___s.html#ga7b8e03e44542ae70f5b20e37e058fdd6',1,'r_mhu_s.c']]], + ['r_5fmhu_5fs_5fclose',['R_MHU_S_Close',['../group___m_h_u___s.html#gaaaee4d1fe5df68815f36021a1daefe46',1,'r_mhu_s.c']]], + ['r_5fmhu_5fs_5fisrsub',['R_MHU_S_IsrSub',['../group___m_h_u___s.html#gabb304fbb568e37940fe39bec2fb6a1af',1,'R_MHU_S_IsrSub(uint32_t irq): r_mhu_s.c'],['../group___m_h_u___s.html#gabb304fbb568e37940fe39bec2fb6a1af',1,'R_MHU_S_IsrSub(uint32_t irq): r_mhu_s.c']]], + ['r_5fmhu_5fs_5fmsgsend',['R_MHU_S_MsgSend',['../group___m_h_u___s.html#gace961f8d144fe82cf739f96762a681a3',1,'r_mhu_s.c']]], + ['r_5fmhu_5fs_5fopen',['R_MHU_S_Open',['../group___m_h_u___s.html#gad777d9161d5147e0eb546d107cf64259',1,'r_mhu_s.c']]], + ['r_5fmtu3_5fadctriggerset',['R_MTU3_AdcTriggerSet',['../group___m_t_u3.html#ga3e16434800b5d897208039f3398acf84',1,'r_mtu3.c']]], + ['r_5fmtu3_5fcallbackset',['R_MTU3_CallbackSet',['../group___m_t_u3.html#ga4ec0ad4f10536b74374b75f2ca46f527',1,'r_mtu3.c']]], + ['r_5fmtu3_5fclose',['R_MTU3_Close',['../group___m_t_u3.html#gace590734aa53fc0116c411decc0142d2',1,'r_mtu3.c']]], + ['r_5fmtu3_5fcounterset',['R_MTU3_CounterSet',['../group___m_t_u3.html#ga8cddfd80a2cfb39a4c69703c8e672368',1,'r_mtu3.c']]], + ['r_5fmtu3_5fdisable',['R_MTU3_Disable',['../group___m_t_u3.html#gab8b9c7b84a459fabd5449e83db526ee1',1,'r_mtu3.c']]], + ['r_5fmtu3_5fdutycycleset',['R_MTU3_DutyCycleSet',['../group___m_t_u3.html#ga5e4eda78ae4a5cb31e85eb682d6fe248',1,'r_mtu3.c']]], + ['r_5fmtu3_5fenable',['R_MTU3_Enable',['../group___m_t_u3.html#ga7be983a26523a21e6eec4ed02b3d0902',1,'r_mtu3.c']]], + ['r_5fmtu3_5finfoget',['R_MTU3_InfoGet',['../group___m_t_u3.html#ga0c1fcecad7205ef9928305c960c7e494',1,'r_mtu3.c']]], + ['r_5fmtu3_5fopen',['R_MTU3_Open',['../group___m_t_u3.html#ga0ee0beb7bd1f1773916b0c633454fe0b',1,'r_mtu3.c']]], + ['r_5fmtu3_5foutputdisable',['R_MTU3_OutputDisable',['../group___m_t_u3.html#ga37213c6f09b8122f3950a5a8a83adc34',1,'r_mtu3.c']]], + ['r_5fmtu3_5foutputenable',['R_MTU3_OutputEnable',['../group___m_t_u3.html#ga5a740d5042e7efdf698259f1a4b98ece',1,'r_mtu3.c']]], + ['r_5fmtu3_5fperiodset',['R_MTU3_PeriodSet',['../group___m_t_u3.html#ga0d64e832230506418738a816a38489e4',1,'r_mtu3.c']]], + ['r_5fmtu3_5freset',['R_MTU3_Reset',['../group___m_t_u3.html#gab23024474f1c7bb662f4f9dfc091d85c',1,'r_mtu3.c']]], + ['r_5fmtu3_5fstart',['R_MTU3_Start',['../group___m_t_u3.html#ga57aa8e231848fe1eb00775bd722418ee',1,'r_mtu3.c']]], + ['r_5fmtu3_5fstatusget',['R_MTU3_StatusGet',['../group___m_t_u3.html#ga8e02f073acf66a66ef6e525c8b57454e',1,'r_mtu3.c']]], + ['r_5fmtu3_5fstop',['R_MTU3_Stop',['../group___m_t_u3.html#ga396b95f942eed8fd222c67e5bfd22800',1,'r_mtu3.c']]], + ['r_5fpdm_5fcallbackset',['R_PDM_CallbackSet',['../group___p_d_m.html#gaecf26c2d11db2e9700beb41164b8a1fb',1,'r_pdm.c']]], + ['r_5fpdm_5fclose',['R_PDM_Close',['../group___p_d_m.html#ga0f07fb3bab80af13bd260b7f7f54062e',1,'r_pdm.c']]], + ['r_5fpdm_5fopen',['R_PDM_Open',['../group___p_d_m.html#ga348be7b997dd1200eb549ff3e7f946a0',1,'r_pdm.c']]], + ['r_5fpdm_5fread',['R_PDM_Read',['../group___p_d_m.html#ga62fc9390544cabfb4800f38125f748ab',1,'r_pdm.c']]], + ['r_5fpdm_5fstart',['R_PDM_Start',['../group___p_d_m.html#ga745fa70668486ae2a7d16bd72eb93a54',1,'r_pdm.c']]], + ['r_5fpdm_5fstatusget',['R_PDM_StatusGet',['../group___p_d_m.html#gaf5696a4b5a4e9f33f89baefe9a7e1f94',1,'r_pdm.c']]], + ['r_5fpdm_5fstop',['R_PDM_Stop',['../group___p_d_m.html#ga35f2abc47410d9906e8ae5bac12d7a29',1,'r_pdm.c']]], + ['r_5fpoeg_5fcallbackset',['R_POEG_CallbackSet',['../group___p_o_e_g.html#ga299d7e0c935c5305d72077fdf1963c2d',1,'r_poeg.c']]], + ['r_5fpoeg_5fclose',['R_POEG_Close',['../group___p_o_e_g.html#ga84dddc58a538b5a7c9c22b7f4412755a',1,'r_poeg.c']]], + ['r_5fpoeg_5fopen',['R_POEG_Open',['../group___p_o_e_g.html#ga84d0272a9da17941d62d264ff3a7b678',1,'r_poeg.c']]], + ['r_5fpoeg_5foutputdisable',['R_POEG_OutputDisable',['../group___p_o_e_g.html#ga42b42cd05ed30c698ba2dab5a32154dd',1,'r_poeg.c']]], + ['r_5fpoeg_5freset',['R_POEG_Reset',['../group___p_o_e_g.html#ga6713a1b99790d8e56d475bb377b5cb0c',1,'r_poeg.c']]], + ['r_5fpoeg_5fstatusget',['R_POEG_StatusGet',['../group___p_o_e_g.html#gacc13125edbed3049ff434195ed6dc66e',1,'r_poeg.c']]], + ['r_5friic_5fmaster_5fabort',['R_RIIC_MASTER_Abort',['../group___r_i_i_c___m_a_s_t_e_r.html#ga978fc692cf57fadf35e57123b717be3d',1,'r_riic_master.c']]], + ['r_5friic_5fmaster_5fcallbackset',['R_RIIC_MASTER_CallbackSet',['../group___r_i_i_c___m_a_s_t_e_r.html#gaaa8f27a523bc16f11c179ff05f9aed78',1,'r_riic_master.c']]], + ['r_5friic_5fmaster_5fclose',['R_RIIC_MASTER_Close',['../group___r_i_i_c___m_a_s_t_e_r.html#ga56dab8b87d138f1e86f718dff839bbb0',1,'r_riic_master.c']]], + ['r_5friic_5fmaster_5fopen',['R_RIIC_MASTER_Open',['../group___r_i_i_c___m_a_s_t_e_r.html#ga0e3fee8948f4df299977350491d537fa',1,'r_riic_master.c']]], + ['r_5friic_5fmaster_5fread',['R_RIIC_MASTER_Read',['../group___r_i_i_c___m_a_s_t_e_r.html#ga2a0ac14ddd932a9cab8faf253dcdbbb5',1,'r_riic_master.c']]], + ['r_5friic_5fmaster_5fslaveaddressset',['R_RIIC_MASTER_SlaveAddressSet',['../group___r_i_i_c___m_a_s_t_e_r.html#gafd5de8a9b0160931adaba85f614839f3',1,'r_riic_master.c']]], + ['r_5friic_5fmaster_5fstatusget',['R_RIIC_MASTER_StatusGet',['../group___r_i_i_c___m_a_s_t_e_r.html#ga786eaee89f66ecbf8f4faea575ee6e56',1,'r_riic_master.c']]], + ['r_5friic_5fmaster_5fwrite',['R_RIIC_MASTER_Write',['../group___r_i_i_c___m_a_s_t_e_r.html#ga492a86497c72e8f9bcf70d8dcd03c762',1,'r_riic_master.c']]], + ['r_5friic_5fslave_5fcallbackset',['R_RIIC_SLAVE_CallbackSet',['../group___r_i_i_c___s_l_a_v_e.html#gaeb7fb4539537de4f9388e6cdaab5f94d',1,'r_riic_slave.c']]], + ['r_5friic_5fslave_5fclose',['R_RIIC_SLAVE_Close',['../group___r_i_i_c___s_l_a_v_e.html#ga4a85c440574e6f2f837f3e19188d1a67',1,'r_riic_slave.c']]], + ['r_5friic_5fslave_5fopen',['R_RIIC_SLAVE_Open',['../group___r_i_i_c___s_l_a_v_e.html#gab0124cdb3b51609214466122053a7d15',1,'r_riic_slave.c']]], + ['r_5friic_5fslave_5fread',['R_RIIC_SLAVE_Read',['../group___r_i_i_c___s_l_a_v_e.html#ga46f545b8b7e7d94c773e2563f3cd2534',1,'r_riic_slave.c']]], + ['r_5friic_5fslave_5fwrite',['R_RIIC_SLAVE_Write',['../group___r_i_i_c___s_l_a_v_e.html#ga405ee8b79780785120d761af083f9557',1,'r_riic_slave.c']]], + ['r_5frspi_5fcalculatebitrate',['R_RSPI_CalculateBitrate',['../group___r_s_p_i.html#gad663d0a4eb35992cbf804cc5da21cb45',1,'r_rspi.c']]], + ['r_5frspi_5fcallbackset',['R_RSPI_CallbackSet',['../group___r_s_p_i.html#ga01e482fc0ce65e7462177bb7f5852ac2',1,'r_rspi.c']]], + ['r_5frspi_5fclose',['R_RSPI_Close',['../group___r_s_p_i.html#ga9aee5ad3abd18ef054128c8542ec7f68',1,'r_rspi.c']]], + ['r_5frspi_5fopen',['R_RSPI_Open',['../group___r_s_p_i.html#gaa303bc3394f99cd07e2ae96139651529',1,'r_rspi.c']]], + ['r_5frspi_5fread',['R_RSPI_Read',['../group___r_s_p_i.html#gabf563431c100264a744239953798e1ea',1,'r_rspi.c']]], + ['r_5frspi_5fwrite',['R_RSPI_Write',['../group___r_s_p_i.html#gae60c894cc73159eb48885dd1ab0864eb',1,'r_rspi.c']]], + ['r_5frspi_5fwriteread',['R_RSPI_WriteRead',['../group___r_s_p_i.html#gad52ea6e5651ab88e2cbacfec46f6a4b3',1,'r_rspi.c']]], + ['r_5frtc_5fcalendaralarmget',['R_RTC_CalendarAlarmGet',['../group___r_t_c.html#gacbb2641ed2236f071c001df6b025e0f2',1,'r_rtc.c']]], + ['r_5frtc_5fcalendaralarmset',['R_RTC_CalendarAlarmSet',['../group___r_t_c.html#ga5c39b02432cedcb7a29ae8bdc8fcefb8',1,'r_rtc.c']]], + ['r_5frtc_5fcalendartimeget',['R_RTC_CalendarTimeGet',['../group___r_t_c.html#gaabcfafd522c18288ac274f6b56f76366',1,'r_rtc.c']]], + ['r_5frtc_5fcalendartimeset',['R_RTC_CalendarTimeSet',['../group___r_t_c.html#ga3bf6329a0ea01943e385499fcac01e1e',1,'r_rtc.c']]], + ['r_5frtc_5fcallbackset',['R_RTC_CallbackSet',['../group___r_t_c.html#gaa6b50d916a9243792c0ea8b13744d25f',1,'r_rtc.c']]], + ['r_5frtc_5fclocksourceset',['R_RTC_ClockSourceSet',['../group___r_t_c.html#gaa08e35bcfca849283de15698beb6b150',1,'r_rtc.c']]], + ['r_5frtc_5fclose',['R_RTC_Close',['../group___r_t_c.html#gac1135140182189d9c1defa5846a375c8',1,'r_rtc.c']]], + ['r_5frtc_5ferroradjustmentset',['R_RTC_ErrorAdjustmentSet',['../group___r_t_c.html#ga6e0f357923c34057c8c938a52f6e8da8',1,'r_rtc.c']]], + ['r_5frtc_5finfoget',['R_RTC_InfoGet',['../group___r_t_c.html#ga311898f6b0ddd44d9b4c1b34defb0cf4',1,'r_rtc.c']]], + ['r_5frtc_5fopen',['R_RTC_Open',['../group___r_t_c.html#gae6b2cd0b0827d0fdef1dd148ddc354bb',1,'r_rtc.c']]], + ['r_5frtc_5fperiodicirqrateset',['R_RTC_PeriodicIrqRateSet',['../group___r_t_c.html#ga0fd1ee1e11ed683d7509f251bbd1f282',1,'r_rtc.c']]], + ['r_5fsci_5fb_5fi2c_5fabort',['R_SCI_B_I2C_Abort',['../group___s_c_i___b___i2_c.html#gadddbf1fa35661d53916faae95db97202',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fcallbackset',['R_SCI_B_I2C_CallbackSet',['../group___s_c_i___b___i2_c.html#gaa8c8d381f7c639650bf775c3eec125b9',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fclose',['R_SCI_B_I2C_Close',['../group___s_c_i___b___i2_c.html#ga1d57041c70f924d2968792d59d1b980b',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fopen',['R_SCI_B_I2C_Open',['../group___s_c_i___b___i2_c.html#gae457daf3146cc92adfadc471b5bebd27',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fread',['R_SCI_B_I2C_Read',['../group___s_c_i___b___i2_c.html#ga0d1ab3b59b204adb64bff01d4c83d10f',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fslaveaddressset',['R_SCI_B_I2C_SlaveAddressSet',['../group___s_c_i___b___i2_c.html#ga286e5448d62d962610e1c7e104eb3fe9',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fstatusget',['R_SCI_B_I2C_StatusGet',['../group___s_c_i___b___i2_c.html#ga677766a68a258bb7a2e97090cff1c03b',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fi2c_5fwrite',['R_SCI_B_I2C_Write',['../group___s_c_i___b___i2_c.html#gaa214ca399eb4bb9cb198237f608b4767',1,'r_sci_b_i2c.c']]], + ['r_5fsci_5fb_5fuart_5fabort',['R_SCI_B_UART_Abort',['../group___s_c_i___b___u_a_r_t.html#ga4c327408aaf082057bae8c89127e396c',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fbaudcalculate',['R_SCI_B_UART_BaudCalculate',['../group___s_c_i___b___u_a_r_t.html#gaafe9521b01cb274f8c8e45a4f62b020f',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fbaudset',['R_SCI_B_UART_BaudSet',['../group___s_c_i___b___u_a_r_t.html#gad9ae4780db497c17ae0c1677573f0320',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fcallbackset',['R_SCI_B_UART_CallbackSet',['../group___s_c_i___b___u_a_r_t.html#gabc9e9188d0150ff75f69f3217312691f',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fclose',['R_SCI_B_UART_Close',['../group___s_c_i___b___u_a_r_t.html#ga91e1364f8fd7b00073ccdb72a1bd34e9',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5finfoget',['R_SCI_B_UART_InfoGet',['../group___s_c_i___b___u_a_r_t.html#gafe20c9d0e52f1186c60033a5a1910119',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fopen',['R_SCI_B_UART_Open',['../group___s_c_i___b___u_a_r_t.html#ga60643fd4c7b00970ad9d295302498f13',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fread',['R_SCI_B_UART_Read',['../group___s_c_i___b___u_a_r_t.html#gaa0e296b71701a2d0045add3c75d2fdd7',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5freadstop',['R_SCI_B_UART_ReadStop',['../group___s_c_i___b___u_a_r_t.html#ga60ee90741cf1240c127d75acf9df50ed',1,'r_sci_b_uart.c']]], + ['r_5fsci_5fb_5fuart_5fwrite',['R_SCI_B_UART_Write',['../group___s_c_i___b___u_a_r_t.html#gad8456e403e88d52e1e858b62e19a2d0b',1,'r_sci_b_uart.c']]], + ['r_5fscif_5fuart_5fabort',['R_SCIF_UART_Abort',['../group___s_c_i_f___u_a_r_t.html#ga540d3842dd9db9c39e36c230583e29b1',1,'r_scif_uart.c']]], + ['r_5fscif_5fuart_5fbaudcalculate',['R_SCIF_UART_BaudCalculate',['../group___s_c_i_f___u_a_r_t.html#gad29ba19ecddc66108d794c93f9c1165f',1,'r_scif_uart.c']]], + ['r_5fscif_5fuart_5fbaudset',['R_SCIF_UART_BaudSet',['../group___s_c_i_f___u_a_r_t.html#ga6ed81db7a7e6f618870e1479734c5860',1,'r_scif_uart.c']]], + ['r_5fscif_5fuart_5fcallbackset',['R_SCIF_UART_CallbackSet',['../group___s_c_i_f___u_a_r_t.html#ga6880b7cd58a44c99fe197b1b0a14e737',1,'r_scif_uart.c']]], + ['r_5fscif_5fuart_5fclose',['R_SCIF_UART_Close',['../group___s_c_i_f___u_a_r_t.html#ga0d573f7ffdec42630a06605b64c00482',1,'r_scif_uart.c']]], + ['r_5fscif_5fuart_5finfoget',['R_SCIF_UART_InfoGet',['../group___s_c_i_f___u_a_r_t.html#gafc4582fe6a3b46c7e933d709204c01f3',1,'r_scif_uart.c']]], + ['r_5fscif_5fuart_5fopen',['R_SCIF_UART_Open',['../group___s_c_i_f___u_a_r_t.html#ga2a791c5e359c3fe2d85339fc3f915bc3',1,'r_scif_uart.c']]], + ['r_5fscif_5fuart_5fread',['R_SCIF_UART_Read',['../group___s_c_i_f___u_a_r_t.html#ga07a261385112a6909e86c441411e2e53',1,'r_scif_uart.c']]], + ['r_5fscif_5fuart_5freadstop',['R_SCIF_UART_ReadStop',['../group___s_c_i_f___u_a_r_t.html#gaef7c79f4e4ed3370d27f6cc73d744270',1,'r_scif_uart.c']]], + ['r_5fscif_5fuart_5fwrite',['R_SCIF_UART_Write',['../group___s_c_i_f___u_a_r_t.html#ga42409976902f41a6c92890ca8d9eb28a',1,'r_scif_uart.c']]], + ['r_5fspi_5fb_5fcalculatebitrate',['R_SPI_B_CalculateBitrate',['../group___s_p_i___b.html#ga4312b8a1c4aee284f3007621403a0b6d',1,'r_spi_b.c']]], + ['r_5fspi_5fb_5fcallbackset',['R_SPI_B_CallbackSet',['../group___s_p_i___b.html#ga588348788f8ed3f933befc5a1cbe9b90',1,'r_spi_b.c']]], + ['r_5fspi_5fb_5fclose',['R_SPI_B_Close',['../group___s_p_i___b.html#ga8e700b9cda9c467dde6090fb4c4a6969',1,'r_spi_b.c']]], + ['r_5fspi_5fb_5fopen',['R_SPI_B_Open',['../group___s_p_i___b.html#gab338db9c94dc09edc2ceddf87904845d',1,'r_spi_b.c']]], + ['r_5fspi_5fb_5fread',['R_SPI_B_Read',['../group___s_p_i___b.html#gabcc557f95c75b12b462962f6c709e229',1,'r_spi_b.c']]], + ['r_5fspi_5fb_5fwrite',['R_SPI_B_Write',['../group___s_p_i___b.html#ga2adf0b091362e84b71f1bd3a1d821f40',1,'r_spi_b.c']]], + ['r_5fspi_5fb_5fwriteread',['R_SPI_B_WriteRead',['../group___s_p_i___b.html#ga44658a0ea656e093e0eac61186aef274',1,'r_spi_b.c']]], + ['r_5ftsu_5fb_5fcalculatetemperature',['R_TSU_B_CalculateTemperature',['../group___t_s_u___b.html#ga7b164d0defb1b364c993b138a3ca0524',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fcalibrate',['R_TSU_B_Calibrate',['../group___t_s_u___b.html#ga11361111b88fa7e72cb9014d440c3ff1',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fcallbackset',['R_TSU_B_CallbackSet',['../group___t_s_u___b.html#gabfa2e53113bbd7e12dea5dabf227903c',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fclose',['R_TSU_B_Close',['../group___t_s_u___b.html#gab85e848ca49caaa929dd77dc8921e29f',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5finfoget',['R_TSU_B_InfoGet',['../group___t_s_u___b.html#ga5e8b4241a1e5e499da79c839aad0628e',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5foffsetset',['R_TSU_B_OffsetSet',['../group___t_s_u___b.html#gac01f0a25e022187d5a10913234c6dd8e',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fopen',['R_TSU_B_Open',['../group___t_s_u___b.html#ga97e39892fa51e09d3809f600781f3b98',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fread',['R_TSU_B_Read',['../group___t_s_u___b.html#gada13a2179de16db6073f307afae1e612',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fread32',['R_TSU_B_Read32',['../group___t_s_u___b.html#ga1b591622c668393be2a471acb5af0a09',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fscancfg',['R_TSU_B_ScanCfg',['../group___t_s_u___b.html#ga978c60f17aa8a2184140272e7588474e',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fscangroupstart',['R_TSU_B_ScanGroupStart',['../group___t_s_u___b.html#gaef9ec32a8de4e4286e10f0c87efd450d',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fscanstart',['R_TSU_B_ScanStart',['../group___t_s_u___b.html#ga39f1ed741b28eab45f1712935f3883e4',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fscanstop',['R_TSU_B_ScanStop',['../group___t_s_u___b.html#ga874a931c003bbe50ad12e6da4d87143f',1,'r_tsu_b.c']]], + ['r_5ftsu_5fb_5fstatusget',['R_TSU_B_StatusGet',['../group___t_s_u___b.html#ga15204e44f60f3f948c5b13983635742b',1,'r_tsu_b.c']]], + ['r_5fwdt_5fcallbackset',['R_WDT_CallbackSet',['../group___w_d_t.html#ga602ed1a63b61c46df822059ab6a5395e',1,'r_wdt.c']]], + ['r_5fwdt_5fcounterget',['R_WDT_CounterGet',['../group___w_d_t.html#gaf6b4f726ecfe6795c7887dc1226450ca',1,'r_wdt.c']]], + ['r_5fwdt_5fopen',['R_WDT_Open',['../group___w_d_t.html#gad64d0778fd0ceccb13a7287bb0d1fca8',1,'r_wdt.c']]], + ['r_5fwdt_5frefresh',['R_WDT_Refresh',['../group___w_d_t.html#gaff080d0dcc993cfbe7e99771396feffb',1,'r_wdt.c']]], + ['r_5fwdt_5fstatusclear',['R_WDT_StatusClear',['../group___w_d_t.html#gacd5b9ff42df96b9fd4603dda47b946cb',1,'r_wdt.c']]], + ['r_5fwdt_5fstatusget',['R_WDT_StatusGet',['../group___w_d_t.html#ga17bf328598042575cbe4f126f59bbc1b',1,'r_wdt.c']]], + ['r_5fwdt_5ftimeoutget',['R_WDT_TimeoutGet',['../group___w_d_t.html#gac6e98a5b526d81651da1ffeda3f70263',1,'r_wdt.c']]], + ['r_5fxspi_5fqspi_5fautocalibrate',['R_XSPI_QSPI_AutoCalibrate',['../group___x_s_p_i___q_s_p_i.html#ga6fceaa55b924ce5ecf7a00a962b5d529',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fbankset',['R_XSPI_QSPI_BankSet',['../group___x_s_p_i___q_s_p_i.html#ga384be6c60819abe2478a7b35c9a7a98e',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fclose',['R_XSPI_QSPI_Close',['../group___x_s_p_i___q_s_p_i.html#gaad19b3c8e517b9e614ee8697f8cef4e7',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fdirectread',['R_XSPI_QSPI_DirectRead',['../group___x_s_p_i___q_s_p_i.html#ga2f5bbf5d76d76c31840f4ce82d3393d2',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fdirecttransfer',['R_XSPI_QSPI_DirectTransfer',['../group___x_s_p_i___q_s_p_i.html#ga5e5bf2c3854fb149c7ac6f96fce9ee98',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fdirectwrite',['R_XSPI_QSPI_DirectWrite',['../group___x_s_p_i___q_s_p_i.html#ga1bfceb0eafe5923f05b90899c095bd2d',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5ferase',['R_XSPI_QSPI_Erase',['../group___x_s_p_i___q_s_p_i.html#ga35a0c5d80a5ae30d48b46b37153f7e76',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fopen',['R_XSPI_QSPI_Open',['../group___x_s_p_i___q_s_p_i.html#ga6e1ddbaec6b1d04c6425b3a271d9093a',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fspiprotocolset',['R_XSPI_QSPI_SpiProtocolSet',['../group___x_s_p_i___q_s_p_i.html#gac03a7edb53183d589372bd8be1ecf870',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fstatusget',['R_XSPI_QSPI_StatusGet',['../group___x_s_p_i___q_s_p_i.html#gaad73cce9b2ac857fbd0423223ae3388e',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fwrite',['R_XSPI_QSPI_Write',['../group___x_s_p_i___q_s_p_i.html#gaf2619573525414afefc46ebc2fd53bec',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fxipenter',['R_XSPI_QSPI_XipEnter',['../group___x_s_p_i___q_s_p_i.html#ga373731d45a2fdd625ee69b602ebc4d86',1,'r_xspi_qspi.c']]], + ['r_5fxspi_5fqspi_5fxipexit',['R_XSPI_QSPI_XipExit',['../group___x_s_p_i___q_s_p_i.html#gaedf789bc1d1335f9b2356eaaaa58694e',1,'r_xspi_qspi.c']]], + ['reset_5fhandler_5fns',['Reset_Handler_NS',['../group___b_s_p___m_c_u.html#ga49c8711ce69459021327e37557a1a9f1',1,'startup.c']]], + ['reset_5fhandler_5fs',['Reset_Handler_S',['../group___b_s_p___m_c_u.html#ga740c87d0bffe0692e1cdae0b96ab9ee9',1,'startups.c']]], + ['rm_5fcomms_5fi2c_5fcallback',['rm_comms_i2c_callback',['../group___r_m___c_o_m_m_s___i2_c.html#ga6fcbfc873b11a9f4c743ab36f52d1b09',1,'rm_comms_i2c_callback(i2c_master_callback_args_t *p_args): rm_comms_i2c_driver_rz.c'],['../group___r_m___c_o_m_m_s___i2_c.html#ga6fcbfc873b11a9f4c743ab36f52d1b09',1,'rm_comms_i2c_callback(i2c_master_callback_args_t *p_args): rm_comms_i2c_driver_rz.c']]], + ['rm_5fcomms_5fi2c_5fclose',['RM_COMMS_I2C_Close',['../group___r_m___c_o_m_m_s___i2_c.html#ga85e5f34d0ec4c6e2633a37fcdba7a255',1,'rm_comms_i2c.c']]], + ['rm_5fcomms_5fi2c_5fopen',['RM_COMMS_I2C_Open',['../group___r_m___c_o_m_m_s___i2_c.html#ga0560f3c49dbff678d8cbda3e5b8bf44b',1,'rm_comms_i2c.c']]], + ['rm_5fcomms_5fi2c_5fread',['RM_COMMS_I2C_Read',['../group___r_m___c_o_m_m_s___i2_c.html#ga5f84cbe68338541d75b220fb374f192b',1,'rm_comms_i2c.c']]], + ['rm_5fcomms_5fi2c_5fwrite',['RM_COMMS_I2C_Write',['../group___r_m___c_o_m_m_s___i2_c.html#gada9c139b138ed7c6d4b9bbeae0ffcb52',1,'rm_comms_i2c.c']]], + ['rm_5fcomms_5fi2c_5fwriteread',['RM_COMMS_I2C_WriteRead',['../group___r_m___c_o_m_m_s___i2_c.html#ga58164da5f2284c73a72902f85814438e',1,'rm_comms_i2c.c']]], + ['rm_5fhs300x_5fclose',['RM_HS300X_Close',['../group___r_m___h_s300_x.html#gaa9adabc57bc72f5440aca8fa1addde26',1,'rm_hs300x.c']]], + ['rm_5fhs300x_5fdatacalculate',['RM_HS300X_DataCalculate',['../group___r_m___h_s300_x.html#gac41a24eae1e4f6ebdb80c2eae32cec63',1,'rm_hs300x.c']]], + ['rm_5fhs300x_5fmeasurementstart',['RM_HS300X_MeasurementStart',['../group___r_m___h_s300_x.html#ga6b1687477a1eceb91a00b77bf34b31c3',1,'rm_hs300x.c']]], + ['rm_5fhs300x_5fopen',['RM_HS300X_Open',['../group___r_m___h_s300_x.html#ga09a980a63a6863d373370361f8f607da',1,'rm_hs300x.c']]], + ['rm_5fhs300x_5fprogrammingmodeenter',['RM_HS300X_ProgrammingModeEnter',['../group___r_m___h_s300_x.html#gaad0bf1f3d2428b136553060792c65632',1,'rm_hs300x.c']]], + ['rm_5fhs300x_5fprogrammingmodeexit',['RM_HS300X_ProgrammingModeExit',['../group___r_m___h_s300_x.html#gaa5596bf0a35a1e1c15aa214abdbcb653',1,'rm_hs300x.c']]], + ['rm_5fhs300x_5fread',['RM_HS300X_Read',['../group___r_m___h_s300_x.html#gaa3d8795e62cc694a4b93382a713ed452',1,'rm_hs300x.c']]], + ['rm_5fhs300x_5fresolutionchange',['RM_HS300X_ResolutionChange',['../group___r_m___h_s300_x.html#gabc4a07b3c9843357f322c6b9dc8e8abe',1,'rm_hs300x.c']]], + ['rm_5fhs300x_5fsensoridget',['RM_HS300X_SensorIdGet',['../group___r_m___h_s300_x.html#ga3360174eadfe24421084be0881b7c4f6',1,'rm_hs300x.c']]], + ['rm_5fhs400x_5fclose',['RM_HS400X_Close',['../group___r_m___h_s400_x.html#gadf41bfc87749833ce99276321fabb35c',1,'rm_hs400x.c']]], + ['rm_5fhs400x_5fdatacalculate',['RM_HS400X_DataCalculate',['../group___r_m___h_s400_x.html#gaa9dfab1c5a32803f66b8713adfd76d1d',1,'rm_hs400x.c']]], + ['rm_5fhs400x_5fmeasurementstart',['RM_HS400X_MeasurementStart',['../group___r_m___h_s400_x.html#ga21afc7bb8b35ca56c4918ddd26a1549a',1,'rm_hs400x.c']]], + ['rm_5fhs400x_5fmeasurementstop',['RM_HS400X_MeasurementStop',['../group___r_m___h_s400_x.html#gac7959f33340cb226d60a3b31ffd8e3e1',1,'rm_hs400x.c']]], + ['rm_5fhs400x_5fopen',['RM_HS400X_Open',['../group___r_m___h_s400_x.html#gaa263adbe024135888d31e141ce18d52c',1,'rm_hs400x.c']]], + ['rm_5fhs400x_5fread',['RM_HS400X_Read',['../group___r_m___h_s400_x.html#ga746a0ada3830ba954f47de6ed4f9746c',1,'rm_hs400x.c']]], + ['rm_5fzmod4xxx_5fclose',['RM_ZMOD4XXX_Close',['../group___r_m___z_m_o_d4_x_x_x.html#ga564266f1fd972d2a4b0d607925a8be48',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5fdeviceerrorcheck',['RM_ZMOD4XXX_DeviceErrorCheck',['../group___r_m___z_m_o_d4_x_x_x.html#gac455a0f48d2eb704341bd83bb37fff94',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5fiaq1stgendatacalculate',['RM_ZMOD4XXX_Iaq1stGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#ga3ee9369b728a5687fcc637114b563875',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5fiaq2ndgendatacalculate',['RM_ZMOD4XXX_Iaq2ndGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#gaa2b8de7170ff85a0f991dfdb6fb71317',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5fmeasurementstart',['RM_ZMOD4XXX_MeasurementStart',['../group___r_m___z_m_o_d4_x_x_x.html#ga21bde6c18d166c38790d044a3325d7b9',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5fmeasurementstop',['RM_ZMOD4XXX_MeasurementStop',['../group___r_m___z_m_o_d4_x_x_x.html#ga1a9e4762c544db1dc924fdff62bf9cc7',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5foaq1stgendatacalculate',['RM_ZMOD4XXX_Oaq1stGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#gaeafe7943df31f237ac45310796df64b2',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5foaq2ndgendatacalculate',['RM_ZMOD4XXX_Oaq2ndGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#ga8dcfe9a7b0b9419f1ecfce5d82c3fc33',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5fodordatacalculate',['RM_ZMOD4XXX_OdorDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#gaed61c1d9714552e574a4e6037d926180',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5fopen',['RM_ZMOD4XXX_Open',['../group___r_m___z_m_o_d4_x_x_x.html#ga2d4f33091a3b32dc0bda323c24a4eb15',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5fraqdatacalculate',['RM_ZMOD4XXX_RaqDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#gadaee5fde2afbb40e28f40b1de50daf45',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5fread',['RM_ZMOD4XXX_Read',['../group___r_m___z_m_o_d4_x_x_x.html#gafabd01cfcb93ac2bcdc4378dc94ec804',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5fstatuscheck',['RM_ZMOD4XXX_StatusCheck',['../group___r_m___z_m_o_d4_x_x_x.html#gaad8d1b8d7b71762b60c6078f9059bf1d',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5fsulfurodordatacalculate',['RM_ZMOD4XXX_SulfurOdorDataCalculate',['../group___r_m___z_m_o_d4_x_x_x.html#gaf200a9dc7ca8bf0601c2a2b96c341ecf',1,'rm_zmod4xxx.c']]], + ['rm_5fzmod4xxx_5ftemperatureandhumidityset',['RM_ZMOD4XXX_TemperatureAndHumiditySet',['../group___r_m___z_m_o_d4_x_x_x.html#ga5a6c9c9dcb25bc3964b07ed7fe002477',1,'rm_zmod4xxx.c']]] ]; diff --git a/search/functions_5.html b/search/functions_5.html new file mode 100644 index 0000000..0314918 --- /dev/null +++ b/search/functions_5.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/functions_5.js b/search/functions_5.js new file mode 100644 index 0000000..b35c531 --- /dev/null +++ b/search/functions_5.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['securefault_5fhandler',['SecureFault_Handler',['../group___b_s_p___m_c_u.html#gacafcf7aae8e82ba63c6d74db1f574aad',1,'startups.c']]], + ['systeminit',['SystemInit',['../group___b_s_p___m_c_u.html#ga93f514700ccf00d08dbdcff7f1224eb2',1,'system.c']]], + ['systeminit_5fs',['SystemInit_S',['../group___b_s_p___m_c_u.html#ga5cd95eba95dc2c1bad0bf05398c9779c',1,'systems.c']]] +]; diff --git a/search/groups_0.js b/search/groups_0.js index d479ceb..9eaa37f 100644 --- a/search/groups_0.js +++ b/search/groups_0.js @@ -1,5 +1,7 @@ var searchData= [ - ['bsp_20i_2fo_20access',['BSP I/O access',['../group___b_s_p___i_o.html',1,'']]], - ['bsp',['BSP',['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html',1,'']]] + ['adc_20interface',['ADC Interface',['../group___a_d_c___a_p_i.html',1,'']]], + ['analog_20to_20digital_20converter_20_28r_5fadc_5fc_29',['Analog to Digital Converter (r_adc_c)',['../group___a_d_c___c.html',1,'']]], + ['analog_20to_20digital_20converter_20_28r_5fadc_5fe_29',['Analog to Digital Converter (r_adc_e)',['../group___a_d_c___e.html',1,'']]], + ['analog',['Analog',['../group___r_e_n_e_s_a_s___a_n_a_l_o_g___m_o_d_u_l_e_s.html',1,'']]] ]; diff --git a/search/groups_1.js b/search/groups_1.js index 8d308c3..d479ceb 100644 --- a/search/groups_1.js +++ b/search/groups_1.js @@ -1,7 +1,5 @@ var searchData= [ - ['can_20interface',['CAN Interface',['../group___c_a_n___a_p_i.html',1,'']]], - ['controller_20area_20network_20_2d_20flexible_20data_20_28r_5fcanfd_29',['Controller Area Network - Flexible Data (r_canfd)',['../group___c_a_n_f_d.html',1,'']]], - ['common_20error_20codes',['Common Error Codes',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html',1,'']]], - ['communicatons_20middleware_20interface',['Communicatons Middleware Interface',['../group___r_m___c_o_m_m_s___a_p_i.html',1,'']]] + ['bsp_20i_2fo_20access',['BSP I/O access',['../group___b_s_p___i_o.html',1,'']]], + ['bsp',['BSP',['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html',1,'']]] ]; diff --git a/search/groups_10.html b/search/groups_10.html new file mode 100644 index 0000000..b5d2c6b --- /dev/null +++ b/search/groups_10.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/groups_10.js b/search/groups_10.js new file mode 100644 index 0000000..b3f38b7 --- /dev/null +++ b/search/groups_10.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['zmod4xxx_20gas_20sensor_20_28rm_5fzmod4xxx_29',['ZMOD4XXX Gas Sensor (rm_zmod4xxx)',['../group___r_m___z_m_o_d4_x_x_x.html',1,'']]], + ['zmod4xxx_20middleware_20interface',['ZMOD4XXX Middleware Interface',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html',1,'']]] +]; diff --git a/search/groups_2.js b/search/groups_2.js index 43d12cb..25550b5 100644 --- a/search/groups_2.js +++ b/search/groups_2.js @@ -1,5 +1,11 @@ var searchData= [ - ['external_20irq_20interface',['External IRQ Interface',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html',1,'']]], - ['external_20irq_20_28r_5fintc_5firq_29',['External IRQ (r_intc_irq)',['../group___i_n_t_c___i_r_q.html',1,'']]] + ['can_20interface',['CAN Interface',['../group___c_a_n___a_p_i.html',1,'']]], + ['controller_20area_20network_20_2d_20flexible_20data_20_28r_5fcanfd_29',['Controller Area Network - Flexible Data (r_canfd)',['../group___c_a_n_f_d.html',1,'']]], + ['compare_20match_20timer_20w_20_28r_5fcmtw_29',['Compare Match Timer W (r_cmtw)',['../group___c_m_t_w.html',1,'']]], + ['crc_20_28r_5fcrc_29',['CRC (r_crc)',['../group___c_r_c.html',1,'']]], + ['crc_20interface',['CRC Interface',['../group___c_r_c___a_p_i.html',1,'']]], + ['connectivity',['Connectivity',['../group___r_e_n_e_s_a_s___c_o_n_n_e_c_t_i_v_i_t_y___m_o_d_u_l_e_s.html',1,'']]], + ['common_20error_20codes',['Common Error Codes',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html',1,'']]], + ['communicatons_20middleware_20interface',['Communicatons Middleware Interface',['../group___r_m___c_o_m_m_s___a_p_i.html',1,'']]] ]; diff --git a/search/groups_3.js b/search/groups_3.js index 235f383..d386943 100644 --- a/search/groups_3.js +++ b/search/groups_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['freertos_20port_20_28rm_5ffreertos_5fport_29',['FreeRTOS Port (rm_freertos_port)',['../group___r_m___f_r_e_e_r_t_o_s___p_o_r_t.html',1,'']]] + ['direct_20memory_20access_20controller_20_28r_5fdmac_5fb_29',['Direct Memory Access Controller (r_dmac_b)',['../group___d_m_a_c___b.html',1,'']]] ]; diff --git a/search/groups_4.js b/search/groups_4.js index c385c00..261a905 100644 --- a/search/groups_4.js +++ b/search/groups_4.js @@ -1,5 +1,10 @@ var searchData= [ - ['general_20pwm_20timer_20_28r_5fgpt_29',['General PWM Timer (r_gpt)',['../group___g_p_t.html',1,'']]], - ['general_20timer_20_28r_5fgtm_29',['General Timer (r_gtm)',['../group___g_t_m.html',1,'']]] + ['event_20link_20controller_20_28r_5felc_29',['Event Link Controller (r_elc)',['../group___e_l_c.html',1,'']]], + ['elc_20interface',['ELC Interface',['../group___e_l_c___a_p_i.html',1,'']]], + ['external_20irq_20interface',['External IRQ Interface',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html',1,'']]], + ['external_20irq_20_28r_5fintc_5firq_29',['External IRQ (r_intc_irq)',['../group___i_n_t_c___i_r_q.html',1,'']]], + ['external_20irq_20_28r_5fintc_5fnmi_29',['External IRQ (r_intc_nmi)',['../group___i_n_t_c___n_m_i.html',1,'']]], + ['external_20irq_20_28r_5fintc_5ftint_29',['External IRQ (r_intc_tint)',['../group___i_n_t_c___t_i_n_t.html',1,'']]], + ['expanded_20serial_20peripheral_20interface_20_28xspi_29_20qspi_20_28r_5fxspi_5fqspi_29',['Expanded Serial Peripheral Interface (xSPI) QSPI (r_xspi_qspi)',['../group___x_s_p_i___q_s_p_i.html',1,'']]] ]; diff --git a/search/groups_5.js b/search/groups_5.js index 3c99e84..235f383 100644 --- a/search/groups_5.js +++ b/search/groups_5.js @@ -1,7 +1,4 @@ var searchData= [ - ['hs300x_20temperature_2fhumidity_20sensor_20_28rm_5fhs300x_29',['HS300X Temperature/Humidity Sensor (rm_hs300x)',['../group___r_m___h_s300_x.html',1,'']]], - ['hs300x_20middleware_20interface',['HS300X Middleware Interface',['../group___r_m___h_s300_x___a_p_i.html',1,'']]], - ['hs400x_20temperature_2fhumidity_20sensor_20_28rm_5fhs400x_29',['HS400X Temperature/Humidity Sensor (rm_hs400x)',['../group___r_m___h_s400_x.html',1,'']]], - ['hs400x_20middleware_20interface',['HS400X Middleware Interface',['../group___r_m___h_s400_x___a_p_i.html',1,'']]] + ['freertos_20port_20_28rm_5ffreertos_5fport_29',['FreeRTOS Port (rm_freertos_port)',['../group___r_m___f_r_e_e_r_t_o_s___p_o_r_t.html',1,'']]] ]; diff --git a/search/groups_6.js b/search/groups_6.js index bba60c2..c385c00 100644 --- a/search/groups_6.js +++ b/search/groups_6.js @@ -1,9 +1,5 @@ var searchData= [ - ['i2c_20master_20interface',['I2C Master Interface',['../group___i2_c___m_a_s_t_e_r___a_p_i.html',1,'']]], - ['i_2fo_20ports_20_28r_5fioport_29',['I/O Ports (r_ioport)',['../group___i_o_p_o_r_t.html',1,'']]], - ['i_2fo_20port_20interface',['I/O Port Interface',['../group___i_o_p_o_r_t___a_p_i.html',1,'']]], - ['interfaces',['Interfaces',['../group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.html',1,'']]], - ['i2c_20master_20on_20riic_20_28r_5friic_5fmaster_29',['I2C Master on RIIC (r_riic_master)',['../group___r_i_i_c___m_a_s_t_e_r.html',1,'']]], - ['i2c_20communication_20device_20_28rm_5fcomms_5fi2c_29',['I2C Communication Device (rm_comms_i2c)',['../group___r_m___c_o_m_m_s___i2_c.html',1,'']]] + ['general_20pwm_20timer_20_28r_5fgpt_29',['General PWM Timer (r_gpt)',['../group___g_p_t.html',1,'']]], + ['general_20timer_20_28r_5fgtm_29',['General Timer (r_gtm)',['../group___g_t_m.html',1,'']]] ]; diff --git a/search/groups_7.js b/search/groups_7.js index b3c657f..3c99e84 100644 --- a/search/groups_7.js +++ b/search/groups_7.js @@ -1,12 +1,7 @@ var searchData= [ - ['mpu_20board_20support_20package',['MPU Board Support Package',['../group___b_s_p___m_c_u.html',1,'']]], - ['mhu_20interface_20_28for_20secure_20and_20non_20secure_20channels_29',['MHU Interface (for secure and non secure channels)',['../group___m_h_u___a_p_i.html',1,'']]], - ['message_20handling_20unit_20for_20non_20secure_20channels_20_28r_5fmhu_5fns_29',['Message Handling Unit for non secure channels (r_mhu_ns)',['../group___m_h_u___n_s.html',1,'']]], - ['message_20handling_20unit_20for_20non_2dsecure_20software_20interrupt_20receive_20_28r_5fmhu_5fns_5fswint_5fget_29',['Message Handling Unit for non-secure software interrupt receive (r_mhu_ns_swint_get)',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html',1,'']]], - ['mhu_20interface_20_28software_20interrupt_20get_29',['MHU Interface (Software Interrupt Get)',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html',1,'']]], - ['message_20handling_20unit_20for_20non_2dsecure_20software_20interrupt_20generation_20_28r_5fmhu_5fns_5fswint_5fset_29',['Message Handling Unit for non-secure software interrupt generation (r_mhu_ns_swint_set)',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html',1,'']]], - ['mhu_20interface_20_28software_20interrupt_20set_29',['MHU Interface (Software Interrupt Set)',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html',1,'']]], - ['message_20handling_20unit_20for_20secure_20channels_20_28r_5fmhu_5fs_29',['Message Handling Unit for secure channels (r_mhu_s)',['../group___m_h_u___s.html',1,'']]], - ['modules',['Modules',['../group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.html',1,'']]] + ['hs300x_20temperature_2fhumidity_20sensor_20_28rm_5fhs300x_29',['HS300X Temperature/Humidity Sensor (rm_hs300x)',['../group___r_m___h_s300_x.html',1,'']]], + ['hs300x_20middleware_20interface',['HS300X Middleware Interface',['../group___r_m___h_s300_x___a_p_i.html',1,'']]], + ['hs400x_20temperature_2fhumidity_20sensor_20_28rm_5fhs400x_29',['HS400X Temperature/Humidity Sensor (rm_hs400x)',['../group___r_m___h_s400_x.html',1,'']]], + ['hs400x_20middleware_20interface',['HS400X Middleware Interface',['../group___r_m___h_s400_x___a_p_i.html',1,'']]] ]; diff --git a/search/groups_8.js b/search/groups_8.js index e2e6e0e..f3ba7b7 100644 --- a/search/groups_8.js +++ b/search/groups_8.js @@ -1,5 +1,15 @@ var searchData= [ - ['ob1203_20light_2fproximity_2fppg_20sensor_20_28rm_5fob1203_29',['OB1203 Light/Proximity/PPG Sensor (rm_ob1203)',['../group___r_m___o_b1203.html',1,'']]], - ['ob1203_20middleware_20interface',['OB1203 Middleware Interface',['../group___r_m___o_b1203___a_p_i.html',1,'']]] + ['i2c_20master_20interface',['I2C Master Interface',['../group___i2_c___m_a_s_t_e_r___a_p_i.html',1,'']]], + ['i2c_20slave_20interface',['I2C Slave Interface',['../group___i2_c___s_l_a_v_e___a_p_i.html',1,'']]], + ['i3c_20interface',['I3C Interface',['../group___i3_c___a_p_i.html',1,'']]], + ['i3c_20_28r_5fi3c_5fb_29',['I3C (r_i3c_b)',['../group___i3_c___b.html',1,'']]], + ['i_2fo_20ports_20_28r_5fioport_29',['I/O Ports (r_ioport)',['../group___i_o_p_o_r_t.html',1,'']]], + ['i_2fo_20port_20interface',['I/O Port Interface',['../group___i_o_p_o_r_t___a_p_i.html',1,'']]], + ['input',['Input',['../group___r_e_n_e_s_a_s___i_n_p_u_t___m_o_d_u_l_e_s.html',1,'']]], + ['interfaces',['Interfaces',['../group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.html',1,'']]], + ['i2c_20master_20on_20riic_20_28r_5friic_5fmaster_29',['I2C Master on RIIC (r_riic_master)',['../group___r_i_i_c___m_a_s_t_e_r.html',1,'']]], + ['i2c_20slave_20_28r_5friic_5fslave_29',['I2C Slave (r_riic_slave)',['../group___r_i_i_c___s_l_a_v_e.html',1,'']]], + ['i2c_20communication_20device_20_28rm_5fcomms_5fi2c_29',['I2C Communication Device (rm_comms_i2c)',['../group___r_m___c_o_m_m_s___i2_c.html',1,'']]], + ['i2c_20master_20_28r_5fsci_5fb_5fi2c_29',['I2C Master (r_sci_b_i2c)',['../group___s_c_i___b___i2_c.html',1,'']]] ]; diff --git a/search/groups_9.js b/search/groups_9.js index 83baeb1..4621766 100644 --- a/search/groups_9.js +++ b/search/groups_9.js @@ -1,5 +1,18 @@ var searchData= [ - ['port_20output_20enable_20for_20gpt_20_28r_5fpoeg_29',['Port Output Enable for GPT (r_poeg)',['../group___p_o_e_g.html',1,'']]], - ['poeg_20interface',['POEG Interface',['../group___p_o_e_g___a_p_i.html',1,'']]] + ['mpu_20board_20support_20package',['MPU Board Support Package',['../group___b_s_p___m_c_u.html',1,'']]], + ['mhu_20interface_20_28for_20secure_20and_20non_20secure_20channels_29',['MHU Interface (for secure and non secure channels)',['../group___m_h_u___a_p_i.html',1,'']]], + ['message_20handling_20unit_20for_20non_20secure_20channels_20_28r_5fmhu_5fb_5fns_29',['Message Handling Unit for non secure channels (r_mhu_b_ns)',['../group___m_h_u___b___n_s.html',1,'']]], + ['message_20handling_20unit_20for_20non_2dsecure_20software_20interrupt_20receive_20_28r_5fmhu_5fb_5fns_5fswint_5fget_29',['Message Handling Unit for non-secure software interrupt receive (r_mhu_b_ns_swint_get)',['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html',1,'']]], + ['message_20handling_20unit_20for_20non_2dsecure_20software_20interrupt_20generation_20_28r_5fmhu_5fb_5fns_5fswint_5fset_29',['Message Handling Unit for non-secure software interrupt generation (r_mhu_b_ns_swint_set)',['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html',1,'']]], + ['message_20handling_20unit_20for_20secure_20channels_20_28r_5fmhu_5fb_5fs_29',['Message Handling Unit for secure channels (r_mhu_b_s)',['../group___m_h_u___b___s.html',1,'']]], + ['message_20handling_20unit_20for_20non_20secure_20channels_20_28r_5fmhu_5fns_29',['Message Handling Unit for non secure channels (r_mhu_ns)',['../group___m_h_u___n_s.html',1,'']]], + ['message_20handling_20unit_20for_20non_2dsecure_20software_20interrupt_20receive_20_28r_5fmhu_5fns_5fswint_5fget_29',['Message Handling Unit for non-secure software interrupt receive (r_mhu_ns_swint_get)',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html',1,'']]], + ['mhu_20interface_20_28software_20interrupt_20get_29',['MHU Interface (Software Interrupt Get)',['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html',1,'']]], + ['message_20handling_20unit_20for_20non_2dsecure_20software_20interrupt_20generation_20_28r_5fmhu_5fns_5fswint_5fset_29',['Message Handling Unit for non-secure software interrupt generation (r_mhu_ns_swint_set)',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html',1,'']]], + ['mhu_20interface_20_28software_20interrupt_20set_29',['MHU Interface (Software Interrupt Set)',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html',1,'']]], + ['message_20handling_20unit_20for_20secure_20channels_20_28r_5fmhu_5fs_29',['Message Handling Unit for secure channels (r_mhu_s)',['../group___m_h_u___s.html',1,'']]], + ['multi_2dfunction_20timer_20pulse_20unit_203_20_28r_5fmtu3_29',['Multi-Function Timer Pulse Unit 3 (r_mtu3)',['../group___m_t_u3.html',1,'']]], + ['modules',['Modules',['../group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.html',1,'']]], + ['monitoring',['Monitoring',['../group___r_e_n_e_s_a_s___m_o_n_i_t_o_r_i_n_g___m_o_d_u_l_e_s.html',1,'']]] ]; diff --git a/search/groups_a.js b/search/groups_a.js index 2150b2e..939e47f 100644 --- a/search/groups_a.js +++ b/search/groups_a.js @@ -1,5 +1,7 @@ var searchData= [ - ['rzv2l',['RZV2L',['../group___b_s_p___m_c_u___r_z_v2_l.html',1,'']]], - ['renesas_20serial_20peripheral_20interface_20_28r_5frspi_29',['Renesas Serial Peripheral Interface (r_rspi)',['../group___r_s_p_i.html',1,'']]] + ['pdm_20interface_20_28r_5fpdm_29',['PDM Interface (r_pdm)',['../group___p_d_m.html',1,'']]], + ['pdm_20interface',['PDM Interface',['../group___p_d_m___a_p_i.html',1,'']]], + ['port_20output_20enable_20for_20gpt_20_28r_5fpoeg_29',['Port Output Enable for GPT (r_poeg)',['../group___p_o_e_g.html',1,'']]], + ['poeg_20interface',['POEG Interface',['../group___p_o_e_g___a_p_i.html',1,'']]] ]; diff --git a/search/groups_b.js b/search/groups_b.js index 585e9c3..ef74f9a 100644 --- a/search/groups_b.js +++ b/search/groups_b.js @@ -1,5 +1,9 @@ var searchData= [ - ['serial_20communications_20interface_20_28scif_29_20uart_20_28r_5fscif_5fuart_29',['Serial Communications Interface (SCIF) UART (r_scif_uart)',['../group___s_c_i_f___u_a_r_t.html',1,'']]], - ['spi_20interface',['SPI Interface',['../group___s_p_i___a_p_i.html',1,'']]] + ['rzv2h',['RZV2H',['../group___b_s_p___m_c_u___r_z_v2_h.html',1,'']]], + ['rzv2l',['RZV2L',['../group___b_s_p___m_c_u___r_z_v2_l.html',1,'']]], + ['rtos',['RTOS',['../group___r_e_n_e_s_a_s___r_t_o_s___m_o_d_u_l_e_s.html',1,'']]], + ['renesas_20serial_20peripheral_20interface_20_28r_5frspi_29',['Renesas Serial Peripheral Interface (r_rspi)',['../group___r_s_p_i.html',1,'']]], + ['realtime_20clock_20_28r_5frtc_29',['Realtime Clock (r_rtc)',['../group___r_t_c.html',1,'']]], + ['rtc_20interface',['RTC Interface',['../group___r_t_c___a_p_i.html',1,'']]] ]; diff --git a/search/groups_c.js b/search/groups_c.js index bb97b4b..82efe88 100644 --- a/search/groups_c.js +++ b/search/groups_c.js @@ -1,5 +1,10 @@ var searchData= [ - ['timer_20interface',['Timer Interface',['../group___t_i_m_e_r___a_p_i.html',1,'']]], - ['transfer_20interface',['Transfer Interface',['../group___t_r_a_n_s_f_e_r___a_p_i.html',1,'']]] + ['sensor',['Sensor',['../group___r_e_n_e_s_a_s___s_e_n_s_o_r___m_o_d_u_l_e_s.html',1,'']]], + ['storage',['Storage',['../group___r_e_n_e_s_a_s___s_t_o_r_a_g_e___m_o_d_u_l_e_s.html',1,'']]], + ['system',['System',['../group___r_e_n_e_s_a_s___s_y_s_t_e_m___m_o_d_u_l_e_s.html',1,'']]], + ['serial_20communications_20interface_20_28scif_29_20uart_20_28r_5fscif_5fuart_29',['Serial Communications Interface (SCIF) UART (r_scif_uart)',['../group___s_c_i_f___u_a_r_t.html',1,'']]], + ['spi_20interface',['SPI Interface',['../group___s_p_i___a_p_i.html',1,'']]], + ['spi_20_28r_5fspi_5fb_29',['SPI (r_spi_b)',['../group___s_p_i___b.html',1,'']]], + ['spi_20flash_20interface',['SPI Flash Interface',['../group___s_p_i___f_l_a_s_h___a_p_i.html',1,'']]] ]; diff --git a/search/groups_d.js b/search/groups_d.js index 2cdbea5..5ff1ec6 100644 --- a/search/groups_d.js +++ b/search/groups_d.js @@ -1,4 +1,8 @@ var searchData= [ - ['uart_20interface',['UART Interface',['../group___u_a_r_t___a_p_i.html',1,'']]] + ['timers',['Timers',['../group___r_e_n_e_s_a_s___t_i_m_e_r_s___m_o_d_u_l_e_s.html',1,'']]], + ['transfer',['Transfer',['../group___r_e_n_e_s_a_s___t_r_a_n_s_f_e_r___m_o_d_u_l_e_s.html',1,'']]], + ['timer_20interface',['Timer Interface',['../group___t_i_m_e_r___a_p_i.html',1,'']]], + ['transfer_20interface',['Transfer Interface',['../group___t_r_a_n_s_f_e_r___a_p_i.html',1,'']]], + ['temperature_20sensor_20unit_20_28r_5ftsu_5fb_29',['Temperature Sensor Unit (r_tsu_b)',['../group___t_s_u___b.html',1,'']]] ]; diff --git a/search/groups_e.js b/search/groups_e.js index b3f38b7..557f87f 100644 --- a/search/groups_e.js +++ b/search/groups_e.js @@ -1,5 +1,5 @@ var searchData= [ - ['zmod4xxx_20gas_20sensor_20_28rm_5fzmod4xxx_29',['ZMOD4XXX Gas Sensor (rm_zmod4xxx)',['../group___r_m___z_m_o_d4_x_x_x.html',1,'']]], - ['zmod4xxx_20middleware_20interface',['ZMOD4XXX Middleware Interface',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html',1,'']]] + ['uart_20_28r_5fsci_5fb_5fuart_29',['UART (r_sci_b_uart)',['../group___s_c_i___b___u_a_r_t.html',1,'']]], + ['uart_20interface',['UART Interface',['../group___u_a_r_t___a_p_i.html',1,'']]] ]; diff --git a/search/groups_f.html b/search/groups_f.html new file mode 100644 index 0000000..9689c57 --- /dev/null +++ b/search/groups_f.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/groups_f.js b/search/groups_f.js new file mode 100644 index 0000000..e64b452 --- /dev/null +++ b/search/groups_f.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['watchdog_20_28r_5fwdt_29',['Watchdog (r_wdt)',['../group___w_d_t.html',1,'']]], + ['wdt_20interface',['WDT Interface',['../group___w_d_t___a_p_i.html',1,'']]] +]; diff --git a/search/lunr.js b/search/lunr.js new file mode 100644 index 0000000..94eacb6 --- /dev/null +++ b/search/lunr.js @@ -0,0 +1,3475 @@ +/** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 + * Copyright (C) 2020 Oliver Nightingale + * @license MIT + */ + +;(function(){ + +/** + * A convenience function for configuring and constructing + * a new lunr Index. + * + * A lunr.Builder instance is created and the pipeline setup + * with a trimmer, stop word filter and stemmer. + * + * This builder object is yielded to the configuration function + * that is passed as a parameter, allowing the list of fields + * and other builder parameters to be customised. + * + * All documents _must_ be added within the passed config function. + * + * @example + * var idx = lunr(function () { + * this.field('title') + * this.field('body') + * this.ref('id') + * + * documents.forEach(function (doc) { + * this.add(doc) + * }, this) + * }) + * + * @see {@link lunr.Builder} + * @see {@link lunr.Pipeline} + * @see {@link lunr.trimmer} + * @see {@link lunr.stopWordFilter} + * @see {@link lunr.stemmer} + * @namespace {function} lunr + */ +var lunr = function (config) { + var builder = new lunr.Builder + + builder.pipeline.add( + lunr.trimmer, + lunr.stopWordFilter, + lunr.stemmer + ) + + builder.searchPipeline.add( + lunr.stemmer + ) + + config.call(builder, builder) + return builder.build() +} + +lunr.version = "2.3.9" +/*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + */ + +/** + * A namespace containing utils for the rest of the lunr library + * @namespace lunr.utils + */ +lunr.utils = {} + +/** + * Print a warning message to the console. + * + * @param {String} message The message to be printed. + * @memberOf lunr.utils + * @function + */ +lunr.utils.warn = (function (global) { + /* eslint-disable no-console */ + return function (message) { + if (global.console && console.warn) { + console.warn(message) + } + } + /* eslint-enable no-console */ +})(this) + +/** + * Convert an object to a string. + * + * In the case of `null` and `undefined` the function returns + * the empty string, in all other cases the result of calling + * `toString` on the passed object is returned. + * + * @param {Any} obj The object to convert to a string. + * @return {String} string representation of the passed object. + * @memberOf lunr.utils + */ +lunr.utils.asString = function (obj) { + if (obj === void 0 || obj === null) { + return "" + } else { + return obj.toString() + } +} + +/** + * Clones an object. + * + * Will create a copy of an existing object such that any mutations + * on the copy cannot affect the original. + * + * Only shallow objects are supported, passing a nested object to this + * function will cause a TypeError. + * + * Objects with primitives, and arrays of primitives are supported. + * + * @param {Object} obj The object to clone. + * @return {Object} a clone of the passed object. + * @throws {TypeError} when a nested object is passed. + * @memberOf Utils + */ +lunr.utils.clone = function (obj) { + if (obj === null || obj === undefined) { + return obj + } + + var clone = Object.create(null), + keys = Object.keys(obj) + + for (var i = 0; i < keys.length; i++) { + var key = keys[i], + val = obj[key] + + if (Array.isArray(val)) { + clone[key] = val.slice() + continue + } + + if (typeof val === 'string' || + typeof val === 'number' || + typeof val === 'boolean') { + clone[key] = val + continue + } + + throw new TypeError("clone is not deep and does not support nested objects") + } + + return clone +} +lunr.FieldRef = function (docRef, fieldName, stringValue) { + this.docRef = docRef + this.fieldName = fieldName + this._stringValue = stringValue +} + +lunr.FieldRef.joiner = "/" + +lunr.FieldRef.fromString = function (s) { + var n = s.indexOf(lunr.FieldRef.joiner) + + if (n === -1) { + throw "malformed field ref string" + } + + var fieldRef = s.slice(0, n), + docRef = s.slice(n + 1) + + return new lunr.FieldRef (docRef, fieldRef, s) +} + +lunr.FieldRef.prototype.toString = function () { + if (this._stringValue == undefined) { + this._stringValue = this.fieldName + lunr.FieldRef.joiner + this.docRef + } + + return this._stringValue +} +/*! + * lunr.Set + * Copyright (C) 2020 Oliver Nightingale + */ + +/** + * A lunr set. + * + * @constructor + */ +lunr.Set = function (elements) { + this.elements = Object.create(null) + + if (elements) { + this.length = elements.length + + for (var i = 0; i < this.length; i++) { + this.elements[elements[i]] = true + } + } else { + this.length = 0 + } +} + +/** + * A complete set that contains all elements. + * + * @static + * @readonly + * @type {lunr.Set} + */ +lunr.Set.complete = { + intersect: function (other) { + return other + }, + + union: function () { + return this + }, + + contains: function () { + return true + } +} + +/** + * An empty set that contains no elements. + * + * @static + * @readonly + * @type {lunr.Set} + */ +lunr.Set.empty = { + intersect: function () { + return this + }, + + union: function (other) { + return other + }, + + contains: function () { + return false + } +} + +/** + * Returns true if this set contains the specified object. + * + * @param {object} object - Object whose presence in this set is to be tested. + * @returns {boolean} - True if this set contains the specified object. + */ +lunr.Set.prototype.contains = function (object) { + return !!this.elements[object] +} + +/** + * Returns a new set containing only the elements that are present in both + * this set and the specified set. + * + * @param {lunr.Set} other - set to intersect with this set. + * @returns {lunr.Set} a new set that is the intersection of this and the specified set. + */ + +lunr.Set.prototype.intersect = function (other) { + var a, b, elements, intersection = [] + + if (other === lunr.Set.complete) { + return this + } + + if (other === lunr.Set.empty) { + return other + } + + if (this.length < other.length) { + a = this + b = other + } else { + a = other + b = this + } + + elements = Object.keys(a.elements) + + for (var i = 0; i < elements.length; i++) { + var element = elements[i] + if (element in b.elements) { + intersection.push(element) + } + } + + return new lunr.Set (intersection) +} + +/** + * Returns a new set combining the elements of this and the specified set. + * + * @param {lunr.Set} other - set to union with this set. + * @return {lunr.Set} a new set that is the union of this and the specified set. + */ + +lunr.Set.prototype.union = function (other) { + if (other === lunr.Set.complete) { + return lunr.Set.complete + } + + if (other === lunr.Set.empty) { + return this + } + + return new lunr.Set(Object.keys(this.elements).concat(Object.keys(other.elements))) +} +/** + * A function to calculate the inverse document frequency for + * a posting. This is shared between the builder and the index + * + * @private + * @param {object} posting - The posting for a given term + * @param {number} documentCount - The total number of documents. + */ +lunr.idf = function (posting, documentCount) { + var documentsWithTerm = 0 + + for (var fieldName in posting) { + if (fieldName == '_index') continue // Ignore the term index, its not a field + documentsWithTerm += Object.keys(posting[fieldName]).length + } + + var x = (documentCount - documentsWithTerm + 0.5) / (documentsWithTerm + 0.5) + + return Math.log(1 + Math.abs(x)) +} + +/** + * A token wraps a string representation of a token + * as it is passed through the text processing pipeline. + * + * @constructor + * @param {string} [str=''] - The string token being wrapped. + * @param {object} [metadata={}] - Metadata associated with this token. + */ +lunr.Token = function (str, metadata) { + this.str = str || "" + this.metadata = metadata || {} +} + +/** + * Returns the token string that is being wrapped by this object. + * + * @returns {string} + */ +lunr.Token.prototype.toString = function () { + return this.str +} + +/** + * A token update function is used when updating or optionally + * when cloning a token. + * + * @callback lunr.Token~updateFunction + * @param {string} str - The string representation of the token. + * @param {Object} metadata - All metadata associated with this token. + */ + +/** + * Applies the given function to the wrapped string token. + * + * @example + * token.update(function (str, metadata) { + * return str.toUpperCase() + * }) + * + * @param {lunr.Token~updateFunction} fn - A function to apply to the token string. + * @returns {lunr.Token} + */ +lunr.Token.prototype.update = function (fn) { + this.str = fn(this.str, this.metadata) + return this +} + +/** + * Creates a clone of this token. Optionally a function can be + * applied to the cloned token. + * + * @param {lunr.Token~updateFunction} [fn] - An optional function to apply to the cloned token. + * @returns {lunr.Token} + */ +lunr.Token.prototype.clone = function (fn) { + fn = fn || function (s) { return s } + return new lunr.Token (fn(this.str, this.metadata), this.metadata) +} +/*! + * lunr.tokenizer + * Copyright (C) 2020 Oliver Nightingale + */ + +/** + * A function for splitting a string into tokens ready to be inserted into + * the search index. Uses `lunr.tokenizer.separator` to split strings, change + * the value of this property to change how strings are split into tokens. + * + * This tokenizer will convert its parameter to a string by calling `toString` and + * then will split this string on the character in `lunr.tokenizer.separator`. + * Arrays will have their elements converted to strings and wrapped in a lunr.Token. + * + * Optional metadata can be passed to the tokenizer, this metadata will be cloned and + * added as metadata to every token that is created from the object to be tokenized. + * + * @static + * @param {?(string|object|object[])} obj - The object to convert into tokens + * @param {?object} metadata - Optional metadata to associate with every token + * @returns {lunr.Token[]} + * @see {@link lunr.Pipeline} + */ +lunr.tokenizer = function (obj, metadata) { + if (obj == null || obj == undefined) { + return [] + } + + if (Array.isArray(obj)) { + return obj.map(function (t) { + return new lunr.Token( + lunr.utils.asString(t).toLowerCase(), + lunr.utils.clone(metadata) + ) + }) + } + + var str = obj.toString().toLowerCase(), + len = str.length, + tokens = [] + + for (var sliceEnd = 0, sliceStart = 0; sliceEnd <= len; sliceEnd++) { + var char = str.charAt(sliceEnd), + sliceLength = sliceEnd - sliceStart + + if ((char.match(lunr.tokenizer.separator) || sliceEnd == len)) { + + if (sliceLength > 0) { + var tokenMetadata = lunr.utils.clone(metadata) || {} + tokenMetadata["position"] = [sliceStart, sliceLength] + tokenMetadata["index"] = tokens.length + + tokens.push( + new lunr.Token ( + str.slice(sliceStart, sliceEnd), + tokenMetadata + ) + ) + } + + sliceStart = sliceEnd + 1 + } + + } + + return tokens +} + +/** + * The separator used to split a string into tokens. Override this property to change the behaviour of + * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens. + * + * @static + * @see lunr.tokenizer + */ +lunr.tokenizer.separator = /[\s\-]+/ +/*! + * lunr.Pipeline + * Copyright (C) 2020 Oliver Nightingale + */ + +/** + * lunr.Pipelines maintain an ordered list of functions to be applied to all + * tokens in documents entering the search index and queries being ran against + * the index. + * + * An instance of lunr.Index created with the lunr shortcut will contain a + * pipeline with a stop word filter and an English language stemmer. Extra + * functions can be added before or after either of these functions or these + * default functions can be removed. + * + * When run the pipeline will call each function in turn, passing a token, the + * index of that token in the original list of all tokens and finally a list of + * all the original tokens. + * + * The output of functions in the pipeline will be passed to the next function + * in the pipeline. To exclude a token from entering the index the function + * should return undefined, the rest of the pipeline will not be called with + * this token. + * + * For serialisation of pipelines to work, all functions used in an instance of + * a pipeline should be registered with lunr.Pipeline. Registered functions can + * then be loaded. If trying to load a serialised pipeline that uses functions + * that are not registered an error will be thrown. + * + * If not planning on serialising the pipeline then registering pipeline functions + * is not necessary. + * + * @constructor + */ +lunr.Pipeline = function () { + this._stack = [] +} + +lunr.Pipeline.registeredFunctions = Object.create(null) + +/** + * A pipeline function maps lunr.Token to lunr.Token. A lunr.Token contains the token + * string as well as all known metadata. A pipeline function can mutate the token string + * or mutate (or add) metadata for a given token. + * + * A pipeline function can indicate that the passed token should be discarded by returning + * null, undefined or an empty string. This token will not be passed to any downstream pipeline + * functions and will not be added to the index. + * + * Multiple tokens can be returned by returning an array of tokens. Each token will be passed + * to any downstream pipeline functions and all will returned tokens will be added to the index. + * + * Any number of pipeline functions may be chained together using a lunr.Pipeline. + * + * @interface lunr.PipelineFunction + * @param {lunr.Token} token - A token from the document being processed. + * @param {number} i - The index of this token in the complete list of tokens for this document/field. + * @param {lunr.Token[]} tokens - All tokens for this document/field. + * @returns {(?lunr.Token|lunr.Token[])} + */ + +/** + * Register a function with the pipeline. + * + * Functions that are used in the pipeline should be registered if the pipeline + * needs to be serialised, or a serialised pipeline needs to be loaded. + * + * Registering a function does not add it to a pipeline, functions must still be + * added to instances of the pipeline for them to be used when running a pipeline. + * + * @param {lunr.PipelineFunction} fn - The function to check for. + * @param {String} label - The label to register this function with + */ +lunr.Pipeline.registerFunction = function (fn, label) { + if (label in this.registeredFunctions) { + lunr.utils.warn('Overwriting existing registered function: ' + label) + } + + fn.label = label + lunr.Pipeline.registeredFunctions[fn.label] = fn +} + +/** + * Warns if the function is not registered as a Pipeline function. + * + * @param {lunr.PipelineFunction} fn - The function to check for. + * @private + */ +lunr.Pipeline.warnIfFunctionNotRegistered = function (fn) { + var isRegistered = fn.label && (fn.label in this.registeredFunctions) + + if (!isRegistered) { + lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\n', fn) + } +} + +/** + * Loads a previously serialised pipeline. + * + * All functions to be loaded must already be registered with lunr.Pipeline. + * If any function from the serialised data has not been registered then an + * error will be thrown. + * + * @param {Object} serialised - The serialised pipeline to load. + * @returns {lunr.Pipeline} + */ +lunr.Pipeline.load = function (serialised) { + var pipeline = new lunr.Pipeline + + serialised.forEach(function (fnName) { + var fn = lunr.Pipeline.registeredFunctions[fnName] + + if (fn) { + pipeline.add(fn) + } else { + throw new Error('Cannot load unregistered function: ' + fnName) + } + }) + + return pipeline +} + +/** + * Adds new functions to the end of the pipeline. + * + * Logs a warning if the function has not been registered. + * + * @param {lunr.PipelineFunction[]} functions - Any number of functions to add to the pipeline. + */ +lunr.Pipeline.prototype.add = function () { + var fns = Array.prototype.slice.call(arguments) + + fns.forEach(function (fn) { + lunr.Pipeline.warnIfFunctionNotRegistered(fn) + this._stack.push(fn) + }, this) +} + +/** + * Adds a single function after a function that already exists in the + * pipeline. + * + * Logs a warning if the function has not been registered. + * + * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline. + * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline. + */ +lunr.Pipeline.prototype.after = function (existingFn, newFn) { + lunr.Pipeline.warnIfFunctionNotRegistered(newFn) + + var pos = this._stack.indexOf(existingFn) + if (pos == -1) { + throw new Error('Cannot find existingFn') + } + + pos = pos + 1 + this._stack.splice(pos, 0, newFn) +} + +/** + * Adds a single function before a function that already exists in the + * pipeline. + * + * Logs a warning if the function has not been registered. + * + * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline. + * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline. + */ +lunr.Pipeline.prototype.before = function (existingFn, newFn) { + lunr.Pipeline.warnIfFunctionNotRegistered(newFn) + + var pos = this._stack.indexOf(existingFn) + if (pos == -1) { + throw new Error('Cannot find existingFn') + } + + this._stack.splice(pos, 0, newFn) +} + +/** + * Removes a function from the pipeline. + * + * @param {lunr.PipelineFunction} fn The function to remove from the pipeline. + */ +lunr.Pipeline.prototype.remove = function (fn) { + var pos = this._stack.indexOf(fn) + if (pos == -1) { + return + } + + this._stack.splice(pos, 1) +} + +/** + * Runs the current list of functions that make up the pipeline against the + * passed tokens. + * + * @param {Array} tokens The tokens to run through the pipeline. + * @returns {Array} + */ +lunr.Pipeline.prototype.run = function (tokens) { + var stackLength = this._stack.length + + for (var i = 0; i < stackLength; i++) { + var fn = this._stack[i] + var memo = [] + + for (var j = 0; j < tokens.length; j++) { + var result = fn(tokens[j], j, tokens) + + if (result === null || result === void 0 || result === '') continue + + if (Array.isArray(result)) { + for (var k = 0; k < result.length; k++) { + memo.push(result[k]) + } + } else { + memo.push(result) + } + } + + tokens = memo + } + + return tokens +} + +/** + * Convenience method for passing a string through a pipeline and getting + * strings out. This method takes care of wrapping the passed string in a + * token and mapping the resulting tokens back to strings. + * + * @param {string} str - The string to pass through the pipeline. + * @param {?object} metadata - Optional metadata to associate with the token + * passed to the pipeline. + * @returns {string[]} + */ +lunr.Pipeline.prototype.runString = function (str, metadata) { + var token = new lunr.Token (str, metadata) + + return this.run([token]).map(function (t) { + return t.toString() + }) +} + +/** + * Resets the pipeline by removing any existing processors. + * + */ +lunr.Pipeline.prototype.reset = function () { + this._stack = [] +} + +/** + * Returns a representation of the pipeline ready for serialisation. + * + * Logs a warning if the function has not been registered. + * + * @returns {Array} + */ +lunr.Pipeline.prototype.toJSON = function () { + return this._stack.map(function (fn) { + lunr.Pipeline.warnIfFunctionNotRegistered(fn) + + return fn.label + }) +} +/*! + * lunr.Vector + * Copyright (C) 2020 Oliver Nightingale + */ + +/** + * A vector is used to construct the vector space of documents and queries. These + * vectors support operations to determine the similarity between two documents or + * a document and a query. + * + * Normally no parameters are required for initializing a vector, but in the case of + * loading a previously dumped vector the raw elements can be provided to the constructor. + * + * For performance reasons vectors are implemented with a flat array, where an elements + * index is immediately followed by its value. E.g. [index, value, index, value]. This + * allows the underlying array to be as sparse as possible and still offer decent + * performance when being used for vector calculations. + * + * @constructor + * @param {Number[]} [elements] - The flat list of element index and element value pairs. + */ +lunr.Vector = function (elements) { + this._magnitude = 0 + this.elements = elements || [] +} + + +/** + * Calculates the position within the vector to insert a given index. + * + * This is used internally by insert and upsert. If there are duplicate indexes then + * the position is returned as if the value for that index were to be updated, but it + * is the callers responsibility to check whether there is a duplicate at that index + * + * @param {Number} insertIdx - The index at which the element should be inserted. + * @returns {Number} + */ +lunr.Vector.prototype.positionForIndex = function (index) { + // For an empty vector the tuple can be inserted at the beginning + if (this.elements.length == 0) { + return 0 + } + + var start = 0, + end = this.elements.length / 2, + sliceLength = end - start, + pivotPoint = Math.floor(sliceLength / 2), + pivotIndex = this.elements[pivotPoint * 2] + + while (sliceLength > 1) { + if (pivotIndex < index) { + start = pivotPoint + } + + if (pivotIndex > index) { + end = pivotPoint + } + + if (pivotIndex == index) { + break + } + + sliceLength = end - start + pivotPoint = start + Math.floor(sliceLength / 2) + pivotIndex = this.elements[pivotPoint * 2] + } + + if (pivotIndex == index) { + return pivotPoint * 2 + } + + if (pivotIndex > index) { + return pivotPoint * 2 + } + + if (pivotIndex < index) { + return (pivotPoint + 1) * 2 + } +} + +/** + * Inserts an element at an index within the vector. + * + * Does not allow duplicates, will throw an error if there is already an entry + * for this index. + * + * @param {Number} insertIdx - The index at which the element should be inserted. + * @param {Number} val - The value to be inserted into the vector. + */ +lunr.Vector.prototype.insert = function (insertIdx, val) { + this.upsert(insertIdx, val, function () { + throw "duplicate index" + }) +} + +/** + * Inserts or updates an existing index within the vector. + * + * @param {Number} insertIdx - The index at which the element should be inserted. + * @param {Number} val - The value to be inserted into the vector. + * @param {function} fn - A function that is called for updates, the existing value and the + * requested value are passed as arguments + */ +lunr.Vector.prototype.upsert = function (insertIdx, val, fn) { + this._magnitude = 0 + var position = this.positionForIndex(insertIdx) + + if (this.elements[position] == insertIdx) { + this.elements[position + 1] = fn(this.elements[position + 1], val) + } else { + this.elements.splice(position, 0, insertIdx, val) + } +} + +/** + * Calculates the magnitude of this vector. + * + * @returns {Number} + */ +lunr.Vector.prototype.magnitude = function () { + if (this._magnitude) return this._magnitude + + var sumOfSquares = 0, + elementsLength = this.elements.length + + for (var i = 1; i < elementsLength; i += 2) { + var val = this.elements[i] + sumOfSquares += val * val + } + + return this._magnitude = Math.sqrt(sumOfSquares) +} + +/** + * Calculates the dot product of this vector and another vector. + * + * @param {lunr.Vector} otherVector - The vector to compute the dot product with. + * @returns {Number} + */ +lunr.Vector.prototype.dot = function (otherVector) { + var dotProduct = 0, + a = this.elements, b = otherVector.elements, + aLen = a.length, bLen = b.length, + aVal = 0, bVal = 0, + i = 0, j = 0 + + while (i < aLen && j < bLen) { + aVal = a[i], bVal = b[j] + if (aVal < bVal) { + i += 2 + } else if (aVal > bVal) { + j += 2 + } else if (aVal == bVal) { + dotProduct += a[i + 1] * b[j + 1] + i += 2 + j += 2 + } + } + + return dotProduct +} + +/** + * Calculates the similarity between this vector and another vector. + * + * @param {lunr.Vector} otherVector - The other vector to calculate the + * similarity with. + * @returns {Number} + */ +lunr.Vector.prototype.similarity = function (otherVector) { + return this.dot(otherVector) / this.magnitude() || 0 +} + +/** + * Converts the vector to an array of the elements within the vector. + * + * @returns {Number[]} + */ +lunr.Vector.prototype.toArray = function () { + var output = new Array (this.elements.length / 2) + + for (var i = 1, j = 0; i < this.elements.length; i += 2, j++) { + output[j] = this.elements[i] + } + + return output +} + +/** + * A JSON serializable representation of the vector. + * + * @returns {Number[]} + */ +lunr.Vector.prototype.toJSON = function () { + return this.elements +} +/* eslint-disable */ +/*! + * lunr.stemmer + * Copyright (C) 2020 Oliver Nightingale + * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt + */ + +/** + * lunr.stemmer is an english language stemmer, this is a JavaScript + * implementation of the PorterStemmer taken from http://tartarus.org/~martin + * + * @static + * @implements {lunr.PipelineFunction} + * @param {lunr.Token} token - The string to stem + * @returns {lunr.Token} + * @see {@link lunr.Pipeline} + * @function + */ +lunr.stemmer = (function(){ + var step2list = { + "ational" : "ate", + "tional" : "tion", + "enci" : "ence", + "anci" : "ance", + "izer" : "ize", + "bli" : "ble", + "alli" : "al", + "entli" : "ent", + "eli" : "e", + "ousli" : "ous", + "ization" : "ize", + "ation" : "ate", + "ator" : "ate", + "alism" : "al", + "iveness" : "ive", + "fulness" : "ful", + "ousness" : "ous", + "aliti" : "al", + "iviti" : "ive", + "biliti" : "ble", + "logi" : "log" + }, + + step3list = { + "icate" : "ic", + "ative" : "", + "alize" : "al", + "iciti" : "ic", + "ical" : "ic", + "ful" : "", + "ness" : "" + }, + + c = "[^aeiou]", // consonant + v = "[aeiouy]", // vowel + C = c + "[^aeiouy]*", // consonant sequence + V = v + "[aeiou]*", // vowel sequence + + mgr0 = "^(" + C + ")?" + V + C, // [C]VC... is m>0 + meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$", // [C]VC[V] is m=1 + mgr1 = "^(" + C + ")?" + V + C + V + C, // [C]VCVC... is m>1 + s_v = "^(" + C + ")?" + v; // vowel in stem + + var re_mgr0 = new RegExp(mgr0); + var re_mgr1 = new RegExp(mgr1); + var re_meq1 = new RegExp(meq1); + var re_s_v = new RegExp(s_v); + + var re_1a = /^(.+?)(ss|i)es$/; + var re2_1a = /^(.+?)([^s])s$/; + var re_1b = /^(.+?)eed$/; + var re2_1b = /^(.+?)(ed|ing)$/; + var re_1b_2 = /.$/; + var re2_1b_2 = /(at|bl|iz)$/; + var re3_1b_2 = new RegExp("([^aeiouylsz])\\1$"); + var re4_1b_2 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + + var re_1c = /^(.+?[^aeiou])y$/; + var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; + + var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; + + var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; + var re2_4 = /^(.+?)(s|t)(ion)$/; + + var re_5 = /^(.+?)e$/; + var re_5_1 = /ll$/; + var re3_5 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + + var porterStemmer = function porterStemmer(w) { + var stem, + suffix, + firstch, + re, + re2, + re3, + re4; + + if (w.length < 3) { return w; } + + firstch = w.substr(0,1); + if (firstch == "y") { + w = firstch.toUpperCase() + w.substr(1); + } + + // Step 1a + re = re_1a + re2 = re2_1a; + + if (re.test(w)) { w = w.replace(re,"$1$2"); } + else if (re2.test(w)) { w = w.replace(re2,"$1$2"); } + + // Step 1b + re = re_1b; + re2 = re2_1b; + if (re.test(w)) { + var fp = re.exec(w); + re = re_mgr0; + if (re.test(fp[1])) { + re = re_1b_2; + w = w.replace(re,""); + } + } else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1]; + re2 = re_s_v; + if (re2.test(stem)) { + w = stem; + re2 = re2_1b_2; + re3 = re3_1b_2; + re4 = re4_1b_2; + if (re2.test(w)) { w = w + "e"; } + else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,""); } + else if (re4.test(w)) { w = w + "e"; } + } + } + + // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say) + re = re_1c; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + w = stem + "i"; + } + + // Step 2 + re = re_2; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = re_mgr0; + if (re.test(stem)) { + w = stem + step2list[suffix]; + } + } + + // Step 3 + re = re_3; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = re_mgr0; + if (re.test(stem)) { + w = stem + step3list[suffix]; + } + } + + // Step 4 + re = re_4; + re2 = re2_4; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = re_mgr1; + if (re.test(stem)) { + w = stem; + } + } else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1] + fp[2]; + re2 = re_mgr1; + if (re2.test(stem)) { + w = stem; + } + } + + // Step 5 + re = re_5; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = re_mgr1; + re2 = re_meq1; + re3 = re3_5; + if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) { + w = stem; + } + } + + re = re_5_1; + re2 = re_mgr1; + if (re.test(w) && re2.test(w)) { + re = re_1b_2; + w = w.replace(re,""); + } + + // and turn initial Y back to y + + if (firstch == "y") { + w = firstch.toLowerCase() + w.substr(1); + } + + return w; + }; + + return function (token) { + return token.update(porterStemmer); + } +})(); + +lunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer') +/*! + * lunr.stopWordFilter + * Copyright (C) 2020 Oliver Nightingale + */ + +/** + * lunr.generateStopWordFilter builds a stopWordFilter function from the provided + * list of stop words. + * + * The built in lunr.stopWordFilter is built using this generator and can be used + * to generate custom stopWordFilters for applications or non English languages. + * + * @function + * @param {Array} token The token to pass through the filter + * @returns {lunr.PipelineFunction} + * @see lunr.Pipeline + * @see lunr.stopWordFilter + */ +lunr.generateStopWordFilter = function (stopWords) { + var words = stopWords.reduce(function (memo, stopWord) { + memo[stopWord] = stopWord + return memo + }, {}) + + return function (token) { + if (token && words[token.toString()] !== token.toString()) return token + } +} + +/** + * lunr.stopWordFilter is an English language stop word list filter, any words + * contained in the list will not be passed through the filter. + * + * This is intended to be used in the Pipeline. If the token does not pass the + * filter then undefined will be returned. + * + * @function + * @implements {lunr.PipelineFunction} + * @params {lunr.Token} token - A token to check for being a stop word. + * @returns {lunr.Token} + * @see {@link lunr.Pipeline} + */ +lunr.stopWordFilter = lunr.generateStopWordFilter([ + 'a', + 'able', + 'about', + 'across', + 'after', + 'all', + 'almost', + 'also', + 'am', + 'among', + 'an', + 'and', + 'any', + 'are', + 'as', + 'at', + 'be', + 'because', + 'been', + 'but', + 'by', + 'can', + 'cannot', + 'could', + 'dear', + 'did', + 'do', + 'does', + 'either', + 'else', + 'ever', + 'every', + 'for', + 'from', + 'get', + 'got', + 'had', + 'has', + 'have', + 'he', + 'her', + 'hers', + 'him', + 'his', + 'how', + 'however', + 'i', + 'if', + 'in', + 'into', + 'is', + 'it', + 'its', + 'just', + 'least', + 'let', + 'like', + 'likely', + 'may', + 'me', + 'might', + 'most', + 'must', + 'my', + 'neither', + 'no', + 'nor', + 'not', + 'of', + 'off', + 'often', + 'on', + 'only', + 'or', + 'other', + 'our', + 'own', + 'rather', + 'said', + 'say', + 'says', + 'she', + 'should', + 'since', + 'so', + 'some', + 'than', + 'that', + 'the', + 'their', + 'them', + 'then', + 'there', + 'these', + 'they', + 'this', + 'tis', + 'to', + 'too', + 'twas', + 'us', + 'wants', + 'was', + 'we', + 'were', + 'what', + 'when', + 'where', + 'which', + 'while', + 'who', + 'whom', + 'why', + 'will', + 'with', + 'would', + 'yet', + 'you', + 'your' +]) + +lunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter') +/*! + * lunr.trimmer + * Copyright (C) 2020 Oliver Nightingale + */ + +/** + * lunr.trimmer is a pipeline function for trimming non word + * characters from the beginning and end of tokens before they + * enter the index. + * + * This implementation may not work correctly for non latin + * characters and should either be removed or adapted for use + * with languages with non-latin characters. + * + * @static + * @implements {lunr.PipelineFunction} + * @param {lunr.Token} token The token to pass through the filter + * @returns {lunr.Token} + * @see lunr.Pipeline + */ +lunr.trimmer = function (token) { + return token.update(function (s) { + return s.replace(/^\W+/, '').replace(/\W+$/, '') + }) +} + +lunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer') +/*! + * lunr.TokenSet + * Copyright (C) 2020 Oliver Nightingale + */ + +/** + * A token set is used to store the unique list of all tokens + * within an index. Token sets are also used to represent an + * incoming query to the index, this query token set and index + * token set are then intersected to find which tokens to look + * up in the inverted index. + * + * A token set can hold multiple tokens, as in the case of the + * index token set, or it can hold a single token as in the + * case of a simple query token set. + * + * Additionally token sets are used to perform wildcard matching. + * Leading, contained and trailing wildcards are supported, and + * from this edit distance matching can also be provided. + * + * Token sets are implemented as a minimal finite state automata, + * where both common prefixes and suffixes are shared between tokens. + * This helps to reduce the space used for storing the token set. + * + * @constructor + */ +lunr.TokenSet = function () { + this.final = false + this.edges = {} + this.id = lunr.TokenSet._nextId + lunr.TokenSet._nextId += 1 +} + +/** + * Keeps track of the next, auto increment, identifier to assign + * to a new tokenSet. + * + * TokenSets require a unique identifier to be correctly minimised. + * + * @private + */ +lunr.TokenSet._nextId = 1 + +/** + * Creates a TokenSet instance from the given sorted array of words. + * + * @param {String[]} arr - A sorted array of strings to create the set from. + * @returns {lunr.TokenSet} + * @throws Will throw an error if the input array is not sorted. + */ +lunr.TokenSet.fromArray = function (arr) { + var builder = new lunr.TokenSet.Builder + + for (var i = 0, len = arr.length; i < len; i++) { + builder.insert(arr[i]) + } + + builder.finish() + return builder.root +} + +/** + * Creates a token set from a query clause. + * + * @private + * @param {Object} clause - A single clause from lunr.Query. + * @param {string} clause.term - The query clause term. + * @param {number} [clause.editDistance] - The optional edit distance for the term. + * @returns {lunr.TokenSet} + */ +lunr.TokenSet.fromClause = function (clause) { + if ('editDistance' in clause) { + return lunr.TokenSet.fromFuzzyString(clause.term, clause.editDistance) + } else { + return lunr.TokenSet.fromString(clause.term) + } +} + +/** + * Creates a token set representing a single string with a specified + * edit distance. + * + * Insertions, deletions, substitutions and transpositions are each + * treated as an edit distance of 1. + * + * Increasing the allowed edit distance will have a dramatic impact + * on the performance of both creating and intersecting these TokenSets. + * It is advised to keep the edit distance less than 3. + * + * @param {string} str - The string to create the token set from. + * @param {number} editDistance - The allowed edit distance to match. + * @returns {lunr.Vector} + */ +lunr.TokenSet.fromFuzzyString = function (str, editDistance) { + var root = new lunr.TokenSet + + var stack = [{ + node: root, + editsRemaining: editDistance, + str: str + }] + + while (stack.length) { + var frame = stack.pop() + + // no edit + if (frame.str.length > 0) { + var char = frame.str.charAt(0), + noEditNode + + if (char in frame.node.edges) { + noEditNode = frame.node.edges[char] + } else { + noEditNode = new lunr.TokenSet + frame.node.edges[char] = noEditNode + } + + if (frame.str.length == 1) { + noEditNode.final = true + } + + stack.push({ + node: noEditNode, + editsRemaining: frame.editsRemaining, + str: frame.str.slice(1) + }) + } + + if (frame.editsRemaining == 0) { + continue + } + + // insertion + if ("*" in frame.node.edges) { + var insertionNode = frame.node.edges["*"] + } else { + var insertionNode = new lunr.TokenSet + frame.node.edges["*"] = insertionNode + } + + if (frame.str.length == 0) { + insertionNode.final = true + } + + stack.push({ + node: insertionNode, + editsRemaining: frame.editsRemaining - 1, + str: frame.str + }) + + // deletion + // can only do a deletion if we have enough edits remaining + // and if there are characters left to delete in the string + if (frame.str.length > 1) { + stack.push({ + node: frame.node, + editsRemaining: frame.editsRemaining - 1, + str: frame.str.slice(1) + }) + } + + // deletion + // just removing the last character from the str + if (frame.str.length == 1) { + frame.node.final = true + } + + // substitution + // can only do a substitution if we have enough edits remaining + // and if there are characters left to substitute + if (frame.str.length >= 1) { + if ("*" in frame.node.edges) { + var substitutionNode = frame.node.edges["*"] + } else { + var substitutionNode = new lunr.TokenSet + frame.node.edges["*"] = substitutionNode + } + + if (frame.str.length == 1) { + substitutionNode.final = true + } + + stack.push({ + node: substitutionNode, + editsRemaining: frame.editsRemaining - 1, + str: frame.str.slice(1) + }) + } + + // transposition + // can only do a transposition if there are edits remaining + // and there are enough characters to transpose + if (frame.str.length > 1) { + var charA = frame.str.charAt(0), + charB = frame.str.charAt(1), + transposeNode + + if (charB in frame.node.edges) { + transposeNode = frame.node.edges[charB] + } else { + transposeNode = new lunr.TokenSet + frame.node.edges[charB] = transposeNode + } + + if (frame.str.length == 1) { + transposeNode.final = true + } + + stack.push({ + node: transposeNode, + editsRemaining: frame.editsRemaining - 1, + str: charA + frame.str.slice(2) + }) + } + } + + return root +} + +/** + * Creates a TokenSet from a string. + * + * The string may contain one or more wildcard characters (*) + * that will allow wildcard matching when intersecting with + * another TokenSet. + * + * @param {string} str - The string to create a TokenSet from. + * @returns {lunr.TokenSet} + */ +lunr.TokenSet.fromString = function (str) { + var node = new lunr.TokenSet, + root = node + + /* + * Iterates through all characters within the passed string + * appending a node for each character. + * + * When a wildcard character is found then a self + * referencing edge is introduced to continually match + * any number of any characters. + */ + for (var i = 0, len = str.length; i < len; i++) { + var char = str[i], + final = (i == len - 1) + + if (char == "*") { + node.edges[char] = node + node.final = final + + } else { + var next = new lunr.TokenSet + next.final = final + + node.edges[char] = next + node = next + } + } + + return root +} + +/** + * Converts this TokenSet into an array of strings + * contained within the TokenSet. + * + * This is not intended to be used on a TokenSet that + * contains wildcards, in these cases the results are + * undefined and are likely to cause an infinite loop. + * + * @returns {string[]} + */ +lunr.TokenSet.prototype.toArray = function () { + var words = [] + + var stack = [{ + prefix: "", + node: this + }] + + while (stack.length) { + var frame = stack.pop(), + edges = Object.keys(frame.node.edges), + len = edges.length + + if (frame.node.final) { + /* In Safari, at this point the prefix is sometimes corrupted, see: + * https://github.com/olivernn/lunr.js/issues/279 Calling any + * String.prototype method forces Safari to "cast" this string to what + * it's supposed to be, fixing the bug. */ + frame.prefix.charAt(0) + words.push(frame.prefix) + } + + for (var i = 0; i < len; i++) { + var edge = edges[i] + + stack.push({ + prefix: frame.prefix.concat(edge), + node: frame.node.edges[edge] + }) + } + } + + return words +} + +/** + * Generates a string representation of a TokenSet. + * + * This is intended to allow TokenSets to be used as keys + * in objects, largely to aid the construction and minimisation + * of a TokenSet. As such it is not designed to be a human + * friendly representation of the TokenSet. + * + * @returns {string} + */ +lunr.TokenSet.prototype.toString = function () { + // NOTE: Using Object.keys here as this.edges is very likely + // to enter 'hash-mode' with many keys being added + // + // avoiding a for-in loop here as it leads to the function + // being de-optimised (at least in V8). From some simple + // benchmarks the performance is comparable, but allowing + // V8 to optimize may mean easy performance wins in the future. + + if (this._str) { + return this._str + } + + var str = this.final ? '1' : '0', + labels = Object.keys(this.edges).sort(), + len = labels.length + + for (var i = 0; i < len; i++) { + var label = labels[i], + node = this.edges[label] + + str = str + label + node.id + } + + return str +} + +/** + * Returns a new TokenSet that is the intersection of + * this TokenSet and the passed TokenSet. + * + * This intersection will take into account any wildcards + * contained within the TokenSet. + * + * @param {lunr.TokenSet} b - An other TokenSet to intersect with. + * @returns {lunr.TokenSet} + */ +lunr.TokenSet.prototype.intersect = function (b) { + var output = new lunr.TokenSet, + frame = undefined + + var stack = [{ + qNode: b, + output: output, + node: this + }] + + while (stack.length) { + frame = stack.pop() + + // NOTE: As with the #toString method, we are using + // Object.keys and a for loop instead of a for-in loop + // as both of these objects enter 'hash' mode, causing + // the function to be de-optimised in V8 + var qEdges = Object.keys(frame.qNode.edges), + qLen = qEdges.length, + nEdges = Object.keys(frame.node.edges), + nLen = nEdges.length + + for (var q = 0; q < qLen; q++) { + var qEdge = qEdges[q] + + for (var n = 0; n < nLen; n++) { + var nEdge = nEdges[n] + + if (nEdge == qEdge || qEdge == '*') { + var node = frame.node.edges[nEdge], + qNode = frame.qNode.edges[qEdge], + final = node.final && qNode.final, + next = undefined + + if (nEdge in frame.output.edges) { + // an edge already exists for this character + // no need to create a new node, just set the finality + // bit unless this node is already final + next = frame.output.edges[nEdge] + next.final = next.final || final + + } else { + // no edge exists yet, must create one + // set the finality bit and insert it + // into the output + next = new lunr.TokenSet + next.final = final + frame.output.edges[nEdge] = next + } + + stack.push({ + qNode: qNode, + output: next, + node: node + }) + } + } + } + } + + return output +} +lunr.TokenSet.Builder = function () { + this.previousWord = "" + this.root = new lunr.TokenSet + this.uncheckedNodes = [] + this.minimizedNodes = {} +} + +lunr.TokenSet.Builder.prototype.insert = function (word) { + var node, + commonPrefix = 0 + + if (word < this.previousWord) { + throw new Error ("Out of order word insertion") + } + + for (var i = 0; i < word.length && i < this.previousWord.length; i++) { + if (word[i] != this.previousWord[i]) break + commonPrefix++ + } + + this.minimize(commonPrefix) + + if (this.uncheckedNodes.length == 0) { + node = this.root + } else { + node = this.uncheckedNodes[this.uncheckedNodes.length - 1].child + } + + for (var i = commonPrefix; i < word.length; i++) { + var nextNode = new lunr.TokenSet, + char = word[i] + + node.edges[char] = nextNode + + this.uncheckedNodes.push({ + parent: node, + char: char, + child: nextNode + }) + + node = nextNode + } + + node.final = true + this.previousWord = word +} + +lunr.TokenSet.Builder.prototype.finish = function () { + this.minimize(0) +} + +lunr.TokenSet.Builder.prototype.minimize = function (downTo) { + for (var i = this.uncheckedNodes.length - 1; i >= downTo; i--) { + var node = this.uncheckedNodes[i], + childKey = node.child.toString() + + if (childKey in this.minimizedNodes) { + node.parent.edges[node.char] = this.minimizedNodes[childKey] + } else { + // Cache the key for this node since + // we know it can't change anymore + node.child._str = childKey + + this.minimizedNodes[childKey] = node.child + } + + this.uncheckedNodes.pop() + } +} +/*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + */ + +/** + * An index contains the built index of all documents and provides a query interface + * to the index. + * + * Usually instances of lunr.Index will not be created using this constructor, instead + * lunr.Builder should be used to construct new indexes, or lunr.Index.load should be + * used to load previously built and serialized indexes. + * + * @constructor + * @param {Object} attrs - The attributes of the built search index. + * @param {Object} attrs.invertedIndex - An index of term/field to document reference. + * @param {Object} attrs.fieldVectors - Field vectors + * @param {lunr.TokenSet} attrs.tokenSet - An set of all corpus tokens. + * @param {string[]} attrs.fields - The names of indexed document fields. + * @param {lunr.Pipeline} attrs.pipeline - The pipeline to use for search terms. + */ +lunr.Index = function (attrs) { + this.invertedIndex = attrs.invertedIndex + this.fieldVectors = attrs.fieldVectors + this.tokenSet = attrs.tokenSet + this.fields = attrs.fields + this.pipeline = attrs.pipeline +} + +/** + * A result contains details of a document matching a search query. + * @typedef {Object} lunr.Index~Result + * @property {string} ref - The reference of the document this result represents. + * @property {number} score - A number between 0 and 1 representing how similar this document is to the query. + * @property {lunr.MatchData} matchData - Contains metadata about this match including which term(s) caused the match. + */ + +/** + * Although lunr provides the ability to create queries using lunr.Query, it also provides a simple + * query language which itself is parsed into an instance of lunr.Query. + * + * For programmatically building queries it is advised to directly use lunr.Query, the query language + * is best used for human entered text rather than program generated text. + * + * At its simplest queries can just be a single term, e.g. `hello`, multiple terms are also supported + * and will be combined with OR, e.g `hello world` will match documents that contain either 'hello' + * or 'world', though those that contain both will rank higher in the results. + * + * Wildcards can be included in terms to match one or more unspecified characters, these wildcards can + * be inserted anywhere within the term, and more than one wildcard can exist in a single term. Adding + * wildcards will increase the number of documents that will be found but can also have a negative + * impact on query performance, especially with wildcards at the beginning of a term. + * + * Terms can be restricted to specific fields, e.g. `title:hello`, only documents with the term + * hello in the title field will match this query. Using a field not present in the index will lead + * to an error being thrown. + * + * Modifiers can also be added to terms, lunr supports edit distance and boost modifiers on terms. A term + * boost will make documents matching that term score higher, e.g. `foo^5`. Edit distance is also supported + * to provide fuzzy matching, e.g. 'hello~2' will match documents with hello with an edit distance of 2. + * Avoid large values for edit distance to improve query performance. + * + * Each term also supports a presence modifier. By default a term's presence in document is optional, however + * this can be changed to either required or prohibited. For a term's presence to be required in a document the + * term should be prefixed with a '+', e.g. `+foo bar` is a search for documents that must contain 'foo' and + * optionally contain 'bar'. Conversely a leading '-' sets the terms presence to prohibited, i.e. it must not + * appear in a document, e.g. `-foo bar` is a search for documents that do not contain 'foo' but may contain 'bar'. + * + * To escape special characters the backslash character '\' can be used, this allows searches to include + * characters that would normally be considered modifiers, e.g. `foo\~2` will search for a term "foo~2" instead + * of attempting to apply a boost of 2 to the search term "foo". + * + * @typedef {string} lunr.Index~QueryString + * @example Simple single term query + * hello + * @example Multiple term query + * hello world + * @example term scoped to a field + * title:hello + * @example term with a boost of 10 + * hello^10 + * @example term with an edit distance of 2 + * hello~2 + * @example terms with presence modifiers + * -foo +bar baz + */ + +/** + * Performs a search against the index using lunr query syntax. + * + * Results will be returned sorted by their score, the most relevant results + * will be returned first. For details on how the score is calculated, please see + * the {@link https://lunrjs.com/guides/searching.html#scoring|guide}. + * + * For more programmatic querying use lunr.Index#query. + * + * @param {lunr.Index~QueryString} queryString - A string containing a lunr query. + * @throws {lunr.QueryParseError} If the passed query string cannot be parsed. + * @returns {lunr.Index~Result[]} + */ +lunr.Index.prototype.search = function (queryString) { + return this.query(function (query) { + var parser = new lunr.QueryParser(queryString, query) + parser.parse() + }) +} + +/** + * A query builder callback provides a query object to be used to express + * the query to perform on the index. + * + * @callback lunr.Index~queryBuilder + * @param {lunr.Query} query - The query object to build up. + * @this lunr.Query + */ + +/** + * Performs a query against the index using the yielded lunr.Query object. + * + * If performing programmatic queries against the index, this method is preferred + * over lunr.Index#search so as to avoid the additional query parsing overhead. + * + * A query object is yielded to the supplied function which should be used to + * express the query to be run against the index. + * + * Note that although this function takes a callback parameter it is _not_ an + * asynchronous operation, the callback is just yielded a query object to be + * customized. + * + * @param {lunr.Index~queryBuilder} fn - A function that is used to build the query. + * @returns {lunr.Index~Result[]} + */ +lunr.Index.prototype.query = function (fn) { + // for each query clause + // * process terms + // * expand terms from token set + // * find matching documents and metadata + // * get document vectors + // * score documents + + var query = new lunr.Query(this.fields), + matchingFields = Object.create(null), + queryVectors = Object.create(null), + termFieldCache = Object.create(null), + requiredMatches = Object.create(null), + prohibitedMatches = Object.create(null) + + /* + * To support field level boosts a query vector is created per + * field. An empty vector is eagerly created to support negated + * queries. + */ + for (var i = 0; i < this.fields.length; i++) { + queryVectors[this.fields[i]] = new lunr.Vector + } + + fn.call(query, query) + + for (var i = 0; i < query.clauses.length; i++) { + /* + * Unless the pipeline has been disabled for this term, which is + * the case for terms with wildcards, we need to pass the clause + * term through the search pipeline. A pipeline returns an array + * of processed terms. Pipeline functions may expand the passed + * term, which means we may end up performing multiple index lookups + * for a single query term. + */ + var clause = query.clauses[i], + terms = null, + clauseMatches = lunr.Set.empty + + if (clause.usePipeline) { + terms = this.pipeline.runString(clause.term, { + fields: clause.fields + }) + } else { + terms = [clause.term] + } + + for (var m = 0; m < terms.length; m++) { + var term = terms[m] + + /* + * Each term returned from the pipeline needs to use the same query + * clause object, e.g. the same boost and or edit distance. The + * simplest way to do this is to re-use the clause object but mutate + * its term property. + */ + clause.term = term + + /* + * From the term in the clause we create a token set which will then + * be used to intersect the indexes token set to get a list of terms + * to lookup in the inverted index + */ + var termTokenSet = lunr.TokenSet.fromClause(clause), + expandedTerms = this.tokenSet.intersect(termTokenSet).toArray() + + /* + * If a term marked as required does not exist in the tokenSet it is + * impossible for the search to return any matches. We set all the field + * scoped required matches set to empty and stop examining any further + * clauses. + */ + if (expandedTerms.length === 0 && clause.presence === lunr.Query.presence.REQUIRED) { + for (var k = 0; k < clause.fields.length; k++) { + var field = clause.fields[k] + requiredMatches[field] = lunr.Set.empty + } + + break + } + + for (var j = 0; j < expandedTerms.length; j++) { + /* + * For each term get the posting and termIndex, this is required for + * building the query vector. + */ + var expandedTerm = expandedTerms[j], + posting = this.invertedIndex[expandedTerm], + termIndex = posting._index + + for (var k = 0; k < clause.fields.length; k++) { + /* + * For each field that this query term is scoped by (by default + * all fields are in scope) we need to get all the document refs + * that have this term in that field. + * + * The posting is the entry in the invertedIndex for the matching + * term from above. + */ + var field = clause.fields[k], + fieldPosting = posting[field], + matchingDocumentRefs = Object.keys(fieldPosting), + termField = expandedTerm + "/" + field, + matchingDocumentsSet = new lunr.Set(matchingDocumentRefs) + + /* + * if the presence of this term is required ensure that the matching + * documents are added to the set of required matches for this clause. + * + */ + if (clause.presence == lunr.Query.presence.REQUIRED) { + clauseMatches = clauseMatches.union(matchingDocumentsSet) + + if (requiredMatches[field] === undefined) { + requiredMatches[field] = lunr.Set.complete + } + } + + /* + * if the presence of this term is prohibited ensure that the matching + * documents are added to the set of prohibited matches for this field, + * creating that set if it does not yet exist. + */ + if (clause.presence == lunr.Query.presence.PROHIBITED) { + if (prohibitedMatches[field] === undefined) { + prohibitedMatches[field] = lunr.Set.empty + } + + prohibitedMatches[field] = prohibitedMatches[field].union(matchingDocumentsSet) + + /* + * Prohibited matches should not be part of the query vector used for + * similarity scoring and no metadata should be extracted so we continue + * to the next field + */ + continue + } + + /* + * The query field vector is populated using the termIndex found for + * the term and a unit value with the appropriate boost applied. + * Using upsert because there could already be an entry in the vector + * for the term we are working with. In that case we just add the scores + * together. + */ + queryVectors[field].upsert(termIndex, clause.boost, function (a, b) { return a + b }) + + /** + * If we've already seen this term, field combo then we've already collected + * the matching documents and metadata, no need to go through all that again + */ + if (termFieldCache[termField]) { + continue + } + + for (var l = 0; l < matchingDocumentRefs.length; l++) { + /* + * All metadata for this term/field/document triple + * are then extracted and collected into an instance + * of lunr.MatchData ready to be returned in the query + * results + */ + var matchingDocumentRef = matchingDocumentRefs[l], + matchingFieldRef = new lunr.FieldRef (matchingDocumentRef, field), + metadata = fieldPosting[matchingDocumentRef], + fieldMatch + + if ((fieldMatch = matchingFields[matchingFieldRef]) === undefined) { + matchingFields[matchingFieldRef] = new lunr.MatchData (expandedTerm, field, metadata) + } else { + fieldMatch.add(expandedTerm, field, metadata) + } + + } + + termFieldCache[termField] = true + } + } + } + + /** + * If the presence was required we need to update the requiredMatches field sets. + * We do this after all fields for the term have collected their matches because + * the clause terms presence is required in _any_ of the fields not _all_ of the + * fields. + */ + if (clause.presence === lunr.Query.presence.REQUIRED) { + for (var k = 0; k < clause.fields.length; k++) { + var field = clause.fields[k] + requiredMatches[field] = requiredMatches[field].intersect(clauseMatches) + } + } + } + + /** + * Need to combine the field scoped required and prohibited + * matching documents into a global set of required and prohibited + * matches + */ + var allRequiredMatches = lunr.Set.complete, + allProhibitedMatches = lunr.Set.empty + + for (var i = 0; i < this.fields.length; i++) { + var field = this.fields[i] + + if (requiredMatches[field]) { + allRequiredMatches = allRequiredMatches.intersect(requiredMatches[field]) + } + + if (prohibitedMatches[field]) { + allProhibitedMatches = allProhibitedMatches.union(prohibitedMatches[field]) + } + } + + var matchingFieldRefs = Object.keys(matchingFields), + results = [], + matches = Object.create(null) + + /* + * If the query is negated (contains only prohibited terms) + * we need to get _all_ fieldRefs currently existing in the + * index. This is only done when we know that the query is + * entirely prohibited terms to avoid any cost of getting all + * fieldRefs unnecessarily. + * + * Additionally, blank MatchData must be created to correctly + * populate the results. + */ + if (query.isNegated()) { + matchingFieldRefs = Object.keys(this.fieldVectors) + + for (var i = 0; i < matchingFieldRefs.length; i++) { + var matchingFieldRef = matchingFieldRefs[i] + var fieldRef = lunr.FieldRef.fromString(matchingFieldRef) + matchingFields[matchingFieldRef] = new lunr.MatchData + } + } + + for (var i = 0; i < matchingFieldRefs.length; i++) { + /* + * Currently we have document fields that match the query, but we + * need to return documents. The matchData and scores are combined + * from multiple fields belonging to the same document. + * + * Scores are calculated by field, using the query vectors created + * above, and combined into a final document score using addition. + */ + var fieldRef = lunr.FieldRef.fromString(matchingFieldRefs[i]), + docRef = fieldRef.docRef + + if (!allRequiredMatches.contains(docRef)) { + continue + } + + if (allProhibitedMatches.contains(docRef)) { + continue + } + + var fieldVector = this.fieldVectors[fieldRef], + score = queryVectors[fieldRef.fieldName].similarity(fieldVector), + docMatch + + if ((docMatch = matches[docRef]) !== undefined) { + docMatch.score += score + docMatch.matchData.combine(matchingFields[fieldRef]) + } else { + var match = { + ref: docRef, + score: score, + matchData: matchingFields[fieldRef] + } + matches[docRef] = match + results.push(match) + } + } + + /* + * Sort the results objects by score, highest first. + */ + return results.sort(function (a, b) { + return b.score - a.score + }) +} + +/** + * Prepares the index for JSON serialization. + * + * The schema for this JSON blob will be described in a + * separate JSON schema file. + * + * @returns {Object} + */ +lunr.Index.prototype.toJSON = function () { + var invertedIndex = Object.keys(this.invertedIndex) + .sort() + .map(function (term) { + return [term, this.invertedIndex[term]] + }, this) + + var fieldVectors = Object.keys(this.fieldVectors) + .map(function (ref) { + return [ref, this.fieldVectors[ref].toJSON()] + }, this) + + return { + version: lunr.version, + fields: this.fields, + fieldVectors: fieldVectors, + invertedIndex: invertedIndex, + pipeline: this.pipeline.toJSON() + } +} + +/** + * Loads a previously serialized lunr.Index + * + * @param {Object} serializedIndex - A previously serialized lunr.Index + * @returns {lunr.Index} + */ +lunr.Index.load = function (serializedIndex) { + var attrs = {}, + fieldVectors = {}, + serializedVectors = serializedIndex.fieldVectors, + invertedIndex = Object.create(null), + serializedInvertedIndex = serializedIndex.invertedIndex, + tokenSetBuilder = new lunr.TokenSet.Builder, + pipeline = lunr.Pipeline.load(serializedIndex.pipeline) + + if (serializedIndex.version != lunr.version) { + lunr.utils.warn("Version mismatch when loading serialised index. Current version of lunr '" + lunr.version + "' does not match serialized index '" + serializedIndex.version + "'") + } + + for (var i = 0; i < serializedVectors.length; i++) { + var tuple = serializedVectors[i], + ref = tuple[0], + elements = tuple[1] + + fieldVectors[ref] = new lunr.Vector(elements) + } + + for (var i = 0; i < serializedInvertedIndex.length; i++) { + var tuple = serializedInvertedIndex[i], + term = tuple[0], + posting = tuple[1] + + tokenSetBuilder.insert(term) + invertedIndex[term] = posting + } + + tokenSetBuilder.finish() + + attrs.fields = serializedIndex.fields + + attrs.fieldVectors = fieldVectors + attrs.invertedIndex = invertedIndex + attrs.tokenSet = tokenSetBuilder.root + attrs.pipeline = pipeline + + return new lunr.Index(attrs) +} +/*! + * lunr.Builder + * Copyright (C) 2020 Oliver Nightingale + */ + +/** + * lunr.Builder performs indexing on a set of documents and + * returns instances of lunr.Index ready for querying. + * + * All configuration of the index is done via the builder, the + * fields to index, the document reference, the text processing + * pipeline and document scoring parameters are all set on the + * builder before indexing. + * + * @constructor + * @property {string} _ref - Internal reference to the document reference field. + * @property {string[]} _fields - Internal reference to the document fields to index. + * @property {object} invertedIndex - The inverted index maps terms to document fields. + * @property {object} documentTermFrequencies - Keeps track of document term frequencies. + * @property {object} documentLengths - Keeps track of the length of documents added to the index. + * @property {lunr.tokenizer} tokenizer - Function for splitting strings into tokens for indexing. + * @property {lunr.Pipeline} pipeline - The pipeline performs text processing on tokens before indexing. + * @property {lunr.Pipeline} searchPipeline - A pipeline for processing search terms before querying the index. + * @property {number} documentCount - Keeps track of the total number of documents indexed. + * @property {number} _b - A parameter to control field length normalization, setting this to 0 disabled normalization, 1 fully normalizes field lengths, the default value is 0.75. + * @property {number} _k1 - A parameter to control how quickly an increase in term frequency results in term frequency saturation, the default value is 1.2. + * @property {number} termIndex - A counter incremented for each unique term, used to identify a terms position in the vector space. + * @property {array} metadataWhitelist - A list of metadata keys that have been whitelisted for entry in the index. + */ +lunr.Builder = function () { + this._ref = "id" + this._fields = Object.create(null) + this._documents = Object.create(null) + this.invertedIndex = Object.create(null) + this.fieldTermFrequencies = {} + this.fieldLengths = {} + this.tokenizer = lunr.tokenizer + this.pipeline = new lunr.Pipeline + this.searchPipeline = new lunr.Pipeline + this.documentCount = 0 + this._b = 0.75 + this._k1 = 1.2 + this.termIndex = 0 + this.metadataWhitelist = [] +} + +/** + * Sets the document field used as the document reference. Every document must have this field. + * The type of this field in the document should be a string, if it is not a string it will be + * coerced into a string by calling toString. + * + * The default ref is 'id'. + * + * The ref should _not_ be changed during indexing, it should be set before any documents are + * added to the index. Changing it during indexing can lead to inconsistent results. + * + * @param {string} ref - The name of the reference field in the document. + */ +lunr.Builder.prototype.ref = function (ref) { + this._ref = ref +} + +/** + * A function that is used to extract a field from a document. + * + * Lunr expects a field to be at the top level of a document, if however the field + * is deeply nested within a document an extractor function can be used to extract + * the right field for indexing. + * + * @callback fieldExtractor + * @param {object} doc - The document being added to the index. + * @returns {?(string|object|object[])} obj - The object that will be indexed for this field. + * @example Extracting a nested field + * function (doc) { return doc.nested.field } + */ + +/** + * Adds a field to the list of document fields that will be indexed. Every document being + * indexed should have this field. Null values for this field in indexed documents will + * not cause errors but will limit the chance of that document being retrieved by searches. + * + * All fields should be added before adding documents to the index. Adding fields after + * a document has been indexed will have no effect on already indexed documents. + * + * Fields can be boosted at build time. This allows terms within that field to have more + * importance when ranking search results. Use a field boost to specify that matches within + * one field are more important than other fields. + * + * @param {string} fieldName - The name of a field to index in all documents. + * @param {object} attributes - Optional attributes associated with this field. + * @param {number} [attributes.boost=1] - Boost applied to all terms within this field. + * @param {fieldExtractor} [attributes.extractor] - Function to extract a field from a document. + * @throws {RangeError} fieldName cannot contain unsupported characters '/' + */ +lunr.Builder.prototype.field = function (fieldName, attributes) { + if (/\//.test(fieldName)) { + throw new RangeError ("Field '" + fieldName + "' contains illegal character '/'") + } + + this._fields[fieldName] = attributes || {} +} + +/** + * A parameter to tune the amount of field length normalisation that is applied when + * calculating relevance scores. A value of 0 will completely disable any normalisation + * and a value of 1 will fully normalise field lengths. The default is 0.75. Values of b + * will be clamped to the range 0 - 1. + * + * @param {number} number - The value to set for this tuning parameter. + */ +lunr.Builder.prototype.b = function (number) { + if (number < 0) { + this._b = 0 + } else if (number > 1) { + this._b = 1 + } else { + this._b = number + } +} + +/** + * A parameter that controls the speed at which a rise in term frequency results in term + * frequency saturation. The default value is 1.2. Setting this to a higher value will give + * slower saturation levels, a lower value will result in quicker saturation. + * + * @param {number} number - The value to set for this tuning parameter. + */ +lunr.Builder.prototype.k1 = function (number) { + this._k1 = number +} + +/** + * Adds a document to the index. + * + * Before adding fields to the index the index should have been fully setup, with the document + * ref and all fields to index already having been specified. + * + * The document must have a field name as specified by the ref (by default this is 'id') and + * it should have all fields defined for indexing, though null or undefined values will not + * cause errors. + * + * Entire documents can be boosted at build time. Applying a boost to a document indicates that + * this document should rank higher in search results than other documents. + * + * @param {object} doc - The document to add to the index. + * @param {object} attributes - Optional attributes associated with this document. + * @param {number} [attributes.boost=1] - Boost applied to all terms within this document. + */ +lunr.Builder.prototype.add = function (doc, attributes) { + var docRef = doc[this._ref], + fields = Object.keys(this._fields) + + this._documents[docRef] = attributes || {} + this.documentCount += 1 + + for (var i = 0; i < fields.length; i++) { + var fieldName = fields[i], + extractor = this._fields[fieldName].extractor, + field = extractor ? extractor(doc) : doc[fieldName], + tokens = this.tokenizer(field, { + fields: [fieldName] + }), + terms = this.pipeline.run(tokens), + fieldRef = new lunr.FieldRef (docRef, fieldName), + fieldTerms = Object.create(null) + + this.fieldTermFrequencies[fieldRef] = fieldTerms + this.fieldLengths[fieldRef] = 0 + + // store the length of this field for this document + this.fieldLengths[fieldRef] += terms.length + + // calculate term frequencies for this field + for (var j = 0; j < terms.length; j++) { + var term = terms[j] + + if (fieldTerms[term] == undefined) { + fieldTerms[term] = 0 + } + + fieldTerms[term] += 1 + + // add to inverted index + // create an initial posting if one doesn't exist + if (this.invertedIndex[term] == undefined) { + var posting = Object.create(null) + posting["_index"] = this.termIndex + this.termIndex += 1 + + for (var k = 0; k < fields.length; k++) { + posting[fields[k]] = Object.create(null) + } + + this.invertedIndex[term] = posting + } + + // add an entry for this term/fieldName/docRef to the invertedIndex + if (this.invertedIndex[term][fieldName][docRef] == undefined) { + this.invertedIndex[term][fieldName][docRef] = Object.create(null) + } + + // store all whitelisted metadata about this token in the + // inverted index + for (var l = 0; l < this.metadataWhitelist.length; l++) { + var metadataKey = this.metadataWhitelist[l], + metadata = term.metadata[metadataKey] + + if (this.invertedIndex[term][fieldName][docRef][metadataKey] == undefined) { + this.invertedIndex[term][fieldName][docRef][metadataKey] = [] + } + + this.invertedIndex[term][fieldName][docRef][metadataKey].push(metadata) + } + } + + } +} + +/** + * Calculates the average document length for this index + * + * @private + */ +lunr.Builder.prototype.calculateAverageFieldLengths = function () { + + var fieldRefs = Object.keys(this.fieldLengths), + numberOfFields = fieldRefs.length, + accumulator = {}, + documentsWithField = {} + + for (var i = 0; i < numberOfFields; i++) { + var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]), + field = fieldRef.fieldName + + documentsWithField[field] || (documentsWithField[field] = 0) + documentsWithField[field] += 1 + + accumulator[field] || (accumulator[field] = 0) + accumulator[field] += this.fieldLengths[fieldRef] + } + + var fields = Object.keys(this._fields) + + for (var i = 0; i < fields.length; i++) { + var fieldName = fields[i] + accumulator[fieldName] = accumulator[fieldName] / documentsWithField[fieldName] + } + + this.averageFieldLength = accumulator +} + +/** + * Builds a vector space model of every document using lunr.Vector + * + * @private + */ +lunr.Builder.prototype.createFieldVectors = function () { + var fieldVectors = {}, + fieldRefs = Object.keys(this.fieldTermFrequencies), + fieldRefsLength = fieldRefs.length, + termIdfCache = Object.create(null) + + for (var i = 0; i < fieldRefsLength; i++) { + var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]), + fieldName = fieldRef.fieldName, + fieldLength = this.fieldLengths[fieldRef], + fieldVector = new lunr.Vector, + termFrequencies = this.fieldTermFrequencies[fieldRef], + terms = Object.keys(termFrequencies), + termsLength = terms.length + + + var fieldBoost = this._fields[fieldName].boost || 1, + docBoost = this._documents[fieldRef.docRef].boost || 1 + + for (var j = 0; j < termsLength; j++) { + var term = terms[j], + tf = termFrequencies[term], + termIndex = this.invertedIndex[term]._index, + idf, score, scoreWithPrecision + + if (termIdfCache[term] === undefined) { + idf = lunr.idf(this.invertedIndex[term], this.documentCount) + termIdfCache[term] = idf + } else { + idf = termIdfCache[term] + } + + score = idf * ((this._k1 + 1) * tf) / (this._k1 * (1 - this._b + this._b * (fieldLength / this.averageFieldLength[fieldName])) + tf) + score *= fieldBoost + score *= docBoost + scoreWithPrecision = Math.round(score * 1000) / 1000 + // Converts 1.23456789 to 1.234. + // Reducing the precision so that the vectors take up less + // space when serialised. Doing it now so that they behave + // the same before and after serialisation. Also, this is + // the fastest approach to reducing a number's precision in + // JavaScript. + + fieldVector.insert(termIndex, scoreWithPrecision) + } + + fieldVectors[fieldRef] = fieldVector + } + + this.fieldVectors = fieldVectors +} + +/** + * Creates a token set of all tokens in the index using lunr.TokenSet + * + * @private + */ +lunr.Builder.prototype.createTokenSet = function () { + this.tokenSet = lunr.TokenSet.fromArray( + Object.keys(this.invertedIndex).sort() + ) +} + +/** + * Builds the index, creating an instance of lunr.Index. + * + * This completes the indexing process and should only be called + * once all documents have been added to the index. + * + * @returns {lunr.Index} + */ +lunr.Builder.prototype.build = function () { + this.calculateAverageFieldLengths() + this.createFieldVectors() + this.createTokenSet() + + return new lunr.Index({ + invertedIndex: this.invertedIndex, + fieldVectors: this.fieldVectors, + tokenSet: this.tokenSet, + fields: Object.keys(this._fields), + pipeline: this.searchPipeline + }) +} + +/** + * Applies a plugin to the index builder. + * + * A plugin is a function that is called with the index builder as its context. + * Plugins can be used to customise or extend the behaviour of the index + * in some way. A plugin is just a function, that encapsulated the custom + * behaviour that should be applied when building the index. + * + * The plugin function will be called with the index builder as its argument, additional + * arguments can also be passed when calling use. The function will be called + * with the index builder as its context. + * + * @param {Function} plugin The plugin to apply. + */ +lunr.Builder.prototype.use = function (fn) { + var args = Array.prototype.slice.call(arguments, 1) + args.unshift(this) + fn.apply(this, args) +} +/** + * Contains and collects metadata about a matching document. + * A single instance of lunr.MatchData is returned as part of every + * lunr.Index~Result. + * + * @constructor + * @param {string} term - The term this match data is associated with + * @param {string} field - The field in which the term was found + * @param {object} metadata - The metadata recorded about this term in this field + * @property {object} metadata - A cloned collection of metadata associated with this document. + * @see {@link lunr.Index~Result} + */ +lunr.MatchData = function (term, field, metadata) { + var clonedMetadata = Object.create(null), + metadataKeys = Object.keys(metadata || {}) + + // Cloning the metadata to prevent the original + // being mutated during match data combination. + // Metadata is kept in an array within the inverted + // index so cloning the data can be done with + // Array#slice + for (var i = 0; i < metadataKeys.length; i++) { + var key = metadataKeys[i] + clonedMetadata[key] = metadata[key].slice() + } + + this.metadata = Object.create(null) + + if (term !== undefined) { + this.metadata[term] = Object.create(null) + this.metadata[term][field] = clonedMetadata + } +} + +/** + * An instance of lunr.MatchData will be created for every term that matches a + * document. However only one instance is required in a lunr.Index~Result. This + * method combines metadata from another instance of lunr.MatchData with this + * objects metadata. + * + * @param {lunr.MatchData} otherMatchData - Another instance of match data to merge with this one. + * @see {@link lunr.Index~Result} + */ +lunr.MatchData.prototype.combine = function (otherMatchData) { + var terms = Object.keys(otherMatchData.metadata) + + for (var i = 0; i < terms.length; i++) { + var term = terms[i], + fields = Object.keys(otherMatchData.metadata[term]) + + if (this.metadata[term] == undefined) { + this.metadata[term] = Object.create(null) + } + + for (var j = 0; j < fields.length; j++) { + var field = fields[j], + keys = Object.keys(otherMatchData.metadata[term][field]) + + if (this.metadata[term][field] == undefined) { + this.metadata[term][field] = Object.create(null) + } + + for (var k = 0; k < keys.length; k++) { + var key = keys[k] + + if (this.metadata[term][field][key] == undefined) { + this.metadata[term][field][key] = otherMatchData.metadata[term][field][key] + } else { + this.metadata[term][field][key] = this.metadata[term][field][key].concat(otherMatchData.metadata[term][field][key]) + } + + } + } + } +} + +/** + * Add metadata for a term/field pair to this instance of match data. + * + * @param {string} term - The term this match data is associated with + * @param {string} field - The field in which the term was found + * @param {object} metadata - The metadata recorded about this term in this field + */ +lunr.MatchData.prototype.add = function (term, field, metadata) { + if (!(term in this.metadata)) { + this.metadata[term] = Object.create(null) + this.metadata[term][field] = metadata + return + } + + if (!(field in this.metadata[term])) { + this.metadata[term][field] = metadata + return + } + + var metadataKeys = Object.keys(metadata) + + for (var i = 0; i < metadataKeys.length; i++) { + var key = metadataKeys[i] + + if (key in this.metadata[term][field]) { + this.metadata[term][field][key] = this.metadata[term][field][key].concat(metadata[key]) + } else { + this.metadata[term][field][key] = metadata[key] + } + } +} +/** + * A lunr.Query provides a programmatic way of defining queries to be performed + * against a {@link lunr.Index}. + * + * Prefer constructing a lunr.Query using the {@link lunr.Index#query} method + * so the query object is pre-initialized with the right index fields. + * + * @constructor + * @property {lunr.Query~Clause[]} clauses - An array of query clauses. + * @property {string[]} allFields - An array of all available fields in a lunr.Index. + */ +lunr.Query = function (allFields) { + this.clauses = [] + this.allFields = allFields +} + +/** + * Constants for indicating what kind of automatic wildcard insertion will be used when constructing a query clause. + * + * This allows wildcards to be added to the beginning and end of a term without having to manually do any string + * concatenation. + * + * The wildcard constants can be bitwise combined to select both leading and trailing wildcards. + * + * @constant + * @default + * @property {number} wildcard.NONE - The term will have no wildcards inserted, this is the default behaviour + * @property {number} wildcard.LEADING - Prepend the term with a wildcard, unless a leading wildcard already exists + * @property {number} wildcard.TRAILING - Append a wildcard to the term, unless a trailing wildcard already exists + * @see lunr.Query~Clause + * @see lunr.Query#clause + * @see lunr.Query#term + * @example query term with trailing wildcard + * query.term('foo', { wildcard: lunr.Query.wildcard.TRAILING }) + * @example query term with leading and trailing wildcard + * query.term('foo', { + * wildcard: lunr.Query.wildcard.LEADING | lunr.Query.wildcard.TRAILING + * }) + */ + +lunr.Query.wildcard = new String ("*") +lunr.Query.wildcard.NONE = 0 +lunr.Query.wildcard.LEADING = 1 +lunr.Query.wildcard.TRAILING = 2 + +/** + * Constants for indicating what kind of presence a term must have in matching documents. + * + * @constant + * @enum {number} + * @see lunr.Query~Clause + * @see lunr.Query#clause + * @see lunr.Query#term + * @example query term with required presence + * query.term('foo', { presence: lunr.Query.presence.REQUIRED }) + */ +lunr.Query.presence = { + /** + * Term's presence in a document is optional, this is the default value. + */ + OPTIONAL: 1, + + /** + * Term's presence in a document is required, documents that do not contain + * this term will not be returned. + */ + REQUIRED: 2, + + /** + * Term's presence in a document is prohibited, documents that do contain + * this term will not be returned. + */ + PROHIBITED: 3 +} + +/** + * A single clause in a {@link lunr.Query} contains a term and details on how to + * match that term against a {@link lunr.Index}. + * + * @typedef {Object} lunr.Query~Clause + * @property {string[]} fields - The fields in an index this clause should be matched against. + * @property {number} [boost=1] - Any boost that should be applied when matching this clause. + * @property {number} [editDistance] - Whether the term should have fuzzy matching applied, and how fuzzy the match should be. + * @property {boolean} [usePipeline] - Whether the term should be passed through the search pipeline. + * @property {number} [wildcard=lunr.Query.wildcard.NONE] - Whether the term should have wildcards appended or prepended. + * @property {number} [presence=lunr.Query.presence.OPTIONAL] - The terms presence in any matching documents. + */ + +/** + * Adds a {@link lunr.Query~Clause} to this query. + * + * Unless the clause contains the fields to be matched all fields will be matched. In addition + * a default boost of 1 is applied to the clause. + * + * @param {lunr.Query~Clause} clause - The clause to add to this query. + * @see lunr.Query~Clause + * @returns {lunr.Query} + */ +lunr.Query.prototype.clause = function (clause) { + if (!('fields' in clause)) { + clause.fields = this.allFields + } + + if (!('boost' in clause)) { + clause.boost = 1 + } + + if (!('usePipeline' in clause)) { + clause.usePipeline = true + } + + if (!('wildcard' in clause)) { + clause.wildcard = lunr.Query.wildcard.NONE + } + + if ((clause.wildcard & lunr.Query.wildcard.LEADING) && (clause.term.charAt(0) != lunr.Query.wildcard)) { + clause.term = "*" + clause.term + } + + if ((clause.wildcard & lunr.Query.wildcard.TRAILING) && (clause.term.slice(-1) != lunr.Query.wildcard)) { + clause.term = "" + clause.term + "*" + } + + if (!('presence' in clause)) { + clause.presence = lunr.Query.presence.OPTIONAL + } + + this.clauses.push(clause) + + return this +} + +/** + * A negated query is one in which every clause has a presence of + * prohibited. These queries require some special processing to return + * the expected results. + * + * @returns boolean + */ +lunr.Query.prototype.isNegated = function () { + for (var i = 0; i < this.clauses.length; i++) { + if (this.clauses[i].presence != lunr.Query.presence.PROHIBITED) { + return false + } + } + + return true +} + +/** + * Adds a term to the current query, under the covers this will create a {@link lunr.Query~Clause} + * to the list of clauses that make up this query. + * + * The term is used as is, i.e. no tokenization will be performed by this method. Instead conversion + * to a token or token-like string should be done before calling this method. + * + * The term will be converted to a string by calling `toString`. Multiple terms can be passed as an + * array, each term in the array will share the same options. + * + * @param {object|object[]} term - The term(s) to add to the query. + * @param {object} [options] - Any additional properties to add to the query clause. + * @returns {lunr.Query} + * @see lunr.Query#clause + * @see lunr.Query~Clause + * @example adding a single term to a query + * query.term("foo") + * @example adding a single term to a query and specifying search fields, term boost and automatic trailing wildcard + * query.term("foo", { + * fields: ["title"], + * boost: 10, + * wildcard: lunr.Query.wildcard.TRAILING + * }) + * @example using lunr.tokenizer to convert a string to tokens before using them as terms + * query.term(lunr.tokenizer("foo bar")) + */ +lunr.Query.prototype.term = function (term, options) { + if (Array.isArray(term)) { + term.forEach(function (t) { this.term(t, lunr.utils.clone(options)) }, this) + return this + } + + var clause = options || {} + clause.term = term.toString() + + this.clause(clause) + + return this +} +lunr.QueryParseError = function (message, start, end) { + this.name = "QueryParseError" + this.message = message + this.start = start + this.end = end +} + +lunr.QueryParseError.prototype = new Error +lunr.QueryLexer = function (str) { + this.lexemes = [] + this.str = str + this.length = str.length + this.pos = 0 + this.start = 0 + this.escapeCharPositions = [] +} + +lunr.QueryLexer.prototype.run = function () { + var state = lunr.QueryLexer.lexText + + while (state) { + state = state(this) + } +} + +lunr.QueryLexer.prototype.sliceString = function () { + var subSlices = [], + sliceStart = this.start, + sliceEnd = this.pos + + for (var i = 0; i < this.escapeCharPositions.length; i++) { + sliceEnd = this.escapeCharPositions[i] + subSlices.push(this.str.slice(sliceStart, sliceEnd)) + sliceStart = sliceEnd + 1 + } + + subSlices.push(this.str.slice(sliceStart, this.pos)) + this.escapeCharPositions.length = 0 + + return subSlices.join('') +} + +lunr.QueryLexer.prototype.emit = function (type) { + this.lexemes.push({ + type: type, + str: this.sliceString(), + start: this.start, + end: this.pos + }) + + this.start = this.pos +} + +lunr.QueryLexer.prototype.escapeCharacter = function () { + this.escapeCharPositions.push(this.pos - 1) + this.pos += 1 +} + +lunr.QueryLexer.prototype.next = function () { + if (this.pos >= this.length) { + return lunr.QueryLexer.EOS + } + + var char = this.str.charAt(this.pos) + this.pos += 1 + return char +} + +lunr.QueryLexer.prototype.width = function () { + return this.pos - this.start +} + +lunr.QueryLexer.prototype.ignore = function () { + if (this.start == this.pos) { + this.pos += 1 + } + + this.start = this.pos +} + +lunr.QueryLexer.prototype.backup = function () { + this.pos -= 1 +} + +lunr.QueryLexer.prototype.acceptDigitRun = function () { + var char, charCode + + do { + char = this.next() + charCode = char.charCodeAt(0) + } while (charCode > 47 && charCode < 58) + + if (char != lunr.QueryLexer.EOS) { + this.backup() + } +} + +lunr.QueryLexer.prototype.more = function () { + return this.pos < this.length +} + +lunr.QueryLexer.EOS = 'EOS' +lunr.QueryLexer.FIELD = 'FIELD' +lunr.QueryLexer.TERM = 'TERM' +lunr.QueryLexer.EDIT_DISTANCE = 'EDIT_DISTANCE' +lunr.QueryLexer.BOOST = 'BOOST' +lunr.QueryLexer.PRESENCE = 'PRESENCE' + +lunr.QueryLexer.lexField = function (lexer) { + lexer.backup() + lexer.emit(lunr.QueryLexer.FIELD) + lexer.ignore() + return lunr.QueryLexer.lexText +} + +lunr.QueryLexer.lexTerm = function (lexer) { + if (lexer.width() > 1) { + lexer.backup() + lexer.emit(lunr.QueryLexer.TERM) + } + + lexer.ignore() + + if (lexer.more()) { + return lunr.QueryLexer.lexText + } +} + +lunr.QueryLexer.lexEditDistance = function (lexer) { + lexer.ignore() + lexer.acceptDigitRun() + lexer.emit(lunr.QueryLexer.EDIT_DISTANCE) + return lunr.QueryLexer.lexText +} + +lunr.QueryLexer.lexBoost = function (lexer) { + lexer.ignore() + lexer.acceptDigitRun() + lexer.emit(lunr.QueryLexer.BOOST) + return lunr.QueryLexer.lexText +} + +lunr.QueryLexer.lexEOS = function (lexer) { + if (lexer.width() > 0) { + lexer.emit(lunr.QueryLexer.TERM) + } +} + +// This matches the separator used when tokenising fields +// within a document. These should match otherwise it is +// not possible to search for some tokens within a document. +// +// It is possible for the user to change the separator on the +// tokenizer so it _might_ clash with any other of the special +// characters already used within the search string, e.g. :. +// +// This means that it is possible to change the separator in +// such a way that makes some words unsearchable using a search +// string. +lunr.QueryLexer.termSeparator = lunr.tokenizer.separator + +lunr.QueryLexer.lexText = function (lexer) { + while (true) { + var char = lexer.next() + + if (char == lunr.QueryLexer.EOS) { + return lunr.QueryLexer.lexEOS + } + + // Escape character is '\' + if (char.charCodeAt(0) == 92) { + lexer.escapeCharacter() + continue + } + + if (char == ":") { + return lunr.QueryLexer.lexField + } + + if (char == "~") { + lexer.backup() + if (lexer.width() > 0) { + lexer.emit(lunr.QueryLexer.TERM) + } + return lunr.QueryLexer.lexEditDistance + } + + if (char == "^") { + lexer.backup() + if (lexer.width() > 0) { + lexer.emit(lunr.QueryLexer.TERM) + } + return lunr.QueryLexer.lexBoost + } + + // "+" indicates term presence is required + // checking for length to ensure that only + // leading "+" are considered + if (char == "+" && lexer.width() === 1) { + lexer.emit(lunr.QueryLexer.PRESENCE) + return lunr.QueryLexer.lexText + } + + // "-" indicates term presence is prohibited + // checking for length to ensure that only + // leading "-" are considered + if (char == "-" && lexer.width() === 1) { + lexer.emit(lunr.QueryLexer.PRESENCE) + return lunr.QueryLexer.lexText + } + + if (char.match(lunr.QueryLexer.termSeparator)) { + return lunr.QueryLexer.lexTerm + } + } +} + +lunr.QueryParser = function (str, query) { + this.lexer = new lunr.QueryLexer (str) + this.query = query + this.currentClause = {} + this.lexemeIdx = 0 +} + +lunr.QueryParser.prototype.parse = function () { + this.lexer.run() + this.lexemes = this.lexer.lexemes + + var state = lunr.QueryParser.parseClause + + while (state) { + state = state(this) + } + + return this.query +} + +lunr.QueryParser.prototype.peekLexeme = function () { + return this.lexemes[this.lexemeIdx] +} + +lunr.QueryParser.prototype.consumeLexeme = function () { + var lexeme = this.peekLexeme() + this.lexemeIdx += 1 + return lexeme +} + +lunr.QueryParser.prototype.nextClause = function () { + var completedClause = this.currentClause + this.query.clause(completedClause) + this.currentClause = {} +} + +lunr.QueryParser.parseClause = function (parser) { + var lexeme = parser.peekLexeme() + + if (lexeme == undefined) { + return + } + + switch (lexeme.type) { + case lunr.QueryLexer.PRESENCE: + return lunr.QueryParser.parsePresence + case lunr.QueryLexer.FIELD: + return lunr.QueryParser.parseField + case lunr.QueryLexer.TERM: + return lunr.QueryParser.parseTerm + default: + var errorMessage = "expected either a field or a term, found " + lexeme.type + + if (lexeme.str.length >= 1) { + errorMessage += " with value '" + lexeme.str + "'" + } + + throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) + } +} + +lunr.QueryParser.parsePresence = function (parser) { + var lexeme = parser.consumeLexeme() + + if (lexeme == undefined) { + return + } + + switch (lexeme.str) { + case "-": + parser.currentClause.presence = lunr.Query.presence.PROHIBITED + break + case "+": + parser.currentClause.presence = lunr.Query.presence.REQUIRED + break + default: + var errorMessage = "unrecognised presence operator'" + lexeme.str + "'" + throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) + } + + var nextLexeme = parser.peekLexeme() + + if (nextLexeme == undefined) { + var errorMessage = "expecting term or field, found nothing" + throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) + } + + switch (nextLexeme.type) { + case lunr.QueryLexer.FIELD: + return lunr.QueryParser.parseField + case lunr.QueryLexer.TERM: + return lunr.QueryParser.parseTerm + default: + var errorMessage = "expecting term or field, found '" + nextLexeme.type + "'" + throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end) + } +} + +lunr.QueryParser.parseField = function (parser) { + var lexeme = parser.consumeLexeme() + + if (lexeme == undefined) { + return + } + + if (parser.query.allFields.indexOf(lexeme.str) == -1) { + var possibleFields = parser.query.allFields.map(function (f) { return "'" + f + "'" }).join(', '), + errorMessage = "unrecognised field '" + lexeme.str + "', possible fields: " + possibleFields + + throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) + } + + parser.currentClause.fields = [lexeme.str] + + var nextLexeme = parser.peekLexeme() + + if (nextLexeme == undefined) { + var errorMessage = "expecting term, found nothing" + throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) + } + + switch (nextLexeme.type) { + case lunr.QueryLexer.TERM: + return lunr.QueryParser.parseTerm + default: + var errorMessage = "expecting term, found '" + nextLexeme.type + "'" + throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end) + } +} + +lunr.QueryParser.parseTerm = function (parser) { + var lexeme = parser.consumeLexeme() + + if (lexeme == undefined) { + return + } + + parser.currentClause.term = lexeme.str.toLowerCase() + + if (lexeme.str.indexOf("*") != -1) { + parser.currentClause.usePipeline = false + } + + var nextLexeme = parser.peekLexeme() + + if (nextLexeme == undefined) { + parser.nextClause() + return + } + + switch (nextLexeme.type) { + case lunr.QueryLexer.TERM: + parser.nextClause() + return lunr.QueryParser.parseTerm + case lunr.QueryLexer.FIELD: + parser.nextClause() + return lunr.QueryParser.parseField + case lunr.QueryLexer.EDIT_DISTANCE: + return lunr.QueryParser.parseEditDistance + case lunr.QueryLexer.BOOST: + return lunr.QueryParser.parseBoost + case lunr.QueryLexer.PRESENCE: + parser.nextClause() + return lunr.QueryParser.parsePresence + default: + var errorMessage = "Unexpected lexeme type '" + nextLexeme.type + "'" + throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end) + } +} + +lunr.QueryParser.parseEditDistance = function (parser) { + var lexeme = parser.consumeLexeme() + + if (lexeme == undefined) { + return + } + + var editDistance = parseInt(lexeme.str, 10) + + if (isNaN(editDistance)) { + var errorMessage = "edit distance must be numeric" + throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) + } + + parser.currentClause.editDistance = editDistance + + var nextLexeme = parser.peekLexeme() + + if (nextLexeme == undefined) { + parser.nextClause() + return + } + + switch (nextLexeme.type) { + case lunr.QueryLexer.TERM: + parser.nextClause() + return lunr.QueryParser.parseTerm + case lunr.QueryLexer.FIELD: + parser.nextClause() + return lunr.QueryParser.parseField + case lunr.QueryLexer.EDIT_DISTANCE: + return lunr.QueryParser.parseEditDistance + case lunr.QueryLexer.BOOST: + return lunr.QueryParser.parseBoost + case lunr.QueryLexer.PRESENCE: + parser.nextClause() + return lunr.QueryParser.parsePresence + default: + var errorMessage = "Unexpected lexeme type '" + nextLexeme.type + "'" + throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end) + } +} + +lunr.QueryParser.parseBoost = function (parser) { + var lexeme = parser.consumeLexeme() + + if (lexeme == undefined) { + return + } + + var boost = parseInt(lexeme.str, 10) + + if (isNaN(boost)) { + var errorMessage = "boost must be numeric" + throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) + } + + parser.currentClause.boost = boost + + var nextLexeme = parser.peekLexeme() + + if (nextLexeme == undefined) { + parser.nextClause() + return + } + + switch (nextLexeme.type) { + case lunr.QueryLexer.TERM: + parser.nextClause() + return lunr.QueryParser.parseTerm + case lunr.QueryLexer.FIELD: + parser.nextClause() + return lunr.QueryParser.parseField + case lunr.QueryLexer.EDIT_DISTANCE: + return lunr.QueryParser.parseEditDistance + case lunr.QueryLexer.BOOST: + return lunr.QueryParser.parseBoost + case lunr.QueryLexer.PRESENCE: + parser.nextClause() + return lunr.QueryParser.parsePresence + default: + var errorMessage = "Unexpected lexeme type '" + nextLexeme.type + "'" + throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end) + } +} + + /** + * export the module via AMD, CommonJS or as a browser global + * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js + */ + ;(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module. + define(factory) + } else if (typeof exports === 'object') { + /** + * Node. Does not work with strict CommonJS, but + * only CommonJS-like enviroments that support module.exports, + * like Node. + */ + module.exports = factory() + } else { + // Browser globals (root is window) + root.lunr = factory() + } + }(this, function () { + /** + * Just return a value to define the module export. + * This example returns an object, but the module + * can return a function as the exported value. + */ + return lunr + })) +})(); diff --git a/search/lunr_index.js b/search/lunr_index.js new file mode 100644 index 0000000..960a75c --- /dev/null +++ b/search/lunr_index.js @@ -0,0 +1,2 @@ +const LUNR_DATA = {"version":"2.3.9","fields":["t","d","k","b"],"fieldVectors":[["t/0",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,5,3.871]],["d/0",[]],["k/0",[]],["b/0",[2,0.736,4,0.381,5,7.266,6,6.899,7,6.899,8,6.99,9,9.458,10,6.899,11,5.464,12,8.655,13,5.934,14,6.854,15,4.632,16,6.899,17,6.231,18,2.718,19,7.94,20,6.899,21,6.899,22,6.899,23,6.899,24,6.231,25,3.359,26,6.899,27,6.899,28,6.231,29,3.359,30,2.355,31,5.791,32,8.655,33,6.899,34,6.899,35,6.231,36,6.899,37,5.315,38,6.899,39,4.632,40,7.266,41,3.251,42,9.918,43,3.087,44,3.145,45,6.899,46,6.899,47,5.201,48,6.899,49,9.458,50,6.899,51,8.655,52,5.463,53,6.899,54,3.302,55,5.791,56,6.899,57,6.899,58,6.899,59,6.231,60,4.632,61,6.899,62,4.237,63,6.899,64,6.899,65,4.355,66,2.383,67,6.899,68,6.899,69,3.248,70,5.791,71,2.277,72,6.899,73,3.359,74,8.655,75,6.899,76,9.458,77,4.632,78,7.818,79,10.216,80,6.899,81,3.688,82,3.05,83,3.196,84,6.899,85,5.201,86,6.899,87,6.899,88,6.899,89,5.201,90,6.899,91,6.899,92,6.899,93,3.615,94,6.231,95,3.481,96,4.355,97,6.231]],["t/1",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,98,2.115,99,3.082]],["d/1",[]],["k/1",[]],["b/1",[1,0.774,2,0.513,3,0.799,4,0.271,8,4.585,18,3.149,41,3.356,43,2.371,93,3.806,98,5.429,99,6.99,100,3.963,101,5.245,102,7.263,103,10.1,104,8.743,105,8.126,106,3.276,107,4.214,108,2.567,109,5.751,110,4.876,111,5.346,112,1.334,113,2.153,114,9.68,115,7.263,116,7.263,117,2.728,118,7.263,119,4.428,120,2.222,121,2.48,122,6.56,123,3.364,124,2.175,125,7.263,126,7.263,127,7.263,128,5.475,129,2.175,130,6.097,131,7.263,132,3.882,133,3.016,134,2.833,135,3.963,136,6.56,137,4.876,138,6.56,139,3.03,140,7.263,141,4.239,142,5.751,143,2.762,144,2.045,145,2.424,146,2.319,147,2.257,148,6.736,149,4.345,150,6.56,151,4.723,152,2.754,153,3.086,154,2.371,155,1.985,156,5.475,157,4.723,158,3.419,159,6.56,160,7.263]],["t/2",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,161,1.527,162,2.379]],["d/2",[]],["k/2",[]],["b/2",[1,0.93,2,0.616,3,0.96,161,3.564,162,4.865,163,1.894,164,7.326,165,6.302,166,1.966,167,4.865,168,8.726]],["t/3",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,169,2.994,170,1.053]],["d/3",[]],["k/3",[]],["b/3",[]],["t/4",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,171,2.994]],["d/4",[]],["k/4",[]],["b/4",[]],["t/5",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,172,2.994]],["d/5",[]],["k/5",[]],["b/5",[]],["t/6",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,173,2.994]],["d/6",[]],["k/6",[]],["b/6",[]],["t/7",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,174,2.994]],["d/7",[]],["k/7",[]],["b/7",[]],["t/8",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,175,3.145]],["d/8",[]],["k/8",[]],["b/8",[]],["t/9",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,176,3.145]],["d/9",[]],["k/9",[]],["b/9",[]],["t/10",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,177,2.994]],["d/10",[]],["k/10",[]],["b/10",[]],["t/11",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,178,2.994]],["d/11",[]],["k/11",[]],["b/11",[]],["t/12",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,176,3.145]],["d/12",[]],["k/12",[]],["b/12",[]],["t/13",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,179,2.994]],["d/13",[]],["k/13",[]],["b/13",[]],["t/14",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,180,3.145]],["d/14",[]],["k/14",[]],["b/14",[]],["t/15",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,181,3.145]],["d/15",[]],["k/15",[]],["b/15",[]],["t/16",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,182,2.868]],["d/16",[]],["k/16",[]],["b/16",[]],["t/17",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,183,3.587]],["d/17",[]],["k/17",[]],["b/17",[]],["t/18",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,184,2.994]],["d/18",[]],["k/18",[]],["b/18",[]],["t/19",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,176,3.145]],["d/19",[]],["k/19",[]],["b/19",[]],["t/20",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,185,2.994]],["d/20",[]],["k/20",[]],["b/20",[]],["t/21",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,113,1.177,166,0.895,170,1.053]],["d/21",[]],["k/21",[]],["b/21",[]],["t/22",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,186,2.994]],["d/22",[]],["k/22",[]],["b/22",[]],["t/23",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,187,2.994]],["d/23",[]],["k/23",[]],["b/23",[]],["t/24",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,98,1.968,166,0.895,170,1.053]],["d/24",[]],["k/24",[]],["b/24",[170,2.669,188,8.02]],["t/25",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,189,2.994]],["d/25",[]],["k/25",[]],["b/25",[]],["t/26",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,190,2.868]],["d/26",[]],["k/26",[]],["b/26",[]],["t/27",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,191,2.868]],["d/27",[]],["k/27",[]],["b/27",[]],["t/28",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,192,3.145]],["d/28",[]],["k/28",[]],["b/28",[]],["t/29",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,176,3.145]],["d/29",[]],["k/29",[]],["b/29",[]],["t/30",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,193,2.994]],["d/30",[]],["k/30",[]],["b/30",[]],["t/31",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,192,3.145]],["d/31",[]],["k/31",[]],["b/31",[]],["t/32",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,194,2.994]],["d/32",[]],["k/32",[]],["b/32",[]],["t/33",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,166,0.962,170,1.132]],["d/33",[]],["k/33",[]],["b/33",[170,2.365]],["t/34",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,195,2.994]],["d/34",[]],["k/34",[]],["b/34",[]],["t/35",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,196,3.145]],["d/35",[]],["k/35",[]],["b/35",[]],["t/36",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,197,3.145]],["d/36",[]],["k/36",[]],["b/36",[]],["t/37",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,198,1.968]],["d/37",[]],["k/37",[]],["b/37",[170,2.365]],["t/38",[0,0.638,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053]],["d/38",[]],["k/38",[]],["b/38",[]],["t/39",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,199,2.868]],["d/39",[]],["k/39",[]],["b/39",[]],["t/40",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,200,2.994]],["d/40",[]],["k/40",[]],["b/40",[]],["t/41",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,201,3.145]],["d/41",[]],["k/41",[]],["b/41",[170,2.365]],["t/42",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,202,1.282]],["d/42",[]],["k/42",[]],["b/42",[]],["t/43",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,203,2.994]],["d/43",[]],["k/43",[]],["b/43",[124,2.649,204,6.008,205,6.668,206,5.752]],["t/44",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,192,3.145]],["d/44",[]],["k/44",[]],["b/44",[]],["t/45",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,207,3.145]],["d/45",[]],["k/45",[]],["b/45",[]],["t/46",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,208,2.994]],["d/46",[]],["k/46",[]],["b/46",[]],["t/47",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,209,2.994]],["d/47",[]],["k/47",[]],["b/47",[]],["t/48",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,192,3.145]],["d/48",[]],["k/48",[]],["b/48",[]],["t/49",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,210,3.145]],["d/49",[]],["k/49",[]],["b/49",[]],["t/50",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,211,2.994]],["d/50",[]],["k/50",[]],["b/50",[]],["t/51",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,212,2.994]],["d/51",[]],["k/51",[]],["b/51",[]],["t/52",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,213,2.994]],["d/52",[]],["k/52",[]],["b/52",[]],["t/53",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,214,2.994]],["d/53",[]],["k/53",[]],["b/53",[170,2.365]],["t/54",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,215,2.994]],["d/54",[]],["k/54",[]],["b/54",[]],["t/55",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,216,1.473]],["d/55",[]],["k/55",[]],["b/55",[]],["t/56",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,217,2.994]],["d/56",[]],["k/56",[]],["b/56",[]],["t/57",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,218,1.165]],["d/57",[]],["k/57",[]],["b/57",[]],["t/58",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,219,3.145]],["d/58",[]],["k/58",[]],["b/58",[]],["t/59",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,220,2.994]],["d/59",[]],["k/59",[]],["b/59",[]],["t/60",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,139,1.657,166,0.895,170,1.053]],["d/60",[]],["k/60",[]],["b/60",[170,2.365]],["t/61",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,221,2.994]],["d/61",[]],["k/61",[]],["b/61",[]],["t/62",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,188,3.587]],["d/62",[]],["k/62",[]],["b/62",[170,2.789,201,7.004,216,3.281]],["t/63",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,8,2.507,166,0.895,170,1.053]],["d/63",[]],["k/63",[]],["b/63",[]],["t/64",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,222,2.994]],["d/64",[]],["k/64",[]],["b/64",[]],["t/65",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,170,1.053,223,2.994]],["d/65",[]],["k/65",[]],["b/65",[]],["t/66",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,17,3.587,166,0.895,170,1.053]],["d/66",[]],["k/66",[]],["b/66",[170,2.365]],["t/67",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,112,0.784,224,2.281]],["d/67",[]],["k/67",[]],["b/67",[2,0.457,4,0.217,13,2.325,18,2.128,25,1.892,43,1.269,71,2.135,82,1.032,106,1.228,107,2.084,112,1.07,113,1.152,117,2.187,119,1.156,120,1.528,124,0.699,129,1.164,134,0.911,139,2.084,144,1.406,146,0.745,147,1.959,153,0.806,154,0.762,155,1.908,161,2.498,163,1.516,166,0.876,169,1.759,202,0.753,204,1.396,211,1.759,217,1.759,218,2.276,224,5.839,225,0.516,226,2.527,227,2.915,228,1.064,229,1.094,230,2.187,231,1.567,232,2.775,233,2.077,234,6.964,235,2.216,236,6.781,237,1.081,238,2.079,239,2.491,240,4.025,241,1.516,242,5.148,243,1.967,244,2.637,245,1.378,246,1.685,247,1.518,248,1.622,249,2.175,250,2.435,251,2.325,252,2.454,253,4.431,254,3.713,255,2.95,256,2.437,257,2.616,258,2.161,259,5.122,260,5.864,261,5.122,262,5.53,263,5.824,264,4.511,265,2.614,266,2.585,267,8.119,268,2.135,269,3.21,270,5.824,271,5.824,272,5.26,273,5.26,274,5.824,275,7.042,276,4.994,277,5.53,278,5.824,279,2.747,280,2.113,281,2.107,282,2.144,283,1.557,284,2.187,285,3.088,286,2.994,287,3.039,288,1.88,289,2.216,290,3.124,291,3.096,292,1.705,293,2.334,294,3.886,295,1.685,296,2.108,297,5.507,298,2.334,299,4.994,300,2.208,301,2.334,302,3.886,303,2.277,304,3.071,305,1.947,306,1.223,307,2.527,308,2.206,309,2.108,310,1.759,311,1.156,312,1.848,313,2.334,314,1.536,315,1.465,316,3.067,317,1.331,318,1.848,319,2.334,320,2.334,321,6.754,322,1.759,323,1.685,324,2.701,325,1.848,326,2.334,327,3.886,328,2.334,329,1.117,330,2.334,331,2.938,332,1.8,333,2.108,334,2.334,335,2.108,336,2.334,337,0.699,338,1.786,339,5.237,340,4.343,341,1.86,342,3.263,343,1.848,344,1.247,345,2.208,346,1.959,347,3.606,348,2.16,349,2.334,350,4.672,351,2.334,352,1.686,353,1.959,354,2.215,355,2.334,356,2.334,357,0.806,358,0.866,359,1.591,360,0.788,361,2.527,362,2.956,363,1.247,364,2.423,365,0.974,366,1.2,367,0.644,368,2.808,369,1.406,370,3.131,371,1.421,372,3.886,373,3.263,374,3.886,375,3.886,376,3.886,377,1.961,378,5.53,379,4.206,380,3.886,381,3.886,382,3.077,383,3.353,384,2.216,385,1.407,386,3.077,387,1.424,388,1.48,389,2.807,390,3.077,391,1.848,392,1.331,393,1.892,394,1.048,395,2.108,396,2.108,397,2.108,398,2.334,399,0.779,400,0.815,401,1.622,402,4.119,403,2.327,404,3.012,405,1.099,406,2.108,407,1.544,408,3.66,409,2.108,410,2.108,411,2.108,412,2.334,413,2.108,414,2.432,415,1.283,416,2.108,417,2.108,418,2.108,419,1.959,420,3.51,421,3.51,422,3.51,423,2.334,424,2.334,425,0.935,426,1.228,427,2.334,428,0.876,429,2.108,430,2.108,431,2.108,432,1.959,433,0.876,434,2.334,435,2.108,436,2.108,437,2.108,438,4.994,439,3.263,440,2.807,441,2.93,442,1.152,443,2.108,444,1.064,445,2.747,446,1.622,447,2.108,448,2.108,449,2.108,450,1.848,451,1.136,452,3.886,453,2.334,454,2.108,455,2.334,456,1.365,457,1.765,458,2.108,459,2.108,460,2.108,461,2.334,462,1.848,463,2.334,464,2.108,465,2.108,466,2.108,467,2.334,468,1.848,469,1.002,470,1.178,471,2.108,472,2.108,473,2.108,474,1.073,475,1.331,476,1.331,477,0.96,478,1.396,479,0.888,480,0.911,481,2.334,482,1.433,483,2.108,484,2.108,485,2.108,486,2.334,487,1.176,488,2.011,489,1.156,490,1.622,491,1.017,492,1.362,493,2.334,494,2.108,495,2.108,496,2.108,497,2.334,498,1.136,499,1.136,500,0.888,501,1.848,502,1.017,503,1.685,504,2.334,505,1.786,506,2.334,507,1.926,508,1.433,509,2.108,510,2.334,511,2.121,512,2.334,513,2.077,514,2.334,515,2.333,516,2.334,517,2.609,518,2.334,519,1.772,520,2.334,521,2.216,522,2.334,523,2.334,524,2.334,525,2.334,526,1.622,527,0.835,528,2.334,529,0.947,530,1.848,531,2.334,532,2.334,533,2.818,534,2.334,535,2.334,536,2.334,537,2.334,538,1.536,539,2.334,540,0.845,541,2.334,542,2.037,543,1.705,544,2.334,545,2.108,546,2.334,547,2.325,548,2.334,549,2.108,550,3.077,551,2.807,552,3.263,553,2.108,554,2.334,555,1.745,556,1.959,557,1.648,558,2.334,559,1.974,560,2.334,561,1.974,562,2.334,563,2.084,564,2.334,565,2.669,566,2.334,567,2.391,568,2.334,569,2.391,570,2.334,571,2.334,572,1.433,573,2.334,574,2.334,575,1.473,576,2.334,577,2.334,578,1.567,579,2.334,580,2.334,581,1.396,582,2.334,583,2.334,584,1.759,585,2.334,586,1.685,587,2.334,588,1.685,589,2.334,590,1.362,591,2.334,592,1.759,593,2.334,594,1.759,595,2.334,596,1.759,597,2.334,598,2.334,599,1.685,600,2.334,601,1.622,602,2.334,603,1.685,604,2.334,605,1.759,606,2.108,607,3.247,608,2.108,609,2.108,610,2.334,611,0.947,612,2.334,613,0.988,614,2.334,615,4.305,616,2.334,617,2.334,618,2.334,619,2.334,620,2.334,621,2.334,622,2.334,623,2.334,624,2.334,625,2.108,626,2.334,627,2.334,628,2.334,629,2.334,630,2.334,631,2.334,632,2.334,633,2.334,634,2.334,635,2.334,636,2.334,637,1.518,638,1.959,639,2.334]],["t/68",[0,0.4,1,0.396,2,0.262,3,0.409,4,0.138,211,2.799,227,2.168,251,2.222,252,2.344]],["d/68",[]],["k/68",[]],["b/68",[2,0.522,4,0.132,18,2.571,29,0.72,30,3.315,41,0.985,43,0.483,59,1.335,60,0.993,65,0.933,66,0.906,85,1.114,100,1.431,106,0.467,108,0.523,111,0.885,112,0.272,113,1.268,117,0.985,120,1.309,121,1.207,124,0.786,129,2.143,133,0.499,134,1.379,139,2.985,141,0.863,143,1.344,144,1.652,145,1.635,146,1.129,147,2.013,152,2.102,153,0.906,154,0.856,155,1.169,157,2.299,158,0.696,161,2.559,162,0.824,163,0.321,166,0.591,198,0.733,211,2.665,216,0.973,218,1.255,224,4.828,225,0.327,226,6.108,227,3.848,229,1.761,230,0.985,232,3.929,233,3.951,234,6.717,235,1.495,238,2.238,239,3.479,240,4.476,242,7.004,243,2.403,244,2.285,245,1.496,250,1.04,251,5.105,253,1.569,254,2.048,255,0.997,256,1.633,257,1.541,258,1.343,259,2.799,260,3.388,261,2.077,262,3.388,264,2.369,266,2.141,267,7.387,268,0.866,269,2.839,275,4.292,277,2.077,279,2.93,280,1.811,281,0.746,282,2.83,283,0.592,284,2.587,286,3.215,287,2.753,288,1.381,290,2.886,291,4.026,292,2.25,297,4.517,303,0.674,304,2.471,305,0.986,306,0.775,307,0.961,308,1.975,314,0.584,315,1.037,324,1.028,331,1.323,337,2.214,338,2.099,339,0.961,341,1.997,344,1.402,346,2.202,347,3.045,353,2.202,354,0.562,357,1.221,359,2.332,360,2.111,362,1.811,364,0.947,367,1.181,368,2.651,369,2.141,370,2.915,371,1.217,373,1.241,377,2.159,378,4.292,379,3.914,382,2.077,383,1.761,385,0.95,386,1.171,387,1.295,388,0.438,390,2.799,391,1.171,392,1.495,393,0.72,395,3.865,399,1.958,400,2.5,403,0.884,404,1.221,407,1.933,409,4.896,414,0.72,415,2.776,416,4.424,419,1.241,420,3.193,425,1.051,426,2.26,428,0.985,429,3.865,433,2.349,435,3.193,442,2.41,444,0.674,445,1.587,447,3.193,450,1.171,456,0.404,457,3.552,458,3.193,462,1.171,464,3.193,468,1.171,471,3.193,474,0.724,479,0.562,480,0.577,482,0.908,483,3.193,487,2.461,488,1.872,490,1.028,491,0.644,492,2.063,494,3.193,500,0.562,501,3.878,502,1.143,505,0.529,507,1.752,509,2.369,511,1.929,515,1.416,519,1.196,526,1.823,527,0.529,529,2.797,530,2.077,533,1.864,538,1.037,540,1.28,555,2.185,556,2.968,557,2.683,559,2.142,561,1.936,563,3.172,565,1.402,567,1.256,569,1.256,611,1.065,638,2.202,640,2.202,641,4.279,642,4.898,643,2.623,644,0.505,645,0.885,646,4.279,647,0.708,648,1.16,649,4.279,650,1.761,651,2.871,652,1.611,653,4.279,654,1.656,655,2.44,656,2.048,657,1.28,658,3.639,659,4.423,660,1.335,661,1.335,662,2.369,663,3.801,664,5.867,665,2.2,666,5.393,667,1.478,668,1.478,669,2.299,670,1.852,671,2.232,672,2.303,673,1.478,674,1.037,675,2.414,676,1.01,677,0.608,678,0.577,679,0.664,680,1.335,681,1.478,682,1.977,683,1.171,684,1.068,685,1.478,686,3.76,687,1.478,688,1.478,689,1.478,690,1.256,691,4.973,692,2.673,693,1.478,694,1.143,695,1.478,696,4.898,697,2.93,698,1.028,699,0.863,700,3.873,701,2.335,702,1.462,703,1.215,704,0.654,705,0.72,706,0.708,707,0.72,708,0.654,709,0.76,710,2.851,711,0.908,712,1.478,713,1.478,714,1.478,715,1.068,716,1.478,717,0.584,718,0.569,719,0.775,720,0.76,721,1.241,722,1.068,723,2.335,724,3.243,725,3.535,726,2.048,727,1.16,728,0.733,729,1.171,730,0.807,731,2.472,732,1.478,733,0.654,734,0.79,735,0.993,736,0.933,737,0.933,738,1.478,739,3.071,740,0.79,741,2.907,742,1.028,743,0.908,744,1.823,745,0.961,746,2.498,747,1.068,748,3.535,749,0.863,750,0.908,751,0.885,752,1.028,753,1.114,754,1.478,755,0.961,756,1.171,757,1.817,758,0.696,759,1.531,760,1.478,761,1.079,762,0.626,763,0.775,764,0.555,765,1.431,766,6.254,767,0.76,768,5.25,769,3.865,770,4.279,771,4.279,772,1.478,773,1.335,774,3.919,775,1.852,776,3.535,777,4.925,778,4.175,779,3.535,780,3.535,781,0.746,782,2.202,783,1.478,784,3.865,785,3.535,786,1.374,787,1.215,788,4.898,789,4.279,790,3.535,791,3.535,792,3.535,793,2.623,794,3.535,795,2.623,796,3.535,797,3.535,798,3.193,799,3.535,800,3.535,801,2.623,802,3.535,803,1.531,804,3.535,805,2.623,806,5.42,807,2.623,808,2.369,809,3.535,810,2.623,811,2.623,812,2.623,813,3.865,814,2.623,815,2.202,816,2.623,817,2.623,818,2.385,819,0.685,820,5.125,821,4.859,822,0.933,823,1.241,824,1.977,825,1.241,826,2.623,827,1.335,828,1.335,829,1.335,830,1.335,831,3.535,832,3.535,833,4.279,834,4.279,835,4.279,836,4.279,837,4.279,838,4.279,839,4.279,840,4.279,841,0.685,842,1.478,843,1.335,844,1.335,845,1.068,846,1.241,847,1.335,848,1.335,849,1.068,850,1.478,851,1.478,852,1.478,853,1.478,854,1.478,855,1.478,856,1.478,857,1.478,858,1.478,859,1.478,860,1.478,861,3.815,862,1.478,863,1.478,864,1.478,865,1.478,866,1.478,867,1.478,868,1.478,869,1.478,870,1.478,871,1.478,872,1.478,873,1.478,874,1.478,875,1.478,876,1.335,877,1.478,878,3.535,879,5.42,880,1.478,881,3.535,882,1.478,883,1.478,884,1.114,885,1.478,886,3.535,887,5.42,888,1.478,889,3.535,890,1.478,891,1.478,892,2.623,893,1.478,894,2.623,895,1.478,896,2.623,897,1.478,898,2.623,899,1.478,900,2.623,901,1.478,902,2.623,903,1.478,904,2.623,905,1.478,906,2.623,907,1.478,908,1.478,909,1.478,910,1.478,911,1.478,912,1.478,913,1.478,914,1.478,915,1.478,916,1.478,917,1.478,918,1.478,919,1.478,920,4.279,921,4.279,922,2.873,923,1.478,924,1.478,925,1.478,926,1.478,927,2.968,928,0.961,929,4.625,930,0.961,931,0.542,932,1.114,933,0.993,934,5.534,935,1.028,936,1.335,937,0.654,938,2.202,939,4.424,940,1.114,941,0.885,942,0.933,943,2.077,944,1.977,945,0.993,946,0.885,947,0.654,948,0.993,949,1.478,950,1.379,951,1.478,952,0.993,953,1.478,954,1.241,955,0.664,956,0.535,957,0.635,958,0.608,959,0.685,960,0.493]],["t/69",[0,0.4,1,0.396,2,0.262,3,0.409,4,0.138,169,2.799,227,2.168,251,2.222,252,2.344]],["d/69",[]],["k/69",[]],["b/69",[0,0.314,2,0.433,4,0.109,18,1.975,25,1.745,29,0.568,30,2.887,41,0.796,43,1.357,54,1.394,60,0.783,62,1.788,69,0.549,71,2.647,94,1.053,95,1.069,98,0.578,106,0.368,107,0.486,108,0.412,111,0.697,112,0.214,117,3.579,120,1.675,121,0.723,123,1.926,124,0.635,129,1.64,133,0.393,134,0.827,135,1.589,139,1.215,143,1.108,144,1.171,145,1.388,146,1.487,147,1.958,149,0.697,152,1.655,153,0.732,154,0.692,155,1.136,157,0.758,158,0.549,161,3.222,163,0.253,166,1.234,169,2.195,198,1.776,216,0.786,218,0.622,224,4.997,225,0.258,226,4.161,227,2.427,229,1.434,230,1.094,232,3.5,233,3.553,234,7.515,235,4.037,236,7.042,237,1.66,238,2.326,239,1.961,240,4.377,241,1.817,242,5.388,243,2.797,244,2.189,245,1.285,249,0.923,250,1.011,251,2.488,254,1.715,255,2.693,256,1.703,257,1.092,258,1.357,259,2.306,260,2.838,261,1.678,262,1.678,266,1.936,267,6.838,268,0.961,269,2.747,273,1.053,275,4.032,277,1.678,279,2.925,280,1.516,281,1.449,282,0.5,283,0.467,284,2.185,285,1.288,286,2.991,287,2.546,288,0.684,290,3.172,291,3.29,292,1.87,297,4.8,303,0.531,304,2.626,305,1.527,306,0.611,307,0.758,308,1.314,314,0.461,315,0.854,316,4.348,324,2.024,329,1.014,331,1.069,332,0.54,337,1.834,338,1.666,339,1.894,341,2.123,342,0.979,343,2.306,344,2.223,345,0.937,347,3.963,348,0.786,350,7.327,352,0.715,354,2.614,357,0.403,358,1.543,359,2.255,360,0.393,362,0.897,364,0.78,367,0.804,368,2.473,369,1.872,370,2.642,371,0.603,373,0.979,377,1.469,378,3.687,379,3.363,382,1.678,383,1.422,385,0.767,386,0.923,387,0.776,388,0.346,390,2.306,391,0.923,392,1.661,393,0.568,396,4.206,399,1.196,400,1.252,403,1.37,404,1.238,407,2.125,410,3.756,413,1.053,415,3.051,417,3.756,421,2.63,425,1.435,426,2.802,428,1.094,430,2.63,433,0.796,436,3.237,442,2.56,444,0.531,445,2.374,448,2.63,450,0.923,451,0.568,456,0.979,457,3.268,459,2.63,462,0.923,465,2.63,468,0.923,472,2.63,474,0.585,479,0.806,480,1.136,482,0.716,484,2.63,487,2.253,488,2.009,489,1.443,490,0.81,491,0.508,492,1.237,495,2.63,500,0.443,501,2.306,505,0.417,507,2.524,511,1.589,515,0.849,519,1.896,527,1.042,529,1.688,533,2.218,538,0.461,540,0.767,543,0.994,549,1.053,550,8.177,551,5.491,552,0.979,553,1.053,555,2.883,556,1.779,557,2.194,559,2.717,561,2.628,563,2.67,565,2.928,567,2.622,569,2.622,581,0.697,606,1.053,607,1.894,608,1.053,609,2.63,611,1.182,613,0.493,638,1.779,640,1.779,644,0.994,645,0.715,647,1.394,648,0.515,651,0.923,655,1.208,657,1.844,660,1.053,662,1.053,665,0.599,672,1.779,674,0.837,675,1.475,676,0.816,677,0.48,678,0.455,679,0.523,680,1.053,686,4.062,694,0.923,697,1.268,699,0.68,703,1.926,704,0.515,705,0.568,706,0.558,707,0.568,708,0.515,709,2.138,710,1.666,711,2.554,715,0.842,717,0.837,718,0.816,719,1.11,720,0.599,723,1.156,726,1.715,727,0.515,729,0.923,730,0.636,731,2.165,733,0.515,734,0.623,739,2.498,740,0.623,741,0.578,744,1.473,752,1.473,753,4.129,757,0.599,761,0.872,762,0.493,763,0.611,764,0.796,765,1.156,767,0.599,768,2.445,769,1.914,773,1.053,774,3.15,775,1.526,777,2.445,778,1.469,781,1.808,782,1.779,784,1.914,786,0.611,820,5.838,821,5.246,841,1.66,843,1.053,844,1.053,845,0.842,847,1.053,848,1.053,849,0.842,927,2.445,928,0.758,929,3.906,930,0.758,931,0.427,932,0.879,933,0.783,934,4.275,935,0.81,936,1.053,937,1.839,938,1.779,939,2.63,940,0.879,941,1.268,942,1.338,943,2.306,944,1.597,946,0.697,950,0.827,952,1.955,954,0.979,955,0.523,956,0.422,957,0.5,958,0.48,960,0.389,961,3.583,962,1.779,963,0.736,964,1.166,965,1.776,966,6.021,967,1.166,968,0.979,969,0.65,970,0.665,971,2.48,972,2.63,973,2.371,974,0.599,975,1.166,976,1.166,977,1.166,978,1.166,979,1.914,980,1.237,981,1.497,982,1.166,983,1.053,984,2.63,985,0.842,986,1.268,987,2.838,988,1.166,989,1.053,990,1.156,991,1.894,992,3.277,993,3.583,994,2.262,995,3.237,996,3.678,997,1.166,998,0.736,999,1.053,1000,1.166,1001,0.979,1002,2.912,1003,2.119,1004,1.166,1005,4.616,1006,0.783,1007,4.221,1008,1.469,1009,3.784,1010,4.657,1011,1.557,1012,1.053,1013,2.625,1014,2.488,1015,1.166,1016,1.166,1017,1.166,1018,1.166,1019,1.166,1020,1.166,1021,1.053,1022,1.166,1023,0.923,1024,0.879,1025,1.166,1026,1.378,1027,1.166,1028,0.979,1029,0.923,1030,0.842,1031,1.166,1032,0.879,1033,0.923,1034,0.81,1035,0.879,1036,1.268,1037,1.053,1038,0.432,1039,1.742,1040,1.166,1041,0.979,1042,0.879,1043,2.306,1044,1.166,1045,1.053,1046,1.166,1047,1.166,1048,1.166,1049,0.879,1050,2.119,1051,2.912,1052,3.583,1053,2.119,1054,2.119,1055,1.166,1056,2.119,1057,1.166,1058,1.166,1059,1.166,1060,2.63,1061,2.904,1062,2.63,1063,2.63,1064,1.166,1065,2.912,1066,0.758,1067,1.156,1068,1.473,1069,3.237,1070,0.923,1071,1.166,1072,0.923,1073,1.053,1074,1.166,1075,2.119,1076,2.119,1077,0.65,1078,4.159,1079,2.119,1080,2.119,1081,4.159,1082,1.166,1083,1.166,1084,1.166,1085,2.119,1086,2.119,1087,0.86,1088,1.914,1089,3.583,1090,1.914,1091,2.119,1092,1.166,1093,2.119,1094,1.166,1095,2.119,1096,2.119,1097,1.166,1098,1.166,1099,1.053,1100,1.166,1101,1.166,1102,0.923,1103,1.166,1104,0.879,1105,1.166,1106,0.783,1107,0.923,1108,0.665,1109,0.979,1110,0.923,1111,2.912,1112,3.583,1113,2.912,1114,2.912,1115,3.583,1116,3.583,1117,3.583,1118,4.657,1119,3.583,1120,3.583,1121,3.583,1122,3.583,1123,1.166,1124,1.166,1125,1.166,1126,1.166,1127,1.166,1128,1.166,1129,1.166,1130,1.166,1131,1.166,1132,1.166,1133,1.166,1134,1.166,1135,1.166,1136,1.166,1137,1.166,1138,1.166,1139,1.166,1140,1.166,1141,1.166,1142,1.166,1143,1.166,1144,1.166,1145,1.166,1146,1.166,1147,1.166,1148,1.166,1149,0.979,1150,1.166,1151,1.166,1152,1.166,1153,1.166,1154,1.166,1155,1.166,1156,1.166,1157,1.166,1158,1.166,1159,1.166,1160,0.979,1161,1.166,1162,1.166,1163,1.166,1164,1.166,1165,1.166,1166,1.166,1167,1.166,1168,1.166,1169,1.166,1170,2.119,1171,1.166,1172,2.119,1173,1.166,1174,2.119,1175,1.166,1176,2.119,1177,1.166,1178,2.119,1179,1.166,1180,2.119,1181,1.166,1182,2.119,1183,1.166,1184,2.119,1185,1.166,1186,2.119,1187,1.166,1188,2.119,1189,1.166,1190,2.119,1191,1.166,1192,2.119,1193,1.166,1194,2.119,1195,1.166,1196,2.119,1197,1.166,1198,2.119,1199,1.166,1200,2.119,1201,1.166,1202,2.119,1203,1.166,1204,2.119,1205,1.166,1206,2.119,1207,1.166,1208,2.119,1209,1.166,1210,2.119,1211,1.166,1212,2.119,1213,1.166,1214,2.119,1215,1.166,1216,2.119,1217,1.166,1218,2.119,1219,1.166,1220,2.119,1221,1.166,1222,2.119,1223,1.166,1224,2.119,1225,1.166,1226,2.119,1227,1.166,1228,2.119,1229,1.166,1230,2.119,1231,1.166,1232,2.119,1233,1.166,1234,1.166,1235,1.166,1236,1.166,1237,1.166,1238,1.166,1239,1.166,1240,1.166,1241,1.166,1242,1.166,1243,1.166,1244,1.166,1245,1.166,1246,1.166,1247,1.166,1248,1.166,1249,1.166,1250,1.166,1251,0.879,1252,1.166,1253,1.166,1254,1.166,1255,1.166,1256,1.166,1257,3.583,1258,2.63,1259,3.583,1260,2.119,1261,1.166,1262,1.166,1263,1.166,1264,1.166,1265,1.166,1266,1.166,1267,1.166,1268,1.166,1269,1.053,1270,1.166,1271,0.697,1272,1.166,1273,0.697,1274,0.758,1275,1.166,1276,0.923,1277,0.523,1278,0.979,1279,1.166,1280,1.166,1281,1.166,1282,0.716]],["t/70",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,216,1.473,758,1.87,1283,1.84]],["d/70",[]],["k/70",[]],["b/70",[4,0.131,18,1.886,30,1.841,39,2.357,83,0.958,95,1.772,124,0.62,133,1.185,147,0.887,152,0.588,158,5.326,163,0.449,166,0.791,225,0.457,229,0.989,232,3.528,238,1.842,243,0.989,266,2.899,268,1.159,269,3.426,279,2.786,283,0.828,290,2.679,304,1.213,305,0.979,317,2.002,324,7.025,359,2.737,364,0.941,393,1.007,399,0.69,400,3.923,403,0.517,415,1.78,426,1.445,442,0.613,444,2.086,457,1.906,487,0.626,488,1.862,511,2.497,513,2.446,515,2.16,517,3.072,519,2.086,521,2.609,527,1.256,529,0.84,543,1.199,555,3.738,557,3.531,559,3.693,561,3.141,563,2.52,565,2.882,567,2.19,569,2.581,572,2.81,575,2.888,578,3.62,581,2.737,584,4.065,586,3.304,588,3.304,590,3.147,592,3.449,594,3.449,596,3.449,599,3.304,601,3.18,603,3.304,605,3.449,611,2.451,648,1.552,708,1.552,727,0.914,733,2.67,758,2.843,761,0.851,945,2.357,946,1.237,1024,4.065,1038,0.767,1087,2.99,1284,9.004,1285,4.575,1286,5.276,1287,4.575,1288,5.07,1289,4.575,1290,4.575,1291,4.575,1292,4.575,1293,4.575,1294,6.999,1295,6.039,1296,4.575,1297,6.039,1298,6.039,1299,4.575,1300,6.039,1301,4.575,1302,6.039,1303,4.575,1304,6.039,1305,4.575,1306,6.039,1307,6.039,1308,4.575,1309,6.039,1310,5.119,1311,6.039,1312,6.039,1313,3.511,1314,4.575,1315,1.306,1316,4.575,1317,3.841,1318,2.068,1319,0.863,1320,1.559,1321,2.068,1322,1.638,1323,1.638,1324,1.868,1325,1.868,1326,2.068,1327,7.888,1328,8.957,1329,2.068,1330,2.068,1331,2.068,1332,2.068,1333,2.068,1334,2.068,1335,2.068,1336,2.068,1337,2.068,1338,2.068,1339,2.068,1340,2.068,1341,2.068,1342,2.068,1343,2.068,1344,2.068,1345,2.068,1346,2.068,1347,2.068,1348,2.068,1349,2.068,1350,2.068,1351,2.068,1352,2.068,1353,2.068,1354,2.068,1355,2.068,1356,2.068,1357,2.068,1358,2.068,1359,3.449,1360,2.068,1361,3.304,1362,2.068,1363,3.072,1364,2.068,1365,2.068,1366,4.575,1367,2.068,1368,4.132,1369,2.068,1370,4.575,1371,2.068,1372,4.575,1373,2.068,1374,5.392,1375,2.068,1376,4.575,1377,2.068,1378,5.392,1379,2.068,1380,2.068,1381,3.841,1382,2.068,1383,6.564,1384,2.068,1385,6.039,1386,2.068,1387,6.039,1388,2.068,1389,5.454,1390,2.068,1391,6.039,1392,2.068,1393,6.039,1394,2.068,1395,4.948,1396,2.068,1397,2.068,1398,2.068,1399,2.068,1400,1.868,1401,2.068,1402,2.068,1403,2.068,1404,2.068,1405,2.068,1406,2.068,1407,2.068,1408,2.068,1409,1.868,1410,2.068,1411,2.068,1412,2.068,1413,2.068,1414,2.068,1415,2.068,1416,2.068,1417,2.068,1418,2.068,1419,1.868,1420,2.068,1421,2.068,1422,2.068,1423,2.068,1424,2.068,1425,2.068,1426,2.068,1427,2.068,1428,2.068,1429,2.068,1430,2.068,1431,2.068,1432,2.068,1433,2.068,1434,2.068,1435,2.068,1436,2.068,1437,2.068,1438,2.068,1439,2.068,1440,2.068,1441,2.068,1442,2.068,1443,2.068,1444,2.068,1445,2.068,1446,2.068,1447,2.068,1448,2.068,1449,2.068,1450,2.068,1451,2.068,1452,2.068,1453,2.068,1454,2.068,1455,2.068,1456,2.068,1457,2.068,1458,2.068,1459,2.068,1460,2.068,1461,2.068,1462,2.068,1463,2.068,1464,2.068,1465,2.068,1466,2.068,1467,2.068,1468,2.068,1469,2.068,1470,2.068,1471,2.068,1472,2.068,1473,2.068,1474,2.068,1475,2.068,1476,2.068,1477,2.068,1478,2.068,1479,2.068,1480,2.068,1481,2.068,1482,2.068,1483,2.068,1484,2.068,1485,2.068,1486,2.068,1487,2.068,1488,2.068,1489,2.068,1490,2.068,1491,2.068,1492,2.068,1493,2.068,1494,2.068,1495,2.068,1496,2.068,1497,2.068,1498,2.068,1499,2.068,1500,2.068,1501,2.068,1502,2.068,1503,2.068,1504,2.068,1505,2.068,1506,2.068,1507,2.068,1508,2.068,1509,2.068,1510,2.068,1511,2.068,1512,2.068,1513,2.068,1514,1.868,1515,2.068,1516,2.068,1517,2.068,1518,2.068,1519,2.068,1520,1.559,1521,2.068,1522,2.068,1523,2.068,1524,2.068,1525,2.068,1526,2.068,1527,2.068,1528,2.068,1529,2.068,1530,2.068,1531,2.068,1532,2.068,1533,2.068,1534,2.068,1535,2.068,1536,2.068,1537,2.068,1538,2.068,1539,2.068,1540,2.068,1541,2.068,1542,2.068,1543,2.068,1544,2.068,1545,2.068,1546,2.068,1547,2.068,1548,2.068,1549,2.068,1550,2.068,1551,2.068,1552,2.068,1553,2.068,1554,2.068,1555,2.068,1556,2.068,1557,2.068,1558,2.068,1559,2.068,1560,2.068,1561,2.068,1562,2.068,1563,2.068,1564,2.068,1565,2.068,1566,2.068,1567,2.068,1568,2.068,1569,2.068,1570,2.068,1571,2.068,1572,2.068,1573,2.068,1574,2.068,1575,2.068,1576,2.068,1577,2.068,1578,2.068,1579,2.068,1580,2.068,1581,2.068,1582,2.068,1583,2.068,1584,2.068,1585,2.068,1586,2.068,1587,2.068,1588,2.068,1589,2.068,1590,2.068,1591,2.068,1592,2.068,1593,2.068,1594,2.068,1595,2.068,1596,2.068,1597,2.068,1598,2.068,1599,2.068,1600,2.068,1601,2.068,1602,2.068,1603,5.875,1604,2.068,1605,2.068,1606,8.387,1607,2.068,1608,2.068,1609,2.068,1610,5.392,1611,2.068,1612,6.039,1613,3.748,1614,2.068,1615,2.068,1616,4.74,1617,2.068,1618,2.068,1619,2.068,1620,3.511,1621,2.068,1622,2.068,1623,2.068,1624,3.927,1625,2.068,1626,2.068,1627,2.068,1628,4.87,1629,2.068,1630,2.068,1631,2.068,1632,2.068,1633,5.392,1634,2.068,1635,2.068,1636,5.875,1637,2.068,1638,2.441,1639,2.068,1640,2.647,1641,2.068,1642,3.511,1643,2.068,1644,1.868,1645,2.068,1646,2.068,1647,1.389,1648,3.613,1649,2.068,1650,2.068,1651,2.068,1652,2.068,1653,2.068,1654,2.068,1655,2.068,1656,2.068,1657,2.068,1658,2.068,1659,2.068,1660,2.068,1661,3.511,1662,2.068,1663,2.068,1664,2.78,1665,2.002,1666,2.948,1667,2.948,1668,2.647,1669,1.877,1670,3.511]],["t/71",[0,0.4,1,0.396,2,0.262,3,0.619,4,0.138,407,1.148,645,1.253,1671,2.415]],["d/71",[]],["k/71",[]],["b/71",[2,0.199,4,0.13,8,1.293,11,0.709,14,3.597,15,2.719,18,2.944,25,1.972,29,0.547,30,0.699,31,1.72,37,0.69,39,2.338,41,1.521,44,1.588,55,0.943,65,2.557,66,2.255,69,0.529,71,1.881,77,0.754,81,4.9,83,1.308,95,0.567,98,2.655,99,1.479,100,1.9,101,1.479,104,5.899,105,3.813,106,1.8,107,1.178,108,0.397,110,1.896,111,2.084,112,1.28,117,3.019,119,1.015,120,0.864,121,2.05,123,2.104,124,0.846,129,2.584,132,2.165,133,2.628,134,3.038,139,2.076,141,0.656,142,2.236,143,0.779,144,2.153,145,3.602,146,0.654,147,2.538,148,1.544,149,1.689,152,3.021,153,2.074,154,0.367,155,0.952,156,4.527,158,1.64,161,2.492,162,0.626,163,0.244,166,0.636,167,0.626,183,2.55,186,0.847,198,1.015,202,1.73,204,2.718,214,0.847,216,3.334,225,0.248,226,0.73,227,0.656,229,0.577,230,1.706,236,2.633,237,1.613,238,2.115,241,0.438,243,2.651,244,2.019,245,2.498,248,0.781,249,1.764,250,1.302,254,0.538,255,2.389,256,0.7,257,0.742,266,2.718,268,0.676,269,3.207,279,2.894,282,4.06,283,1.622,284,0.422,285,0.906,287,1.494,290,3.11,291,0.538,292,0.384,297,0.709,303,2.071,305,1.821,307,0.73,308,1.984,311,3.236,314,0.444,315,1.46,322,0.847,324,0.781,337,1.49,338,0.402,340,1.375,341,1.589,344,0.6,345,0.906,348,2.72,354,1.892,357,0.388,359,2.438,360,0.953,364,2.595,367,0.31,368,1.674,394,0.504,399,3.244,401,0.781,403,1.426,404,1.203,407,2.019,414,1.696,415,2.874,425,4.059,426,2.261,428,1.706,433,1.06,440,2.515,441,0.847,442,2.851,444,0.512,445,0.417,451,0.997,456,0.307,470,0.567,474,0.31,479,1.074,480,1.58,482,0.69,487,2.396,488,2.334,491,1.23,500,1.074,505,0.733,515,1.993,527,0.402,529,0.832,533,1.517,538,2.374,540,3.153,543,0.699,547,1.226,555,3.203,557,0.676,561,0.444,563,0.469,581,1.226,611,1.146,615,1.509,644,0.699,645,2.12,647,0.981,648,1.791,650,0.754,651,2.167,652,0.69,654,1.293,655,1.168,656,0.538,657,1.466,669,0.73,670,0.589,672,2.282,674,0.444,676,2.824,677,1.433,690,0.538,703,0.52,706,0.538,708,0.497,710,1.246,717,0.444,718,1.56,719,0.589,722,1.479,723,4.001,724,0.672,726,2.382,727,0.497,728,1.015,729,0.89,730,2.479,731,0.444,733,2.369,734,1.095,735,1.896,736,2.199,737,1.293,741,0.557,749,2.652,750,1.258,752,0.781,755,1.332,757,0.577,758,2.139,759,2.652,763,1.825,764,2.14,765,1.118,774,2.267,781,0.567,787,0.949,803,0.656,819,3.025,820,0.613,821,0.577,884,0.847,922,1.375,931,1.276,937,1.791,941,0.672,947,2.887,950,0.799,956,0.742,960,1.352,965,0.557,973,1.986,974,1.451,981,1.79,990,1.118,994,1.293,1009,2.265,1023,0.89,1026,0.73,1030,1.479,1034,0.781,1035,0.847,1042,0.847,1043,3.207,1049,2.625,1068,0.781,1077,4.897,1104,2.129,1106,3.597,1107,4.243,1108,4.709,1109,0.943,1110,2.236,1149,0.943,1274,0.73,1277,1.268,1278,0.943,1282,2.139,1283,0.949,1284,3.146,1319,0.469,1520,2.129,1624,0.73,1664,1.622,1665,0.64,1667,1.72,1669,0.6,1671,2.265,1672,2.824,1673,1.85,1674,4.543,1675,2.824,1676,2.824,1677,2.824,1678,2.824,1679,2.824,1680,2.824,1681,3.483,1682,3.483,1683,4.543,1684,5.699,1685,2.824,1686,2.824,1687,2.824,1688,2.048,1689,2.129,1690,2.048,1691,2.824,1692,2.048,1693,4.543,1694,2.048,1695,2.824,1696,2.048,1697,2.364,1698,1.85,1699,2.824,1700,4.103,1701,4.05,1702,4.543,1703,2.824,1704,4.05,1705,1.123,1706,2.824,1707,2.048,1708,2.824,1709,0.811,1710,5.171,1711,5.806,1712,5.482,1713,4.84,1714,1.123,1715,1.123,1716,0.626,1717,1.544,1718,1.293,1719,1.123,1720,3.207,1721,0.89,1722,5.358,1723,2.364,1724,1.72,1725,2.925,1726,1.015,1727,5.094,1728,1.015,1729,0.754,1730,0.69,1731,2.258,1732,1.015,1733,1.123,1734,1.544,1735,2.048,1736,1.293,1737,2.048,1738,2.925,1739,5.482,1740,2.335,1741,1.123,1742,2.758,1743,1.123,1744,1.123,1745,0.709,1746,1.123,1747,2.236,1748,1.123,1749,1.375,1750,1.015,1751,0.811,1752,1.123,1753,1.85,1754,0.69,1755,1.123,1756,0.847,1757,2.824,1758,1.123,1759,2.824,1760,1.48,1761,1.72,1762,2.625,1763,1.123,1764,1.544,1765,1.123,1766,1.123,1767,1.015,1768,2.236,1769,2.824,1770,4.05,1771,0.73,1772,3.055,1773,1.015,1774,2.265,1775,0.89,1776,2.37,1777,2.37,1778,1.123,1779,0.943,1780,1.123,1781,3.483,1782,0.89,1783,1.123,1784,2.37,1785,1.123,1786,1.015,1787,5.587,1788,2.292,1789,2.515,1790,0.754,1791,1.123,1792,1.123,1793,0.754,1794,2.048,1795,1.123,1796,1.123,1797,0.847,1798,0.847,1799,1.123,1800,0.89,1801,0.89,1802,1.123,1803,0.754,1804,0.89,1805,1.123,1806,1.015,1807,0.89,1808,1.332,1809,2.048,1810,1.015,1811,0.73,1812,2.265,1813,2.824,1814,1.123,1815,2.048,1816,0.73,1817,0.89,1818,2.824,1819,2.129,1820,1.479,1821,1.622,1822,2.048,1823,0.73,1824,1.123,1825,1.896,1826,2.236,1827,3.207,1828,1.123,1829,3.383,1830,0.672,1831,2.824,1832,1.544,1833,1.123,1834,2.048,1835,4.975,1836,0.89,1837,2.37,1838,4.975,1839,1.123,1840,1.123,1841,1.123,1842,1.123,1843,0.709,1844,0.781,1845,1.123,1846,0.811,1847,1.123,1848,1.123,1849,2.824,1850,2.048,1851,2.925,1852,0.73,1853,1.123,1854,1.544,1855,1.123,1856,0.847,1857,2.048,1858,1.123,1859,1.123,1860,1.123,1861,1.123,1862,0.811,1863,1.015,1864,1.123,1865,2.954,1866,0.754,1867,3.483,1868,6.005,1869,0.943,1870,2.139,1871,4.05,1872,0.781,1873,0.69,1874,1.123,1875,4.05,1876,1.015,1877,0.847,1878,1.015,1879,1.015,1880,1.123,1881,2.048,1882,1.123,1883,1.123,1884,8.472,1885,1.123,1886,1.123,1887,1.123,1888,1.123,1889,1.123,1890,1.123,1891,1.123,1892,1.123,1893,1.123,1894,1.123,1895,1.123,1896,1.123,1897,1.123,1898,1.123,1899,1.123,1900,1.123,1901,1.123,1902,1.123,1903,1.123,1904,1.123,1905,1.123,1906,1.123,1907,1.123,1908,1.123,1909,1.123,1910,1.123,1911,1.123,1912,1.123,1913,1.123,1914,1.123,1915,1.123,1916,4.543,1917,2.048,1918,2.048,1919,2.048,1920,3.813,1921,2.048,1922,4.543,1923,2.824,1924,4.543,1925,2.048,1926,8.119,1927,6.156,1928,8.989,1929,8.856,1930,2.048,1931,2.048,1932,2.048,1933,2.048,1934,2.048,1935,2.048,1936,2.048,1937,2.048,1938,2.048,1939,2.048,1940,2.048,1941,2.048,1942,2.048,1943,2.048,1944,2.048,1945,2.048,1946,2.048,1947,2.048,1948,2.048,1949,2.048,1950,2.048,1951,2.048,1952,2.048,1953,2.048,1954,2.048,1955,2.048,1956,2.048,1957,2.048,1958,2.048,1959,2.048,1960,2.048,1961,2.048,1962,5.351,1963,3.483,1964,3.483,1965,1.85,1966,2.048,1967,1.479,1968,4.543,1969,1.622,1970,1.85,1971,2.048,1972,2.824,1973,1.85,1974,4.543,1975,2.048,1976,2.048,1977,2.048,1978,1.85,1979,6.758,1980,1.123,1981,2.048,1982,2.048,1983,2.048,1984,2.048,1985,2.048,1986,2.048,1987,3.25,1988,1.246,1989,2.048,1990,0.949,1991,2.048,1992,2.048,1993,0.906,1994,2.048,1995,2.048,1996,1.72,1997,2.048,1998,2.625,1999,1.72,2000,2.048,2001,1.123,2002,1.123,2003,1.123,2004,1.123,2005,1.123,2006,1.123,2007,1.123,2008,0.811,2009,1.123,2010,0.847,2011,1.123,2012,0.847,2013,1.123,2014,0.89,2015,0.89,2016,0.709,2017,1.123,2018,1.123,2019,0.781,2020,1.123,2021,1.123,2022,1.123,2023,1.123,2024,2.048,2025,3.483,2026,2.048,2027,3.34,2028,2.048,2029,2.048,2030,1.424,2031,2.048,2032,0.89,2033,1.123,2034,1.123,2035,1.123,2036,1.015,2037,0.69,2038,1.541,2039,2.048,2040,2.048,2041,2.048,2042,1.123,2043,1.123,2044,0.69,2045,0.69,2046,0.943,2047,1.123,2048,1.896,2049,1.123,2050,1.123,2051,1.123,2052,1.123,2053,1.123,2054,2.048,2055,2.048,2056,1.85,2057,1.734,2058,0.811,2059,1.123,2060,1.123,2061,1.123,2062,1.123,2063,1.015,2064,1.123,2065,0.847,2066,2.048,2067,1.123,2068,3.483,2069,0.73,2070,2.048,2071,2.824,2072,1.226,2073,0.64,2074,2.048,2075,1.123,2076,1.123,2077,1.123,2078,1.123,2079,1.123,2080,1.123,2081,1.123,2082,1.015,2083,0.811,2084,0.577,2085,1.123,2086,1.015,2087,1.015,2088,1.015,2089,0.6,2090,0.89,2091,1.123,2092,1.015,2093,0.781,2094,0.943,2095,0.943,2096,1.123,2097,1.015,2098,1.123,2099,1.123,2100,0.943,2101,1.123,2102,1.123,2103,1.123,2104,1.123,2105,1.123,2106,1.123,2107,1.622,2108,1.123]],["t/72",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,214,3.476]],["d/72",[]],["k/72",[]],["b/72",[4,0.311,44,3.81,71,2.758,124,2.503,139,3.487,143,3.696,145,2.789,163,1.814,202,2.698,225,1.848,238,2.432,268,3.208,269,3.281,279,2.174,315,2.452,317,4.765,318,8.139,367,2.307,672,3.396,674,3.303,694,3.641,764,3.65,965,4.141,2038,4.561,2057,5.132,2109,8.357,2110,7.549]],["t/73",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,186,3.476]],["d/73",[]],["k/73",[]],["b/73",[143,3.785,145,2.907,163,1.89,225,1.926,238,2.49,367,2.404,672,3.478,674,3.443,2110,7.867,2111,8.71]],["t/74",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,112,0.847]],["d/74",[]],["k/74",[]],["b/74",[1,0.372,4,0.274,18,2.109,71,3.163,106,1.695,107,2.728,112,1.455,113,1.938,119,2.659,120,2,121,1.191,124,2.506,132,1.865,133,2.824,144,2.067,145,1.164,146,2.088,147,2.379,154,1.139,155,2.381,163,0.757,195,2.63,202,2.701,218,2.324,225,0.772,228,1.591,229,1.511,232,3.523,238,1.982,239,2.067,243,1.511,244,2.912,245,1.481,249,1.52,250,2.29,256,2.563,257,2.423,258,2.467,265,3.295,266,2.533,268,1.771,269,3.179,279,2.796,280,2.767,281,2.559,282,2.304,284,1.31,285,2.372,287,3.035,288,2.369,290,2.706,292,1.832,303,1.591,304,2.736,305,2.847,306,1.828,308,2.643,315,1.024,332,1.616,337,1.045,338,2.993,341,1.114,345,2.891,348,2.425,352,2.674,354,1.327,357,1.205,358,1.294,359,2.006,362,1.476,364,2.471,365,1.456,367,0.963,368,2.776,369,1.841,370,2.995,371,1.86,384,3.059,385,2.657,387,1.966,388,1.938,389,3.875,394,1.566,402,3.4,403,2.433,405,1.643,407,1.659,426,1.102,433,1.31,442,1.591,444,1.591,445,2.939,456,0.953,469,2.807,470,1.76,474,2.546,475,1.989,476,1.989,477,1.436,478,2.087,479,2.041,480,2.551,487,1.624,488,1.853,498,1.699,499,1.699,500,1.327,502,1.52,526,2.425,529,1.416,533,2.337,540,3.41,543,1.832,547,3.912,557,1.771,559,1.379,575,2.203,607,2.269,613,2.271,615,4.931,647,1.67,663,2.807,672,2.284,678,1.361,726,1.67,728,2.659,741,2.659,767,1.794,841,2.486,946,2.087,947,1.543,971,1.699,1011,1.865,1038,2.939,1067,2.928,1359,2.63,1740,3.773,1756,2.63,1797,4.045,1843,2.203,1869,2.929,1873,3.295,1988,1.919,1993,2.372,1998,2.63,2084,1.794,2112,2.63,2113,2.63,2114,2.342,2115,2.143,2116,2.52,2117,7.156,2118,6.63,2119,8.124,2120,7.87,2121,7.556,2122,7.34,2123,6.538,2124,9.287,2125,7.34,2126,7.156,2127,7.156,2128,7.34,2129,7.34,2130,3.602,2131,3.489,2132,3.489,2133,3.489,2134,3.21,2135,3.489,2136,4.235,2137,3.489,2138,3.489,2139,3.489,2140,2.342,2141,2.63,2142,2.342,2143,3.151,2144,4.504,2145,3.151,2146,3.489,2147,3.151,2148,2.425,2149,6.324,2150,3.151,2151,3.151,2152,3.489,2153,5.905,2154,3.489,2155,2.63,2156,2.63,2157,3.489,2158,2.143,2159,3.489,2160,3.489,2161,2.763,2162,3.151,2163,1.794,2164,3.451,2165,7.34,2166,6.63,2167,5.366,2168,4.846,2169,4.846,2170,3.21,2171,4.846,2172,5.366,2173,3.489,2174,3.151,2175,2.763,2176,3.489,2177,3.489,2178,3.151,2179,3.489,2180,4.846,2181,5.366,2182,3.489,2183,3.151,2184,3.489,2185,3.489,2186,3.489,2187,3.151,2188,3.489,2189,2.929,2190,3.489,2191,3.151,2192,3.489,2193,3.489,2194,6.293,2195,3.489,2196,3.489,2197,3.151,2198,3.489,2199,3.489,2200,3.151,2201,3.489,2202,3.151,2203,2.269,2204,3.489,2205,3.489,2206,3.489,2207,2.929,2208,3.489,2209,3.151,2210,3.489,2211,3.489,2212,2.763,2213,3.489,2214,3.489,2215,1.643,2216,2.929,2217,3.151,2218,3.151,2219,3.489,2220,3.151,2221,3.151,2222,3.151,2223,3.489,2224,3.489,2225,3.489,2226,3.489,2227,3.489,2228,3.489,2229,2.763,2230,3.489,2231,3.489,2232,2.929,2233,3.151,2234,4.846,2235,3.489,2236,3.489,2237,3.489,2238,3.151,2239,3.489,2240,3.489,2241,3.151]],["t/75",[0,0.354,1,0.546,2,0.232,3,0.362,4,0.122,195,2.478,256,0.814,403,0.822,2115,2.018,2116,2.374]],["d/75",[]],["k/75",[]],["b/75",[1,0.485,4,0.094,11,0.618,15,0.657,18,2.45,25,0.476,30,1.994,35,0.884,39,0.657,41,2.288,43,0.319,44,0.823,52,0.775,54,1.202,60,0.657,62,1.108,66,0.623,69,1.182,71,1.736,73,2.011,78,0.884,81,0.523,82,2.011,89,2.355,95,0.911,98,0.485,100,0.534,105,0.821,106,0.309,107,0.753,108,0.346,112,0.18,113,0.29,117,0.943,119,1.245,120,2.848,121,0.858,123,1.913,124,1.096,129,0.541,132,0.523,133,1.235,134,1.219,139,2.195,143,0.955,144,1.163,145,1.378,146,2.15,147,1.149,149,1.08,152,1.915,153,0.623,154,0.82,155,1.129,156,0.737,161,0.35,162,0.545,163,0.678,166,0.566,195,1.893,202,0.583,216,0.669,225,0.216,229,1.781,230,1.849,232,3.346,234,1.746,235,1.029,237,0.836,238,2.185,239,0.377,240,0.764,241,2.698,243,2.903,244,2.021,245,0.693,249,1.361,250,0.439,256,2.355,257,0.66,258,1.023,266,1.03,268,0.596,269,2.493,279,2.944,280,1.063,281,1.294,282,2.113,283,0.392,284,0.678,287,2.47,288,0.583,290,2.877,292,1.553,295,0.707,297,2.607,300,0.433,304,1.079,305,1.628,306,1.917,307,1.173,308,2.524,311,3.019,314,0.993,315,1.787,317,3.474,331,0.494,337,1.362,338,0.646,341,2.208,343,0.775,344,1.343,352,1.235,354,1.872,357,0.338,358,1.159,359,2.616,360,1.235,363,0.523,364,0.483,367,1.359,368,1.928,369,1.716,371,0.513,385,2.366,387,0.92,388,0.535,392,0.558,394,0.439,399,2.416,400,1.091,403,0.628,404,1.7,407,1.72,408,1.316,414,2.215,415,3.125,426,2.615,428,2.961,433,0.943,442,2.936,444,2.074,445,2.498,451,1.223,456,1.129,457,0.638,474,1.14,477,1.872,479,0.372,487,1.377,488,1.079,489,0.894,491,3.012,500,0.372,503,1.814,505,1.477,507,1.813,511,1.371,515,2.533,519,1.668,526,1.254,527,0.646,529,1.847,533,1.094,538,0.387,540,3.52,542,1.917,543,0.334,547,6.497,555,2.828,557,2.962,559,3.272,561,2.5,563,2.955,565,3.257,567,2.796,569,2.663,590,0.571,613,2.083,615,3.494,644,1.553,645,1.394,647,1.202,648,0.798,657,2.014,658,1.211,663,4.049,665,0.503,669,1.173,670,3.712,671,2.607,672,2.923,674,0.713,675,0.403,676,0.695,677,0.403,678,0.704,679,0.439,683,0.775,684,0.707,686,1.705,691,4.06,692,4.565,698,0.68,699,4.537,703,1.163,704,0.433,706,0.468,707,0.476,708,0.433,709,0.928,710,1.627,711,1.542,715,0.707,717,1.798,718,1.752,719,1.917,720,0.928,724,1.08,727,0.433,728,1.813,731,2.661,733,1.111,734,1.956,735,0.657,737,1.586,739,1.078,740,3.122,741,0.894,746,0.571,749,1.466,750,1.108,751,4.137,752,0.68,756,0.775,757,0.503,761,1.285,762,0.414,763,2.164,764,0.678,765,1.705,767,0.928,774,2.997,778,2.295,781,0.911,819,3.028,820,0.534,821,0.928,822,0.618,841,1.163,849,0.707,928,0.636,931,0.661,933,1.211,937,0.433,941,0.585,942,1.586,945,1.211,947,0.433,948,0.657,950,0.704,955,0.439,956,0.909,957,0.775,958,0.403,959,0.453,960,1.755,965,0.894,969,2.536,970,2.086,972,0.884,973,1.432,974,1.291,986,0.585,990,0.985,992,0.585,995,0.884,998,0.618,1011,0.523,1026,1.173,1030,0.707,1032,0.737,1034,0.68,1037,1.63,1038,3.133,1039,4.578,1066,1.173,1067,0.534,1087,0.397,1099,0.884,1108,2.999,1274,0.636,1277,2.498,1310,0.68,1666,2.108,1668,0.737,1669,0.523,1718,2.607,1728,0.884,1730,0.601,1739,0.821,1740,3.867,1754,0.601,1756,5.944,1760,0.946,1774,1.633,1784,1.515,1789,1.303,1804,0.775,1808,1.633,1832,1.36,1843,0.618,1851,2.642,1862,0.707,1866,1.211,1869,0.821,1873,1.108,1988,0.646,1993,4.533,1998,7.019,2016,0.618,2045,1.918,2048,1.686,2069,2.031,2072,0.585,2073,0.558,2084,0.503,2089,0.523,2116,1.814,2117,1.63,2118,0.884,2119,2.821,2120,2.269,2121,1.63,2124,5.904,2126,1.63,2127,1.63,2132,6.686,2134,1.08,2136,3.599,2140,0.657,2141,3.113,2142,0.657,2143,0.884,2144,5.309,2145,0.884,2147,4.108,2148,3.162,2149,4.959,2150,2.269,2151,0.884,2153,6.245,2163,0.928,2164,2.144,2166,3.73,2168,1.63,2169,1.63,2170,1.08,2171,0.884,2174,2.269,2178,2.269,2183,4.447,2187,2.269,2191,3.304,2194,2.983,2197,4.108,2200,0.884,2202,2.269,2207,2.108,2209,2.269,2212,1.429,2217,0.884,2218,1.63,2220,0.884,2221,0.884,2222,1.63,2229,0.775,2232,0.821,2233,1.63,2234,3.73,2238,1.63,2241,0.884,2242,7.523,2243,0.978,2244,1.746,2245,0.821,2246,0.884,2247,0.978,2248,6.026,2249,5.26,2250,3.124,2251,1.805,2252,2.512,2253,7.992,2254,4.923,2255,2.171,2256,1.814,2257,8.093,2258,0.978,2259,0.884,2260,0.821,2261,6.95,2262,1.805,2263,1.429,2264,2.721,2265,2.871,2266,6.093,2267,0.978,2268,0.978,2269,0.978,2270,0.978,2271,0.978,2272,0.978,2273,0.707,2274,2.721,2275,2.821,2276,1.254,2277,0.978,2278,0.978,2279,0.978,2280,0.978,2281,3.921,2282,0.978,2283,1.814,2284,0.978,2285,1.805,2286,0.978,2287,0.978,2288,1.173,2289,2.958,2290,2.512,2291,2.473,2292,5.624,2293,0.978,2294,0.978,2295,5.26,2296,0.978,2297,4.751,2298,6.245,2299,7.889,2300,4.447,2301,4.133,2302,4.923,2303,4.923,2304,3.73,2305,1.805,2306,3.467,2307,0.884,2308,0.534,2309,0.978,2310,1.805,2311,6.324,2312,1.805,2313,0.884,2314,0.978,2315,0.636,2316,0.707,2317,0.978,2318,1.805,2319,0.978,2320,0.978,2321,0.884,2322,0.978,2323,1.805,2324,2.512,2325,1.633,2326,4.13,2327,0.978,2328,0.978,2329,3.304,2330,1.805,2331,0.978,2332,0.978,2333,1.429,2334,3.27,2335,1.63,2336,2.269,2337,0.884,2338,0.737,2339,0.978,2340,0.821,2341,0.978,2342,1.805,2343,2.512,2344,0.978,2345,0.978,2346,0.978,2347,0.68,2348,0.978,2349,0.978,2350,0.978,2351,0.978,2352,0.821,2353,1.515,2354,0.978,2355,0.978,2356,0.978,2357,0.775,2358,0.978,2359,5.564,2360,0.978,2361,0.978,2362,0.978,2363,0.978,2364,0.978,2365,1.805,2366,1.805,2367,0.775,2368,0.618,2369,1.989,2370,0.775,2371,1.429,2372,0.978,2373,0.821,2374,2.821,2375,0.821,2376,0.978,2377,0.821,2378,0.821,2379,0.978,2380,0.978,2381,4.13,2382,0.978,2383,0.978,2384,2.512,2385,4.13,2386,0.978,2387,2.512,2388,1.805,2389,2.512,2390,2.512,2391,0.707,2392,2.512,2393,1.805,2394,1.36,2395,2.108,2396,1.805,2397,0.978,2398,0.978,2399,1.63,2400,2.512,2401,1.805,2402,3.784,2403,2.512,2404,0.978,2405,3.124,2406,2.512,2407,2.512,2408,3.124,2409,2.512,2410,3.124,2411,2.512,2412,2.512,2413,2.512,2414,2.512,2415,2.512,2416,2.512,2417,0.978,2418,0.775,2419,0.978,2420,0.978,2421,0.775,2422,0.978,2423,1.805,2424,0.978,2425,1.254,2426,1.805,2427,0.978,2428,0.884,2429,0.978,2430,1.515,2431,0.821,2432,0.978,2433,0.821,2434,0.978,2435,0.707,2436,0.978,2437,0.978,2438,4.923,2439,0.737,2440,0.978,2441,0.978,2442,0.884,2443,0.978,2444,0.978,2445,0.636,2446,0.978,2447,0.978,2448,1.515,2449,0.775,2450,0.978,2451,1.805,2452,0.978,2453,0.978,2454,0.978,2455,3.124,2456,0.978,2457,1.805,2458,0.978,2459,0.978,2460,0.821,2461,0.978,2462,0.978,2463,0.978,2464,1.805,2465,0.821,2466,0.978,2467,0.978,2468,0.978,2469,1.972,2470,0.978,2471,2.512,2472,2.512,2473,0.737,2474,0.978,2475,1.805,2476,2.512,2477,2.512,2478,2.512,2479,0.884,2480,0.978,2481,0.978,2482,0.821,2483,0.978,2484,0.884,2485,0.978,2486,0.978,2487,0.978,2488,0.978,2489,1.805,2490,1.805,2491,0.978,2492,0.884,2493,0.978,2494,0.978,2495,3.124,2496,2.512,2497,2.512,2498,2.512,2499,2.512,2500,2.512,2501,2.512,2502,3.124,2503,0.978,2504,0.978,2505,0.978,2506,0.978,2507,0.978,2508,0.978,2509,0.978,2510,0.978,2511,0.978,2512,0.978,2513,0.978,2514,0.978,2515,0.978,2516,0.978,2517,0.978,2518,0.978,2519,0.978,2520,0.978,2521,0.978,2522,1.805,2523,0.978,2524,0.978,2525,0.978,2526,0.978,2527,0.978,2528,0.978,2529,0.978,2530,0.978,2531,0.978,2532,0.978,2533,0.978,2534,0.978,2535,1.63,2536,0.978,2537,0.978,2538,0.978,2539,0.978,2540,0.978,2541,0.978,2542,0.978,2543,0.978,2544,0.978,2545,0.978,2546,0.978,2547,0.978,2548,0.978,2549,1.515,2550,0.978,2551,0.978,2552,0.978,2553,0.978,2554,0.978,2555,0.978,2556,0.978,2557,0.978,2558,0.978,2559,0.978,2560,0.978,2561,0.978,2562,0.978,2563,1.805,2564,0.978,2565,0.978,2566,0.978,2567,0.884,2568,0.978,2569,0.737,2570,0.978,2571,3.659,2572,1.466,2573,1.989,2574,3.124,2575,3.124,2576,0.978,2577,0.978,2578,0.978,2579,0.775,2580,0.978,2581,0.884,2582,0.978,2583,0.978,2584,0.821,2585,0.978,2586,0.978,2587,0.978]],["t/76",[0,0.376,1,0.372,2,0.246,3,0.384,4,0.13,209,2.629,651,1.519,820,1.903,821,1.792,2010,2.629]],["d/76",[]],["k/76",[]],["b/76",[2,0.118,4,0.145,11,1.85,13,1.753,18,2.435,30,2.391,41,1.466,43,0.547,69,0.789,71,2.491,83,1.358,93,0.879,98,2.319,100,0.915,106,0.53,108,0.593,112,0.538,113,1.157,117,1.101,120,1.626,121,1.333,123,2.462,124,0.502,129,1.998,133,0.989,134,1.143,139,3.328,143,1.484,144,1.879,145,2.099,146,2.41,147,2.175,151,1.906,152,2.269,153,2.018,155,1.597,161,2.919,163,0.364,167,0.935,209,2.942,216,1.087,218,2.281,225,0.371,229,1.879,230,3.183,231,5.588,232,2.7,238,2.186,239,1.129,240,3.29,241,1.143,243,2.904,244,2.333,245,1.933,249,0.73,250,2.06,255,1.78,256,1.317,257,1.982,258,1.16,266,2.644,268,0.967,269,2.624,279,2.932,280,2.473,281,0.477,282,0.72,283,3.023,284,0.63,287,2.882,288,0.946,290,1.373,291,0.803,292,1.598,295,4.22,304,1.012,305,2.275,308,1.233,311,1.934,314,0.663,315,0.492,322,2.942,332,2.706,337,2.328,341,0.936,345,2.069,352,1.58,354,2.663,357,0.579,358,2.167,359,1.993,360,2.692,363,1.567,364,1.424,365,0.7,366,1.506,367,0.809,368,2.731,369,2.189,370,2.976,371,0.834,377,2.948,385,1.061,387,1.074,388,0.497,392,0.956,399,2.828,400,3.093,403,1.752,404,1.835,407,1.806,414,0.817,415,3.182,425,2.921,426,2.942,428,1.758,433,1.466,442,2.904,444,1.78,445,2.333,456,1.279,457,3.446,474,0.809,479,0.638,480,0.654,487,2.565,488,1.012,489,0.831,505,0.6,519,2.134,527,0.6,529,1.19,540,2.277,542,2.452,543,1.598,555,3.093,557,2.842,590,0.979,611,4.205,613,0.71,644,0.573,645,0.566,648,0.741,651,4.36,652,1.8,655,1.671,657,0.607,665,0.862,669,1.906,670,1.536,672,2.041,674,1.158,675,0.69,676,1.129,677,1.206,678,1.826,679,0.753,690,2.24,694,2.315,700,4.275,701,2.13,702,2.963,703,1.808,704,0.741,705,0.817,706,1.869,707,1.427,708,0.741,709,2.732,710,1.901,717,0.663,718,1.803,719,0.879,724,1.003,726,0.803,727,1.726,731,3.71,733,2.781,735,1.126,737,1.059,740,0.896,741,3.953,761,1.206,762,0.71,763,1.536,764,1.996,765,2.554,774,3.194,775,2.452,786,0.879,818,4.996,820,4.699,821,3.429,824,4.006,861,6.533,931,0.614,932,1.264,937,1.726,947,1.726,950,2.603,955,0.753,956,1.413,957,2.282,958,3.199,960,0.56,965,0.831,971,3.884,973,0.956,1005,1.264,1008,0.846,1009,1.09,1013,3.355,1032,1.264,1034,1.166,1036,1.753,1039,1.003,1061,3.586,1077,1.634,1087,2.553,1277,3.49,1319,1.629,1648,1.753,1665,5.638,1689,2.209,1697,2.278,1727,1.264,1729,1.968,1788,1.97,1803,1.126,1819,1.264,1820,1.211,2072,1.003,2073,0.956,2089,0.896,2093,1.166,2130,3.142,2148,1.166,2170,2.8,2288,3.043,2430,2.46,2435,2.819,2439,2.209,2588,3.526,2589,7.225,2590,3.526,2591,4.404,2592,3.526,2593,2.209,2594,3.526,2595,3.526,2596,3.526,2597,3.526,2598,4.8,2599,3.528,2600,3.526,2601,3.528,2602,3.526,2603,3.526,2604,2.209,2605,3.903,2606,6.289,2607,3.903,2608,3.526,2609,1.264,2610,3.142,2611,7.431,2612,0.831,2613,1.677,2614,1.328,2615,1.211,2616,1.677,2617,1.515,2618,1.515,2619,0.979,2620,1.408,2621,1.677,2622,2.955,2623,1.408,2624,1.408,2625,1.677,2626,1.677,2627,1.677,2628,1.677,2629,7.774,2630,3.838,2631,7.774,2632,5.315,2633,5.315,2634,1.264,2635,1.677,2636,5.315,2637,5.315,2638,2.931,2639,2.931,2640,2.931,2641,2.647,2642,1.328,2643,1.677,2644,1.677,2645,2.46,2646,1.677,2647,1.677,2648,1.677,2649,2.321,2650,2.46,2651,3.528,2652,1.166,2653,0.979,2654,1.515,2655,1.515,2656,1.677,2657,5.315,2658,5.843,2659,3.903,2660,3.903,2661,4.68,2662,1.328,2663,2.321,2664,3.091,2665,1.677,2666,2.931,2667,2.321,2668,2.931,2669,2.647,2670,1.515,2671,4.227,2672,1.515,2673,1.515,2674,1.408,2675,2.931,2676,2.46,2677,1.677,2678,1.126,2679,1.677,2680,2.321,2681,2.931,2682,2.931,2683,3.903,2684,1.408,2685,3.903,2686,1.677,2687,2.116,2688,1.968,2689,2.931,2690,2.931,2691,2.116,2692,2.46,2693,1.634,2694,4.227,2695,2.931,2696,2.647,2697,2.46,2698,2.931,2699,2.647,2700,2.116,2701,2.931,2702,3.526,2703,4.68,2704,5.315,2705,5.315,2706,4.68,2707,5.315,2708,5.315,2709,2.116,2710,1.677,2711,1.677,2712,1.677,2713,1.677,2714,1.677,2715,1.677,2716,1.677,2717,1.677,2718,1.677,2719,1.677,2720,1.515,2721,1.515,2722,1.677,2723,1.677,2724,5.843,2725,1.677,2726,1.677,2727,1.677,2728,1.677,2729,5.843,2730,1.677,2731,1.677,2732,1.677,2733,1.677,2734,1.677,2735,1.677,2736,1.677,2737,1.515,2738,1.677,2739,1.677,2740,1.677,2741,1.677,2742,1.677,2743,1.677,2744,1.677,2745,1.677,2746,1.677,2747,1.677,2748,1.677,2749,1.677,2750,1.677,2751,1.677,2752,1.677,2753,1.677,2754,1.677,2755,1.677,2756,1.677,2757,1.677,2758,1.677,2759,1.264,2760,2.942,2761,3.496,2762,1.264,2763,1.677,2764,2.321,2765,2.647,2766,2.46,2767,2.464,2768,1.126,2769,1.264,2770,1.677,2771,1.264,2772,1.328,2773,1.264,2774,1.264,2775,2.647,2776,1.264,2777,1.264,2778,1.264,2779,1.264,2780,1.264,2781,1.328,2782,0.935,2783,0.777,2784,1.677,2785,1.515,2786,2.46,2787,1.328,2788,1.264]],["t/77",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,178,3.217,2016,2.694]],["d/77",[]],["k/77",[]],["b/77",[4,0.201,13,2.1,18,2.51,30,2.514,41,2.025,43,1.76,47,2.646,55,2.947,65,2.216,66,1.862,82,1.552,98,1.74,106,1.109,108,1.241,111,2.1,112,0.99,113,1.945,117,1.318,119,1.74,120,1.074,121,1.199,129,1.052,133,1.185,134,2.103,135,2.942,143,2.496,145,1.172,147,2.277,152,2.962,154,1.146,161,1.256,163,0.762,178,5.989,216,2,218,1.03,225,0.776,229,0.989,232,1.929,237,1.626,238,2.467,245,1.488,250,2.123,256,2.29,257,2.087,258,1.825,266,1.518,279,2.879,283,2.629,287,2.869,290,2.331,291,3.142,292,1.199,303,3.622,304,2.543,305,2.512,306,3.439,308,1.109,314,1.388,315,1.03,322,4.064,337,1.052,338,3.306,341,1.121,347,1.709,359,1.793,360,2.948,364,1.444,367,1.811,368,2.715,369,2.703,370,3.115,371,1.867,388,1.041,399,1.799,400,1.884,401,2.44,403,1.642,407,2.277,415,1.779,426,2.073,428,2.465,442,3.031,444,4.302,445,3.862,446,2.44,456,2.695,457,1.241,474,2.032,487,2.797,488,2.267,489,3.252,491,2.348,492,3.831,500,2.05,515,3.844,519,3.357,527,1.256,555,2.573,557,1.159,611,1.425,644,1.199,645,1.185,647,1.68,657,1.271,659,2.646,672,1.884,674,2.131,675,1.445,676,2.077,677,1.445,678,1.37,679,1.576,699,2.049,703,1.626,717,1.388,718,1.352,731,3.315,740,1.877,742,2.44,752,2.44,755,4.788,761,2.219,762,1.486,787,3.04,819,1.626,841,1.626,931,1.286,942,2.216,956,1.271,958,3.27,960,1.799,985,2.535,999,3.171,1066,2.283,1102,2.78,1277,4.648,1283,2.497,1315,2.216,1760,1.84,1774,2.283,1788,1.771,1793,2.357,1846,2.535,1987,2.002,1988,1.929,2016,7.007,2048,2.357,2069,3.506,2112,2.646,2136,1.877,2164,2.348,2336,3.171,2367,2.78,2573,2.78,2761,3.439,2783,3.411,2789,5.928,2790,8.796,2791,4.869,2792,5.928,2793,6.651,2794,5.928,2795,4.869,2796,8.386,2797,6.651,2798,6.651,2799,5.928,2800,5.928,2801,3.511,2802,6.057,2803,3.511,2804,8.796,2805,5.391,2806,3.511,2807,3.511,2808,3.511,2809,4.869,2810,3.511,2811,3.171,2812,3.171,2813,3.171,2814,3.171,2815,3.171,2816,3.171,2817,3.171,2818,3.171,2819,3.171,2820,3.511,2821,5.928,2822,4.948,2823,4.948,2824,3.511,2825,4.064,2826,2.535,2827,2.535,2828,3.511,2829,8.669,2830,3.511,2831,3.659,2832,3.511,2833,3.511,2834,3.511,2835,2.78,2836,9.012,2837,3.171,2838,3.171,2839,8.386,2840,5.391,2841,3.171,2842,3.511,2843,3.511,2844,2.646,2845,3.171,2846,3.511,2847,4.869,2848,3.511,2849,3.511,2850,3.511,2851,3.511,2852,5.391,2853,3.511,2854,3.511,2855,5.391,2856,3.511,2857,3.511,2858,3.511,2859,5.391,2860,5.391,2861,3.511,2862,3.511,2863,3.511,2864,3.511,2865,3.511,2866,3.511,2867,6.563,2868,5.928,2869,3.171,2870,4.526,2871,2.002,2872,3.171,2873,6.563,2874,3.171,2875,3.511,2876,5.391,2877,3.511,2878,3.511,2879,3.171,2880,3.511,2881,3.171,2882,3.171,2883,2.947,2884,5.391,2885,2.646,2886,3.511,2887,5.391,2888,3.171]],["t/78",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,112,0.784,2016,2.694]],["d/78",[]],["k/78",[]],["b/78",[4,0.305,18,2.354,43,1.419,107,1.814,112,1.162,113,2.21,120,1.33,124,1.302,133,1.467,144,1.224,147,1.598,152,1.799,154,1.419,155,2.238,163,0.943,178,3.276,202,2.932,218,2.553,225,0.961,228,1.982,230,1.632,238,2.177,239,1.674,245,1.2,250,2.38,256,2.323,257,2.648,258,2.38,265,3.676,266,2.1,268,2.088,269,3.065,279,2.936,281,2.33,283,1.741,287,2.999,290,2.188,303,1.982,304,2.184,305,2.613,308,1.373,337,2.72,352,1.467,362,1.839,364,2.433,365,1.814,366,2.234,367,1.2,368,2.841,369,2.306,370,3.215,371,2.121,388,2.21,402,4.207,403,1.866,404,3.136,405,2.046,415,1.434,426,1.373,428,2.376,442,2.428,444,3.734,445,3.563,456,2.038,457,2.236,474,2.26,477,1.789,487,1.915,488,1.501,489,3.134,498,2.116,499,2.116,500,1.653,502,1.893,515,2.987,519,3.734,557,2.872,647,2.081,656,2.081,787,2.93,922,4.246,974,2.234,1277,4.575,1988,2.263,2014,5.009,2015,5.009,2016,6.967,2038,2.372,2164,2.755,2402,5.207,2693,2.423,2783,2.013,2789,3.926,2790,9.496,2791,8.203,2792,3.926,2793,3.926,2794,7.86,2795,5.713,2797,3.926,2798,3.926,2799,5.713,2800,3.926,2802,3.139,2804,7.397,2809,3.926,2811,5.713,2812,3.926,2813,3.926,2814,5.713,2815,3.926,2816,5.713,2817,5.713,2818,3.926,2819,3.926,2821,3.926,2822,3.276,2823,3.276,2829,8.466,2847,3.926,2868,3.926,2869,3.926,2870,3.649,2872,3.926,2874,3.926,2879,3.926,2881,3.926,2888,3.926,2889,3.442,2890,3.442,2891,8.189,2892,7.457,2893,8.189,2894,8.189,2895,7.457,2896,6.325,2897,3.926,2898,6.325,2899,4.346,2900,4.346,2901,6.325,2902,6.325,2903,6.325,2904,6.325,2905,6.325,2906,6.325,2907,4.346,2908,4.346,2909,4.346,2910,7.457,2911,7.457,2912,4.346,2913,7.457,2914,4.346,2915,4.346,2916,6.325,2917,6.325,2918,4.346,2919,6.325,2920,6.325,2921,4.346,2922,4.346,2923,4.346,2924,4.346,2925,4.346,2926,4.346,2927,4.346,2928,4.346,2929,4.346,2930,4.346,2931,3.649,2932,4.346,2933,4.346,2934,4.346]],["t/79",[0,0.376,1,0.372,2,0.246,3,0.384,4,0.13,83,1.615,106,1.101,182,2.518,403,0.872,758,1.642]],["d/79",[]],["k/79",[]],["b/79",[2,0.238,4,0.219,18,2.308,30,3.151,41,0.739,43,0.642,47,1.483,66,1.162,71,2.481,81,1.052,82,0.87,83,0.911,98,0.975,100,4.252,106,1.648,108,0.695,112,0.361,117,1.264,120,2.202,121,0.672,123,1.558,124,0.589,129,2.793,133,1.136,134,1.313,139,4.123,143,1.984,144,1.651,145,2.133,147,1.899,149,1.177,152,2.529,153,1.162,154,1.098,155,1.426,161,2.097,163,0.73,182,3.183,202,0.635,216,1.635,218,0.577,225,0.435,229,0.554,230,1.264,232,3.616,233,1.798,235,3.343,238,2.333,239,2.773,240,3.047,241,3.134,243,2.262,244,1.813,245,2.075,249,1.466,250,0.818,255,2.597,256,2.287,257,1.54,258,1.931,266,2.538,268,1.11,269,3.08,279,2.808,281,1.668,283,1.348,284,0.739,285,0.87,286,2.266,287,2.867,288,1.423,289,1.918,290,2.356,292,1.781,297,1.242,300,4.929,303,3.552,305,1.229,306,1.031,307,3.813,308,2.717,311,3.167,314,1.742,315,1.875,332,2.96,338,2.575,341,2.4,345,0.87,347,3.112,348,0.73,352,1.488,354,2.43,357,1.522,359,2.848,363,2.789,364,2.208,367,0.929,368,2.624,369,1.241,371,0.957,385,3.376,388,0.583,399,1.741,400,2.515,401,1.367,403,2.009,404,1.162,407,2.226,408,3.349,414,0.958,415,2.254,425,1.348,426,1.648,428,1.264,442,2.764,444,2.913,445,2.788,451,0.958,456,1.866,457,2.657,469,0.844,474,2.374,480,1.313,487,2.358,488,2.912,491,4.404,507,0.975,515,2.348,519,2.673,527,0.704,529,2.594,533,2.784,538,3.811,540,1.218,543,1.505,555,1.823,557,2.651,559,3.333,563,2.177,611,3.423,613,1.865,644,0.672,645,0.664,648,0.87,656,3.73,665,3.014,672,2.048,674,1.33,675,0.81,676,1.296,677,1.385,678,1.313,679,0.883,684,1.421,690,0.942,694,2.975,698,1.367,699,3.045,700,3.072,701,1.836,702,1.876,704,0.87,705,0.958,709,1.011,710,1.204,711,1.208,717,0.778,718,0.758,719,1.031,720,1.729,726,0.942,727,1.488,731,1.742,733,1.488,734,1.052,735,1.321,736,1.242,739,3.345,742,1.367,743,2.066,747,4.234,750,2.066,751,3.823,758,1.584,761,1.385,762,0.832,763,1.031,774,2.208,778,1.698,787,2.042,819,0.911,929,5.047,930,1.279,931,0.721,935,1.367,937,0.87,945,1.321,946,3.508,947,0.87,956,1.889,960,1.741,965,0.975,969,2.458,970,1.122,1008,2.632,1013,1.242,1014,1.177,1038,0.73,1087,2.38,1273,1.177,1283,0.911,1319,1.839,1665,2.513,1709,2.43,1718,1.242,1731,1.097,1740,2.266,1745,4.545,1749,1.321,1761,1.651,1787,2.339,1788,0.993,1789,1.421,1823,3.393,1829,2.783,2027,1.321,2038,2.847,2088,3.039,2092,1.777,2115,3.204,2130,1.321,2142,1.321,2170,3.508,2215,4.539,2255,4.075,2256,1.421,2265,2.339,2274,3.508,2289,5.78,2297,3.039,2300,1.777,2435,1.421,2612,0.975,2642,1.558,2653,5.628,2772,2.664,2831,3.269,2935,3.981,2936,8.423,2937,3.981,2938,3.981,2939,3.039,2940,3.981,2941,3.134,2942,3.014,2943,4.712,2944,3.981,2945,3.039,2946,3.981,2947,3.981,2948,3.981,2949,3.981,2950,3.039,2951,3.981,2952,3.981,2953,1.321,2954,5.863,2955,5.295,2956,3.933,2957,1.967,2958,1.967,2959,8.094,2960,7.517,2961,2.783,2962,1.967,2963,1.967,2964,1.967,2965,1.967,2966,1.967,2967,3.364,2968,4.408,2969,3.981,2970,1.967,2971,1.967,2972,1.367,2973,3.364,2974,1.967,2975,5.863,2976,1.967,2977,3.364,2978,1.967,2979,2.664,2980,5.217,2981,3.364,2982,3.039,2983,3.364,2984,4.408,2985,4.408,2986,1.967,2987,1.967,2988,3.364,2989,1.967,2990,1.651,2991,0.958,2992,1.967,2993,1.967,2994,1.967,2995,1.967,2996,3.364,2997,3.039,2998,1.651,2999,1.777,3000,1.967,3001,1.967,3002,1.967,3003,1.967,3004,6.39,3005,5.217,3006,3.981,3007,4.408,3008,4.408,3009,4.408,3010,4.408,3011,5.217,3012,5.863,3013,5.217,3014,5.217,3015,5.217,3016,5.217,3017,5.217,3018,5.217,3019,5.217,3020,1.967,3021,1.483,3022,1.967,3023,1.967,3024,3.364,3025,3.364,3026,1.967,3027,3.364,3028,1.967,3029,1.967,3030,1.967,3031,1.967,3032,1.967,3033,1.967,3034,1.967,3035,1.967,3036,1.967,3037,3.039,3038,3.364,3039,1.967,3040,1.967,3041,1.967,3042,1.777,3043,1.777,3044,1.967,3045,1.777,3046,1.777,3047,1.967,3048,1.967,3049,1.967,3050,1.967,3051,1.967,3052,1.967,3053,1.967,3054,1.967,3055,1.967,3056,1.558,3057,1.967,3058,5.217,3059,5.217,3060,1.967,3061,1.967,3062,1.967,3063,1.967,3064,1.967,3065,1.967,3066,1.967,3067,1.967,3068,1.967,3069,1.967,3070,1.967,3071,1.967,3072,1.967,3073,1.967,3074,1.967,3075,1.967,3076,1.967,3077,1.967,3078,1.967,3079,1.967,3080,1.967,3081,1.967,3082,3.491,3083,1.967,3084,4.408,3085,1.967,3086,6.503,3087,7.2,3088,1.651,3089,1.967,3090,3.039,3091,1.967,3092,1.777]],["t/80",[0,0.4,1,0.396,2,0.262,3,0.409,4,0.138,71,1.226,223,2.799,403,0.929,965,1.84]],["d/80",[]],["k/80",[]],["b/80",[2,0.436,4,0.186,11,3.157,18,2.422,30,2.107,37,1.956,41,1.196,43,2.479,60,2.139,62,1.956,71,3.583,73,2.435,81,2.673,82,2.211,83,1.476,89,2.402,98,1.579,108,1.126,112,0.585,120,1.529,121,1.088,129,2.094,133,1.075,134,1.951,139,2.917,143,2.347,144,0.897,145,2.333,147,2.32,149,1.906,152,2.934,154,1.04,158,3.575,161,1.789,162,1.776,163,1.085,202,2.257,216,1.855,218,0.935,223,4.652,224,3.299,225,0.705,230,1.878,232,1.14,233,2.673,236,2.072,237,2.316,238,2.414,240,2.958,241,1.243,242,4.289,243,2.527,245,0.879,250,2.121,255,1.901,256,1.529,257,1.995,258,1.529,266,0.897,279,2.919,282,1.368,283,2.003,287,2.842,308,1.006,312,5.535,314,1.976,315,2.99,316,6.298,317,2.851,318,3.959,337,2.688,338,2.5,359,2.385,360,2.564,364,1.339,365,1.329,367,1.929,368,2.752,369,2.139,370,3.085,371,1.756,393,1.551,399,1.063,400,2.156,403,2.38,404,2.131,407,1.546,415,2.307,425,2.003,426,2.399,428,2.318,442,2.498,456,0.871,457,2.849,474,1.703,487,2.551,488,1.1,500,2.347,505,1.14,507,2.478,515,1.276,527,2.208,538,1.976,540,1.153,542,1.669,543,1.088,567,1.525,611,3.543,644,1.707,645,1.075,651,2.178,655,1.816,656,1.525,657,1.81,659,2.402,665,1.638,670,3.234,672,1.747,674,1.976,675,1.311,676,1.926,677,2.058,678,1.243,690,1.525,694,4.341,697,1.906,710,3.015,717,1.976,718,1.926,723,2.728,726,1.525,731,3.002,740,3.299,750,3.79,751,4.182,756,2.523,759,2.919,761,2.058,762,1.348,763,2.62,764,1.878,765,3.814,774,2.612,775,1.669,787,2.316,803,1.86,821,1.638,930,2.072,945,2.139,948,3.357,956,1.153,958,2.877,963,2.011,965,5.315,971,2.435,974,2.57,998,4.413,1038,1.182,1045,2.878,1061,2.851,1068,2.214,1077,1.776,1283,2.859,1319,1.329,1368,2.878,1665,1.816,1730,1.956,1731,1.776,1745,2.011,1756,2.402,1771,3.251,1775,2.523,1782,2.523,1823,2.072,1862,2.301,2032,2.523,2038,2.728,2048,2.139,2084,1.638,2245,4.197,2289,2.072,2292,1.86,2391,2.301,2445,2.072,2469,3.157,2473,2.402,2653,2.919,2700,2.301,2761,3.663,2782,3.441,2783,2.859,2961,3.157,3088,4.197,3093,6.314,3094,8.822,3095,5.868,3096,5.574,3097,5.574,3098,4.516,3099,5,3100,7.279,3101,6.86,3102,5.574,3103,5.574,3104,2.878,3105,3.186,3106,2.674,3107,5,3108,5.181,3109,4.516,3110,2.878,3111,2.878,3112,2.402,3113,2.523,3114,3.186,3115,3.186,3116,5,3117,3.186,3118,3.186,3119,3.186,3120,2.674,3121,2.523,3122,3.186,3123,3.186,3124,3.186,3125,5.048,3126,3.186,3127,2.878,3128,2.878,3129,2.139,3130,3.186,3131,3.186,3132,3.186,3133,3.186,3134,3.186,3135,5,3136,3.186,3137,2.301,3138,3.186,3139,3.186,3140,3.186,3141,4.516,3142,3.186,3143,2.878,3144,3.186,3145,10.892,3146,3.186,3147,3.186,3148,3.186,3149,3.186,3150,3.186,3151,3.186,3152,3.186,3153,3.186,3154,3.186,3155,3.186,3156,3.186,3157,3.186,3158,3.186,3159,3.186,3160,3.186,3161,3.186,3162,3.186,3163,3.186,3164,3.186,3165,3.186,3166,5,3167,3.186,3168,3.186,3169,3.186,3170,3.186,3171,3.186,3172,3.186,3173,3.186,3174,3.186,3175,3.186,3176,3.186,3177,3.186,3178,3.186,3179,3.186,3180,3.186,3181,3.186,3182,3.186,3183,3.186,3184,3.186,3185,3.186,3186,3.186,3187,3.186,3188,3.186,3189,3.186,3190,2.878,3191,2.878,3192,3.186,3193,5.181,3194,2.301,3195,2.878,3196,2.878,3197,2.402,3198,2.878,3199,2.878,3200,2.878,3201,2.878,3202,3.186,3203,3.186,3204,2.878,3205,2.878]],["t/81",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,112,0.784,316,2.621]],["d/81",[]],["k/81",[]],["b/81",[2,0.63,4,0.332,18,1.512,71,3.592,95,2.655,107,2.196,112,1.33,113,2.644,120,1.61,124,1.576,129,1.576,147,1.329,154,1.717,155,2.263,163,1.142,198,2.608,218,2.744,225,1.164,233,2.813,238,2.072,245,1.452,250,2.489,256,2.318,257,2.836,258,2.395,265,4.005,266,2.039,268,2.39,269,3.011,279,2.808,281,2.538,287,3.061,308,2.288,312,7.843,315,2.906,316,5.478,318,6.557,337,2.48,338,2.591,359,1.438,364,2.653,365,2.196,366,2.705,367,1.452,368,2.98,369,2.039,370,3.358,371,2.356,388,2.455,402,4.588,403,2.713,405,2.477,415,2.733,426,2.818,456,1.438,474,2.285,488,1.817,498,2.562,499,2.562,500,2.001,502,2.292,555,1.838,557,1.737,657,1.905,694,4.075,965,5.298,998,3.322,1038,1.952,1106,3.533,1823,3.422,2469,3.322,3093,4.753,3094,9.829,3095,8.116,3096,4.753,3097,4.753,3098,8.449,3100,4.753,3101,4.753,3102,4.753,3103,4.753,3193,4.417,3195,4.753,3196,4.753,3198,4.753,3200,4.753,3201,4.753,3204,4.753,3205,4.753,3206,8.921,3207,8.281,3208,5.262,3209,7.242,3210,7.242,3211,7.242,3212,7.242,3213,5.262,3214,7.242,3215,5.262,3216,5.262,3217,5.262]],["t/82",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,112,0.729,348,1.473,529,1.612]],["d/82",[]],["k/82",[]],["b/82",[4,0.326,18,2.702,25,4.254,106,2.012,107,3.129,112,1.511,113,2.223,120,1.342,124,1.314,129,1.314,132,2.346,144,2.566,146,1.401,147,2.375,154,2.079,155,2.387,163,0.952,200,3.308,215,3.308,218,2.673,222,3.308,225,0.97,228,2.001,229,1.236,237,2.033,238,2.28,239,2.888,240,4.321,243,2.844,244,3.083,245,2.27,250,2.341,252,5.194,256,2.432,257,2.653,258,2.386,265,3.693,266,2.844,268,2.102,269,2.777,279,2.81,281,2.592,284,1.648,287,3.044,288,2.82,289,3.632,290,2.413,292,1.498,305,1.223,308,1.386,329,2.101,332,2.033,341,1.401,345,1.94,348,3.788,352,2.15,354,1.669,357,2.2,358,2.363,359,2.724,362,1.857,364,2.441,365,1.831,366,2.256,367,1.211,368,2.78,369,2.566,370,3.068,371,2.133,384,3.632,385,2.306,387,2.334,388,1.888,393,2.137,399,2.502,400,2.225,402,2.033,403,2.186,405,2.066,415,2.475,426,2.368,442,1.301,444,2.001,456,1.74,457,2.252,469,1.884,470,2.214,474,2.595,475,2.502,476,2.502,477,1.806,478,2.625,479,2.422,480,1.712,498,2.137,499,2.137,500,1.669,502,1.912,515,1.758,529,4.338,543,2.56,557,1.448,561,1.735,647,2.101,686,2.395,692,5.357,700,3.929,701,2.395,702,2.447,703,2.033,767,2.256,818,2.137,1087,1.781,1319,1.831,1697,4.802,1725,3.169,1754,2.695,1816,2.854,2158,2.695,2203,4.876,2215,3.53,2274,2.625,2281,2.946,2291,3.475,2316,5.941,2325,4.142,2391,3.169,2612,2.175,2617,3.964,3137,3.169,3218,7.626,3219,7.444,3220,8.226,3221,7.498,3222,8.228,3223,8.226,3224,8.226,3225,5.044,3226,2.854,3227,3.475,3228,3.475,3229,3.05,3230,4.388,3231,4.388,3232,3.475,3233,3.964,3234,3.964,3235,3.964,3236,4.388,3237,3.475,3238,3.964,3239,3.964,3240,3.964,3241,3.475,3242,3.964,3243,3.964,3244,3.964,3245,3.475,3246,4.388,3247,3.964,3248,3.964,3249,3.964,3250,4.388,3251,3.475,3252,3.964,3253,3.964,3254,3.964,3255,3.964,3256,3.964,3257,3.964,3258,4.388,3259,3.475,3260,4.388,3261,4.388,3262,4.388,3263,4.388,3264,4.388,3265,4.388]],["t/83",[0,0.4,1,0.396,2,0.262,3,0.409,4,0.138,190,2.682,337,1.112,651,1.618,654,2.344]],["d/83",[]],["k/83",[]],["b/83",[2,0.055,4,0.076,11,0.918,13,0.464,18,2.365,25,0.378,30,3.215,39,0.976,41,1.149,43,0.253,44,0.663,54,0.371,65,0.49,66,0.502,69,2.526,71,3.286,83,0.673,93,0.406,95,0.391,98,0.384,106,0.245,108,0.274,109,0.614,112,0.142,113,0.907,117,0.97,120,1.712,121,2.578,123,2.243,124,0.232,129,1.856,133,0.693,134,0.567,137,0.521,139,3.819,141,0.453,143,0.78,144,1.19,145,1.616,146,1.633,147,1.727,151,1.68,152,2.119,153,1.057,154,0.253,155,0.706,156,0.585,157,0.504,161,3.232,163,0.168,186,0.585,190,1.482,198,0.384,202,0.25,214,0.585,216,0.539,218,1.87,223,0.585,224,3.796,225,0.171,226,4.843,227,3.131,229,1.364,230,2.874,231,4.492,232,2.992,233,1.381,237,0.359,238,2.18,239,0.995,240,3.387,241,1.512,242,3.162,243,2.869,244,1.658,245,1.847,249,0.338,250,1.461,255,1.73,256,0.96,257,0.804,258,1.2,266,2.155,268,0.677,269,2.728,279,2.897,280,1.093,281,0.584,282,0.881,283,2.149,284,0.291,287,2.6,288,0.469,290,2.473,291,0.371,292,1.191,295,2.519,304,0.268,305,1.98,308,1.694,314,0.306,315,1.334,316,5.009,317,0.442,322,0.585,329,0.371,337,2.465,338,0.277,341,1.114,344,0.414,345,1.142,347,1.698,350,5.3,352,0.872,354,1.73,357,0.268,358,1.437,359,2.565,360,2.206,361,2.268,363,1.097,364,0.934,366,0.399,367,0.713,368,2.429,369,1.795,370,2.526,371,0.584,377,2.133,385,0.526,387,0.752,388,0.23,392,4.806,399,2.521,400,3.46,402,0.359,403,0.969,404,1.338,407,2.366,408,0.762,414,0.378,415,2.716,425,3.35,426,2.891,428,0.546,433,0.546,442,2.755,444,4.018,445,2.23,456,0.397,457,2.979,474,0.566,477,0.598,479,0.553,480,2.093,487,1.979,488,1.205,489,0.72,505,0.52,507,0.72,511,0.423,513,0.414,515,0.582,517,0.521,519,1.59,521,0.442,526,0.539,527,0.277,529,2.654,530,0.614,533,0.633,538,3.195,540,2.307,542,3.045,543,1.746,555,2.284,557,1.688,559,1.532,561,2.021,563,1.078,565,0.777,567,0.696,569,0.696,572,0.476,575,0.49,578,0.521,581,0.464,584,0.585,586,0.56,588,0.56,590,1.198,592,0.585,594,0.585,596,0.585,599,0.56,601,0.539,603,0.56,605,0.585,611,4.098,613,0.328,644,0.496,645,0.491,648,0.343,651,4.29,652,3.436,654,5.729,655,5.478,656,0.696,657,1.263,663,1.815,665,0.399,669,1.68,670,1.828,672,2.768,674,0.575,675,0.844,676,0.56,677,0.598,678,1.008,679,0.348,682,1.948,686,1.903,690,4.035,692,3.875,694,2.531,698,2.938,699,2.467,700,4.275,701,3.567,702,3.811,703,0.951,704,0.343,705,0.378,706,0.982,707,0.708,708,1.353,709,1.573,710,1.627,715,0.56,717,0.306,718,0.995,719,0.406,720,0.747,724,0.464,726,0.696,727,3.293,730,0.423,731,2.985,733,1.542,737,0.49,739,1.109,740,1.097,741,4.84,744,0.539,749,0.849,751,0.87,757,0.747,759,0.849,761,0.844,762,0.328,763,0.762,764,0.97,765,1.67,768,0.651,774,2.697,775,1.828,777,0.651,778,0.391,786,1.075,787,4.305,803,0.849,818,4.979,819,3.166,820,4.005,821,3.829,822,4.127,823,0.651,824,0.585,825,0.651,861,5.481,884,6.679,929,0.521,931,0.284,937,1.869,947,0.907,948,1.378,950,2.906,955,0.348,956,1.851,957,0.624,958,2.551,959,0.359,960,1.293,965,2.4,966,0.614,969,1.706,970,0.442,971,2.725,973,0.442,980,1.198,981,1.573,990,1.12,991,0.945,994,0.49,1001,0.651,1005,0.585,1006,0.521,1008,1.76,1013,1.932,1014,1.831,1026,0.504,1036,0.87,1039,0.464,1041,0.651,1060,0.7,1061,2.41,1062,0.7,1063,0.7,1077,1.441,1087,3.9,1108,5.025,1160,7.801,1273,0.464,1276,0.614,1277,2.296,1283,0.673,1319,3.232,1322,1.151,1323,1.151,1359,0.585,1361,0.56,1363,0.521,1636,0.651,1647,4.036,1648,0.464,1665,4.731,1689,0.585,1697,2.262,1718,0.49,1729,0.521,1731,0.432,1734,1.096,1747,0.614,1760,1.354,1774,0.504,1788,2.824,1804,0.614,1817,4.431,1819,1.096,1820,1.05,1830,1.228,1844,0.539,1870,0.893,2057,0.893,2072,0.464,2073,2.761,2083,0.56,2087,0.7,2089,1.097,2093,0.539,2130,1.735,2142,0.976,2148,1.01,2163,0.747,2164,0.633,2170,1.546,2215,0.365,2216,0.651,2244,0.539,2274,0.87,2281,1.735,2288,1.334,2316,0.56,2325,0.504,2347,1.426,2391,0.56,2399,0.7,2435,1.05,2439,1.096,2449,1.625,2589,6.204,2591,1.948,2593,2.307,2599,1.948,2601,1.547,2604,1.547,2609,0.585,2610,1.735,2612,0.72,2614,0.614,2615,0.56,2619,0.453,2620,0.651,2622,2.446,2623,0.651,2624,0.651,2630,2.21,2634,1.096,2645,1.22,2649,1.151,2650,1.22,2651,1.547,2652,0.539,2654,0.7,2655,0.7,2662,0.614,2663,1.151,2667,0.614,2669,1.313,2670,0.7,2671,2.334,2672,0.7,2673,0.7,2674,0.651,2676,1.22,2678,1.378,2680,0.614,2684,0.651,2687,0.56,2688,0.521,2691,0.56,2692,0.651,2693,0.432,2697,1.723,2709,1.05,2720,0.7,2737,4.845,2759,0.585,2760,1.096,2761,3.045,2762,0.585,2764,1.151,2767,4.402,2768,0.976,2769,0.585,2771,0.585,2772,1.625,2773,0.585,2774,0.585,2775,1.313,2776,0.585,2777,0.585,2778,0.585,2779,0.585,2780,0.585,2782,0.81,2783,0.359,2786,1.22,2787,0.614,2788,0.585,2831,1.144,2871,0.442,2889,0.614,2956,1.547,2961,0.49,2990,0.651,3082,0.614,3108,0.651,3120,1.22,3197,0.585,3266,1.853,3267,2.334,3268,2.764,3269,2.334,3270,2.334,3271,2.334,3272,2.764,3273,4.845,3274,2.334,3275,1.853,3276,2.052,3277,2.052,3278,4.549,3279,2.052,3280,2.052,3281,3.06,3282,1.313,3283,1.313,3284,2.584,3285,3.06,3286,3.06,3287,1.454,3288,1.853,3289,1.853,3290,2.052,3291,4.374,3292,0.7,3293,0.7,3294,4.066,3295,1.454,3296,2.569,3297,2.928,3298,5.756,3299,5.487,3300,4.751,3301,0.7,3302,1.853,3303,3.285,3304,1.22,3305,0.775,3306,1.454,3307,1.454,3308,0.775,3309,1.22,3310,1.22,3311,0.775,3312,0.651,3313,0.775,3314,0.775,3315,0.775,3316,5.046,3317,5.176,3318,1.22,3319,4.066,3320,4.293,3321,1.313,3322,0.775,3323,0.7,3324,1.454,3325,0.775,3326,0.614,3327,0.56,3328,2.584,3329,3.488,3330,0.775,3331,2.584,3332,3.488,3333,0.775,3334,1.482,3335,0.775,3336,0.775,3337,8.365,3338,8.365,3339,1.853,3340,1.313,3341,1.932,3342,3.549,3343,1.853,3344,2.764,3345,2.052,3346,2.584,3347,2.584,3348,2.584,3349,1.454,3350,1.454,3351,0.775,3352,0.775,3353,0.775,3354,0.775,3355,2.928,3356,4.066,3357,3.15,3358,1.313,3359,1.454,3360,1.625,3361,1.096,3362,0.521,3363,0.775,3364,0.775,3365,0.585,3366,0.7,3367,0.775,3368,2.584,3369,2.584,3370,2.052,3371,0.775,3372,0.775,3373,0.775,3374,0.775,3375,0.7,3376,1.454,3377,0.775,3378,0.7,3379,0.775,3380,0.775,3381,0.775,3382,1.454,3383,1.454,3384,0.775,3385,1.454,3386,0.651,3387,2.052,3388,0.775,3389,0.775,3390,1.454,3391,0.7,3392,1.454,3393,0.775,3394,1.313,3395,0.775,3396,2.052,3397,0.775,3398,0.775,3399,2.052,3400,0.775,3401,0.775,3402,0.775,3403,3.06,3404,2.584,3405,1.853,3406,2.584,3407,2.584,3408,2.052,3409,3.06,3410,4.843,3411,3.06,3412,2.584,3413,2.584,3414,2.584,3415,3.06,3416,2.584,3417,3.488,3418,2.584,3419,2.052,3420,0.775,3421,0.775,3422,1.454,3423,1.151,3424,0.775,3425,0.775,3426,0.775,3427,0.775,3428,0.775,3429,0.775,3430,0.775,3431,0.7,3432,0.7,3433,0.775,3434,0.775,3435,0.775,3436,0.775,3437,0.775,3438,0.775,3439,0.775,3440,0.775,3441,0.775,3442,2.052,3443,2.052,3444,2.052,3445,1.482,3446,0.775,3447,0.775,3448,0.7,3449,0.7,3450,0.775,3451,0.7,3452,0.7,3453,0.775,3454,0.7,3455,0.775,3456,0.775,3457,0.775,3458,0.775,3459,0.775,3460,1.454,3461,0.775,3462,0.775,3463,0.775,3464,0.775,3465,0.775,3466,0.775,3467,1.313,3468,0.775,3469,0.775,3470,0.775,3471,0.7,3472,0.775,3473,0.775,3474,0.775,3475,0.775,3476,1.454,3477,1.454,3478,1.454,3479,1.454,3480,1.454,3481,1.454,3482,1.454,3483,1.454,3484,1.454,3485,1.454,3486,1.454,3487,1.454,3488,1.454,3489,1.454,3490,1.454,3491,1.454,3492,0.775,3493,0.775,3494,0.775,3495,0.775,3496,0.775,3497,0.775,3498,0.775,3499,0.775,3500,0.775,3501,0.775,3502,0.775,3503,0.775,3504,0.775,3505,0.775,3506,0.775,3507,0.775,3508,0.775,3509,4.227,3510,0.775,3511,0.775,3512,0.775,3513,1.313,3514,0.775,3515,1.454,3516,0.775,3517,1.313,3518,0.775,3519,1.454,3520,0.775,3521,1.313,3522,0.775,3523,4.227,3524,0.775,3525,0.775,3526,0.775,3527,0.775,3528,0.775,3529,0.775,3530,0.775,3531,0.775,3532,0.775,3533,0.775,3534,0.651,3535,0.476,3536,0.775,3537,0.7,3538,0.775,3539,0.7,3540,0.775,3541,0.7,3542,0.56,3543,0.775,3544,0.775,3545,0.775,3546,0.775,3547,1.454,3548,0.775,3549,0.775,3550,0.775,3551,0.775,3552,0.775,3553,0.775,3554,0.775,3555,0.775,3556,0.775,3557,0.775,3558,0.775,3559,0.775,3560,0.775,3561,0.775,3562,0.775,3563,0.775,3564,0.775,3565,0.775,3566,0.775,3567,0.775,3568,0.775,3569,0.775,3570,0.775,3571,0.775,3572,0.775,3573,0.775,3574,0.775,3575,0.7,3576,0.775,3577,0.775,3578,0.775,3579,0.775,3580,0.775,3581,0.775,3582,0.775,3583,1.796,3584,2.052,3585,0.775,3586,0.775,3587,8.004,3588,0.775,3589,0.775,3590,0.775,3591,0.775,3592,0.775,3593,0.775,3594,0.775,3595,0.775,3596,0.775,3597,0.775,3598,0.775,3599,0.775,3600,0.775,3601,0.775,3602,0.775,3603,0.775,3604,0.775,3605,0.775,3606,0.775,3607,0.775,3608,0.775,3609,0.775,3610,0.775,3611,0.775,3612,0.775,3613,0.775,3614,0.775,3615,0.775,3616,0.775,3617,0.775,3618,0.775,3619,0.775,3620,0.775,3621,0.775,3622,0.7,3623,0.7,3624,0.775,3625,0.775,3626,0.7,3627,0.7,3628,0.775,3629,0.775,3630,0.7,3631,0.775,3632,0.775,3633,0.775,3634,0.775,3635,0.7,3636,0.651,3637,0.775,3638,0.775,3639,1.454,3640,1.454,3641,0.7,3642,0.775]],["t/84",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,221,2.994,337,1.189,651,1.73]],["d/84",[]],["k/84",[]],["b/84",[2,0.162,4,0.214,18,2.541,30,2.959,41,1.436,43,0.747,66,1.32,69,2.318,71,2.111,83,1.771,93,1.199,98,1.134,100,1.249,106,0.723,108,0.809,112,0.42,113,1.896,117,1.436,120,1.506,121,1.964,124,0.685,129,2.071,133,1.29,134,1.921,139,3.062,143,1.872,144,1.947,145,2.135,146,2.344,147,2.272,151,5.003,152,2.466,153,2.388,155,1.89,157,1.488,161,3.162,163,0.83,167,1.276,202,0.739,216,1.418,218,2.153,221,3.712,225,0.506,229,2.166,230,3.32,231,5.688,232,3.591,237,1.06,238,2,239,1.472,240,1.618,241,0.893,243,2.693,244,2.551,245,2.277,249,0.997,250,2.25,255,2.791,256,1.425,257,2.167,258,1.425,266,2.533,268,1.262,269,1.942,279,2.91,280,2.434,282,0.982,283,3.081,284,0.859,287,2.963,288,1.234,290,1.877,291,1.095,292,2.361,295,2.761,304,0.79,305,2.228,308,1.555,314,0.904,315,1.121,337,2.836,338,0.818,341,2.043,354,1.454,357,0.79,358,1.418,359,2.005,360,2.785,363,3.075,364,1.541,365,0.955,366,1.176,367,1.055,368,2.813,369,2.067,370,3.082,371,1.087,377,2.902,385,1.384,387,1.804,388,0.678,399,3.126,400,2.235,403,2,404,1.7,407,2.551,408,1.199,414,1.114,415,2.282,425,3.304,426,2.43,428,1.436,433,1.849,442,3.042,444,2.245,445,1.826,456,1.045,457,1.741,474,1.055,479,0.87,480,0.893,487,2.624,488,2.388,489,1.134,505,0.818,507,1.894,527,0.818,529,1.552,533,0.997,538,1.511,540,2.082,542,2.003,543,1.681,551,4.994,555,0.799,557,1.898,561,0.904,567,1.095,590,1.336,611,2.807,613,0.968,644,1.305,645,2.159,647,1.095,651,4.703,654,1.444,655,3.943,657,1.384,663,1.641,665,1.176,669,2.486,670,1.199,672,2.01,674,1.511,675,0.942,676,1.472,677,0.942,678,2.244,679,1.027,683,1.812,690,3.31,694,0.997,698,1.59,704,1.012,705,1.114,706,2.357,707,1.861,708,1.012,710,0.818,717,0.904,718,2.215,719,1.199,720,1.176,726,1.83,731,3.426,733,2.543,735,1.536,737,1.444,740,2.043,741,4.819,761,1.573,762,0.968,763,1.199,764,2.403,765,2.687,774,3.586,775,2.58,778,2.902,786,1.199,818,5.143,819,1.771,820,2.086,821,2.531,822,1.444,861,2.486,931,0.838,932,1.725,937,2.177,947,1.69,950,3.306,955,1.027,956,0.828,957,2.746,958,3.02,959,1.06,960,1.276,971,2.397,973,1.305,984,2.067,1005,1.725,1008,1.929,1009,1.488,1021,2.067,1032,1.725,1034,1.59,1036,1.369,1039,1.369,1077,2.131,1277,3.295,1647,1.536,1648,3.441,1665,5.545,1689,1.725,1697,2.231,1709,1.652,1727,1.725,1747,1.812,1788,4.275,1803,1.536,1819,1.725,1820,2.761,2072,1.369,2089,1.223,2093,1.59,2170,3.441,2288,1.488,2325,1.488,2347,3.998,2375,1.921,2430,1.921,2435,1.652,2439,1.725,2589,7.483,2591,4.336,2593,2.882,2599,2.882,2601,3.712,2604,2.882,2609,1.725,2610,3.306,2612,1.134,2614,1.812,2618,2.067,2619,1.336,2620,1.921,2622,4.039,2623,1.921,2624,1.921,2634,1.725,2645,3.209,2649,3.027,2650,3.209,2651,3.712,2652,1.59,2662,1.812,2663,1.812,2664,3.027,2667,1.812,2684,1.921,2687,1.652,2688,1.536,2693,1.276,2694,3.453,2697,1.921,2709,2.761,2759,1.725,2760,3.712,2761,2.58,2762,1.725,2764,3.027,2767,4.039,2768,4.643,2769,1.725,2771,1.725,2773,1.725,2774,1.725,2776,1.725,2777,1.725,2778,1.725,2779,1.725,2780,1.725,2781,1.812,2782,1.276,2783,1.06,2785,2.067,2787,1.812,2788,1.725,2961,4.366,3303,7.32,3304,1.921,3309,1.921,3310,1.921,3312,1.921,3361,1.725,3445,1.652,3626,2.067,3643,4.447,3644,5.195,3645,4.447,3646,4.447,3647,4.447,3648,4.447,3649,4.447,3650,5.195,3651,4.447,3652,4.447,3653,4.447,3654,4.447,3655,2.067,3656,2.067,3657,2.288,3658,2.288,3659,2.288,3660,2.288,3661,1.812,3662,2.288,3663,2.288,3664,2.288,3665,2.288,3666,2.288,3667,2.288,3668,3.823,3669,2.288,3670,2.288,3671,4.924,3672,4.924,3673,4.924,3674,2.288,3675,2.288,3676,2.288,3677,3.823,3678,3.823,3679,2.288,3680,3.823,3681,2.288,3682,2.288,3683,4.447,3684,5.752,3685,4.924,3686,4.924,3687,2.288,3688,2.288,3689,2.288,3690,2.288,3691,1.812,3692,2.067,3693,4.924,3694,2.288]],["t/85",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,112,0.729,1990,1.84,3695,2.004]],["d/85",[]],["k/85",[]],["b/85",[2,0.256,4,0.3,18,1.923,25,2.689,69,1.705,71,2.47,81,1.936,106,1.744,107,2.792,112,1.48,113,1.984,120,1.689,124,1.085,129,1.085,132,1.936,133,1.864,144,1.885,146,2.137,147,2.145,154,1.182,155,2.548,163,0.786,167,2.02,194,2.731,199,2.616,202,2.85,218,2.67,225,0.801,228,1.652,229,1.885,232,2.678,238,2.277,239,2.578,243,1.555,244,2.941,245,2.343,250,2.413,256,2.397,257,2.391,258,2.357,265,3.36,266,2.679,268,1.823,269,2.98,279,2.82,280,2.832,281,2.589,283,1.451,284,1.36,285,2.442,287,3.103,288,2.416,290,1.62,292,1.237,300,1.602,303,3.674,304,2.932,305,2.462,308,2.364,315,1.063,329,3.857,332,1.678,337,1.085,338,2.678,341,1.157,345,3.309,347,1.764,348,2.776,352,2.98,354,1.378,357,1.907,358,2.048,359,2.487,360,2.259,362,2.337,364,2.548,365,1.512,368,2.845,369,2.269,370,3.102,371,1.904,377,2.786,384,3.149,385,2.71,387,2.024,388,1.984,394,1.626,399,1.209,402,4.09,403,2.454,405,1.705,407,2.069,432,3.041,433,2.074,445,2.048,456,2.045,469,2.873,470,1.828,474,2.67,475,2.065,476,2.065,477,1.491,478,2.167,479,2.1,480,1.413,487,1.096,491,3.699,498,1.764,499,1.764,500,2.545,502,1.578,505,2.678,513,1.936,533,2.406,540,1.311,557,1.196,569,1.734,697,2.167,724,2.167,726,1.734,728,2.737,758,1.705,767,1.862,787,3.1,803,2.114,947,1.602,956,1.999,980,2.114,1007,5.214,1011,3.577,1038,2.482,1087,1.471,1731,3.079,1740,1.862,1760,1.898,1772,3.391,1843,2.287,1870,2.225,1988,1.975,1990,4.845,2112,2.731,2136,3.577,2158,2.225,2164,3.699,2308,3.013,2612,1.795,2619,3.906,2941,2.952,2942,2.839,2991,4.3,3695,4.949,3696,2.518,3697,6.656,3698,6.764,3699,7.128,3700,7.485,3701,5.045,3702,8.78,3703,7.485,3704,7.128,3705,7.485,3706,4.163,3707,3.272,3708,3.272,3709,5.045,3710,3.041,3711,2.518,3712,2.731,3713,2.868,3714,3.041,3715,2.616,3716,2.616,3717,2.616,3718,2.868,3719,5.045,3720,4.163,3721,5.927,3722,5.522,3723,2.616,3724,3.622,3725,3.622,3726,3.622,3727,3.622,3728,4.636,3729,4.636,3730,3.988,3731,3.622,3732,3.272,3733,3.272,3734,3.622,3735,3.272,3736,3.272,3737,8.058,3738,3.041,3739,4.163,3740,5.522,3741,3.486,3742,3.622,3743,3.272,3744,3.272,3745,2.616,3746,3.622,3747,3.272,3748,3.272,3749,3.622,3750,3.272,3751,3.272,3752,3.622,3753,3.622,3754,3.041,3755,3.272,3756,3.272,3757,2.868,3758,4.636,3759,3.622,3760,3.272,3761,3.272,3762,3.622,3763,2.356,3764,3.272,3765,3.272,3766,3.041,3767,3.622,3768,3.838,3769,3.041,3770,2.616,3771,3.272,3772,3.622,3773,3.622,3774,3.622,3775,2.868,3776,2.868]],["t/86",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,112,0.729,1990,1.84,2991,1.934]],["d/86",[]],["k/86",[]],["b/86",[2,0.279,4,0.312,18,2.029,65,2.498,69,1.863,71,2.583,106,1.864,107,2.946,112,1.538,113,2.093,120,1.805,124,1.185,129,1.185,132,2.115,133,1.992,144,1.988,146,2.254,147,2.218,154,1.291,155,2.612,163,0.859,173,2.983,202,2.527,218,2.456,225,0.875,228,1.804,229,1.988,232,2.525,237,1.833,238,2.391,239,2.719,243,2.358,244,3.008,245,2.423,250,2.365,256,2.478,257,2.456,258,2.317,265,3.513,266,2.74,268,1.948,269,3.071,279,2.795,281,2.588,284,1.486,285,2.61,286,2.034,287,3.063,288,2.527,290,1.732,292,1.351,300,1.749,303,3.817,304,3.301,305,2.334,308,2.645,329,2.825,332,1.833,337,2.114,338,3.345,341,1.263,345,3.46,347,1.927,348,2.903,352,3.156,354,2.245,357,2.038,358,2.189,359,2.139,362,2.498,364,2.437,365,1.651,368,2.712,369,1.988,370,2.987,371,2.008,384,3.365,385,2.137,387,2.163,388,2.093,394,1.776,399,1.97,402,3.878,403,2.391,405,1.863,407,1.825,433,1.486,445,2.189,456,1.929,469,3.03,470,1.996,474,2.581,475,2.256,476,2.256,477,2.429,478,2.367,479,2.245,480,2.303,487,1.198,491,4.073,498,1.927,499,1.927,500,2.685,502,1.724,505,2.995,513,2.115,533,2.571,538,1.564,540,1.432,557,1.306,569,1.894,663,1.699,690,1.894,697,2.367,710,1.415,724,2.367,726,1.894,728,2.925,758,1.863,767,2.034,787,2.734,803,2.31,818,1.927,956,2.137,1011,2.115,1038,2.619,1087,2.396,1319,1.651,1731,3.291,1772,3.624,1843,2.498,1870,2.43,1988,2.111,1990,4.726,2112,2.983,2136,3.773,2158,2.43,2164,4.163,2215,3.323,2292,2.31,2308,2.159,2368,2.498,2831,2.206,2941,3.155,2942,3.034,2991,5.132,3695,4.59,3706,4.449,3707,3.574,3708,3.574,3709,2.983,3710,3.322,3711,2.75,3712,2.983,3714,3.322,3715,2.857,3716,2.857,3717,2.857,3718,3.133,3738,3.322,3739,4.449,3745,2.857,3758,3.322,3763,2.573,3768,4.102,3770,2.857,3777,8.217,3778,7.931,3779,7.826,3780,7.059,3781,9.215,3782,7.826,3783,7.826,3784,7.826,3785,3.957,3786,3.957,3787,3.957,3788,3.322,3789,3.957,3790,2.498,3791,3.574,3792,2.983,3793,3.957,3794,3.957,3795,3.957,3796,5.331,3797,7.826,3798,3.574,3799,3.957,3800,3.574,3801,3.957,3802,3.574,3803,3.574,3804,3.574,3805,3.957,3806,3.574,3807,3.957,3808,3.957,3809,3.957,3810,3.957,3811,3.957,3812,3.957,3813,3.957,3814,3.574,3815,3.574,3816,3.574,3817,4.941,3818,3.574,3819,3.574,3820,3.574,3821,3.574]],["t/87",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,112,0.784,1624,2.775]],["d/87",[]],["k/87",[]],["b/87",[4,0.228,14,4.853,18,2.642,25,2.27,29,1.747,30,1.871,41,2.302,71,2.851,83,1.662,100,3.63,107,0.885,112,0.856,113,1.625,120,1.875,124,2.231,129,2.122,132,1.134,133,1.85,144,1.995,145,1.829,147,1.959,148,6.93,154,1.171,155,1.936,161,3.026,163,0.46,202,3.372,208,1.599,218,2.697,225,0.469,228,0.967,229,1.873,232,3.63,237,0.983,238,2.238,239,0.817,241,0.828,243,1.995,244,1.895,245,2.505,249,2.388,250,2.206,256,2.304,257,2.168,258,2.304,265,2.461,266,2.097,268,1.184,269,2.855,279,2.741,280,2.593,281,2.348,282,3.197,283,1.437,284,0.797,285,2.71,287,3.016,288,1.158,290,1.608,291,1.015,300,4.448,303,4.565,304,3.306,305,2.71,306,4.755,308,2.101,310,1.599,317,1.21,329,3.713,338,0.759,341,0.677,347,1.033,352,3.231,357,1.239,358,1.331,359,2.794,362,1.518,364,2.314,365,0.885,366,1.09,367,0.586,368,2.762,369,1.544,370,3.113,371,1.326,379,5.378,388,1.063,393,1.033,394,2.092,402,0.983,403,1.533,405,0.999,408,2.872,415,2.023,425,1.867,426,1.133,433,2.059,439,4.601,442,0.629,445,0.787,451,1.033,456,1.498,469,1.54,474,2.469,477,2.522,479,0.807,480,3.13,487,0.642,488,2.297,489,1.051,491,3.495,492,1.238,498,1.033,499,1.033,500,0.807,502,0.924,505,1.667,508,1.303,527,0.759,533,3.685,538,2.8,540,0.768,543,2.271,555,1.915,557,1.538,559,1.842,561,1.842,563,0.885,565,1.134,567,1.015,569,1.015,611,0.861,613,0.898,615,1.918,656,3.565,663,3.84,666,4.62,672,1.629,678,1.4,718,2.868,724,1.269,726,1.015,727,0.938,740,1.918,743,1.303,746,1.238,764,0.797,767,1.844,787,0.983,819,0.983,841,0.983,937,0.938,947,1.586,950,1.4,956,1.299,980,3.2,1007,3.763,1008,1.07,1038,2.033,1039,2.789,1067,1.158,1087,0.861,1106,1.424,1271,1.269,1319,0.885,1624,5.978,1669,5.024,1729,1.424,1730,3.366,1736,1.339,1740,3.642,1751,1.532,1772,1.303,1793,1.424,1811,5.816,1816,2.333,1829,1.339,1851,2.591,1862,1.532,1863,1.916,1988,1.283,1990,2.539,2084,1.09,2100,4.601,2130,1.424,2155,1.599,2156,1.599,2164,3.685,2194,1.532,2203,5.5,2215,0.999,2232,1.781,2248,1.424,2261,1.781,2265,4.924,2283,3.366,2291,1.68,2313,1.916,2333,1.68,2367,2.841,2370,1.68,2612,1.051,2831,1.183,2953,2.408,2991,4.796,3137,1.532,3226,5.901,3695,4.742,3741,3.461,3790,1.339,3822,5.535,3823,6.008,3824,5.535,3825,5.535,3826,5.535,3827,5.535,3828,6.008,3829,5.481,3830,4.661,3831,9.127,3832,4.661,3833,5.481,3834,6.128,3835,5.481,3836,6.008,3837,6.008,3838,4.21,3839,3.24,3840,1.916,3841,2.121,3842,3.012,3843,2.121,3844,1.781,3845,5.535,3846,2.121,3847,3.24,3848,4.951,3849,3.24,3850,3.24,3851,4.21,3852,1.916,3853,3.24,3854,1.916,3855,7.006,3856,1.916,3857,3.24,3858,3.24,3859,6.008,3860,4.951,3861,3.24,3862,1.916,3863,3.913,3864,3.012,3865,3.24,3866,3.24,3867,1.68,3868,2.121,3869,1.916,3870,1.916,3871,2.121,3872,4.21,3873,1.916,3874,3.587,3875,2.121,3876,2.121,3877,2.121,3878,2.121,3879,3.587,3880,3.24,3881,3.587,3882,4.951,3883,3.24,3884,4.661,3885,3.24,3886,3.587,3887,3.24,3888,3.24,3889,3.24,3890,3.587,3891,3.587,3892,3.24,3893,3.24,3894,3.24,3895,3.24,3896,7.803,3897,1.916,3898,2.121,3899,1.916,3900,1.916,3901,2.121,3902,3.514,3903,1.916,3904,3.587,3905,2.121,3906,1.916,3907,1.916,3908,2.121,3909,1.916,3910,1.916,3911,1.916,3912,2.121,3913,2.121,3914,2.121,3915,1.916,3916,1.916,3917,1.916,3918,2.121,3919,2.494,3920,1.916,3921,1.916,3922,1.916,3923,2.121,3924,1.916,3925,1.916,3926,1.916,3927,4.951,3928,3.587,3929,3.24,3930,1.916,3931,1.916,3932,1.916,3933,2.121,3934,4.601,3935,3.24,3936,1.916,3937,1.916,3938,1.916,3939,2.121,3940,1.916,3941,2.121,3942,2.121,3943,2.121,3944,2.121,3945,2.121,3946,2.121,3947,2.121,3948,2.121,3949,2.121,3950,2.121,3951,2.121,3952,2.121,3953,2.121,3954,7.006,3955,2.121,3956,2.121,3957,2.121,3958,2.121,3959,2.121,3960,2.121,3961,2.121,3962,2.121,3963,4.661,3964,2.121,3965,2.121,3966,2.121,3967,2.121,3968,2.121,3969,2.121,3970,2.121,3971,2.121,3972,2.121,3973,2.121,3974,2.121,3975,2.121,3976,2.121,3977,2.121,3978,2.121,3979,2.121,3980,2.121,3981,1.916,3982,2.121,3983,2.121,3984,2.121,3985,2.121,3986,2.121,3987,1.916,3988,1.916,3989,1.916,3990,2.408,3991,1.916,3992,1.916,3993,2.121,3994,1.424,3995,1.781,3996,1.916,3997,1.916,3998,1.916,3999,1.916,4000,2.121,4001,1.916,4002,3.012,4003,2.121,4004,2.121,4005,2.121,4006,1.916,4007,1.916,4008,2.121,4009,1.68,4010,1.916,4011,1.916,4012,2.121,4013,1.916,4014,2.121,4015,1.916,4016,2.121,4017,1.916]],["t/88",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,208,3.217,1624,2.775]],["d/88",[]],["k/88",[]],["b/88",[4,0.096,14,0.614,18,2.533,25,3.183,29,3.573,30,2.052,41,3.165,43,0.474,52,0.614,54,1.237,62,0.476,69,1.216,71,2.103,73,0.708,77,0.52,82,2.011,83,2.243,85,0.584,93,1.075,95,0.391,100,3.651,106,0.459,107,0.323,108,0.274,110,0.52,112,0.142,113,0.23,117,0.771,119,3.071,120,2.245,121,0.701,123,1.197,124,0.916,129,2.163,133,2.353,134,1.995,139,0.606,141,0.453,143,0.78,144,1.091,145,2.872,146,0.655,147,1.413,148,5.353,151,1.68,152,1.102,153,1.057,154,1.138,155,0.397,161,2.445,162,0.432,163,0.168,166,0.462,198,1.728,202,3.293,208,1.948,216,0.539,218,1.963,225,0.171,229,2,230,0.771,232,3.536,235,0.442,237,0.673,238,2.239,241,1.194,243,2.034,244,1.73,245,1.924,249,1.333,250,0.942,256,2.103,257,0.539,258,1.329,266,1.745,268,0.48,269,1.427,279,2.936,280,3.96,281,1.202,282,2.079,283,1.225,284,2.101,285,0.343,286,1.055,287,2.664,290,0.602,292,0.882,300,4.354,303,3.87,304,3.291,305,2.383,306,4.009,307,1.334,308,2.352,310,0.584,311,1.516,314,0.306,315,0.426,317,0.442,329,2.177,331,0.391,332,0.95,338,2.701,340,2.341,341,0.655,344,0.777,345,2.372,347,0.999,348,2.076,352,2.549,354,0.983,358,2.364,359,2.716,360,1.889,363,0.414,364,0.55,367,1.337,368,2.274,369,2.355,371,0.584,379,3.052,385,2.734,388,0.23,394,2.296,399,2.813,400,0.903,401,1.01,403,0.364,404,0.268,407,2.422,408,3.721,414,3.258,415,2.892,425,1.552,426,2.768,428,0.771,433,1.31,442,1.889,445,1.437,446,1.426,451,0.377,456,1.868,457,0.274,474,0.214,477,1.739,480,3.09,482,0.476,487,1.759,488,1.672,489,0.384,491,3.374,492,3.508,500,1.474,503,0.56,505,1.094,507,1.017,508,1.26,511,1.41,513,0.777,515,1.225,519,0.353,521,0.829,527,0.924,529,0.59,533,3.29,538,3.306,540,2.307,542,0.406,543,1.044,547,2.086,555,2.523,557,2.301,559,2.45,561,1.378,563,2.963,565,1.097,567,0.371,572,0.893,575,0.918,613,1.476,615,1.097,637,1.334,644,0.265,645,0.262,647,1.464,648,2.261,656,2.678,657,1.851,663,3.823,665,0.747,666,1.547,670,0.406,672,3.157,674,0.575,675,0.319,676,0.56,677,0.319,678,1.194,679,0.348,682,1.096,690,0.696,692,0.793,694,0.633,697,2.721,700,0.406,701,1.41,702,1.944,703,0.359,704,0.343,705,0.377,708,0.907,710,0.277,717,0.306,718,1.628,720,1.328,724,1.546,726,0.982,727,3.082,728,2.979,731,2.376,733,2.817,734,0.414,736,0.489,739,0.624,740,1.864,741,1.017,749,0.848,761,1.993,762,0.868,764,1.31,778,3.703,781,2.823,787,1.417,803,0.453,818,4.104,819,1.197,841,3.346,922,1.377,929,3.757,931,0.947,937,1.142,941,0.464,942,0.489,946,0.464,950,1.361,956,0.526,960,0.485,974,1.055,980,0.848,981,3.186,986,3.911,990,1.903,994,0.918,1007,1.879,1008,2.133,1011,0.777,1033,0.614,1038,2.155,1039,1.228,1068,1.01,1077,0.432,1087,0.315,1106,2.341,1271,3.812,1276,0.614,1277,0.652,1282,0.893,1283,0.359,1310,1.796,1315,1.631,1319,0.856,1363,0.52,1389,0.7,1395,0.584,1624,6.416,1648,2.086,1669,0.414,1730,4.638,1736,1.295,1740,4.193,1751,0.56,1760,0.762,1774,0.504,1787,1.01,1788,1.035,1789,1.05,1790,1.734,1793,0.52,1798,0.584,1808,1.68,1811,6.064,1819,1.096,1820,1.05,1830,3.209,1844,0.539,1851,3.693,1866,0.52,1870,0.893,1872,1.426,1988,0.734,1990,3.498,1993,0.343,2027,2.601,2065,0.584,2084,1.573,2089,0.414,2093,4.751,2115,0.893,2130,3.901,2132,0.945,2134,0.464,2136,1.381,2149,0.52,2158,0.476,2161,0.614,2162,0.7,2164,3.772,2189,2.169,2212,3.601,2215,2.407,2244,3.728,2248,5.07,2254,1.01,2261,3.253,2263,0.614,2264,0.464,2265,5.318,2273,0.56,2274,0.464,2283,0.56,2291,3.347,2306,0.651,2308,0.793,2367,2.046,2369,1.151,2370,0.614,2371,1.151,2402,2.529,2421,0.614,2425,1.426,2431,0.651,2445,0.504,2469,4.633,2473,0.584,2479,1.313,2482,0.651,2549,2.568,2688,0.52,2693,0.81,2767,0.489,2768,0.52,2783,2.691,2831,1.44,2956,2.306,2961,1.631,2972,0.539,2991,4.745,3226,4.144,3339,1.853,3361,0.584,3467,6.173,3535,2.379,3542,1.05,3636,2.568,3695,4.884,3710,0.651,3741,1.631,3790,4.401,3817,0.918,3822,1.313,3823,1.313,3824,2.763,3825,2.763,3826,1.853,3827,3.5,3828,1.853,3831,6.821,3836,1.313,3837,1.313,3838,2.334,3839,6.628,3840,6.043,3844,0.651,3847,1.853,3848,2.763,3849,0.7,3850,2.763,3851,2.763,3852,1.313,3853,5.248,3854,1.313,3855,7.821,3856,1.313,3857,2.334,3858,1.313,3859,4.619,3860,3.5,3861,1.313,3862,0.7,3863,1.22,3864,2.169,3865,0.7,3866,0.7,3867,0.614,3869,1.313,3870,0.7,3872,2.334,3873,0.7,3880,1.313,3882,2.763,3883,1.313,3885,1.313,3887,1.313,3888,1.313,3889,1.313,3892,1.313,3893,1.313,3894,1.853,3895,2.763,3896,1.313,3897,1.853,3899,1.853,3900,1.853,3902,2.629,3903,1.853,3906,3.15,3907,1.853,3909,2.334,3910,2.334,3911,1.853,3915,1.313,3916,0.7,3917,1.853,3919,1.01,3920,0.7,3921,1.853,3922,1.853,3924,2.334,3925,1.853,3926,1.853,3929,2.334,3930,1.853,3931,0.7,3932,1.853,3934,3.548,3935,0.7,3936,1.853,3937,0.7,3938,1.853,3940,1.853,3954,0.7,3981,0.7,3987,0.7,3988,0.7,3989,0.7,3990,0.52,3991,1.313,3992,0.7,3994,0.52,3995,0.651,3996,1.313,3997,1.313,3998,1.853,3999,1.853,4001,1.313,4002,4.697,4006,5.429,4007,5.429,4009,5.412,4010,0.7,4011,3.15,4013,3.5,4015,0.7,4018,0.775,4019,0.775,4020,6.69,4021,1.587,4022,0.775,4023,0.614,4024,3.487,4025,0.775,4026,0.614,4027,0.775,4028,0.775,4029,0.775,4030,3.059,4031,1.453,4032,0.775,4033,0.775,4034,2.052,4035,1.453,4036,1.453,4037,1.453,4038,5.623,4039,1.453,4040,1.453,4041,1.453,4042,1.453,4043,1.453,4044,1.453,4045,2.584,4046,1.453,4047,2.054,4048,2.052,4049,0.651,4050,3.487,4051,1.453,4052,2.584,4053,0.775,4054,0.775,4055,1.453,4056,1.453,4057,1.453,4058,2.584,4059,0.775,4060,4.843,4061,1.453,4062,1.453,4063,1.453,4064,1.453,4065,2.584,4066,6.372,4067,0.775,4068,2.584,4069,1.453,4070,2.334,4071,2.052,4072,1.453,4073,1.453,4074,0.775,4075,0.775,4076,0.775,4077,0.775,4078,0.775,4079,1.453,4080,0.775,4081,0.775,4082,0.775,4083,0.651,4084,0.775,4085,0.614,4086,1.313,4087,3.059,4088,0.775,4089,3.487,4090,0.651,4091,0.775,4092,1.453,4093,1.453,4094,1.453,4095,1.453,4096,1.453,4097,1.453,4098,0.775,4099,0.775,4100,0.52,4101,0.52,4102,0.614,4103,0.614,4104,0.775,4105,0.775,4106,2.584,4107,1.453,4108,1.453,4109,1.453,4110,1.453,4111,1.453,4112,2.052,4113,2.052,4114,2.052,4115,0.775,4116,0.651,4117,0.651,4118,0.775,4119,2.584,4120,0.775,4121,0.56,4122,3.875,4123,1.453,4124,1.453,4125,0.775,4126,0.775,4127,0.775,4128,0.775,4129,0.775,4130,1.453,4131,0.775,4132,0.775,4133,0.775,4134,0.775,4135,2.584,4136,0.775,4137,2.052,4138,2.052,4139,2.584,4140,2.763,4141,1.453,4142,1.453,4143,2.052,4144,2.584,4145,2.052,4146,0.775,4147,1.453,4148,2.052,4149,1.453,4150,0.775,4151,1.453,4152,1.453,4153,2.052,4154,2.052,4155,1.453,4156,1.453,4157,0.775,4158,3.059,4159,3.487,4160,1.453,4161,1.453,4162,0.775,4163,0.775,4164,1.453,4165,2.052,4166,2.584,4167,2.052,4168,0.775,4169,1.453,4170,0.775,4171,0.775,4172,0.775,4173,0.775,4174,0.775,4175,0.775,4176,2.584,4177,1.453,4178,1.453,4179,1.453,4180,1.453,4181,0.775,4182,0.775,4183,1.453,4184,0.775,4185,0.775,4186,0.775,4187,0.775,4188,0.775,4189,0.775,4190,0.775,4191,0.775,4192,1.453,4193,0.775,4194,0.775,4195,0.775,4196,0.775,4197,0.775,4198,1.453,4199,0.775,4200,0.775,4201,0.775,4202,0.775,4203,0.775,4204,0.775,4205,0.775,4206,0.775,4207,0.775,4208,0.775,4209,0.775,4210,1.453,4211,1.453,4212,0.775,4213,0.775,4214,0.775,4215,1.453,4216,0.775,4217,0.775,4218,1.453,4219,0.775,4220,0.775,4221,0.775,4222,2.584,4223,2.584,4224,2.584,4225,2.584,4226,2.052,4227,2.052,4228,2.052,4229,0.775,4230,0.775,4231,2.052,4232,0.775,4233,3.059,4234,0.775,4235,1.453,4236,2.584,4237,3.059,4238,2.584,4239,0.775,4240,0.775,4241,0.775,4242,0.775,4243,0.775,4244,0.775,4245,2.169,4246,0.775,4247,0.775,4248,0.775,4249,0.775,4250,0.614,4251,0.775,4252,0.775,4253,0.775,4254,0.775,4255,0.775,4256,0.775,4257,0.775,4258,0.775,4259,0.775,4260,0.775,4261,0.775,4262,0.775,4263,1.453,4264,1.453,4265,0.775,4266,0.775,4267,0.775,4268,0.775,4269,0.775,4270,0.775,4271,0.775,4272,0.775,4273,0.775,4274,0.775,4275,0.775,4276,0.775,4277,0.7,4278,0.651,4279,0.775,4280,0.775,4281,0.775,4282,0.464,4283,0.775,4284,2.584,4285,0.775,4286,0.775,4287,0.775,4288,0.775,4289,0.775,4290,0.775,4291,1.453,4292,0.775,4293,0.775,4294,0.775,4295,0.775,4296,0.775,4297,0.775,4298,0.7,4299,0.775,4300,0.775,4301,0.775,4302,0.775,4303,0.775,4304,0.775,4305,0.775,4306,0.775,4307,0.775,4308,0.775,4309,0.775,4310,0.775,4311,0.775,4312,0.775,4313,0.775,4314,0.775,4315,0.775,4316,0.775,4317,0.651,4318,0.775,4319,0.775,4320,0.775,4321,0.775,4322,2.052,4323,2.584,4324,0.775,4325,0.775,4326,0.775,4327,0.775,4328,0.775,4329,3.059,4330,0.775,4331,0.775,4332,0.775,4333,0.775,4334,0.775,4335,0.775,4336,0.775,4337,0.775,4338,0.775,4339,0.775,4340,0.775,4341,4.431,4342,0.775,4343,0.7,4344,5.364,4345,3.818,4346,0.584,4347,0.775,4348,0.775,4349,0.775,4350,1.453,4351,2.584,4352,2.306,4353,2.763,4354,0.775,4355,0.775]],["t/89",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,200,2.994,348,1.473,529,1.612]],["d/89",[]],["k/89",[]],["b/89",[2,0.277,4,0.261,18,2.514,25,1.907,29,1.907,30,2.658,37,2.405,41,1.471,43,1.278,44,1.785,66,2.023,71,1.292,82,1.731,106,1.237,108,1.384,112,1.43,117,2.2,120,2.146,121,1.337,123,1.814,124,1.173,129,1.173,133,1.322,134,2.285,143,2.668,144,2.347,145,2.599,146,1.25,147,2.355,152,2.652,153,2.023,154,1.278,155,1.07,163,0.85,200,5.869,202,1.264,216,2.172,218,1.718,225,0.866,229,1.976,230,1.471,238,2.604,239,1.508,240,3.701,241,2.285,243,3.032,244,2.704,245,2.149,247,2.546,250,2.204,256,1.929,257,1.843,258,1.451,266,2.463,279,2.904,281,1.666,282,1.681,287,2.972,288,2.691,289,2.233,290,3.071,292,2,305,1.092,308,1.237,314,1.548,315,1.718,337,1.754,338,1.401,341,2.662,345,1.731,348,3.808,352,1.322,354,1.489,357,2.023,358,2.172,359,1.07,360,2.952,364,2.233,365,1.634,367,1.616,368,2.746,369,2.553,370,2.433,371,2.215,385,3.513,387,2.571,388,2.08,399,1.955,400,3.486,403,2.188,407,1.811,415,2.887,426,2.459,428,2.2,442,2.471,451,1.907,456,1.917,457,2.947,474,1.936,479,1.489,487,2.523,490,2.722,500,2.227,505,1.401,521,2.233,527,1.401,529,4.225,538,1.548,543,2,555,2.451,557,1.292,644,1.337,645,1.322,648,1.731,657,1.418,672,2.451,674,2.315,675,1.611,676,2.256,677,1.611,678,1.528,679,1.758,694,3.056,699,2.286,700,4.368,701,3.196,702,3.911,703,2.713,704,1.731,705,1.907,706,1.874,707,1.907,708,1.731,709,2.013,710,1.401,711,2.405,717,1.548,718,2.256,723,3.196,731,3.078,739,1.681,757,2.013,759,2.286,761,2.41,762,1.657,774,3.295,778,2.955,781,1.976,786,2.052,930,2.546,931,1.435,950,2.285,955,1.758,956,2.54,957,1.681,958,3.204,959,1.814,960,1.307,965,1.94,970,2.233,974,3.011,981,2.013,994,2.472,1087,2.377,1273,2.343,1319,2.444,1717,2.952,1725,5.623,1760,3.069,2030,4.876,2057,2.405,2158,2.405,2215,3.303,2281,2.629,2315,2.546,2579,3.101,2612,1.94,2783,1.814,3194,2.828,3218,6.166,3219,5.555,3222,7.685,3225,3.101,3227,3.101,3228,3.101,3232,3.101,3234,7.033,3237,3.101,3239,6.337,3241,3.101,3243,6.337,3245,3.101,3248,6.337,3251,3.101,3253,6.337,3256,6.337,3259,3.101,4103,3.101,4121,2.828,4341,3.101,4356,6.536,4357,3.287,4358,3.287,4359,3.287,4360,3.916,4361,3.287,4362,3.537,4363,3.287,4364,3.287,4365,3.101,4366,3.287,4367,2.722,4368,3.916,4369,3.916,4370,5.857,4371,3.916,4372,4.916,4373,4.916,4374,3.287,4375,3.287,4376,4.916,4377,3.287,4378,3.916,4379,3.916,4380,3.916,4381,3.916,4382,3.537,4383,4.23,4384,4.916,4385,4.916,4386,3.287,4387,2.722]],["t/90",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,222,2.994,348,1.473,529,1.612]],["d/90",[]],["k/90",[]],["b/90",[2,0.287,4,0.267,18,2.548,25,1.978,29,1.978,30,2.448,37,2.495,41,1.526,43,1.326,44,1.852,66,2.079,71,1.341,82,1.796,106,1.283,108,1.436,112,1.317,117,2.261,120,1.841,121,1.387,123,1.882,129,1.217,133,1.371,134,2.348,143,2.727,144,2.384,145,2.393,146,1.297,147,2.38,152,2.681,153,2.079,154,1.326,155,1.11,163,0.882,216,2.233,218,1.766,222,5.977,225,0.898,229,2.019,230,1.526,238,2.619,240,3.883,241,2.348,243,3.015,244,2.741,245,2.188,247,2.642,250,2.23,256,1.965,257,1.883,258,1.492,266,2.497,279,2.912,281,1.712,282,1.744,287,2.985,288,2.733,289,2.316,290,3.052,292,2.055,305,1.133,308,1.283,314,1.606,315,1.766,337,1.803,338,1.453,341,2.532,345,1.796,348,3.495,352,1.371,354,1.545,357,2.079,358,2.233,359,1.11,360,2.993,364,2.268,365,1.695,367,1.661,368,2.769,369,2.584,370,2.478,371,2.04,385,3.545,387,2.628,388,2.126,399,2.009,400,3.421,403,2.118,407,1.861,415,2.926,426,2.504,428,2.261,442,2.509,451,1.978,456,1.959,457,2.803,474,1.979,479,1.545,487,2.562,490,2.824,500,2.289,505,1.453,521,2.316,527,1.453,529,4.082,543,2.055,555,2.77,644,1.387,645,1.371,648,1.796,672,2.505,674,2.379,675,1.672,676,2.318,677,1.672,678,1.585,679,1.824,694,2.622,700,3.758,701,3.285,702,3.998,704,1.796,705,1.978,706,1.945,707,1.978,708,1.796,709,2.088,710,1.453,711,2.495,717,1.606,718,2.318,723,3.285,731,3.134,739,2.584,757,2.088,759,2.371,761,2.477,762,1.719,774,3.355,778,3.037,781,2.05,786,2.129,930,2.642,931,1.489,950,2.348,955,1.824,956,2.596,957,1.744,958,3.263,959,1.882,960,1.356,965,2.013,974,3.094,981,2.088,1520,6.917,1717,3.063,1725,5.726,1760,3.154,2030,4.984,2057,2.495,2158,2.495,2215,1.913,2281,2.728,2579,3.217,2612,2.013,2783,1.882,3194,2.934,3218,6.278,3219,5.678,3222,7.754,3225,3.217,3227,3.217,3228,3.217,3232,3.217,3233,7.161,3237,3.217,3238,6.477,3241,3.217,3242,6.477,3245,3.217,3247,6.477,3251,3.217,3252,6.477,3255,6.477,3259,3.217,4103,3.217,4121,2.934,4341,3.217,4357,3.411,4358,3.411,4359,3.411,4361,3.411,4363,3.411,4364,3.411,4365,3.217,4366,3.411,4367,2.824,4372,5.053,4373,5.053,4374,3.411,4375,3.411,4376,5.053,4377,3.411,4383,4.347,4384,5.053,4385,5.053,4386,3.411,4387,2.824,4388,6.656,4389,4.063,4390,4.063,4391,4.063,4392,4.063,4393,4.063,4394,4.063,4395,4.063,4396,4.063]],["t/91",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,215,2.994,348,1.473,529,1.612]],["d/91",[]],["k/91",[]],["b/91",[2,0.258,4,0.301,18,2.448,25,2.705,29,1.778,30,2.566,37,2.242,41,1.371,43,1.192,44,1.665,66,1.919,71,1.205,82,1.615,106,1.153,108,1.291,112,1.381,117,2.087,120,2.299,121,1.247,123,2.574,124,1.664,129,1.094,133,1.233,134,2.168,143,2.558,144,2.277,145,2.508,146,1.166,147,2.305,152,2.596,153,1.919,154,1.192,155,0.998,163,0.793,202,1.179,215,5.666,216,2.061,218,1.63,225,0.808,229,1.894,230,1.371,238,2.591,239,1.406,240,4.158,241,2.168,243,3.017,244,2.633,245,2.074,247,2.375,250,2.152,256,2.004,257,1.766,258,1.862,265,3.374,266,2.399,268,1.834,269,1.875,279,2.911,281,1.913,282,1.568,287,2.957,288,2.61,289,2.082,290,3.039,292,1.897,305,1.018,308,2.124,314,1.443,315,1.63,337,1.664,338,1.306,341,2.582,345,1.615,348,3.385,352,2.27,354,1.389,357,1.919,358,2.061,359,0.998,360,2.875,362,1.545,363,1.952,364,2.166,365,1.524,367,1.533,368,2.702,369,2.494,370,2.349,371,2.138,385,3.451,387,2.464,388,1.993,399,1.854,400,3.386,403,2.215,407,1.718,415,2.811,426,2.374,428,2.087,442,2.397,451,1.778,456,1.838,457,2.859,474,1.856,479,1.389,487,2.448,490,2.538,500,2.113,505,1.306,511,1.993,527,1.306,529,3.989,538,1.443,543,1.897,555,2.626,557,1.205,561,1.443,644,1.247,645,1.233,648,1.615,657,1.322,672,2.35,674,2.196,675,1.503,676,2.14,677,1.503,678,1.425,679,1.639,684,2.637,694,2.93,699,2.131,700,4.237,701,3.67,702,4.19,704,1.615,705,1.778,706,1.748,707,1.778,708,1.615,709,1.877,710,1.987,711,2.242,717,1.443,718,2.14,723,3.032,727,2.973,731,2.971,739,1.568,757,1.877,759,2.131,761,2.286,762,1.545,774,3.181,778,2.803,781,1.842,786,1.913,930,2.375,931,1.338,950,2.168,955,1.639,956,2.435,957,1.568,958,3.093,959,1.691,960,1.219,965,1.81,974,2.856,981,1.877,1087,3.458,1273,2.185,1319,2.806,1717,2.753,1725,2.637,1760,2.911,2030,4.674,2057,2.242,2158,2.242,2215,3.166,2281,2.452,2315,2.375,2579,2.892,2612,1.81,2783,1.691,3194,2.637,3218,5.951,3219,5.325,3222,7.549,3225,2.892,3227,2.892,3228,2.892,3232,2.892,3235,6.788,3237,2.892,3240,6.074,3241,2.892,3244,6.074,3245,2.892,3249,6.074,3251,2.892,3254,6.074,3257,6.074,3259,2.892,4103,2.892,4121,2.637,4341,2.892,4357,3.065,4358,3.065,4359,3.065,4361,3.065,4362,3.298,4363,3.065,4364,3.065,4365,2.892,4366,3.065,4367,2.538,4372,4.664,4373,4.664,4374,3.065,4375,3.065,4376,4.664,4377,3.065,4382,3.298,4383,4.012,4384,4.664,4385,4.664,4386,3.065,4387,2.538,4397,8.982,4398,3.652,4399,3.652,4400,5.018,4401,4.4,4402,4.4,4403,3.298,4404,8.854,4405,3.652,4406,3.652,4407,3.652,4408,7.516,4409,5.556,4410,7.516,4411,5.556,4412,3.652,4413,3.652,4414,3.652,4415,3.652,4416,7.516,4417,7.516,4418,3.652,4419,3.652,4420,3.652,4421,3.652,4422,3.652]],["t/92",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,158,1.87,177,2.994,1283,1.84]],["d/92",[]],["k/92",[]],["b/92",[2,0.139,4,0.101,11,1.717,15,1.32,18,1.902,29,0.958,30,2.779,41,0.403,43,0.351,44,2.205,54,1.61,60,2.258,71,3.336,73,1.324,83,4.174,85,2.535,95,0.542,96,0.678,108,0.38,112,0.197,117,0.739,120,3.038,121,0.367,124,0.322,129,2.867,133,0.363,134,1.719,135,0.586,139,2.318,143,1.034,144,1.469,145,1.614,146,0.343,147,2.563,149,1.627,152,2.489,153,0.679,155,1.808,158,5.24,163,0.233,177,2.05,202,1.086,216,0.729,225,0.238,229,0.303,232,1.866,233,5.393,236,6.688,237,1.558,238,2.514,239,0.414,240,3.788,241,2.287,243,0.303,245,1.082,246,1.964,250,1.609,251,0.643,256,2.218,257,0.883,258,1.452,266,0.303,268,0.649,269,2.63,279,2.897,281,0.957,282,3.619,286,0.552,287,2.495,291,0.514,292,1.897,297,4.178,304,2.811,305,0.548,308,2.018,312,0.851,314,1.075,315,2.447,316,6.423,317,0.612,324,0.747,337,1.007,338,2.873,341,2.299,344,1.051,348,1.635,352,0.918,359,2.87,360,0.363,364,1.295,365,1.135,367,0.751,368,2.419,369,2.194,370,2.635,371,0.957,383,1.32,393,0.523,394,2.868,399,0.908,400,3.838,403,1.21,404,0.939,407,1.613,415,2.864,426,2.374,428,0.739,433,1.472,441,1.482,442,3.008,445,3.02,456,0.537,457,3.777,474,0.296,487,2.179,488,3.112,500,0.409,511,1.073,513,1.051,515,1.765,519,0.897,527,0.384,540,0.985,543,1.897,555,2.386,557,3.046,559,3.607,561,2.971,563,2.176,565,0.574,567,2.66,569,1.877,611,4.277,613,2.046,644,0.671,645,0.363,647,0.941,648,2.306,656,0.941,663,3.843,665,0.552,671,0.678,672,1.37,674,0.777,675,0.442,676,0.757,677,0.442,678,0.767,679,0.883,691,3.626,692,4.442,694,0.468,698,3.626,699,4.811,700,4.147,701,1.835,702,1.875,703,1.816,710,0.384,717,0.425,718,0.757,723,2.639,727,2.714,728,1.943,731,2.699,740,1.051,744,0.747,746,3.985,757,0.552,759,1.148,761,0.809,762,0.455,764,0.739,765,0.586,774,3.046,787,0.911,819,1.816,841,0.498,861,2.549,931,0.394,937,0.869,945,0.721,947,0.869,950,1.312,956,0.389,958,2.629,965,4.133,974,2.681,998,0.678,1008,0.542,1023,3.49,1036,1.177,1038,1.009,1043,0.851,1061,3.773,1087,2.772,1104,2.05,1108,0.612,1282,1.67,1283,2.715,1286,4.419,1288,5.153,1315,0.678,1317,4.921,1319,2.561,1320,1.482,1322,2.663,1323,2.663,1324,0.97,1325,0.97,1327,2.456,1328,0.851,1400,0.97,1409,1.776,1419,3.038,1603,0.902,1613,0.747,1647,2.632,1664,0.851,1668,3.322,1671,1.279,1730,0.66,1740,0.552,1764,3.322,1782,2.153,1825,0.721,1862,0.776,1884,2.823,2057,2.706,2089,0.574,2164,1.708,2194,0.776,2215,3.008,2298,7.445,2394,2.05,2442,0.97,2572,3.729,2630,4.433,2664,0.851,2693,0.599,2761,0.563,2831,3.098,2871,0.612,2969,0.97,3095,0.902,3111,2.456,3125,1.42,3127,5.294,3141,0.97,3143,0.97,3190,0.97,3191,0.97,3193,0.902,3194,0.776,3197,0.81,3341,4.432,3423,1.557,3535,1.67,3542,1.964,4009,2.663,4038,5.059,4121,2.429,4278,0.902,4346,2.535,4397,0.97,4402,0.851,4423,3.038,4424,7.615,4425,3.038,4426,2.456,4427,3.038,4428,3.541,4429,1.776,4430,3.038,4431,1.776,4432,3.038,4433,1.776,4434,2.456,4435,1.776,4436,2.456,4437,2.456,4438,6.502,4439,1.776,4440,3.038,4441,2.456,4442,3.038,4443,1.776,4444,2.456,4445,1.776,4446,2.456,4447,5.732,4448,1.967,4449,1.482,4450,1.967,4451,3.92,4452,1.074,4453,1.967,4454,1.074,4455,1.074,4456,1.074,4457,5.216,4458,4.711,4459,1.967,4460,4.407,4461,4.407,4462,1.074,4463,1.074,4464,1.074,4465,1.074,4466,1.074,4467,1.074,4468,1.074,4469,1.074,4470,1.074,4471,1.074,4472,1.074,4473,1.074,4474,1.074,4475,1.074,4476,1.074,4477,1.074,4478,3.98,4479,4.407,4480,1.967,4481,1.074,4482,1.074,4483,1.074,4484,1.074,4485,1.074,4486,1.074,4487,1.074,4488,1.074,4489,1.074,4490,1.074,4491,1.074,4492,1.074,4493,1.074,4494,1.074,4495,1.074,4496,1.074,4497,3.363,4498,1.967,4499,0.902,4500,0.851,4501,1.967,4502,1.074,4503,3.363,4504,2.72,4505,1.074,4506,1.074,4507,1.776,4508,1.776,4509,1.074,4510,1.074,4511,1.074,4512,2.72,4513,1.074,4514,1.074,4515,1.074,4516,1.967,4517,2.663,4518,1.074,4519,1.074,4520,1.074,4521,1.074,4522,1.074,4523,1.074,4524,1.074,4525,1.967,4526,1.074,4527,1.074,4528,1.074,4529,1.074,4530,1.074,4531,1.074,4532,2.456,4533,3.363,4534,3.363,4535,3.363,4536,2.72,4537,2.72,4538,2.456,4539,2.72,4540,3.92,4541,4.407,4542,3.363,4543,3.92,4544,2.72,4545,2.72,4546,2.72,4547,1.967,4548,1.074,4549,1.967,4550,1.967,4551,1.074,4552,1.074,4553,1.074,4554,1.074,4555,1.074,4556,1.074,4557,1.074,4558,1.074,4559,1.074,4560,1.074,4561,1.074,4562,1.074,4563,1.074,4564,1.074,4565,1.074,4566,1.074,4567,1.074,4568,1.074,4569,1.074,4570,1.074,4571,1.074,4572,1.074,4573,1.074,4574,1.074,4575,1.074,4576,1.074,4577,1.074,4578,1.074,4579,1.074,4580,1.074,4581,1.074,4582,1.074,4583,1.074,4584,1.074,4585,1.074,4586,1.074,4587,1.074,4588,1.074,4589,1.967,4590,1.967,4591,1.967,4592,1.967,4593,1.967,4594,1.967,4595,7.021,4596,1.967,4597,1.967,4598,1.967,4599,2.663,4600,1.967,4601,1.967,4602,3.363,4603,1.967,4604,1.967,4605,5.216,4606,3.92,4607,1.967,4608,3.363,4609,1.967,4610,3.363,4611,1.776,4612,3.92,4613,1.967,4614,1.967,4615,1.967,4616,1.967,4617,1.967,4618,1.967,4619,1.967,4620,1.967,4621,1.967,4622,1.967,4623,1.967,4624,1.967,4625,1.967,4626,5.216,4627,1.967,4628,1.967,4629,1.967,4630,1.967,4631,1.074,4632,1.074,4633,1.074,4634,1.074,4635,1.074,4636,1.074,4637,1.074,4638,1.074,4639,1.074,4640,1.074,4641,1.074,4642,1.074,4643,1.074,4644,1.074,4645,1.074,4646,1.074,4647,1.074,4648,1.074,4649,1.074,4650,1.074,4651,1.074,4652,1.074,4653,1.074,4654,4.836,4655,1.074,4656,0.97,4657,1.074,4658,0.97,4659,1.074,4660,0.851,4661,0.97,4662,4.407,4663,1.074,4664,0.851,4665,0.97,4666,3.363,4667,0.97,4668,0.97,4669,0.97,4670,1.89,4671,1.967,4672,0.97,4673,1.074,4674,1.074,4675,3.92,4676,0.97,4677,0.97,4678,0.97,4679,0.97,4680,0.97,4681,1.074]],["t/93",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,112,0.729,158,1.87,1283,1.84]],["d/93",[]],["k/93",[]],["b/93",[4,0.282,18,2.176,44,1.689,71,3.21,83,3.143,107,1.546,112,1.391,113,2.412,120,1.133,124,1.683,129,1.683,130,3.11,146,1.183,147,1.714,154,1.209,155,2.069,158,5.104,163,0.804,177,2.793,202,2.19,218,2.388,225,1.242,228,1.689,229,1.043,230,1.392,238,2.543,239,1.427,241,1.446,245,1.873,250,2.471,256,2.623,257,2.408,258,2.271,265,3.845,266,1.911,268,1.854,269,1.896,279,2.783,281,2.315,282,1.591,286,3.488,287,3.046,297,5.138,304,3.242,305,1.892,308,1.17,311,2.784,341,2.418,359,2.069,362,1.568,364,2.699,365,1.546,366,1.905,367,1.023,368,2.992,369,1.582,370,3.363,371,2.315,388,2.011,400,3.847,402,1.716,403,2.226,405,2.645,415,1.854,426,1.774,441,2.793,442,2.412,445,2.084,456,1.535,457,2.677,474,1.55,480,2.192,487,2.463,488,1.28,498,1.804,499,1.804,500,1.409,502,1.614,505,2.01,555,1.295,557,1.854,559,1.465,561,1.465,611,3.074,613,1.568,648,3.348,703,1.716,746,2.163,758,3.565,841,1.716,861,2.409,945,2.487,1077,3.132,1087,3.612,1282,3.45,1283,3.143,1286,7.331,1288,7.695,1317,8.033,1322,2.934,1323,2.934,1328,5.373,1664,6.444,1720,2.934,1772,3.45,2048,3.772,2163,1.905,2164,3.876,2612,1.836,2831,5.335,3229,2.575,4402,2.934,4423,3.347,4424,9.792,4425,8.28,4426,3.347,4427,3.347,4428,3.347,4429,5.074,4430,3.347,4431,5.074,4432,3.347,4433,5.074,4434,3.347,4435,5.074,4436,3.347,4437,3.347,4438,9.429,4439,5.074,4440,3.347,4441,5.074,4442,3.347,4443,5.074,4444,3.347,4445,5.074,4446,3.347,4447,7.47,4532,3.347,4538,3.347,4656,3.347,4658,5.074,4661,3.347,4665,3.347,4667,3.347,4668,3.347,4669,3.347,4672,3.347,4676,5.074,4677,3.347,4678,3.347,4679,3.347,4680,3.347,4682,7.572,4683,7.572,4684,6.785,4685,6.785,4686,3.705,4687,3.705,4688,3.705,4689,3.705,4690,5.618,4691,5.618,4692,5.618,4693,5.618,4694,5.618,4695,5.618,4696,5.618,4697,5.618,4698,5.618,4699,5.618,4700,5.618,4701,3.705,4702,8.138,4703,3.705,4704,3.705,4705,3.705,4706,3.705,4707,3.705,4708,8.138,4709,3.705,4710,5.618,4711,3.705,4712,3.705,4713,3.705,4714,3.705,4715,3.705,4716,3.705,4717,3.705,4718,3.705]],["t/94",[0,0.354,1,0.35,2,0.232,3,0.362,4,0.122,66,1.769,112,0.604,290,0.964,960,1.097,4719,1.757]],["d/94",[]],["k/94",[]],["b/94",[2,0.329,4,0.333,18,1.337,29,3.235,66,2.919,106,2.448,107,3.233,112,1.642,113,2.297,120,1.423,124,1.394,129,1.394,132,2.487,144,2.38,146,1.486,147,2.348,154,2.169,155,2.673,163,1.01,175,3.685,180,3.685,196,3.685,197,3.685,202,2.145,218,2.622,225,1.029,228,2.122,229,1.31,238,2.115,239,1.792,243,2.182,244,3.078,245,2.333,250,2.378,255,3.639,256,2.558,257,2.57,258,2.424,265,3.794,266,2.845,268,2.193,269,2.243,279,2.819,281,2.644,284,1.748,285,2.938,287,3.061,288,2.886,289,3.788,290,2.999,292,1.589,305,2.591,332,2.155,337,1.394,338,1.665,341,1.486,345,2.057,352,1.571,354,1.77,357,2.295,358,2.465,359,2.442,364,2.49,365,1.942,368,2.727,369,2.182,370,2.99,371,2.204,384,3.788,385,2.405,387,2.435,388,2.297,394,2.089,402,3.59,403,2.394,404,3.304,405,2.191,407,1.439,444,3.029,445,2.875,456,2.117,469,1.998,470,2.348,474,2.641,475,2.653,476,2.653,477,3.678,479,2.527,480,1.815,488,1.607,498,2.266,499,2.266,500,1.77,502,2.027,505,2.377,527,1.665,543,1.589,615,2.487,663,1.998,710,2.377,767,2.392,787,2.155,960,2.218,1038,3.448,1723,3.878,1772,4.08,1870,2.858,1988,2.377,1993,4.466,2037,2.858,2038,2.539,2044,2.858,2161,3.685,2163,2.392,2203,3.026,2274,2.784,3706,5.009,3763,3.026,4719,5.323,4720,7.375,4721,7.213,4722,8.452,4723,7.749,4724,7.783,4725,5.842,4726,6.738,4727,5.842,4728,4.203,4729,4.653,4730,4.653,4731,4.653,4732,4.653,4733,4.653,4734,6.644,4735,5.009,4736,4.203,4737,4.203,4738,4.203,4739,4.203,4740,3.508,4741,4.203,4742,4.203,4743,4.203,4744,4.203,4745,4.653,4746,3.508,4747,4.203,4748,4.203,4749,4.203,4750,4.203,4751,4.203,4752,3.508,4753,4.203,4754,4.203,4755,4.203,4756,4.203,4757,4.653,4758,4.653,4759,4.653]],["t/95",[0,0.335,1,0.331,2,0.22,3,0.342,4,0.116,66,1.073,175,2.461,255,1.182,290,0.912,404,1.073,960,1.037,1993,1.374]],["d/95",[]],["k/95",[]],["b/95",[4,0.271,29,4.047,54,2.536,66,3.09,106,2.299,108,1.873,112,0.973,113,1.571,121,2.484,124,1.587,129,2.489,144,1.492,146,1.692,147,2.369,152,2.364,153,2.87,154,1.729,155,2.647,163,1.15,218,2.625,225,1.172,229,1.492,238,1.326,241,2.839,243,2.641,244,2.25,245,2.294,250,2.175,256,2.401,257,2.463,258,1.803,266,2.52,279,2.85,281,1.507,284,1.99,287,3.055,288,2.349,290,2.842,305,2.818,308,2.625,315,1.554,337,1.587,341,1.692,348,3.083,357,1.83,360,3.165,364,1.419,367,1.462,368,2.818,369,2.641,370,3.101,371,2.364,385,2.634,387,3.045,388,1.571,403,2.238,407,1.638,426,1.674,433,3.121,442,2.652,456,1.988,457,1.873,474,2.008,477,3.42,487,2.708,488,1.83,527,1.895,543,1.809,613,2.242,644,2.838,645,2.805,657,1.918,710,2.603,730,4.882,739,2.275,745,3.446,764,1.99,931,1.942,950,2.839,955,2.379,956,3.009,957,3.568,958,3.42,959,2.454,960,2.429,971,2.58,1006,3.557,1038,2.699,1271,4.354,1718,3.345,1723,4.851,1877,3.994,1988,2.603,1993,4.387,2037,3.254,2038,2.891,2044,3.254,2045,5.104,2115,4.469,2163,4.272,2308,2.891,2761,2.777,2782,2.954,2783,2.454,4282,3.17,4670,3.683,4719,5.013,4720,5.486,4721,6.265,4724,7.619,4725,3.994,4726,5.486,4727,5.486,4735,3.994,4739,7.507,4740,3.994,4744,7.507,4746,3.994,4750,7.507,4752,3.994,4756,7.507,4760,8.311,4761,3.557,4762,8.947,4763,5.255,4764,8.311,4765,4.196,4766,4.196,4767,4.196,4768,4.196,4769,4.196,4770,5.299,4771,3.557,4772,4.196,4773,5.299,4774,4.196,4775,3.827,4776,4.196,4777,4.196]],["t/96",[0,0.302,1,0.299,2,0.319,3,0.308,4,0.104,66,0.968,181,2.22,243,0.789,255,1.066,404,0.968,960,0.936,1038,1.04,1993,1.24]],["d/96",[]],["k/96",[]],["b/96",[2,0.419,4,0.293,54,2.837,66,2.711,106,1.872,108,2.095,112,1.089,113,1.757,121,2.68,129,2.636,144,1.669,146,1.893,147,2.366,152,2.503,153,2.711,155,2.404,163,1.287,218,2.581,225,1.311,229,1.669,238,1.483,241,2.313,243,2.638,244,2.426,245,2.429,250,2.139,256,2.321,257,2.46,258,1.945,266,2.638,279,2.839,281,1.686,284,2.226,287,3.054,288,2.534,290,2.858,305,2.611,308,2.479,315,1.739,341,1.893,348,3.264,357,2.047,360,3.162,361,3.855,364,1.588,367,1.636,368,2.791,369,2.638,370,3.045,371,2.503,385,2.841,387,3.224,388,1.757,403,2.201,407,1.833,426,1.872,433,2.226,442,2.776,456,2.145,457,2.095,474,2.166,487,2.835,488,2.047,543,2.024,613,2.508,644,2.68,645,2.649,657,2.146,710,2.12,730,4.283,739,2.545,745,3.855,764,2.226,931,2.172,950,3.062,955,2.661,956,2.841,957,3.369,958,3.23,959,2.746,960,1.978,971,2.886,1038,2.911,1718,3.742,1723,5.136,1877,4.468,1988,2.12,1993,2.621,2037,3.64,2044,3.64,2045,3.64,2163,3.047,2308,3.235,2761,3.106,2782,3.305,2783,2.746,4282,3.546,4670,4.12,4719,4.703,4761,3.979,4763,4.281,4771,3.979,4775,4.281,4778,7.947,4779,8.404,4780,7.387,4781,7.947,4782,7.947,4783,4.976,4784,6.589,4785,8.799,4786,9.366,4787,8.799,4788,6.589,4789,4.694,4790,5.927,4791,4.976,4792,5.927,4793,5.354,4794,4.976,4795,5.354]],["t/97",[0,0.302,1,0.299,2,0.319,3,0.308,4,0.104,66,0.968,210,2.22,243,0.789,255,1.066,337,0.84,404,0.968,960,0.936,1993,1.24]],["d/97",[]],["k/97",[]],["b/97",[2,0.585,4,0.309,54,3.083,108,2.276,112,1.183,113,1.909,121,2.829,129,2.744,147,2.314,152,2.606,153,2.861,155,2.503,163,1.398,218,2.837,225,1.424,238,1.611,243,2.817,245,2.528,250,2.226,256,2.396,257,2.54,258,2.053,279,2.796,281,1.832,287,2.997,290,2.935,305,2.31,308,2.034,315,1.889,337,1.929,359,2.264,360,3.092,367,1.777,368,2.855,369,2.723,370,3.255,371,2.606,388,1.909,403,2.292,407,1.991,426,2.034,442,2.715,456,2.264,457,2.276,474,1.777,487,2.772,488,2.224,527,2.964,543,2.199,613,2.725,644,2.199,645,2.174,657,2.331,710,2.304,730,3.514,764,2.418,931,2.36,956,2.999,957,3.557,958,3.409,971,3.136,1718,4.065,1723,5.347,1877,4.854,1988,2.304,1993,2.847,2037,3.954,2044,3.954,2308,3.514,2761,3.374,2782,3.59,2783,2.983,4282,3.853,4719,5.348,4761,4.323,4771,4.323,4789,5.099,4796,8.273,4797,8.597,4798,7.689,4799,8.273,4800,8.273,4801,9.16,4802,9.16,4803,6.955,4804,6.44,4805,5.406,4806,5.816,4807,5.406,4808,6.44]],["t/98",[0,0.354,1,0.35,2,0.232,3,0.362,4,0.122,66,1.135,196,2.603,255,1.25,290,0.964,404,1.135,1993,1.453]],["d/98",[]],["k/98",[]],["b/98",[4,0.272,29,4.059,54,2.551,66,3.098,106,2.308,108,1.884,112,0.979,113,1.58,121,2.494,124,1.596,129,2.497,144,1.501,146,1.702,147,2.266,152,2.372,153,2.879,154,1.74,155,2.652,163,1.157,218,2.631,225,1.179,229,1.501,238,1.333,241,2.85,243,2.646,244,2.259,245,2.301,250,2.18,256,2.405,257,2.468,258,1.81,266,2.526,279,2.852,281,1.516,284,2.002,287,3.057,288,2.359,290,2.847,305,2.821,308,2.633,315,1.564,337,1.596,341,1.702,348,3.092,357,1.841,360,3.172,364,1.428,367,1.471,368,2.821,369,2.646,370,3.106,371,2.372,385,2.645,387,3.055,388,1.58,403,2.244,407,1.648,426,1.684,433,3.131,442,2.659,456,1.996,457,1.884,474,2.016,477,3.431,487,2.715,488,1.841,527,1.907,543,1.82,613,2.255,644,2.846,645,2.814,657,1.93,710,1.907,730,4.894,739,2.288,745,3.466,764,2.002,931,1.953,950,2.85,955,2.393,956,3.018,957,3.579,958,3.431,959,2.469,960,2.438,971,2.595,1006,3.578,1038,2.71,1271,4.371,1718,3.365,1723,4.866,1877,4.018,1988,1.907,1993,4.291,2037,3.273,2038,2.908,2044,3.273,2045,5.119,2115,4.487,2163,4.285,2308,2.908,2761,2.793,2782,2.972,2783,2.469,4282,3.189,4670,3.705,4719,4.794,4720,5.508,4721,6.284,4724,7.629,4725,4.018,4726,5.508,4727,5.508,4735,4.018,4738,7.53,4740,4.018,4743,7.53,4746,4.018,4749,7.53,4752,4.018,4755,7.53,4761,3.578,4763,5.276,4765,4.22,4766,4.22,4767,4.22,4768,4.22,4769,4.22,4771,3.578,4772,4.22,4774,4.22,4775,3.849,4776,4.22,4777,4.22,4809,8.337,4810,8.969,4811,8.337,4812,5.33,4813,5.33]],["t/99",[0,0.335,1,0.331,2,0.22,3,0.342,4,0.116,66,1.073,197,2.461,255,1.182,290,0.912,404,1.073,960,1.037,1993,1.374]],["d/99",[]],["k/99",[]],["b/99",[4,0.272,29,4.052,54,2.542,66,3.093,106,2.302,108,1.878,112,0.976,113,1.574,121,2.488,124,1.591,129,2.492,144,1.496,146,1.696,147,2.371,152,2.367,153,2.874,154,1.734,155,2.649,163,1.153,218,2.627,225,1.175,229,1.496,238,1.329,241,2.844,243,2.643,244,2.253,245,2.297,250,2.177,256,2.402,257,2.465,258,1.806,266,2.522,279,2.851,281,1.511,284,1.995,287,3.056,288,2.353,290,2.844,305,2.819,308,2.628,315,1.558,337,1.591,341,1.696,348,3.087,357,1.834,360,3.168,364,1.423,367,1.466,368,2.819,369,2.643,370,3.103,371,2.367,385,2.639,387,3.049,388,1.574,403,2.241,407,1.642,426,1.678,433,3.125,442,2.655,456,1.992,457,1.878,474,2.012,477,3.424,487,2.711,488,1.834,527,1.9,543,1.813,613,2.248,644,2.841,645,2.809,657,1.923,671,3.353,710,2.607,730,4.887,739,2.28,745,3.454,764,1.995,931,1.946,950,2.844,955,2.384,956,3.013,957,3.572,958,3.424,959,2.46,960,2.433,971,2.586,1006,3.566,1038,2.704,1271,4.361,1723,4.254,1988,2.607,1993,4.39,2037,3.261,2038,2.898,2044,3.261,2045,5.11,2115,4.476,2163,4.277,2308,2.898,2761,2.783,2782,2.961,2783,2.46,4282,3.178,4670,3.692,4719,5.017,4720,5.494,4721,6.273,4724,7.623,4725,4.004,4726,5.494,4727,5.494,4735,4.004,4737,7.516,4740,4.004,4742,7.516,4746,4.004,4748,7.516,4752,4.004,4754,7.516,4761,3.566,4763,5.264,4765,4.206,4766,4.206,4767,4.206,4768,4.206,4769,4.206,4771,3.566,4772,4.206,4774,4.206,4775,3.836,4776,4.206,4777,4.206,4814,8.321,4815,8.956,4816,8.321,4817,5.311,4818,5.311]],["t/100",[0,0.302,1,0.299,2,0.319,3,0.308,4,0.104,66,0.968,207,2.22,243,0.789,255,1.066,404,0.968,960,0.936,1038,1.04,1993,1.24]],["d/100",[]],["k/100",[]],["b/100",[2,0.42,4,0.293,54,2.845,66,2.715,106,1.877,108,2.101,112,1.092,113,1.762,121,2.684,129,2.639,144,1.674,146,1.898,147,2.368,152,2.506,153,2.715,155,2.407,163,1.29,218,2.585,225,1.314,229,1.674,238,1.487,241,2.319,243,2.64,244,2.431,245,2.432,250,2.142,256,2.323,257,2.463,258,1.948,266,2.64,279,2.84,281,1.691,284,2.232,287,3.055,288,2.538,290,2.861,305,2.614,308,2.483,315,1.743,341,1.898,348,3.268,357,2.052,360,3.165,361,3.865,364,1.592,367,1.64,368,2.793,369,2.64,370,3.047,371,2.506,385,2.846,387,3.228,388,1.762,403,2.204,407,1.837,426,1.877,433,2.232,442,2.779,456,2.148,457,2.101,474,2.17,487,2.838,488,2.052,543,2.029,613,2.515,644,2.684,645,2.654,657,2.152,671,3.752,710,2.126,730,4.29,739,2.551,745,3.865,764,2.232,931,2.178,950,3.067,955,2.668,956,2.846,957,3.375,958,3.235,959,2.753,960,1.983,971,2.894,1038,2.916,1723,4.589,1988,2.126,1993,2.628,2037,3.649,2044,3.649,2045,3.649,2163,3.055,2308,3.243,2761,3.114,2782,3.313,2783,2.753,4282,3.556,4670,4.131,4719,4.71,4761,3.99,4763,4.292,4771,3.99,4775,4.292,4779,8.411,4780,7.396,4783,4.989,4784,6.6,4788,6.6,4789,4.706,4791,4.989,4793,5.368,4794,4.989,4795,5.368,4819,7.958,4820,7.958,4821,7.958,4822,8.81,4823,9.376,4824,7.958,4825,5.943,4826,5.943]],["t/101",[0,0.4,1,0.396,2,0.398,3,0.409,4,0.138,112,0.682,243,1.046,4719,1.985]],["d/101",[]],["k/101",[]],["b/101",[2,0.695,4,0.329,18,1.478,66,2.462,106,2.252,107,3.414,112,1.704,113,2.425,120,1.573,129,1.54,132,2.749,144,2.488,146,1.642,147,2.425,154,2.327,155,2.69,163,1.116,181,4.072,202,1.66,207,4.072,218,2.722,225,1.137,228,2.345,229,1.448,238,2.21,239,1.981,243,2.905,244,3.15,245,2.258,250,2.393,255,3.528,256,2.486,257,2.635,258,2.486,265,3.966,266,2.869,279,2.823,281,2.731,284,1.931,285,3.152,287,3.054,288,2.995,289,4.064,290,2.592,292,1.756,305,2.281,332,2.382,337,1.54,341,1.642,345,2.274,352,1.736,354,1.956,357,2.462,358,2.644,359,2.535,364,2.485,365,2.146,368,2.676,369,2.304,370,2.899,371,2.327,384,4.064,385,2.581,387,2.612,388,2.425,394,2.309,402,3.302,403,2.402,404,3.204,405,2.421,407,1.59,456,2.236,469,2.208,470,2.595,474,2.649,475,2.932,476,2.932,477,2.116,478,3.077,479,2.711,480,2.006,488,1.776,498,2.504,499,2.504,500,1.956,502,2.24,505,2.55,543,1.756,615,2.749,651,2.24,767,2.644,960,2.379,1038,3.561,1723,3.002,1772,4.378,1870,3.158,1993,4.102,2044,3.158,2161,4.072,2203,3.344,2610,3.453,2709,3.714,3706,5.374,3763,3.344,4719,5.364,4728,4.645,4778,4.645,4779,8.659,4780,8.263,4781,4.645,4782,4.645,4783,5.984,4784,8.263,4788,6.868,4791,4.317,4794,4.317,4819,4.645,4820,4.645,4821,4.645,4824,4.645,4827,8.834,4828,8.181,4829,5.143,4830,5.143,4831,5.143]],["t/102",[0,0.302,1,0.299,2,0.319,3,0.308,4,0.104,66,0.968,219,2.22,243,0.789,255,1.066,337,0.84,404,0.968,960,0.936,1993,1.24]],["d/102",[]],["k/102",[]],["b/102",[2,0.586,4,0.309,54,3.091,108,2.283,112,1.186,113,1.914,121,2.834,129,2.747,147,2.317,152,2.609,153,2.866,155,2.506,163,1.402,218,2.84,225,1.428,238,1.616,243,2.82,245,2.531,250,2.229,256,2.399,257,2.543,258,2.057,279,2.797,281,1.837,287,2.998,290,2.938,305,2.314,308,2.04,315,1.895,337,1.934,359,2.268,360,3.096,367,1.782,368,2.857,369,2.726,370,3.257,371,2.609,388,1.914,403,2.295,407,1.997,426,2.04,442,2.719,456,2.268,457,2.283,474,1.782,487,2.776,488,2.23,527,2.969,543,2.205,613,2.733,644,2.205,645,2.18,657,2.338,671,4.077,710,2.31,730,3.524,764,2.425,931,2.366,956,3.005,957,3.563,958,3.416,971,3.145,1723,4.845,1988,2.31,1993,2.855,2037,3.966,2044,3.966,2308,3.524,2761,3.384,2782,3.601,2783,2.991,4282,3.864,4719,5.353,4761,4.336,4771,4.336,4789,5.114,4797,8.603,4798,7.7,4803,6.967,4805,5.421,4806,5.833,4807,5.421,4832,8.284,4833,8.284,4834,8.284,4835,9.172,4836,8.284,4837,6.458,4838,6.458]],["t/103",[0,0.376,1,0.372,2,0.379,3,0.384,4,0.13,112,0.641,243,0.982,359,0.953,4719,1.864]],["d/103",[]],["k/103",[]],["b/103",[2,0.7,4,0.322,18,1.639,66,2.642,107,2.38,112,1.767,113,2.559,120,1.745,129,1.709,132,3.049,144,2.598,147,1.441,154,2.497,155,2.359,163,1.238,202,2.47,210,4.517,218,2.822,219,4.517,225,1.261,228,2.601,229,1.606,238,2.308,239,2.197,243,2.849,244,2.365,245,2.382,250,2.407,255,3.658,256,2.547,257,2.657,258,2.547,265,4.141,266,2.598,279,2.797,281,2.737,285,3.383,287,3.014,288,2.47,289,4.362,290,2.532,305,2.133,337,2.763,338,2.041,359,2.764,364,2.471,365,2.38,368,2.761,369,2.431,370,3.161,371,2.456,388,2.559,394,2.561,402,3.998,403,2.477,404,3.322,405,2.686,407,1.764,456,2.359,474,2.733,477,2.347,479,2.169,498,2.778,499,2.778,500,2.169,502,2.485,527,2.041,543,1.948,767,2.932,787,2.642,960,2.553,1038,2.116,1772,3.503,1993,4.253,2610,3.83,3706,4.3,3763,3.709,4719,5.625,4796,5.152,4797,8.833,4798,8.492,4799,5.152,4800,5.152,4803,7.743,4805,4.789,4807,4.789,4832,5.152,4833,5.152,4834,5.152,4836,5.152,4839,8.632,4840,9.224,4841,8.632,4842,7.65]],["t/104",[0,0.354,1,0.35,2,0.232,3,0.362,4,0.122,66,1.135,180,2.603,255,1.25,290,0.964,404,1.135,1993,1.453]],["d/104",[]],["k/104",[]],["b/104",[4,0.273,29,4.064,54,2.557,66,3.101,106,2.311,108,1.889,112,0.981,113,1.584,121,2.498,124,1.6,129,2.5,144,1.504,146,1.706,147,2.268,152,2.374,153,2.883,154,1.744,155,2.654,163,1.16,218,2.634,225,1.181,229,1.504,238,1.337,241,2.855,243,2.648,244,2.262,245,2.304,250,2.182,256,2.407,257,2.47,258,1.813,266,2.528,279,2.853,281,1.52,284,2.006,287,3.058,288,2.362,290,2.849,305,2.823,308,2.636,315,1.567,337,1.6,341,1.706,348,3.096,357,1.845,360,3.174,364,1.431,367,1.474,368,2.823,369,2.648,370,3.108,371,2.374,385,2.649,387,3.059,388,1.584,403,2.246,407,1.652,426,1.687,433,3.135,442,2.661,456,2,457,1.889,474,2.02,477,3.435,487,2.717,488,1.845,527,1.911,543,1.824,613,2.261,644,2.85,645,2.817,657,1.934,671,3.373,710,1.911,730,4.899,739,2.293,745,3.474,764,2.006,931,1.958,950,2.855,955,2.398,956,3.022,957,3.583,958,3.435,959,2.475,960,2.442,971,2.601,1006,3.587,1038,2.715,1271,4.378,1723,4.272,1988,1.911,1993,4.294,2037,3.281,2038,2.915,2044,3.281,2045,5.126,2115,4.494,2163,4.291,2308,2.915,2761,2.799,2782,2.979,2783,2.475,4282,3.196,4670,3.713,4719,4.799,4720,5.516,4721,6.292,4724,7.634,4725,4.027,4726,5.516,4727,5.516,4735,4.027,4736,7.539,4740,4.027,4741,7.539,4746,4.027,4747,7.539,4752,4.027,4753,7.539,4761,3.587,4763,5.285,4765,4.23,4766,4.23,4767,4.23,4768,4.23,4769,4.23,4771,3.587,4772,4.23,4774,4.23,4775,3.858,4776,4.23,4777,4.23,4843,8.347,4844,8.978,4845,8.347,4846,5.342,4847,5.342]],["t/105",[0,0.335,1,0.331,2,0.22,3,0.342,4,0.116,147,0.785,187,2.343,255,1.182,561,1.229,650,2.087,651,1.354,652,1.909]],["d/105",[]],["k/105",[]],["b/105",[0,0.126,2,0.083,4,0.109,11,1.34,13,1.27,18,2.091,30,3.269,41,0.797,43,0.693,44,0.968,54,1.718,69,1,71,0.963,73,0.569,83,0.983,93,0.612,98,1.052,106,0.671,108,0.413,112,0.215,113,1.235,117,1.348,120,1.274,121,2.74,123,2.699,124,0.35,129,2.324,133,0.985,134,0.828,135,0.638,139,2.777,143,1.365,144,1.313,145,1.83,146,1.751,147,2.161,151,1.381,152,2.07,153,1.24,154,0.381,155,1.675,157,0.76,159,1.918,161,3.091,163,0.254,187,2.2,202,0.685,216,0.788,218,2.019,224,1.919,225,0.258,226,5.046,227,4.247,229,1.544,230,1.752,231,1.959,232,2.914,233,0.625,234,0.812,236,3.566,238,1.864,239,0.818,240,1.519,241,1.401,242,2.028,243,2.918,244,1.981,245,1.608,249,0.509,250,1.673,255,0.444,256,1.264,257,0.943,258,1.359,266,2.409,268,0.701,269,2.917,279,2.912,280,1.974,281,1.021,282,0.502,283,2.665,284,0.797,286,1.845,287,2.785,288,0.942,290,1.952,291,1.016,292,1.592,295,2.593,296,1.055,304,0.733,305,2.302,308,1.84,314,0.462,315,0.856,337,2.365,338,1.284,341,0.932,345,0.939,347,0.569,350,5.603,352,0.717,354,1.584,357,0.733,358,0.788,359,2.285,360,2.392,363,1.56,364,1.116,367,0.805,368,2.593,369,2.098,370,2.796,371,1.021,377,1.811,385,0.769,387,1.069,388,0.346,392,0.666,394,2.615,399,3.387,400,3.385,402,0.541,403,1.372,404,1.24,407,2.518,415,2.996,425,2.665,426,2.494,428,0.797,433,0.797,442,2.882,444,2.126,445,1.892,456,1.138,457,3.323,469,0.502,474,0.805,479,0.807,480,0.828,487,2.255,488,2.298,489,0.579,507,1.052,515,2.197,519,1.899,526,1.476,527,0.418,529,3.024,538,2.876,540,1.3,542,2.444,543,0.996,551,0.844,555,1.782,557,2.879,559,2.72,561,2.424,563,2.673,565,2.493,567,2.935,569,2.233,611,3.961,613,0.494,644,0.725,645,1.574,650,0.784,651,4.278,652,1.304,654,5.341,656,2.441,657,1.056,661,1.055,663,0.502,671,1.34,672,2.325,674,0.839,675,0.481,676,1.124,677,0.874,678,1.401,679,0.524,682,0.881,686,1.959,690,4.176,692,4.234,694,2.222,700,4.066,701,2.273,702,3.058,703,1.929,704,0.517,705,0.569,706,0.559,707,0.569,708,0.939,709,1.5,710,2.193,717,0.462,718,1.383,719,0.612,727,3.217,731,3.172,733,2.942,741,4.61,744,0.812,757,1.091,761,1.201,762,0.494,763,0.612,764,1.915,765,2.273,774,2.999,775,1.881,778,1.071,786,1.113,803,0.682,818,4.662,819,0.983,820,4.986,821,4.998,822,4.594,824,3.14,827,4.953,828,6.874,829,3.762,830,3.762,845,3.961,846,3.915,861,5.562,876,1.055,884,7.549,931,0.428,937,0.517,946,0.699,947,2.062,950,3.131,955,0.524,956,1.985,957,1.541,958,2.832,960,0.709,963,0.738,969,1.184,971,2.67,986,0.699,1001,0.981,1005,0.881,1008,2.102,1013,1.842,1014,1.746,1026,1.381,1036,1.27,1039,0.699,1041,0.981,1061,2.375,1077,2.001,1087,1.691,1108,1.664,1273,0.699,1274,1.897,1277,2.987,1283,2.16,1319,3.109,1648,1.27,1665,5.019,1669,0.625,1689,1.6,1697,5.138,1747,0.925,1760,0.612,1788,2.353,1884,4.891,2057,0.717,2072,0.699,2073,1.211,2082,1.055,2089,0.625,2107,0.925,2130,1.425,2141,2.2,2142,2.41,2170,2.148,2244,1.476,2256,2.593,2274,0.699,2288,1.381,2316,0.844,2334,0.925,2347,4.262,2373,0.981,2391,0.844,2435,1.533,2439,1.6,2449,0.925,2589,6.842,2591,3.516,2593,2.706,2599,2.2,2601,2.706,2604,2.2,2609,0.881,2610,2.796,2612,1.052,2614,0.925,2615,0.844,2619,0.682,2630,3.683,2634,0.881,2651,1.6,2662,0.925,2663,0.925,2664,2.311,2667,1.681,2676,0.981,2687,1.533,2688,1.425,2691,1.533,2692,1.782,2693,0.651,2696,1.918,2699,1.918,2709,1.533,2759,0.881,2760,1.6,2761,3.213,2762,0.881,2764,0.925,2767,4.594,2769,0.881,2771,0.881,2772,2.311,2773,0.881,2774,0.881,2776,0.881,2777,0.881,2778,0.881,2779,0.881,2780,0.881,2782,0.651,2783,0.541,2786,1.782,2787,0.925,2788,0.881,2831,1.184,2871,0.666,2889,0.925,2956,0.881,3082,0.925,3120,0.981,3282,1.918,3283,1.918,3292,1.055,3293,1.055,3296,1.782,3297,1.782,3298,3.762,3299,0.981,3301,1.055,3302,1.055,3303,3.008,3304,0.981,3309,0.981,3310,0.981,3312,0.981,3316,2.449,3317,4.038,3318,1.782,3319,1.782,3320,0.981,3321,1.055,3334,0.844,3340,1.055,3341,4.898,3343,1.918,3361,0.881,3362,0.784,3365,0.881,3391,1.055,3394,1.918,3423,1.681,3431,1.055,3432,1.055,3445,4.207,3448,1.055,3449,1.055,3451,1.055,3452,1.055,3454,1.055,3513,1.918,3534,1.782,3535,1.304,3542,1.533,3575,1.055,3627,1.055,3630,1.055,3635,1.055,3636,0.981,3655,1.055,3656,1.055,4085,1.681,4282,0.699,4848,2.636,4849,2.636,4850,2.636,4851,2.636,4852,3.762,4853,3.242,4854,3.762,4855,2.636,4856,2.918,4857,2.918,4858,4.664,4859,2.123,4860,2.918,4861,4.165,4862,2.636,4863,2.636,4864,2.918,4865,4.165,4866,2.636,4867,2.636,4868,7.254,4869,4.165,4870,1.782,4871,0.981,4872,2.918,4873,1.168,4874,1.168,4875,1.168,4876,1.168,4877,1.168,4878,1.168,4879,1.168,4880,3.59,4881,3.59,4882,3.59,4883,1.168,4884,1.168,4885,1.168,4886,1.168,4887,1.168,4888,2.918,4889,2.123,4890,4.664,4891,4.664,4892,3.59,4893,2.918,4894,5.484,4895,5.484,4896,2.123,4897,1.168,4898,2.636,4899,2.123,4900,2.123,4901,3.59,4902,3.59,4903,2.123,4904,2.918,4905,2.123,4906,2.918,4907,2.123,4908,2.918,4909,2.918,4910,2.918,4911,1.168,4912,1.168,4913,2.123,4914,2.123,4915,2.918,4916,1.168,4917,2.918,4918,1.168,4919,1.918,4920,2.123,4921,2.123,4922,3.59,4923,2.123,4924,4.664,4925,2.123,4926,2.123,4927,2.123,4928,1.168,4929,1.168,4930,1.168,4931,2.636,4932,3.59,4933,3.59,4934,4.165,4935,3.59,4936,3.59,4937,3.59,4938,3.59,4939,3.59,4940,3.59,4941,3.59,4942,4.165,4943,5.826,4944,3.59,4945,1.168,4946,1.168,4947,1.168,4948,1.168,4949,1.168,4950,1.168,4951,1.168,4952,1.168,4953,1.168,4954,1.168,4955,1.168,4956,2.123,4957,1.168,4958,1.168,4959,1.168,4960,2.123,4961,1.168,4962,1.168,4963,1.168,4964,1.168,4965,1.168,4966,1.055,4967,1.168,4968,1.168,4969,1.168,4970,2.918,4971,1.168,4972,1.168,4973,1.168,4974,1.168,4975,1.168,4976,1.168,4977,1.168,4978,1.168,4979,1.168,4980,1.168,4981,1.168,4982,1.168,4983,1.168,4984,1.168,4985,1.168,4986,1.168,4987,1.168,4988,1.168,4989,1.168,4990,1.168,4991,1.168,4992,1.168,4993,1.168,4994,1.168,4995,1.168,4996,1.168,4997,1.168,4998,1.168,4999,1.168,5000,1.168,5001,1.168,5002,1.168,5003,1.168,5004,1.168,5005,1.168,5006,1.168,5007,1.168,5008,1.168,5009,1.168,5010,1.168,5011,1.168,5012,1.168,5013,1.168,5014,1.168,5015,1.168,5016,3.762,5017,1.168,5018,1.168,5019,1.168,5020,1.168,5021,1.168,5022,3.59,5023,1.168,5024,1.168,5025,1.168,5026,1.168,5027,2.918,5028,1.168,5029,2.123,5030,1.168,5031,1.168,5032,1.168,5033,1.168,5034,1.168,5035,1.168,5036,1.168,5037,1.168,5038,1.168,5039,1.168,5040,1.168,5041,1.168,5042,1.168,5043,1.168,5044,2.123,5045,1.168,5046,1.918,5047,1.168,5048,1.168,5049,1.168,5050,1.168,5051,1.168,5052,1.168,5053,1.168,5054,1.168,5055,1.168,5056,1.168,5057,1.168,5058,1.168,5059,1.168,5060,1.168,5061,1.168,5062,1.168,5063,1.168,5064,1.168,5065,1.168,5066,1.168,5067,1.168,5068,1.168,5069,1.168,5070,1.168,5071,1.168,5072,1.168,5073,1.168,5074,1.168,5075,1.168,5076,1.168,5077,1.168,5078,1.168,5079,1.168]],["t/106",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,112,0.729,179,2.994,5080,2.76]],["d/106",[]],["k/106",[]],["b/106",[0,0.283,4,0.132,13,5.179,18,1.561,30,2.916,41,0.557,43,0.859,66,0.908,73,1.281,82,3.451,106,0.469,108,0.524,112,0.483,117,0.988,120,1.312,121,0.898,123,4.696,124,0.788,129,1.285,133,2.329,134,1.026,135,1.435,143,1.631,144,1.208,145,1.432,146,0.84,147,2.158,152,1.545,153,0.908,154,3.435,155,1.606,161,1.268,163,0.322,167,0.827,179,2.672,202,0.849,216,0.976,218,1.258,225,0.784,227,0.866,229,1.529,230,0.557,232,3.011,235,3.097,238,1.851,239,1.013,243,2.647,244,1.517,245,1.729,250,1.523,255,0.564,256,2.559,257,0.931,258,1.063,266,1.655,268,0.868,269,2.635,279,2.887,280,0.628,281,0.422,284,0.557,286,3.22,287,2.721,288,0.849,290,1.724,292,1.21,300,2.77,304,1.695,305,1.841,306,1.378,308,0.469,311,1.304,314,0.586,315,0.772,331,0.748,338,0.531,340,3.295,341,3.21,352,1.984,354,1.348,357,0.512,359,2.264,360,2.115,363,1.406,364,0.949,367,1.184,368,2.224,369,1.859,370,2.705,371,1.008,377,2.164,387,1.299,388,1.051,393,0.722,394,1.925,399,2.091,400,2.189,403,1.073,404,0.908,407,1.096,415,2.857,425,1.718,426,2.18,428,0.988,433,1.331,442,1.742,444,1.199,445,3.914,456,1.484,457,2.821,474,1.184,487,2.169,491,2.138,492,4.75,505,2.563,515,1.054,519,3.471,527,0.531,529,2.386,538,1.401,540,2.498,543,0.506,547,1.574,555,2.189,557,2.857,559,3.085,561,2.61,563,2.879,578,2.379,581,0.887,588,1.9,590,4.32,611,2.908,637,1.711,644,0.898,645,0.501,648,0.656,651,1.146,657,1.553,663,3.494,672,1.238,674,1.04,675,0.61,676,1.013,677,1.082,678,0.579,679,0.666,686,1.934,692,6.069,697,1.574,700,1.378,701,0.809,702,1.467,704,0.656,705,0.722,706,0.71,707,0.722,708,1.163,709,1.822,710,3.607,717,0.586,718,0.571,727,3.827,730,1.435,731,1.401,733,1.567,741,2.126,753,3.233,761,1.082,762,0.628,763,0.777,764,0.557,774,2.077,775,0.777,778,1.327,821,0.762,845,1.9,846,2.208,884,1.983,930,0.965,931,0.544,935,1.031,947,0.656,950,1.026,955,0.666,956,1.553,957,0.637,958,2.235,959,0.687,960,1.183,969,1.467,970,0.846,992,4.428,996,4.768,1008,1.327,1013,2.238,1014,2.121,1026,0.965,1038,2.015,1087,1.439,1319,4.273,1363,1.766,1395,1.118,1640,2.672,1647,0.996,1648,0.887,1698,1.34,1736,0.936,1745,4.927,1764,1.983,1774,4.812,1788,0.748,1854,1.983,1962,1.175,1988,1.268,1996,7.267,2030,3.775,2048,1.766,2058,2.56,2149,1.766,2215,4.924,2260,3.601,2292,4.75,2299,4.433,2304,2.376,2315,0.965,2325,0.965,2334,7.794,2371,1.175,2394,2.672,2569,1.118,2653,2.069,2691,7.136,2844,1.983,2942,1.822,2953,0.996,2982,1.34,3021,1.118,3517,1.34,3583,5.144,3741,1.661,3768,1.828,3867,2.083,3934,4.12,4353,1.34,4898,3.201,5016,2.376,5080,6.614,5081,3.201,5082,7.05,5083,3.201,5084,3.201,5085,2.208,5086,4.433,5087,2.376,5088,3.201,5089,3.201,5090,3.201,5091,2.376,5092,3.201,5093,3.201,5094,1.34,5095,2.376,5096,1.483,5097,1.34,5098,1.118,5099,1.483,5100,2.63,5101,2.63,5102,1.483,5103,7.819,5104,1.34,5105,1.34,5106,1.34,5107,1.34,5108,1.34,5109,1.34,5110,1.34,5111,1.34,5112,1.34,5113,1.483,5114,1.483,5115,3.887,5116,4.559,5117,8.762,5118,10.677,5119,1.483,5120,9.988,5121,1.483,5122,1.483,5123,1.483,5124,2.63,5125,1.483,5126,1.483,5127,2.63,5128,1.483,5129,1.483,5130,2.63,5131,1.483,5132,1.483,5133,2.63,5134,1.483,5135,1.483,5136,2.63,5137,1.483,5138,1.483,5139,2.63,5140,1.483,5141,1.483,5142,2.63,5143,1.483,5144,1.483,5145,2.63,5146,1.483,5147,1.483,5148,2.63,5149,1.483,5150,1.483,5151,2.63,5152,1.483,5153,1.483,5154,1.483,5155,1.483,5156,1.483,5157,1.483,5158,1.483,5159,1.483,5160,1.483,5161,1.483,5162,1.483,5163,1.483,5164,1.483,5165,1.483,5166,1.483,5167,1.483,5168,1.483,5169,1.483,5170,1.483,5171,1.483,5172,1.483,5173,2.63,5174,2.63,5175,2.63,5176,2.63,5177,2.63,5178,2.63,5179,1.483,5180,2.63,5181,1.483,5182,1.483,5183,2.63,5184,1.483,5185,1.483,5186,2.63,5187,1.483,5188,1.483,5189,1.483,5190,1.483,5191,1.483,5192,1.483,5193,1.483,5194,1.483,5195,1.483,5196,1.483,5197,1.483,5198,1.483,5199,1.483,5200,1.483,5201,4.289,5202,1.483,5203,1.483,5204,1.483,5205,1.483,5206,1.483,5207,1.483,5208,1.483,5209,1.483,5210,4.289,5211,5.431,5212,1.483,5213,4.289,5214,4.289,5215,5.579,5216,1.483,5217,2.63,5218,7.482,5219,1.483,5220,1.483,5221,1.483,5222,1.483,5223,2.63,5224,1.483,5225,1.483,5226,1.483,5227,1.483,5228,1.483,5229,1.483,5230,1.34,5231,2.63,5232,2.208,5233,1.483,5234,1.483,5235,1.483,5236,1.483,5237,1.483,5238,1.483,5239,1.483,5240,1.483,5241,3.201,5242,3.544,5243,4.289,5244,4.289,5245,4.289,5246,4.289,5247,4.289,5248,4.289,5249,4.908,5250,2.376,5251,2.63,5252,1.483,5253,1.483,5254,1.483,5255,1.483,5256,1.483,5257,1.483,5258,1.483,5259,1.483,5260,1.483,5261,1.483,5262,1.483,5263,1.483,5264,1.483,5265,1.483,5266,1.483,5267,1.483,5268,1.483,5269,2.63,5270,1.483,5271,1.483,5272,1.483,5273,1.483,5274,1.483,5275,1.483,5276,1.483,5277,1.483,5278,1.483,5279,1.483,5280,1.483,5281,1.483,5282,1.483,5283,1.483,5284,1.483,5285,1.483,5286,1.483,5287,1.245,5288,1.483,5289,1.483,5290,1.483,5291,1.483,5292,1.483,5293,1.245,5294,1.483,5295,1.483,5296,1.483,5297,1.483,5298,1.483,5299,1.483,5300,1.483,5301,1.483,5302,1.483,5303,1.483,5304,1.483,5305,1.245,5306,1.483,5307,1.483,5308,1.483,5309,1.483,5310,1.483,5311,1.483,5312,1.483,5313,1.483,5314,1.483,5315,1.483,5316,1.483,5317,1.483,5318,1.483,5319,1.483,5320,1.483,5321,1.483,5322,1.483,5323,1.483,5324,1.483,5325,1.483,5326,1.483,5327,1.483,5328,1.483,5329,1.245,5330,1.483,5331,1.483,5332,1.483,5333,1.483,5334,1.483,5335,1.483,5336,1.483,5337,1.483,5338,1.483,5339,1.483,5340,1.483,5341,1.483,5342,1.483,5343,1.483,5344,1.483,5345,1.483,5346,1.483,5347,1.483,5348,1.483,5349,1.483,5350,1.483,5351,1.483,5352,1.483,5353,1.483,5354,1.483,5355,1.483,5356,1.483,5357,1.483,5358,1.483,5359,1.483,5360,3.233,5361,4.289,5362,1.34,5363,2.63,5364,1.483,5365,1.34,5366,1.34,5367,1.245,5368,1.483,5369,1.483,5370,1.245,5371,1.34,5372,1.34,5373,1.175,5374,1.483,5375,1.34]],["t/107",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,112,0.784,5080,2.966]],["d/107",[]],["k/107",[]],["b/107",[4,0.29,18,2.837,30,2.452,43,1.093,71,2.103,82,2.299,95,1.69,106,1.643,107,2.659,112,1.32,113,2.129,120,1.591,124,1.003,129,1.003,132,1.791,144,2.318,146,1.07,147,2.466,153,1.157,154,1.697,155,2.249,161,2.28,163,0.727,179,2.525,218,2.783,225,0.741,228,1.527,229,1.795,237,1.552,238,1.946,239,2.003,240,1.418,243,2.418,244,3.018,245,2.659,249,1.459,250,2.264,255,1.978,256,2.575,257,2.447,258,2.308,265,3.225,266,2.78,268,1.716,269,3.144,279,2.804,280,3.04,281,2.443,282,2.232,283,2.083,284,1.258,285,1.481,287,3.065,288,2.51,289,2.965,290,1.87,292,1.144,300,1.481,304,2.201,305,2.294,308,2.269,332,1.552,340,2.249,341,1.07,345,2.818,348,2.364,352,2.151,354,2.424,357,1.796,358,1.929,359,2.592,360,1.755,362,1.418,363,1.791,364,2.442,365,1.398,366,1.722,367,0.925,368,2.752,369,1.795,370,3.116,371,1.813,377,3.216,384,2.965,387,1.905,388,1.541,393,1.631,399,1.118,400,1.171,401,2.329,402,2.409,403,1.946,405,1.577,414,1.631,425,3.296,433,1.953,442,0.993,445,3.947,456,1.421,457,1.838,469,1.438,470,1.69,474,2.516,475,1.91,476,1.91,477,1.379,479,2.424,480,2.029,487,1.014,489,1.66,491,3.585,498,1.631,499,1.631,500,1.274,502,1.459,515,2.553,519,3.546,538,2.055,540,2.979,542,1.756,543,1.144,545,8.232,555,1.171,557,2.834,559,2.055,561,1.324,563,2.17,590,4.193,611,1.36,637,2.179,648,2.818,652,2.057,663,4.19,670,1.756,686,1.828,700,3.34,701,2.838,702,1.868,708,1.481,721,2.812,734,1.791,746,1.956,767,2.673,965,1.66,992,2.004,996,2.419,1038,1.929,1640,5.415,1729,2.249,1736,2.115,1754,2.057,1772,2.057,1816,2.179,1988,2.782,1996,5.35,2038,1.828,2148,3.614,2203,5.057,2215,4.179,2292,4.193,2375,4.365,2394,2.525,2612,2.577,2619,1.956,2942,2.673,2959,2.812,3137,2.419,3583,2.329,3719,3.92,3723,3.755,3730,3.755,3739,2.525,3867,4.118,4599,5.047,4751,3.026,5080,6.784,5081,3.026,5082,9.224,5083,7.756,5084,3.026,5085,4.365,5086,4.697,5087,4.697,5088,3.026,5089,3.026,5090,3.026,5091,7.024,5092,3.026,5093,3.026,5094,4.697,5095,8.017,5103,8.232,5104,3.026,5105,3.026,5106,3.026,5107,3.026,5108,3.026,5109,3.026,5110,3.026,5111,3.026,5112,3.026,5215,2.525,5218,4.697,5230,8.7,5241,3.026,5250,7.756,5362,3.026,5365,3.026,5366,3.026,5371,4.697,5372,4.697,5375,3.026,5376,3.026,5377,3.35,5378,7.183,5379,6.373,5380,7.183,5381,7.183,5382,7.183,5383,7.183,5384,7.183,5385,3.35,5386,3.35,5387,3.35,5388,3.35,5389,3.35,5390,3.35,5391,3.35,5392,3.35,5393,3.35,5394,3.35,5395,3.35,5396,5.2,5397,3.35,5398,3.35,5399,3.35,5400,3.35,5401,3.35,5402,3.35,5403,3.35,5404,3.35,5405,3.35,5406,5.2,5407,3.35,5408,2.812,5409,3.35,5410,3.35,5411,3.35,5412,3.35,5413,3.35,5414,3.35,5415,3.35,5416,3.35,5417,3.35,5418,3.35,5419,3.35,5420,3.35,5421,3.35,5422,3.35,5423,3.35,5424,3.35,5425,3.35,5426,3.35,5427,3.35,5428,3.35]],["t/108",[0,0.376,1,0.372,2,0.246,3,0.384,4,0.13,158,1.642,213,2.629,415,1.151,611,1.416,655,1.988]],["d/108",[]],["k/108",[]],["b/108",[2,0.381,4,0.201,18,2.759,30,2.713,40,4.526,41,2.766,43,1.146,66,1.862,71,2.166,82,2.384,93,1.84,95,1.771,106,1.109,108,1.241,112,0.645,113,1.598,117,2.025,120,1.649,121,1.841,123,1.626,129,2.38,133,1.185,134,2.103,139,3.856,141,2.049,143,2.496,144,2.074,145,1.799,146,1.722,147,2.206,152,2.564,153,1.862,155,1.793,158,2.538,163,0.762,190,2.535,202,1.133,213,4.948,216,2,218,2.16,225,0.776,229,1.848,235,2.002,237,1.626,238,2.467,239,2.077,240,3.814,243,2.743,244,2.917,245,2.032,250,2.123,256,1.336,257,1.724,258,1.336,266,2.538,279,2.905,280,3.993,282,1.507,283,1.406,284,1.318,287,2.953,288,1.74,290,2.768,292,1.841,308,2.073,314,1.388,315,1.03,337,2.206,338,1.256,341,1.722,354,1.335,357,1.212,358,1.302,359,2.171,360,3.042,364,1.758,367,1.811,368,2.749,369,2.362,370,3.043,371,1.867,377,3.715,387,2.405,388,1.598,392,2.002,399,3.008,400,3.637,403,1.349,404,1.212,407,2.593,415,2.768,426,3.271,428,2.465,433,2.025,442,2.486,444,1.601,456,1.473,457,2.965,474,1.488,479,1.335,487,2.538,515,1.406,527,1.256,538,1.388,540,1.271,543,1.199,555,2.293,557,2.166,611,4.047,644,1.199,645,1.185,651,2.859,654,2.216,655,5.623,656,3.142,657,1.271,665,3.374,670,1.84,672,1.884,674,2.131,675,1.445,676,2.077,677,1.445,678,1.37,679,1.576,692,2.942,694,1.529,699,2.049,704,1.552,705,1.709,706,1.68,707,1.709,708,2.902,709,1.805,710,1.256,717,1.388,718,1.352,719,1.84,727,2.384,731,3.315,733,1.552,739,1.507,746,2.049,757,1.805,759,3.147,761,2.219,762,1.486,764,2.025,774,2.777,775,1.84,778,1.771,781,1.771,782,2.947,821,1.805,931,1.286,937,2.902,941,2.1,947,4.086,948,2.357,950,2.561,955,1.576,956,2.376,957,2.314,958,3.27,959,1.626,960,1.172,970,2.002,971,3.196,974,1.805,994,2.216,1013,2.216,1014,2.1,1036,2.1,1042,2.646,1067,3.582,1072,2.78,1087,2.189,1271,2.1,1273,2.1,1319,1.465,1697,2.049,1754,3.311,1760,1.84,1787,2.44,1798,2.646,1837,2.947,1967,2.535,2057,2.156,2215,1.653,2255,2.44,2281,3.619,2338,2.646,2347,2.44,2445,2.283,2615,2.535,2652,2.44,2761,3.859,2779,2.646,2782,1.957,2783,1.626,2871,2.002,2979,2.78,3082,2.78,3291,4.869,3294,7.758,3300,7.631,3341,3.404,3344,3.171,3355,4.526,3356,4.526,3357,3.171,3358,3.171,3994,3.619,4664,2.78,5429,5.928,5430,8.796,5431,4.869,5432,6.651,5433,5.928,5434,5.928,5435,3.171,5436,5.928,5437,5.928,5438,5.928,5439,6.651,5440,3.511,5441,3.511,5442,3.511,5443,3.747,5444,3.511,5445,3.511,5446,3.511,5447,3.511,5448,5.391,5449,3.511,5450,3.511,5451,3.511,5452,5.928,5453,4.869,5454,3.511,5455,3.511,5456,3.511,5457,3.171,5458,3.511,5459,3.171,5460,3.171,5461,3.511,5462,3.171,5463,3.511,5464,3.511,5465,2.535,5466,2.78,5467,3.171]],["t/109",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,112,0.784,3300,2.966]],["d/109",[]],["k/109",[]],["b/109",[2,0.397,4,0.304,18,2.178,30,2.587,71,1.225,106,1.777,107,2.834,112,1.248,113,2.414,120,1.135,124,1.112,129,1.112,132,1.984,144,2.414,145,1.239,146,1.796,147,2.249,149,2.22,154,2.217,155,2.225,158,3.568,163,0.806,167,2.069,213,2.798,218,2.514,225,0.821,228,1.692,230,1.394,238,2.144,240,3.207,243,2.134,244,2.835,245,2.592,250,2.283,251,2.22,256,2.411,257,2.59,258,2.372,265,3.402,266,2.645,268,1.856,269,3.096,279,2.783,280,2.874,281,2.533,282,3.679,283,2.72,284,1.394,287,3.001,288,2.629,289,3.207,290,1.65,291,4.103,292,1.267,304,1.282,305,1.035,308,1.172,332,1.719,341,1.185,345,1.641,348,1.377,352,1.253,354,1.411,357,1.943,358,2.086,359,2.566,364,2.385,365,1.549,366,1.908,367,1.024,368,2.749,369,1.913,370,3.04,371,1.932,377,2.838,384,3.207,385,2.036,387,2.061,388,1.667,392,4.644,399,2.718,400,3.204,402,1.719,403,1.896,405,1.747,407,1.147,415,2.501,425,2.253,426,3.344,456,1.014,457,3.03,469,1.593,470,1.873,474,2.531,475,2.116,476,2.116,477,1.527,478,2.22,479,2.139,480,1.448,488,1.282,498,1.807,499,1.807,500,1.411,502,1.617,505,1.328,538,2.223,543,1.267,555,1.297,557,1.225,561,1.467,611,4.357,651,1.617,655,6.137,656,2.693,672,1.297,686,4.444,692,5.224,694,1.617,724,2.22,727,2.487,746,2.166,764,3.704,767,2.891,820,4.859,947,2.487,971,2.739,1042,2.798,1067,3.706,1087,3.479,1106,3.776,1310,3.91,1319,1.549,1725,2.68,1798,2.798,1844,2.58,1967,2.68,1973,3.352,2158,2.279,2203,5.296,2216,3.115,3226,2.413,3294,8.037,3300,7.123,3341,5.79,3355,3.115,3356,3.115,3445,2.68,3730,4.062,5429,3.352,5430,9.256,5431,8.042,5432,3.352,5433,7.356,5434,3.352,5435,5.08,5436,8.284,5437,3.352,5438,3.352,5439,3.352,5443,4.721,5452,3.352,5453,7.741,5457,5.08,5459,3.352,5460,5.08,5462,3.352,5467,3.352,5468,7.578,5469,6.792,5470,7.578,5471,7.578,5472,8.144,5473,7.578,5474,3.711,5475,3.711,5476,3.711,5477,5.625,5478,3.711,5479,3.352,5480,3.711,5481,3.711,5482,5.473,5483,3.711,5484,3.711,5485,3.711,5486,3.711,5487,3.711,5488,3.711,5489,3.711,5490,3.711,5491,3.711,5492,3.711,5493,3.711,5494,3.711,5495,3.711,5496,3.711,5497,3.711,5498,3.711,5499,3.711,5500,3.711,5501,3.711,5502,3.711,5503,3.711,5504,3.711,5505,3.711,5506,3.711,5507,3.711,5508,3.711,5509,3.711,5510,3.711,5511,3.711,5512,3.711]],["t/110",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,251,2.759]],["d/110",[]],["k/110",[]],["b/110",[112,1.875,152,3.052,163,1.784,169,6.198,211,6.198,217,6.198,224,5.627,225,1.818,227,5.619,250,2.481,251,6.108,252,6.078,253,4.919,254,3.936,255,3.127,315,2.995,456,2.79,644,3.485,645,2.775,962,6.902,963,6.078,3121,6.51]],["t/111",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,216,1.711]],["d/111",[]],["k/111",[]],["b/111",[3,0.723,4,0.313,29,3.199,41,3.152,98,5.408,117,2.467,133,3.289,143,3.516,145,3.643,152,2.387,158,3.093,163,1.426,167,3.663,198,3.256,216,3.43,225,1.453,229,1.85,243,1.85,256,2.414,257,2.429,258,2.291,279,2.756,281,2.387,283,2.631,285,2.905,305,1.832,308,2.075,314,2.597,352,3.289,359,1.795,364,2.248,394,3.767,399,2.193,400,2.295,407,2.031,456,1.795,492,4.898,540,2.378,615,4.486,645,2.218,676,3.232,750,5.153,755,4.272,758,3.951,761,2.704,819,3.043,937,2.905,947,2.905,1077,3.663,1283,3.043,1315,4.148,1671,4.272,1673,8.8,1709,4.745,1710,5.202,1711,5.202,1787,5.833,2027,7.391,2107,5.202,2155,6.326,2156,4.953,2163,3.377,2619,3.835,2999,7.58,4277,5.934,5513,9.247,5514,9.247,5515,9.247,5516,9.247,5517,9.247,5518,9.247,5519,9.247,5520,9.664,5521,5.934,5522,7.045,5523,9.247,5524,8.352,5525,8.352]],["t/112",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,73,2.245]],["d/112",[]],["k/112",[]],["b/112",[1,0.594,2,0.722,8,3.517,66,3.756,73,2.713,112,2.037,152,3.141,163,1.209,171,4.2,172,4.2,173,4.2,175,4.412,179,4.2,180,4.412,181,4.412,189,4.2,191,4.024,194,4.2,195,4.2,196,4.412,197,4.412,199,4.024,202,1.799,207,4.412,208,4.2,210,4.412,212,4.2,219,4.412,225,1.232,243,2.88,250,2.677,255,3.889,256,1.381,290,3,315,3.223,337,2.255,359,2.058,403,1.394,404,3.532,456,2.993,644,3.739,645,3.697,960,3.496,1038,2.793,1624,5.547,1716,5.093,1987,4.293,1988,3.051,1990,4.737,1993,4.521,1998,4.2,2115,3.421,2116,4.024,2802,4.024,2835,4.412,2991,3.667,3695,4.61,3696,5.929,4719,5.813,5080,5.929,5526,4.677,5527,5.941,5528,5.676,5529,4.109,5530,4.2]],["t/113",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,133,1.34,394,1.783,540,1.438]],["d/113",[]],["k/113",[]],["b/113",[4,0.202,15,3.641,18,2.241,25,1.278,30,1.851,39,1.762,65,3.424,66,1.873,69,1.236,73,1.278,81,1.403,82,1.893,98,2.122,106,2.463,107,1.095,111,1.57,113,2.493,117,1.608,119,1.301,124,0.786,129,2.652,133,2.745,134,1.024,139,2.263,141,1.532,144,0.739,145,2.807,147,2.125,151,1.707,152,2.519,153,0.907,155,1.17,161,0.939,163,0.57,166,0.965,198,2.687,202,2.716,216,0.974,225,0.58,229,1.206,232,2.909,234,3.769,235,1.497,238,1.85,239,3.003,244,1.324,245,1.902,249,1.143,250,1.041,254,1.256,255,0.998,256,2.474,257,1.424,258,1.344,268,1.413,269,1.445,279,2.25,280,1.812,281,1.218,282,2.686,283,2.172,284,0.986,285,1.893,290,1.835,291,1.256,292,1.851,300,1.893,303,1.952,304,1.479,305,0.732,308,2.463,311,3.864,315,0.77,317,1.497,321,2.078,323,1.896,324,4.349,331,2.16,337,0.786,338,3.168,340,2.875,341,2.201,343,2.078,348,0.974,352,2.112,359,1.71,360,0.886,364,2.372,365,1.095,366,2.201,368,1.512,369,2.29,383,1.762,394,2.809,399,3.015,400,0.917,403,0.657,407,1.324,415,2.684,425,2.761,428,0.986,442,2.043,454,4.898,457,2.212,470,1.324,474,1.902,482,1.612,487,1.296,488,1.479,489,1.301,503,3.916,505,1.532,515,1.051,533,1.865,538,3.214,540,3.797,542,2.842,543,2.353,547,1.57,552,2.203,555,0.917,557,1.413,559,1.038,561,1.038,563,1.787,611,2.201,613,2.295,615,1.403,625,2.371,656,2.596,657,1.963,658,2.875,663,4.106,672,1.895,678,1.024,692,1.432,694,1.143,697,1.57,710,0.939,720,2.201,723,2.337,726,2.05,728,2.687,733,2.398,736,1.657,739,4.458,741,1.301,743,1.612,757,1.349,758,2.016,759,1.532,781,1.324,819,1.216,822,1.657,931,2.293,950,1.024,952,1.762,960,1.81,965,2.122,971,1.278,974,2.201,1007,1.612,1011,2.899,1028,2.203,1029,4.954,1038,2.742,1067,1.432,1149,3.594,1274,4.069,1282,3.33,1283,1.216,1310,4.349,1319,1.787,1603,4.552,1628,4.898,1669,1.403,1700,5.651,1721,3.391,1730,1.612,1731,1.463,1738,1.896,1740,1.349,1762,3.228,1764,1.979,1774,2.784,1776,2.203,1782,2.078,1787,4.349,1797,3.228,1798,5.196,1801,2.078,1803,1.762,1811,2.784,1821,2.078,1827,2.078,1829,2.703,1851,1.896,1865,1.707,1866,1.762,1873,2.629,1926,2.371,1969,2.078,1988,0.939,1993,3.825,2027,5.459,2045,1.612,2056,3.867,2069,3.526,2073,2.441,2084,2.201,2113,1.979,2116,1.896,2134,3.244,2136,3.344,2149,3.641,2155,3.228,2156,1.979,2163,1.349,2164,2.725,2180,5.651,2212,2.078,2215,4.808,2264,3.244,2288,1.707,2338,3.228,2352,2.203,2368,2.703,2369,6.175,2373,2.203,2374,3.867,2378,6.206,2402,1.57,2449,2.078,2469,1.657,2473,3.228,2693,1.463,2768,1.762,2953,2.875,2961,1.657,2998,2.203,3323,2.371,3583,2.976,3661,2.078,3691,2.078,3763,2.784,3902,1.979,3919,2.976,3990,2.875,4021,1.612,4047,2.875,4298,2.371,4352,1.979,4400,2.371,5232,4.552,5465,1.896,5521,2.371,5524,3.867,5525,3.867,5531,5.423,5532,2.625,5533,5.423,5534,5.423,5535,5.423,5536,2.625,5537,2.625,5538,2.625,5539,2.625,5540,4.282,5541,2.625,5542,2.625,5543,2.625,5544,2.625,5545,2.625,5546,2.625,5547,2.625,5548,8.502,5549,2.625,5550,2.625,5551,2.625,5552,2.625,5553,2.625,5554,2.625,5555,2.625,5556,2.625,5557,2.625,5558,2.625,5559,2.625,5560,2.625,5561,2.625,5562,2.625,5563,2.625,5564,2.625,5565,2.625,5566,2.625,5567,2.625,5568,2.625,5569,2.625,5570,2.625,5571,2.625,5572,2.625,5573,2.625,5574,2.625,5575,2.625,5576,3.594,5577,2.625,5578,2.625,5579,2.625,5580,2.625,5581,1.824,5582,2.625,5583,2.625,5584,2.625,5585,2.625,5586,2.203,5587,2.625,5588,2.625,5589,2.625,5590,2.625,5591,2.625,5592,5.423,5593,2.625,5594,2.625,5595,2.625,5596,2.625,5597,2.625,5598,2.625,5599,2.625,5600,2.371,5601,2.625,5602,2.625,5603,4.282,5604,2.625,5605,2.625,5606,2.625,5607,2.625,5608,2.625,5609,2.625,5610,2.625,5611,2.625,5612,2.625,5613,2.625,5614,2.625,5615,2.625,5616,2.625,5617,5.423,5618,2.371,5619,2.625,5620,2.625,5621,2.625,5622,2.625,5623,2.625,5624,2.625,5625,4.282,5626,2.625,5627,2.625,5628,2.625,5629,2.625,5630,2.625,5631,2.625,5632,2.625,5633,2.625,5634,2.625,5635,2.625,5636,2.625,5637,2.625,5638,2.625,5639,2.625,5640,2.625,5641,2.625,5642,4.282,5643,2.625,5644,2.625,5645,2.625,5646,2.625,5647,2.625,5648,2.625,5649,2.625,5650,2.625,5651,2.625,5652,2.625,5653,4.282,5654,2.625,5655,2.625,5656,5.423,5657,2.625,5658,2.625,5659,2.625,5660,2.625,5661,2.625,5662,2.625,5663,2.625,5664,2.625,5665,2.625,5666,4.282,5667,2.625,5668,5.252,5669,5.423,5670,2.625,5671,6.256,5672,2.625,5673,2.625,5674,2.625,5675,2.625,5676,2.625,5677,2.625,5678,4.282,5679,2.625,5680,2.625,5681,2.625,5682,2.625,5683,2.625,5684,2.625,5685,2.625,5686,2.625,5687,2.625,5688,2.625,5689,2.625,5690,2.625,5691,2.625,5692,2.625,5693,4.282,5694,2.625,5695,2.625,5696,2.625,5697,2.625,5698,2.625,5699,2.625,5700,6.256,5701,6.256,5702,2.625,5703,2.625,5704,4.282,5705,2.625,5706,2.625,5707,2.625,5708,4.282,5709,4.282,5710,2.625,5711,2.625,5712,2.625,5713,2.371,5714,2.625,5715,2.625,5716,4.282,5717,2.625,5718,2.625,5719,2.625,5720,2.625,5721,2.625,5722,2.625,5723,2.625,5724,2.625,5725,2.625,5726,1.979,5727,2.625,5728,2.625,5729,2.625,5730,2.625,5731,9.454,5732,2.625,5733,2.625,5734,5.423,5735,2.625,5736,4.282,5737,2.625,5738,2.625,5739,2.625,5740,2.625,5741,2.625,5742,2.625,5743,2.625,5744,2.625,5745,2.625,5746,2.625,5747,2.625,5748,2.371,5749,2.625,5750,2.625,5751,2.625,5752,2.625,5753,4.282,5754,2.625,5755,2.625,5756,2.625,5757,2.625,5758,6.256,5759,2.625,5760,2.625,5761,2.625,5762,2.625,5763,2.625,5764,2.625,5765,2.625,5766,5.423,5767,2.625,5768,2.625,5769,2.625,5770,2.625,5771,2.625,5772,2.625,5773,2.625,5774,2.625,5775,2.625,5776,2.625,5777,2.625,5778,2.625,5779,2.625,5780,6.892,5781,2.625,5782,2.625,5783,2.625,5784,2.625,5785,2.625,5786,2.625,5787,2.625,5788,2.625,5789,2.625,5790,6.256,5791,2.625,5792,2.625,5793,2.625,5794,4.282,5795,2.625,5796,2.625,5797,2.625,5798,2.625,5799,2.625,5800,2.625,5801,2.625,5802,2.625,5803,6.892,5804,2.625,5805,2.625,5806,2.625,5807,2.625,5808,2.625,5809,2.625,5810,2.625,5811,2.625,5812,2.625,5813,2.625,5814,2.625,5815,2.625,5816,2.625,5817,2.625,5818,2.625,5819,2.625,5820,2.625,5821,2.625,5822,2.625,5823,2.625,5824,2.625,5825,2.625,5826,2.625,5827,2.625,5828,2.625,5829,2.625,5830,2.625,5831,2.625,5832,2.625,5833,3.641,5834,2.625,5835,4.282,5836,2.625,5837,2.625,5838,2.625,5839,2.625,5840,2.203,5841,2.625,5842,2.625,5843,5.423,5844,2.625,5845,2.625,5846,2.625,5847,2.625,5848,2.625,5849,2.625,5850,2.625,5851,4.282,5852,2.625,5853,2.625,5854,2.625,5855,2.203,5856,2.625,5857,2.625,5858,2.371,5859,2.371,5860,2.625]],["t/114",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,457,1.63]],["d/114",[]],["k/114",[]],["b/114",[112,1.874,152,3.05,163,1.781,200,6.186,215,6.186,222,6.186,225,1.815,243,2.311,250,2.48,315,2.993,348,4.029,403,2.053,456,2.787,457,2.901,529,4.409,644,3.483,645,3.443,4356,6.889,4388,6.889]],["t/115",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,112,0.847]],["d/115",[]],["k/115",[]],["b/115",[2,0.685,18,2.394,66,2.877,71,2.144,98,3.218,112,2.101,113,1.925,147,2.697,152,2.76,158,4.33,163,1.41,202,2.097,206,5.417,224,3.472,225,1.436,226,4.223,227,3.791,229,1.829,230,2.439,238,1.625,243,2.825,250,1.579,255,3.497,256,1.609,290,1.905,300,3.683,315,1.905,316,3.988,348,2.409,359,2.276,366,3.339,394,2.916,399,2.168,403,1.625,404,3.176,415,2.144,428,2.439,505,2.323,529,3.733,611,2.637,647,3.109,651,4.006,655,3.703,758,4.33,960,2.168,965,3.218,1283,4.26,1624,5.417,1638,4.514,1640,4.896,1716,5.409,1988,3.672,1990,4.494,1993,4.066,2014,5.143,2015,5.143,2016,4.1,2019,4.514,2215,3.058,2991,4.056,3300,4.514,3695,4.203,4719,4.916,5080,5.79,5527,5.417,5529,5.768,5530,4.896,5581,5.79,5861,4.69,5862,5.452,5863,5.452,5864,5.79,5865,5.79]],["t/116",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,152,1.312]],["d/116",[]],["k/116",[]],["b/116",[2,0.47,4,0.347,18,2.814,43,3.037,73,4.12,82,2.943,98,5.201,101,4.807,108,2.353,109,6.701,112,1.709,113,2.902,120,2.846,121,2.273,133,2.247,135,3.632,144,2.383,147,2.609,152,3.204,163,2.125,198,4.193,225,2.165,228,3.858,229,1.875,230,2.5,238,2.327,241,3.819,249,3.686,250,1.618,251,5.063,254,4.051,255,2.531,256,2.097,257,2.223,268,2.793,285,3.741,300,3.741,315,1.953,317,5.582,338,3.027,359,1.819,364,1.783,367,1.837,399,2.222,400,2.326,408,3.488,442,1.973,451,3.241,457,2.991,487,2.015,500,2.531,505,3.027,651,3.686,657,3.368,670,3.488,676,2.564,717,2.631,718,2.564,722,4.807,723,4.618,727,2.943,731,3.345,749,4.939,750,4.088,751,5.063,755,5.503,767,3.422,965,3.299,1087,2.702,1779,5.588,1852,5.503,2276,5.882,2581,6.012,3109,6.012,3129,4.469,4026,5.271,5215,5.018,5866,6.012,5867,6.656,5868,6.012,5869,6.012,5870,5.018,5871,6.656,5872,6.656,5873,6.012,5874,5.588]],["t/117",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,755,2.999]],["d/117",[]],["k/117",[]],["b/117",[112,1.801,152,3.024,163,1.841,178,6.394,220,6.394,225,1.876,250,2.383,315,2.876,456,2.679,644,3.347,645,3.309,755,5.516,2008,6.126,2016,6.528,5861,7.08]],["t/118",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,1852,2.999]],["d/118",[]],["k/118",[]],["b/118",[152,2.835,158,4.691,163,1.894,201,6.91,225,1.93,644,2.979,645,2.946,1852,5.675,5875,6.69]],["t/119",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,254,2.207]],["d/119",[]],["k/119",[]],["b/119",[112,1.993,152,3.047,163,1.775,174,6.164,193,6.164,203,6.164,206,6.624,225,1.808,250,2.638,254,5.244,5529,5.922,5864,7.08,5865,7.08,5876,6.443,5877,5.905]],["t/120",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,2276,3.205]],["d/120",[]],["k/120",[]],["b/120",[112,1.811,152,2.953,163,1.858,185,6.454,225,1.893,250,2.081,315,2.892,456,2.34,644,2.923,963,5.405,1613,5.951,1616,7.118,1716,4.774,1987,4.882,2012,6.454,2276,5.951,5581,5.951]],["t/121",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,723,2.516]],["d/121",[]],["k/121",[]],["b/121",[71,2.774,112,1.791,152,3.016,158,4.85,163,1.824,177,6.335,223,6.335,225,1.858,250,2.37,315,2.861,316,5.988,403,2.102,456,2.664,644,3.329,645,2.837,723,4.586,963,5.306,965,4.164,1283,4.772]],["t/122",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,651,2.009]],["d/122",[]],["k/122",[]],["b/122",[112,1.963,147,1.93,152,3.102,158,3.597,163,1.658,184,5.76,187,5.76,190,5.518,209,5.76,213,5.76,221,5.76,225,1.69,250,2.598,255,2.906,315,3.135,337,2.761,399,2.55,415,2.522,456,2.92,561,3.02,611,3.102,644,3.648,645,3.551,650,5.13,651,4.782,652,4.692,654,4.824,655,5.255,820,4.17,821,3.928,963,4.824,1638,6.406,2010,5.76,2019,5.311,2611,6.414,3300,6.406,3303,5.518,4868,6.414]],["t/123",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,300,2.039]],["d/123",[]],["k/123",[]],["b/123",[83,3.989,106,2.72,112,1.582,152,2.96,163,1.869,182,6.219,225,1.904,250,2.093,300,4.372,315,2.526,403,2.154,456,2.353,644,2.94,645,2.907,758,4.054,2653,5.026]],["t/124",[0,0.4,1,0.396,2,0.262,3,0.409,4,0.138,199,2.682,1990,1.72,3695,1.874,3696,2.581]],["d/124",[]],["k/124",[]],["b/124",[4,0.171,18,2.513,25,3.744,30,3.08,37,1.275,41,0.78,43,1.15,62,1.275,66,1.217,73,2.234,81,2.89,89,2.656,95,1.048,96,1.311,100,1.133,106,0.656,108,0.734,112,0.381,113,1.36,117,1.323,119,2.679,120,0.635,121,1.203,123,2.126,124,0.622,129,2.57,133,0.701,134,1.79,135,1.923,139,1.915,141,1.212,143,2.502,144,1.705,145,1.804,146,1.125,147,1.864,152,1.995,153,1.217,155,1.254,161,1.642,163,0.451,166,0.468,167,1.964,199,3.904,202,2.987,216,1.307,218,1.034,225,0.459,229,1.523,230,0.78,232,3.509,233,1.883,237,0.962,238,2.147,240,1.491,243,2.462,244,2.79,245,2.036,246,1.5,247,2.984,249,0.905,250,0.856,256,1.972,257,1.59,258,1.63,266,1.523,268,1.163,269,1.825,279,2.933,280,1.942,281,1.002,282,1.513,283,0.832,284,0.78,285,0.918,287,2.918,288,1.745,290,2.335,291,0.994,292,1.567,300,3.989,303,3.912,304,2.272,305,2.144,308,2.078,314,0.821,315,1.776,329,2.588,331,3.723,338,2.165,341,1.125,344,1.11,345,2.676,347,1.011,348,2.44,352,2.595,354,2.502,357,1.585,358,1.307,359,2.663,360,2.952,362,1.491,364,1.622,365,0.867,367,1.671,368,2.579,369,1.292,371,1.305,377,2.315,385,3.31,387,1.682,388,1.044,392,1.184,393,1.011,399,3.011,400,1.889,403,1.846,404,1.217,407,2.377,414,1.716,415,2.538,425,1.838,426,1.912,428,1.723,433,0.78,442,2.592,445,2.952,456,1.654,469,0.892,474,2.122,477,1.45,479,0.79,480,1.79,487,2.409,489,1.029,491,2.866,505,0.743,507,1.029,508,1.275,513,3.516,521,2.616,527,0.743,529,1.43,533,2.866,538,0.821,540,1.957,543,1.203,555,2.115,557,1.784,563,0.867,569,2.197,603,1.5,613,1.942,644,0.709,645,1.549,647,0.994,648,2.676,650,1.394,657,0.752,663,2.321,669,2.291,670,1.846,671,1.311,672,2.862,674,1.393,675,0.855,676,1.357,677,0.855,678,0.81,679,0.932,690,0.994,691,2.449,692,2.504,697,1.243,701,1.923,702,1.964,703,0.962,704,0.918,705,1.011,706,0.994,707,1.011,708,0.918,710,1.642,711,1.275,717,0.821,718,0.8,720,1.811,727,2.029,728,4.68,731,2.772,734,1.11,737,1.311,739,0.892,761,1.888,762,0.879,763,1.088,764,0.78,774,3.254,786,1.088,787,1.632,803,1.212,818,2.633,819,2.126,841,1.632,845,1.5,928,1.351,931,0.761,933,1.394,937,0.918,940,1.566,947,0.918,948,1.394,950,1.375,955,0.932,956,1.957,957,0.892,958,0.855,959,0.962,960,2.196,969,2.559,970,1.184,971,1.011,974,1.811,981,2.779,986,2.108,990,1.133,1007,4.04,1011,2.89,1024,1.566,1028,3.852,1030,2.545,1038,1.307,1061,3.998,1066,1.351,1068,1.444,1087,2.995,1271,2.108,1277,2.717,1283,0.962,1319,2.926,1381,1.743,1395,1.566,1647,1.394,1648,1.243,1716,1.964,1718,1.311,1740,3.605,1760,3.172,1803,1.394,1808,1.351,1823,1.351,1825,3.63,1829,2.224,1830,3.235,1866,1.394,1870,1.275,1988,2.353,1990,4.515,2058,2.545,2063,1.876,2072,1.243,2084,1.068,2089,2.453,2093,2.449,2097,1.876,2114,5.162,2134,1.243,2136,2.89,2140,2.366,2158,4.04,2164,2.355,2215,3.301,2263,2.79,2264,2.108,2273,3.904,2292,2.057,2315,1.351,2340,1.743,2347,2.449,2368,1.311,2370,1.645,2377,1.743,2569,1.566,2572,1.212,2584,4.539,2612,1.029,2653,3.156,2678,1.394,2767,2.897,2781,1.645,2871,1.184,2885,1.566,2941,2.453,2942,2.359,2953,2.366,2959,4.539,2972,1.444,2991,4.806,3086,5.468,3226,1.351,3341,2.897,3360,1.645,3535,4.306,3695,4.134,3696,6.623,3697,3.459,3698,2.958,3699,2.958,3702,7.574,3704,2.958,3709,4.076,3711,2.449,3712,2.656,3713,2.79,3715,2.545,3716,2.545,3717,2.545,3720,2.656,3723,2.545,3728,1.743,3729,1.743,3732,6.664,3735,4.145,3741,3.413,3743,4.145,3747,4.145,3750,4.145,3754,1.743,3755,4.145,3760,4.145,3764,4.145,3766,5.082,3768,2.449,3769,1.743,3770,1.5,3775,3.634,3776,3.634,3790,5.024,3845,1.876,4021,5.37,4100,1.394,4101,1.394,4102,1.645,4250,2.79,4352,3.459,4500,1.645,4870,1.743,4871,1.743,5215,4.076,5373,1.645,5465,1.5,5466,2.79,5482,1.5,5878,2.077,5879,1.743,5880,1.876,5881,2.077,5882,3.523,5883,3.523,5884,2.077,5885,2.077,5886,2.077,5887,1.876,5888,2.077,5889,2.077,5890,2.077,5891,1.743,5892,1.743,5893,2.077,5894,2.958,5895,1.743,5896,3.182,5897,3.182,5898,3.182,5899,3.182,5900,1.876,5901,1.876,5902,1.743,5903,1.876,5904,1.876,5905,1.743,5906,2.077,5907,2.077,5908,3.182,5909,3.523,5910,2.077,5911,3.852,5912,4.589,5913,2.077,5914,3.523,5915,3.523,5916,3.523,5917,2.077,5918,7.751,5919,1.876,5920,7.05,5921,4.539,5922,2.077,5923,5.522,5924,1.876,5925,6.193,5926,2.077,5927,4.145,5928,2.958,5929,4.539,5930,4.793,5931,2.077,5932,3.182,5933,1.876,5934,1.876,5935,2.077,5936,3.182,5937,1.876,5938,2.077,5939,2.077,5940,2.077,5941,1.876,5942,2.077,5943,1.876,5944,1.876,5945,2.077,5946,2.077,5947,1.876,5948,2.077,5949,3.523,5950,1.876,5951,2.077,5952,2.077,5953,1.743,5954,5.406,5955,4.589,5956,5.406,5957,5.406,5958,1.876,5959,2.077,5960,1.876,5961,2.077,5962,2.077,5963,1.743,5964,2.077,5965,1.876,5966,1.876,5967,1.876,5968,1.876,5969,1.876,5970,2.077,5971,3.523,5972,2.077,5973,2.077,5974,2.077,5975,1.876,5976,1.645,5977,1.743,5978,2.79,5979,3.523,5980,2.958,5981,3.523,5982,1.566,5983,1.876,5984,1.645,5985,1.876,5986,1.876]],["t/125",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,173,2.994,1990,1.84,2991,1.934]],["d/125",[]],["k/125",[]],["b/125",[4,0.136,11,2.307,18,2.161,25,3.485,30,3.024,37,1.331,41,2.088,43,0.708,62,1.331,66,1.262,71,2.97,73,2.306,81,1.953,82,0.959,89,3.57,95,1.094,96,2.307,100,1.994,106,0.685,108,0.766,112,0.398,113,2.466,117,1.372,119,2.347,121,0.74,123,1.692,124,0.649,129,1.859,133,1.233,134,1.425,135,1.183,139,2.319,141,1.265,143,1.801,144,1.748,145,1.581,146,0.692,147,1.808,149,1.297,152,2.036,153,1.635,154,0.708,155,0.998,161,1.988,163,0.471,166,1.253,173,4.19,202,2.808,216,1.355,225,0.479,229,1.565,230,0.814,232,2.689,233,1.953,235,2.7,237,1.004,238,2.251,239,0.835,240,1.546,243,2.449,244,3.038,245,2.296,246,1.566,247,1.41,249,0.944,250,1.151,252,2.99,255,0.824,256,2.341,257,1.244,258,1.377,266,1.565,279,2.944,280,0.917,281,1.039,282,0.931,283,1.463,284,0.814,287,2.801,288,1.794,290,2.499,292,1.247,300,3.576,303,3.263,304,3.192,305,1.876,308,2.375,311,1.074,314,0.857,315,1.389,331,2.805,337,1.418,338,2.689,341,1.167,345,2.744,347,1.779,348,2.496,352,2.538,354,2.976,357,1.635,358,3,359,2.138,360,2.73,362,1.546,364,1.662,367,1.534,368,2.255,369,2.016,371,1.347,385,3.011,387,1.735,388,1.083,399,3.319,400,2.168,403,0.542,404,2.143,407,2.213,414,3.022,415,2.481,425,2.226,426,2.125,428,2.088,442,1.839,444,0.988,445,2.062,451,1.779,456,1.519,469,0.931,474,1.307,477,2.554,480,0.846,487,2.036,489,1.074,491,3.789,505,2.56,507,1.074,508,1.331,513,1.953,515,0.868,519,0.988,521,2.083,527,2.56,529,1.483,533,2.063,538,2.659,540,2.591,555,2.501,557,2.048,559,1.444,561,1.444,563,1.525,569,1.749,613,2.626,644,0.74,645,1.598,647,1.038,648,0.959,656,1.038,657,0.785,663,1.569,669,1.41,670,2.481,671,1.369,672,1.277,674,1.444,675,0.892,676,1.407,677,0.892,678,0.846,679,0.973,686,1.183,690,1.038,691,5.226,692,4.27,697,1.297,700,1.136,701,1.183,704,0.959,705,1.056,706,2.267,707,1.056,708,0.959,710,1.307,711,2.244,715,2.639,717,0.857,718,1.407,720,1.878,728,4.58,731,2.197,733,0.959,739,0.931,743,2.244,757,1.114,761,1.949,762,0.917,763,1.136,764,2.331,774,3.605,778,3.394,781,1.094,786,1.915,787,2.194,803,1.265,818,1.056,819,2.194,841,1.692,845,1.566,931,1.735,937,0.959,940,2.754,950,1.425,952,1.455,955,0.973,956,1.714,957,0.931,958,0.892,959,1.004,960,1.581,966,1.717,969,1.209,970,1.236,981,1.878,990,1.994,992,1.297,1008,1.844,1038,2.302,1039,2.186,1087,2.519,1271,2.833,1277,2.495,1283,1.004,1319,1.976,1716,2.64,1718,1.369,1736,1.369,1740,1.114,1754,1.331,1793,2.453,1803,1.455,1812,1.41,1825,2.453,1829,2.307,1830,2.186,1832,2.754,1866,1.455,1988,0.776,1990,4.552,2072,1.297,2084,1.114,2089,1.953,2114,5.253,2134,1.297,2136,3.826,2140,2.453,2158,2.244,2164,3.623,2255,1.507,2263,4.401,2264,2.833,2273,3.42,2274,1.297,2292,2.764,2315,1.41,2347,1.507,2368,2.307,2569,1.634,2584,3.975,2678,1.455,2693,1.209,2783,1.004,2831,1.209,2871,1.236,2941,2.531,2942,2.434,2991,5.086,3226,2.376,3341,2.307,3360,1.717,3445,5.651,3535,3.811,3695,4.99,3696,5.782,3697,1.634,3709,2.754,3711,3.292,3712,3.57,3713,3.75,3715,2.639,3716,2.639,3717,2.639,3720,1.634,3723,1.566,3741,4.247,3758,3.067,3763,1.41,3766,1.82,3768,2.54,3770,1.566,3775,1.717,3776,1.717,3777,4.277,3778,3.3,3781,7.306,3790,4.247,3791,1.958,3796,1.958,3798,4.277,3800,6.79,3802,6.465,3803,1.958,3804,4.277,3806,4.277,3814,5.605,3815,5.605,3816,5.02,3817,2.307,3818,5.02,3819,5.605,3820,5.605,3821,3.3,3919,1.507,4021,5.108,4100,1.455,4101,3.179,4102,1.717,4250,5.327,4500,1.717,4870,1.82,4871,1.82,5373,1.717,5465,1.566,5466,2.893,5482,1.566,5548,2.893,5713,5.02,5891,1.82,5892,1.82,5895,3.067,5896,4.277,5897,4.277,5898,4.277,5899,4.277,5900,1.958,5901,1.958,5902,1.82,5905,1.82,5911,1.82,5919,1.958,5920,5.648,5921,3.067,5923,5.209,5925,4.666,5928,3.067,5929,3.067,5930,3.75,5937,1.958,5958,1.958,5960,3.3,5963,1.82,5965,1.958,5966,1.958,5967,1.958,5968,1.958,5969,1.958,5977,1.82,5978,2.893,5987,4.736,5988,6.311,5989,2.168,5990,2.168,5991,2.168,5992,2.168,5993,2.168,5994,2.168,5995,7.518,5996,2.168,5997,2.168,5998,2.168,5999,2.168,6000,2.168,6001,1.82,6002,2.168,6003,3.654,6004,2.168,6005,3.654,6006,3.654,6007,2.168,6008,2.168,6009,2.168,6010,2.168,6011,2.168,6012,2.168,6013,3.654,6014,2.168,6015,2.168,6016,2.168,6017,2.168,6018,2.168,6019,2.168,6020,3.654,6021,2.168,6022,2.168,6023,7.158,6024,7.518,6025,2.168,6026,3.654,6027,4.736,6028,2.168,6029,2.168,6030,2.168,6031,2.168,6032,2.168,6033,2.168,6034,2.168,6035,2.168,6036,2.168,6037,2.168,6038,5.558,6039,4.736,6040,2.168,6041,2.168,6042,2.168,6043,2.168,6044,2.893,6045,4.277,6046,2.168]],["t/126",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,112,0.729,5529,2.167,5530,2.994]],["d/126",[]],["k/126",[]],["b/126",[4,0.337,18,2.421,71,1.795,107,2.269,112,1.738,113,2.196,120,1.664,124,1.629,144,1.531,147,2.391,154,1.775,155,2.472,163,1.18,191,3.927,202,1.756,218,2.471,225,1.203,228,2.479,229,2.086,238,2.263,244,2.796,245,1.501,250,2.429,256,2.52,257,2.765,258,2.629,265,4.06,266,2.75,268,2.445,269,2.5,279,2.808,281,2.396,285,2.404,287,3.097,288,1.756,304,3.372,305,2.638,352,3.053,357,1.878,358,2.017,362,2.301,364,2.616,367,1.501,368,2.907,369,2.372,370,3.259,371,2.107,388,2.497,402,4.384,403,2.5,405,2.56,433,2.042,456,2.302,469,2.335,474,2.496,491,4.352,498,2.648,499,2.648,500,2.068,648,2.404,841,2.519,960,1.815,992,3.254,1087,2.208,1731,4.13,1988,3.689,1990,2.519,2069,3.536,2164,4.253,2941,3.96,2942,3.808,3739,4.099,3745,3.927,4021,3.34,5520,4.912,5529,4.597,6047,8.547,6048,9.045,6049,8.547,6050,8.424,6051,5.855,6052,9.646,6053,8.424,6054,7.407,6055,6.671,6056,5.438,6057,5.438,6058,4.912,6059,5.866,6060,6.69,6061,4.912,6062,4.912,6063,4.912,6064,4.912,6065,4.912,6066,4.912,6067,5.438,6068,5.438,6069,4.912,6070,4.912,6071,4.912,6072,4.912,6073,5.438,6074,4.912]],["t/127",[0,0.4,1,0.396,2,0.262,3,0.409,4,0.138,191,2.682,202,1.199,1988,1.328,1990,1.72]],["d/127",[]],["k/127",[]],["b/127",[4,0.201,18,2.864,30,1.838,41,1.316,43,1.144,73,3.583,108,1.239,112,1.54,117,1.316,120,1.072,121,1.838,129,1.05,133,1.183,134,2.101,143,2.494,144,2.072,145,1.797,146,1.119,147,2.205,152,2.77,153,1.86,154,2.402,155,2.385,163,0.761,191,5.734,202,3.217,216,1.997,218,1.58,225,0.775,229,1.516,230,1.316,232,1.926,233,1.874,238,2.4,244,2.591,245,1.81,248,2.436,250,2.422,256,2.412,257,1.722,258,1.334,266,2.236,279,2.932,281,0.997,287,2.973,288,1.132,292,1.197,300,2.381,303,2.989,304,2.895,305,2.337,311,1.737,314,2.128,341,2.094,352,2.68,358,1.3,359,2.011,360,2.484,362,3.909,364,2.245,367,1.486,368,2.675,369,2.878,370,1.095,371,1.865,385,3.414,388,1.596,394,1.574,400,1.881,403,0.877,404,1.86,415,1.777,426,2.071,428,2.022,442,2.353,445,2.432,456,1.471,469,1.505,474,2.55,477,1.442,487,2.403,491,3.205,502,1.527,505,2.998,513,1.874,527,1.926,540,1.269,555,2.928,557,2.62,559,2.128,569,2.578,648,1.55,657,1.949,663,1.505,665,1.802,672,1.881,674,2.592,675,2.216,676,2.834,677,2.216,678,2.101,704,1.55,710,1.254,717,1.385,718,1.35,731,2.908,739,1.505,761,2.216,762,1.483,774,2.775,775,1.837,781,2.717,787,3.882,931,1.973,937,1.55,956,1.269,960,2.188,969,3.002,980,2.046,998,4.645,1007,2.152,1038,1.3,1061,1.999,1067,1.913,1740,5.424,1771,3.502,1852,6.007,1873,5.532,1988,3.483,1990,4.968,2163,2.768,2164,3.802,2402,2.097,2572,4.634,2612,1.737,2619,4.295,2871,1.999,2941,2.878,2942,2.768,2991,2.622,3695,1.769,3697,2.642,3701,4.059,3790,2.213,3817,2.213,4021,4.027,4101,2.353,4387,5.114,5529,4.015,5530,2.642,5833,2.353,5875,3.615,5891,2.942,5892,2.942,6047,4.864,6049,5.922,6052,8.518,6058,3.166,6059,2.776,6060,4.864,6061,4.864,6062,5.922,6063,4.864,6064,5.922,6065,4.864,6066,6.646,6069,4.864,6070,6.646,6071,4.864,6072,6.646,6074,5.922,6075,7.171,6076,3.505,6077,3.505,6078,4.264,6079,3.505,6080,3.505,6081,5.385,6082,6.58,6083,4.943,6084,5.985,6085,3.505,6086,3.505,6087,3.505,6088,3.505,6089,5.192,6090,3.505,6091,5.826,6092,2.776,6093,2.776,6094,6.287,6095,6.287,6096,4.264,6097,2.776,6098,4.264,6099,2.776,6100,2.776,6101,4.264,6102,2.776,6103,2.642,6104,2.776,6105,5.192,6106,6.287,6107,2.776,6108,4.264,6109,2.776,6110,2.776,6111,2.776,6112,2.776,6113,5.385,6114,5.385,6115,6.177,6116,3.505,6117,3.505,6118,3.505,6119,3.505,6120,3.505,6121,3.505,6122,3.505,6123,3.505,6124,5.826,6125,4.52]],["t/128",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,158,1.87,201,3.145,5875,2.666]],["d/128",[]],["k/128",[]],["b/128",[2,0.438,4,0.146,15,1.582,18,3.101,29,0.638,30,1.337,31,1.978,39,1.582,40,1.978,41,3.674,43,3.079,47,2.953,52,1.038,60,2.154,62,1.447,65,3.454,69,2.367,81,1.259,82,1.419,83,1.486,85,0.988,93,1.234,96,0.828,97,1.184,99,2.829,106,2.633,107,3.957,108,0.463,110,1.582,112,0.241,113,1.736,117,1.696,119,1.59,120,1.792,121,0.804,123,3.012,124,2.332,128,0.988,130,1.1,132,2.687,133,1.697,134,1.252,137,0.88,138,1.184,139,1.339,141,1.375,143,3.567,144,1.103,145,3.026,146,2.536,147,2.725,148,3.79,150,5.599,152,0.373,153,1.353,154,2.023,155,0.644,158,3.805,161,0.843,162,1.789,163,0.285,165,1.701,166,0.531,202,0.761,204,3.709,218,0.385,225,0.999,229,2.437,230,1.696,232,1.148,237,2.329,238,1.755,240,1.358,241,2.902,243,2.488,244,0.992,245,2.192,248,1.637,249,1.967,250,1.646,256,0.325,257,1.029,266,1.65,279,2.86,282,2.158,283,0.944,285,1.042,286,0.674,287,0.365,290,0.385,291,1.875,292,0.448,304,0.453,305,0.657,306,3.248,307,2.086,308,2.139,311,3.222,314,2.677,315,0.691,337,2.84,338,0.469,339,0.852,341,2.163,342,1.1,344,2.094,347,1.147,350,1.701,352,1.083,354,3.747,359,2.629,360,1.083,361,1.532,363,0.701,364,1.347,367,1.081,393,1.147,399,1.678,400,0.823,401,0.911,403,0.803,407,2.408,408,3.248,414,0.638,415,3.548,425,0.944,426,3.382,428,0.885,433,1.696,440,2.317,442,1.838,444,2.292,445,2.412,446,2.23,451,1.907,469,0.563,474,0.65,479,0.499,480,0.919,482,1.447,487,0.971,488,1.108,489,0.65,490,2.23,491,2.95,492,0.765,500,1.49,503,2.317,505,2.095,507,1.941,508,1.447,515,1.285,519,1.463,533,1.026,538,0.518,542,1.234,543,0.804,555,2.047,557,0.433,559,0.931,561,0.518,563,0.547,581,0.784,613,0.997,637,6.099,644,1.095,645,1.524,647,1.128,648,0.58,651,3.98,657,1.981,663,2.791,665,0.674,669,2.547,670,3.07,672,3.313,674,0.518,676,3.255,686,1.751,703,1.814,706,2.407,707,1.147,710,1.615,717,0.518,718,2.256,719,1.234,720,0.674,723,2.464,726,2.161,727,1.732,728,2.238,730,2.137,731,2.162,733,2.223,734,0.701,735,3.673,736,1.487,737,2.851,740,0.701,741,2.238,744,1.637,747,4.23,749,1.375,758,1.109,762,0.555,764,0.492,786,0.687,787,0.607,803,0.765,818,1.147,820,0.715,922,2.63,928,2.086,931,0.48,941,0.784,942,0.828,946,1.919,947,0.58,948,0.88,950,0.511,973,1.343,974,2.321,986,4.198,987,2.54,989,1.184,990,1.286,991,0.852,992,0.784,998,3.914,1008,0.661,1009,1.532,1012,1.184,1023,3.576,1026,0.852,1033,1.038,1034,3.139,1035,1.776,1036,1.409,1042,0.988,1043,2.54,1066,1.532,1087,1.302,1107,1.865,1108,1.343,1160,1.1,1274,1.532,1282,2.773,1283,0.607,1319,1.884,1665,1.829,1666,1.1,1667,1.978,1669,0.701,1710,5.731,1712,3.791,1720,1.865,1723,2.636,1724,3.791,1726,1.184,1729,0.88,1730,4.782,1731,1.313,1732,1.184,1734,2.419,1736,0.828,1742,2.54,1749,3.673,1750,2.128,1751,2.317,1754,1.97,1760,3.07,1761,1.1,1762,1.776,1767,1.184,1768,1.038,1771,0.852,1774,2.086,1775,2.54,1777,1.1,1784,1.1,1786,1.184,1787,4.072,1788,3.54,1789,2.829,1793,3.031,1800,3.102,1803,0.88,1808,1.532,1811,0.852,1812,2.086,1816,1.532,1817,1.865,1827,1.038,1829,4.569,1830,2.702,1832,4.124,1836,1.038,1837,1.1,1844,0.911,1851,0.947,1852,5.745,1856,2.953,1862,0.947,1865,3.809,1872,0.911,1873,0.805,1876,1.184,1878,1.184,1879,5.291,1993,3.288,2027,3.933,2032,1.038,2036,2.128,2038,1.751,2045,3.993,2046,3.791,2048,4.365,2072,1.409,2073,1.829,2084,2.321,2089,1.259,2090,1.038,2095,1.1,2113,0.988,2144,1.1,2163,2.584,2164,0.571,2194,1.701,2207,1.1,2215,0.617,2246,2.128,2260,3.288,2265,2.723,2276,1.637,2288,1.532,2306,1.1,2307,1.184,2352,1.978,2369,6.034,2378,1.1,2402,2.343,2421,1.038,2425,0.911,2428,2.128,2431,1.1,2445,2.086,2448,1.1,2492,5.291,2687,1.701,2688,1.582,2700,1.701,2765,2.128,2766,1.1,2831,1.313,2838,1.184,2841,1.184,2972,0.911,3037,5.291,3104,1.184,3108,1.1,3110,1.184,3112,7.903,3125,0.947,3128,1.184,3129,1.582,3226,1.532,3303,0.947,3327,2.317,3365,0.988,3366,1.184,3521,1.184,3661,1.865,3770,0.947,3817,0.828,3842,1.1,3844,1.1,3902,0.988,3994,1.582,3995,1.1,4085,1.865,4090,1.1,4245,7.093,4278,1.1,4365,1.865,4367,0.911,4383,1.701,4401,1.038,4449,1.776,4660,1.038,4664,1.038,5085,1.1,5098,3.79,5232,1.978,5548,5.556,5668,1.1,5870,2.419,5874,2.693,5875,6.658,5894,1.1,5976,1.038,5980,2.693,5984,1.038,6044,1.865,6082,4.673,6083,2.419,6084,4.124,6103,0.988,6126,1.311,6127,1.311,6128,1.311,6129,1.311,6130,1.311,6131,1.311,6132,3.917,6133,1.311,6134,1.311,6135,1.311,6136,3.208,6137,1.311,6138,2.128,6139,2.898,6140,2.356,6141,1.184,6142,1.311,6143,3.917,6144,1.311,6145,1.311,6146,1.311,6147,1.311,6148,7.017,6149,2.356,6150,1.311,6151,3.208,6152,6.502,6153,1.311,6154,2.356,6155,3.917,6156,2.898,6157,2.356,6158,2.356,6159,1.311,6160,1.311,6161,1.311,6162,1.038,6163,1.311,6164,3.208,6165,2.356,6166,2.356,6167,2.356,6168,1.311,6169,1.311,6170,1.311,6171,1.311,6172,5.471,6173,3.208,6174,1.311,6175,1.311,6176,1.311,6177,1.311,6178,1.311,6179,1.184,6180,1.311,6181,1.311,6182,1.311,6183,8.917,6184,1.311,6185,1.311,6186,2.356,6187,1.311,6188,1.311,6189,2.356,6190,1.184,6191,3.917,6192,2.356,6193,1.311,6194,2.128,6195,1.311,6196,1.311,6197,1.311,6198,1.311,6199,1.311,6200,1.311,6201,5.027,6202,5.471,6203,1.311,6204,1.311,6205,1.184,6206,1.311,6207,2.356,6208,1.311,6209,4.515,6210,1.311,6211,1.311,6212,2.356,6213,1.311,6214,4.515,6215,2.356,6216,1.311,6217,1.311,6218,1.311,6219,1.311,6220,2.356,6221,2.898,6222,1.311,6223,3.208,6224,1.311,6225,1.311,6226,3.208,6227,1.311,6228,1.311,6229,2.356,6230,1.311,6231,1.311,6232,3.917,6233,1.311,6234,1.311,6235,4.673,6236,1.184,6237,1.184,6238,1.311,6239,3.917,6240,2.356,6241,1.311,6242,1.311,6243,1.311,6244,1.311,6245,1.311,6246,7.62,6247,1.311,6248,3.917,6249,2.356,6250,2.356,6251,1.311,6252,6.502,6253,1.311,6254,1.311,6255,1.311,6256,1.184,6257,1.311,6258,2.356,6259,1.311,6260,1.311,6261,2.356,6262,1.311,6263,1.311,6264,2.356,6265,2.356,6266,1.311,6267,1.311,6268,1.1,6269,2.356,6270,1.311,6271,2.356,6272,1.311,6273,1.311,6274,1.311,6275,1.311,6276,1.311,6277,2.356,6278,1.311,6279,2.356,6280,3.917,6281,2.356,6282,2.356,6283,1.311,6284,2.356,6285,1.311,6286,1.311,6287,1.311,6288,1.311,6289,1.311,6290,3.208,6291,1.311,6292,1.311,6293,5.471,6294,3.208,6295,2.356,6296,1.311,6297,1.311,6298,2.356,6299,1.311,6300,1.311,6301,3.917,6302,1.311,6303,3.208,6304,3.208,6305,1.311,6306,5.027,6307,1.311,6308,5.027,6309,1.311,6310,2.356,6311,1.311,6312,2.356,6313,3.208,6314,1.311,6315,2.356,6316,2.356,6317,1.311,6318,1.311,6319,2.356,6320,1.311,6321,2.356,6322,3.208,6323,1.311,6324,2.356,6325,2.356,6326,1.311,6327,1.311,6328,1.311,6329,1.311,6330,1.311,6331,1.311,6332,1.311,6333,1.311,6334,2.356,6335,1.311,6336,1.311,6337,2.356,6338,2.356,6339,2.356,6340,2.356,6341,2.356,6342,2.356,6343,2.356,6344,2.356,6345,2.356,6346,2.356,6347,2.356,6348,2.356,6349,2.356,6350,2.356,6351,2.356,6352,2.356,6353,2.356,6354,1.311,6355,1.311,6356,1.311,6357,1.311]],["t/129",[0,0.4,1,0.396,2,0.262,3,0.409,4,0.138,174,2.799,254,1.778,5864,2.581,5876,2.493]],["d/129",[]],["k/129",[]],["b/129",[2,0.427,4,0.152,18,1.736,30,1.778,41,0.93,43,0.808,44,3.278,71,1.347,100,1.351,108,0.875,111,5.576,112,1.321,117,0.93,121,1.394,122,6.035,124,0.742,129,0.742,133,0.836,134,1.593,143,1.98,144,1.701,145,1.362,146,1.663,147,2.646,152,2.163,153,1.41,154,2.347,155,2.427,161,3.177,163,0.537,165,3.761,167,4.24,174,3.926,202,1.318,216,1.514,218,1.528,224,4.648,225,0.548,229,1.149,230,1.956,232,3.478,238,2.222,244,2.457,245,2.82,248,1.721,250,2.417,253,4.755,254,4.89,256,2.542,257,1.368,258,1.497,266,1.466,279,2.943,281,1.161,287,2.944,288,0.799,291,3.198,292,1.394,303,1.861,304,2.086,305,1.684,314,0.979,329,2.493,332,2.798,338,1.46,339,5.168,341,1.303,352,1.378,360,2.039,362,3.59,364,2.129,367,1.127,368,2.711,369,2.781,370,0.774,371,1.718,385,3.489,388,1.21,392,3.444,393,2.941,400,1.426,403,1.303,404,1.41,407,1.867,408,1.298,415,0.817,426,1.645,428,1.533,442,2.577,469,1.063,474,2.604,477,2.959,479,0.942,487,2.632,491,2.631,500,1.552,502,1.079,505,3.177,511,2.227,527,0.886,540,2.603,555,3.334,557,1.994,559,1.613,561,0.979,563,1.703,567,1.185,572,2.507,615,3.572,657,1.478,663,1.063,665,1.273,672,2.777,674,1.613,675,1.019,676,1.572,677,1.019,678,0.966,703,2.412,704,1.095,710,0.886,717,0.979,718,0.954,726,1.185,731,2.388,736,2.577,739,2.868,743,1.521,761,1.68,762,1.048,774,3.043,775,2.139,781,4.564,787,1.891,931,1.496,937,1.095,946,2.442,956,0.896,973,1.412,980,1.445,998,3.813,1011,2.182,1061,1.412,1067,3.646,1108,4.336,1110,1.961,1277,2.999,1669,4.648,1740,4.85,1771,2.654,1811,3.928,1825,2.74,1826,1.961,1852,1.61,1866,4.486,1873,4.103,1988,1.863,1990,3.929,2073,5.38,2273,4.362,2402,1.481,2482,3.427,2572,4.807,2652,2.837,2871,1.412,2991,1.988,3695,1.249,3701,3.077,3790,1.563,3817,1.563,3994,3.496,4021,2.507,4101,1.662,4387,5.524,5529,2.842,5833,1.662,5855,2.079,5864,6.912,5870,4.553,5875,2.74,5876,2.74,6051,1.721,6075,3.687,6078,1.961,6082,4.553,6083,3.077,6084,3.926,6089,3.232,6091,4.783,6092,1.961,6093,1.961,6094,5.291,6095,5.291,6096,3.232,6097,1.961,6098,3.232,6099,1.961,6100,1.961,6101,3.232,6102,1.961,6103,1.867,6104,1.961,6105,4.783,6106,5.291,6107,1.961,6108,3.232,6109,1.961,6110,1.961,6111,1.961,6112,1.961,6115,7.456,6124,6.293,6125,3.427,6235,1.867,6358,4.703,6359,8.704,6360,4.703,6361,3.687,6362,4.703,6363,3.687,6364,4.703,6365,4.703,6366,3.687,6367,4.703,6368,6.035,6369,4.362,6370,3.687,6371,4.703,6372,4.703,6373,3.687,6374,6.28,6375,3.687,6376,3.427,6377,3.687,6378,7.854,6379,6.04,6380,7.19,6381,3.687,6382,5.456,6383,3.687,6384,3.687,6385,3.687,6386,6.682,6387,6.035,6388,6.682,6389,3.687,6390,4.703,6391,3.687,6392,4.082,6393,3.687,6394,4.703,6395,3.687,6396,2.476,6397,2.476,6398,2.476,6399,3.232,6400,2.476,6401,2.476,6402,5.207,6403,4.082,6404,6.04,6405,2.476,6406,4.082,6407,4.082,6408,2.079,6409,2.476,6410,4.082,6411,2.476,6412,2.476,6413,2.476,6414,4.082,6415,2.476,6416,4.082,6417,4.082,6418,2.476,6419,2.476,6420,2.476,6421,2.476,6422,2.476,6423,2.476,6424,2.476,6425,6.04,6426,4.703,6427,2.079,6428,2.236,6429,2.079,6430,2.476,6431,2.236,6432,2.476,6433,2.236,6434,6.04,6435,5.207,6436,3.427,6437,3.427]],["t/130",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,112,0.729,5529,2.167,5864,2.76]],["d/130",[]],["k/130",[]],["b/130",[4,0.312,44,2.075,71,1.502,107,1.899,111,3.912,112,1.537,113,2.269,120,1.392,124,2.654,144,1.282,147,2.113,154,1.485,155,2.597,161,1.628,163,0.988,174,3.431,218,2.788,224,3.495,225,1.006,228,2.075,229,1.841,232,2.339,238,2.093,244,2.366,245,1.256,250,2.474,253,2.723,254,4.416,256,2.637,257,2.795,258,2.59,265,3.756,266,2.496,268,2.158,269,3.114,279,2.85,280,1.926,281,2.625,285,2.012,287,3.113,288,1.469,297,2.873,304,2.643,305,1.823,325,5.178,339,5.441,352,2.207,357,1.572,358,1.688,362,1.926,364,2.693,368,2.98,369,2.155,370,3.355,371,2.177,388,2.269,402,4.588,403,2.572,405,2.143,442,1.349,445,2.426,469,1.954,474,2.309,502,1.982,507,2.255,559,2.585,615,3.495,767,3.361,841,2.108,992,2.723,996,3.287,1277,2.043,1669,2.433,1749,3.055,1988,1.628,2073,2.595,2622,4.832,3792,3.431,3994,3.055,5116,3.82,5529,3.568,5864,7.539,5876,3.055,6051,3.163,6358,4.11,6359,9.797,6360,8.333,6361,4.11,6362,4.11,6363,4.11,6364,4.11,6366,4.11,6367,4.11,6368,8.585,6369,6.042,6370,4.11,6371,4.11,6372,8.004,6373,5.906,6374,3.287,6377,4.11,6378,4.11,6381,4.11,6382,4.11,6383,8.004,6384,5.906,6385,8.004,6389,4.11,6390,4.11,6391,5.906,6393,4.11,6394,4.11,6395,4.11,6426,4.11,6428,6.913,6438,8.367,6439,7.653,6440,8.367,6441,7.653,6442,4.11,6443,4.551,6444,4.11,6445,4.11,6446,4.11,6447,4.551,6448,5.489,6449,5.489,6450,6.539,6451,6.539,6452,6.539,6453,6.539,6454,5.489,6455,4.551,6456,4.551,6457,4.551,6458,4.551]],["t/131",[0,0.4,1,0.396,2,0.262,3,0.409,4,0.138,193,2.799,254,1.778,5865,2.581,5876,2.493]],["d/131",[]],["k/131",[]],["b/131",[4,0.133,18,1.572,30,2.088,41,0.794,43,0.69,44,1.631,71,1.181,81,2.924,82,0.935,83,0.979,100,1.154,108,0.747,112,1.22,117,0.794,121,1.588,124,1.638,129,2.32,133,0.714,134,1.814,143,1.768,144,2.094,145,1.194,146,1.485,147,2.471,151,1.375,152,2.116,153,1.606,154,1.518,155,2.117,161,3.243,163,0.459,165,3.95,167,2.593,193,3.505,199,1.527,202,2.144,216,1.327,218,1.364,224,4.699,225,0.468,229,1.007,230,2.656,231,3.672,232,1.957,238,2.199,241,0.825,244,2.718,245,2.565,248,1.47,250,2.204,253,5.56,254,4.496,256,2.533,257,1.221,258,1.355,266,1.54,279,2.915,281,1.018,287,2.744,288,0.683,291,3.708,292,1.221,303,3.028,304,2.98,305,0.589,314,0.836,323,2.584,329,2.928,331,1.067,332,2.534,339,4.318,341,1.142,352,1.57,358,0.784,359,1.933,360,1.846,362,3.391,364,1.639,367,1.688,368,2.406,369,2.617,370,0.661,371,1.556,385,3.059,388,1.06,399,1.194,400,2.32,403,1.163,404,1.236,407,2.395,408,1.108,414,2.264,415,2.334,425,3.209,426,1.469,428,1.344,442,2.204,445,3.484,469,0.908,474,2.212,477,3.78,479,0.804,480,2.134,487,2.141,488,1.236,500,0.804,502,0.921,505,2.771,511,2.537,513,1.912,515,1.433,517,3.672,527,0.756,533,3.081,538,1.414,540,1.295,555,2.598,557,1.535,559,2.418,561,1.414,586,1.527,590,1.234,656,1.012,657,1.295,659,2.697,663,0.908,665,2.812,672,1.625,674,1.414,675,0.87,676,1.378,677,1.914,678,0.825,694,0.921,703,2.534,704,0.935,710,0.756,717,0.836,718,1.378,720,3.144,726,2.226,728,1.048,729,1.674,731,2.162,733,2.705,734,1.912,739,2.348,761,1.472,762,0.895,765,1.952,774,2.81,775,1.875,781,4.16,787,0.979,818,5.056,819,1.657,861,1.375,928,3.978,931,2.004,937,0.935,941,1.265,946,1.265,956,0.766,973,1.206,980,2.714,981,3.414,998,3.453,1011,2.924,1026,1.375,1036,1.265,1038,3.315,1039,1.265,1061,1.206,1067,2.985,1109,1.775,1110,1.674,1277,3.701,1319,2.951,1740,4.661,1771,2.326,1788,3.086,1790,4.749,1808,1.375,1811,5.494,1812,5.037,1825,2.402,1852,1.375,1873,3.756,1978,1.91,1988,2.376,1990,4.431,2016,1.335,2069,2.326,2073,6.356,2100,1.775,2136,1.13,2164,2.383,2229,3.682,2275,3.231,2368,6.497,2402,2.14,2460,1.775,2469,3.453,2549,1.775,2572,3.876,2652,2.487,2871,1.206,2961,2.259,2991,1.742,3106,3.003,3641,4.94,3695,3.569,3696,1.47,3701,2.697,3741,2.259,3763,3.557,3769,1.775,3771,1.91,3790,5.334,3817,1.335,3919,1.47,4021,3.359,4100,3.122,4101,1.42,4250,4.844,4317,3.003,4387,4.252,4449,2.697,5098,1.594,5529,3.338,5833,1.42,5855,1.775,5865,7.218,5875,2.402,5876,2.402,5894,1.775,6051,1.47,6059,2.833,6078,1.674,6082,4.123,6083,2.697,6084,3.505,6089,2.833,6091,4.331,6092,1.674,6093,1.674,6094,4.844,6095,4.844,6096,2.833,6097,1.674,6098,2.833,6099,1.674,6100,1.674,6101,3.682,6102,1.674,6103,1.594,6104,1.674,6105,4.331,6106,4.844,6107,1.674,6108,2.833,6109,1.674,6110,1.674,6111,1.674,6112,1.674,6115,5.575,6124,4.844,6125,3.003,6179,3.231,6235,1.594,6369,3.95,6374,6.453,6375,3.231,6376,3.003,6399,2.833,6408,1.775,6427,1.775,6429,1.775,6433,1.91,6436,4.592,6437,4.592,6459,4.94,6460,7.632,6461,4.2,6462,3.231,6463,4.2,6464,3.231,6465,5.525,6466,6.996,6467,5.47,6468,5.47,6469,3.231,6470,4.94,6471,3.231,6472,5.525,6473,6.117,6474,3.231,6475,5.998,6476,4.2,6477,3.231,6478,3.231,6479,2.114,6480,2.114,6481,2.114,6482,2.114,6483,3.578,6484,2.114,6485,2.114,6486,5.998,6487,2.114,6488,3.231,6489,3.578,6490,2.114,6491,1.775,6492,7.073,6493,2.114,6494,4.65,6495,3.578,6496,6.117,6497,2.114,6498,3.578,6499,3.578,6500,5.47,6501,3.578,6502,2.114,6503,2.114,6504,2.114,6505,1.91,6506,1.91,6507,2.114,6508,2.114,6509,2.114,6510,2.114,6511,2.114,6512,2.114,6513,2.114,6514,5.47,6515,4.2,6516,1.91,6517,1.91,6518,2.114,6519,2.114,6520,2.114,6521,2.114,6522,2.114,6523,1.674,6524,1.91,6525,2.114,6526,3.578]],["t/132",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,112,0.729,5529,2.167,5865,2.76]],["d/132",[]],["k/132",[]],["b/132",[4,0.318,71,1.57,107,1.984,112,1.568,113,2.325,120,1.455,124,2.349,144,1.339,147,1.981,154,1.552,155,2.558,161,1.701,163,1.032,193,3.585,218,2.825,224,3.607,225,1.052,228,2.168,229,1.9,230,1.786,231,3.193,238,2.135,244,2.425,245,1.313,250,2.392,253,4.692,254,3.754,256,2.625,257,2.765,258,2.639,265,3.832,266,2.538,268,2.227,269,3.321,279,2.855,281,2.663,285,2.103,287,3.089,288,1.535,297,4.26,304,2.709,325,5.343,339,5.861,352,2.647,358,1.764,362,2.012,364,2.579,368,2.89,369,2.209,370,3.266,371,2.231,388,2.325,402,4.337,403,2.504,405,2.239,425,1.905,442,1.41,445,2.503,469,2.042,474,2.488,502,2.072,507,2.357,559,2.667,733,3.468,767,3.469,818,3.819,841,2.203,996,4.873,1277,2.135,1749,3.193,1988,2.414,1990,2.203,2073,5.49,2622,4.951,4070,4.295,5116,3.992,5529,3.682,5865,7.473,5876,3.193,6051,3.305,6369,6.164,6374,5.664,6442,4.295,6444,4.295,6445,4.295,6446,4.295,6448,5.664,6449,5.664,6454,5.664,6459,4.295,6460,9.621,6461,8.456,6462,4.295,6463,4.295,6464,4.295,6465,4.295,6466,4.295,6469,4.295,6470,4.295,6471,4.295,6472,8.697,6474,4.295,6475,4.295,6476,8.141,6477,6.095,6478,4.295,6505,4.295,6506,4.295,6515,4.295,6516,7.084,6523,3.766,6524,7.709,6527,7.843,6528,7.843,6529,8.535,6530,7.843,6531,8.535,6532,8.535,6533,8.535,6534,6.748,6535,6.748,6536,4.756,6537,4.756,6538,4.295,6539,6.095,6540,4.756,6541,4.756,6542,3.992,6543,4.756]],["t/133",[0,0.4,1,0.396,2,0.262,3,0.409,4,0.138,203,2.799,206,2.415,254,1.778,5877,2.682]],["d/133",[]],["k/133",[]],["b/133",[4,0.093,18,2.291,19,0.815,25,0.872,29,0.473,30,0.612,37,0.596,41,0.365,43,0.317,44,2.387,69,0.844,71,1.025,73,2.549,100,2.241,108,0.343,110,3.289,111,2.458,112,0.755,113,0.74,117,0.937,121,0.852,124,0.537,128,0.732,129,1.355,133,0.328,134,0.699,136,0.877,142,0.769,143,1.181,144,1.889,145,1.941,147,2.414,152,1.489,153,1.692,154,2.19,155,2.05,158,2.306,161,2.33,163,0.211,165,4.977,166,1.104,167,0.999,191,0.701,202,1.959,203,1.881,204,2.176,206,4.788,216,0.665,218,0.911,224,3.109,225,0.552,229,1.024,230,0.365,232,1.753,235,2.074,238,1.939,241,0.379,243,0.273,244,1.713,245,2.515,248,0.675,250,2.134,253,3.314,254,4.339,256,2.024,257,0.655,258,0.769,266,2.112,268,0.591,269,0.605,279,2.976,280,3.457,281,0.51,283,0.718,287,2.788,288,0.313,290,0.285,291,3.455,292,1.673,303,1.138,304,2.635,305,0.5,314,0.384,329,1.194,332,1.903,337,1.355,338,1.619,348,1.817,352,0.605,358,0.665,359,0.848,360,2.919,362,4.322,364,1.933,367,0.857,368,2.512,369,2.538,370,1.531,371,1.655,385,3.079,388,0.92,393,1.771,400,2.886,403,0.624,404,1.808,407,0.3,408,2.152,415,0.591,425,0.718,426,0.566,428,3.102,442,2.093,457,0.633,469,0.417,474,1.902,477,0.737,479,0.681,480,0.973,487,2.031,488,1.419,489,0.888,500,0.949,502,2.134,505,2.4,507,0.481,527,0.641,533,1.087,540,2.495,543,0.852,555,3.262,557,2.957,559,2.724,561,0.708,563,1.041,567,0.858,590,0.567,615,0.519,651,0.423,656,2.506,657,0.649,663,0.417,670,0.509,672,2.12,674,0.708,675,0.399,676,0.69,677,0.399,678,0.699,686,0.53,694,1.087,704,0.792,710,0.347,717,0.384,718,0.374,720,2.111,726,2.784,731,0.986,734,1.334,739,2.103,740,0.519,742,1.245,743,4.335,746,0.567,747,1.802,751,2.708,752,1.245,756,5.715,758,0.457,761,0.737,762,0.411,764,1.166,774,4.364,775,3.611,781,2.472,786,0.509,787,0.83,818,0.872,819,0.83,841,0.45,931,1.918,937,1.816,941,1.072,946,0.581,947,3.316,973,1.77,992,0.581,998,4.556,1006,0.652,1007,1.1,1009,0.631,1011,2.196,1024,0.732,1038,1.817,1039,0.581,1061,5.324,1067,1.694,1087,1.013,1107,0.769,1108,2.793,1277,0.804,1319,2.629,1320,5.195,1328,3.879,1361,0.701,1395,1.351,1514,7.2,1671,3.186,1711,1.976,1713,0.877,1721,1.976,1724,0.815,1740,4.199,1745,0.613,1768,1.419,1771,1.165,1788,0.904,1789,0.701,1807,3.879,1817,3.879,1820,0.701,1823,0.631,1825,6.05,1829,1.131,1852,0.631,1856,3.947,1873,3.727,1988,1.301,1990,3.411,2069,1.623,2073,5.553,2089,0.519,2301,0.815,2321,0.877,2334,1.419,2357,2.458,2402,0.581,2418,0.769,2425,2.158,2572,3.916,2622,0.613,2652,0.675,2678,6.014,2781,0.769,2871,0.554,2889,0.769,2961,0.613,2991,0.872,3129,0.652,3137,0.701,3386,4.113,3661,0.769,3695,0.904,3701,5.195,3790,0.613,3792,3.411,3817,0.613,3919,1.245,4021,2.522,4023,0.769,4100,0.652,4101,0.652,4116,0.815,4387,4.663,4508,7.2,4517,3.879,5098,0.732,5482,2.627,5529,1.362,5833,0.652,5858,4.425,5859,6.224,5869,0.877,5875,4.626,5877,4.001,6051,0.675,6059,1.419,6078,0.769,6082,5.44,6083,5.195,6084,5.322,6089,5.457,6091,6.849,6092,3.879,6093,3.879,6094,7.217,6095,7.217,6096,5.457,6097,3.879,6098,5.457,6099,3.879,6100,3.879,6101,5.457,6102,3.879,6103,3.693,6104,3.879,6105,6.312,6106,7.217,6107,3.879,6108,5.457,6109,3.879,6110,3.879,6111,3.879,6112,3.879,6124,5.157,6365,1.618,6369,4.977,6374,4.001,6399,1.419,6408,1.504,6427,0.815,6429,0.815,6431,0.877,6436,3.448,6437,3.448,6449,3.448,6491,0.815,6517,0.877,6523,0.769,6544,2.804,6545,7.681,6546,2.254,6547,1.618,6548,3.71,6549,1.618,6550,2.254,6551,1.618,6552,3.285,6553,1.618,6554,3.285,6555,7.2,6556,6.891,6557,1.618,6558,2.254,6559,1.792,6560,3.104,6561,3.104,6562,1.618,6563,2.804,6564,1.792,6565,3.054,6566,3.637,6567,1.618,6568,2.254,6569,2.804,6570,5.882,6571,1.618,6572,2.254,6573,2.804,6574,1.618,6575,2.254,6576,2.254,6577,1.618,6578,2.254,6579,2.254,6580,1.618,6581,2.254,6582,2.254,6583,1.618,6584,2.254,6585,2.254,6586,1.618,6587,2.254,6588,1.618,6589,1.618,6590,2.254,6591,1.618,6592,5.235,6593,3.637,6594,0.971,6595,5.235,6596,0.971,6597,0.971,6598,0.971,6599,1.792,6600,1.792,6601,0.971,6602,0.971,6603,2.804,6604,2.606,6605,0.971,6606,0.971,6607,0.971,6608,0.971,6609,2.254,6610,1.504,6611,0.815,6612,0.971,6613,5.69,6614,1.792,6615,2.804,6616,1.792,6617,1.618,6618,1.792,6619,0.971,6620,3.285,6621,2.804,6622,0.971,6623,0.877,6624,0.971,6625,3.71,6626,4.729,6627,0.971,6628,0.971,6629,0.971,6630,1.618,6631,0.971,6632,0.971,6633,0.971,6634,0.971,6635,0.971,6636,1.792,6637,3.104,6638,0.971,6639,4.108,6640,4.087,6641,0.971,6642,7.971,6643,7.217,6644,4.899,6645,6.891,6646,7.971,6647,4.899,6648,4.899,6649,6.891,6650,7.971,6651,6.891,6652,9.958,6653,4.899,6654,4.899,6655,4.899,6656,4.899,6657,4.899,6658,1.792,6659,0.971,6660,0.971,6661,0.971,6662,3.637,6663,4.899,6664,1.792,6665,1.792,6666,0.877,6667,0.971,6668,1.792,6669,1.792,6670,0.971,6671,0.971,6672,0.971,6673,1.618,6674,1.792,6675,0.971,6676,0.877,6677,0.971,6678,0.971,6679,0.971,6680,0.971,6681,0.971,6682,0.971,6683,0.971,6684,4.108,6685,0.971,6686,0.971,6687,0.971,6688,0.971,6689,3.104,6690,2.254,6691,2.495,6692,0.877,6693,0.971,6694,1.618,6695,0.971,6696,0.971,6697,0.971,6698,0.971,6699,0.971,6700,0.971,6701,0.877,6702,0.877,6703,1.618,6704,0.877,6705,0.971,6706,0.971]],["t/134",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,112,0.729,206,2.582,5529,2.167]],["d/134",[]],["k/134",[]],["b/134",[4,0.258,71,1.623,107,1.302,112,1.269,113,2.048,117,1.172,119,2.437,120,0.954,124,0.935,144,0.879,147,1.538,154,1.018,155,2.285,161,1.116,163,0.677,167,1.74,202,1.007,203,2.352,206,6.559,218,2.542,224,4.631,225,0.69,228,1.423,229,1.385,238,1.729,244,2.136,245,0.861,250,2.433,253,3.643,254,3.599,256,2.694,257,2.841,258,2.584,265,3.102,266,2.355,268,1.623,269,2.333,279,2.813,280,2.082,281,2.648,285,1.38,286,2.528,287,3.116,288,1.007,291,2.355,304,2.387,329,2.355,348,1.825,358,1.825,359,0.853,362,1.32,364,2.658,368,2.968,369,1.715,370,0.975,371,1.732,385,3.854,388,1.805,403,2.557,405,1.469,425,1.25,428,1.172,442,2.478,457,1.739,469,1.34,474,1.68,502,1.359,540,1.13,557,1.03,694,2.143,719,1.635,728,1.546,739,1.34,742,3.419,753,2.352,764,1.847,841,1.445,947,1.38,1104,2.352,1277,3.753,1648,1.867,1807,8.292,1988,1.76,1990,1.445,2058,3.552,2073,2.805,2622,5.629,3334,2.253,3386,6.706,3757,7.783,3792,5.209,3902,5.209,4049,2.619,5529,2.684,5748,7.826,5877,2.253,6051,2.169,6369,7.167,6374,4.397,6448,4.129,6454,7.273,6523,2.471,6538,2.818,6539,4.443,6544,2.818,6545,9.711,6546,7.215,6547,2.818,6548,2.818,6549,2.818,6550,2.818,6551,2.818,6552,2.818,6553,2.818,6554,2.818,6555,9.174,6557,2.818,6558,2.818,6562,2.818,6563,2.818,6565,2.619,6567,2.818,6568,2.818,6569,6.791,6570,8.781,6571,2.818,6572,2.818,6573,6.791,6574,2.818,6575,2.818,6576,6.791,6577,2.818,6578,2.818,6579,6.791,6580,2.818,6581,2.818,6582,6.791,6583,2.818,6584,2.818,6585,6.791,6586,2.818,6587,2.818,6588,6.791,6589,2.818,6590,2.818,6591,2.818,6603,5.499,6604,5.111,6609,6.242,6613,8.244,6615,6.242,6617,6.242,6620,8.244,6621,6.242,6623,4.443,6625,6.242,6626,8.244,6630,5.499,6640,2.818,6666,2.818,6673,2.818,6690,2.818,6694,5.499,6701,7.215,6702,2.818,6703,6.791,6704,2.818,6707,6.91,6708,6.089,6709,6.91,6710,3.12,6711,7.519,6712,3.12,6713,6.089,6714,8.916,6715,4.919,6716,6.91,6717,3.12,6718,3.12,6719,4.919,6720,3.12,6721,4.919,6722,3.12,6723,3.12,6724,3.12,6725,3.12,6726,3.12,6727,3.12,6728,3.12,6729,3.12,6730,3.12,6731,3.12,6732,2.619,6733,4.919,6734,3.12,6735,7.519,6736,4.919,6737,4.919,6738,4.919,6739,4.919,6740,4.919,6741,4.919,6742,4.919,6743,4.919,6744,4.919,6745,4.919,6746,8.361,6747,8.361,6748,3.12,6749,3.12,6750,3.12,6751,3.12]],["t/135",[0,0.376,1,0.372,2,0.246,3,0.384,4,0.13,8,2.201,112,0.641,189,2.629,315,1.023,1987,1.988]],["d/135",[]],["k/135",[]],["b/135",[2,0.383,4,0.149,18,2.199,25,2.333,30,3.314,41,0.651,43,0.985,44,1.376,54,1.445,65,1.095,66,1.042,69,1.421,71,1.792,73,1.47,77,1.164,81,1.613,82,1.771,93,2.511,95,2.739,96,1.905,106,0.548,108,0.613,112,0.88,113,0.514,117,1.134,119,0.86,120,1.226,121,0.592,123,2.219,124,0.52,129,2.13,133,1.352,134,1.178,137,1.164,139,1.259,143,1.822,144,1.529,145,1.599,146,0.554,147,2.308,152,2.177,153,1.384,155,1.75,161,1.433,162,0.967,163,0.376,189,3.02,198,1.496,202,2.607,216,1.12,218,1.593,225,0.384,229,1.128,230,1.134,232,3.407,236,1.128,238,2.428,239,1.162,240,3.866,241,2.646,243,2.7,244,2.097,245,1.322,250,1.556,256,2.443,257,1.682,258,1.476,266,2.484,268,0.996,269,2.658,279,2.9,281,1.14,282,0.745,284,2.039,287,2.815,288,0.974,290,2.422,291,0.83,292,1.03,300,3.9,304,1.384,305,2.195,306,4.127,308,2.337,310,3.02,314,0.686,315,1.593,329,1.445,331,2.022,332,1.398,337,2.216,338,2.647,352,2.011,354,1.524,357,0.599,358,1.12,359,2.62,360,1.352,364,1.982,367,1.872,368,2.425,369,2.218,371,1.14,385,2.851,387,1.468,388,1.188,394,0.779,399,3.079,400,2.37,403,1.697,404,1.875,407,2.097,414,1.47,415,1.966,425,0.695,426,2.487,428,2.237,433,0.651,442,2.615,444,2.919,445,3.533,451,0.845,456,1.095,457,0.613,470,0.875,474,1.106,480,1.563,487,2.384,488,2.789,489,3.361,491,3.333,492,3.169,505,2.427,515,2.717,519,2.919,521,2.284,527,0.62,533,2.789,538,1.193,540,3.1,542,2.1,543,0.592,547,5.408,555,1.4,557,2.113,559,2.681,561,1.193,563,2.968,565,2.142,567,1.445,569,1.445,607,1.128,611,0.704,637,5.368,644,0.592,645,1.019,648,1.771,656,2.852,658,1.164,663,3.381,672,1.4,674,1.193,675,0.714,676,1.162,677,0.714,678,0.677,679,0.779,686,2.186,690,2.293,694,2.595,700,2.1,703,0.803,704,0.767,705,0.845,706,1.445,707,0.845,708,1.334,709,2.06,710,2.29,717,0.686,718,0.668,719,0.909,720,0.892,726,2.293,727,2.831,731,2.146,734,1.613,739,1.296,741,3.524,758,1.421,761,1.242,762,0.734,764,0.651,765,3.494,774,3.131,775,2.1,781,2.417,787,3.427,818,0.845,819,1.856,822,4.49,841,1.398,929,1.164,931,1.756,933,2.026,937,1.334,942,1.095,950,1.563,955,0.779,956,2.318,957,1.296,958,2.234,959,0.803,960,0.579,970,0.989,974,0.892,980,1.012,981,2.791,986,1.038,990,2.962,994,1.095,1008,1.523,1013,1.905,1014,1.806,1029,2.39,1038,3.122,1049,1.308,1061,3.651,1066,1.128,1070,1.373,1077,0.967,1087,3.81,1108,5.03,1251,2.275,1273,1.038,1277,1.799,1319,2.486,1320,3.612,1648,1.038,1668,1.308,1669,0.927,1671,1.128,1697,2.797,1716,5.093,1730,1.853,1731,0.967,1734,3.02,1738,2.18,1740,0.892,1745,3.427,1751,1.253,1793,1.164,1808,2.605,1812,4.164,1826,1.373,1830,1.806,1843,1.905,1865,3.53,1870,1.853,1872,5.143,1987,0.989,1988,1.942,2057,1.065,2083,1.253,2084,2.463,2089,2.142,2132,4.975,2134,3.564,2136,3.802,2149,5.84,2164,0.756,2215,0.817,2244,2.098,2248,6.193,2254,3.773,2264,1.038,2289,1.963,2292,1.012,2308,0.947,2325,1.128,2395,3.363,2425,1.206,2445,1.128,2572,2.339,2573,1.373,2615,1.253,2630,2.18,2653,1.762,2691,1.253,2693,0.967,2700,1.253,2822,3.612,2823,2.275,2931,3.363,2941,2.561,2942,2.463,2991,4.35,3112,4.092,3113,1.373,3129,1.164,3226,2.605,3229,1.206,3326,2.39,3327,1.253,3342,1.456,3362,2.69,3535,1.853,3691,2.39,3695,3.423,3711,1.206,3842,1.456,4047,3.645,4117,1.456,4282,1.038,4367,1.206,4383,1.253,4449,2.275,4517,2.39,4611,1.567,5360,1.308,5367,1.456,5443,4.451,5522,1.456,5526,7.939,5726,1.308,5879,1.456,5880,1.567,5988,1.456,6055,1.373,6752,3.619,6753,6.611,6754,3.363,6755,3.619,6756,5.375,6757,5.375,6758,3.619,6759,3.619,6760,3.619,6761,4.007,6762,5.958,6763,3.619,6764,3.619,6765,1.456,6766,3.363,6767,1.567,6768,3.619,6769,4.327,6770,2.726,6771,1.567,6772,4.903,6773,2.726,6774,1.456,6775,1.567,6776,3.363,6777,8.331,6778,3.794,6779,1.735,6780,1.567,6781,1.456,6782,7.293,6783,1.567,6784,1.735,6785,5.429,6786,5.958,6787,4.791,6788,4.791,6789,4.791,6790,4.791,6791,4.791,6792,4.791,6793,4.791,6794,4.022,6795,3.619,6796,1.456,6797,1.567,6798,1.567,6799,7.856,6800,1.567,6801,1.735,6802,1.567,6803,1.567,6804,1.567,6805,1.735,6806,5.07,6807,1.735,6808,2.726,6809,2.726,6810,4.007,6811,3.619,6812,4.007,6813,3.619,6814,3.363,6815,4.327,6816,1.735,6817,1.735,6818,3.619,6819,3.619,6820,1.567,6821,1.735,6822,1.567,6823,1.567,6824,1.735,6825,1.567,6826,3.619,6827,4.791,6828,4.791,6829,4.791,6830,5.958,6831,4.791,6832,4.791,6833,4.903,6834,4.903,6835,1.567,6836,1.567,6837,1.567,6838,1.567,6839,1.567,6840,1.567,6841,1.567,6842,1.567,6843,1.735,6844,1.735,6845,2.534,6846,1.735,6847,1.735,6848,1.567,6849,1.567,6850,1.567,6851,1.567,6852,1.735,6853,1.735,6854,1.735,6855,2.726,6856,1.735,6857,1.735,6858,1.567,6859,1.567,6860,1.735,6861,2.726,6862,1.735,6863,1.735,6864,1.735,6865,1.735,6866,1.735,6867,1.735,6868,1.735,6869,1.735,6870,1.735,6871,1.735,6872,1.735,6873,1.735,6874,1.735,6875,1.735,6876,1.735,6877,1.735,6878,1.735,6879,1.735,6880,1.567,6881,1.456,6882,3.173,6883,4.007,6884,1.456,6885,2.726,6886,1.456,6887,1.456,6888,1.456,6889,1.456,6890,1.567,6891,1.567,6892,1.567,6893,1.567,6894,1.735,6895,1.567,6896,1.456]],["t/136",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,184,2.994,399,1.325,2019,2.76]],["d/136",[]],["k/136",[]],["b/136",[2,0.16,4,0.182,13,1.354,18,2.362,29,1.102,30,2.493,41,2.145,43,1.594,44,1.727,47,1.706,54,1.083,66,1.973,71,0.747,82,1.675,93,1.186,106,0.715,108,0.8,112,0.416,113,2.038,117,1.835,119,1.121,120,1.159,121,1.293,123,1.048,124,1.904,129,1.904,133,1.279,134,1.906,135,1.235,139,2.869,141,2.211,143,1.858,144,2.056,145,2.295,146,0.723,147,2.36,152,2.625,153,1.687,154,0.739,155,1.879,161,2.739,162,1.262,163,1.06,184,4.306,198,1.121,216,1.405,225,0.5,229,1.791,232,3.09,238,2.243,240,0.958,243,2.995,244,2.367,245,2.33,249,1.65,250,2.179,256,1.415,257,1.5,258,1.575,266,1.791,268,1.25,269,1.279,279,2.901,280,0.958,281,2.178,284,2.742,287,2.985,288,1.223,290,0.664,292,2.493,304,1.687,305,0.631,308,0.715,314,0.894,315,1.111,323,1.634,329,1.083,332,1.048,337,1.463,338,3.207,341,0.723,344,1.21,345,1.001,348,1.812,352,0.764,354,2.777,357,0.782,359,2.553,360,1.279,361,3.177,364,2.201,365,1.58,366,1.163,367,1.348,368,2.793,369,2.686,370,3.114,371,1.809,387,1.79,388,1.448,399,3.456,400,1.996,403,1.429,404,1.973,407,1.966,408,1.186,415,2.527,426,1.804,428,2.388,433,0.85,442,2.658,456,2.175,457,2.813,469,0.971,474,1.348,480,0.883,487,2.714,488,1.973,500,0.861,505,1.355,511,1.235,513,2.611,521,1.29,527,1.747,529,2.319,540,3.539,543,0.773,557,2.627,559,0.894,561,0.894,567,1.083,575,2.391,613,2.417,644,1.293,645,1.279,651,1.65,656,1.083,665,1.947,672,3.606,674,1.497,675,1.559,676,1.459,677,0.931,678,0.883,679,1.016,690,1.813,694,1.65,704,1.001,705,1.102,706,1.813,707,1.844,708,2.16,709,2.511,717,0.894,718,0.872,721,1.9,723,1.235,726,1.083,727,1.001,728,3.619,731,3.337,733,1.675,735,1.519,736,1.429,740,3.399,741,1.121,745,2.463,746,1.321,749,2.851,750,2.326,751,2.266,758,1.065,759,2.211,761,1.559,762,0.958,765,2.067,774,3.729,775,2.993,778,2.882,781,3.208,818,4.644,821,1.947,841,1.048,849,1.634,931,2.806,937,2.16,943,1.792,947,1.675,950,1.478,956,1.768,958,0.931,959,1.048,960,2.295,969,2.723,973,4.163,974,1.163,985,1.634,990,1.235,994,1.429,1006,1.519,1014,2.266,1026,1.472,1035,1.706,1038,0.839,1067,1.235,1106,1.519,1271,1.354,1277,1.016,1283,1.048,1310,6.125,1319,0.944,1636,6.13,1638,7.332,1644,5.743,1665,2.16,1720,1.792,1721,2.999,1727,1.706,1754,1.39,1756,1.706,1788,3.47,1827,1.792,1830,1.354,1832,3.682,1836,1.792,1846,1.634,1962,1.792,1969,2.999,1970,2.044,2019,2.633,2065,1.706,2069,1.472,2094,6.428,2141,1.706,2273,1.634,2274,1.354,2281,1.519,2308,1.235,2338,1.706,2353,8.411,2368,1.429,2445,1.472,2612,1.121,2687,1.634,2760,1.706,2782,2.112,2783,3.687,2825,2.855,2826,1.634,2827,1.634,2831,1.262,2871,1.29,2883,3.18,2885,1.706,2890,1.792,3129,1.519,3197,1.706,3199,7.422,3535,2.326,3542,2.735,3583,1.573,3692,2.044,3817,1.429,3919,1.573,4346,1.706,4966,2.044,5098,1.706,5287,1.9,5293,1.9,5305,1.9,5329,1.9,5840,5.338,5887,2.044,6190,2.044,6256,3.421,6610,3.18,6732,3.18,6897,4.412,6898,8.83,6899,4.412,6900,4.412,6901,4.412,6902,6.211,6903,6.211,6904,5.159,6905,5.159,6906,4.412,6907,5.159,6908,5.159,6909,4.412,6910,4.412,6911,3.421,6912,4.412,6913,3.421,6914,3.421,6915,4.412,6916,3.421,6917,4.412,6918,4.412,6919,2.044,6920,4.412,6921,6.916,6922,8.692,6923,2.044,6924,2.044,6925,4.412,6926,3.788,6927,2.044,6928,2.044,6929,2.263,6930,2.044,6931,2.263,6932,4.412,6933,2.044,6934,3.421,6935,2.263,6936,2.263,6937,2.263,6938,2.263,6939,2.263,6940,2.263,6941,3.788,6942,2.263,6943,2.263,6944,1.9,6945,2.044,6946,2.263,6947,3.421,6948,4.101,6949,2.263,6950,2.263,6951,2.263,6952,2.044,6953,2.263,6954,2.263,6955,2.044,6956,2.044,6957,4.885,6958,2.263,6959,2.263,6960,2.263,6961,2.263,6962,2.263,6963,2.263,6964,2.263,6965,2.263,6966,2.263,6967,2.263,6968,6.358,6969,5.712,6970,5.712,6971,2.263,6972,2.263,6973,2.263,6974,3.788,6975,3.421,6976,2.263,6977,3.788,6978,2.263,6979,2.263,6980,2.263,6981,2.263,6982,2.263,6983,2.263,6984,4.885,6985,4.412,6986,5.712,6987,2.263,6988,2.263,6989,2.263,6990,2.263,6991,5.743,6992,2.044,6993,2.263,6994,7.188,6995,2.044,6996,2.044,6997,5.712,6998,2.263,6999,2.263,7000,2.044,7001,4.885,7002,2.044,7003,2.263,7004,2.044,7005,2.044,7006,2.044,7007,2.044,7008,2.263,7009,2.263,7010,2.044,7011,1.9]],["t/137",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,112,0.784,1638,2.966]],["d/137",[]],["k/137",[]],["b/137",[4,0.252,13,1.799,18,1.708,30,1.631,43,0.981,71,1.961,106,1.509,107,1.993,112,1.243,113,1.762,117,1.129,119,1.49,120,0.92,124,0.901,139,3.081,144,1.674,145,1.594,146,0.96,147,2.226,154,1.559,155,2.148,161,1.709,163,0.653,184,2.267,202,2.761,218,2.166,225,0.665,228,1.371,230,1.129,232,2.421,238,2.14,239,1.158,240,1.272,243,2.481,244,2.548,245,1.318,249,2.589,250,2.343,256,2.283,257,2.684,258,2.441,265,3.529,266,2.408,268,1.576,269,3.325,279,2.798,280,2.021,281,2.774,282,1.291,283,1.204,287,3.077,288,2.185,289,1.714,290,1.401,305,1.332,329,3.945,332,1.393,337,2.76,341,0.96,344,1.607,345,2.628,348,3.617,352,2.006,354,2.26,357,1.038,358,1.115,359,2.738,362,1.272,364,2.512,365,1.255,366,1.546,367,0.83,368,2.865,369,1.906,370,3.227,371,1.691,384,2.724,387,1.75,388,1.762,389,4.292,393,1.464,399,3.218,402,4.268,403,1.967,404,3.118,405,1.416,407,0.93,415,2.823,425,1.204,442,1.762,456,1.624,469,2.051,470,1.517,474,2.17,475,1.714,476,1.714,477,1.237,478,1.799,487,1.446,498,1.464,499,1.464,500,1.143,502,1.31,508,3.649,540,3.394,551,2.171,555,1.669,557,1.961,559,1.188,647,1.439,672,3.64,708,1.329,728,2.945,733,1.329,740,2.553,745,1.955,751,2.858,758,1.416,764,3.095,787,2.753,818,5.003,819,1.393,820,1.641,821,4.396,973,5.346,1102,2.381,1310,3.32,1319,1.255,1638,7.368,1665,3.388,1727,4.48,1754,1.846,1772,1.846,1788,2.998,1790,2.019,1856,2.267,1962,2.381,2019,3.32,2094,4.01,2141,4.48,2353,8.528,2371,2.381,2882,2.716,3229,2.09,5287,2.524,5293,2.524,5305,2.524,5329,2.524,5618,2.716,5840,2.524,6610,2.524,6732,4.01,6897,2.716,6898,9.448,6899,7.101,6900,2.716,6901,2.716,6902,2.716,6903,7.725,6904,6.114,6905,2.716,6906,2.716,6907,7.444,6908,6.114,6909,2.716,6910,2.716,6911,6.67,6912,2.716,6913,7.101,6914,4.314,6915,2.716,6916,6.67,6917,4.314,6918,2.716,6919,4.314,6920,7.101,6921,6.114,6922,9.371,6923,2.716,6924,2.716,6925,2.716,6927,2.716,6928,2.716,6930,2.716,6932,2.716,6933,4.314,6934,4.314,6944,2.524,6952,4.314,6955,2.716,6956,4.314,6975,2.716,6985,2.716,6992,2.716,6995,2.716,6996,2.716,7000,2.716,7002,2.716,7004,2.716,7005,2.716,7006,2.716,7007,2.716,7010,2.716,7012,7.385,7013,3.007,7014,6.769,7015,5.943,7016,6.769,7017,6.769,7018,7.385,7019,6.769,7020,6.769,7021,6.769,7022,6.769,7023,3.007,7024,3.007,7025,3.007,7026,3.007,7027,3.007,7028,3.007,7029,3.007,7030,3.007,7031,3.007,7032,3.007,7033,3.007,7034,3.007,7035,4.01,7036,3.007,7037,3.007,7038,3.007,7039,3.007,7040,3.007,7041,3.007,7042,3.007,7043,3.007,7044,4.777,7045,4.777,7046,4.777,7047,4.777,7048,3.007,7049,3.007,7050,3.007,7051,3.007,7052,3.007,7053,3.007,7054,3.007,7055,3.007,7056,3.007,7057,3.007,7058,3.007,7059,3.007,7060,3.007,7061,3.007,7062,3.007,7063,3.007,7064,3.007,7065,3.007,7066,3.007,7067,3.007,7068,3.007,7069,3.007,7070,3.007,7071,3.007,7072,3.007,7073,3.007,7074,3.007,7075,3.007,7076,3.007,7077,3.007,7078,3.007,7079,3.007,7080,3.007,7081,3.007]],["t/138",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,194,2.994,1990,1.84,3695,2.004]],["d/138",[]],["k/138",[]],["b/138",[4,0.177,13,1.3,18,2.45,25,1.058,28,1.963,30,3.074,37,1.334,41,2.091,43,1.195,62,3.419,66,1.923,69,1.023,71,1.208,73,1.783,77,1.459,81,3.322,83,1.007,93,3.256,95,1.847,96,2.995,106,1.156,108,0.768,112,0.399,113,0.644,117,1.375,119,2.351,120,1.901,121,1.25,123,1.696,124,0.651,129,1.097,133,1.601,134,2.172,135,2.589,137,1.459,139,3.14,143,2.862,144,2.119,145,1.858,146,1.984,147,2.275,152,2.476,153,1.264,155,1.296,161,0.777,163,0.795,165,1.569,166,0.49,182,1.569,194,4.197,198,1.077,202,3.08,216,1.358,218,1.392,225,0.481,229,2.018,230,0.816,232,2.802,233,1.957,238,2.285,240,1.549,243,2.344,244,2.859,245,0.6,246,1.569,247,1.413,249,0.947,250,0.89,252,1.372,256,2.157,257,1.632,258,1.669,266,1.897,268,1.208,269,1.236,279,2.913,280,1.549,281,1.042,282,0.933,284,0.816,286,1.882,287,2.934,288,1.182,290,2.208,291,1.04,292,1.901,300,4.089,303,4.041,304,2.475,305,2.098,308,1.758,311,1.814,314,0.859,315,1.633,329,2.975,331,3.399,337,2.254,338,2.41,341,1.515,344,1.162,347,1.058,348,0.806,352,2.878,354,2.117,357,0.751,359,2.556,360,2.733,364,1.804,365,0.907,367,0.6,368,2.608,369,2.119,370,1.144,371,1.35,377,2.394,385,3.348,387,1.738,388,1.085,393,1.058,399,3.211,400,2.171,403,1.187,404,1.264,407,2.327,408,1.139,414,1.058,415,2.873,426,2.377,428,2.091,433,0.816,442,2.527,445,3.003,451,1.058,456,1.958,469,0.933,474,1.859,477,1.507,480,0.848,487,2.581,488,1.638,491,3.278,505,1.697,507,1.814,508,1.334,513,2.976,515,0.87,527,1.697,529,1.486,533,1.595,538,2.456,540,2.594,555,1.945,557,1.208,559,0.859,563,0.907,569,2.271,611,2.26,613,2.007,644,1.62,645,1.601,647,1.04,648,2.461,652,1.334,657,0.787,663,2.39,666,1.638,670,1.139,672,2.353,674,1.447,675,0.894,676,1.41,677,0.894,678,0.848,679,0.976,690,1.753,692,2.589,702,1.212,703,1.007,704,0.961,706,1.753,707,1.058,708,0.961,710,0.777,715,1.569,717,0.859,718,0.837,719,1.139,720,1.882,722,1.569,724,1.3,727,0.961,728,5.026,730,1.186,731,2.456,733,0.961,734,1.162,737,1.372,739,0.933,743,1.334,757,1.117,758,1.023,761,1.952,762,1.549,763,1.139,764,0.816,774,3.865,778,3.616,786,1.139,787,2.197,803,1.268,819,2.579,841,1.696,928,1.413,931,1.342,950,1.428,955,0.976,956,1.325,957,0.933,958,0.894,959,1.007,960,2.392,969,2.041,971,1.058,974,1.882,981,2.862,985,1.569,986,1.3,990,1.998,1007,3.816,1011,3.83,1014,1.3,1038,1.358,1066,1.413,1087,2.523,1104,1.638,1108,4.086,1271,3.331,1277,2.789,1283,1.007,1319,0.907,1647,2.458,1697,3.627,1740,2.862,1760,2.917,1773,1.963,1779,1.824,1788,1.096,1790,4.522,1800,1.721,1801,1.721,1803,1.459,1816,1.413,1823,2.381,1825,3.737,1829,2.311,1830,2.838,1846,1.569,1854,1.638,1866,1.459,1870,1.334,1988,1.697,1990,4.864,2030,2.545,2038,1.186,2072,2.838,2083,1.569,2084,1.117,2086,3.307,2089,2.976,2093,2.545,2095,1.824,2114,5.435,2132,2.381,2134,1.3,2136,2.536,2140,5.258,2148,2.545,2164,3.278,2248,3.185,2264,3.718,2292,2.769,2315,1.413,2316,1.569,2340,1.824,2368,1.372,2377,1.824,2391,1.569,2421,1.721,2425,1.51,2484,3.307,2569,1.638,2572,1.268,2612,1.077,2641,1.963,2653,4.859,2678,1.459,2761,2.486,2767,1.372,2802,3.426,2825,2.76,2826,1.569,2827,1.569,2835,5.959,2871,1.239,2941,2.536,2942,2.438,2972,2.545,2991,4.722,3226,1.413,3317,1.721,3318,1.824,3326,1.721,3327,1.569,3334,1.569,3341,2.995,3360,1.721,3535,2.248,3542,1.569,3695,3.616,3697,2.76,3698,3.073,3699,3.073,3702,7.667,3704,3.073,3709,2.76,3711,2.545,3712,2.76,3713,2.899,3721,2.899,3728,1.824,3729,1.824,3733,4.285,3736,4.285,3741,3.923,3744,4.285,3748,4.285,3751,4.285,3754,1.824,3756,4.285,3761,4.285,3765,4.285,3768,2.545,3770,1.569,3775,3.756,3776,2.899,3790,2.311,4038,2.899,4085,2.899,4100,1.459,4101,5.258,4102,1.721,4116,1.824,4500,1.721,4660,2.899,5373,1.721,5465,1.569,5466,2.899,5482,1.569,5548,1.721,5902,1.824,5903,1.963,5904,1.963,5905,1.824,5908,1.963,5911,1.824,5918,7.701,5920,7.157,5921,4.673,5923,5.654,5924,1.963,5925,6.318,5927,4.285,5928,3.073,5929,4.673,5930,4.921,5932,3.307,5933,1.963,5934,1.963,5936,1.963,5941,1.963,5943,1.963,5944,1.963,5947,1.963,5950,1.963,5953,1.824,5963,1.824,5975,1.963,5976,1.721,5977,1.824,5978,2.899,5980,3.073,5982,1.638,5983,1.963,5984,1.721,5985,1.963,5986,1.963,6044,2.899,6045,5.613,6141,1.963,6387,1.963,6676,1.963,6889,1.824,6947,1.963,6948,1.824,7035,1.824,7082,2.173,7083,2.173,7084,2.173,7085,2.173,7086,5.567,7087,2.173,7088,2.173,7089,2.173,7090,2.173,7091,2.173,7092,2.173,7093,2.173,7094,2.173,7095,2.173,7096,2.173,7097,2.173,7098,2.173,7099,2.173,7100,2.173,7101,2.173,7102,2.173,7103,2.173,7104,2.173,7105,2.173,7106,2.173,7107,2.173,7108,2.173,7109,5.567,7110,4.744,7111,5.567,7112,1.824,7113,2.173,7114,2.173,7115,2.173,7116,2.173,7117,2.173,7118,2.173,7119,2.173,7120,3.661,7121,2.173,7122,2.173,7123,2.173]],["t/139",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,171,3.217,5527,2.775]],["d/139",[]],["k/139",[]],["b/139",[0,0.173,2,0.267,4,0.141,13,0.961,15,1.078,18,2.747,30,2.609,43,0.921,44,1.286,54,0.769,62,0.986,66,1.568,69,1.777,71,2.028,73,1.838,77,1.078,81,0.858,82,1.247,83,1.307,93,0.841,95,2.874,106,0.507,108,0.568,112,0.295,113,1.119,117,1.06,120,0.491,121,0.963,123,2.103,124,0.481,129,0.845,133,2.58,134,1.771,135,2.059,137,1.894,139,2.563,143,1.435,144,1.604,145,1.26,146,0.901,147,2.554,149,0.961,152,2.454,153,1.303,155,1.413,157,1.044,158,0.756,161,2.335,163,0.349,171,2.845,198,2.823,202,0.911,216,1.047,218,1.517,225,0.355,229,1.838,230,1.417,232,1.849,236,1.044,237,0.744,238,2.391,239,2.855,240,1.921,241,1.472,243,2.429,244,2.363,245,2.444,247,1.044,249,1.229,250,1.739,252,1.781,255,1.073,256,2.396,257,1.614,258,1.773,266,1.838,268,1.245,269,2.821,279,2.898,281,1.074,283,1.13,285,0.71,286,1.94,287,2.851,288,0.911,290,2.013,292,2.097,300,3.757,303,1.286,304,2.122,305,2.188,306,1.479,308,2.062,311,1.87,314,0.635,315,1.107,323,2.038,329,1.806,331,3.1,337,2.407,338,1.35,340,1.894,341,2.084,347,2.774,352,2.316,354,1.727,357,0.555,358,1.684,359,2.54,360,2.415,361,1.835,364,1.011,367,1.253,368,2.523,369,2.263,371,0.803,385,3.123,387,1.383,388,1.119,393,0.782,394,2.321,399,3.26,400,3.554,403,2.476,404,0.555,407,2.363,414,1.838,415,3.208,425,1.13,426,2.858,428,1.417,433,1.06,442,2.197,445,3.284,446,1.116,451,0.782,456,1.679,457,0.568,474,2.413,479,0.611,480,0.627,482,0.986,487,2.483,488,1.785,491,3.5,507,1.398,515,0.643,519,1.721,527,1.624,529,2.904,530,2.234,533,1.644,538,2.428,540,3.205,547,4.105,555,2.146,557,1.245,559,1.115,561,0.635,563,0.67,565,2.017,567,0.769,569,0.769,572,2.788,581,1.688,601,1.116,607,2.454,611,2.312,613,3.137,644,0.548,645,0.542,647,0.769,648,1.247,656,1.806,657,1.366,663,1.949,672,2.866,674,1.115,675,0.661,676,1.087,677,0.661,678,0.627,679,0.721,690,0.769,691,1.116,692,2.059,694,2.843,699,0.937,700,2.709,701,2.821,703,0.744,704,0.71,705,0.782,706,0.769,707,0.782,708,1.247,709,2.334,710,1.624,717,0.635,718,1.087,719,1.479,727,2.007,728,4.791,731,1.794,733,0.71,734,0.858,743,0.986,757,1.45,764,1.417,765,2.477,774,3.027,778,2.608,786,0.841,818,1.374,822,4.332,849,1.16,922,1.078,931,0.588,933,1.894,935,1.116,937,2.286,941,3.093,944,2.127,947,1.247,950,1.472,952,1.894,955,0.721,956,2.484,957,0.689,958,2.686,959,0.744,960,2.29,969,3.176,970,0.916,979,1.45,981,0.825,985,1.16,986,2.258,987,1.272,990,2.059,991,1.835,992,0.961,1008,2.608,1009,1.044,1011,4.295,1038,3.357,1087,2.494,1251,6.3,1273,0.961,1274,1.044,1277,2.557,1282,1.733,1286,1.211,1315,1.014,1319,2.563,1363,1.894,1669,0.858,1729,1.078,1760,0.841,1762,1.211,1771,1.044,1788,0.81,1816,1.044,1823,1.044,1830,1.688,1843,1.014,1846,1.16,1865,2.454,1927,4.34,1967,2.038,1988,1.009,1999,6.746,2027,1.078,2065,1.211,2072,0.961,2083,1.16,2084,1.94,2089,1.508,2090,1.272,2114,1.894,2132,1.044,2134,1.688,2136,3.489,2140,6.618,2164,2.676,2170,2.258,2215,2.434,2248,1.078,2254,1.116,2264,3.093,2265,4.769,2288,1.835,2289,1.044,2292,4.327,2315,1.044,2333,2.234,2335,1.45,2338,1.211,2357,2.234,2402,0.961,2418,1.272,2433,1.348,2465,1.348,2469,2.382,2535,1.45,2572,0.937,2612,0.796,2619,1.647,2653,3.586,2680,2.988,2767,1.014,2783,0.744,2802,5.669,2825,2.127,2826,1.16,2827,1.16,2844,3.422,2885,4.921,2941,2.427,2942,2.657,2953,1.078,2972,1.116,2979,1.272,3021,1.211,3125,1.16,3229,1.961,3327,1.16,3334,4.114,3341,4.121,3362,1.078,3583,1.116,3721,1.272,3990,1.078,4002,1.348,4009,1.272,4026,1.272,4038,1.272,4047,1.894,4083,1.348,4100,1.078,4346,2.127,4458,1.45,4499,2.369,4599,2.988,5115,5.87,5360,3.897,5370,2.369,5443,3.593,5527,5.995,5726,1.211,6162,4.511,6268,1.348,6611,1.348,6778,2.988,6794,1.348,6796,1.348,6806,2.988,6882,2.234,6948,3.811,7011,2.369,7112,2.369,7124,4.669,7125,7.241,7126,2.369,7127,4.669,7128,3.409,7129,3.409,7130,5.145,7131,3.409,7132,2.369,7133,3.409,7134,3.409,7135,2.369,7136,2.369,7137,3.774,7138,2.548,7139,7.154,7140,3.409,7141,1.348,7142,3.168,7143,3.409,7144,2.369,7145,1.45,7146,3.168,7147,6.746,7148,7.258,7149,1.606,7150,2.821,7151,1.45,7152,1.45,7153,2.548,7154,1.45,7155,1.606,7156,2.548,7157,1.45,7158,1.45,7159,1.45,7160,1.45,7161,1.45,7162,1.45,7163,6.903,7164,7.41,7165,6.528,7166,6.528,7167,1.606,7168,2.821,7169,2.821,7170,5.145,7171,2.548,7172,2.548,7173,3.409,7174,1.45,7175,2.548,7176,1.606,7177,2.548,7178,2.548,7179,1.606,7180,1.606,7181,1.606,7182,1.606,7183,1.606,7184,2.369,7185,4.782,7186,1.606,7187,2.369,7188,1.606,7189,1.45,7190,1.45,7191,1.45,7192,2.548,7193,3.409,7194,3.409,7195,1.606,7196,3.409,7197,1.45,7198,1.606,7199,1.45,7200,1.606,7201,1.45,7202,1.606,7203,1.45,7204,1.45,7205,1.45,7206,1.348,7207,1.606,7208,2.548,7209,1.348,7210,2.821,7211,1.45,7212,2.821,7213,1.45,7214,1.606,7215,3.409,7216,1.45,7217,2.548,7218,2.548,7219,1.606,7220,1.606,7221,3.409,7222,4.54,7223,4.54,7224,3.774,7225,4.54,7226,4.54,7227,4.54,7228,4.54,7229,4.54,7230,4.54,7231,4.54,7232,4.54,7233,1.606,7234,1.606,7235,2.821,7236,1.606,7237,1.606,7238,1.45,7239,1.45,7240,1.606,7241,1.45,7242,1.606,7243,1.45,7244,1.606,7245,1.606,7246,1.606,7247,1.606,7248,1.606,7249,1.606,7250,1.606,7251,1.606,7252,1.606,7253,1.606,7254,1.606,7255,1.606,7256,1.606,7257,1.606,7258,1.606,7259,1.606,7260,1.606,7261,1.606,7262,1.606,7263,1.606,7264,1.606,7265,1.348,7266,1.606,7267,1.45,7268,1.348,7269,1.606,7270,1.606,7271,1.348,7272,1.606,7273,1.606,7274,1.348,7275,1.45,7276,1.348,7277,1.348,7278,2.548,7279,2.548,7280,1.45,7281,1.348,7282,1.348,7283,1.45,7284,1.45,7285,1.45,7286,1.45,7287,1.606,7288,1.606,7289,1.45,7290,1.45,7291,1.45,7292,1.45,7293,1.45,7294,1.45,7295,1.348,7296,1.348]],["t/140",[0,0.354,1,0.35,2,0.232,3,0.362,4,0.122,112,0.604,172,2.478,1987,1.874,1988,1.176,5527,2.137,5528,2.478]],["d/140",[]],["k/140",[]],["b/140",[0,0.189,4,0.151,15,1.179,18,2.544,30,2.769,43,0.996,44,1.391,54,0.841,62,1.873,66,1.054,69,1.904,71,1.98,73,1.485,77,1.179,82,0.776,83,1.413,93,0.92,95,2.041,106,0.555,108,0.621,112,0.323,113,1.199,117,1.146,120,1.835,121,1.042,123,2.779,124,0.526,129,0.914,133,2.414,134,1.578,135,1.665,137,1.179,139,2.689,143,1.538,144,1.69,145,1.018,146,0.561,147,2.135,152,2.483,153,1.054,155,1.495,157,1.142,158,0.827,163,0.381,172,3.049,198,1.512,202,0.985,216,1.132,218,1.605,225,0.388,229,1.922,230,1.519,232,2.441,236,1.142,237,0.813,238,2.184,239,1.175,240,3.576,241,1.19,243,2.859,244,2.299,245,1.883,247,1.142,249,1.329,250,1.808,252,1.926,256,2.054,257,1.576,258,1.772,266,1.922,268,1.335,269,2.902,279,2.906,281,1.151,283,0.703,285,1.349,286,2.079,287,2.898,288,0.985,290,1.417,292,1.381,300,3.498,304,2.072,305,2.261,308,2.429,311,0.87,314,0.694,315,0.895,323,2.203,329,1.936,331,3.252,337,2.37,338,1.091,341,0.974,345,0.776,347,1.485,348,0.651,352,2.51,354,2.08,357,0.606,358,1.792,359,2.419,360,2.51,361,1.984,364,1.083,367,1.116,368,2.579,369,2.284,371,0.868,385,3.283,387,1.482,388,1.199,393,0.855,394,2.456,399,3.228,400,2.834,403,2.513,404,0.606,407,1.855,414,1.969,415,3.173,425,1.222,426,2.499,428,1.146,433,1.146,442,2.279,445,2.759,446,1.221,451,0.855,456,2.162,457,0.621,474,2.503,479,0.668,480,0.685,482,1.078,487,2.395,488,2.226,491,4.131,507,1.512,511,1.665,513,2.162,515,1.62,517,2.048,519,0.801,527,1.728,529,2.435,533,1.762,538,2.162,540,3.205,547,5.673,555,2.384,557,1.595,559,1.206,561,0.694,563,1.273,565,0.939,567,1.46,569,0.841,572,1.078,575,1.109,578,1.179,581,2.891,601,1.221,607,3.901,611,1.642,613,2.539,644,0.6,645,1.631,647,0.841,656,1.936,657,0.636,663,1.736,672,2.384,674,1.206,675,0.723,676,1.175,677,0.723,678,0.685,679,0.788,684,2.203,690,1.46,691,1.221,692,2.207,694,2.613,698,1.221,699,1.025,703,0.813,704,0.776,705,0.855,706,0.841,707,0.855,708,0.776,709,2.484,710,1.728,717,0.694,718,1.175,719,2.119,727,1.788,728,4.821,731,1.91,733,1.349,739,0.754,740,2.583,743,1.078,757,1.568,764,0.659,765,2.637,774,2.315,786,0.92,822,3.05,922,1.179,931,0.643,933,2.048,935,1.221,937,1.788,941,2.891,944,2.3,947,1.349,950,1.578,952,2.048,955,0.788,956,2.589,957,0.754,958,2.808,959,0.813,960,1.018,969,1.701,970,1.001,981,0.903,986,1.051,990,0.958,991,1.984,992,1.051,994,1.109,1008,2.76,1009,1.142,1011,4.431,1014,1.825,1038,3.712,1061,3.119,1087,3.292,1251,4.858,1273,1.051,1274,1.142,1277,2.456,1282,1.078,1286,1.324,1315,1.109,1319,1.273,1669,0.939,1729,1.179,1760,0.92,1762,1.324,1788,0.886,1797,1.324,1816,1.984,1823,1.984,1843,1.109,1927,4.592,1967,2.203,1988,2.558,1999,5.036,2065,1.324,2072,1.825,2084,2.812,2089,1.631,2090,2.416,2114,2.048,2132,1.142,2134,1.825,2136,3.207,2140,6.601,2164,1.762,2170,2.42,2215,0.827,2248,1.179,2254,1.221,2264,3.273,2265,3.802,2288,1.142,2289,1.142,2292,3.762,2333,2.416,2357,2.416,2402,1.051,2418,1.39,2433,1.474,2465,1.474,2469,3.788,2572,1.025,2612,0.87,2615,1.268,2653,1.781,2680,3.203,2693,4.935,2767,1.926,2783,0.813,2844,2.3,2885,5.144,2941,2.162,2942,2.484,2953,1.179,2972,1.221,2979,1.39,3125,1.268,3229,1.221,3334,3.951,3341,4.308,3362,1.179,3365,6.673,3583,1.221,3714,2.561,3757,1.39,3990,1.179,4047,2.048,4083,1.474,4100,1.179,4346,2.3,4402,1.39,4403,1.586,4478,1.586,5115,3.203,5360,4.124,5443,3.358,5527,6.29,5528,5.144,5726,1.324,5879,1.474,6162,4.751,6268,1.474,6611,1.474,6794,1.474,6796,1.474,6797,1.586,6806,3.203,6882,2.416,7011,2.561,7112,2.561,7125,7.612,7126,2.561,7130,5.419,7132,2.561,7135,2.561,7136,2.561,7138,2.755,7141,1.474,7142,3.395,7144,2.561,7145,1.586,7146,2.561,7147,7.216,7148,5.419,7151,4.941,7152,1.586,7153,2.755,7154,1.586,7156,2.755,7157,1.586,7158,1.586,7159,1.586,7160,2.755,7161,1.586,7162,1.586,7163,1.586,7164,7.632,7170,4.364,7171,1.586,7172,1.586,7173,1.586,7174,1.586,7175,1.586,7177,1.586,7178,1.586,7184,2.561,7185,4.056,7187,1.474,7189,1.586,7190,1.586,7191,1.586,7192,2.755,7193,3.653,7194,3.653,7196,3.653,7197,1.586,7199,1.586,7201,1.586,7203,1.586,7204,1.586,7205,1.586,7206,1.474,7208,2.755,7209,1.474,7211,1.586,7213,1.586,7215,3.653,7216,1.586,7217,2.755,7218,2.755,7238,1.586,7239,1.586,7241,1.586,7243,1.586,7265,1.474,7267,1.586,7268,1.474,7271,1.474,7274,1.474,7275,1.586,7276,1.474,7277,1.474,7278,2.755,7280,1.586,7281,1.474,7282,1.474,7283,1.586,7284,1.586,7285,1.586,7286,1.586,7289,1.586,7290,1.586,7291,1.586,7292,1.586,7293,1.586,7294,1.586,7295,1.474,7296,1.474,7297,3.653,7298,3.653,7299,3.653,7300,3.653,7301,3.653,7302,3.653,7303,3.653,7304,4.045,7305,6.824,7306,3.653,7307,3.653,7308,7.911,7309,1.756,7310,1.756,7311,1.756,7312,3.051,7313,1.756,7314,3.051,7315,1.756,7316,1.756,7317,1.756,7318,1.756,7319,4.832,7320,3.051,7321,1.756,7322,1.756,7323,1.756,7324,1.756,7325,1.756,7326,1.756,7327,1.756,7328,3.051,7329,3.051,7330,1.756,7331,1.756,7332,1.756,7333,3.653,7334,4.832,7335,4.045,7336,4.832,7337,4.832,7338,4.832,7339,4.832,7340,4.832,7341,4.832,7342,4.832,7343,4.832,7344,1.756,7345,1.756,7346,1.756,7347,1.756,7348,1.756,7349,1.756,7350,1.756,7351,1.756,7352,1.756,7353,1.756,7354,1.756,7355,1.756,7356,1.756,7357,1.756,7358,1.756,7359,1.756,7360,1.756,7361,1.756,7362,1.756,7363,1.756,7364,1.756,7365,1.756,7366,1.756,7367,1.756,7368,1.756,7369,1.756,7370,1.756,7371,8.852,7372,1.756,7373,1.756,7374,1.756,7375,1.756,7376,1.756,7377,1.756,7378,1.756,7379,1.756,7380,1.756,7381,1.756,7382,1.756,7383,1.756,7384,1.756,7385,1.756,7386,1.756,7387,1.756,7388,1.756,7389,1.756,7390,1.756,7391,1.756,7392,1.756,7393,1.756,7394,1.756,7395,1.756,7396,1.756,7397,1.756,7398,1.756,7399,1.756,7400,1.756,7401,1.756]],["t/141",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,112,0.784,1716,2.379]],["d/141",[]],["k/141",[]],["b/141",[4,0.249,8,1.851,18,2.096,29,2.279,30,1.598,66,1.012,71,1.929,73,1.427,93,3.062,106,1.479,107,2.438,112,1.428,113,1.387,120,0.897,124,0.878,128,2.21,129,0.878,133,0.989,139,1.953,141,2.732,144,1.879,145,0.978,146,0.936,147,1.964,154,1.528,155,2.124,163,0.636,189,2.21,202,2.953,212,2.21,218,2.394,225,0.648,228,1.336,229,1.646,232,3.032,238,1.824,239,1.129,243,2.054,244,2.701,245,0.809,250,2.06,255,2.957,256,2.737,257,2.226,258,2.22,265,2.995,266,2.759,268,1.545,269,3.235,279,2.74,281,2.075,284,2.739,285,2.07,287,3.029,288,2.154,290,2.732,292,1.001,300,4.118,304,2.519,305,2.275,306,4.074,308,2.456,311,2.896,315,0.86,332,1.358,338,2.387,341,2.13,345,2.95,348,2.475,352,2.462,354,2.537,357,1.012,358,1.087,359,1.279,360,2.462,362,1.24,364,2.186,368,2.596,369,1.318,370,2.859,371,1.662,384,2.669,385,1.695,387,1.715,388,1.387,393,1.427,394,2.101,399,2.595,402,3.378,403,2.241,404,1.012,405,1.38,426,0.926,444,1.336,445,4.114,446,6.874,451,1.427,469,2.509,470,1.479,474,2.339,475,1.671,476,1.671,477,2.405,478,1.754,479,2.222,480,1.826,482,1.8,489,2.896,491,3.177,492,1.711,498,1.427,499,1.427,500,1.115,502,1.277,511,1.599,513,1.567,515,1.174,517,1.968,519,1.336,521,1.671,533,2.545,538,1.85,540,3.424,542,1.536,543,1.001,555,1.635,557,1.545,563,1.223,565,1.567,567,1.403,569,1.403,572,1.8,575,1.851,578,1.968,581,1.754,584,2.21,586,2.117,588,2.117,590,1.711,592,2.21,594,2.21,596,2.21,599,2.117,601,2.037,603,2.117,605,2.21,607,1.906,637,3.8,647,1.403,657,1.695,663,3.338,686,3.189,700,3.821,727,1.296,741,2.32,798,2.647,841,1.358,960,0.978,965,2.32,1011,1.567,1038,2.884,1049,3.529,1067,3.641,1087,1.19,1319,1.223,1359,2.21,1361,2.117,1363,1.968,1716,5.788,1738,5.267,1797,2.21,1812,1.906,1987,1.671,1988,2.09,2084,2.406,2134,1.754,2136,4.362,2148,7.406,2149,1.968,2163,1.507,2164,2.906,2175,2.321,2244,2.037,2264,2.8,2276,2.037,2283,2.117,2289,3.044,2368,2.955,2473,2.21,2619,2.732,2822,2.21,2823,2.21,2826,2.117,2845,2.647,2890,3.706,2897,2.647,2941,3.566,2942,3.43,2991,3.249,3362,3.923,3695,3.923,3715,2.117,3716,2.117,3717,2.117,3718,2.321,3719,3.529,3720,2.21,3723,2.117,3745,3.38,3788,2.461,3927,5.278,3990,3.142,4047,1.968,4367,2.037,4660,2.321,5443,4.062,5873,2.647,5978,3.706,6001,3.929,6055,3.706,6236,2.647,6752,2.647,6753,8.225,6754,6.526,6755,2.647,6756,7.334,6757,7.334,6758,2.647,6759,2.647,6760,2.647,6764,2.647,6765,3.929,6766,6.526,6774,2.461,6781,2.461,6814,2.461,6826,2.647,6845,2.461,6881,2.461,6884,2.461,6886,2.461,6887,2.461,6888,2.461,6896,2.461,7402,5.843,7403,6.672,7404,5.843,7405,6.672,7406,6.672,7407,6.672,7408,6.672,7409,6.672,7410,6.672,7411,2.647,7412,2.647,7413,2.647,7414,2.931,7415,2.931,7416,2.931,7417,6.672,7418,2.647,7419,2.647,7420,5.843,7421,4.228,7422,4.681,7423,2.647,7424,2.647,7425,2.647,7426,2.647,7427,2.647,7428,2.931,7429,2.931,7430,2.931,7431,2.931,7432,2.931,7433,2.931,7434,2.931,7435,2.931,7436,2.931,7437,2.931,7438,2.931,7439,2.931,7440,2.931,7441,2.931,7442,2.931,7443,2.931,7444,8.16,7445,2.931,7446,2.931,7447,2.931,7448,2.931,7449,2.931,7450,2.931,7451,2.931,7452,2.931,7453,2.931,7454,2.931,7455,2.931,7456,2.931,7457,2.931,7458,2.931,7459,2.931,7460,2.931,7461,2.931,7462,2.931,7463,2.931,7464,2.931,7465,2.931,7466,2.931,7467,2.931,7468,2.931,7469,2.931,7470,2.931,7471,2.931,7472,2.931,7473,2.931,7474,2.931,7475,2.931,7476,2.931,7477,2.647]],["t/142",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,212,3.217,1716,2.379]],["d/142",[]],["k/142",[]],["b/142",[2,0.368,4,0.142,13,0.972,18,2.487,25,2.228,30,3.53,41,0.61,43,0.93,44,1.299,54,1.364,66,1.581,69,1.342,71,1.719,73,1.388,81,2.035,82,1.26,93,3.44,95,2.893,96,1.799,106,0.513,108,0.574,112,0.841,113,0.481,117,1.07,119,0.805,121,0.555,123,2.412,124,0.486,129,2.066,133,1.285,134,1.112,135,0.886,137,1.09,139,2.579,143,1.98,144,1.466,145,1.527,146,0.519,147,2.314,152,2.184,153,1.315,155,1.567,161,1.362,162,0.906,163,0.353,198,0.805,202,2.321,212,2.87,216,1.057,218,1.926,225,0.359,229,1.466,230,1.07,232,3.548,238,2.437,239,0.626,241,2.412,243,2.556,244,2.03,245,1.437,250,1.503,256,2.494,257,1.624,258,1.421,266,2.437,268,0.941,269,2.998,279,2.879,281,1.083,282,0.697,283,0.651,284,1.07,287,2.786,288,0.92,290,2.367,291,1.364,292,0.973,300,4.013,304,1.315,305,2.14,306,3.615,308,2.179,310,2.87,314,0.642,315,1.682,329,0.777,331,1.921,332,0.752,337,1.371,338,3.138,344,0.868,352,1.936,354,1.74,357,0.561,358,1.057,359,2.584,360,1.285,364,1.926,367,1.706,368,2.377,369,2.162,371,1.083,385,2.779,387,1.395,388,1.129,394,0.729,399,3.504,400,2.16,403,1.643,404,1.98,407,2.223,414,1.388,415,2.895,425,0.651,426,2.837,428,2.322,433,0.61,441,1.224,442,2.528,444,2.615,445,3.532,451,0.791,456,1.04,470,0.82,474,1.051,480,1.112,487,2.176,488,2.722,489,3.253,491,2.693,492,2.671,515,2.88,519,2.615,526,3.986,527,1.019,533,2.86,538,1.505,540,3.087,542,1.995,543,0.555,547,0.972,555,1.819,557,2.458,559,2.727,561,2.727,563,2.878,565,2.446,567,2.191,569,2.191,607,4.269,611,0.659,613,0.687,637,5.545,644,0.973,645,0.548,648,1.683,656,2.745,658,1.09,663,2.961,672,1.33,674,1.126,675,0.668,676,1.098,677,1.173,678,0.634,679,0.729,686,3.129,690,2.191,694,2.498,700,3.615,703,1.32,704,0.718,706,1.823,707,0.791,708,1.26,709,2.352,710,2.349,711,2.81,717,0.642,718,0.626,719,0.851,720,0.835,726,2.191,727,3.05,731,2.058,734,2.035,739,1.635,741,3.563,742,1.129,747,2.058,758,1.342,761,1.173,762,0.687,763,0.851,764,0.61,765,3.129,774,3.609,775,1.995,778,3.119,781,2.309,787,3.652,819,1.764,841,0.752,929,1.09,931,1.677,933,1.913,937,1.26,942,1.025,950,1.485,955,0.729,956,2.238,957,1.223,958,2.143,959,0.752,960,1.527,969,0.906,970,0.926,974,0.835,980,0.948,981,2.677,985,1.173,986,0.972,990,1.555,1008,1.438,1029,2.257,1033,1.286,1038,2.559,1049,1.224,1066,1.056,1070,1.286,1077,0.906,1087,3.405,1108,4.935,1251,2.148,1273,0.972,1277,1.279,1282,0.997,1319,2.739,1320,3.45,1668,1.224,1669,0.868,1671,1.056,1697,2.671,1716,5.777,1730,1.75,1731,0.906,1734,2.87,1738,1.173,1740,0.835,1745,3.288,1751,1.173,1771,1.056,1793,1.09,1808,2.476,1812,4.269,1826,1.286,1830,1.705,1843,1.799,1846,1.173,1865,3.386,1870,2.338,1872,4.998,1987,1.625,1988,2.82,2057,0.997,2083,1.173,2084,3.829,2089,2.446,2132,3.386,2134,2.278,2136,4.689,2149,5.89,2164,0.708,2189,1.363,2215,1.342,2244,1.981,2248,6.093,2254,3.181,2264,0.972,2289,1.853,2292,0.948,2308,0.886,2315,1.056,2316,2.058,2325,1.056,2329,1.467,2395,3.196,2425,2.646,2445,1.056,2572,2.222,2573,1.286,2630,1.173,2653,3.832,2688,1.09,2691,2.058,2693,0.906,2700,1.173,2766,1.363,2822,3.45,2823,2.148,2825,2.148,2826,1.173,2827,1.173,2890,3.015,2931,3.196,2941,2.446,2942,2.352,2953,1.09,2991,4.325,2998,1.363,3021,1.224,3112,3.926,3113,1.286,3129,1.09,3229,2.646,3326,2.257,3327,1.173,3342,1.363,3362,4.408,3445,1.173,3535,1.75,3691,1.286,3695,3.119,3711,3.181,4047,5.811,4086,1.467,4117,1.363,4282,0.972,4343,1.467,4367,1.129,4383,1.173,4449,2.148,4517,2.257,5097,1.467,5115,1.286,5360,1.224,5367,1.363,5443,4.297,5522,1.363,5726,1.224,5988,1.363,6055,1.286,6753,6.445,6754,3.196,6756,5.189,6757,5.189,6763,3.439,6765,1.363,6766,3.196,6767,1.467,6768,1.467,6769,4.134,6770,1.467,6771,1.467,6772,1.467,6773,1.467,6774,1.363,6775,5.93,6776,5.511,6777,8.022,6778,3.015,6780,1.467,6781,1.363,6782,7.12,6783,1.467,6798,1.467,6799,7.702,6800,1.467,6802,4.134,6803,1.467,6804,1.467,6806,4.895,6808,2.574,6809,2.574,6811,3.439,6813,3.439,6814,3.196,6815,4.134,6818,3.439,6819,3.439,6820,1.467,6822,1.467,6823,1.467,6825,1.467,6833,4.134,6834,4.134,6835,2.574,6836,1.467,6837,1.467,6838,1.467,6839,1.467,6840,1.467,6841,1.467,6842,1.467,6845,2.392,6848,1.467,6849,1.467,6850,1.467,6851,1.467,6855,2.574,6858,1.467,6859,1.467,6861,2.574,6880,1.467,6881,1.363,6882,3.015,6884,1.363,6885,2.574,6886,1.363,6887,1.363,6888,1.363,6889,1.363,6890,1.467,6891,1.467,6892,1.467,6893,1.467,6895,1.467,6896,1.363,7035,3.196,7418,3.439,7419,3.439,7423,3.439,7424,3.439,7425,3.439,7426,3.439,7427,3.439,7477,2.574,7478,3.807,7479,5.735,7480,5.735,7481,1.624,7482,1.624,7483,1.624,7484,1.624,7485,1.624,7486,4.576,7487,3.807,7488,3.807,7489,3.807,7490,1.624,7491,1.624,7492,1.624,7493,1.467,7494,1.624,7495,1.624,7496,3.807,7497,3.807,7498,1.624,7499,1.624,7500,1.624,7501,1.624,7502,1.624,7503,3.807,7504,4.576,7505,4.576,7506,4.576,7507,4.576,7508,4.576,7509,4.576,7510,4.576,7511,5.735,7512,4.576,7513,1.624,7514,1.624,7515,1.624,7516,1.624,7517,1.624,7518,1.624,7519,1.624,7520,1.624,7521,1.624,7522,1.624,7523,1.624,7524,1.624,7525,1.624,7526,1.624,7527,1.624,7528,1.624,7529,1.624,7530,1.624,7531,1.624,7532,1.624,7533,1.624,7534,1.624,7535,1.624,7536,1.624,7537,1.624,7538,1.624,7539,1.624,7540,1.624,7541,1.624,7542,1.624,7543,1.624,7544,1.624,7545,1.624,7546,1.624]],["t/143",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,112,0.729,1716,2.214,5581,2.76]],["d/143",[]],["k/143",[]],["b/143",[4,0.235,18,2.556,30,2.371,41,2.608,43,0.869,44,2.497,54,1.275,69,1.254,83,3.634,95,1.344,106,1.369,107,1.111,111,3.776,112,1.159,113,1.871,119,2.714,120,1.325,124,0.798,129,0.798,141,3.197,144,0.75,145,1.446,146,0.85,147,1.094,152,1.558,153,1.496,154,0.869,155,1.724,161,1.55,163,0.94,185,2.008,202,2.979,218,2.037,225,0.589,228,1.214,229,0.75,232,3.603,233,1.424,235,1.519,238,1.737,245,1.196,250,2.379,256,2.604,257,2.283,258,2.248,265,2.833,266,1.542,268,1.43,269,3.062,279,2.725,280,3.15,281,2.232,286,2.227,287,2.93,300,1.916,303,4.375,304,3.379,305,2.611,306,3.307,308,2.915,311,3.689,315,1.271,317,2.47,321,2.109,329,2.622,331,1.344,338,1.55,341,0.85,352,3.42,359,1.497,362,1.127,364,2.472,367,1.196,368,2.867,369,1.777,370,3.227,371,1.558,377,2.186,388,1.624,399,3.517,402,4.274,403,1.37,404,3.187,405,1.254,408,1.396,414,1.297,415,0.879,433,1,439,2.236,442,0.789,445,1.607,451,2.667,456,2.649,474,1.196,477,1.096,479,1.013,487,1.311,491,4.263,498,1.297,499,1.297,500,1.013,502,1.16,511,1.453,513,1.424,515,2.194,517,1.788,519,1.214,521,1.519,529,1.081,555,0.931,557,2.083,559,2.494,561,1.713,563,3.412,565,1.424,567,1.275,569,1.275,572,1.635,575,1.681,578,1.788,581,1.593,584,2.008,586,1.923,588,1.923,590,1.555,592,2.008,594,2.008,596,2.008,599,1.923,601,1.851,603,1.923,605,2.008,611,1.759,658,1.788,690,3.021,710,0.953,718,2.11,728,1.32,757,2.816,758,2.579,821,1.369,841,2.007,980,1.555,981,1.369,1283,2.007,1315,2.735,1359,2.008,1361,1.923,1363,1.788,1613,1.851,1616,1.923,1669,2.316,1716,5.581,1731,2.416,1736,1.681,1790,2.909,1811,6.624,1812,6.09,1844,1.851,1865,1.732,1987,1.519,1988,0.953,2012,2.008,2045,2.661,2164,4.223,2259,2.406,2283,6.664,2622,4.384,2941,3.373,2942,3.244,2991,2.11,3129,1.788,3535,4.818,3730,3.129,3739,3.266,3741,1.681,3745,1.923,3817,1.681,3990,2.909,3994,2.909,4352,2.008,4401,2.109,5408,2.236,5576,8.056,5581,6.858,5586,2.236,5982,2.008,6235,5.235,6542,5.83,7421,2.406,7547,6.311,7548,6.273,7549,6.723,7550,6.273,7551,6.311,7552,5.477,7553,9.432,7554,6.311,7555,6.723,7556,6.311,7557,6.311,7558,6.311,7559,6.273,7560,3.913,7561,2.406,7562,9.615,7563,2.406,7564,2.406,7565,2.663,7566,2.406,7567,4.947,7568,3.913,7569,2.663,7570,2.663,7571,2.663,7572,2.663,7573,2.663,7574,2.663,7575,2.663,7576,5.477,7577,2.663,7578,2.663,7579,2.663,7580,2.663,7581,2.663,7582,2.663,7583,5.7,7584,2.663,7585,2.663,7586,2.663,7587,2.663,7588,2.663,7589,2.663,7590,4.333,7591,3.913,7592,4.333,7593,4.333,7594,3.913,7595,4.333,7596,5.7,7597,3.913,7598,4.333,7599,4.333,7600,4.333,7601,5.7,7602,4.947,7603,2.406,7604,2.406,7605,4.947,7606,2.406,7607,2.663,7608,2.663,7609,2.663,7610,2.406,7611,2.406,7612,2.406,7613,2.406,7614,2.663,7615,2.406,7616,2.663,7617,2.406,7618,2.406,7619,2.663,7620,2.663,7621,4.333,7622,2.406,7623,2.406,7624,2.663,7625,2.406,7626,2.406,7627,2.406,7628,2.406,7629,2.406,7630,2.406,7631,2.406,7632,2.406,7633,2.663,7634,2.406,7635,2.406,7636,2.406,7637,2.406,7638,2.406,7639,2.663,7640,2.663,7641,2.663,7642,5.477,7643,2.663,7644,2.663,7645,4.333,7646,2.663,7647,2.663,7648,2.663,7649,3.913,7650,2.663,7651,4.333,7652,2.663,7653,4.333,7654,2.663,7655,2.663,7656,6.723,7657,3.913,7658,2.663,7659,5.477,7660,2.663,7661,6.273,7662,2.663,7663,2.663,7664,2.406,7665,2.663,7666,2.663,7667,2.406,7668,2.663,7669,2.663,7670,2.663,7671,2.663,7672,2.663,7673,2.663,7674,2.663,7675,2.663,7676,2.663,7677,2.663,7678,2.663,7679,2.663,7680,2.663,7681,2.663,7682,2.663,7683,2.663,7684,2.663,7685,2.663,7686,2.663,7687,2.663,7688,2.663,7689,2.663,7690,2.663,7691,2.663,7692,2.663,7693,2.663,7694,2.663,7695,2.663,7696,2.663,7697,2.663,7698,2.663,7699,2.663,7700,2.663,7701,2.663,7702,2.663,7703,2.663]],["t/144",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,112,0.784,651,1.859]],["d/144",[]],["k/144",[]],["b/144",[4,0.265,18,1.62,30,1.531,41,1.044,43,0.907,44,1.267,69,1.308,71,2.636,83,2.077,95,1.402,106,1.417,107,2.353,112,1.036,113,1.918,119,1.377,120,1.372,124,1.343,129,1.343,132,1.485,139,3.893,144,2.138,145,0.927,146,0.887,147,2.276,151,1.807,154,1.464,155,1.94,161,2.017,163,1.224,187,2.095,190,2.007,209,2.095,218,2.227,221,2.095,225,0.615,228,1.267,229,1.588,230,1.684,231,3.011,232,3.07,237,1.287,238,1.899,239,1.727,240,1.898,241,1.75,243,2.138,244,2.724,245,2.534,249,2.818,250,2.378,255,1.057,256,2.232,257,2.411,258,2.275,265,2.905,266,2.481,268,1.861,269,3.099,279,2.775,280,2.386,281,2.364,282,2.42,283,2.592,284,1.044,287,3.044,288,2.292,289,2.557,290,1.898,292,1.531,305,2.559,308,1.417,332,1.287,337,2.57,338,1.604,341,0.887,345,1.229,347,2.184,350,2.007,352,1.903,354,1.057,357,1.549,358,1.664,359,2.718,360,0.938,362,1.176,363,2.397,364,2.535,365,1.159,366,1.428,367,0.767,368,2.859,369,1.588,370,3.188,371,1.604,377,2.845,384,2.557,385,1.624,387,1.643,388,1.329,389,3.239,393,1.353,399,3.198,400,2.261,402,1.287,403,1.619,405,1.308,407,0.859,408,2.35,415,1.861,425,3.04,426,1.781,433,2.117,442,2.367,444,2.045,445,1.664,456,0.759,457,1.585,469,1.193,470,1.402,474,2.612,475,1.584,476,1.584,477,1.144,478,1.663,479,1.705,480,1.084,487,0.841,488,0.96,498,1.353,499,1.353,500,2.461,502,1.21,515,1.113,519,2.045,538,1.098,542,1.456,543,2.837,555,1.567,557,1.48,559,1.098,561,1.773,563,1.159,611,3.483,650,1.866,651,4.844,652,2.754,654,5.563,663,1.193,665,1.428,672,1.97,690,4.108,694,3.479,708,1.229,720,2.898,727,1.229,733,1.229,741,4.252,746,1.622,764,1.044,767,2.305,818,4.178,819,1.287,820,2.447,821,1.428,861,5.58,942,1.754,947,2.493,950,2.77,966,2.2,1007,1.706,1008,1.402,1087,1.128,1108,1.584,1647,1.866,1665,4.893,1697,5.359,1745,1.754,1754,1.706,1772,1.706,1788,2.845,1806,2.51,1816,1.807,2010,3.381,2032,2.2,2038,2.447,2084,1.428,2113,2.095,2142,1.866,2170,3.373,2203,5.858,2255,1.932,2256,2.007,2274,1.663,2325,1.807,2588,2.51,2589,7.861,2590,2.51,2591,3.381,2592,2.51,2593,4.25,2594,2.51,2595,2.51,2596,2.51,2597,2.51,2598,2.51,2599,5.351,2600,2.51,2601,5.351,2602,2.51,2603,2.51,2604,6.02,2608,2.51,2609,3.381,2610,5.579,2612,1.377,2622,2.831,2634,3.381,2649,2.2,2651,5.722,2674,3.765,2702,2.51,2709,6.834,2721,5.092,2759,2.095,2762,2.095,2767,4.792,2768,1.866,2769,2.095,2771,2.095,2773,2.095,2774,2.095,2776,2.095,2777,2.095,2778,3.381,2780,2.095,2788,2.095,3056,2.2,3137,2.007,3266,2.51,3267,2.51,3268,2.51,3269,2.51,3270,2.51,3271,2.51,3272,2.51,3273,2.51,3274,2.51,3275,2.51,3288,2.51,3289,2.51,3296,2.333,3297,3.765,3299,2.333,3316,6.372,3317,6.58,3319,3.765,3320,3.765,3375,4.05,3405,2.51,3622,2.51,3623,2.51,3643,2.51,3644,2.51,3645,2.51,3646,2.51,3647,2.51,3648,2.51,3649,2.51,3650,2.51,3651,2.51,3652,2.51,3653,2.51,3654,2.51,3683,2.51,3730,3.239,4848,2.51,4849,2.51,4850,2.51,4851,2.51,4852,2.51,4853,2.51,4854,2.51,4855,2.51,4862,2.51,4863,2.51,4866,2.51,4867,2.51,4931,2.51,5408,2.333,7704,2.779,7705,2.779,7706,6.47,7707,5.638,7708,6.47,7709,6.47,7710,7.099,7711,6.47,7712,6.47,7713,2.779,7714,2.779,7715,2.779,7716,2.779,7717,2.779,7718,2.779,7719,2.779,7720,2.779,7721,2.779,7722,4.485,7723,4.485,7724,2.779,7725,2.779,7726,2.779,7727,2.779,7728,2.779,7729,2.779,7730,2.779,7731,2.779,7732,2.779,7733,2.779,7734,2.779,7735,2.779,7736,2.779,7737,2.779,7738,2.779,7739,2.779,7740,2.779,7741,2.779,7742,2.779,7743,2.779,7744,2.779,7745,2.779,7746,2.779,7747,2.779,7748,4.485,7749,2.779,7750,2.779,7751,2.779,7752,2.779,7753,2.779,7754,2.779,7755,4.485,7756,2.779,7757,2.779,7758,2.779,7759,2.779,7760,2.779,7761,2.779,7762,2.779,7763,2.779,7764,2.779,7765,2.779,7766,2.779,7767,2.779]],["t/145",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,112,0.784,300,1.887]],["d/145",[]],["k/145",[]],["b/145",[2,0.467,4,0.223,11,1.534,18,2.586,30,2.693,37,1.492,39,1.631,44,2.722,54,1.924,69,1.892,71,2.351,81,1.299,82,1.777,83,1.126,106,1.269,107,1.677,110,1.631,112,0.944,113,1.523,120,1.826,121,0.83,124,0.728,129,1.788,132,2.148,139,4.135,144,1.447,145,0.811,146,1.907,147,1.015,153,1.388,154,0.793,155,2.807,156,3.029,157,1.58,161,2.549,163,1.115,182,1.755,218,2.212,225,0.537,228,1.108,229,0.684,232,3.627,233,2.747,235,2.93,237,1.862,238,1.782,239,1.548,240,1.701,241,4.121,243,2.124,245,2.385,249,2.601,250,2.187,256,2.229,257,2.436,258,2.088,265,2.68,266,2.612,268,1.326,269,3.086,279,2.701,281,2.027,283,0.973,286,3.069,287,2.951,292,1.372,300,4.999,303,4.283,305,2.199,306,4.714,307,3.342,308,2.662,309,7.976,311,2.959,315,1.752,331,1.226,332,3.063,341,1.641,344,1.299,359,2.669,360,2.015,362,1.701,363,1.299,364,2.315,365,2.491,366,1.249,367,1.109,368,2.723,369,1.132,370,3.075,371,1.462,383,2.698,388,1.523,389,2.902,392,2.291,403,1.782,405,1.144,407,1.846,408,2.106,415,2.183,425,1.61,426,1.623,433,0.913,442,2.937,444,2.343,445,3.593,451,2.907,456,1.947,470,2.028,474,2.824,479,1.528,480,0.948,487,1.216,488,1.388,489,1.204,491,1.751,492,1.418,498,1.183,499,1.183,500,0.924,502,1.058,515,2.058,519,2.343,533,3.435,538,2.981,543,2.432,555,1.795,648,1.074,656,3.775,657,0.88,663,1.043,665,2.066,666,6.893,672,1.404,675,1,678,0.948,703,1.126,720,2.642,742,2.793,746,1.418,749,1.418,758,1.144,759,2.346,767,3.069,937,1.074,945,2.698,946,4.263,947,2.924,950,2.005,973,1.385,1008,2.593,1036,1.454,1648,1.454,1709,3.711,1731,1.355,1736,4.498,1745,3.244,1749,1.631,1754,4.375,1760,1.273,1800,4.728,1804,1.924,1872,1.689,1873,1.492,1967,1.755,2038,1.326,2048,2.698,2107,1.924,2115,3.667,2130,1.631,2142,2.698,2155,1.832,2156,1.832,2170,3.572,2175,3.182,2203,5.129,2255,2.793,2256,2.902,2274,2.404,2289,5.85,2402,1.454,2612,2.959,2619,1.418,2653,4.603,2693,1.355,2935,2.195,2936,9.061,2937,6.435,2938,2.195,2939,7.612,2940,2.195,2941,4.031,2942,3.876,2943,5.393,2944,2.195,2945,6.435,2946,2.195,2947,2.195,2948,2.195,2949,2.195,2950,5.973,2951,2.195,2952,2.195,2955,2.195,2956,4.501,2990,5.012,2997,3.63,3006,2.195,3021,6.515,3042,2.195,3043,2.195,3045,3.63,3046,7.123,3056,3.182,3090,3.63,3092,2.195,3106,2.04,3471,2.195,3719,3.874,3721,7.124,3738,3.374,3745,2.902,3763,1.58,3864,2.04,4023,4.069,4499,2.04,4664,3.182,4919,5.393,5370,2.04,5668,2.04,5868,4.641,5870,1.832,5982,1.832,6001,4.314,7279,2.195,7768,2.195,7769,5.971,7770,6.613,7771,7.541,7772,5.139,7773,5.139,7774,5.139,7775,2.43,7776,2.43,7777,2.43,7778,2.43,7779,2.43,7780,4.019,7781,2.43,7782,2.43,7783,7.125,7784,7.125,7785,2.43,7786,2.43,7787,2.43,7788,2.43,7789,2.43,7790,7.541,7791,4.019,7792,4.019,7793,4.019,7794,2.43,7795,2.43,7796,4.019,7797,6.613,7798,2.43,7799,5.139,7800,4.019,7801,2.43,7802,2.43,7803,2.43,7804,2.43,7805,2.43,7806,2.43,7807,4.019,7808,2.43,7809,2.43,7810,2.43,7811,2.43,7812,5.139,7813,5.139,7814,4.019,7815,4.019,7816,4.019,7817,4.019,7818,4.019,7819,4.019,7820,2.43,7821,2.43,7822,5.139,7823,2.43,7824,4.019,7825,2.43,7826,2.43,7827,2.43,7828,2.43,7829,2.43,7830,2.43,7831,2.43,7832,2.43,7833,2.43,7834,2.43,7835,2.43,7836,2.43,7837,2.43]],["t/146",[0,0.4,1,0.396,2,0.262,3,0.409,4,0.138,217,2.799,253,2.222,254,1.778,255,1.412]],["d/146",[]],["k/146",[]],["b/146",[2,0.579,4,0.162,18,1.82,25,1.615,30,1.982,41,0.727,43,1.083,44,0.882,66,1.145,71,0.638,82,2.994,106,0.611,108,0.684,112,0.355,117,1.246,120,1.332,121,1.132,124,0.993,129,2.455,133,1.742,134,1.294,143,1.656,144,1.783,145,1.937,146,1.059,147,2.427,149,1.157,152,2.271,153,0.668,155,1.19,161,2.769,163,0.42,166,0.747,198,2.157,216,1.23,217,3.282,218,0.973,224,2.758,225,0.428,226,1.258,227,3.696,229,2.102,232,3.06,233,1.034,234,5.946,237,0.896,238,2.179,239,2.236,240,4.231,242,4.966,243,2.616,244,2.307,245,1.972,250,1.646,251,1.984,253,5.499,254,3.031,255,3.036,256,2.363,257,1.525,258,1.278,259,2.626,260,4.596,261,4.596,262,4.596,266,2.18,267,7.801,268,1.095,269,1.742,272,3.932,275,5.014,277,2.626,279,2.972,280,1.842,281,0.55,283,0.775,284,2.683,286,3.481,287,2.852,288,1.874,291,3.42,292,1.486,304,2.757,305,1.992,308,0.611,314,0.765,315,0.973,316,4.159,321,6.129,325,2.626,329,2.084,331,1.673,333,7.402,335,7.402,337,1.897,339,2.831,340,2.923,341,0.618,344,1.034,345,0.855,346,3.654,347,0.942,348,0.718,352,1.119,353,3.654,354,1.656,357,1.782,358,1.615,359,2.338,360,1.959,362,2.456,364,0.888,365,0.807,367,0.915,368,2.775,369,2.102,370,3.043,371,0.943,377,2.603,378,5.014,379,4.192,382,2.626,383,2.227,385,1.201,386,1.532,387,1.595,388,0.573,390,3.447,391,1.532,392,1.103,393,0.942,397,5.243,399,1.453,400,1.159,403,1.291,404,1.782,406,1.747,407,2.592,411,3.932,415,2.09,418,6.453,419,1.624,422,3.932,425,0.775,426,2.357,428,2.378,431,3.932,433,1.635,437,3.932,442,2.936,443,1.747,445,1.23,449,3.932,450,1.532,456,1.41,457,2.526,460,3.932,462,1.532,466,3.932,468,1.532,473,3.932,474,0.915,479,0.736,482,1.188,485,3.932,487,2.678,488,1.145,496,3.932,501,2.626,507,0.959,515,0.775,521,1.103,527,1.186,529,2.356,533,2.758,540,1.868,543,0.66,551,6.289,555,2.989,557,1.437,559,0.765,563,0.807,590,1.129,640,2.784,644,0.66,647,0.926,648,0.855,651,0.843,655,1.103,657,1.576,672,1.521,674,1.311,675,0.796,676,1.277,677,0.796,678,0.755,679,0.868,684,1.397,686,2.815,694,0.843,697,1.157,704,0.855,705,0.942,706,0.926,707,0.942,708,0.855,709,1.705,710,1.846,711,2.037,717,0.765,718,0.745,726,0.926,731,2.677,733,0.855,739,3.323,741,2.157,744,1.345,752,1.345,753,6.017,761,1.365,762,0.819,764,0.727,774,4.314,775,1.738,778,4.527,781,2.929,786,1.738,808,2.996,813,2.996,815,1.624,818,0.942,820,3.696,823,1.624,824,1.458,825,1.624,841,0.896,927,3.654,928,1.258,929,4.796,930,1.258,931,0.709,932,1.458,934,2.784,935,1.345,938,1.624,940,1.458,941,1.157,943,4.596,944,2.5,950,1.294,952,1.299,954,1.624,955,0.868,956,0.7,957,0.83,958,0.796,959,0.896,960,1.107,963,1.221,968,1.624,969,1.079,970,1.103,981,1.705,983,1.747,987,1.532,991,2.157,992,3.473,996,4.192,1008,0.976,1011,1.034,1013,2.094,1014,1.984,1024,2.5,1030,1.397,1036,1.157,1067,2.375,1068,1.345,1069,6.117,1070,3.447,1072,3.447,1073,2.996,1077,1.079,1088,4.66,1090,4.66,1277,3.35,1278,1.624,1282,1.188,1283,0.896,1361,1.397,1381,1.624,1648,3.087,1723,1.129,1745,1.221,1790,1.299,1807,5.363,1920,3.654,1969,3.447,2037,1.188,2469,1.221,2610,1.299,2837,1.747,2961,1.221,3121,3.447,4049,1.624,5479,1.747,5870,3.282,5930,4.086,5984,3.447,6376,5.316,6488,1.747,6491,1.624,6945,2.996,7838,4.353,7839,5.159,7840,3.317,7841,3.317,7842,1.935,7843,1.935,7844,8.195,7845,3.317,7846,1.935,7847,6.332,7848,1.935,7849,1.935,7850,1.935,7851,1.935,7852,6.332,7853,5.805,7854,5.159,7855,1.935,7856,5.159,7857,3.317,7858,5.159,7859,5.159,7860,6.332,7861,4.353,7862,4.353,7863,4.353,7864,4.353,7865,5.159,7866,3.317,7867,3.317,7868,1.935,7869,4.353,7870,6.332,7871,4.353,7872,4.353,7873,4.353,7874,6.772,7875,6.772,7876,4.353,7877,6.332,7878,4.353,7879,4.353,7880,4.353,7881,3.317,7882,1.935,7883,1.935,7884,3.317,7885,1.935,7886,1.935,7887,1.935,7888,1.935,7889,4.353,7890,1.935,7891,3.317,7892,1.935,7893,3.317,7894,1.935,7895,1.935,7896,1.935,7897,3.317,7898,1.935,7899,3.317,7900,1.935,7901,1.935,7902,5.159,7903,1.935,7904,1.935,7905,3.317,7906,4.353,7907,5.805,7908,1.935,7909,1.935,7910,1.935,7911,1.935,7912,1.935,7913,1.935,7914,3.317,7915,4.353,7916,1.935,7917,1.935,7918,3.317,7919,4.353,7920,5.159,7921,5.159,7922,1.935,7923,1.935,7924,1.935,7925,1.935,7926,1.935,7927,1.935,7928,1.935,7929,5.805,7930,5.159,7931,1.935,7932,1.935,7933,1.935]],["t/147",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,112,0.784,5527,2.775]],["d/147",[]],["k/147",[]],["b/147",[4,0.28,18,2.162,30,1.067,44,2.245,69,3.256,71,3.21,81,2.632,82,2.177,93,2.58,101,2.256,106,1.555,107,2.543,112,1.468,113,2.369,120,2.115,121,1.067,124,1.475,132,1.67,133,2.057,144,1.948,145,1.043,146,1.946,147,2.113,152,0.889,154,1.607,155,2.184,163,0.678,171,2.355,172,2.355,202,2.429,218,2.454,225,0.691,228,1.425,229,1.387,230,2.289,232,1.118,237,2.281,238,1.882,239,2.664,243,2.622,244,2.969,245,1.682,249,2.655,250,2.264,256,2.5,257,2.343,258,2.263,265,3.104,266,2.572,268,1.625,269,3.082,279,2.784,281,2.38,284,1.173,285,3.534,287,3.079,288,2.233,290,2.345,292,1.067,300,3.699,303,2.245,304,3.216,305,2.546,306,3.943,308,2.817,311,2.44,331,1.577,332,1.447,341,0.998,345,3.058,347,2.398,348,2.565,352,3.011,354,2.63,357,1.079,358,1.159,359,2.056,360,2.698,361,2.032,362,1.322,364,2.446,365,1.304,367,0.862,368,2.813,369,1.716,370,3.129,371,1.734,384,2.808,385,1.783,387,1.804,388,1.806,389,4.994,392,3.475,394,1.403,400,1.092,402,3.875,403,2.403,407,1.522,425,3.014,426,0.987,433,1.173,442,0.926,445,3.607,451,1.521,456,1.665,469,2.616,470,1.577,474,2.57,475,1.782,476,1.782,477,2.026,478,1.869,479,1.873,480,2.378,487,1.49,491,4.361,498,1.521,499,1.521,500,1.188,502,1.361,505,1.118,508,1.919,515,1.972,533,3.482,538,1.235,540,2.894,542,1.637,547,1.869,557,1.625,559,1.946,569,2.357,572,3.024,607,2.032,647,1.496,648,2.177,656,1.496,657,1.131,663,2.616,672,2.416,678,1.219,703,1.447,720,3.555,726,1.496,728,3.427,743,1.919,746,1.824,767,1.606,928,2.032,952,3.306,991,2.032,1008,1.577,1011,3.258,1038,3.216,1077,1.742,1731,1.742,1736,3.109,1738,2.256,1843,1.973,1873,1.919,1987,1.782,1988,2.18,2084,1.606,2112,2.355,2113,2.355,2114,3.306,2132,3.202,2136,4.472,2140,4.643,2163,1.606,2164,3.978,2170,2.946,2175,2.474,2215,1.471,2254,3.423,2264,1.869,2292,1.824,2394,2.355,2469,1.973,2619,3.557,2693,1.742,2831,1.742,2941,2.632,2942,2.531,3362,3.306,3715,2.256,3716,2.256,3717,2.256,3718,2.474,3719,5.213,3720,3.712,3723,3.556,3757,2.474,3788,2.623,4047,5.616,4447,2.623,5527,6.977,5528,2.355,5895,4.134,6044,2.474,6162,3.899,6776,2.623,7124,2.822,7125,8.677,7126,6.71,7127,2.822,7128,2.822,7129,2.822,7131,2.822,7132,6.316,7133,2.822,7134,2.822,7135,6.316,7136,4.134,7140,2.822,7141,4.134,7142,6.71,7143,2.822,7144,4.134,7146,2.623,7147,2.623,7184,2.623,7185,5.116,7187,2.623,7206,2.623,7209,4.134,7221,2.822,7265,2.623,7268,2.623,7271,2.623,7274,2.623,7276,2.623,7277,2.623,7281,2.623,7282,2.623,7295,2.623,7296,2.623,7297,2.822,7298,2.822,7299,2.822,7300,2.822,7301,2.822,7302,2.822,7303,2.822,7306,2.822,7307,2.822,7333,2.822,7411,2.822,7412,2.822,7413,2.822,7934,6.916,7935,6.094,7936,6.916,7937,6.916,7938,6.916,7939,6.916,7940,3.125,7941,4.924,7942,3.125,7943,4.924,7944,4.924,7945,4.924,7946,4.924,7947,3.125,7948,3.125,7949,4.924,7950,4.924,7951,4.924,7952,4.924,7953,3.125,7954,3.125,7955,3.125,7956,3.125,7957,3.125,7958,3.125,7959,3.125,7960,3.125,7961,3.125,7962,3.125,7963,3.125,7964,3.125,7965,3.125,7966,3.125,7967,3.125,7968,3.125,7969,3.125,7970,3.125,7971,3.125,7972,3.125,7973,3.125,7974,3.125,7975,3.125]],["t/148",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,220,3.217,2008,3.082]],["d/148",[]],["k/148",[]],["b/148",[4,0.154,18,2.452,25,1.227,30,1.414,41,3.113,43,0.823,66,1.43,69,1.95,70,3.477,71,0.832,82,1.831,93,1.321,96,1.591,106,0.796,108,0.891,111,2.478,112,0.761,117,1.555,120,2.675,121,1.414,123,1.167,129,2.483,133,1.398,134,1.616,139,2.2,143,2.005,144,2.042,145,2.038,146,2.647,147,2.156,152,2.277,153,1.43,154,0.823,155,1.981,161,3.46,162,1.405,163,0.899,198,2.052,202,1.702,216,1.536,220,3.974,225,0.557,229,1.485,230,1.555,232,2.965,235,1.437,237,2.442,238,2.371,239,0.971,240,1.066,241,0.983,243,2.403,244,2.369,245,2.355,249,2.296,250,1.945,256,1.026,257,1.385,258,1.513,266,2.042,279,2.957,280,3.778,283,2.445,287,2.918,288,1.702,290,1.215,292,1.8,304,2.646,305,1.47,314,0.996,315,0.739,337,2.02,338,1.481,344,1.347,347,2.017,348,2.265,354,0.958,357,1.43,358,0.935,359,1.843,360,2.277,362,1.066,363,2.214,364,1.807,365,1.052,367,1.862,368,2.67,369,1.719,370,2.885,371,1.178,377,2.09,387,1.932,393,2.567,399,2.557,400,1.447,403,1.917,404,1.821,408,1.321,414,1.227,415,2.529,425,1.659,426,2.42,428,1.98,442,2.592,456,1.132,457,0.891,470,2.09,474,2.115,479,1.575,487,2.319,488,2.504,505,0.901,515,1.009,521,3.481,527,0.901,538,2.084,540,3.166,542,1.321,543,2.616,550,6.337,555,1.447,557,0.832,561,0.996,563,1.052,611,1.023,644,1.414,645,0.851,651,3.486,658,2.78,665,2.71,670,1.321,672,2.677,674,1.637,675,1.037,676,2.031,677,2.169,678,0.983,679,1.131,682,3.974,683,1.996,690,2.923,694,1.098,697,3.653,699,4.671,703,1.167,704,1.114,705,1.227,709,1.295,710,0.901,717,0.996,718,0.971,723,3.681,730,1.375,731,3.593,733,2.331,734,2.214,736,1.591,739,1.082,741,4.229,750,1.548,751,1.508,755,2.693,757,2.129,759,1.471,761,1.704,762,1.066,763,1.321,764,1.555,774,4.402,775,2.763,778,4.658,815,2.116,818,3.284,922,1.692,931,0.923,937,2.699,947,3.866,950,1.616,955,1.131,956,2.774,957,1.082,958,1.037,959,1.167,960,0.841,971,2.973,973,3.006,980,3.564,981,2.129,990,1.375,991,2.693,1007,1.548,1009,1.639,1013,1.591,1014,1.508,1032,1.9,1034,1.752,1035,3.122,1036,3.154,1039,1.508,1066,1.639,1067,3.681,1072,1.996,1277,1.131,1319,1.728,1520,6.249,1665,4.986,1712,2.116,1717,1.9,1739,2.116,1742,4.175,1774,2.693,1788,2.66,1836,1.996,1854,3.122,1865,1.639,1872,1.752,1920,2.116,1965,2.276,2008,7.048,2038,2.877,2046,2.116,2058,1.82,2069,1.639,2256,2.991,2308,1.375,2325,1.639,2445,1.639,2572,3.937,2642,1.996,2678,1.692,2693,1.405,2761,1.321,2768,5.994,2831,1.405,2871,1.437,3194,1.82,3365,1.9,3423,1.996,3768,2.879,4017,2.276,4021,4.914,4023,1.996,4317,2.116,5465,1.82,5482,4.409,5833,1.692,5861,7.788,6565,2.116,6795,2.276,7976,7.228,7977,8.339,7978,5.514,7979,4.762,7980,4.762,7981,6.55,7982,4.762,7983,4.762,7984,3.741,7985,4.762,7986,3.741,7987,3.741,7988,4.762,7989,2.276,7990,4.762,7991,4.141,7992,8.12,7993,2.52,7994,2.52,7995,2.52,7996,2.52,7997,2.52,7998,4.141,7999,2.52,8000,4.141,8001,4.141,8002,4.141,8003,2.52,8004,4.141,8005,7.663,8006,2.52,8007,5.272,8008,2.52,8009,3.741,8010,4.141,8011,4.141,8012,2.52,8013,2.52,8014,2.52,8015,5.272,8016,4.141,8017,7.252,8018,4.141,8019,2.52,8020,4.141,8021,2.52,8022,4.141,8023,2.52,8024,4.141,8025,4.141,8026,4.141,8027,2.52,8028,6.105,8029,4.141,8030,2.52,8031,2.52,8032,2.52,8033,2.52,8034,2.52,8035,2.52,8036,4.141,8037,2.276,8038,2.276,8039,2.276,8040,2.276,8041,2.276,8042,2.276,8043,2.276,8044,2.276,8045,2.52,8046,2.276,8047,2.52,8048,2.276,8049,4.141,8050,4.141,8051,4.141,8052,2.52,8053,2.52,8054,6.105,8055,4.141,8056,4.762,8057,2.276,8058,7.252,8059,6.745,8060,2.276,8061,2.276,8062,2.52,8063,2.276,8064,2.276,8065,2.276,8066,2.52,8067,2.276]],["t/149",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,112,0.784,5861,3.082]],["d/149",[]],["k/149",[]],["b/149",[4,0.302,18,1.599,30,1.899,43,1.194,54,1.751,65,2.309,70,6.793,106,1.757,107,2.809,112,1.382,113,1.995,120,1.119,124,1.096,129,1.096,144,2.118,146,1.168,147,2.306,149,2.188,154,1.816,155,2.211,161,3.266,163,0.794,202,2.173,218,2.374,220,2.757,225,0.809,228,1.668,229,1.567,232,3.049,238,1.684,243,1.03,244,2.891,245,1.009,249,1.593,250,2.318,255,1.391,256,2.402,257,2.664,258,2.363,265,3.377,266,2.634,268,1.836,269,3.393,279,2.852,280,3.749,281,2.52,283,2.228,284,1.374,287,3.062,288,2.612,289,3.838,292,1.249,304,2.325,305,2.097,315,1.073,332,1.694,337,1.666,338,1.99,341,1.168,347,4.15,357,1.263,358,1.357,359,2.329,362,1.548,363,1.955,364,2.505,365,1.526,366,1.88,367,1.009,368,2.802,369,1.567,370,3.109,371,1.915,377,2.807,384,3.172,385,2.014,387,2.038,399,3.281,400,1.278,402,4.104,403,2.426,405,1.722,425,2.228,432,3.07,440,4.017,442,2.23,469,1.57,470,1.845,474,1.858,475,2.085,476,2.085,477,1.505,478,2.188,479,1.391,480,1.427,487,2.277,488,1.921,498,1.781,499,1.781,500,1.391,502,1.593,538,2.199,540,2.437,542,1.917,543,1.249,550,6.408,555,1.278,599,4.017,611,1.485,651,3.277,658,2.455,672,1.278,690,4.241,708,1.617,733,2.46,740,1.955,741,2.757,803,2.135,818,4.15,947,2.976,971,2.709,991,2.378,994,6.206,1067,4.651,1520,6.1,1665,5.051,1669,2.974,1697,3.247,1810,3.303,1854,2.757,2008,6.593,2058,2.641,2142,2.455,2229,5.956,2255,2.542,2768,5.722,3056,2.896,3361,4.193,3534,3.07,3537,3.303,3539,3.303,3541,3.303,3730,4.017,4021,5.44,4245,3.07,5046,3.303,5861,7.631,5862,3.07,5863,3.07,7976,3.303,7977,9.357,7978,3.303,7979,8.002,7980,3.303,7981,8.002,7982,3.303,7983,3.303,7984,5.024,7985,3.303,7986,7.309,7987,5.024,7988,3.303,7989,5.024,7990,8.002,7992,8.139,8009,3.303,8037,3.303,8038,3.303,8039,3.303,8040,3.303,8041,3.303,8042,3.303,8043,3.303,8044,3.303,8046,3.303,8056,3.303,8057,3.303,8060,5.024,8061,3.303,8063,3.303,8064,3.303,8065,3.303,8067,3.303,8068,7.522,8069,6.732,8070,7.522,8071,7.522,8072,7.522,8073,7.522,8074,7.522,8075,7.522,8076,3.657,8077,3.657,8078,3.657,8079,5.563,8080,5.563,8081,5.563,8082,3.657,8083,3.657,8084,3.657,8085,3.657,8086,3.657,8087,3.657,8088,3.657,8089,3.657,8090,3.657,8091,3.657,8092,3.657,8093,3.657,8094,3.657,8095,3.657,8096,3.657,8097,3.657,8098,3.657,8099,3.657,8100,3.657,8101,3.657,8102,3.657,8103,3.657,8104,3.657,8105,3.657,8106,3.657,8107,3.657,8108,3.657,8109,3.657,8110,3.657,8111,5.563,8112,3.657,8113,3.657,8114,3.657,8115,3.657,8116,3.657,8117,3.657,8118,3.657,8119,3.657,8120,3.657,8121,3.657,8122,3.657,8123,3.657]],["t/150",[0,0.335,1,0.331,2,0.22,3,0.342,4,0.116,112,0.571,185,2.343,315,0.912,1613,2.16,1616,2.245,1987,1.772,2012,2.343]],["d/150",[]],["k/150",[]],["b/150",[0,0.316,4,0.146,18,2.013,24,1.516,29,0.817,30,2.941,41,1.102,43,0.548,44,1.337,66,1.837,73,1.902,77,1.127,83,1.359,98,0.832,100,1.601,101,2.119,106,2.678,108,0.593,111,3.994,112,0.539,113,0.498,117,1.467,119,1.454,120,1.627,121,1.002,123,2.17,124,0.879,129,2.262,133,1.319,134,1.524,135,1.601,143,1.486,144,0.473,145,2.724,146,0.536,147,2.062,152,1.663,153,2.173,155,1.453,161,0.601,163,0.364,166,0.378,167,0.936,185,2.945,198,1.936,202,3.031,204,1.004,216,1.088,218,1.374,225,0.371,230,1.467,232,2.979,238,1.996,241,0.655,245,1.468,246,2.821,250,1.984,255,0.638,256,2.134,257,1.026,258,0.727,266,1.646,268,0.968,269,2.625,279,2.948,280,3.645,281,1.111,285,3.682,287,2.672,290,0.492,292,1.334,303,4.037,304,3.018,305,2.168,308,1.234,311,4.832,314,1.544,315,1.146,317,0.957,329,1.404,331,0.847,337,1.885,338,0.601,341,0.937,352,2.549,359,2.419,360,2.549,363,3.9,364,2.023,367,1.614,368,2.704,369,2.299,370,2.956,371,1.111,377,2.363,383,1.127,388,1.158,399,3.083,400,1.365,403,0.977,407,2.334,415,2.694,425,1.175,426,1.479,428,1.102,433,0.63,440,1.212,442,2.468,444,0.765,445,3.242,456,1.824,474,2.34,477,2.59,480,1.144,487,2.471,488,2.305,491,3.807,503,1.212,505,0.601,507,0.832,508,1.031,511,0.916,513,0.897,515,3.335,517,1.127,519,1.337,527,0.601,529,1.901,533,1.278,538,1.16,543,0.573,555,2.717,557,2.408,559,1.851,561,2.884,563,2.439,565,0.897,567,0.804,569,0.804,572,1.031,575,1.06,578,1.127,581,1.004,611,0.681,613,0.71,615,0.897,637,1.908,644,0.573,657,2.117,670,0.88,672,2.199,674,1.16,675,0.691,676,1.13,677,1.207,678,0.655,679,0.754,690,2.546,705,1.428,710,1.049,717,0.664,718,0.647,731,3.291,733,0.742,734,0.897,736,1.06,737,1.06,747,1.212,749,0.98,750,1.031,751,1.004,757,0.863,758,2.504,761,1.207,762,0.71,763,0.88,764,0.63,774,3.587,781,0.847,786,0.88,819,0.778,821,2.008,822,2.466,841,2.17,849,1.212,931,0.615,942,1.852,948,1.127,950,1.144,956,2.117,957,2.011,960,0.979,963,1.06,968,1.409,974,0.863,980,2.28,981,1.508,986,2.337,990,1.601,1061,4.654,1258,1.516,1269,1.516,1273,1.004,1274,1.092,1276,1.329,1277,0.754,1283,2.17,1315,1.06,1363,3.144,1613,7.031,1616,4.222,1669,3.125,1697,1.712,1716,3.722,1731,0.936,1740,2.008,1749,1.969,1760,0.88,1768,1.329,1775,1.329,1777,1.409,1788,0.847,1790,5.357,1801,1.329,1808,1.908,1811,6.619,1812,2.54,1829,2.957,1830,2.802,1844,1.167,1865,3.046,1987,0.957,2030,1.167,2084,0.863,2114,1.127,2164,3.752,2274,1.755,2276,2.039,2283,4.821,2301,1.409,2337,1.516,2448,1.409,2460,1.409,2567,1.516,2619,2.734,2622,2.466,2642,1.329,2678,5.783,2688,1.127,2783,1.359,2831,0.936,2844,1.266,2870,2.463,2883,3.932,2941,2.843,2942,2.734,2961,5.352,2991,0.817,3088,3.932,3197,4.407,3378,6.589,3741,1.06,3792,2.211,3990,4.481,3994,3.144,4090,1.409,4121,1.212,4140,1.516,4345,4.23,4352,2.211,4401,4.63,4507,1.516,4599,3.709,5376,5.684,5576,8.303,5581,6.526,5586,5.881,5600,3.529,5833,1.127,5953,1.409,5976,2.323,5982,1.266,6156,3.529,6235,4.407,6399,1.329,6542,5.603,6778,3.709,6944,1.409,6991,1.516,6994,6.029,7493,1.516,7548,5.281,7549,4.23,7550,3.529,7553,8.544,7555,2.65,7559,2.65,7560,1.516,7561,4.23,7562,2.65,7563,4.23,7564,4.23,7566,4.23,7567,2.65,7568,1.516,7583,6.82,7591,3.529,7594,2.65,7596,6.029,7597,3.529,7601,3.529,7602,1.516,7603,2.65,7604,5.684,7605,1.516,7606,4.23,7610,1.516,7611,3.529,7612,1.516,7613,6.029,7615,4.23,7617,1.516,7618,3.529,7622,1.516,7623,3.529,7625,1.516,7626,3.529,7627,1.516,7628,3.529,7629,1.516,7630,3.529,7631,1.516,7632,3.529,7634,1.516,7635,3.529,7636,1.516,7637,3.529,7638,3.529,7649,3.529,7656,5.281,7657,2.65,7661,4.804,7664,1.516,7667,1.516,8124,5.318,8125,1.679,8126,1.679,8127,1.679,8128,1.679,8129,6.675,8130,1.679,8131,1.679,8132,1.679,8133,1.679,8134,4.684,8135,1.679,8136,1.679,8137,2.933,8138,1.679,8139,1.679,8140,1.679,8141,5.846,8142,1.679,8143,1.679,8144,1.679,8145,4.684,8146,2.933,8147,2.933,8148,1.679,8149,7.295,8150,1.679,8151,1.679,8152,2.933,8153,1.679,8154,1.679,8155,1.679,8156,1.679,8157,1.679,8158,1.679,8159,1.679,8160,1.679,8161,1.679,8162,1.679,8163,1.679,8164,2.933,8165,1.679,8166,2.933,8167,1.679,8168,1.679,8169,2.933,8170,1.679,8171,1.679,8172,1.679,8173,1.679,8174,2.933,8175,1.679,8176,2.933,8177,1.679,8178,2.933,8179,1.679,8180,1.679,8181,4.684,8182,1.679,8183,1.679,8184,3.907,8185,3.907,8186,2.933,8187,1.679,8188,1.679,8189,1.679,8190,1.679,8191,1.679,8192,1.679,8193,1.679,8194,1.679,8195,1.679,8196,2.933,8197,1.679,8198,2.933,8199,1.679,8200,2.933,8201,1.679,8202,2.933,8203,1.679,8204,2.933,8205,1.679,8206,6.293,8207,2.933,8208,6.675,8209,4.684,8210,1.679,8211,1.679,8212,2.933,8213,3.907,8214,2.933,8215,1.679,8216,1.679,8217,1.679,8218,2.933,8219,1.679,8220,1.679,8221,4.684,8222,3.907,8223,1.679,8224,4.684,8225,1.679,8226,1.679,8227,4.684,8228,1.679,8229,2.933,8230,5.318,8231,1.679,8232,1.679,8233,1.679,8234,3.907,8235,1.679,8236,2.933,8237,2.933,8238,4.684,8239,1.679,8240,1.679,8241,1.679,8242,2.933,8243,1.679,8244,1.679,8245,4.684,8246,2.933,8247,1.679,8248,1.679,8249,1.679,8250,1.679,8251,1.679,8252,1.679,8253,1.679,8254,4.684,8255,2.933,8256,2.933,8257,1.679,8258,1.679,8259,1.679,8260,3.907,8261,3.907,8262,3.907,8263,3.907,8264,3.907,8265,3.907,8266,1.679,8267,1.679,8268,1.679,8269,1.679,8270,1.679,8271,1.679,8272,1.679,8273,1.679,8274,1.679,8275,1.679,8276,1.679,8277,1.679,8278,1.679,8279,1.679,8280,1.679,8281,1.679,8282,1.679,8283,1.679,8284,1.679,8285,1.679,8286,1.679,8287,1.679,8288,1.679,8289,1.679,8290,1.679,8291,1.679,8292,1.679,8293,1.679,8294,1.679,8295,1.679,8296,1.679,8297,1.679,8298,1.679,8299,1.679,8300,1.679,8301,1.679,8302,1.679,8303,1.679,8304,1.679,8305,2.933,8306,4.684,8307,1.679,8308,2.933,8309,1.679]],["t/151",[0,0.497,1,0.492,2,0.326,3,0.507,4,0.172,164,3.871]],["d/151",[]],["k/151",[]],["b/151",[1,0.776,2,0.632,3,0.984,4,0.361,8,5.247,18,3.092,30,1.809,41,2.733,43,3.061,60,3.557,82,2.343,96,3.345,98,5.234,99,3.827,100,2.891,101,3.827,108,2.572,109,6.581,110,3.557,112,1.857,113,2.996,119,4.119,120,2.226,121,3.055,128,5.486,133,3.27,135,2.891,142,6.581,143,3.161,144,2.52,145,1.768,147,2.369,152,3.044,153,2.87,155,1.448,161,3.2,162,5.228,163,1.804,164,6.109,166,1.873,198,4.434,202,1.711,216,1.966,225,2.142,228,2.416,229,2.975,238,2.528,241,3.871,249,3.17,250,1.288,256,1.803,257,2.183,265,3.267,268,2.402,285,3.217,311,2.626,315,1.554,317,5.101,337,1.587,359,1.988,364,1.419,367,2.008,394,2.379,407,2.25,414,2.58,456,1.448,479,2.015,615,4.443,657,1.918,659,6.265,672,2.904,676,2.041,717,3.285,718,3.201,722,5.255,723,3.971,724,3.17,727,3.217,731,3.536,749,5.222,751,5.353,763,2.777,764,1.99,819,2.454,841,2.454,1030,3.827,1068,3.683,1087,2.151,1106,3.557,1671,3.446,1730,3.254,1742,4.196,1749,3.557,1764,3.994,2163,2.724,2164,2.308,2194,3.827,2245,4.448,2700,3.827,2827,6.772,3113,4.196,3125,3.827,5215,5.486,5833,4.885,5866,4.786,5874,6.109,6138,6.573,6139,7.507,6194,4.786,6205,4.786,6221,4.786,6237,4.786,6486,6.573,6604,7.511,7768,4.786,7992,4.448,8048,4.786,8310,5.299,8311,7.277,8312,8.311,8313,8.081,8314,8.081,8315,5.299,8316,5.299,8317,5.299,8318,7.277,8319,5.299,8320,7.277,8321,5.299,8322,5.299,8323,7.277,8324,5.299,8325,5.299,8326,5.299,8327,5.299,8328,5.299,8329,7.277,8330,5.299,8331,5.299,8332,5.299,8333,5.299,8334,5.299,8335,5.299,8336,5.299]],["t/152",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,113,1.265,166,0.962]],["d/152",[]],["k/152",[]],["b/152",[1,0.369,2,0.694,8,2.184,18,1.532,29,1.685,41,2.002,43,1.129,66,3.546,71,1.76,83,1.603,98,3.621,106,1.093,112,2.045,113,1.58,117,1.299,133,1.8,147,2.416,152,3.17,158,4.424,163,0.751,166,0.78,167,1.929,186,2.608,198,1.714,202,1.721,206,5.132,214,2.608,216,2.413,224,4.219,226,2.25,227,3.796,229,1.501,230,2.002,238,0.866,241,1.35,243,2.826,250,2.685,251,3.19,252,3.366,253,2.07,254,4.159,255,3.78,256,1.321,290,2.631,300,2.876,315,3.212,316,3.994,337,2.189,348,3.223,359,1.997,366,1.778,394,2.393,399,2.171,400,1.209,403,1.975,404,3.303,407,1.07,415,1.76,428,1.299,456,0.945,505,1.238,529,3.736,540,1.253,561,1.368,611,2.164,644,3.727,645,3.658,647,1.656,650,2.323,651,4.166,652,2.125,654,2.184,655,3.708,657,1.253,676,2.053,749,2.02,750,3.274,755,2.25,758,3.716,761,1.424,819,1.603,820,1.888,821,1.778,937,1.53,947,1.53,960,3.192,962,2.904,963,4.983,965,2.642,1038,1.978,1077,1.929,1087,2.164,1283,4.024,1315,2.184,1613,2.405,1616,3.85,1624,5.132,1638,4.521,1640,2.608,1671,2.25,1709,2.499,1710,2.74,1711,2.74,1716,5.131,1987,3.708,1988,3.292,1990,4.496,1993,4.228,1998,2.608,2008,2.499,2010,2.608,2012,2.608,2014,2.74,2015,2.74,2016,4.613,2019,3.706,2115,2.125,2116,2.499,2163,1.778,2215,1.629,2611,2.904,2653,2.02,2802,2.499,2835,2.74,2991,3.558,3121,2.74,3300,4.521,3303,2.499,3695,4.207,3696,4.521,4026,2.74,4356,2.904,4388,2.904,4719,5.522,4868,2.904,5080,5.486,5526,2.904,5527,5.422,5528,4.019,5529,5.297,5530,4.019,5581,4.521,5861,4.697,5862,2.904,5863,2.904,5864,5.486,5865,5.486,5875,2.323,5876,3.579,5877,2.499,8337,3.46,8338,3.46,8339,3.46,8340,3.46,8341,3.46,8342,3.46,8343,3.46,8344,3.46,8345,3.46,8346,3.46,8347,3.46,8348,3.46,8349,3.46,8350,3.46,8351,3.46,8352,3.46,8353,3.46,8354,3.46,8355,3.46,8356,3.46,8357,3.46,8358,3.46,8359,3.46,8360,3.46,8361,3.46,8362,3.46,8363,3.46,8364,3.46,8365,3.46,8366,3.46,8367,3.46,8368,3.46,8369,3.46,8370,3.46,8371,3.46,8372,3.46,8373,3.46,8374,3.46,8375,3.46,8376,3.46,8377,3.46,8378,3.46,8379,3.46,8380,3.46,8381,3.46,8382,3.46,8383,3.46,8384,3.46,8385,3.46,8386,3.46,8387,3.46,8388,3.46,8389,3.46,8390,3.46,8391,3.46,8392,3.46,8393,3.46,8394,10.489,8395,3.46,8396,3.46,8397,3.46]],["t/153",[0,0.46,1,0.455,2,0.301,3,0.469,4,0.159,161,1.527,162,2.379]],["d/153",[]],["k/153",[]],["b/153",[5,7.298,8,5.488,43,2.837,98,4.308,99,6.278,161,3.557,162,4.847,615,4.647,722,6.278,749,5.074,8313,7.852,8314,7.852,8398,8.693]],["t/154",[]],["d/154",[]],["k/154",[]],["b/154",[]],["t/155",[]],["d/155",[]],["k/155",[]],["b/155",[]],["t/156",[]],["d/156",[]],["k/156",[]],["b/156",[]],["t/157",[]],["d/157",[]],["k/157",[]],["b/157",[]],["t/158",[]],["d/158",[]],["k/158",[]],["b/158",[]],["t/159",[]],["d/159",[]],["k/159",[]],["b/159",[]],["t/160",[]],["d/160",[]],["k/160",[]],["b/160",[]],["t/161",[]],["d/161",[]],["k/161",[]],["b/161",[]],["t/162",[]],["d/162",[]],["k/162",[]],["b/162",[]],["t/163",[]],["d/163",[]],["k/163",[]],["b/163",[]],["t/164",[]],["d/164",[]],["k/164",[]],["b/164",[]],["t/165",[]],["d/165",[]],["k/165",[]],["b/165",[]],["t/166",[]],["d/166",[]],["k/166",[]],["b/166",[]],["t/167",[]],["d/167",[]],["k/167",[]],["b/167",[]],["t/168",[]],["d/168",[]],["k/168",[]],["b/168",[]],["t/169",[]],["d/169",[]],["k/169",[]],["b/169",[]],["t/170",[]],["d/170",[]],["k/170",[]],["b/170",[]],["t/171",[]],["d/171",[]],["k/171",[]],["b/171",[]],["t/172",[]],["d/172",[]],["k/172",[]],["b/172",[]],["t/173",[]],["d/173",[]],["k/173",[]],["b/173",[]],["t/174",[]],["d/174",[]],["k/174",[]],["b/174",[]],["t/175",[]],["d/175",[]],["k/175",[]],["b/175",[]],["t/176",[]],["d/176",[]],["k/176",[]],["b/176",[]],["t/177",[]],["d/177",[]],["k/177",[]],["b/177",[]],["t/178",[]],["d/178",[]],["k/178",[]],["b/178",[]],["t/179",[]],["d/179",[]],["k/179",[]],["b/179",[]],["t/180",[]],["d/180",[]],["k/180",[]],["b/180",[]],["t/181",[]],["d/181",[]],["k/181",[]],["b/181",[]],["t/182",[]],["d/182",[]],["k/182",[]],["b/182",[]],["t/183",[]],["d/183",[]],["k/183",[]],["b/183",[]],["t/184",[]],["d/184",[]],["k/184",[]],["b/184",[]],["t/185",[]],["d/185",[]],["k/185",[]],["b/185",[]],["t/186",[]],["d/186",[]],["k/186",[]],["b/186",[]],["t/187",[]],["d/187",[]],["k/187",[]],["b/187",[]],["t/188",[]],["d/188",[]],["k/188",[]],["b/188",[]],["t/189",[]],["d/189",[]],["k/189",[]],["b/189",[]],["t/190",[]],["d/190",[]],["k/190",[]],["b/190",[]],["t/191",[]],["d/191",[]],["k/191",[]],["b/191",[]],["t/192",[]],["d/192",[]],["k/192",[]],["b/192",[]],["t/193",[]],["d/193",[]],["k/193",[]],["b/193",[]],["t/194",[]],["d/194",[]],["k/194",[]],["b/194",[]],["t/195",[]],["d/195",[]],["k/195",[]],["b/195",[]],["t/196",[]],["d/196",[]],["k/196",[]],["b/196",[]],["t/197",[]],["d/197",[]],["k/197",[]],["b/197",[]],["t/198",[]],["d/198",[]],["k/198",[]],["b/198",[]],["t/199",[]],["d/199",[]],["k/199",[]],["b/199",[]],["t/200",[]],["d/200",[]],["k/200",[]],["b/200",[]],["t/201",[]],["d/201",[]],["k/201",[]],["b/201",[]],["t/202",[]],["d/202",[]],["k/202",[]],["b/202",[]],["t/203",[]],["d/203",[]],["k/203",[]],["b/203",[]],["t/204",[]],["d/204",[]],["k/204",[]],["b/204",[]],["t/205",[]],["d/205",[]],["k/205",[]],["b/205",[]],["t/206",[]],["d/206",[]],["k/206",[]],["b/206",[]],["t/207",[]],["d/207",[]],["k/207",[]],["b/207",[]],["t/208",[]],["d/208",[]],["k/208",[]],["b/208",[]],["t/209",[]],["d/209",[]],["k/209",[]],["b/209",[]],["t/210",[]],["d/210",[]],["k/210",[]],["b/210",[]],["t/211",[]],["d/211",[]],["k/211",[]],["b/211",[]],["t/212",[]],["d/212",[]],["k/212",[]],["b/212",[]],["t/213",[]],["d/213",[]],["k/213",[]],["b/213",[]],["t/214",[]],["d/214",[]],["k/214",[]],["b/214",[]],["t/215",[]],["d/215",[]],["k/215",[]],["b/215",[]],["t/216",[]],["d/216",[]],["k/216",[]],["b/216",[]],["t/217",[]],["d/217",[]],["k/217",[]],["b/217",[]],["t/218",[]],["d/218",[]],["k/218",[]],["b/218",[]],["t/219",[]],["d/219",[]],["k/219",[]],["b/219",[]],["t/220",[]],["d/220",[]],["k/220",[]],["b/220",[]],["t/221",[]],["d/221",[]],["k/221",[]],["b/221",[]],["t/222",[]],["d/222",[]],["k/222",[]],["b/222",[]],["t/223",[]],["d/223",[]],["k/223",[]],["b/223",[]],["t/224",[]],["d/224",[]],["k/224",[]],["b/224",[]],["t/225",[]],["d/225",[]],["k/225",[]],["b/225",[]],["t/226",[]],["d/226",[]],["k/226",[]],["b/226",[]],["t/227",[]],["d/227",[]],["k/227",[]],["b/227",[]],["t/228",[]],["d/228",[]],["k/228",[]],["b/228",[]],["t/229",[]],["d/229",[]],["k/229",[]],["b/229",[]],["t/230",[]],["d/230",[]],["k/230",[]],["b/230",[]],["t/231",[]],["d/231",[]],["k/231",[]],["b/231",[]],["t/232",[]],["d/232",[]],["k/232",[]],["b/232",[]],["t/233",[]],["d/233",[]],["k/233",[]],["b/233",[]],["t/234",[]],["d/234",[]],["k/234",[]],["b/234",[]],["t/235",[]],["d/235",[]],["k/235",[]],["b/235",[]],["t/236",[]],["d/236",[]],["k/236",[]],["b/236",[]],["t/237",[]],["d/237",[]],["k/237",[]],["b/237",[]],["t/238",[]],["d/238",[]],["k/238",[]],["b/238",[]],["t/239",[]],["d/239",[]],["k/239",[]],["b/239",[]],["t/240",[]],["d/240",[]],["k/240",[]],["b/240",[]],["t/241",[]],["d/241",[]],["k/241",[]],["b/241",[]],["t/242",[]],["d/242",[]],["k/242",[]],["b/242",[]],["t/243",[]],["d/243",[]],["k/243",[]],["b/243",[]],["t/244",[]],["d/244",[]],["k/244",[]],["b/244",[]],["t/245",[]],["d/245",[]],["k/245",[]],["b/245",[]],["t/246",[]],["d/246",[]],["k/246",[]],["b/246",[]],["t/247",[]],["d/247",[]],["k/247",[]],["b/247",[]],["t/248",[]],["d/248",[]],["k/248",[]],["b/248",[]],["t/249",[]],["d/249",[]],["k/249",[]],["b/249",[]],["t/250",[]],["d/250",[]],["k/250",[]],["b/250",[]],["t/251",[]],["d/251",[]],["k/251",[]],["b/251",[]],["t/252",[]],["d/252",[]],["k/252",[]],["b/252",[]],["t/253",[]],["d/253",[]],["k/253",[]],["b/253",[]],["t/254",[]],["d/254",[]],["k/254",[]],["b/254",[]],["t/255",[]],["d/255",[]],["k/255",[]],["b/255",[]],["t/256",[]],["d/256",[]],["k/256",[]],["b/256",[]],["t/257",[]],["d/257",[]],["k/257",[]],["b/257",[]],["t/258",[]],["d/258",[]],["k/258",[]],["b/258",[]],["t/259",[]],["d/259",[]],["k/259",[]],["b/259",[]],["t/260",[]],["d/260",[]],["k/260",[]],["b/260",[]],["t/261",[]],["d/261",[]],["k/261",[]],["b/261",[]],["t/262",[]],["d/262",[]],["k/262",[]],["b/262",[]],["t/263",[]],["d/263",[]],["k/263",[]],["b/263",[]],["t/264",[]],["d/264",[]],["k/264",[]],["b/264",[]],["t/265",[]],["d/265",[]],["k/265",[]],["b/265",[]],["t/266",[]],["d/266",[]],["k/266",[]],["b/266",[]],["t/267",[]],["d/267",[]],["k/267",[]],["b/267",[]],["t/268",[]],["d/268",[]],["k/268",[]],["b/268",[]],["t/269",[]],["d/269",[]],["k/269",[]],["b/269",[]],["t/270",[]],["d/270",[]],["k/270",[]],["b/270",[]],["t/271",[]],["d/271",[]],["k/271",[]],["b/271",[]],["t/272",[]],["d/272",[]],["k/272",[]],["b/272",[]],["t/273",[]],["d/273",[]],["k/273",[]],["b/273",[]],["t/274",[]],["d/274",[]],["k/274",[]],["b/274",[]],["t/275",[]],["d/275",[]],["k/275",[]],["b/275",[]],["t/276",[]],["d/276",[]],["k/276",[]],["b/276",[]],["t/277",[]],["d/277",[]],["k/277",[]],["b/277",[]],["t/278",[]],["d/278",[]],["k/278",[]],["b/278",[]],["t/279",[]],["d/279",[]],["k/279",[]],["b/279",[]],["t/280",[]],["d/280",[]],["k/280",[]],["b/280",[]],["t/281",[]],["d/281",[]],["k/281",[]],["b/281",[]],["t/282",[]],["d/282",[]],["k/282",[]],["b/282",[]],["t/283",[]],["d/283",[]],["k/283",[]],["b/283",[]],["t/284",[]],["d/284",[]],["k/284",[]],["b/284",[]],["t/285",[]],["d/285",[]],["k/285",[]],["b/285",[]],["t/286",[]],["d/286",[]],["k/286",[]],["b/286",[]],["t/287",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,258,0.984,8399,3.587]],["d/287",[]],["k/287",[]],["b/287",[4,0.361,43,2.708,145,3.23,163,1.801,204,4.964,225,1.835,256,2.056,258,2.056,279,2.517,281,2.753,305,2.943,337,2.485,359,2.645,367,2.29,505,2.968,645,3.267,1821,8.36,8400,7.494,8401,9.678,8402,9.678,8403,8.296,8404,8.296,8405,8.296,8406,8.296,8407,7.494]],["t/288",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,258,0.984,8408,3.971]],["d/288",[]],["k/288",[]],["b/288",[4,0.321,43,2.811,110,6.639,163,1.869,204,5.152,205,7.454,225,1.904,258,2.134,337,2.579,367,2.377,440,7.141,505,3.08,1856,7.454,2027,6.639]],["t/289",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,258,0.984,8409,3.971]],["d/289",[]],["k/289",[]],["b/289",[4,0.357,43,2.659,163,1.768,204,4.875,225,1.802,256,2.019,258,2.019,279,2.491,281,2.724,305,2.67,337,2.44,359,2.779,367,2.249,433,3.596,505,2.915,508,5.003,563,3.996,645,3.232,719,5.018,1753,7.359,1821,7.583,3112,7.667,8399,8.649,8400,7.359,8407,7.359,8410,9.576,8411,9.576,8412,9.576,8413,8.148,8414,8.148,8415,8.148,8416,8.148]],["t/290",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,258,0.984,8417,3.587]],["d/290",[]],["k/290",[]],["b/290",[4,0.319,43,2.789,152,2.801,163,1.855,204,5.113,205,7.422,225,1.89,238,2.463,254,4.713,257,2.586,258,2.118,337,2.56,367,2.359,505,3.057,2368,6.216,5877,7.11]],["t/291",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,258,0.984,8418,3.971]],["d/291",[]],["k/291",[]],["b/291",[4,0.321,43,2.811,163,1.869,204,5.152,205,7.454,225,1.904,233,5.286,238,2.474,256,2.45,258,2.134,337,2.579,359,2.702,367,2.377,505,3.08]],["t/292",[0,0.428,1,0.423,2,0.281,3,0.437,4,0.148,166,0.895,258,0.984,8419,3.971]],["d/292",[]],["k/292",[]],["b/292",[4,0.33,19,7.436,43,2.337,120,2.71,147,2.539,155,2.822,163,1.554,202,2.86,204,4.284,205,6.677,206,5.76,225,1.583,238,2.406,254,4.811,256,2.195,257,2.326,258,1.774,279,2.892,281,2.52,286,5.408,303,3.264,304,3.322,337,2.145,352,3.551,359,1.956,364,2.576,367,1.976,505,2.561,567,3.427,615,3.827,1102,7.014,1108,4.082,1776,6.01,1990,4.455,2073,4.082,2164,4.19,3863,7.436,6692,8.001,8417,9.077,8420,8.858,8421,8.858,8422,8.858,8423,8.858,8424,10.05,8425,8.858,8426,8.858,8427,8.858,8428,7.16,8429,7.16,8430,7.16,8431,7.16,8432,7.16,8433,7.16,8434,7.16,8435,7.16,8436,7.16,8437,7.16,8438,7.16]]],"invertedIndex":[["",{"_index":279,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1004,1],[1153,1],[1389,1],[1674,1],[1824,1],[2421,1],[2623,1],[3481,1],[3589,1],[3661,1],[4703,3],[4934,1],[5505,1],[6071,1],[6424,1],[6874,1],[7244,1],[7621,1],[8071,1],[8550,1],[9121,1],[9689,1],[9838,3],[10431,1],[10813,1],[11424,1],[11626,1],[11708,1],[11790,1],[11893,1],[11979,1],[12200,1],[12558,1],[12944,1],[13163,1],[13485,1],[14303,1],[15597,1],[15957,1],[16440,1]]},"68":{"position":[[1109,3],[2892,1],[2965,1],[2974,1],[3042,1],[3106,1],[3221,1],[3310,1],[3405,1],[3539,1],[3673,1],[3757,1],[4021,1],[4122,1],[4304,1],[4403,1],[4600,1],[4724,1],[9374,2],[9488,1],[9650,2],[9684,1],[9707,1],[9743,1],[9835,1],[9853,2],[9880,2],[9890,1],[9936,2],[10003,2],[10028,2],[10040,2],[10060,2],[10070,1],[10146,2],[10158,2],[10268,1],[10311,2],[10360,2],[10396,2],[10439,1],[10506,2],[10526,1],[10587,1],[10592,2],[10616,2],[10666,1],[10762,2],[10906,2],[10944,1],[11010,1],[11077,1],[11142,1],[11202,1],[11268,1],[11326,1],[11368,1],[11434,2],[11472,1],[11535,1],[11586,1],[11629,1],[11686,1],[11739,1],[11791,2],[11829,1],[11852,1],[11892,1],[12007,2],[12045,1],[12096,1],[12146,1],[12204,1],[12262,1],[12344,2],[12368,2],[12467,2],[12529,1],[12547,2],[12574,2],[12584,1],[12630,2],[12697,2],[12722,2],[12734,2],[12754,2],[12764,1],[12840,2],[12852,2],[12878,2],[12968,2],[12980,2],[13032,1],[13070,1],[13193,1],[13260,1],[13346,1],[13379,2],[13450,2],[13513,2],[13525,2],[13569,1],[13626,2],[13655,2],[13774,2],[13812,1],[13878,1],[13944,1],[14009,1],[14069,1],[14135,1],[14193,1],[14235,1],[14301,2],[14339,1],[14402,1],[14453,1],[14496,1],[14553,1],[14606,1],[14658,2],[14696,1],[14719,1],[14759,1],[14874,2],[14912,1],[14963,1],[15013,1],[15071,1],[15129,1],[15211,2],[15235,2],[15334,2],[15396,1],[15414,2],[15441,2],[15451,1],[15497,2],[15564,2],[15589,2],[15601,2],[15621,2],[15631,1],[15707,2],[15719,2],[15745,2],[15835,2],[15847,2],[15901,1],[15939,1],[16062,1],[16148,2],[16220,2],[16284,2],[16296,2],[16340,1],[16397,2],[16426,2],[16869,1],[17521,1],[17805,1],[18021,1],[18657,1],[18899,1],[21421,1],[21688,1],[21896,1],[22120,1],[22325,1],[22817,1],[23178,1],[23258,1],[23281,1],[23433,1],[23807,1],[23893,1],[23916,1],[24071,1],[24417,1],[24503,1],[24526,1],[24609,1],[24673,1],[25093,1],[25183,1],[25206,1],[25676,1],[25776,1],[25799,1],[25948,1],[26144,1],[26232,1],[26255,1],[26576,1],[26666,1],[26689,1],[26774,1],[26836,1],[27123,1],[27203,1],[27226,1],[27462,1],[27770,1],[27854,1],[27877,1],[28113,1],[28451,1],[28561,1],[28584,1],[28727,1],[29254,1],[29336,1],[29359,1],[29661,1],[29751,1],[30007,1],[30175,1],[30265,1],[30376,1],[30438,1],[30598,1],[30692,1],[30824,2],[31088,1]]},"69":{"position":[[1027,3],[2357,1],[2438,1],[2447,1],[2523,1],[2587,1],[2675,1],[2772,1],[2914,1],[3036,1],[3393,1],[3409,1],[3542,1],[3558,1],[3691,1],[3707,1],[3819,1],[3835,1],[3968,1],[3984,1],[4041,1],[4058,1],[4069,1],[4159,1],[4176,1],[4187,1],[4350,1],[4367,1],[4378,1],[4808,1],[4825,1],[4836,1],[4929,1],[4946,1],[4957,1],[5050,1],[5067,1],[5078,1],[5168,1],[5185,1],[5196,1],[5415,1],[5432,1],[5443,1],[5746,1],[5763,1],[5774,1],[5867,1],[5884,1],[5895,1],[5988,1],[6005,1],[6249,1],[6266,1],[6376,1],[6669,1],[6856,1],[7043,1],[7270,1],[7507,1],[8333,1],[8543,1],[8641,1],[8764,1],[8878,1],[9017,1],[9131,1],[9270,1],[9384,1],[9523,1],[9637,1],[9769,1],[10125,1],[10135,1],[11602,1],[11612,1],[13161,2],[13279,1],[13437,2],[13463,1],[13486,1],[13533,1],[13561,1],[13607,1],[13635,1],[13663,1],[13717,1],[13735,2],[13762,2],[13772,1],[13818,2],[13885,2],[13913,2],[13933,2],[13943,1],[14022,2],[14132,1],[14175,2],[14224,2],[14260,2],[14303,1],[14370,2],[14390,1],[14451,1],[14456,2],[14480,2],[14530,1],[14956,1],[15005,1],[15073,1],[15140,1],[15158,2],[15184,2],[15194,1],[15240,2],[15307,2],[15335,2],[15369,2],[15379,1],[15458,2],[15501,2],[15550,2],[15640,2],[15665,1],[15708,1],[15717,2],[15751,2],[15757,1],[15762,2],[15802,2],[15896,1],[16001,1],[16322,2],[16328,2],[16380,2],[16406,1],[16465,1],[16494,1],[16533,2],[16578,2],[16604,1],[16627,1],[16654,2],[16724,2],[16750,1],[16777,2],[16822,2],[16846,1],[16861,1],[16887,1],[16902,1],[16906,1],[16914,2],[16973,2],[16998,1],[17048,1],[17097,2],[17142,2],[17168,1],[17183,1],[17211,1],[17226,1],[17230,1],[17284,1],[17329,2],[17350,1],[17359,2],[17407,2],[17439,1],[17465,2],[17487,2],[17533,1],[17574,2],[17595,1],[17604,2],[17636,2],[17642,1],[17655,1],[17664,2],[17667,3],[17671,2],[17738,1],[17756,2],[17779,2],[17789,1],[17854,2],[17866,2],[17928,2],[17974,1],[17999,2],[18078,2],[18088,1],[18172,2],[18184,2],[18233,2],[18252,1],[18261,2],[18277,2],[18291,1],[18352,2],[18368,2],[18429,2],[18491,2],[18946,1],[20046,1],[20778,1],[21166,1],[21287,1],[21503,1],[22186,1],[22623,1],[22854,1],[23816,1],[28034,1],[28394,1],[28516,1],[28645,1],[28776,1],[28958,1],[28974,1],[29041,1],[29057,1],[29130,1],[29146,1],[29213,1],[29229,1],[29266,1],[29346,1],[29369,1],[29521,1],[30236,1],[30322,1],[30345,1],[30500,1],[30844,1],[30930,1],[30953,1],[31036,1],[31100,1],[31645,1],[31735,1],[31758,1],[32664,1],[32764,1],[32787,1],[32936,1],[33139,1],[33227,1],[33250,1],[33933,1],[34023,1],[34046,1],[34131,1],[34193,1],[34523,1],[34603,1],[34626,1],[34862,1],[35170,1],[35254,1],[35277,1],[35513,1],[35851,1],[35933,1],[35956,1],[36258,1],[36348,1],[36604,1],[36783,1],[36873,1],[36984,1],[37046,1],[37225,1],[37319,1],[37451,2],[37715,1]]},"70":{"position":[[1711,1],[1913,1],[2226,1],[3775,1],[10322,1],[10547,1],[10814,1],[11031,1],[11262,1],[11541,1],[11856,1],[12080,1],[12332,1],[12572,1],[12891,1],[13226,1],[13691,1],[13788,1],[13995,1],[14090,1],[14259,1],[14425,1],[14534,1],[14562,1],[14759,1],[14870,1],[14898,1],[15096,1],[15205,1],[15233,1],[15304,1],[15415,1],[15443,1],[15515,1],[15624,1],[15806,1],[15879,1],[15990,1],[16166,1],[16237,1],[16352,1],[16474,1],[16589,1],[16711,1],[16834,1],[17022,1],[17099,1],[17204,1],[17376,1],[17435,1],[17540,1],[17822,1],[17917,1],[18034,1],[18062,1]]},"71":{"position":[[1009,1],[1029,2],[7852,2],[7957,1],[8069,1],[8184,1],[8261,2],[8792,2],[8832,2],[8869,2],[8990,2],[8996,2],[9032,2],[14602,1],[14689,1],[14823,1],[15029,1],[15114,1],[15248,1],[15454,1],[15563,1],[15697,1],[15902,1],[16009,1],[16143,1],[16349,1],[16458,1],[16592,1],[16797,1],[16904,1],[17038,1],[17244,1],[17357,1],[17491,1],[17696,1],[17807,1],[17941,1],[18147,1],[18256,1],[18390,1],[18595,1],[18702,1],[18836,1],[19042,1],[19151,1],[19285,1],[19490,1],[19597,1],[19731,1],[19937,1],[20048,1],[20182,1],[20387,1],[20496,1],[20630,1],[20836,1],[20947,1],[21081,1],[21286,1],[21395,1],[21529,1],[21735,1],[21844,1],[21978,1],[22183,1],[22290,1],[22424,1],[22630,1],[22741,1],[22875,1],[23080,1],[23189,1],[23323,1],[23529,1],[23638,1],[23772,1],[23977,1],[24084,1],[24218,1],[24424,1],[24535,1],[24669,1],[24874,1],[24983,1],[25117,1],[25323,1],[25434,1],[25568,1],[25773,1],[25882,1],[26016,1],[26222,1],[26331,1],[26465,1],[26670,1],[26777,1],[26911,1],[27117,1],[27228,1],[27362,1],[27567,1],[27676,1],[27810,1],[28016,1],[28099,1],[28238,1],[28445,1],[28526,1],[28665,1],[28872,1],[29032,1],[29109,1],[29223,1],[29306,1],[29561,1],[29638,1],[29824,1],[29913,1],[30047,1],[30239,1],[30442,1],[30642,1],[30824,1],[30949,1],[31257,1],[31447,1],[31607,1],[31684,1],[31798,1],[31881,1],[32136,1],[32213,1],[32399,1],[32488,1],[32622,1],[32814,1],[33017,1],[33217,1],[33399,1],[33524,1],[33832,1],[34053,1],[35624,1],[35809,1],[36056,1],[36276,1],[37027,1],[37801,1],[37889,1],[38242,1],[38325,1],[38353,1],[38466,1],[38547,1],[38575,1],[38637,1],[38716,1],[38744,1],[38811,1],[38892,1],[38920,1],[39033,1],[39118,1],[39146,1],[39208,1],[39285,1],[39313,1],[39380,1],[39469,1],[39497,1],[39552,1],[39623,1],[39651,1],[39734,1],[39815,1],[40390,1],[40477,1],[40505,1],[40649,1],[40724,1],[40752,1],[40835,1],[40907,1],[40938,1],[41420,1],[41519,1],[41809,1],[41909,1],[42089,1],[42661,1],[42759,1],[42937,1],[43511,1],[43599,1],[43625,1],[43942,1],[44031,1],[44196,1],[45296,1],[45466,1],[45475,1],[46298,1],[46392,1],[46574,1],[47008,1],[47118,1],[47146,1],[47269,1],[47359,1],[47390,1],[47402,1],[47559,1],[47695,1],[47831,1],[48024,1]]},"72":{"position":[[265,1]]},"74":{"position":[[833,1],[1290,1],[1684,1],[2084,1],[2391,1],[2496,1],[2660,1],[2792,1],[2852,1],[3098,1],[3842,3],[3945,1],[4385,1],[4851,1],[5273,1],[5537,1],[6017,1],[6393,1],[6542,3],[7135,1],[7337,1],[7419,1],[7506,1],[7592,1],[7865,1],[8633,1],[8977,1],[9399,1],[9616,1]]},"75":{"position":[[685,3],[2788,1],[2938,1],[3041,1],[3233,1],[3420,1],[3574,1],[3592,1],[3837,1],[3855,1],[3942,1],[3950,1],[3959,1],[4037,1],[4045,1],[4054,1],[4252,1],[4260,1],[4269,1],[4459,1],[4467,1],[4476,1],[4569,1],[4577,1],[4586,1],[4668,1],[4676,1],[4685,1],[4764,1],[4772,1],[4781,1],[4979,1],[4987,1],[4996,1],[5186,1],[5194,1],[5203,1],[5296,1],[5304,1],[5313,1],[5395,1],[5403,1],[5412,1],[5491,1],[5499,1],[5508,1],[5706,1],[5714,1],[5723,1],[5913,1],[5921,1],[5930,1],[6023,1],[6031,1],[6040,1],[6122,1],[6130,1],[6139,1],[6218,1],[6226,1],[6235,1],[6433,1],[6441,1],[6450,1],[6640,1],[6648,1],[6657,1],[6750,1],[6758,1],[6767,1],[6849,1],[6857,1],[6866,1],[6945,1],[6953,1],[6962,1],[7160,1],[7168,1],[7177,1],[7367,1],[7375,1],[7384,1],[7477,1],[7485,1],[7494,1],[7576,1],[7584,1],[7593,1],[7672,1],[7680,1],[7689,1],[7887,1],[7895,1],[7904,1],[8094,1],[8102,1],[8111,1],[8204,1],[8212,1],[8221,1],[8303,1],[8311,1],[8320,1],[8399,1],[8407,1],[8416,1],[8614,1],[8622,1],[8631,1],[8821,1],[8829,1],[8838,1],[8931,1],[8939,1],[8948,1],[9030,1],[9038,1],[9047,1],[9126,1],[9134,1],[9143,1],[9341,1],[9349,1],[9358,1],[9548,1],[9556,1],[9565,1],[9658,1],[9666,1],[9675,1],[9757,1],[9765,1],[9906,1],[9929,1],[10065,1],[10088,1],[10224,1],[10247,1],[10382,1],[10405,1],[10540,1],[10563,1],[10698,1],[10721,1],[11565,1],[11648,1],[11663,1],[11741,1],[11808,1],[11897,1],[11909,1],[12019,1],[12031,1],[12159,1],[12171,1],[12286,1],[12298,1],[12401,1],[12410,1],[12420,1],[12508,1],[12517,1],[12527,1],[12664,1],[12673,1],[12683,1],[12820,1],[12829,1],[12839,1],[12988,1],[12997,1],[13004,1],[13089,1],[13098,1],[13105,1],[13242,1],[13251,1],[13258,1],[13394,1],[13403,1],[13410,1],[13559,1],[13568,1],[13720,1],[14051,1],[14270,1],[15301,1],[15318,1],[15337,1],[15354,1],[15359,1],[15616,1],[17943,1],[17972,1],[17994,1],[18031,1],[18057,1],[18078,1],[18710,2],[18716,1],[18729,1],[18738,1],[18751,2],[18804,2],[18830,1],[18867,1],[18913,1],[18944,2],[18960,1],[18969,1],[18982,2],[19058,2],[19089,1],[19131,1],[19164,1],[19176,2],[19199,1],[19208,1],[19221,2],[19313,2],[19340,1],[19374,2],[19489,1],[19584,2],[19611,1],[19642,2],[19734,2],[19767,1],[19793,1],[20397,2],[20473,2],[20511,1],[20564,1],[20623,1],[20681,1],[20740,1],[20764,1],[25429,2],[25435,2],[25537,2],[25543,1],[25556,1],[25565,1],[25590,1],[25621,1],[25667,1],[25697,2],[25713,1],[25722,1],[25752,1],[25789,1],[25822,1],[25833,2],[25856,1],[25865,1],[25897,1],[25950,1],[26000,1],[26037,1],[26063,1],[26068,2],[26074,2],[26143,2],[26149,1],[26162,1],[26171,1],[26196,1],[26229,1],[26252,2],[26314,1],[26344,2],[26360,1],[26369,1],[26399,1],[26441,1],[26474,1],[26485,2],[26508,1],[26517,1],[26549,1],[26602,1],[26649,1],[26674,1],[26679,3],[27001,1],[27062,1],[27102,1],[27142,2],[27169,2],[27179,1],[27192,2],[27215,2],[27303,2],[27319,2],[27347,1],[27387,2],[27415,2],[27425,1],[27438,2],[27454,2],[27482,1],[27541,2],[27558,2],[27618,2],[27636,2],[27646,1],[27659,2],[27679,2],[27706,1],[27739,2],[27779,2],[27793,2],[27809,2],[27837,1],[27862,1],[27889,1],[27950,2],[27979,2],[27989,1],[28039,2],[28106,2],[28131,2],[28143,2],[28182,2],[28220,1],[28273,1],[28332,1],[28390,1],[28430,1],[28438,2],[28479,2],[28501,1],[28508,1],[28521,1],[28553,1],[28571,1],[28576,2],[28600,2],[28610,1],[28697,2],[28709,2],[28747,3],[29135,1],[29185,2],[29252,2],[29277,2],[29289,2],[29325,2],[29335,1],[29459,2],[29471,2],[29547,2],[29585,1],[29638,1],[29697,1],[29755,1],[29814,1],[29838,1],[29867,2],[29908,2],[29930,1],[29937,1],[29971,1],[30003,1],[30021,1],[30026,2],[30050,2],[30060,1],[30147,2],[30159,2],[30212,3],[30950,1],[31101,1],[31689,1],[31855,1],[32032,1],[32202,1],[32403,1],[33011,1],[34407,1],[34531,1],[34645,1],[34658,1],[34781,1],[34900,1],[35029,1],[35323,1],[35474,1],[35554,1],[35738,1],[35833,2],[35862,2],[35872,1],[36283,1],[36365,1],[36635,1],[36717,1],[36978,1],[37054,2],[37078,2],[37088,1],[37175,2],[37633,1],[37713,1],[37974,1],[38364,1],[38464,1],[38744,1],[38839,2],[38875,2],[38885,1],[39009,2],[39264,1],[39350,1],[39530,1],[39771,1],[39865,1],[39997,2],[40261,1]]},"76":{"position":[[1064,3],[2122,1],[2204,1],[2213,1],[2290,1],[2357,1],[2434,1],[2608,1],[2713,1],[2864,1],[2939,1],[3110,1],[3247,1],[3384,1],[3491,1],[3597,1],[3704,1],[3811,1],[3913,1],[4020,1],[4232,1],[4330,1],[4455,1],[4557,1],[4686,1],[4788,1],[4917,1],[5021,1],[5152,1],[5256,1],[7307,1],[7325,2],[7352,2],[7362,1],[7411,2],[7478,2],[7564,2],[7584,2],[7690,2],[7782,1],[7822,2],[7843,1],[7852,2],[7908,2],[7914,2],[8148,1],[8166,2],[8193,2],[8203,1],[8252,2],[8319,2],[8347,2],[8367,2],[8413,2],[8443,2],[8488,2],[8559,2],[8759,2],[8840,1],[8874,1],[8930,1],[8970,2],[8991,1],[9000,2],[9051,2],[9156,1],[9185,2],[9233,2],[9263,1],[9284,1],[9307,1],[9353,1],[9362,1],[9393,2],[9414,1],[9423,2],[9516,2],[9605,1],[9623,2],[9650,2],[9660,1],[9709,2],[9776,2],[9862,2],[9923,2],[9970,2],[10002,2],[10347,1],[10365,2],[10392,2],[10402,1],[10451,2],[10518,2],[10546,2],[10566,2],[10612,2],[10701,1],[10790,1],[10904,1],[10941,1],[10947,1],[11013,2],[11042,1],[11098,2],[11129,2],[11242,1],[11285,1],[11346,2],[11375,1],[11422,1],[11458,1],[11491,2],[11603,1],[11675,2],[11685,1],[12051,1],[12251,1],[13568,1],[13907,1],[14177,1],[14798,1],[15017,1],[15238,1],[15476,1],[15556,1],[15920,1],[16008,1],[16190,1],[16402,2],[16491,1],[16580,1],[16694,1],[16731,1],[16737,1],[16803,2],[16832,1],[16888,2],[16919,2],[17032,1],[17075,1],[17136,2],[17165,1],[17212,1],[17248,1],[17281,2],[17393,1],[17465,2],[17475,1],[17842,1],[17936,1],[18204,1],[18474,1],[18554,1],[18858,1],[18938,1],[19075,2],[19095,2],[19302,1],[19384,1],[19589,2],[19650,2],[19864,1],[19948,1],[20155,2],[20187,2],[20403,1],[20487,1],[20667,1],[20811,2],[20862,2],[20967,1],[21207,1],[21295,1],[21479,1],[21628,2],[21699,2],[21997,1],[22075,1],[22214,2],[22244,2],[22451,1],[22529,1],[22713,1],[23168,2],[23195,2],[23205,1],[23254,2],[23321,2],[23921,1],[24015,1],[24186,1],[24415,1],[24511,1],[24682,1],[24913,1],[25005,1],[25141,2],[25407,1]]},"77":{"position":[[1685,1],[1756,1],[1769,1],[3852,3],[3922,1],[3944,1],[3999,1],[4004,1],[4029,1],[4067,1],[4100,1],[4108,2],[4114,2],[4155,2],[4204,2],[4229,2],[4389,3],[4396,2],[4437,2],[4486,2],[4505,2],[4511,2],[4560,2],[4602,2],[4683,2],[4689,2],[4707,2],[4871,1],[5001,1],[5159,1],[5235,1],[5415,1],[5784,1],[5862,1],[6155,1],[6241,1],[6444,1],[6513,1],[7071,1],[7175,1],[7284,1],[7353,1],[7746,1],[7836,1],[8005,1],[8635,1],[8727,1]]},"78":{"position":[[657,1],[766,1],[1150,1],[1207,1],[1851,1],[2171,1],[2481,1],[2852,1],[3160,1],[3412,1],[3865,1],[4067,1],[4149,1],[4236,1],[4322,1],[4573,1],[4753,1],[4759,1],[4763,1],[4812,1],[4819,1],[4825,1],[4880,1],[4887,1],[4893,1],[4942,1],[4949,1],[4956,1],[4963,1],[4970,1],[4977,1],[4984,1],[4991,1],[4997,1],[5003,1],[5009,1],[5015,1],[5021,1],[5025,1],[5076,1],[5083,1],[5090,1],[5097,1],[5104,1],[5111,1],[5118,1],[5125,1],[5132,1],[5139,1],[5146,1],[5153,1],[5160,1],[5167,1],[5173,1],[5179,1],[5185,1],[5197,1],[5465,1]]},"79":{"position":[[2044,1],[2131,1],[2142,1],[7097,1],[7932,2],[7990,2],[8010,1],[8065,2],[8132,2],[8157,2],[8169,2],[8226,2],[8236,1],[8295,2],[8932,1],[9131,1],[9232,1],[9397,1],[9430,1],[9503,1],[9719,1],[10941,1],[10977,1],[11156,1],[11334,1],[11529,1],[11936,1],[12031,1],[12222,1],[12437,1],[12710,1],[13457,1],[13819,1],[14430,1],[15023,1],[15450,1],[15858,1],[16122,1],[16358,1],[16440,1],[16634,1],[17042,1],[17138,1],[17263,1],[17323,1],[17746,1],[17830,1],[18194,1],[18356,1],[18456,1],[18643,1],[19105,1],[19203,1],[19601,1],[19687,1],[20059,1],[20147,1],[20545,1],[20633,1],[20829,1],[21147,1],[21231,1],[21609,1],[21695,1],[22059,1]]},"80":{"position":[[4127,1],[4216,1],[4225,1],[5163,2],[5318,2],[5358,1],[5419,1],[5474,1],[5529,1],[5584,1],[5639,1],[5694,1],[5749,1],[5804,1],[5859,1],[5914,1],[5969,1],[6024,1],[6079,1],[6134,1],[6189,1],[6244,1],[6299,1],[6354,1],[6409,1],[6464,1],[6519,1],[6589,1],[6644,1],[6699,1],[6754,1],[6809,1],[6864,1],[6919,1],[6974,1],[7029,1],[7084,1],[7139,1],[7194,1],[7249,1],[7304,1],[7359,1],[7414,1],[7469,1],[7524,1],[7579,1],[7634,1],[7689,1],[7755,1],[7773,2],[7854,2],[7864,1],[7906,2],[7973,2],[8001,2],[8079,2],[8089,1],[8272,1],[8488,1],[8564,1],[8744,1],[9258,1],[9336,1],[9639,1],[9749,1],[9934,1],[10252,1],[10334,1],[10595,1],[10847,1],[10933,1],[11112,1],[11347,1],[11427,1],[11655,1],[11737,1]]},"81":{"position":[[286,1],[516,1],[1217,1],[1558,1],[1837,1],[2242,1],[2647,1],[2989,1],[3256,1],[3530,1],[3732,1],[3814,1],[3901,1],[3987,1],[4238,1],[4413,1]]},"82":{"position":[[640,1],[813,1],[1003,1],[1575,1],[1602,1],[1686,1],[1878,1],[2074,1],[2622,3],[2791,1],[3296,1],[3698,1],[4103,1],[4280,3],[4934,1],[5338,1],[5567,1],[5658,1],[5754,1],[5840,1],[6183,1],[6552,1]]},"83":{"position":[[1372,3],[1549,2],[5057,1],[5143,1],[5152,1],[5233,1],[5300,1],[5392,1],[6183,1],[6836,1],[6988,1],[7006,1],[7014,1],[7133,1],[7151,1],[7159,1],[7324,1],[7342,1],[7350,1],[7523,1],[7541,1],[7549,1],[7688,1],[7706,1],[7714,1],[7833,1],[7851,1],[7859,1],[8024,1],[8042,1],[8050,1],[8223,1],[8241,1],[8249,1],[8388,1],[8406,1],[8507,1],[8661,1],[8752,1],[8892,1],[8983,1],[9122,1],[9339,1],[9560,1],[10068,1],[10158,1],[10250,1],[10356,1],[10462,1],[10524,1],[10540,1],[10556,1],[10573,1],[10633,1],[10695,1],[10711,1],[10727,1],[10744,1],[10809,1],[11047,1],[11150,1],[11333,1],[11426,1],[11558,1],[11651,1],[11783,1],[11890,1],[12065,1],[12166,1],[12314,1],[12331,1],[12487,1],[12504,1],[12688,1],[12705,1],[12859,1],[12876,1],[13030,1],[13044,1],[13458,1],[13472,1],[13693,1],[13707,1],[13928,1],[13940,1],[14140,1],[14152,1],[14356,1],[14377,1],[14718,1],[14739,1],[14847,1],[14868,1],[15096,1],[20576,1],[20594,2],[20621,2],[20631,1],[20679,2],[20746,2],[20774,2],[20794,2],[20898,2],[20990,1],[21030,2],[21051,1],[21060,2],[21116,2],[21122,2],[21328,1],[21346,2],[21456,2],[21502,2],[21529,2],[21539,1],[21587,2],[21654,2],[21682,2],[21702,2],[21747,2],[21777,2],[21821,2],[21892,2],[22089,2],[22170,1],[22204,1],[22260,1],[22301,2],[22319,2],[22345,2],[22367,1],[22376,2],[22427,2],[22531,1],[22560,2],[22664,1],[22695,2],[22712,2],[22730,1],[22750,1],[22763,1],[22776,1],[22805,1],[22815,1],[22838,1],[22884,1],[22893,1],[22924,2],[22945,1],[22954,2],[23047,2],[23135,1],[23153,2],[23180,2],[23190,1],[23238,2],[23305,2],[23333,2],[23394,2],[23440,2],[23472,2],[23812,1],[23830,2],[23857,2],[23867,1],[23915,2],[23982,2],[24010,2],[24030,2],[24075,2],[24158,1],[24229,1],[24344,1],[24381,1],[24387,1],[24452,2],[24481,1],[24529,2],[24560,2],[24673,1],[24716,1],[24777,2],[24806,1],[24853,1],[24888,1],[24920,2],[24950,2],[24960,1],[25357,1],[25375,2],[25402,2],[25412,1],[25460,2],[25527,2],[25555,2],[25575,2],[25620,2],[25655,2],[25762,1],[25787,2],[25901,1],[25914,1],[25998,2],[26031,1],[26086,1],[26128,1],[26178,2],[26212,2],[26222,1],[26467,2],[26579,1],[26656,1],[26674,2],[26701,2],[26711,1],[26757,2],[26824,2],[26852,2],[26872,2],[26882,1],[26958,2],[27013,2],[27128,1],[27232,2],[27242,1],[27290,2],[27401,1],[27442,2],[28182,1],[28474,1],[28643,1],[28841,1],[30168,1],[31686,1],[31877,1],[32615,1],[32973,1],[33164,1],[37794,1],[38581,1],[39413,1],[39841,1],[40377,1],[40819,1],[41194,1],[42011,1],[42587,1],[42956,1],[43167,1],[43455,1],[43529,1],[43603,1],[43677,1],[43751,1],[43825,1],[43899,1],[43973,1],[44047,1],[44123,1],[44199,1],[44275,1],[44351,1],[44427,1],[44503,1],[44579,1],[44655,1],[44731,1],[44807,1],[44883,1],[44959,1],[45035,1],[45111,1],[45187,1],[45263,1],[45339,1],[45415,1],[45491,1],[45567,1],[45643,1],[45719,1],[45828,1],[46209,1],[46285,1],[46469,1],[47607,1],[47683,1],[47965,1],[48043,1],[48327,1],[48405,1],[48841,1],[48921,1],[49283,1],[49365,1],[49828,1],[49914,1],[50096,1],[50844,1],[50936,1],[51204,1],[52065,1],[52147,1],[52327,1],[52677,1],[52763,1],[52947,1],[53280,1],[53368,1],[53538,1],[53964,1],[54056,1],[54226,1],[54459,1],[54553,1],[54723,1],[54958,1],[55052,1],[55341,1],[55591,1],[55693,1],[56069,1],[56641,1],[56731,1],[56867,2],[57133,1],[57586,1],[57664,1],[57994,1],[58110,1],[58122,1]]},"84":{"position":[[891,3],[2557,1],[2630,1],[2639,1],[2707,1],[2774,1],[2840,1],[3014,1],[3287,1],[3302,1],[3317,1],[3426,1],[3579,1],[3778,1],[3990,1],[4093,1],[4230,1],[6107,1],[6125,2],[6152,2],[6162,1],[6208,2],[6275,2],[6300,2],[6312,2],[6332,2],[6435,2],[6527,1],[6567,2],[6588,1],[6597,2],[6653,2],[6659,2],[6824,1],[6842,2],[6869,2],[6879,1],[6925,2],[6992,2],[7017,2],[7029,2],[7049,2],[7093,2],[7123,2],[7166,2],[7237,2],[7616,1],[7634,2],[7661,2],[7671,1],[7717,2],[7784,2],[7809,2],[7821,2],[7841,2],[7885,2],[7974,1],[8062,1],[8175,1],[8181,1],[8247,2],[8276,1],[8335,2],[8448,1],[8491,1],[8552,2],[8581,1],[8628,1],[8663,1],[8695,2],[8725,2],[8735,1],[8806,2],[8989,1],[9187,1],[9355,1],[9623,1],[9892,1],[9970,1],[10334,1],[10420,1],[10602,1],[11406,1],[11498,1],[11766,1],[11998,1],[12076,1],[12336,1],[12414,1],[12702,1],[12782,1],[13074,1],[13156,1],[13450,1],[13532,1],[13712,1],[14057,1],[14143,1],[14327,1],[14679,1],[14755,1],[15046,1],[15122,1],[15306,1],[16428,1],[16518,1],[16654,2],[16920,1]]},"85":{"position":[[704,1],[874,1],[969,1],[1143,1],[1838,1],[1947,1],[2131,1],[2197,1],[2289,1],[2451,1],[2644,1],[2855,1],[3046,1],[3814,3],[4073,1],[4514,1],[5091,1],[5676,1],[5998,1],[6539,1],[6709,3],[7308,1],[7722,1],[8065,1],[8288,1],[8377,1],[8471,1],[8557,1],[8829,1],[9062,1],[9314,1]]},"86":{"position":[[625,1],[793,1],[954,1],[1977,1],[2043,1],[2135,1],[2296,1],[2505,1],[2695,1],[3232,3],[3395,1],[3812,1],[4264,1],[4723,1],[4890,3],[5456,1],[5774,1],[5994,1],[6082,1],[6175,1],[6261,1],[6530,1],[6758,1],[7006,1]]},"87":{"position":[[685,1],[1075,1],[1374,1],[1662,1],[1916,1],[2277,1],[2531,1],[2810,1],[3042,1],[3302,1],[3686,1],[4078,1],[4120,1],[4388,1],[4454,1],[4489,1],[4648,1],[4774,1],[4941,1],[5073,1],[6562,1],[6970,1],[7242,1],[7645,1],[8369,1],[8906,1],[9834,1],[10352,1],[10846,1],[11651,1],[12569,1],[13148,1],[13657,1],[13973,1],[14175,1],[14257,1],[14344,1],[14430,1],[14681,1],[17192,1],[18524,1],[18981,1],[19339,1],[19861,1]]},"88":{"position":[[7561,1],[7634,1],[7649,1],[7726,1],[7742,1],[7755,1],[7908,1],[7924,1],[7937,1],[8073,1],[8089,1],[8101,1],[8289,1],[8305,1],[8317,1],[8480,1],[8496,1],[8509,1],[8662,1],[8678,1],[8691,1],[8827,1],[8843,1],[8855,1],[9043,1],[9059,1],[9071,1],[9234,1],[9247,1],[9399,1],[9412,1],[9567,1],[9580,1],[9730,1],[9743,1],[9895,1],[9912,1],[10056,1],[10073,1],[10208,1],[10225,1],[10353,1],[10370,1],[10488,1],[10505,1],[10689,1],[10842,1],[11012,1],[11186,1],[11357,1],[11381,1],[11394,1],[11509,1],[11533,1],[11546,1],[11665,1],[11689,1],[11698,1],[11870,1],[11894,1],[11910,1],[12021,1],[12045,1],[12061,1],[12170,1],[12194,1],[12210,1],[12356,1],[12380,1],[12390,1],[12490,1],[12514,1],[12524,1],[12622,1],[12646,1],[12656,1],[12862,1],[12886,1],[12896,1],[13041,1],[13065,1],[13075,1],[13182,1],[13206,1],[13217,1],[13348,1],[13372,1],[13383,1],[13508,1],[13659,1],[22454,2],[22481,2],[22504,1],[22567,2],[22624,1],[22629,1],[22638,2],[22664,1],[22721,2],[22748,1],[22788,2],[22866,2],[22893,1],[22930,2],[22943,1],[23022,2],[23084,1],[23089,1],[23098,2],[23124,1],[23181,2],[23214,1],[23247,2],[23286,2],[23319,1],[23353,2],[23433,2],[23466,1],[23523,1],[23540,2],[23617,1],[23720,2],[23753,1],[23769,2],[23850,2],[23883,1],[23895,2],[23901,2],[23961,2],[23974,1],[24063,2],[24078,2],[24104,2],[24117,1],[24170,2],[24185,2],[24270,2],[24283,1],[24401,2],[24416,2],[24468,2],[24538,2],[24617,2],[24630,1],[24727,2],[24742,2],[24769,2],[24807,1],[24836,1],[24935,2],[24950,2],[24994,2],[25051,2],[25077,2],[25127,1],[25223,2],[25238,2],[25281,2],[25509,1],[25555,1],[25608,1],[25621,2],[25719,2],[25747,1],[25807,1],[25908,1],[25955,1],[26043,1],[26089,1],[26102,2],[26202,2],[26290,1],[26315,1],[26342,1],[26490,2],[26517,2],[26540,1],[26603,2],[26659,1],[26664,1],[26673,2],[26699,1],[26756,2],[26783,1],[26816,2],[26922,2],[26949,1],[26961,2],[27010,2],[27037,1],[27046,1],[27064,1],[27103,1],[27142,1],[27155,1],[27200,1],[27209,1],[27214,2],[27220,2],[27269,2],[27282,1],[27360,2],[27375,2],[27397,2],[27410,1],[27463,2],[27598,2],[27666,2],[27679,1],[27775,2],[27790,2],[27842,2],[27898,2],[27972,2],[27985,1],[28084,2],[28099,2],[28152,2],[28273,1],[28319,1],[28379,1],[28480,1],[28529,1],[28542,2],[28652,1],[28758,1],[28876,1],[28911,2],[28933,1],[28949,1],[29096,1],[29142,1],[29155,2],[29253,2],[29327,2],[29438,1],[29500,2],[29528,1],[29575,1],[29588,2],[29689,2],[29764,2],[29875,1],[29937,2],[29965,1],[29990,1],[30017,1],[30022,2],[30173,2],[30200,2],[30223,1],[30286,2],[30343,1],[30348,1],[30357,2],[30383,1],[30440,2],[30467,1],[30507,2],[30585,2],[30612,1],[30649,2],[30662,1],[30741,2],[30803,1],[30808,1],[30817,2],[30843,1],[30900,2],[30933,1],[30966,2],[31005,2],[31038,1],[31050,2],[31130,2],[31163,1],[31197,2],[31235,2],[31268,1],[31285,2],[31362,1],[31465,2],[31498,1],[31514,2],[31595,2],[31628,1],[31640,2],[31646,2],[31706,2],[31719,1],[31808,2],[31823,2],[31849,2],[31862,1],[31915,2],[31930,2],[31992,2],[32005,1],[32097,2],[32112,2],[32139,2],[32175,1],[32204,1],[32299,2],[32314,2],[32358,2],[32415,2],[32441,2],[32489,1],[32581,2],[32596,2],[32639,2],[32758,1],[32804,1],[32851,1],[32939,1],[32985,1],[32998,2],[33098,2],[33186,1],[33211,1],[33238,1],[33243,2],[33468,2],[33536,2],[33559,1],[33659,2],[33674,2],[33724,1],[33814,2],[33943,1],[33989,1],[34042,1],[34055,2],[34171,1],[34277,1],[34398,1],[34433,2],[34455,1],[34471,1],[34614,1],[34664,1],[34677,2],[34780,2],[34831,1],[34892,1],[34913,2],[34961,2],[35077,1],[35137,1],[35158,2],[35265,2],[35422,1],[35463,1],[35506,1],[35519,1],[35528,1],[35553,1],[35580,1],[35585,2],[35806,2],[35858,1],[35975,1],[36032,2],[36055,1],[36185,2],[36200,2],[36247,2],[36382,1],[36428,1],[36479,1],[36492,2],[36550,2],[36643,1],[36668,1],[36695,1],[36700,2],[36920,2],[36953,2],[37010,1],[37015,1],[37038,1],[37073,2],[37131,2],[37155,1],[37180,2],[37230,2],[37254,1],[37266,2],[37315,2],[37339,1],[37355,2],[37427,2],[37451,1],[37462,2],[37468,2],[37489,2],[37512,1],[37591,2],[37606,2],[37643,2],[37702,2],[37856,1],[37902,1],[37951,1],[37964,2],[38020,2],[38111,1],[38136,1],[38163,1],[38168,2],[38384,2],[38477,1],[38505,1],[38536,2],[38559,1],[38651,2],[38666,2],[38703,2],[38824,1],[38870,1],[38919,1],[38932,2],[39011,1],[39090,1],[39164,1],[39251,1],[39275,2],[39366,1],[39391,1],[39418,1],[39423,2],[40965,1],[41620,1],[42033,1],[42652,1],[44405,1],[44845,1],[45987,1],[46067,1],[47989,1],[48281,1],[48482,1],[48709,1],[49575,1],[50051,1],[50650,1],[51410,1],[51490,1],[51674,1],[52034,1],[52118,1],[52446,1],[52542,1],[52740,1],[53069,1],[53181,1],[53476,1],[53979,1],[54079,1],[54261,1],[54641,1],[54737,1],[54999,1],[55413,1],[55543,1],[55931,1],[56441,1],[56535,1],[56664,1],[56738,1],[57458,1],[57540,1],[57878,1],[58454,1],[58534,1],[58866,1],[59485,1],[59573,1],[59922,1],[60466,1],[60552,1],[60808,1],[61334,1],[61416,1]]},"89":{"position":[[425,3],[1880,1],[1973,1],[1981,1],[3431,1],[3487,1],[3512,3],[3519,2],[3544,2],[3588,1],[3593,1],[3617,1],[3652,1],[3702,1],[3733,1],[3785,1],[3832,1],[3859,1],[3887,1],[3908,2],[3914,2],[3951,2],[3971,1],[4066,2],[4078,2],[4112,2],[4122,1],[4198,2],[4219,2],[4250,1],[4259,2],[4282,2],[4288,2],[4374,1],[4762,1],[4798,1],[5023,1],[5131,1],[5333,1],[6084,1],[6196,1],[6633,1],[6747,1],[7187,1],[7309,1],[7459,2],[7732,1],[8180,1],[8290,1]]},"90":{"position":[[425,3],[1828,1],[1921,1],[1929,1],[2988,2],[3077,1],[3133,1],[3158,3],[3165,2],[3190,2],[3234,1],[3239,1],[3263,1],[3290,1],[3340,1],[3371,1],[3423,1],[3470,1],[3497,1],[3525,1],[3540,2],[3546,2],[3583,2],[3603,1],[3698,2],[3710,2],[3744,2],[3754,1],[3830,2],[3851,2],[3882,1],[3891,2],[3914,2],[3920,2],[4006,1],[4394,1],[4430,1],[4655,1],[4763,1],[4965,1],[5634,1],[5746,1],[6183,1],[6297,1],[6737,1],[6859,1],[7009,2],[7282,1],[7730,1],[7840,1]]},"91":{"position":[[429,3],[1881,1],[1975,1],[1983,1],[3513,1],[3569,1],[3594,3],[3601,2],[3626,2],[3685,1],[3690,1],[3713,1],[3739,1],[3770,2],[3814,1],[3819,1],[3843,1],[3878,1],[3928,1],[3959,1],[4011,1],[4058,1],[4085,1],[4133,1],[4161,1],[4177,2],[4183,2],[4220,2],[4240,1],[4336,2],[4348,2],[4382,2],[4392,1],[4469,2],[4490,2],[4521,1],[4530,2],[4553,2],[4559,2],[4774,1],[5161,1],[5197,1],[5400,1],[5680,1],[5846,1],[6201,1],[6311,1],[6513,1],[7255,1],[7369,1],[7798,1],[7914,1],[8346,1],[8470,1],[8620,2],[8893,1],[9341,1],[9453,1]]},"92":{"position":[[2367,1],[2911,1],[2990,1],[2999,1],[3073,1],[3140,1],[3270,1],[3381,1],[3506,1],[3746,1],[3857,1],[3982,1],[4221,1],[4244,1],[4326,1],[4349,1],[4431,1],[4454,1],[4536,1],[4559,1],[4641,1],[4664,1],[4746,1],[4769,1],[4851,1],[4874,1],[4956,1],[4979,1],[5061,1],[5170,1],[5269,1],[5393,1],[5513,1],[5654,1],[5677,1],[5759,1],[5782,1],[5864,1],[5887,1],[5969,1],[5992,1],[6074,1],[6097,1],[6179,1],[6202,1],[6284,1],[6307,1],[6389,1],[6412,1],[6494,1],[6603,1],[6702,1],[6826,1],[6946,1],[7082,1],[7091,1],[7180,1],[7189,1],[7287,1],[7296,1],[7389,1],[7416,1],[7522,1],[7549,1],[7784,1],[7810,1],[7926,1],[7935,1],[8024,1],[8033,1],[8131,1],[8140,1],[8233,1],[8260,1],[8366,1],[8393,1],[8628,1],[8654,1],[8770,1],[8779,1],[8868,1],[8877,1],[8975,1],[8984,1],[9077,1],[9104,1],[9210,1],[9237,1],[9472,1],[9498,1],[9614,1],[9623,1],[9712,1],[9721,1],[9819,1],[9828,1],[9921,1],[9948,1],[10054,1],[10081,1],[10316,1],[10342,1],[12751,3],[12810,2],[12869,1],[12957,2],[12967,1],[13019,2],[13086,2],[13114,2],[13212,2],[13222,1],[13303,2],[13336,2],[13346,1],[13450,2],[13476,2],[13486,1],[13714,3],[13739,2],[13794,2],[13804,1],[13856,2],[13923,2],[13951,2],[13982,1],[14082,2],[14092,1],[14221,1],[14257,1],[14266,2],[14306,2],[14337,2],[14354,1],[14373,1],[14401,1],[14422,1],[14441,1],[14468,1],[14477,2],[14546,2],[14560,1],[14660,2],[14669,2],[14745,2],[15021,3],[15081,2],[15162,2],[15172,1],[15214,2],[15281,2],[15309,2],[15387,2],[15397,1],[15521,2],[15576,2],[15586,1],[15660,2],[15761,2],[15771,1],[15878,2],[15949,2],[15959,1],[16050,2],[16169,1],[16180,2],[16190,1],[16906,1],[17111,1],[17652,1],[18001,1],[18561,1],[18806,1],[18914,1],[19015,1],[19118,1],[20398,1],[25339,1],[26112,1],[26620,1],[26956,1],[27285,1],[27743,1],[28178,1],[28354,1],[28556,1],[28638,1],[28760,1],[28819,1],[29118,1],[29202,1],[29514,1],[29602,1],[29724,1],[29783,1],[30345,1],[30431,1],[30683,1],[31309,1],[31417,1],[31620,1],[31685,1],[32336,1],[32448,1],[32712,1],[33328,1],[33416,1],[33619,1],[33684,1],[33966,1],[34056,1],[34316,1],[34679,1],[34785,1],[35134,1],[35949,1],[36059,1],[36258,1],[36324,1],[37141,1],[37255,1],[37604,1],[38531,1],[38621,1],[38820,1],[38886,1],[39392,1],[39484,1],[39822,1],[40276,1],[40291,1]]},"93":{"position":[[603,1],[900,1],[1189,1],[1245,1],[1306,1],[2850,1],[3303,1],[3540,1],[3831,1],[4166,1],[4583,1],[4981,1],[5319,1],[5663,1],[6251,1],[6639,1],[7209,1],[7573,1],[8013,1],[8224,1],[8309,1],[8399,1],[8485,1],[8643,1],[8909,1]]},"94":{"position":[[777,1],[933,1],[1133,1],[1514,1],[1592,1],[1628,1],[1784,1],[1981,1],[2159,1],[2518,3],[2669,1],[3108,1],[3506,1],[3655,3],[4315,1],[4658,1],[4860,1],[4942,1],[5029,1],[5115,1],[5366,1]]},"95":{"position":[[328,3],[1251,1],[1566,1],[1626,1],[1774,1],[1836,1],[1916,1],[2002,1],[2182,1],[2644,1],[2736,1],[2906,1],[3178,1],[3266,1],[3577,1],[3677,1],[3809,2],[4073,1],[4524,1],[4609,1]]},"96":{"position":[[345,3],[1017,1],[1378,1],[1444,1],[1547,1],[1653,1],[1859,1],[2364,1],[2472,1],[2819,1],[2939,1],[3097,2],[3374,1],[3838,1],[3943,1]]},"97":{"position":[[765,1],[1125,1],[1190,1],[1291,1],[1397,1],[1603,1],[2042,1],[2164,1],[2516,1],[2624,1]]},"98":{"position":[[324,3],[1191,1],[1504,1],[1564,1],[1712,1],[1774,1],[1854,1],[1938,1],[2118,1],[2577,1],[2667,1],[2837,1],[3109,1],[3195,1],[3505,1],[3603,1],[3735,2],[3999,1],[4450,1],[4533,1]]},"99":{"position":[[320,3],[1226,1],[1537,1],[1597,1],[1745,1],[1807,1],[1887,1],[1969,1],[2149,1],[2605,1],[2693,1],[2863,1],[3135,1],[3219,1],[3528,1],[3624,1],[3756,2],[4020,1],[4471,1],[4552,1]]},"100":{"position":[[339,3],[994,1],[1351,1],[1417,1],[1520,1],[1622,1],[1828,1],[2327,1],[2431,1],[2776,1],[2892,1],[3050,2],[3327,1],[3791,1],[3892,1]]},"101":{"position":[[773,1],[955,1],[1142,1],[1561,1],[1597,1],[1766,1],[1989,1],[2182,1],[2549,3],[2726,1],[3192,1],[3380,3],[4026,1],[4394,1],[4635,1],[4730,1],[4830,1],[4916,1]]},"102":{"position":[[744,1],[1100,1],[1165,1],[1266,1],[1368,1],[1574,1],[2007,1],[2125,1],[2477,1],[2581,1]]},"103":{"position":[[748,1],[930,1],[1117,1],[1356,1],[1458,1],[1856,1],[2322,1],[2712,1],[3080,1],[3321,1],[3416,1],[3516,1],[3602,1]]},"104":{"position":[[316,3],[1166,1],[1475,1],[1535,1],[1683,1],[1745,1],[1825,1],[1905,1],[2085,1],[2538,1],[2624,1],[2794,1],[3066,1],[3148,1],[3456,1],[3550,1],[3682,2],[3946,1],[4397,1],[4476,1]]},"105":{"position":[[1235,3],[2695,1],[4357,1],[4439,1],[4448,1],[4525,1],[4592,1],[4680,1],[5347,1],[5496,1],[5645,1],[5794,1],[5943,1],[6081,1],[6154,1],[6253,1],[6270,1],[6499,1],[6516,1],[6674,1],[6690,1],[6804,1],[6820,1],[6973,1],[7359,1],[7744,1],[7982,1],[8079,1],[8263,1],[8356,1],[8489,1],[8582,1],[8719,1],[8733,1],[8956,1],[8970,1],[9193,1],[9207,1],[9410,1],[9431,1],[9441,1],[9541,1],[9562,1],[9572,1],[9707,1],[9728,1],[9738,1],[9873,1],[9894,1],[9904,1],[10054,1],[10075,1],[10085,1],[10185,1],[10206,1],[10216,1],[10350,1],[10371,1],[10381,1],[10515,1],[10536,1],[10546,1],[10696,1],[12330,1],[12348,2],[12375,2],[12385,1],[12434,2],[12501,2],[12529,2],[12549,2],[12655,2],[12747,1],[12787,2],[12808,1],[12817,2],[12873,2],[12879,2],[13084,1],[13102,2],[13129,2],[13139,1],[13188,2],[13255,2],[13283,2],[13303,2],[13349,2],[13379,2],[13424,2],[13495,2],[13889,1],[13907,2],[13934,2],[13944,1],[13993,2],[14060,2],[14088,2],[14108,2],[14154,2],[14237,1],[14361,1],[14421,2],[14452,1],[14524,1],[14641,1],[14688,1],[14694,1],[14759,2],[14788,1],[14835,2],[14866,2],[14979,1],[15022,1],[15083,2],[15112,1],[15159,1],[15199,1],[15236,2],[15266,2],[15276,1],[15678,1],[15696,2],[15723,2],[15733,1],[15782,2],[15849,2],[15874,2],[15886,2],[15906,2],[15952,2],[15987,2],[16095,1],[16120,2],[16185,2],[16218,1],[16243,1],[16286,1],[16349,2],[16383,2],[16393,1],[16476,2],[17104,1],[17362,1],[17641,1],[17694,1],[17750,1],[17814,1],[17962,2],[18013,1],[18096,1],[18173,1],[19391,1],[20656,1],[20740,1],[21717,1],[21981,1],[23952,1],[24282,1],[24507,1],[24915,1],[25533,1],[25865,1],[26230,1],[26545,1],[27131,1],[27512,1],[27900,1],[27978,1],[28162,1],[28391,2],[28418,2],[28428,1],[28851,1],[28929,1],[29064,2],[29094,2],[29296,1],[29376,1],[29513,2],[29533,2],[29736,1],[29816,1],[30253,1],[30341,1],[30523,1],[30793,2],[30876,1],[31000,1],[31060,2],[31091,1],[31163,1],[31280,1],[31327,1],[31333,1],[31398,2],[31427,1],[31474,2],[31505,2],[31618,1],[31661,1],[31722,2],[31751,1],[31798,1],[31838,1],[31875,2],[31905,2],[31915,1],[32224,1],[32318,1],[32586,1],[33302,1],[33386,1],[33566,1],[33892,1],[33980,1],[34164,1],[34310,2],[34381,2],[34663,1],[34753,1],[34923,1],[35337,1],[35431,1],[35612,1],[35833,1],[35929,1],[36100,1],[36323,1],[36405,1],[36608,1],[36692,1],[36897,1],[36993,1],[37283,1],[37543,1],[37635,1],[37771,2],[38037,1],[38386,1],[38466,1]]},"106":{"position":[[606,3],[1471,1],[1550,1],[1565,1],[1637,1],[1714,1],[1873,1],[2511,1],[2653,1],[2671,1],[2860,1],[2878,1],[3015,1],[3033,1],[3168,1],[3186,1],[3321,1],[3339,1],[3474,1],[3492,1],[3627,1],[3645,1],[3780,1],[3798,1],[3933,1],[3951,1],[4086,1],[4104,1],[4239,1],[4257,1],[4392,1],[4410,1],[4545,1],[4563,1],[4700,1],[4718,1],[4855,1],[4873,1],[5010,1],[5028,1],[5165,1],[5183,1],[5320,1],[5338,1],[5475,1],[5493,1],[5630,1],[5648,1],[5785,1],[5803,1],[5940,1],[5958,1],[6095,1],[6117,1],[6291,1],[6313,1],[6466,1],[6488,1],[6641,1],[6663,1],[6816,1],[6838,1],[6991,1],[7013,1],[7166,1],[7188,1],[7341,1],[7363,1],[7516,1],[7538,1],[7691,1],[7713,1],[7866,1],[7888,1],[8041,1],[8063,1],[8218,1],[8237,1],[8405,1],[8424,1],[8558,1],[8577,1],[8711,1],[8730,1],[8864,1],[8883,1],[9017,1],[9181,1],[9299,1],[9416,1],[9612,1],[9750,1],[9892,1],[10042,1],[10200,1],[10406,1],[10596,1],[10824,1],[10984,1],[11212,1],[11360,1],[11564,1],[11668,1],[11808,1],[11910,1],[12048,1],[12152,1],[13713,1],[13731,2],[13757,2],[13767,1],[13809,2],[13876,2],[13901,2],[13917,1],[13980,1],[13989,2],[14056,2],[14081,2],[14454,1],[14659,1],[17413,1],[18040,1],[18334,1],[18680,1],[19079,1],[19405,1],[19679,1],[20267,1],[20343,1],[20523,1],[21181,1],[21259,1],[21624,1],[22294,1],[22370,1],[22880,1],[22956,1],[23210,1],[24035,1],[24121,1],[24301,1],[24614,1],[24692,1],[25090,1],[25180,1],[25308,2],[25572,1]]},"107":{"position":[[558,1],[713,1],[950,1],[1103,1],[1395,1],[1476,1],[1503,1],[1950,1],[2113,1],[2311,1],[2512,1],[2690,1],[3416,3],[3519,1],[4116,1],[4657,1],[4988,1],[5595,1],[5991,1],[6302,1],[6447,3],[6998,1],[7200,1],[7282,1],[7369,1],[7455,1],[7706,1],[8691,1],[8944,1],[8998,1],[9262,1],[9664,1]]},"108":{"position":[[280,3],[1476,1],[1571,1],[1580,1],[1670,1],[1736,1],[1828,1],[2055,1],[2215,1],[2261,1],[2279,1],[2297,1],[2316,1],[2336,1],[2457,1],[2703,1],[2786,1],[3878,1],[3896,2],[3921,2],[3931,1],[3978,2],[4045,2],[4070,2],[4183,2],[4289,1],[4338,2],[4391,2],[4474,2],[4536,2],[4542,2],[4589,2],[4634,2],[4748,1],[4757,2],[4769,1],[4830,1],[4869,2],[4890,2],[5008,1],[5076,2],[5207,1],[5429,1],[5507,1],[5689,1],[6399,1],[6487,1],[6669,1],[6984,1],[7076,1],[7206,2],[7471,1],[7923,1],[8019,1],[8332,1],[8412,1],[8890,1],[8970,1]]},"109":{"position":[[623,1],[783,1],[941,1],[1007,1],[1446,1],[1667,1],[1840,1],[2020,1],[2479,3],[2738,1],[3148,1],[3504,1],[3656,3],[4242,1],[4542,1],[4933,1],[5191,1],[5396,1],[5479,1],[5567,1],[5653,1],[5909,1],[6638,1],[7604,1],[7921,1]]},"111":{"position":[[720,1],[983,1],[1376,1],[1497,1],[1618,1],[1739,1],[1886,1],[2010,1]]},"113":{"position":[[334,1],[558,1],[939,1],[1034,1],[1285,1],[1489,1],[1606,1],[1879,1],[5775,2],[5989,1]]},"124":{"position":[[788,3],[2598,1],[2684,1],[2699,1],[3465,1],[3485,1],[3510,1],[7368,2],[7389,1],[7422,1],[7464,1],[7502,1],[7549,1],[7569,2],[7599,1],[7641,1],[7667,1],[7693,1],[7739,1],[7785,1],[7831,1],[7855,1],[7932,1],[7967,1],[8069,1],[8102,2],[8132,2],[8142,1],[8210,2],[8277,2],[8305,2],[8347,2],[8360,1],[8367,1],[8400,1],[8428,1],[8446,1],[8451,2],[8477,2],[8504,1],[8539,1],[8660,2],[8770,2],[8795,2],[8813,1],[8896,2],[8902,1],[8936,2],[8964,1],[8987,1],[8992,2],[9029,2],[9056,1],[9108,1],[9145,1],[9265,2],[9375,2],[9400,2],[9418,1],[9501,2],[9507,1],[9541,2],[9569,1],[9592,1],[9597,2],[9621,2],[9634,2],[9705,1],[9728,2],[10093,2],[10114,1],[10147,1],[10193,1],[10236,1],[10283,1],[10303,2],[10333,1],[10375,1],[10401,1],[10427,1],[10473,1],[10519,1],[10565,1],[10589,1],[10702,1],[10739,1],[10807,2],[10874,2],[10902,2],[10930,2],[10992,2],[11020,2],[11047,1],[11082,1],[11239,2],[11264,2],[11282,1],[11365,2],[11371,1],[11405,2],[11433,1],[11456,1],[11461,2],[11507,2],[11517,1],[11672,1],[11686,2],[11720,1],[11734,2],[11768,1],[11820,1],[11857,1],[11996,2],[12021,2],[12039,1],[12122,2],[12128,1],[12162,2],[12190,1],[12213,2],[12464,1],[12775,1],[12931,1],[13165,1],[13184,1],[13683,1],[13909,1],[13916,1],[13996,1],[14003,1],[14015,1],[14325,1],[14417,1],[14615,1],[15137,1],[15229,1],[15579,1],[16088,1],[16182,1],[16531,1],[17031,1],[17125,1],[17625,1],[17739,1],[18024,1],[18528,1],[18622,1],[19153,1],[19259,1],[19405,2],[19676,1],[20121,1],[20223,1],[20354,1],[20416,1]]},"125":{"position":[[524,3],[1780,1],[1872,1],[1887,1],[1991,1],[2183,1],[2612,1],[2623,1],[2634,1],[2645,1],[2656,1],[2668,1],[2680,1],[2692,1],[2705,1],[5086,1],[8371,2],[8392,1],[8434,1],[8480,1],[8525,1],[8572,1],[8595,2],[8625,1],[8665,1],[8691,1],[8717,1],[8752,1],[8787,1],[8823,1],[8847,1],[8974,2],[8992,1],[9030,1],[9072,1],[9114,1],[9157,1],[9189,1],[9221,1],[9254,1],[9275,1],[9298,2],[9325,1],[9361,1],[9455,1],[9497,1],[9565,1],[9606,1],[9645,2],[9677,2],[9695,2],[9731,1],[9740,2],[9766,2],[9772,1],[9801,2],[9832,2],[9850,2],[9890,1],[9899,2],[9919,2],[9933,1],[10044,2],[10056,1],[10085,2],[10116,2],[10134,2],[10174,1],[10183,2],[10202,2],[10216,1],[10328,2],[10340,1],[10353,1],[10362,2],[10423,2],[10496,1],[10553,1],[10581,2],[10605,1],[10621,1],[10624,1],[10644,1],[10660,1],[10663,1],[10683,2],[10721,2],[10757,2],[10767,1],[10828,2],[10895,2],[10920,2],[10932,2],[10969,2],[10979,1],[11062,2],[11074,2],[11116,2],[11129,1],[11136,1],[11169,1],[11204,1],[11222,1],[11227,2],[11253,2],[11287,1],[11346,1],[11380,1],[11503,2],[11515,2],[11587,1],[11685,2],[11728,2],[11759,2],[11801,2],[11832,2],[11850,1],[11933,1],[11938,1],[11973,2],[12005,2],[12040,2],[12075,1],[12098,1],[12103,2],[12140,2],[12174,1],[12233,1],[12274,1],[12311,1],[12433,2],[12445,2],[12517,1],[12615,2],[12658,2],[12689,2],[12731,2],[12762,2],[12780,1],[12863,1],[12868,1],[12903,2],[12935,2],[12970,2],[13005,1],[13028,1],[13033,2],[13057,2],[13070,2],[13155,1],[13178,2],[13302,1],[13643,1],[14126,1],[14216,1],[14412,1],[15101,1],[15191,1],[15458,1],[16211,1],[16303,1],[16569,1],[17314,1],[17406,1],[17670,1],[17774,1],[17918,2],[18188,1]]},"126":{"position":[[540,1],[694,1],[860,1],[1210,1],[1302,1],[1390,1],[1449,1],[2019,1],[2344,1],[2588,1],[2971,1],[3359,1],[3774,1],[3987,1],[4279,1]]},"127":{"position":[[1859,1],[1948,1],[1963,1],[2419,1],[2518,1],[2533,1],[4072,1],[4090,2],[4137,2],[4175,1],[4195,1],[4230,2],[4294,1],[4314,1],[4339,2],[4478,2],[4540,2],[4555,2],[4593,1],[4612,2],[4633,2],[4858,2],[4877,2],[4950,1],[5175,1],[5180,2],[5254,2],[5269,2],[5308,1],[5327,2],[5348,2],[5556,2],[5575,2],[5645,1],[5770,1],[5831,2],[5898,2],[5942,1],[5958,1],[5970,2],[6001,2],[6082,2],[6100,1],[6113,2],[6130,2],[6140,1],[6156,1],[6168,2],[6204,2],[6283,2],[6301,1],[6314,2],[6331,2],[6341,1],[6346,2],[6436,1],[6631,1],[6702,1],[6744,1],[6896,1],[6964,1],[7046,1],[7136,1],[7330,1],[7467,1],[7794,1],[7886,1],[8221,1],[8311,1],[8577,1],[8849,1],[8941,1],[9206,1],[9368,1],[9481,1],[9581,1],[9794,1]]},"128":{"position":[[696,1],[908,1],[1032,1],[1176,1],[1335,1],[2322,1],[2587,1],[2918,1],[3700,1],[4022,1],[4551,1],[4806,1],[5596,1],[6827,4],[7734,1],[8175,1],[8484,1],[8683,1],[8889,1],[9664,1],[9883,1],[10439,1],[11017,1],[11630,1],[11784,1],[12268,1],[12905,1],[15247,1],[16637,2],[16805,2],[16830,1],[16834,1],[16836,1],[16842,1],[16846,1],[16848,2],[16853,1],[16889,1],[17242,2],[17308,2],[17333,1],[17337,1],[17339,1],[17345,1],[17349,1],[17351,2],[17356,1],[17358,1],[17391,2],[17394,2],[17397,1],[17409,1],[18529,1],[18531,1],[18533,2],[18609,2],[18642,1],[18667,2],[18730,2],[18758,2],[18763,2],[18825,2],[18869,2],[18872,1],[18997,1],[19131,1],[20238,2],[20249,1],[20772,2],[20783,1],[20918,1],[21053,1],[21244,1],[21554,1],[21690,1],[22414,2],[22593,2],[22816,1],[22818,1],[22820,2],[23031,2],[23129,2],[23134,2],[23234,2],[23260,1],[23265,2],[23331,2],[23359,1],[23380,2],[23574,2],[23600,1],[23628,1],[23630,2],[23691,2],[23695,2],[23905,2],[24134,1],[24136,1],[24138,2],[24350,2],[24454,2],[24459,2],[24560,2],[24587,1],[24592,2],[24659,2],[24688,1],[24710,2],[24909,2],[24936,1],[24968,1],[25239,1],[25655,1],[26042,1],[26798,2],[26810,1],[27028,1],[27220,1],[27404,1],[27626,1],[27750,1],[27876,1],[27990,1],[28106,1],[28226,1],[28348,1],[28460,1],[28596,1],[28738,1],[28885,1],[29022,1],[29141,1],[29281,1],[29418,1],[29541,1],[29662,1],[29779,1],[29824,1],[29878,1],[30099,1]]},"129":{"position":[[3669,1],[3775,1],[3784,1],[5570,1],[5703,1],[5711,2],[5758,2],[5796,1],[5807,1],[5849,2],[5919,1],[5939,1],[5964,2],[6103,2],[6165,2],[6180,2],[6218,1],[6237,2],[6258,2],[6483,2],[6502,2],[6575,1],[6800,1],[6805,2],[6879,2],[6894,2],[6933,1],[6952,2],[6973,2],[7181,2],[7200,2],[7270,1],[7395,1],[7447,2],[7514,2],[7606,1],[7614,2],[7699,2],[7765,2],[7779,1],[7788,2],[7805,2],[7811,1],[7816,2],[7875,2],[7940,2],[7961,2],[8028,1],[8036,2],[8070,2],[8184,2],[8198,1],[8207,2],[8224,2],[8230,1],[8235,2],[8360,2],[8431,1],[8439,2],[8476,2],[8593,2],[8607,1],[8616,2],[8633,2],[8639,1],[8644,2],[8769,2],[8840,1],[8848,2],[8877,2],[8942,2],[8956,1],[8965,2],[8982,2],[9015,1],[9031,1],[9043,2],[9064,2],[9134,2],[9152,1],[9165,2],[9182,2],[9192,1],[9211,1],[9231,1],[9247,2],[9276,2],[9360,2],[9382,1],[9399,2],[9416,2],[9430,1],[9443,2],[9503,2],[9521,1],[9623,2],[9642,1],[9675,1],[9691,1],[9741,2],[9760,1],[9777,2],[9791,2],[9825,1],[9841,1],[9870,1],[9917,1],[9926,1],[9937,2],[9965,2],[10028,2],[10090,2],[10223,1],[10612,1],[10808,1],[10881,1],[10982,1],[11197,1],[11281,1],[11477,1],[11607,1],[11903,1],[11989,1],[12318,1],[12426,1],[12886,1],[12970,1],[13170,1],[13461,1],[13563,1],[13864,1],[14251,1],[14367,1],[14905,1],[15013,1],[15315,1],[16134,1],[16232,1],[16421,1],[17065,1],[17179,1]]},"130":{"position":[[628,1],[777,1],[1043,1],[1263,1],[1375,1],[1525,1],[1602,1],[1669,1],[1839,1],[2787,1],[3112,1],[3395,1],[3738,1],[4223,1],[4525,1],[4982,1],[5329,1],[5627,1],[5873,1],[6018,1],[6106,1],[6199,1],[6285,1],[6560,1],[6685,1],[6807,1]]},"131":{"position":[[3525,1],[3631,1],[3640,1],[4346,1],[6263,1],[9760,1],[9898,1],[9952,1],[9964,2],[10011,2],[10049,1],[10060,1],[10102,2],[10178,1],[10198,1],[10223,2],[10362,2],[10424,2],[10439,2],[10477,1],[10496,2],[10517,2],[10742,2],[10761,2],[10834,1],[11059,1],[11064,2],[11138,2],[11153,2],[11192,1],[11211,2],[11232,2],[11440,2],[11459,2],[11529,1],[11654,1],[11706,2],[11773,2],[11803,2],[11837,2],[11871,1],[11879,2],[11911,2],[11973,2],[11987,1],[11996,2],[12013,2],[12053,2],[12087,2],[12124,1],[12136,2],[12166,2],[12236,2],[12254,1],[12267,2],[12284,2],[12303,2],[12337,2],[12368,2],[12451,2],[12500,1],[13072,1],[13099,1],[13123,1],[13143,2],[13172,2],[13264,2],[13290,1],[13311,2],[13328,2],[13353,2],[13387,2],[13470,2],[13504,1],[13525,2],[13581,2],[13624,1],[13648,1],[13685,1],[13706,2],[13746,2],[13789,1],[13855,1],[13880,1],[13895,2],[13932,2],[13991,2],[14009,1],[14111,2],[14130,1],[14158,1],[14177,1],[14227,2],[14246,1],[14263,2],[14276,2],[14305,1],[14325,1],[14354,1],[14401,1],[14410,1],[14425,2],[14444,2],[14573,1],[14874,1],[15070,1],[15143,1],[15244,1],[15927,1],[16011,1],[16207,1],[16341,1],[16729,1],[16815,1],[17144,1],[17252,1],[18156,1],[18262,1],[18993,1],[19077,1],[19277,1],[19946,1],[20048,1],[20349,1]]},"132":{"position":[[736,1],[885,1],[1017,1],[1307,1],[1527,1],[1639,1],[2074,1],[2157,1],[2224,1],[2399,1],[3040,1],[3365,1],[3655,1],[3941,1],[4284,1],[4769,1],[5015,1],[5160,1],[5248,1],[5341,1],[5427,1],[5702,1],[5827,1],[5987,1],[6138,1]]},"133":{"position":[[5468,1],[5511,1],[5585,1],[6325,1],[6418,1],[6427,1],[11301,1],[11404,2],[11451,2],[11489,1],[11500,1],[11542,2],[11620,1],[11640,1],[11665,2],[11804,2],[11866,2],[11881,2],[11919,1],[11938,2],[11959,2],[12184,2],[12203,2],[12276,1],[12501,1],[12506,2],[12580,2],[12595,2],[12634,1],[12653,2],[12674,2],[12882,2],[12901,2],[12971,1],[13092,2],[13225,2],[13648,1],[13706,2],[13773,2],[13853,1],[13896,1],[13908,1],[13993,2],[14029,1],[14034,1],[14068,1],[14089,1],[14154,2],[14198,1],[14211,1],[14253,1],[14278,1],[14374,2],[14418,1],[14431,1],[14473,1],[14499,1],[14567,2],[14622,1],[14722,1],[14731,1],[14744,2],[14832,2],[14872,1],[14881,1],[14919,1],[14935,1],[15041,2],[15056,1],[15069,2],[15123,2],[15133,1],[15183,2],[15198,1],[15211,2],[15235,2],[15245,1],[15266,1],[15305,1],[15435,1],[15538,2],[15585,2],[15623,1],[15634,1],[15676,2],[15754,1],[15774,1],[15799,2],[15938,2],[16000,2],[16015,2],[16053,1],[16072,2],[16093,2],[16318,2],[16337,2],[16410,1],[16635,1],[16640,2],[16714,2],[16729,2],[16768,1],[16787,2],[16808,2],[17016,2],[17035,2],[17105,1],[17226,2],[17359,2],[17782,1],[17840,2],[17907,2],[18009,1],[18056,1],[18072,1],[18165,2],[18205,1],[18214,1],[18252,1],[18320,2],[18364,1],[18377,1],[18419,1],[18444,1],[18540,2],[18584,1],[18597,1],[18639,1],[18665,1],[18733,2],[18788,1],[18888,1],[18897,1],[18910,2],[18998,2],[19038,1],[19047,1],[19085,1],[19101,1],[19207,2],[19222,1],[19235,2],[19289,2],[19299,1],[19349,2],[19364,1],[19377,2],[19401,2],[19411,1],[19432,1],[19471,1],[19480,2],[19552,2],[19739,1],[19842,2],[19889,2],[19927,1],[19938,1],[19980,2],[20058,1],[20078,1],[20103,2],[20242,2],[20304,2],[20319,2],[20357,1],[20376,2],[20397,2],[20622,2],[20641,2],[20714,1],[20939,1],[20944,2],[21018,2],[21033,2],[21072,1],[21091,2],[21112,2],[21320,2],[21339,2],[21409,1],[21530,2],[21663,2],[22086,1],[22144,2],[22211,2],[22313,1],[22360,1],[22376,1],[22469,2],[22509,1],[22518,1],[22556,1],[22624,2],[22668,1],[22681,1],[22723,1],[22748,1],[22844,2],[22888,1],[22901,1],[22943,1],[22969,1],[23070,2],[23114,1],[23127,1],[23169,1],[23231,2],[23265,2],[23326,2],[23372,1],[23389,2],[23449,2],[23492,1],[23513,1],[23530,1],[23543,1],[23560,1],[23628,2],[23683,1],[23783,1],[23792,1],[23805,2],[23893,2],[23933,1],[23942,1],[23980,1],[23996,1],[24102,2],[24117,1],[24130,2],[24184,2],[24194,1],[24244,2],[24259,1],[24272,2],[24296,2],[24306,1],[24327,1],[24366,1],[24375,2],[24447,2],[24642,1],[24763,1],[24820,1],[24856,2],[24903,2],[24941,1],[24952,1],[24994,2],[25072,1],[25092,1],[25117,2],[25256,2],[25318,2],[25333,2],[25371,1],[25390,2],[25411,2],[25636,2],[25655,2],[25728,1],[25953,1],[25958,2],[26032,2],[26047,2],[26086,1],[26105,2],[26126,2],[26334,2],[26353,2],[26423,1],[26544,2],[26677,2],[27100,1],[27158,2],[27225,2],[27327,1],[27374,1],[27390,1],[27483,2],[27523,1],[27532,1],[27570,1],[27582,2],[27680,2],[27827,2],[27871,1],[27884,1],[27926,1],[27951,1],[28047,2],[28091,1],[28104,1],[28146,1],[28172,1],[28273,2],[28317,1],[28330,1],[28372,1],[28434,2],[28468,2],[28529,2],[28575,1],[28592,2],[28705,2],[28748,1],[28769,1],[28786,1],[28799,1],[28816,1],[28884,2],[28939,1],[29039,1],[29048,1],[29061,2],[29149,2],[29189,1],[29198,1],[29236,1],[29252,1],[29345,2],[29385,1],[29394,1],[29432,1],[29490,2],[29524,2],[29581,2],[29623,1],[29636,2],[29683,1],[29728,1],[29790,1],[29924,4],[29950,2],[29985,1],[30002,1],[30015,1],[30024,1],[30033,2],[30077,2],[30091,1],[30210,1],[30316,2],[30331,1],[30344,2],[30398,2],[30408,1],[30458,2],[30473,1],[30486,2],[30510,2],[30520,1],[30541,1],[30580,1],[30589,2],[30718,2],[30912,1],[31009,2],[31056,2],[31094,1],[31105,1],[31147,2],[31225,1],[31245,1],[31270,2],[31409,2],[31471,2],[31486,2],[31524,1],[31543,2],[31564,2],[31789,2],[31808,2],[31881,1],[32106,1],[32111,2],[32185,2],[32200,2],[32239,1],[32258,2],[32279,2],[32487,2],[32506,2],[32576,1],[32697,2],[32830,2],[33253,1],[33311,2],[33378,2],[33458,1],[33501,1],[33513,1],[33598,2],[33634,1],[33639,1],[33673,1],[33694,1],[33759,2],[33803,1],[33816,1],[33858,1],[33883,1],[33979,2],[34023,1],[34036,1],[34078,1],[34104,1],[34172,2],[34227,1],[34327,1],[34336,1],[34349,2],[34437,2],[34477,1],[34486,1],[34524,1],[34540,1],[34641,2],[34656,1],[34669,2],[34723,2],[34733,1],[34783,2],[34798,1],[34811,2],[34835,2],[34845,1],[34866,1],[34905,1],[35013,1],[35124,2],[35171,2],[35209,1],[35220,1],[35262,2],[35340,1],[35360,1],[35385,2],[35524,2],[35586,2],[35601,2],[35639,1],[35658,2],[35679,2],[35904,2],[35923,2],[35996,1],[36221,1],[36226,2],[36300,2],[36315,2],[36354,1],[36373,2],[36394,2],[36602,2],[36621,2],[36691,1],[36812,2],[36945,2],[37368,1],[37426,2],[37493,2],[37595,1],[37642,1],[37658,1],[37751,2],[37791,1],[37800,1],[37838,1],[37906,2],[37950,1],[37963,1],[38005,1],[38030,1],[38126,2],[38170,1],[38183,1],[38225,1],[38251,1],[38319,2],[38374,1],[38474,1],[38483,1],[38496,2],[38584,2],[38624,1],[38633,1],[38671,1],[38687,1],[38794,2],[38809,1],[38822,2],[38876,2],[38886,1],[38936,2],[38951,1],[38964,2],[38988,2],[38998,1],[39019,1],[39058,1],[39067,2],[39139,2],[39326,1],[39429,2],[39476,2],[39514,1],[39525,1],[39567,2],[39645,1],[39665,1],[39690,2],[39829,2],[39891,2],[39906,2],[39944,1],[39963,2],[39984,2],[40209,2],[40228,2],[40301,1],[40526,1],[40531,2],[40605,2],[40620,2],[40659,1],[40678,2],[40699,2],[40907,2],[40926,2],[40996,1],[41117,2],[41250,2],[41673,1],[41731,2],[41798,2],[41900,1],[41947,1],[41963,1],[42056,2],[42096,1],[42105,1],[42143,1],[42211,2],[42255,1],[42268,1],[42310,1],[42335,1],[42431,2],[42475,1],[42488,1],[42530,1],[42556,1],[42624,2],[42679,1],[42779,1],[42788,1],[42801,2],[42889,2],[42929,1],[42938,1],[42976,1],[42992,1],[43098,2],[43113,1],[43126,2],[43180,2],[43190,1],[43240,2],[43255,1],[43268,2],[43292,2],[43302,1],[43323,1],[43362,1],[43467,1],[43588,1],[43645,1],[43681,2],[43728,2],[43766,1],[43777,1],[43819,2],[43897,1],[43917,1],[43942,2],[44081,2],[44143,2],[44158,2],[44196,1],[44215,2],[44236,2],[44461,2],[44480,2],[44553,1],[44778,1],[44783,2],[44857,2],[44872,2],[44911,1],[44930,2],[44951,2],[45159,2],[45178,2],[45248,1],[45369,2],[45502,2],[45925,1],[45983,2],[46050,2],[46152,1],[46199,1],[46215,1],[46308,2],[46348,1],[46357,1],[46366,2],[46438,2],[46558,1],[46626,2],[46670,1],[46683,1],[46725,1],[46750,1],[46846,2],[46890,1],[46903,1],[46945,1],[46971,1],[47072,2],[47116,1],[47129,1],[47171,1],[47232,2],[47277,1],[47294,2],[47407,2],[47450,1],[47471,1],[47488,1],[47501,1],[47518,1],[47586,2],[47641,1],[47741,1],[47750,1],[47763,2],[47851,2],[47891,1],[47900,1],[47938,1],[47954,1],[48047,2],[48087,1],[48096,1],[48134,1],[48192,2],[48233,1],[48246,2],[48293,1],[48427,4],[48453,2],[48488,1],[48505,1],[48518,1],[48527,1],[48536,2],[48580,2],[48594,1],[48713,1],[48819,2],[48834,1],[48847,2],[48901,2],[48911,1],[48961,2],[48976,1],[48989,2],[49013,2],[49023,1],[49044,1],[49083,1],[49088,2],[49268,1],[49677,1],[50288,1],[50360,1],[50480,1],[50562,1],[50621,1],[50888,1],[51037,1],[51125,1],[51325,1],[51866,1],[51978,1],[52444,1],[52554,1],[53018,1],[53120,1],[53608,1],[53696,1],[53900,1],[54456,1],[54586,1],[54845,1],[55314,1],[55426,1],[56034,1],[56158,1],[56475,1],[56884,1],[57008,1],[57325,1],[57734,1],[57848,1],[58162,1],[58566,1],[58692,1],[59013,1],[59423,1],[59547,1],[59864,1],[60273,1],[60397,1],[60714,1],[61123,1],[61235,1],[61548,1],[61951,1],[62041,1]]},"134":{"position":[[804,1],[970,1],[1104,1],[1481,1],[1965,1],[2219,1],[2570,1],[2796,1],[3267,1],[3515,1],[3677,1],[3760,1],[3819,1],[3886,1],[4143,1],[6112,1],[6453,1],[6747,1],[7037,1],[7324,1],[7671,1],[8204,1],[8737,1],[9244,1],[9783,1],[10316,1],[10849,1],[11351,1],[11797,1],[12099,1],[12362,1],[12515,1],[12605,1],[12700,1],[12786,1],[13062,1],[13355,1]]},"135":{"position":[[742,3],[2064,1],[2136,1],[2151,1],[2218,1],[2283,1],[2370,1],[2452,1],[2538,1],[2619,1],[2710,1],[2790,1],[2897,1],[3096,1],[3483,1],[3751,1],[4025,1],[4300,1],[4415,1],[4535,1],[4650,1],[4848,1],[4937,1],[5077,1],[5194,1],[5348,1],[8392,1],[8523,1],[8541,2],[8572,2],[8582,1],[8626,2],[8693,2],[8721,2],[8752,2],[8762,1],[8880,2],[8936,2],[8955,2],[8982,1],[8991,1],[9047,1],[9093,2],[9114,1],[9143,1],[9154,2],[9402,2],[9435,2],[9500,2],[9533,2],[9612,1],[9630,2],[9661,2],[9671,1],[9715,2],[9782,2],[9810,2],[9840,2],[9904,2],[9935,2],[9961,1],[9993,1],[10111,2],[10167,2],[10186,2],[10213,1],[10222,1],[10227,1],[10232,2],[10265,2],[10330,2],[10383,2],[10466,2],[10496,2],[10560,2],[10591,2],[10617,1],[10649,1],[10767,2],[10823,2],[10842,2],[10869,1],[10878,1],[10883,1],[10888,2],[10921,2],[11153,1],[11190,1],[11216,2],[11318,2],[11328,1],[11421,2],[11452,2],[11462,1],[11506,2],[11573,2],[11951,1],[12188,1],[13056,1],[13363,1],[13431,1],[13492,1],[13550,1],[13592,1],[14034,1],[14267,1],[14639,1],[14910,1],[15494,1],[15878,1],[16542,1],[16620,1],[16643,1],[16799,1],[17591,1],[17669,1],[17778,1],[18018,1],[18694,1],[18774,1],[18889,1],[19128,1],[19853,1],[19941,1],[20056,1],[20132,1],[20372,1],[21081,1],[21161,1],[21746,1],[21848,1],[21965,1],[22027,1],[22700,1],[22792,1],[22924,2],[23188,1]]},"136":{"position":[[963,3],[4318,1],[4400,1],[4409,1],[7559,2],[7645,2],[7660,1],[7678,1],[7696,1],[7714,1],[7731,1],[7748,1],[7766,1],[7824,3],[7845,1],[7863,2],[7886,2],[7896,1],[7940,2],[8007,2],[8032,2],[8044,2],[8069,2],[8126,2],[8151,2],[8316,3],[8337,1],[8355,2],[8387,1],[8431,2],[8498,2],[8523,2],[8535,2],[8606,2],[8663,2],[8710,2],[8793,2],[8828,2],[8847,1],[8856,2],[8878,2],[8884,2],[8988,3],[9009,1],[9058,1],[9102,2],[9169,2],[9194,2],[9316,2],[9348,2],[9367,1],[9376,2],[9398,2],[9404,2],[9519,3],[9540,1],[9684,2],[9732,2],[9742,1],[9817,2],[9982,1],[10286,1],[10557,1],[10708,1],[10859,1],[10935,1],[11115,1],[11300,2],[11323,2],[11333,1],[11632,1],[11710,1],[12031,1],[12127,1],[12570,1],[12668,1],[12844,1],[13189,1],[13287,1],[13463,1],[13971,1],[14071,1],[14254,1],[14748,1],[14848,1],[15031,1],[15329,1],[15433,1],[15621,1],[15841,2],[15888,2],[16226,1],[16330,1],[16533,1],[16941,1],[17023,1],[17203,1],[17536,1],[17626,1],[17754,2],[18018,1]]},"137":{"position":[[844,1],[1106,1],[1153,1],[1634,1],[2394,1],[2662,1],[3444,1],[3525,1],[3583,1],[4599,3],[4782,1],[5095,1],[5330,1],[5596,1],[6059,1],[6424,1],[6896,1],[7281,1],[7637,1],[8034,1],[8179,3],[8655,1],[9026,1],[9228,1],[9310,1],[9397,1],[9483,1],[9639,1],[9890,1],[10186,1],[10302,1],[10543,1],[10743,1],[11147,1],[11453,1],[11875,1]]},"138":{"position":[[774,3],[2708,1],[2792,1],[2807,1],[7939,1],[7972,2],[8001,2],[8011,1],[8077,2],[8144,2],[8169,2],[8181,2],[8223,2],[8240,1],[8247,1],[8280,1],[8308,1],[8326,1],[8331,2],[8357,2],[8384,1],[8419,1],[8535,2],[8547,2],[8657,2],[8682,2],[8700,1],[8783,2],[8789,1],[8823,2],[8851,1],[8874,1],[8879,2],[8916,2],[8943,1],[8995,1],[9032,1],[9147,2],[9159,2],[9269,2],[9294,2],[9312,1],[9395,2],[9401,1],[9435,2],[9463,1],[9486,1],[9491,2],[9515,2],[9528,2],[9599,1],[9622,2],[9899,1],[9936,1],[10002,2],[10069,2],[10094,2],[10106,2],[10134,2],[10196,2],[10224,2],[10251,1],[10286,1],[10401,2],[10450,2],[10475,2],[10493,1],[10576,2],[10582,1],[10616,2],[10644,1],[10667,1],[10672,2],[10718,2],[10728,1],[10857,2],[10890,1],[10946,1],[11002,1],[11054,1],[11091,1],[11188,2],[11237,2],[11262,2],[11280,1],[11363,2],[11369,1],[11403,2],[11431,1],[11454,2],[11662,1],[12238,1],[12392,1],[12644,1],[12792,1],[12880,1],[13078,1],[13573,1],[13663,1],[14247,1],[14335,1],[14685,1],[15197,1],[15287,1],[15636,1],[16377,1],[16467,1],[17079,1],[17189,1],[17474,1],[17912,1],[18014,1],[18160,2],[18431,1],[18876,1],[18974,1],[19105,1],[19167,1]]},"139":{"position":[[945,3],[2432,1],[2511,1],[2526,1],[2771,1],[2837,1],[2918,1],[3004,1],[3070,1],[3140,1],[3465,1],[3750,1],[4241,1],[4496,1],[4644,1],[4757,1],[4766,1],[4874,1],[4883,1],[4982,1],[4991,1],[5243,1],[5252,1],[5504,1],[5800,1],[5918,1],[6091,1],[6352,1],[6454,1],[6652,1],[6768,1],[6897,1],[7023,1],[9734,1],[9767,1],[9800,1],[9847,2],[9881,2],[9903,1],[9910,1],[9937,1],[9955,1],[9972,1],[9977,1],[9988,1],[9993,2],[10051,2],[10071,1],[10143,2],[10159,1],[10242,2],[10258,1],[10341,2],[10385,1],[10390,1],[10426,1],[10477,1],[10491,2],[10516,2],[10548,1],[10557,2],[10581,2],[10623,1],[10636,2],[10714,2],[10763,1],[10797,1],[10814,2],[10891,2],[10930,2],[10971,1],[11038,1],[11079,1],[11116,1],[11146,1],[11155,1],[11167,2],[11256,1],[11322,2],[11343,1],[11356,1],[11383,1],[11392,2],[11412,2],[11458,1],[11490,1],[11520,1],[11529,2],[11550,2],[11596,1],[11629,1],[11659,1],[11684,1],[11693,1],[11698,2],[11961,1],[12040,1],[12099,1],[12155,1],[12279,2],[12295,1],[12339,2],[12380,2],[12927,1],[13070,1],[13242,1],[13813,1],[14083,1],[14537,1],[15053,1],[15471,1],[15910,1],[16275,1],[16617,1],[16919,1],[17150,1],[17510,1],[17816,1],[17906,1],[18092,1],[18933,1],[19023,1],[19285,1],[20163,1],[20255,1],[20522,1],[21394,1],[21490,1],[21679,1],[22170,1],[22266,1],[22448,1],[22830,1],[22922,1],[23368,1],[23460,1],[23650,1],[24461,1],[24569,1],[24938,1],[25771,1],[25875,1],[26009,2],[26274,1],[26713,1],[26811,1],[26925,1],[26994,1]]},"140":{"position":[[1058,3],[2338,1],[2424,1],[2439,1],[2520,1],[2586,1],[2673,1],[2752,1],[2818,1],[2888,1],[2981,1],[3266,1],[3751,1],[3905,1],[4219,1],[4327,1],[4429,1],[4526,1],[4715,1],[4892,1],[5161,1],[5261,1],[5459,1],[5592,1],[5770,1],[5895,1],[7138,1],[7171,1],[7204,1],[7250,2],[7284,2],[7306,1],[7313,1],[7340,1],[7358,1],[7375,1],[7380,1],[7391,1],[7396,2],[7454,2],[7474,1],[7551,1],[7639,1],[7755,1],[7760,1],[7796,1],[7847,1],[7861,2],[7886,2],[7918,1],[7927,2],[7951,2],[7993,1],[8006,2],[8084,2],[8133,1],[8167,1],[8184,2],[8261,2],[8300,2],[8340,1],[8407,1],[8448,1],[8485,1],[8515,1],[8524,1],[8536,2],[8625,1],[8691,2],[8712,1],[8725,1],[8752,1],[8761,2],[8781,2],[8827,1],[8859,1],[8889,1],[8898,2],[8919,2],[8965,1],[8998,1],[9028,1],[9053,1],[9062,1],[9067,2],[9316,1],[9388,1],[9441,1],[9496,1],[9626,1],[9668,2],[10174,1],[10315,1],[10645,1],[11014,1],[11431,1],[11856,1],[12269,1],[12609,1],[12891,1],[13189,1],[13412,1],[13764,1],[15824,1],[15998,1],[16047,1],[16096,1],[16145,1],[16195,1],[16246,1],[16297,1],[16348,1],[16437,1],[16525,1],[16711,1],[17421,1],[17509,1],[17771,1],[18337,1],[18427,1],[18694,1],[19255,1],[19349,1],[19538,1],[20028,1],[20122,1],[20304,1],[20686,1],[20776,1],[21222,1],[21312,1],[21502,1],[22266,1],[22372,1],[22833,1],[23664,1],[23760,1],[23874,1],[23943,1],[24625,1],[24727,1],[24861,2],[25126,1]]},"141":{"position":[[617,1],[854,1],[916,1],[1083,1],[2034,1],[2170,1],[2379,1],[2458,1],[2525,1],[3196,3],[3347,1],[3730,1],[4452,1],[5083,1],[6072,1],[6221,3],[6791,1],[7136,1],[7338,1],[7420,1],[7507,1],[7593,1],[7867,1],[9653,1],[9874,1],[10155,1],[10396,1],[10895,1],[11123,1]]},"142":{"position":[[779,3],[2591,1],[2664,1],[2679,1],[9379,1],[9509,1],[9527,2],[9557,2],[9567,1],[9611,2],[9678,2],[9703,2],[9715,2],[9746,2],[9756,1],[9871,2],[9883,2],[9939,2],[9958,2],[9985,1],[9994,1],[10049,1],[10095,2],[10116,1],[10145,1],[10156,2],[10403,2],[10436,2],[10501,2],[10534,2],[10613,1],[10631,2],[10661,2],[10671,1],[10715,2],[10782,2],[10807,2],[10819,2],[10849,2],[10913,2],[10944,2],[10970,1],[11002,1],[11117,2],[11129,2],[11185,2],[11204,2],[11231,1],[11240,1],[11245,1],[11250,2],[11283,2],[11348,2],[11401,2],[11484,2],[11514,2],[11578,2],[11609,2],[11635,1],[11667,1],[11782,2],[11794,2],[11850,2],[11869,2],[11896,1],[11905,1],[11910,1],[11915,2],[11948,2],[12177,1],[12214,1],[12240,2],[12341,2],[12351,1],[12472,2],[12484,2],[12514,2],[12524,1],[12568,2],[12635,2],[12660,2],[13123,1],[13349,1],[14521,1],[14830,1],[14892,1],[14950,1],[14992,1],[15378,1],[15625,1],[15935,1],[16172,1],[16450,1],[16827,1],[17071,1],[17351,1],[17945,1],[18077,1],[18375,1],[18455,1],[18478,1],[18634,1],[19581,1],[19661,1],[19770,1],[20010,1],[20585,1],[20667,1],[20782,1],[21021,1],[21645,1],[21735,1],[21850,1],[21926,1],[22166,1],[22774,1],[22856,1],[23441,1],[23545,1],[23754,1],[23816,1],[24437,1],[24531,1],[24663,2],[24927,1]]},"143":{"position":[[767,1],[1104,1],[1547,1],[3033,1],[3121,1],[3200,1],[3497,1],[4796,1],[5136,1],[5880,1],[6332,1],[6823,1],[7248,1],[7784,1],[8312,1],[8696,1],[8943,1],[9186,1],[9517,1],[9865,1],[10125,1],[10345,1],[10433,1],[10526,1],[10612,1],[10893,1],[11539,1],[12478,1],[12975,1],[13231,1],[14788,1]]},"144":{"position":[[975,1],[1134,1],[1430,1],[1879,1],[2114,1],[2682,1],[2709,1],[2798,1],[2958,1],[3164,1],[3346,1],[4315,3],[4470,1],[4923,1],[5233,1],[5536,1],[5867,1],[6187,1],[6514,1],[7116,1],[7789,1],[8214,1],[8681,1],[8836,3],[9485,1],[9846,1],[10054,1],[10138,1],[10227,1],[10313,1],[10634,1],[11505,1],[11700,1],[11938,1],[12833,1],[13052,1]]},"145":{"position":[[654,1],[1051,1],[2912,1],[2964,1],[3013,1],[3246,1],[3439,1],[3510,1],[4514,1],[4942,1],[5379,1],[6276,1],[6713,1],[7281,1],[7787,1],[8343,1],[8747,1],[9103,1],[9788,1],[10005,1],[10092,1],[10184,1],[10270,1],[10544,1],[12344,1],[12513,1],[12531,1],[13782,1],[14771,1],[15444,1],[15888,1],[16497,1]]},"146":{"position":[[1027,3],[2006,1],[2087,1],[2096,1],[2172,1],[2236,1],[2326,1],[2426,1],[2509,1],[2614,1],[2777,1],[2893,1],[3000,1],[3197,1],[3321,1],[3463,1],[3583,1],[4533,2],[4563,1],[4611,1],[4667,1],[4699,1],[4731,1],[4780,1],[4814,2],[4848,1],[4884,1],[4939,1],[4995,1],[5067,1],[5122,1],[5171,1],[5210,1],[5263,1],[5317,1],[5359,1],[5408,1],[5476,1],[5596,1],[5614,2],[5641,2],[5651,1],[5697,2],[5764,2],[5789,2],[5801,2],[5852,2],[5886,1],[5952,2],[5982,1],[6033,1],[6066,2],[6202,2],[6231,1],[6277,2],[6299,1],[6345,2],[6367,1],[6413,2],[6435,1],[6485,1],[6508,1],[6513,2],[6623,1],[6666,2],[6676,1],[6733,2],[6745,2],[6781,2],[6818,1],[6827,2],[6861,2],[6867,1],[6872,2],[6896,2],[6937,1],[7012,2],[7024,2],[7050,2],[7082,1],[7183,2],[7404,2],[7434,1],[7484,1],[7539,1],[7572,1],[7605,1],[7658,1],[7694,2],[7728,1],[7764,1],[7819,1],[7875,1],[7947,1],[8002,1],[8059,1],[8098,1],[8150,1],[8203,1],[8226,1],[8289,1],[8331,2],[8355,2],[8414,2],[8438,2],[8448,1],[8523,2],[8535,2],[8561,2],[8571,1],[8672,2],[8781,2],[8808,2],[8818,1],[8864,2],[8931,2],[8956,2],[8968,2],[9019,2],[9053,1],[9119,2],[9149,1],[9200,1],[9233,2],[9369,2],[9398,1],[9444,2],[9466,1],[9512,2],[9534,1],[9580,2],[9602,1],[9652,1],[9675,1],[9680,2],[9790,1],[9833,2],[9843,1],[9900,2],[9929,2],[10175,1],[10474,1],[10523,2],[10553,1],[10603,1],[10659,1],[10691,1],[10723,1],[10772,1],[10806,2],[10840,1],[10876,1],[10931,1],[10987,1],[11059,1],[11114,1],[11163,1],[11202,1],[11255,1],[11309,1],[11351,1],[11400,1],[11468,1],[11510,1],[11559,1],[11628,1],[11779,1],[11815,1],[11984,1],[12002,2],[12029,2],[12039,1],[12085,2],[12152,2],[12177,2],[12189,2],[12240,2],[12274,1],[12340,2],[12370,1],[12421,1],[12454,2],[12590,2],[12619,1],[12665,2],[12687,1],[12733,2],[12755,1],[12801,2],[12823,1],[12873,1],[12896,1],[12924,1],[12961,1],[12990,2],[13003,1],[13016,2],[13162,2],[13180,1],[13255,2],[13287,2],[13307,2],[13325,1],[13386,2],[13402,1],[13447,1],[13460,2],[13494,2],[13504,1],[13533,1],[13549,2],[13623,2],[13637,1],[13698,2],[13714,2],[13750,2],[13795,1],[13808,2],[13842,2],[13852,1],[13880,1],[13896,2],[13920,2],[13934,1],[14031,2],[14047,2],[14073,2],[14087,1],[14228,2],[14244,2],[14363,2],[14407,1],[14448,2],[14482,1],[14531,1],[14560,2],[14632,1],[14653,1],[14680,1],[14685,1],[14693,1],[14711,1],[14748,2],[14815,2],[14867,1],[14892,2],[14937,1],[14966,1],[14989,2],[15172,1],[15699,1],[15917,1],[16235,1],[16558,1],[16638,1],[16661,1],[16813,1],[17291,1],[17377,1],[17400,1],[17555,1],[17721,1],[17811,1],[17834,1],[18666,1],[18766,1],[18789,1],[18938,1],[19111,1],[19199,1],[19222,1],[19844,1],[19934,1],[19957,1],[20042,1],[20104,1],[20502,1],[20582,1],[20605,1],[20841,1],[21133,1],[21217,1],[21240,1],[21476,1],[21641,1],[21723,1],[21746,1],[22048,1],[22134,1],[22157,1],[22240,1],[22304,1],[22545,1],[22635,1],[22746,1],[22808,1],[22976,1],[23066,1],[23322,1],[23490,1],[23584,1],[23716,2],[23980,1],[24418,1],[24530,1],[24553,1],[24792,1]]},"147":{"position":[[879,1],[1281,1],[1703,1],[1765,1],[2588,1],[2633,1],[2749,1],[2830,1],[2906,1],[3214,1],[3524,1],[4280,3],[4512,1],[4962,1],[5677,1],[6375,1],[6903,1],[7257,1],[7643,1],[7795,3],[8381,1],[8647,1],[9091,1],[9296,1],[9379,1],[9467,1],[9553,1],[9841,1],[10367,1],[10611,1],[10823,1],[11024,1]]},"148":{"position":[[584,3],[1831,1],[1907,1],[1920,1],[2369,2],[2462,2],[4118,1],[4148,1],[4157,1],[4178,1],[4213,1],[4222,1],[4228,1],[4252,1],[4256,1],[4269,1],[4289,1],[4316,1],[5145,1],[5163,2],[5250,2],[5256,2],[5283,2],[5293,1],[5337,2],[5404,2],[5429,2],[5441,2],[5513,2],[5523,1],[5576,2],[5604,1],[5613,2],[5639,2],[5649,2],[5715,2],[5729,1],[5786,2],[5798,2],[6104,1],[6109,1],[6209,1],[6272,1],[6290,2],[6337,2],[6363,1],[6393,1],[6457,2],[6469,2],[6534,2],[6540,2],[6577,2],[6587,1],[6652,2],[6664,2],[6735,2],[6745,1],[6798,2],[6858,1],[6876,2],[6911,2],[6956,1],[6961,1],[6998,1],[7038,1],[7081,1],[7124,1],[7168,1],[7212,1],[7252,1],[7277,2],[7312,1],[7317,1],[7342,1],[7386,1],[7435,1],[7482,1],[7525,1],[7573,1],[7624,1],[7655,1],[7686,1],[7713,2],[7719,2],[7814,1],[7845,2],[7877,1],[7919,1],[7950,1],[7988,1],[8034,1],[8039,2],[8059,2],[8069,1],[8115,2],[8182,2],[8207,2],[8219,2],[8257,2],[8263,2],[8342,1],[8419,1],[8466,2],[8476,1],[8529,2],[8557,1],[8566,2],[8592,2],[8602,2],[8682,1],[8758,1],[8787,2],[8818,1],[8841,1],[8854,2],[8893,2],[8911,1],[8989,2],[9005,1],[9026,2],[9058,2],[9124,2],[9138,1],[9195,2],[9207,2],[9317,1],[9510,1],[9688,1],[9770,1],[10041,2],[10107,2],[10121,1],[10178,2],[10361,1],[10437,1],[10617,1],[10993,2],[11020,2],[11030,1],[11315,1],[11405,1],[11582,1],[11698,2],[11735,2],[11745,1],[11810,2],[12012,1],[12098,1],[12278,1],[12425,2],[12472,2],[12498,1],[12528,1],[12592,2],[12790,1],[12878,1],[13053,1],[13179,2],[13218,2],[13236,1],[13314,2],[13526,1],[13614,1],[13803,1],[14108,1],[14198,1],[14326,2],[14590,1]]},"149":{"position":[[706,1],[861,1],[954,1],[1297,1],[1943,1],[1970,1],[2039,1],[2217,1],[2925,3],[3028,1],[3431,1],[3678,1],[4037,1],[4375,1],[4738,1],[5105,1],[5254,3],[5804,1],[6006,1],[6088,1],[6175,1],[6261,1],[6512,1],[6889,1],[7357,1],[7547,1],[7591,1],[7635,1],[7680,1],[7695,1],[7875,1],[7915,1],[7955,1],[7994,1],[8007,1],[8292,1],[8602,1]]},"150":{"position":[[2377,1],[2463,1],[2473,1],[2554,1],[2620,1],[2684,1],[2795,1],[2984,1],[3163,1],[3311,1],[3407,1],[3516,1],[3607,1],[3714,1],[3847,1],[4011,1],[4158,1],[4333,1],[4477,1],[4649,1],[4803,1],[4995,1],[5148,1],[5257,1],[5352,1],[5487,1],[5603,1],[5712,1],[5802,1],[5893,1],[7394,1],[7403,1],[7414,2],[7503,2],[7530,2],[7540,1],[7614,2],[7674,2],[7706,2],[7830,2],[7893,2],[8015,1],[8096,2],[8106,1],[8200,2],[8318,1],[8418,2],[8428,1],[8658,2],[9130,1],[9135,1],[9160,1],[9212,1],[9241,1],[9270,1],[9299,1],[9328,1],[9357,1],[9365,2],[9371,2],[9452,2],[9462,1],[9592,2],[9697,1],[9772,2],[9811,1],[9885,1],[9918,2],[9923,1],[9993,1],[10006,1],[10136,2],[10168,2],[10210,1],[10223,1],[10301,1],[10315,2],[10348,2],[10460,1],[10506,2],[10545,1],[10612,1],[10654,1],[10667,1],[11224,1],[11229,1],[11254,1],[11314,1],[11343,1],[11372,1],[11401,1],[11430,1],[11459,1],[11467,2],[11473,2],[11500,2],[11520,1],[11594,2],[11622,2],[11632,1],[11761,2],[11844,3],[12119,2],[12227,1],[12301,2],[12446,1],[12451,1],[12476,1],[12531,1],[12560,1],[12589,1],[12618,1],[12647,1],[12676,1],[12684,2],[12690,2],[12771,2],[12777,2],[12875,1],[12879,1],[12884,2],[12894,1],[13046,1],[13051,2],[13086,2],[13242,1],[13247,1],[13272,1],[13329,1],[13365,1],[13394,1],[13423,1],[13452,1],[13481,1],[13489,2],[13495,2],[13609,1],[13676,2],[13682,2],[13796,1],[13900,2],[13910,1],[14046,2],[14098,2],[14104,2],[14218,1],[14261,2],[14310,1],[14390,1],[14425,1],[14479,1],[14531,1],[14583,1],[14635,1],[14687,1],[14700,1],[14836,2],[14885,2],[14915,1],[14962,2],[14969,1],[14990,1],[14999,2],[15116,1],[15150,2],[15229,1],[15254,2],[15282,1],[15287,2],[15307,1],[15314,2],[15332,1],[15345,1],[15354,2],[15467,1],[15548,2],[15576,1],[15594,1],[15599,1],[15607,1],[15989,1],[16234,1],[16473,1],[16911,1],[17962,1],[18218,1],[18480,1],[18760,1],[18848,1],[18877,1],[19035,1],[19265,2],[19292,2],[19302,1],[19689,1],[19779,1],[19808,1],[20086,1],[20188,1],[20217,1],[20542,1],[20722,1],[20822,1],[20851,1],[21080,1],[21260,1],[21368,1],[21397,1],[21554,1],[21889,1],[21985,1],[22014,1],[22313,1],[22407,1],[22436,1],[22733,1],[22823,1],[22852,1],[23170,1],[23689,1],[23779,1],[23808,1],[24046,1],[24731,1],[24829,1],[24858,1],[25016,1],[25390,1],[25484,1],[25513,1],[25650,1],[25816,1],[25924,1],[25953,1],[26227,1],[26365,2],[26446,2],[26456,1],[26878,1],[26984,1],[27013,1]]},"287":{"position":[[199,1],[317,1]]},"289":{"position":[[247,1],[413,1]]},"292":{"position":[[182,1],[295,1],[323,1],[408,1],[529,1],[651,1],[769,1],[887,1],[998,1],[1112,1],[1239,1],[1369,1],[1512,1],[1650,1]]}}}],["0",{"_index":555,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14435,2],[15715,2],[16133,2]]},"68":{"position":[[2476,1],[4781,1],[9709,2],[11854,2],[14721,2],[17700,1],[18297,1],[24909,1]]},"69":{"position":[[4218,1],[4459,1],[5272,1],[5360,1],[6405,1],[6698,1],[6885,1],[7124,1],[8703,1],[8948,1],[9201,1],[9454,1],[9707,1],[10127,1],[13535,2],[13581,2],[13609,2],[13637,2],[16570,1],[20957,1],[21898,1],[31336,1]]},"70":{"position":[[2382,2],[3950,1],[3956,2],[3991,1],[4038,2],[4120,2],[4202,2],[4284,2],[4366,2],[4489,2],[4571,2],[4694,2],[4817,2],[4900,2],[4984,2],[5068,2],[5152,2],[5278,2],[5362,2],[5446,2],[5530,2],[5656,2],[5740,2],[5824,2],[5950,2],[6034,2],[6118,2],[6202,2],[6286,2],[6370,2],[6454,2],[6538,2],[6622,2],[6706,2],[6790,2],[6874,2],[6958,2],[7042,2],[7126,2],[7210,2],[7294,2],[7420,2],[7504,2],[7630,2],[7756,2],[7840,2],[8050,2],[8218,2],[8386,2],[8554,2],[8722,2],[8890,2],[10489,2],[10744,2]]},"71":{"position":[[6547,1],[10253,1],[10537,1],[14985,1],[15410,1],[15858,1],[16305,1],[16753,1],[17200,1],[17652,1],[18103,1],[18551,1],[18998,1],[19446,1],[19893,1],[20343,1],[20792,1],[21242,1],[21691,1],[22139,1],[22586,1],[23036,1],[23485,1],[23933,1],[24380,1],[24830,1],[25279,1],[25729,1],[26178,1],[26626,1],[27073,1],[27523,1],[27972,1],[28401,1],[28828,1]]},"75":{"position":[[2831,1],[3792,1],[3957,1],[4022,2],[4052,1],[4125,2],[4267,1],[4356,2],[4474,1],[4554,2],[4584,1],[4653,2],[9818,1],[9939,1],[10050,2],[11939,1],[14337,1],[25521,1],[26141,1],[26443,2],[28432,2],[28503,2],[29932,2],[34219,1],[34337,1]]},"76":{"position":[[4397,1],[4471,1],[4523,1],[4573,1],[4626,1],[4651,1],[4857,1],[4934,1],[4987,1],[5038,1],[5091,1],[5117,1],[5326,1],[6178,1],[13092,1],[13220,1],[13331,1],[13461,1],[18661,2]]},"77":{"position":[[4102,2],[4595,3],[8241,2],[8289,1]]},"79":{"position":[[2368,1],[3997,1],[6339,2],[6656,2]]},"81":{"position":[[4578,2]]},"83":{"position":[[8579,1],[11218,1],[11489,1],[11714,1],[11960,1],[12235,1],[12357,1],[12421,1],[14763,1],[14787,1],[16295,2],[18942,4],[22651,1],[38854,1],[39011,1],[39606,1],[48512,2],[52050,2]]},"84":{"position":[[4839,1]]},"87":{"position":[[973,1],[15019,2],[15531,2],[16261,2]]},"88":{"position":[[6049,1],[9321,1],[9488,1],[9653,1],[9818,1],[11731,1],[11803,1],[12270,3],[12326,1],[13128,3],[13260,3],[13427,3],[24018,2],[24372,2],[24666,2],[26951,2],[27172,2],[31040,2],[31763,2],[32041,2],[35374,2],[36029,2],[44332,2]]},"89":{"position":[[2717,1],[3834,2],[4216,2]]},"90":{"position":[[2435,1],[3265,2],[3472,2],[3848,2]]},"91":{"position":[[2168,1],[2794,1],[4060,2],[4487,2]]},"92":{"position":[[7080,1],[7147,1],[7178,1],[7265,1],[7285,1],[7367,1],[7387,1],[7500,1],[7520,1],[7634,2],[7782,1],[7904,1],[25647,1],[40321,1]]},"93":{"position":[[6153,1]]},"105":{"position":[[8147,1],[8419,1],[8645,1],[16450,3],[29923,2],[32963,2],[33287,2]]},"106":{"position":[[11737,1],[11978,1],[12221,1],[13351,1],[13376,1],[13457,1],[13464,1],[23826,2]]},"107":{"position":[[8946,2]]},"108":{"position":[[2839,1],[3260,2],[5021,1]]},"109":{"position":[[1487,1]]},"113":{"position":[[7031,1]]},"124":{"position":[[4376,1],[8362,2],[10960,4],[13167,1],[13918,2]]},"125":{"position":[[2061,1],[2262,1],[6540,1],[6745,1],[10615,1],[10654,1],[11131,2]]},"127":{"position":[[4835,3],[5067,2],[5960,2],[6079,2],[6158,2],[6280,2]]},"128":{"position":[[1617,2],[5168,1],[14654,1],[15234,2],[16851,1],[17354,1],[22055,2],[25477,1]]},"129":{"position":[[5705,2],[6460,3],[6692,2],[7608,2],[7762,2],[8030,2],[8181,2],[8433,2],[8590,2],[8842,2],[8939,2],[9033,2],[9131,2],[9233,2],[9357,2],[9827,2],[9934,2]]},"131":{"position":[[10719,3],[10951,2],[11873,2],[11970,2],[12126,2],[12233,2],[13125,2],[13261,2]]},"133":{"position":[[12161,3],[12393,2],[13898,2],[14070,2],[14921,2],[16295,3],[16527,2],[18058,2],[18254,2],[19087,2],[20599,3],[20831,2],[22362,2],[22558,2],[23171,2],[23982,2],[25613,3],[25845,2],[27376,2],[27572,2],[28374,2],[29238,2],[29434,2],[31766,3],[31998,2],[33503,2],[33675,2],[34526,2],[35881,3],[36113,2],[37644,2],[37840,2],[38673,2],[40186,3],[40418,2],[41949,2],[42145,2],[42978,2],[44438,3],[44670,2],[46201,2],[46560,2],[47173,2],[47940,2],[48136,2]]},"135":{"position":[[4998,1],[5269,1],[5407,1]]},"137":{"position":[[2374,1],[10065,1]]},"138":{"position":[[3144,1],[8242,2],[10164,4],[15014,2]]},"139":{"position":[[4674,1],[5051,1],[5311,1],[9905,2],[19899,1],[21126,1],[25632,4]]},"140":{"position":[[5524,1],[5657,1],[5831,1],[5968,1],[7308,2],[18293,1],[19211,1],[23552,4]]},"141":{"position":[[10006,2],[10294,2]]},"142":{"position":[[3095,1],[3236,1],[3373,1],[3498,1],[13790,1]]},"143":{"position":[[13420,1]]},"144":{"position":[[11116,2],[11207,2]]},"145":{"position":[[11014,2],[11174,2],[11926,2]]},"146":{"position":[[3383,1],[3643,1],[4669,2],[4701,2],[4850,2],[6966,2],[7730,2],[8477,2],[10661,2],[10693,2],[10842,2],[11781,2],[12993,2],[13963,2]]},"148":{"position":[[3140,1],[7000,2]]},"149":{"position":[[7996,3]]},"150":{"position":[[2711,1],[2741,1],[3892,1],[4123,1],[4275,1],[4442,1],[4592,1],[4768,1],[4933,1],[5113,1],[6347,1],[16402,2]]}}}],["0,};void",{"_index":1059,"t":{},"d":{},"k":{},"b":{"69":{"position":[[13665,8]]}}}],["0.0",{"_index":4049,"t":{},"d":{},"k":{},"b":{"88":{"position":[[10549,3]]},"134":{"position":[[2468,3]]},"146":{"position":[[11817,4]]}}}],["0.1000000",{"_index":4037,"t":{},"d":{},"k":{},"b":{"88":{"position":[[7980,9],[8734,9]]}}}],["0.167",{"_index":4035,"t":{},"d":{},"k":{},"b":{"88":{"position":[[7811,5],[8565,5]]}}}],["0.175",{"_index":8007,"t":{},"d":{},"k":{},"b":{"148":{"position":[[3768,5],[4078,5],[4318,5]]}}}],["0.2000000",{"_index":2320,"t":{},"d":{},"k":{},"b":{"75":{"position":[[12225,9]]}}}],["0.4hz",{"_index":6482,"t":{},"d":{},"k":{},"b":{"131":{"position":[[4001,5]]}}}],["0.5",{"_index":4070,"t":{},"d":{},"k":{},"b":{"88":{"position":[[13326,3],[13490,4],[44167,3],[44313,4]]},"132":{"position":[[6388,5]]}}}],["00",{"_index":4507,"t":{},"d":{},"k":{},"b":{"92":{"position":[[13314,2],[13462,2]]},"150":{"position":[[2641,2]]}}}],["0000b",{"_index":5284,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17563,6]]}}}],["0001b",{"_index":5286,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17592,6]]}}}],["000b",{"_index":5350,"t":{},"d":{},"k":{},"b":{"106":{"position":[[19858,5]]}}}],["0010b",{"_index":5289,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17621,6]]}}}],["0011b",{"_index":5292,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17650,6]]}}}],["001b",{"_index":5352,"t":{},"d":{},"k":{},"b":{"106":{"position":[[19939,5]]}}}],["00b",{"_index":1260,"t":{},"d":{},"k":{},"b":{"69":{"position":[[28976,4],[29231,4]]}}}],["010",{"_index":6192,"t":{},"d":{},"k":{},"b":{"128":{"position":[[8946,3],[27276,3]]}}}],["01000",{"_index":6147,"t":{},"d":{},"k":{},"b":{"128":{"position":[[2968,5]]}}}],["010000000",{"_index":6784,"t":{},"d":{},"k":{},"b":{"135":{"position":[[3143,9]]}}}],["0100b",{"_index":5295,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17680,6]]}}}],["0101b",{"_index":5298,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17711,6]]}}}],["01024",{"_index":6326,"t":{},"d":{},"k":{},"b":{"128":{"position":[[25708,5]]}}}],["010b",{"_index":5354,"t":{},"d":{},"k":{},"b":{"106":{"position":[[20020,5]]}}}],["0110b",{"_index":5301,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17742,6]]}}}],["0111b",{"_index":5304,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17773,6]]}}}],["0115200",{"_index":7159,"t":{},"d":{},"k":{},"b":{"139":{"position":[[3189,7]]},"140":{"position":[[2937,7]]}}}],["011b",{"_index":5356,"t":{},"d":{},"k":{},"b":{"106":{"position":[[20101,5]]}}}],["0128",{"_index":6157,"t":{},"d":{},"k":{},"b":{"128":{"position":[[4078,4],[27464,4]]}}}],["016",{"_index":6161,"t":{},"d":{},"k":{},"b":{"128":{"position":[[4606,3]]}}}],["016000000",{"_index":7491,"t":{},"d":{},"k":{},"b":{"142":{"position":[[5203,9]]}}}],["01b",{"_index":1263,"t":{},"d":{},"k":{},"b":{"69":{"position":[[29059,4]]}}}],["03",{"_index":6333,"t":{},"d":{},"k":{},"b":{"128":{"position":[[27085,2]]}}}],["032768",{"_index":8143,"t":{},"d":{},"k":{},"b":{"150":{"position":[[4870,6]]}}}],["04096",{"_index":8138,"t":{},"d":{},"k":{},"b":{"150":{"position":[[4221,5]]}}}],["05",{"_index":6154,"t":{},"d":{},"k":{},"b":{"128":{"position":[[3752,2],[11701,2]]}}}],["065536",{"_index":8140,"t":{},"d":{},"k":{},"b":{"150":{"position":[[4539,6]]}}}],["0;#els",{"_index":6654,"t":{},"d":{},"k":{},"b":{"133":{"position":[[14255,7],[18421,7],[22725,7],[27928,7],[33860,7],[38007,7],[42312,7],[46727,7]]}}}],["0;#endif",{"_index":6651,"t":{},"d":{},"k":{},"b":{"133":{"position":[[13855,8],[14475,8],[18011,8],[18641,8],[22315,8],[22945,8],[27329,8],[28148,8],[33460,8],[34080,8],[37597,8],[38227,8],[41902,8],[42532,8],[46154,8],[46947,8]]}}}],["0;uint32_t",{"_index":7192,"t":{},"d":{},"k":{},"b":{"139":{"position":[[9736,10],[9769,10]]},"140":{"position":[[7140,10],[7173,10]]}}}],["0;void",{"_index":2465,"t":{},"d":{},"k":{},"b":{"75":{"position":[[27019,6]]},"139":{"position":[[9802,6]]},"140":{"position":[[7206,6]]}}}],["0b",{"_index":1258,"t":{},"d":{},"k":{},"b":{"69":{"position":[[28960,3],[29043,3],[29132,3]]},"150":{"position":[[15408,3]]}}}],["0st",{"_index":6534,"t":{},"d":{},"k":{},"b":{"132":{"position":[[1183,3],[1248,3]]}}}],["0th",{"_index":6443,"t":{},"d":{},"k":{},"b":{"130":{"position":[[943,3]]}}}],["0u",{"_index":2678,"t":{},"d":{},"k":{},"b":{"76":{"position":[[9355,3]]},"83":{"position":[[21494,4],[22708,3],[22886,3]]},"124":{"position":[[9630,3]]},"125":{"position":[[13066,3]]},"133":{"position":[[13989,3],[14150,3],[14370,3],[14828,3],[18161,3],[18316,3],[18536,3],[18994,3],[22465,3],[22620,3],[22840,3],[23066,3],[23889,3],[27479,3],[27823,3],[28043,3],[28269,3],[29145,3],[29341,3],[33594,3],[33755,3],[33975,3],[34433,3],[37747,3],[37902,3],[38122,3],[38580,3],[42052,3],[42207,3],[42427,3],[42885,3],[46304,3],[46622,3],[46842,3],[47068,3],[47847,3],[48043,3]]},"138":{"position":[[9524,3]]},"148":{"position":[[8820,3]]},"150":{"position":[[9214,3],[9243,3],[9301,3],[9330,3],[9359,2],[10614,3],[10656,3],[11316,3],[11345,3],[11403,3],[11461,2],[12533,3],[12562,3],[12620,3],[12678,2],[13367,3],[14481,3]]}}}],["0u;uint32_t",{"_index":2670,"t":{},"d":{},"k":{},"b":{"76":{"position":[[8842,11]]},"83":{"position":[[22172,11]]}}}],["0u;void",{"_index":2672,"t":{},"d":{},"k":{},"b":{"76":{"position":[[8876,7]]},"83":{"position":[[22206,7]]}}}],["0x00",{"_index":5987,"t":{},"d":{},"k":{},"b":{"125":{"position":[[1048,4],[3225,5],[5750,4]]}}}],["0x0000",{"_index":5120,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2935,6],[3089,6],[3242,6],[3395,6],[3548,6],[3701,6],[3854,6],[4007,6],[4160,6],[4313,6],[4466,6],[4620,6],[4775,6],[4930,6],[5085,6],[5240,6],[5395,6],[5550,6],[5705,6],[5860,6],[6015,6],[6384,6],[6559,6],[6734,6],[6909,6],[7084,6],[7259,6],[7434,6],[7609,6],[7784,6],[7959,6],[8135,6],[8479,6],[8632,6],[8785,6],[8938,6],[9812,6],[9954,6],[10290,6],[10495,6],[10892,6],[11280,6]]}}}],["0x00000000",{"_index":2383,"t":{},"d":{},"k":{},"b":{"75":{"position":[[18832,11]]}}}],["0x00000001~0x100000000",{"_index":3660,"t":{},"d":{},"k":{},"b":{"84":{"position":[[3196,22]]}}}],["0x00000cu",{"_index":8235,"t":{},"d":{},"k":{},"b":{"150":{"position":[[13331,10]]}}}],["0x0000_0000",{"_index":3668,"t":{},"d":{},"k":{},"b":{"84":{"position":[[5193,12],[5276,11]]}}}],["0x0003",{"_index":4681,"t":{},"d":{},"k":{},"b":{"92":{"position":[[40293,6]]}}}],["0x00999999",{"_index":1882,"t":{},"d":{},"k":{},"b":{"71":{"position":[[11959,11]]}}}],["0x00u)#defin",{"_index":8203,"t":{},"d":{},"k":{},"b":{"150":{"position":[[8960,14]]}}}],["0x01u)#defin",{"_index":8199,"t":{},"d":{},"k":{},"b":{"150":{"position":[[8854,14]]}}}],["0x02u)stat",{"_index":8205,"t":{},"d":{},"k":{},"b":{"150":{"position":[[9013,13]]}}}],["0x04",{"_index":8246,"t":{},"d":{},"k":{},"b":{"150":{"position":[[14198,4],[14427,5]]}}}],["0x05u)void",{"_index":8219,"t":{},"d":{},"k":{},"b":{"150":{"position":[[11130,11]]}}}],["0x06",{"_index":7579,"t":{},"d":{},"k":{},"b":{"143":{"position":[[2691,5]]}}}],["0x06u)#defin",{"_index":8197,"t":{},"d":{},"k":{},"b":{"150":{"position":[[8801,14]]}}}],["0x1000",{"_index":1809,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6878,6],[10434,8]]}}}],["0x10000",{"_index":3323,"t":{},"d":{},"k":{},"b":{"83":{"position":[[6357,7]]},"113":{"position":[[15574,7]]}}}],["0x10000).0x10000",{"_index":4882,"t":{},"d":{},"k":{},"b":{"105":{"position":[[5437,17],[5586,17],[5735,17],[5884,17]]}}}],["0x100000000",{"_index":2645,"t":{},"d":{},"k":{},"b":{"76":{"position":[[6026,11],[6065,11]]},"83":{"position":[[6333,11],[16130,12]]},"84":{"position":[[3304,12],[4691,11]]}}}],["0x1000uint32_t",{"_index":5233,"t":{},"d":{},"k":{},"b":{"106":{"position":[[13601,14]]}}}],["0x1100",{"_index":2457,"t":{},"d":{},"k":{},"b":{"75":{"position":[[26111,6],[26198,7]]}}}],["0x1fff0x0",{"_index":5217,"t":{},"d":{},"k":{},"b":{"106":{"position":[[10301,9],[10506,9]]}}}],["0x1fff0x000a",{"_index":5127,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3253,12],[5871,12]]}}}],["0x1fff0x0018",{"_index":5133,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3559,12],[5561,12]]}}}],["0x1fff0x0034",{"_index":5139,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3865,12],[5251,12]]}}}],["0x1fff0x0039",{"_index":5177,"t":{},"d":{},"k":{},"b":{"106":{"position":[[6570,12],[7970,12]]}}}],["0x1fff0x003c",{"_index":5180,"t":{},"d":{},"k":{},"b":{"106":{"position":[[6745,12],[7795,12]]}}}],["0x1fff0x0076",{"_index":5145,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4171,12],[4941,12]]}}}],["0x1fff0x01dc",{"_index":5186,"t":{},"d":{},"k":{},"b":{"106":{"position":[[7095,12],[7445,12]]}}}],["0x1fff0x0289",{"_index":5151,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4477,12],[4631,12]]}}}],["0x1fff0x0400",{"_index":5121,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2946,12]]}}}],["0x1fff0x06e1",{"_index":5189,"t":{},"d":{},"k":{},"b":{"106":{"position":[[7270,12]]}}}],["0x1fff0x1e56",{"_index":5183,"t":{},"d":{},"k":{},"b":{"106":{"position":[[6920,12],[7620,12]]}}}],["0x1fff0x1f2e",{"_index":5148,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4324,12],[4786,12]]}}}],["0x1fff0x1fb3",{"_index":5142,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4018,12],[5096,12]]}}}],["0x1fff0x1fdc",{"_index":5136,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3712,12],[5406,12]]}}}],["0x1fff0x1fe8",{"_index":5174,"t":{},"d":{},"k":{},"b":{"106":{"position":[[6395,12],[8146,12]]}}}],["0x1fff0x1ff0",{"_index":5130,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3406,12],[5716,12]]}}}],["0x1fff0x1ff8",{"_index":5124,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3100,12],[6026,12]]}}}],["0x1fffffff",{"_index":2388,"t":{},"d":{},"k":{},"b":{"75":{"position":[[19091,11],[26401,11]]}}}],["0x20",{"_index":2474,"t":{},"d":{},"k":{},"b":{"75":{"position":[[28177,4]]}}}],["0x20)can_frame_t",{"_index":2461,"t":{},"d":{},"k":{},"b":{"75":{"position":[[26905,17]]}}}],["0x30",{"_index":6490,"t":{},"d":{},"k":{},"b":{"131":{"position":[[6743,5]]}}}],["0x38u)#defin",{"_index":8201,"t":{},"d":{},"k":{},"b":{"150":{"position":[[8907,14]]}}}],["0x40",{"_index":2451,"t":{},"d":{},"k":{},"b":{"75":{"position":[[25500,4],[25592,5]]}}}],["0x4000000",{"_index":3325,"t":{},"d":{},"k":{},"b":{"83":{"position":[[6499,9]]}}}],["0x40000000",{"_index":8304,"t":{},"d":{},"k":{},"b":{"150":{"position":[[19206,11]]}}}],["0x40000000000",{"_index":3324,"t":{},"d":{},"k":{},"b":{"83":{"position":[[6473,13],[15919,13]]}}}],["0x400000000001",{"_index":3322,"t":{},"d":{},"k":{},"b":{"83":{"position":[[6250,14]]}}}],["0x4f",{"_index":2452,"t":{},"d":{},"k":{},"b":{"75":{"position":[[25505,4]]}}}],["0x5a",{"_index":8242,"t":{},"d":{},"k":{},"b":{"150":{"position":[[13703,4],[14125,4]]}}}],["0x5a)void",{"_index":8225,"t":{},"d":{},"k":{},"b":{"150":{"position":[[12077,10]]}}}],["0x5f",{"_index":2536,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33224,5]]}}}],["0x60000000",{"_index":8164,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6817,10],[19192,10]]}}}],["0x60000000(secur",{"_index":8163,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6688,17]]}}}],["0x67ffffff",{"_index":8165,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6831,10]]}}}],["0x68000000",{"_index":8167,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6861,10]]}}}],["0x6fffffff",{"_index":8168,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6875,10]]}}}],["0x70000000",{"_index":8170,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6905,10]]}}}],["0x70000000(non",{"_index":8162,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6639,14]]}}}],["0x77ffffff",{"_index":8171,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6919,10]]}}}],["0x78000000",{"_index":8172,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6953,10]]}}}],["0x7f",{"_index":2538,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33298,5]]}}}],["0x7f0",{"_index":2453,"t":{},"d":{},"k":{},"b":{"75":{"position":[[25754,6]]}}}],["0x7fffffff",{"_index":8173,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6967,10]]}}}],["0x8000_0000",{"_index":2994,"t":{},"d":{},"k":{},"b":{"79":{"position":[[7028,12]]}}}],["0x9f)#defin",{"_index":8223,"t":{},"d":{},"k":{},"b":{"150":{"position":[[12029,13]]}}}],["0x9fff_ffff",{"_index":2995,"t":{},"d":{},"k":{},"b":{"79":{"position":[[7044,12]]}}}],["0xaa",{"_index":5948,"t":{},"d":{},"k":{},"b":{"124":{"position":[[11674,5]]}}}],["0xbb",{"_index":5951,"t":{},"d":{},"k":{},"b":{"124":{"position":[[11722,5]]}}}],["0xc",{"_index":8244,"t":{},"d":{},"k":{},"b":{"150":{"position":[[13786,5]]}}}],["0xff",{"_index":5998,"t":{},"d":{},"k":{},"b":{"125":{"position":[[7328,4]]}}}],["0xffff",{"_index":2664,"t":{},"d":{},"k":{},"b":{"76":{"position":[[8041,6],[17702,6],[23592,6]]},"84":{"position":[[11319,7],[16154,7]]},"92":{"position":[[40278,7]]},"105":{"position":[[13006,6],[32155,7],[33172,7]]}}}],["0xffff).0",{"_index":4900,"t":{},"d":{},"k":{},"b":{"105":{"position":[[8870,10],[9107,10]]}}}],["0xffff0x3ec1",{"_index":5206,"t":{},"d":{},"k":{},"b":{"106":{"position":[[8643,12]]}}}],["0xffff0x3f61",{"_index":5203,"t":{},"d":{},"k":{},"b":{"106":{"position":[[8490,12]]}}}],["0xffff0x4000",{"_index":5208,"t":{},"d":{},"k":{},"b":{"106":{"position":[[8796,12]]}}}],["0xffff0xc000",{"_index":5209,"t":{},"d":{},"k":{},"b":{"106":{"position":[[8949,12]]}}}],["0xffff_ffff",{"_index":3669,"t":{},"d":{},"k":{},"b":{"84":{"position":[[5291,12]]}}}],["0xfffff0x0",{"_index":5214,"t":{},"d":{},"k":{},"b":{"106":{"position":[[9823,10],[9965,10],[10903,10],[11291,10]]}}}],["0xffffffff",{"_index":322,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2212,11]]},"71":{"position":[[45447,12]]},"76":{"position":[[8068,10],[17734,10],[23624,10]]},"77":{"position":[[3458,10],[3722,11]]},"83":{"position":[[21247,10]]}}}],["0xffffffff).0",{"_index":3348,"t":{},"d":{},"k":{},"b":{"83":{"position":[[13591,14],[13826,14],[14058,14],[14272,14]]}}}],["0xffffffff.0",{"_index":1853,"t":{},"d":{},"k":{},"b":{"71":{"position":[[10297,12]]}}}],["0xffffffff0x200",{"_index":1850,"t":{},"d":{},"k":{},"b":{"71":{"position":[[9853,15],[10036,15]]}}}],["1",{"_index":557,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14466,2],[15744,2],[16166,2]]},"68":{"position":[[1460,2],[2052,1],[2400,2],[3420,1],[3450,1],[7274,1],[7517,1],[7683,1],[8636,1],[13034,3],[13644,3],[15903,3],[16415,3],[17714,1],[18336,1],[22268,1]]},"69":{"position":[[4229,1],[4470,1],[5283,1],[6416,1],[6709,1],[6896,1],[7135,1],[16576,1],[16669,1],[18245,3],[21937,1],[30218,1]]},"70":{"position":[[2410,2],[3997,2],[4032,1],[4073,1],[4079,2],[4161,2],[4243,2],[4325,2],[4407,2],[4530,2],[4612,2],[4735,2],[4858,2],[4942,2],[5026,2],[5110,2],[5194,2],[5320,2],[5404,2],[5488,2],[5572,2],[5698,2],[5782,2],[5866,2],[5992,2],[6076,2],[6160,2],[6244,2],[6328,2],[6412,2],[6496,2],[6580,2],[6664,2],[6748,2],[6832,2],[6916,2],[7000,2],[7084,2],[7168,2],[7252,2],[7336,2],[7462,2],[7546,2],[7672,2],[7798,2],[7882,2],[8092,2],[8260,2],[8428,2],[8596,2],[8764,2],[8932,2],[10537,2],[10804,2]]},"71":{"position":[[2655,1],[7870,1]]},"74":{"position":[[1496,1],[1547,1]]},"75":{"position":[[1207,1],[1279,1],[2111,1],[2118,1],[3396,2],[4683,1],[4749,2],[4779,1],[4852,2],[4994,1],[5083,2],[5201,1],[5281,2],[5311,1],[5380,2],[10098,1],[10209,2],[12542,1],[12587,1],[13120,1],[13165,1],[15118,3],[15356,2],[15487,1],[15520,1],[15618,1],[15674,1],[15687,3],[19133,2],[19166,2],[22352,1],[25535,1],[25791,2],[25824,1],[26476,1],[34281,1],[34387,1]]},"76":{"position":[[4702,1],[4754,1],[4804,1],[4882,1],[5169,1],[5222,1],[5273,1],[5352,1],[6214,1],[13155,1],[13276,1],[13395,1],[13518,1],[17697,1],[17729,1],[23587,1],[23619,1]]},"77":{"position":[[1161,1]]},"78":{"position":[[4765,2],[4827,2],[4895,2],[5027,2],[5187,2]]},"79":{"position":[[1475,2],[2485,1],[2623,1],[4312,1],[4453,1],[4543,1],[4623,1],[4863,1],[5048,1],[5277,1],[6120,1]]},"81":{"position":[[4619,2]]},"82":{"position":[[6892,2]]},"83":{"position":[[2153,2],[2759,2],[3283,2],[10526,1],[10697,1],[12373,1],[14766,1],[39168,1],[39325,1],[39678,1],[43453,1]]},"84":{"position":[[3284,2],[4875,1],[11314,1],[16149,1]]},"85":{"position":[[9049,1]]},"86":{"position":[[6745,1]]},"87":{"position":[[15070,2],[15577,2],[16309,2]]},"88":{"position":[[5595,2],[11749,1],[14619,1],[20377,3],[24375,3],[24809,3],[27175,2],[32177,3],[35377,3],[39749,2],[39954,1],[41147,1],[41257,1],[41360,1],[41464,1],[42242,1],[42330,1],[42451,1],[42573,1],[48158,2],[49826,2]]},"89":{"position":[[3341,3]]},"91":{"position":[[3422,3]]},"92":{"position":[[3268,1],[3353,1],[3379,1],[3478,1],[3504,1],[3590,2],[4219,1],[4324,1],[4429,1],[4534,1],[4639,1],[4744,1],[4849,1],[4954,1],[5059,1],[5143,1],[5168,1],[5231,1],[5267,1],[5366,1],[5391,1],[5486,1],[5511,1],[7924,1],[7991,1],[8022,1],[8109,1],[8129,1],[8211,1],[8231,1],[8344,1],[8364,1],[8478,2],[8626,1],[8748,1],[14250,3],[25710,1],[40327,1]]},"93":{"position":[[6144,1],[7113,1]]},"105":{"position":[[1985,2],[5425,1],[5574,1],[5723,1],[5872,1],[6034,1],[6549,1],[6630,1],[6853,1],[6930,1],[9454,1],[9470,1],[9508,1],[9612,1],[9778,1],[9952,1],[10098,1],[10114,1],[10152,1],[10256,1],[10421,1],[10594,1],[18420,1],[18524,1],[22136,1],[32150,1],[33167,1]]},"106":{"position":[[1899,2],[2130,2],[2187,2],[2244,2],[2301,2],[2358,2],[2712,1],[6162,1],[8279,1],[9040,1],[9087,1],[9201,1],[9454,1],[9535,1],[18235,1],[18571,1],[18938,1],[19296,1],[19565,1],[19896,1]]},"107":{"position":[[7898,1],[8285,1],[8381,1],[8477,1],[8573,1],[8669,1],[8928,1]]},"108":{"position":[[2263,1],[2338,1],[3302,2]]},"109":{"position":[[1513,1]]},"113":{"position":[[7091,2],[7154,2]]},"124":{"position":[[1619,1],[3573,1],[13186,2],[14005,2]]},"125":{"position":[[931,1],[2614,1],[2707,1],[10634,1],[10673,1]]},"127":{"position":[[4615,1],[5008,2],[5330,1],[6062,3],[6263,3]]},"128":{"position":[[5059,1]]},"129":{"position":[[6240,1],[6633,2],[6955,1],[9677,2]]},"131":{"position":[[10499,1],[10892,2],[11214,1]]},"133":{"position":[[11941,1],[12334,2],[12656,1],[14082,3],[16075,1],[16468,2],[16790,1],[17941,3],[20379,1],[20772,2],[21094,1],[22245,3],[23473,3],[25393,1],[25786,2],[26108,1],[27259,3],[28729,3],[29970,3],[31546,1],[31939,2],[32261,1],[33687,3],[35661,1],[36054,2],[36376,1],[37527,3],[39966,1],[40359,2],[40681,1],[41832,3],[44218,1],[44611,2],[44933,1],[46084,3],[47431,3],[48473,3]]},"134":{"position":[[3085,1]]},"135":{"position":[[4446,1],[4569,1],[9433,1],[9838,1],[10263,1],[15093,1],[16051,1]]},"136":{"position":[[1672,2],[3034,1],[5057,1],[8701,1],[8840,3],[9360,3],[10142,1],[10195,1],[15879,1]]},"137":{"position":[[2385,2],[10117,1],[12819,1]]},"138":{"position":[[3924,1],[4160,1]]},"139":{"position":[[4677,1],[11492,2],[11631,2]]},"140":{"position":[[8861,2],[9000,2],[14340,1],[16000,2]]},"141":{"position":[[10090,2],[10353,2]]},"142":{"position":[[5549,1],[5628,1],[5723,1],[5802,1],[5895,1],[5974,1],[10434,1],[10847,1],[11281,1],[13798,1],[17537,1]]},"143":{"position":[[2201,1],[11723,1],[13136,1],[13462,1]]},"144":{"position":[[11274,2],[13226,2]]},"146":{"position":[[1410,2],[1628,2],[9918,3]]},"147":{"position":[[2133,2],[10974,1]]},"148":{"position":[[4254,1]]},"150":{"position":[[2726,1],[5534,1],[5649,1],[6369,1],[9725,1],[15601,2],[16463,2],[17083,1],[18202,1],[18464,1]]}}}],["1(latest",{"_index":7845,"t":{},"d":{},"k":{},"b":{"146":{"position":[[2343,8],[2373,8]]}}}],["1.1mhz",{"_index":1653,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13502,6]]}}}],["1.2v",{"_index":1627,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12067,5]]}}}],["1.8v",{"_index":1612,"t":{},"d":{},"k":{},"b":{"70":{"position":[[11018,5],[11249,5],[11480,5],[11787,5],[12021,5]]}}}],["1/10",{"_index":5296,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17687,4]]}}}],["1/12",{"_index":5299,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17718,4]]}}}],["1/128",{"_index":6928,"t":{},"d":{},"k":{},"b":{"136":{"position":[[1711,5]]},"137":{"position":[[12190,5]]}}}],["1/14",{"_index":5302,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17749,4]]}}}],["1/16",{"_index":5305,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17780,4]]},"136":{"position":[[1690,5]]},"137":{"position":[[12467,4]]}}}],["1/18",{"_index":5308,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17811,4]]}}}],["1/2",{"_index":1962,"t":{},"d":{},"k":{},"b":{"71":{"position":[[28891,5],[29045,5],[29239,5],[29574,5],[29843,5],[30268,5],[30470,5],[30663,5],[30861,5],[31279,5],[36301,5],[47577,5],[47847,5]]},"106":{"position":[[17570,3]]},"136":{"position":[[1675,4]]},"137":{"position":[[12738,3]]}}}],["1/20",{"_index":5311,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17842,4]]}}}],["1/22",{"_index":5314,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17873,4]]}}}],["1/24",{"_index":5317,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17904,4]]}}}],["1/256",{"_index":7073,"t":{},"d":{},"k":{},"b":{"137":{"position":[[12096,5]]}}}],["1/26",{"_index":5320,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17935,4]]}}}],["1/28",{"_index":5323,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17966,4]]}}}],["1/30",{"_index":5326,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17997,4]]}}}],["1/32",{"_index":5329,"t":{},"d":{},"k":{},"b":{"106":{"position":[[18028,4]]},"136":{"position":[[1696,5]]},"137":{"position":[[12375,4]]}}}],["1/4",{"_index":5287,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17599,3]]},"136":{"position":[[1680,4]]},"137":{"position":[[12648,3]]}}}],["1/6",{"_index":5290,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17628,3]]}}}],["1/64",{"_index":6927,"t":{},"d":{},"k":{},"b":{"136":{"position":[[1702,5]]},"137":{"position":[[12283,4]]}}}],["1/8",{"_index":5293,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17657,3]]},"136":{"position":[[1685,4]]},"137":{"position":[[12558,3]]}}}],["10",{"_index":513,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12753,2],[14746,3]]},"70":{"position":[[2662,3],[4893,2],[4935,2]]},"83":{"position":[[44120,2]]},"85":{"position":[[9283,2]]},"86":{"position":[[6975,2]]},"88":{"position":[[12719,2],[51086,2]]},"92":{"position":[[13325,2],[13473,2]]},"124":{"position":[[1915,2],[2393,2],[2482,2],[3706,2],[3758,2],[3821,2]]},"125":{"position":[[1089,2],[3254,2]]},"127":{"position":[[2882,2]]},"131":{"position":[[3812,2],[3904,2]]},"136":{"position":[[5045,2],[5073,2],[7662,3]]},"138":{"position":[[1997,2],[2503,2],[2592,2],[3273,2]]},"140":{"position":[[15249,2],[16197,3],[23647,4]]},"141":{"position":[[8349,2]]},"143":{"position":[[13841,2]]},"150":{"position":[[17588,2]]}}}],["10.667",{"_index":8011,"t":{},"d":{},"k":{},"b":{"148":{"position":[[4271,6],[4291,6]]}}}],["100",{"_index":803,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11328,4],[14195,4]]},"71":{"position":[[45254,3]]},"80":{"position":[[4865,3]]},"83":{"position":[[25211,7],[25916,4]]},"85":{"position":[[8983,3]]},"86":{"position":[[6681,3]]},"88":{"position":[[49891,4]]},"105":{"position":[[15531,7]]},"124":{"position":[[1504,3]]},"125":{"position":[[816,3]]},"128":{"position":[[4477,3]]},"138":{"position":[[1502,3]]},"149":{"position":[[7682,5]]}}}],["100)void",{"_index":4514,"t":{},"d":{},"k":{},"b":{"92":{"position":[[13689,9]]}}}],["1000",{"_index":4083,"t":{},"d":{},"k":{},"b":{"88":{"position":[[14805,4]]},"139":{"position":[[25328,4]]},"140":{"position":[[23248,4]]}}}],["1000)#defin",{"_index":2684,"t":{},"d":{},"k":{},"b":{"76":{"position":[[10159,13]]},"83":{"position":[[23626,13]]},"84":{"position":[[7430,13]]}}}],["10000",{"_index":4042,"t":{},"d":{},"k":{},"b":{"88":{"position":[[8381,5],[9135,5]]}}}],["1000000)#defin",{"_index":4916,"t":{},"d":{},"k":{},"b":{"105":{"position":[[13693,16]]}}}],["100000ns/500n",{"_index":2081,"t":{},"d":{},"k":{},"b":{"71":{"position":[[45280,14]]}}}],["1000b",{"_index":5307,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17804,6]]}}}],["1000hz",{"_index":6150,"t":{},"d":{},"k":{},"b":{"128":{"position":[[3303,7]]}}}],["1001b",{"_index":5310,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17835,6]]}}}],["1005",{"_index":7161,"t":{},"d":{},"k":{},"b":{"139":{"position":[[3839,4]]},"140":{"position":[[3355,4]]}}}],["10050",{"_index":3336,"t":{},"d":{},"k":{},"b":{"83":{"position":[[8585,5]]}}}],["100b",{"_index":5358,"t":{},"d":{},"k":{},"b":{"106":{"position":[[20183,5]]}}}],["100k",{"_index":7094,"t":{},"d":{},"k":{},"b":{"138":{"position":[[6434,6]]}}}],["1010",{"_index":6670,"t":{},"d":{},"k":{},"b":{"133":{"position":[[27671,4]]}}}],["1010b",{"_index":5313,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17866,6]]}}}],["1011b",{"_index":5316,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17897,6]]}}}],["1024",{"_index":2142,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1500,5]]},"75":{"position":[[15676,4]]},"79":{"position":[[13434,4]]},"83":{"position":[[6546,4],[16035,5]]},"105":{"position":[[22865,4],[23268,4],[23557,4],[23741,4]]},"144":{"position":[[13787,5]]},"145":{"position":[[13246,4],[13759,4]]},"149":{"position":[[6714,4]]}}}],["1024)#defin",{"_index":8175,"t":{},"d":{},"k":{},"b":{"150":{"position":[[7257,13]]}}}],["1024.the",{"_index":3310,"t":{},"d":{},"k":{},"b":{"83":{"position":[[3782,8],[4119,8]]},"84":{"position":[[2190,8]]},"105":{"position":[[3859,8]]}}}],["10k",{"_index":7093,"t":{},"d":{},"k":{},"b":{"138":{"position":[[6426,4]]}}}],["10m",{"_index":6379,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1209,4],[4447,4],[7672,4],[14491,4]]}}}],["10mhz",{"_index":1019,"t":{},"d":{},"k":{},"b":{"69":{"position":[[9951,5]]}}}],["11",{"_index":575,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14779,3]]},"70":{"position":[[2691,3],[4977,2],[5019,2]]},"74":{"position":[[9542,2]]},"83":{"position":[[44196,2]]},"88":{"position":[[12735,2],[51173,2]]},"136":{"position":[[7680,3],[7750,3]]},"140":{"position":[[15352,2]]},"141":{"position":[[8406,2]]},"143":{"position":[[13885,2]]},"150":{"position":[[17646,2]]}}}],["1100b",{"_index":5319,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17928,6]]}}}],["1101b",{"_index":5322,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17959,6]]}}}],["111",{"_index":4134,"t":{},"d":{},"k":{},"b":{"88":{"position":[[22109,3]]}}}],["1110b",{"_index":5325,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17990,6]]}}}],["1111b",{"_index":5328,"t":{},"d":{},"k":{},"b":{"106":{"position":[[18021,6]]}}}],["115200",{"_index":7285,"t":{},"d":{},"k":{},"b":{"139":{"position":[[25174,7]]},"140":{"position":[[23123,7]]}}}],["11898",{"_index":2251,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1273,5],[3390,5]]}}}],["11b",{"_index":4461,"t":{},"d":{},"k":{},"b":{"92":{"position":[[3669,4],[4145,4],[7713,4],[8557,4],[9401,4],[10245,4]]}}}],["12",{"_index":511,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12711,2],[14812,3]]},"68":{"position":[[1368,2],[3845,2],[22739,2]]},"69":{"position":[[1308,2],[2689,2],[2704,2]]},"70":{"position":[[2720,3],[5061,2],[5103,2]]},"75":{"position":[[2352,2],[17996,2],[18080,2]]},"83":{"position":[[44272,2]]},"88":{"position":[[12751,2],[12780,2],[51260,2],[51364,2]]},"91":{"position":[[4135,3]]},"92":{"position":[[22438,2],[24835,2]]},"129":{"position":[[2235,2],[16612,2]]},"131":{"position":[[3820,2],[3912,2],[12415,2]]},"136":{"position":[[7698,3]]},"140":{"position":[[15455,2],[16248,3]]},"141":{"position":[[8463,2]]},"143":{"position":[[13929,2]]},"150":{"position":[[17704,2]]}}}],["12),};const",{"_index":7883,"t":{},"d":{},"k":{},"b":{"146":{"position":[[7660,12]]}}}],["12),};fsp_err_t",{"_index":7886,"t":{},"d":{},"k":{},"b":{"146":{"position":[[8205,16]]}}}],["12),};volatil",{"_index":7867,"t":{},"d":{},"k":{},"b":{"146":{"position":[[5319,15],[11311,15]]}}}],["12,};const",{"_index":808,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11741,10],[14608,10]]},"146":{"position":[[4782,10],[10774,10]]}}}],["12.1mhz",{"_index":1656,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13572,7]]}}}],["12.5",{"_index":920,"t":{},"d":{},"k":{},"b":{"68":{"position":[[22601,4],[22660,4],[22720,4],[22781,4]]}}}],["120",{"_index":2482,"t":{},"d":{},"k":{},"b":{"75":{"position":[[28970,3]]},"88":{"position":[[21877,3]]},"129":{"position":[[1708,3],[15490,3]]}}}],["120u",{"_index":6380,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1341,6],[4524,6],[4608,6],[7825,6],[7868,6],[14623,6]]}}}],["123",{"_index":8337,"t":{},"d":{},"k":{},"b":{"152":{"position":[[105,4]]}}}],["125",{"_index":7916,"t":{},"d":{},"k":{},"b":{"146":{"position":[[14286,4]]}}}],["125)#defin",{"_index":7894,"t":{},"d":{},"k":{},"b":{"146":{"position":[[10235,12]]}}}],["12515",{"_index":7846,"t":{},"d":{},"k":{},"b":{"146":{"position":[[2826,5]]}}}],["12525",{"_index":7848,"t":{},"d":{},"k":{},"b":{"146":{"position":[[2942,5]]}}}],["127.5",{"_index":4274,"t":{},"d":{},"k":{},"b":{"88":{"position":[[44191,5]]}}}],["128",{"_index":2255,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1441,3],[2173,3],[15527,3],[17145,3]]},"79":{"position":[[1499,3],[2550,3],[2688,3],[6188,3],[13217,3]]},"108":{"position":[[2318,3]]},"125":{"position":[[2694,3]]},"144":{"position":[[13612,4]]},"145":{"position":[[13050,3],[13563,3]]},"149":{"position":[[6643,3]]}}}],["12mhz",{"_index":1654,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13512,6]]}}}],["13",{"_index":578,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14845,3]]},"70":{"position":[[2749,3],[5145,2],[5187,2],[5229,2]]},"83":{"position":[[44348,2]]},"106":{"position":[[16297,3],[16416,3],[16539,3]]},"140":{"position":[[15558,2]]},"141":{"position":[[8520,2]]},"143":{"position":[[13973,2]]},"150":{"position":[[17762,2]]}}}],["1333",{"_index":2076,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44798,4]]}}}],["14",{"_index":517,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12835,2],[14878,3]]},"70":{"position":[[2778,3],[5271,2],[5313,2]]},"83":{"position":[[44424,2]]},"131":{"position":[[3828,2],[3836,2],[3920,2],[3928,2]]},"140":{"position":[[15661,2],[16299,3]]},"141":{"position":[[8577,2]]},"143":{"position":[[14017,2]]},"150":{"position":[[17820,2]]}}}],["14,592",{"_index":2270,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2283,6]]}}}],["14.19",{"_index":3059,"t":{},"d":{},"k":{},"b":{"79":{"position":[[13597,5],[14014,5],[14625,5],[15201,5]]}}}],["14.3",{"_index":2957,"t":{},"d":{},"k":{},"b":{"79":{"position":[[1402,5]]}}}],["14.5.2",{"_index":2958,"t":{},"d":{},"k":{},"b":{"79":{"position":[[1411,7]]}}}],["14:0",{"_index":5112,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2374,6]]},"107":{"position":[[8640,6]]}}}],["14m",{"_index":6386,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1788,4],[4666,4],[8244,5],[8653,5],[15570,4]]}}}],["15",{"_index":581,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14911,3]]},"69":{"position":[[20971,2]]},"70":{"position":[[2807,3],[5355,2],[5397,2]]},"71":{"position":[[2660,3],[2740,2]]},"83":{"position":[[44500,2]]},"106":{"position":[[13373,2]]},"128":{"position":[[15185,2]]},"139":{"position":[[25404,6],[25754,4]]},"140":{"position":[[5107,2],[15764,2],[16350,3],[23324,6]]},"141":{"position":[[8634,2]]},"143":{"position":[[14061,2]]},"150":{"position":[[17878,2]]}}}],["15.0",{"_index":2966,"t":{},"d":{},"k":{},"b":{"79":{"position":[[2374,4]]}}}],["15000",{"_index":7291,"t":{},"d":{},"k":{},"b":{"139":{"position":[[25398,5]]},"140":{"position":[[23318,5]]}}}],["156",{"_index":4132,"t":{},"d":{},"k":{},"b":{"88":{"position":[[21835,3]]}}}],["15:1",{"_index":5111,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2317,6]]},"107":{"position":[[8544,6]]}}}],["15etu",{"_index":7371,"t":{},"d":{},"k":{},"b":{"140":{"position":[[14065,5],[14163,5],[14261,5],[14361,5],[14462,5],[14563,5],[14664,5],[14765,5],[14866,5],[14967,5],[15068,5],[15169,5],[15272,5],[15375,5],[15478,5],[15581,5],[15684,5],[15787,5]]}}}],["16",{"_index":519,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12877,2],[14944,3]]},"68":{"position":[[3856,2],[22800,2]]},"69":{"position":[[4872,2],[4993,2],[5810,2],[5931,2],[7350,2]]},"70":{"position":[[2836,3],[5439,2],[5481,2]]},"75":{"position":[[1371,2],[15534,2],[15575,2],[15777,2],[15867,2]]},"76":{"position":[[2888,2],[8048,3],[11662,2],[17452,2]]},"77":{"position":[[646,2],[860,2],[965,3],[2080,2]]},"78":{"position":[[189,2],[4792,2],[4803,2],[4857,2]]},"79":{"position":[[1487,3],[2520,2],[2658,2],[6155,2],[13006,2]]},"83":{"position":[[3884,2],[6365,3],[6509,3],[10558,2],[10729,2],[44576,2]]},"88":{"position":[[12114,4]]},"92":{"position":[[22522,2],[24919,2]]},"105":{"position":[[1694,2],[1803,2],[3732,2],[13019,2],[22237,2]]},"106":{"position":[[2117,2],[2174,2],[2231,2],[2288,2],[2345,2],[9518,2],[13173,2],[13307,2],[13358,2],[15981,3],[16078,3],[16179,3],[20221,2]]},"107":{"position":[[8239,2],[8335,2],[8431,2],[8527,2],[8623,2]]},"125":{"position":[[2658,2]]},"128":{"position":[[4812,2],[5251,2],[5306,2]]},"135":{"position":[[1225,2],[1276,2],[4458,2],[13689,2],[13770,2],[13845,2],[16296,2]]},"139":{"position":[[7429,3],[20141,2],[21372,2]]},"140":{"position":[[6339,3]]},"141":{"position":[[8691,2]]},"142":{"position":[[1351,2],[9226,2],[15089,2],[15170,2],[15248,2],[15323,2]]},"143":{"position":[[14105,2]]},"144":{"position":[[11680,2],[13443,3]]},"145":{"position":[[12672,2],[12860,2],[13373,2]]},"150":{"position":[[13089,4],[17936,2]]}}}],["16/32",{"_index":6802,"t":{},"d":{},"k":{},"b":{"135":{"position":[[6123,5]]},"142":{"position":[[5054,5],[7003,5],[17252,5],[17323,5]]}}}],["16/ch",{"_index":2267,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2202,5]]}}}],["16384",{"_index":8009,"t":{},"d":{},"k":{},"b":{"148":{"position":[[4180,5],[4303,5]]},"149":{"position":[[6863,5]]}}}],["16384u)#defin",{"_index":8019,"t":{},"d":{},"k":{},"b":{"148":{"position":[[5991,15]]}}}],["16:2",{"_index":5110,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2260,6]]},"107":{"position":[[8448,6]]}}}],["16bit",{"_index":2765,"t":{},"d":{},"k":{},"b":{"76":{"position":[[17712,5],[23602,5]]},"128":{"position":[[5121,5],[5490,5]]}}}],["16mb",{"_index":8277,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16804,5]]}}}],["16x",{"_index":7172,"t":{},"d":{},"k":{},"b":{"139":{"position":[[5615,3],[15449,3]]},"140":{"position":[[12247,3]]}}}],["17",{"_index":584,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14977,3]]},"70":{"position":[[2865,3],[5523,2],[5565,2],[5607,2]]},"83":{"position":[[44652,2]]},"141":{"position":[[8748,2]]},"143":{"position":[[14149,2]]}}}],["17179869",{"_index":6171,"t":{},"d":{},"k":{},"b":{"128":{"position":[[5540,8]]}}}],["17:3",{"_index":5109,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2203,6]]},"107":{"position":[[8352,6]]}}}],["18",{"_index":586,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15010,3]]},"70":{"position":[[2894,3],[5649,2],[5691,2]]},"83":{"position":[[44728,2]]},"131":{"position":[[15772,4]]},"141":{"position":[[8805,2]]},"143":{"position":[[14193,2]]}}}],["18:0",{"_index":5104,"t":{},"d":{},"k":{},"b":{"106":{"position":[[1915,6]]},"107":{"position":[[7869,6]]}}}],["18:1",{"_index":5105,"t":{},"d":{},"k":{},"b":{"106":{"position":[[1973,6]]},"107":{"position":[[7965,6]]}}}],["18:2",{"_index":5106,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2031,6]]},"107":{"position":[[8062,6]]}}}],["18:3",{"_index":5107,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2089,6]]},"107":{"position":[[8159,6]]}}}],["18:4",{"_index":5108,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2146,6]]},"107":{"position":[[8256,6]]}}}],["19",{"_index":588,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15043,3]]},"70":{"position":[[2923,3],[5733,2],[5775,2]]},"83":{"position":[[44804,2]]},"106":{"position":[[13355,2],[13461,2]]},"141":{"position":[[8862,2]]},"143":{"position":[[14237,2]]}}}],["19.2ua",{"_index":5737,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10374,6]]}}}],["192",{"_index":2277,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2528,3]]}}}],["19200",{"_index":7283,"t":{},"d":{},"k":{},"b":{"139":{"position":[[25160,6]]},"140":{"position":[[23109,6]]}}}],["19200)#defin",{"_index":7211,"t":{},"d":{},"k":{},"b":{"139":{"position":[[11774,14]]},"140":{"position":[[9143,14]]}}}],["1;}void",{"_index":4374,"t":{},"d":{},"k":{},"b":{"89":{"position":[[3489,7]]},"90":{"position":[[3135,7]]},"91":{"position":[[3571,7]]}}}],["1b",{"_index":1269,"t":{},"d":{},"k":{},"b":{"69":{"position":[[29215,3]]},"150":{"position":[[15055,3]]}}}],["1bit",{"_index":7156,"t":{},"d":{},"k":{},"b":{"139":{"position":[[3083,4],[3096,4]]},"140":{"position":[[2831,4],[2844,4]]}}}],["1hz",{"_index":6483,"t":{},"d":{},"k":{},"b":{"131":{"position":[[4008,3],[4018,3]]}}}],["1mb",{"_index":8269,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16623,4]]}}}],["1mhz",{"_index":1651,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13443,5]]}}}],["1mhz.500000",{"_index":2319,"t":{},"d":{},"k":{},"b":{"75":{"position":[[12093,11]]}}}],["1s",{"_index":6542,"t":{},"d":{},"k":{},"b":{"132":{"position":[[6461,3]]},"143":{"position":[[12165,2],[12168,2],[12171,2],[12309,2],[12405,2]]},"150":{"position":[[2811,2],[2814,2],[2817,2],[2831,2],[2851,2],[2871,2],[2874,2],[2877,2]]}}}],["1st",{"_index":3792,"t":{},"d":{},"k":{},"b":{"86":{"position":[[1847,3]]},"130":{"position":[[1015,3]]},"133":{"position":[[7339,3],[7440,3],[8095,3],[8562,3],[11180,3],[15316,3],[39232,3]]},"134":{"position":[[1226,3],[2692,3],[7944,3],[10056,3]]},"150":{"position":[[13540,3],[13744,4]]}}}],["1u",{"_index":3378,"t":{},"d":{},"k":{},"b":{"83":{"position":[[22765,3]]},"150":{"position":[[9272,3],[11374,3],[11432,3],[12591,3],[13048,2],[13396,3],[14533,3],[14957,4],[15284,2],[15309,4]]}}}],["1u)#defin",{"_index":8021,"t":{},"d":{},"k":{},"b":{"148":{"position":[[6052,10]]}}}],["1xb",{"_index":1266,"t":{},"d":{},"k":{},"b":{"69":{"position":[[29148,4]]}}}],["2",{"_index":559,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14497,2],[15773,2],[16199,2]]},"68":{"position":[[2267,2],[2485,2],[13072,3],[15941,3],[18375,1],[20154,1]]},"69":{"position":[[4240,1],[4481,1],[5294,1],[6427,1],[6720,1],[6907,1],[7146,1],[7305,1],[7370,1],[10132,2],[16904,1],[16955,1],[21976,1]]},"70":{"position":[[2438,2],[4114,1],[4155,1],[4448,2],[4653,2],[4776,2],[5236,2],[5614,2],[5908,2],[7378,2],[7588,2],[7714,2],[7924,2],[8134,2],[8302,2],[8470,2],[8638,2],[8806,2],[8974,2]]},"74":{"position":[[1599,1]]},"75":{"position":[[2085,1],[5410,1],[5476,2],[5506,1],[5579,2],[5721,1],[5810,2],[5928,1],[6008,2],[6038,1],[6107,2],[10257,1],[10367,2],[12698,1],[12743,1],[13273,1],[13317,1],[14002,1],[15522,1],[15560,1],[15562,1],[15601,1],[15645,1],[15660,1],[15751,3],[22386,1],[26129,1]]},"79":{"position":[[1478,2],[2493,1],[2561,1],[2631,1],[2699,1],[4326,1],[4747,1],[4877,1],[4942,1],[5062,1],[5127,1],[5291,1],[6128,1]]},"83":{"position":[[12389,1],[14769,1],[17064,1],[20427,2],[39750,1],[43527,1],[47356,2]]},"87":{"position":[[15121,2],[15623,2],[16357,2]]},"88":{"position":[[5327,2],[11767,1],[15926,2],[16029,2],[16599,2],[24813,2],[27178,2],[32181,2],[37221,1],[37256,2],[39854,2],[39968,2],[49332,1],[49439,1],[49959,2],[50636,1]]},"92":{"position":[[3744,1],[3829,1],[3855,1],[3954,1],[3980,1],[4066,2],[5652,1],[5757,1],[5862,1],[5967,1],[6072,1],[6177,1],[6282,1],[6387,1],[6492,1],[6576,1],[6601,1],[6664,1],[6700,1],[6799,1],[6824,1],[6919,1],[6944,1],[8768,1],[8835,1],[8866,1],[8953,1],[8973,1],[9055,1],[9075,1],[9188,1],[9208,1],[9322,2],[9470,1],[9592,1],[25773,1]]},"93":{"position":[[6116,1]]},"105":{"position":[[3228,2],[6569,1],[9462,1],[9615,1],[9781,1],[9955,1],[10106,1],[10259,1],[10424,1],[10597,1],[19750,2],[19835,2],[22340,1]]},"106":{"position":[[1956,2],[2731,1],[6181,1],[8298,1],[9069,1],[9210,1],[9470,1],[13982,3],[18277,1],[18613,1],[18996,1],[19338,1],[19598,1],[19977,1]]},"107":{"position":[[7994,1],[8975,1]]},"113":{"position":[[7214,2]]},"125":{"position":[[2625,1],[2933,1]]},"127":{"position":[[4861,1],[5559,1]]},"128":{"position":[[12846,1],[30007,1]]},"129":{"position":[[6486,1],[7184,1]]},"130":{"position":[[933,1],[1005,1]]},"131":{"position":[[10745,1],[11443,1],[12051,1],[13351,1],[15530,3]]},"132":{"position":[[1173,1],[1238,1]]},"133":{"position":[[12187,1],[12885,1],[16321,1],[17019,1],[20625,1],[21323,1],[25639,1],[26337,1],[31792,1],[32490,1],[35907,1],[36605,1],[40212,1],[40910,1],[44464,1],[45162,1]]},"135":{"position":[[4449,1],[4572,1],[9531,1],[10494,1],[10919,1],[12155,1],[15148,1],[16112,1]]},"136":{"position":[[1669,2]]},"137":{"position":[[12898,1]]},"138":{"position":[[3983,1]]},"139":{"position":[[4680,1],[11325,2]]},"140":{"position":[[8694,2],[14440,1]]},"142":{"position":[[5558,1],[5732,1],[5904,1],[10532,1],[11512,1],[11946,1],[13316,1],[13806,1],[17593,1]]},"143":{"position":[[11246,1],[11340,1],[13173,1],[13504,1]]},"144":{"position":[[13280,2]]},"146":{"position":[[2364,1]]},"147":{"position":[[2139,2],[11010,1]]},"150":{"position":[[6391,1],[12877,1],[15371,1],[17139,1]]}}}],["2(timtra",{"_index":4903,"t":{},"d":{},"k":{},"b":{"105":{"position":[[9513,10],[18425,9]]}}}],["2(timtrb",{"_index":4907,"t":{},"d":{},"k":{},"b":{"105":{"position":[[10157,10],[18529,9]]}}}],["2.4ua",{"_index":5739,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10439,5]]}}}],["2.5",{"_index":6543,"t":{},"d":{},"k":{},"b":{"132":{"position":[[6534,5]]}}}],["2.5v",{"_index":1620,"t":{},"d":{},"k":{},"b":{"70":{"position":[[11528,5],[11843,5]]}}}],["2/2",{"_index":1979,"t":{},"d":{},"k":{},"b":{"71":{"position":[[31466,5],[31620,5],[31814,5],[32149,5],[32418,5],[32843,5],[33045,5],[33238,5],[33436,5],[33854,5],[37052,5],[47713,5],[48040,5]]}}}],["20",{"_index":590,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15076,3]]},"70":{"position":[[2952,3],[5817,2],[5859,2],[5901,2]]},"75":{"position":[[14802,2]]},"76":{"position":[[10209,6]]},"83":{"position":[[23675,6],[44880,2],[58305,2]]},"84":{"position":[[7479,6]]},"106":{"position":[[1886,2],[1943,2],[2001,2],[2059,2],[13232,2],[13339,2],[13413,2],[13445,2],[16808,3],[16910,3],[17205,3],[17343,3]]},"107":{"position":[[7852,2],[7948,2],[8045,2],[8142,2]]},"131":{"position":[[12430,2]]},"133":{"position":[[8197,2]]},"141":{"position":[[8919,2]]},"143":{"position":[[14281,2]]},"146":{"position":[[7541,3]]}}}],["200",{"_index":2082,"t":{},"d":{},"k":{},"b":{"71":{"position":[[45298,3]]},"105":{"position":[[13750,7]]}}}],["200khz",{"_index":6479,"t":{},"d":{},"k":{},"b":{"131":{"position":[[2645,7]]}}}],["200mhz",{"_index":2074,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44758,6],[45438,8]]}}}],["2020",{"_index":6,"t":{},"d":{},"k":{},"b":{"0":{"position":[[11,5]]}}}],["2023",{"_index":7,"t":{},"d":{},"k":{},"b":{"0":{"position":[[17,5]]}}}],["2048",{"_index":8090,"t":{},"d":{},"k":{},"b":{"149":{"position":[[6751,4]]}}}],["20mhz",{"_index":1018,"t":{},"d":{},"k":{},"b":{"69":{"position":[[9944,6]]}}}],["21",{"_index":592,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15109,3]]},"70":{"position":[[2981,3],[5943,2],[5985,2]]},"83":{"position":[[44956,2]]},"141":{"position":[[8980,2]]},"143":{"position":[[14325,2]]}}}],["2147",{"_index":2085,"t":{},"d":{},"k":{},"b":{"71":{"position":[[45477,4]]}}}],["22",{"_index":594,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15142,3]]},"70":{"position":[[3010,3],[6027,2],[6069,2]]},"83":{"position":[[45032,2]]},"141":{"position":[[9037,2]]},"143":{"position":[[14369,2]]}}}],["23",{"_index":596,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15175,3]]},"70":{"position":[[3039,3],[6111,2],[6153,2]]},"83":{"position":[[45108,2]]},"141":{"position":[[9094,2]]},"143":{"position":[[14413,2]]}}}],["24",{"_index":521,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12919,2],[15208,3]]},"70":{"position":[[3068,3],[6195,2],[6237,2]]},"83":{"position":[[45184,2]]},"88":{"position":[[8180,2],[8934,2]]},"89":{"position":[[3861,3]]},"90":{"position":[[3499,3]]},"124":{"position":[[3487,2],[7833,3],[10567,3]]},"125":{"position":[[8825,3],[9256,3]]},"135":{"position":[[4462,2],[4473,2],[16359,2]]},"136":{"position":[[7125,2]]},"141":{"position":[[9155,2]]},"143":{"position":[[14457,2]]},"146":{"position":[[3796,2]]},"148":{"position":[[3744,2],[3979,2],[4120,2],[4215,2]]}}}],["24.1mhz",{"_index":1659,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13643,7]]}}}],["240",{"_index":6392,"t":{},"d":{},"k":{},"b":{"129":{"position":[[2208,3],[16585,3]]}}}],["243",{"_index":2278,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2562,3]]}}}],["24mhz",{"_index":1657,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13583,6]]}}}],["25",{"_index":599,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15241,3]]},"70":{"position":[[3097,3],[6279,2],[6321,2]]},"83":{"position":[[45260,2]]},"141":{"position":[[9216,2]]},"143":{"position":[[14501,2]]},"149":{"position":[[7549,4],[7957,4]]}}}],["25)#defin",{"_index":3391,"t":{},"d":{},"k":{},"b":{"83":{"position":[[25157,11]]},"105":{"position":[[15476,11]]}}}],["25.5",{"_index":4276,"t":{},"d":{},"k":{},"b":{"88":{"position":[[44341,5]]}}}],["250hz",{"_index":6169,"t":{},"d":{},"k":{},"b":{"128":{"position":[[5433,6]]}}}],["255",{"_index":4365,"t":{},"d":{},"k":{},"b":{"89":{"position":[[2765,5]]},"90":{"position":[[2483,5]]},"91":{"position":[[2842,5]]},"128":{"position":[[12572,3],[14942,3]]}}}],["25512",{"_index":711,"t":{},"d":{},"k":{},"b":{"68":{"position":[[4787,5]]},"69":{"position":[[8709,5],[8954,5],[9207,5],[9460,5],[9713,5]]},"75":{"position":[[2837,5],[9824,5],[14343,5]]},"79":{"position":[[4003,5]]},"89":{"position":[[2723,5]]},"90":{"position":[[2441,5]]},"91":{"position":[[2800,5]]},"124":{"position":[[4382,5]]},"125":{"position":[[2067,5],[2268,5]]},"142":{"position":[[3101,5],[3242,5],[3379,5],[3504,5]]},"146":{"position":[[3389,5],[3649,5]]}}}],["25514",{"_index":7319,"t":{},"d":{},"k":{},"b":{"140":{"position":[[5530,5],[5663,5],[5837,5],[5974,5]]}}}],["25524",{"_index":4898,"t":{},"d":{},"k":{},"b":{"105":{"position":[[8153,5],[8425,5],[8651,5]]},"106":{"position":[[11743,5],[11984,5],[12227,5]]}}}],["2554",{"_index":3344,"t":{},"d":{},"k":{},"b":{"83":{"position":[[11224,4],[11495,4],[11720,4],[11966,4],[12241,4]]},"108":{"position":[[2845,4]]}}}],["2555",{"_index":2637,"t":{},"d":{},"k":{},"b":{"76":{"position":[[4403,4],[4632,4],[4863,4],[5097,4],[5332,4]]}}}],["2558",{"_index":6795,"t":{},"d":{},"k":{},"b":{"135":{"position":[[5004,4],[5275,4],[5413,4]]},"148":{"position":[[3146,4]]}}}],["255].0",{"_index":4058,"t":{},"d":{},"k":{},"b":{"88":{"position":[[12274,6],[13132,6],[13264,6],[13431,6]]}}}],["256",{"_index":2256,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1445,3],[2177,3],[15681,3]]},"79":{"position":[[13289,3]]},"105":{"position":[[22811,3],[23155,3],[23611,3],[23672,3]]},"144":{"position":[[13670,4]]},"145":{"position":[[13115,3],[13628,3]]},"148":{"position":[[4159,3],[4224,3]]}}}],["26",{"_index":601,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15274,3]]},"70":{"position":[[3126,3],[6363,2],[6405,2]]},"83":{"position":[[45336,2]]},"139":{"position":[[9979,5]]},"140":{"position":[[7382,5]]},"141":{"position":[[9277,2]]},"143":{"position":[[14545,2]]}}}],["262",{"_index":6170,"t":{},"d":{},"k":{},"b":{"128":{"position":[[5515,3]]}}}],["27",{"_index":603,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15307,3]]},"70":{"position":[[3155,3],[6447,2],[6489,2]]},"83":{"position":[[45412,2]]},"124":{"position":[[3512,2]]},"141":{"position":[[9334,2]]},"143":{"position":[[14589,2]]}}}],["28",{"_index":605,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15340,3]]},"70":{"position":[[3184,3],[6531,2],[6573,2]]},"83":{"position":[[45488,2]]},"141":{"position":[[9391,2]]},"143":{"position":[[14633,2]]}}}],["2800",{"_index":760,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9274,4]]}}}],["29",{"_index":1359,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3213,3],[6615,2],[6657,2]]},"74":{"position":[[9595,2]]},"83":{"position":[[45564,2]]},"141":{"position":[[9448,2]]},"143":{"position":[[14677,2]]}}}],["2^n",{"_index":8258,"t":{},"d":{},"k":{},"b":{"150":{"position":[[15130,3]]}}}],["2bit",{"_index":7157,"t":{},"d":{},"k":{},"b":{"139":{"position":[[3089,5]]},"140":{"position":[[2837,5]]}}}],["2d",{"_index":5701,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8953,2],[9025,2],[9100,2],[9165,2]]}}}],["2hz",{"_index":6484,"t":{},"d":{},"k":{},"b":{"131":{"position":[[4013,3]]}}}],["2mb",{"_index":8271,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16668,4]]}}}],["2mhz",{"_index":4065,"t":{},"d":{},"k":{},"b":{"88":{"position":[[12437,4],[12443,4],[12570,4],[12576,4]]}}}],["2nd",{"_index":3386,"t":{},"d":{},"k":{},"b":{"83":{"position":[[24411,3]]},"133":{"position":[[7552,3],[7662,3],[8264,3],[8610,3],[10742,3],[19645,3],[24540,3],[43373,3]]},"134":{"position":[[1603,3],[1725,3],[1795,3],[2918,3],[8477,3],[10589,3]]}}}],["2s",{"_index":7661,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12312,2],[12315,2],[12357,2],[12360,2],[12363,2]]},"150":{"position":[[2834,2],[2837,2],[2841,2],[2844,2],[2847,2]]}}}],["2u",{"_index":5953,"t":{},"d":{},"k":{},"b":{"124":{"position":[[11922,3]]},"138":{"position":[[11154,3]]},"150":{"position":[[9995,3]]}}}],["3",{"_index":561,"t":{"105":{"position":[[77,1]]}},"d":{},"k":{},"b":{"67":{"position":[[14528,2],[15802,2],[16232,2]]},"68":{"position":[[1657,1],[6619,1],[13195,3],[16064,3],[18414,1]]},"69":{"position":[[4251,1],[4492,1],[5305,1],[6438,1],[6731,1],[6918,1],[7157,1],[7320,1],[16863,2],[16908,2],[17228,1],[22015,1]]},"70":{"position":[[2466,2],[4196,1],[4237,1],[7966,2],[8176,2],[8344,2],[8512,2],[8680,2],[8848,2],[9016,2]]},"71":{"position":[[34717,2]]},"75":{"position":[[6137,1],[6203,2],[6233,1],[6306,2],[6448,1],[6537,2],[6655,1],[6735,2],[6765,1],[6834,2],[10415,1],[10525,2],[15813,3]]},"82":{"position":[[6793,1]]},"83":{"position":[[3602,1],[3936,1],[5535,2],[12405,1],[14772,1],[24128,1],[32233,1],[32322,1],[38103,1],[39822,1],[43601,1]]},"84":{"position":[[2017,1]]},"87":{"position":[[15172,2],[15669,2],[16405,2]]},"88":{"position":[[5496,2],[11785,1],[16706,2],[24816,2],[27181,2],[32184,2]]},"91":{"position":[[3715,2]]},"92":{"position":[[9612,1],[9679,1],[9710,1],[9797,1],[9817,1],[9899,1],[9919,1],[10032,1],[10052,1],[10166,2],[10314,1],[10436,1],[25836,1],[35448,2],[39175,1],[39184,2],[40089,1],[40098,2]]},"93":{"position":[[6088,2]]},"105":{"position":[[3427,1],[3671,1],[9618,1],[9784,1],[9958,1],[10262,1],[10427,1],[10600,1],[14207,1],[30846,1]]},"106":{"position":[[2014,2],[2751,1],[6201,1],[8318,1],[9219,1],[18655,1],[19054,1],[19380,1],[19631,1]]},"107":{"position":[[8091,1]]},"109":{"position":[[8164,1]]},"113":{"position":[[7157,2]]},"122":{"position":[[436,1]]},"125":{"position":[[2949,1],[2981,1]]},"128":{"position":[[12644,1]]},"129":{"position":[[11130,3]]},"131":{"position":[[11801,1],[12301,1]]},"133":{"position":[[19514,1],[24409,1]]},"135":{"position":[[8215,1],[15203,1]]},"136":{"position":[[7733,2]]},"139":{"position":[[4683,1]]},"140":{"position":[[14541,1]]},"142":{"position":[[1028,1],[5568,1],[5742,1],[5914,1],[9096,1],[13814,1],[15465,1],[15602,2],[17649,1]]},"143":{"position":[[12653,1],[13546,1]]},"144":{"position":[[560,1],[12604,2]]},"148":{"position":[[6106,2]]},"150":{"position":[[1691,1],[3001,1],[3007,1],[6413,1],[12785,1],[13728,1],[13798,1],[14150,1],[15178,1],[17195,1]]},"152":{"position":[[5949,1]]}}}],["3.3v",{"_index":1610,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10974,5],[11201,5],[11432,5],[11731,5]]}}}],["30",{"_index":1361,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3242,3],[6699,2],[6741,2]]},"83":{"position":[[45640,2]]},"133":{"position":[[8338,2]]},"141":{"position":[[9505,2]]},"143":{"position":[[14721,2]]},"146":{"position":[[7574,3]]}}}],["300300",{"_index":7089,"t":{},"d":{},"k":{},"b":{"138":{"position":[[3787,6]]}}}],["30:0",{"_index":8256,"t":{},"d":{},"k":{},"b":{"150":{"position":[[15070,4],[15423,4]]}}}],["31",{"_index":1363,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3271,3],[6783,2],[6825,2]]},"83":{"position":[[45716,2]]},"88":{"position":[[16629,2]]},"106":{"position":[[13336,2],[13442,2]]},"139":{"position":[[6298,2],[16223,2]]},"141":{"position":[[9566,2]]},"143":{"position":[[14765,2]]},"150":{"position":[[14965,3],[15042,2],[15317,4],[15395,2]]}}}],["31.1",{"_index":7169,"t":{},"d":{},"k":{},"b":{"139":{"position":[[5079,4],[5339,4]]}}}],["310",{"_index":4399,"t":{},"d":{},"k":{},"b":{"91":{"position":[[2174,3]]}}}],["32",{"_index":444,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8271,2]]},"68":{"position":[[28216,2]]},"69":{"position":[[35616,2]]},"70":{"position":[[3300,3],[6867,2],[6909,2]]},"71":{"position":[[45393,2]]},"74":{"position":[[8248,3]]},"75":{"position":[[1291,2],[1374,2],[2235,2],[15537,2],[15567,2],[15806,2],[16768,2]]},"76":{"position":[[2880,2],[2896,2],[8079,3]]},"77":{"position":[[653,2],[1033,2],[1074,2],[1168,3],[2099,2],[3190,2],[3268,2],[6601,2],[6732,2],[6791,2]]},"78":{"position":[[201,2],[4922,2],[4933,2],[5055,2]]},"79":{"position":[[1491,3],[2530,2],[2668,2],[6165,2],[6269,2],[13076,2]]},"82":{"position":[[7015,3]]},"83":{"position":[[1876,2],[1895,2],[3660,2],[3693,2],[3994,2],[4030,2],[6345,3],[6487,3],[15938,2],[16116,2],[16169,2],[21264,2],[22611,2],[43457,2],[43531,2],[43605,2],[43679,2],[43753,2],[43827,2],[43901,2],[43975,2],[44049,2],[44125,2],[44201,2],[44277,2],[44353,2],[44429,2],[44505,2],[44581,2],[44657,2],[44733,2],[44809,2],[44885,2],[44961,2],[45037,2],[45113,2],[45189,2],[45265,2],[45341,2],[45417,2],[45493,2],[45569,2],[45645,2],[45721,2]]},"84":{"position":[[2065,2],[2101,2],[4729,2]]},"94":{"position":[[251,2],[1105,2]]},"105":{"position":[[1711,2],[1816,2],[3769,2],[6609,2],[6893,2],[22441,2]]},"106":{"position":[[13181,2],[13240,2]]},"108":{"position":[[2299,2]]},"125":{"position":[[2670,2]]},"128":{"position":[[2262,2],[4447,2],[4503,2],[5570,2],[12669,2],[12871,2]]},"135":{"position":[[1233,2],[1287,2],[4466,2],[13697,2],[13778,2],[13853,2],[16422,2]]},"141":{"position":[[9627,2]]},"142":{"position":[[1308,2],[1362,2],[15097,2],[15178,2],[15256,2],[15331,2]]},"144":{"position":[[11644,2],[13499,3]]},"145":{"position":[[12735,2],[12923,2],[13436,2]]},"150":{"position":[[15153,4]]}}}],["32,768",{"_index":6936,"t":{},"d":{},"k":{},"b":{"136":{"position":[[2985,6]]}}}],["32,768hz",{"_index":6951,"t":{},"d":{},"k":{},"b":{"136":{"position":[[6533,8]]}}}],["32/ch",{"_index":2268,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2208,5]]}}}],["32bit",{"_index":2766,"t":{},"d":{},"k":{},"b":{"76":{"position":[[17748,5],[23638,5]]},"128":{"position":[[5230,5]]},"142":{"position":[[9237,6]]}}}],["32c",{"_index":2821,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1270,4],[2107,3],[2116,3]]},"78":{"position":[[5066,3]]}}}],["32kb",{"_index":8141,"t":{},"d":{},"k":{},"b":{"150":{"position":[[4663,4],[4732,4],[4817,4],[4893,4],[4920,4],[4950,4]]}}}],["32khz",{"_index":1650,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13434,5]]}}}],["32mb",{"_index":8279,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16851,5]]}}}],["33",{"_index":1366,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3329,3],[6951,2],[6993,2]]}}}],["34",{"_index":1368,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3358,3],[7035,2],[7077,2]]},"80":{"position":[[4852,2]]}}}],["35",{"_index":1370,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3387,3],[7119,2],[7161,2]]}}}],["36",{"_index":1372,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3416,3],[7203,2],[7245,2]]}}}],["3651)#defin",{"_index":7896,"t":{},"d":{},"k":{},"b":{"146":{"position":[[10355,13]]}}}],["37",{"_index":1374,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3445,3],[7287,2],[7329,2],[7371,2]]}}}],["38",{"_index":1376,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3474,3],[7413,2],[7455,2]]}}}],["38.4",{"_index":4080,"t":{},"d":{},"k":{},"b":{"88":{"position":[[14457,4]]}}}],["39",{"_index":1378,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3503,3],[7497,2],[7539,2],[7581,2]]}}}],["3rd",{"_index":159,"t":{},"d":{},"k":{},"b":{"1":{"position":[[1099,3]]},"105":{"position":[[14718,3],[31357,3]]}}}],["3u",{"_index":8230,"t":{},"d":{},"k":{},"b":{"150":{"position":[[12649,3],[13425,3],[13454,3],[14585,3],[15324,4]]}}}],["4",{"_index":563,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14559,2],[15831,2],[16265,2]]},"68":{"position":[[2069,1],[3435,1],[3825,1],[7076,1],[7292,1],[7534,1],[7834,1],[8074,1],[8203,1],[13262,3],[18453,1],[22304,1],[22620,1]]},"69":{"position":[[4262,1],[4503,1],[5316,1],[6449,1],[6742,1],[6929,1],[7168,1],[7335,1],[7389,1],[17185,2],[22054,1]]},"70":{"position":[[2494,2],[4278,1],[4319,1],[8008,2],[9058,2]]},"71":{"position":[[8046,1]]},"75":{"position":[[1246,1],[2144,1],[6864,1],[6930,2],[6960,1],[7033,2],[7175,1],[7264,2],[7382,1],[7462,2],[7492,1],[7561,2],[10573,1],[10683,2],[15494,1],[15713,1],[25474,1]]},"79":{"position":[[1481,2],[2502,1],[2640,1],[6137,1]]},"83":{"position":[[10542,1],[10713,1],[14775,1],[43675,1]]},"87":{"position":[[15715,1]]},"88":{"position":[[5600,2],[16132,2],[19532,1],[19590,1],[19952,1],[20013,1],[20096,1],[20266,1],[24819,2],[27184,2],[32187,2],[44682,3],[49546,1],[50567,1],[57224,1],[57293,1],[58433,1],[59419,1],[59464,1],[60394,1],[61216,1],[61261,1]]},"92":{"position":[[22273,1],[24670,1],[25899,1],[35429,2],[39147,1],[39168,2],[40061,1],[40082,2]]},"105":{"position":[[9621,1],[9787,1],[9961,1],[10265,1],[10430,1],[10603,1],[22186,1],[23681,2],[23751,2],[23844,2],[23937,2]]},"106":{"position":[[2072,2],[9078,1],[9228,1],[9237,1],[9486,1],[13213,1],[13272,1],[18319,1],[19664,1],[20058,1]]},"107":{"position":[[5390,1],[8188,1]]},"113":{"position":[[5778,1],[7163,2]]},"124":{"position":[[3224,1]]},"125":{"position":[[2636,1],[2965,1]]},"128":{"position":[[4531,1]]},"129":{"position":[[9973,1],[9994,1]]},"133":{"position":[[27608,1],[30616,1],[46400,1]]},"135":{"position":[[1301,1],[4452,1],[4575,1],[4581,1],[7181,1],[7309,1],[15258,1],[15792,1],[16173,1]]},"138":{"position":[[4042,1]]},"139":{"position":[[4686,1]]},"140":{"position":[[14642,1],[16049,2]]},"141":{"position":[[8018,1]]},"142":{"position":[[1058,1],[5578,1],[5752,1],[5924,1],[8354,1],[8483,1],[15475,1],[15533,2],[17705,1]]},"143":{"position":[[11429,1],[11523,1],[11778,1],[12697,1],[12917,1],[12948,1],[13211,1],[13588,1]]},"144":{"position":[[13334,2]]},"146":{"position":[[2367,1]]},"148":{"position":[[6111,4]]},"150":{"position":[[1696,1],[3004,1],[3048,1],[14252,1],[15016,1],[17251,1]]},"289":{"position":[[388,1],[566,1]]}}}],["4)#defin",{"_index":7890,"t":{},"d":{},"k":{},"b":{"146":{"position":[[10117,10]]}}}],["4,};void",{"_index":1097,"t":{},"d":{},"k":{},"b":{"69":{"position":[[17232,8]]}}}],["40",{"_index":1024,"t":{},"d":{},"k":{},"b":{"69":{"position":[[10137,2]]},"70":{"position":[[3532,3],[7623,2],[7665,2],[7707,2]]},"124":{"position":[[3467,2]]},"133":{"position":[[8226,2]]},"146":{"position":[[2819,2],[2935,2]]}}}],["400",{"_index":3770,"t":{},"d":{},"k":{},"b":{"85":{"position":[[9014,3]]},"86":{"position":[[6711,3]]},"124":{"position":[[1559,3]]},"125":{"position":[[871,3]]},"128":{"position":[[4487,3]]},"138":{"position":[[1557,3]]}}}],["400khz",{"_index":7119,"t":{},"d":{},"k":{},"b":{"138":{"position":[[13524,6]]}}}],["4096",{"_index":1810,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6885,6]]},"149":{"position":[[6788,4]]}}}],["4096)#defin",{"_index":8177,"t":{},"d":{},"k":{},"b":{"150":{"position":[[7299,13]]}}}],["40mhz",{"_index":1017,"t":{},"d":{},"k":{},"b":{"69":{"position":[[9937,6]]}}}],["41",{"_index":1381,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3561,3],[7749,2],[7791,2]]},"124":{"position":[[3579,2]]},"146":{"position":[[14311,2]]}}}],["41)#defin",{"_index":7892,"t":{},"d":{},"k":{},"b":{"146":{"position":[[10177,10]]}}}],["411)#defin",{"_index":7895,"t":{},"d":{},"k":{},"b":{"146":{"position":[[10295,12]]}}}],["42",{"_index":1383,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3590,3],[7833,2],[7875,2],[7917,2],[7959,2],[8001,2]]}}}],["4294967295",{"_index":3347,"t":{},"d":{},"k":{},"b":{"83":{"position":[[13580,10],[13815,10],[14047,10],[14261,10]]}}}],["43",{"_index":1385,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3619,3],[8043,2],[8085,2],[8127,2],[8169,2]]}}}],["44",{"_index":1387,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3648,3],[8211,2],[8253,2],[8295,2],[8337,2]]}}}],["45",{"_index":1389,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3677,3],[8379,2],[8421,2],[8463,2],[8505,2]]},"88":{"position":[[21986,2]]}}}],["46",{"_index":1391,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3706,3],[8547,2],[8589,2],[8631,2],[8673,2]]}}}],["47",{"_index":1393,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3735,3],[8715,2],[8757,2],[8799,2],[8841,2]]}}}],["48",{"_index":1395,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3764,3],[8883,2],[8925,2],[8967,2],[9009,2],[9051,2]]},"88":{"position":[[21865,2]]},"106":{"position":[[12562,2]]},"124":{"position":[[3490,3]]},"133":{"position":[[7047,2],[8395,2]]}}}],["480",{"_index":1746,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3255,3]]}}}],["485",{"_index":7148,"t":{},"d":{},"k":{},"b":{"139":{"position":[[1620,3],[1668,3],[2345,3],[4762,3],[4844,3],[4879,3],[4987,3],[5248,3],[13411,4],[14920,3],[17027,3],[17087,3],[17130,3],[17288,3]]},"140":{"position":[[10810,4],[11805,3],[13293,3],[13351,3],[13392,3],[13546,3]]}}}],["4864",{"_index":2269,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2272,4]]}}}],["48mhz",{"_index":1660,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13654,6]]}}}],["4d",{"_index":7657,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12216,2],[12219,2]]},"150":{"position":[[2824,2],[2827,2]]}}}],["4k",{"_index":1855,"t":{},"d":{},"k":{},"b":{"71":{"position":[[10431,2]]}}}],["4mb",{"_index":8273,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16713,4]]}}}],["4mhz",{"_index":4064,"t":{},"d":{},"k":{},"b":{"88":{"position":[[12431,4],[12564,4]]}}}],["4s",{"_index":7656,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12213,2],[12408,2],[12411,2],[12453,2],[12456,2],[12459,2]]},"150":{"position":[[2821,2],[2854,2],[2857,2],[2861,2],[2864,2],[2867,2]]}}}],["4u",{"_index":8252,"t":{},"d":{},"k":{},"b":{"150":{"position":[[14637,3]]}}}],["5",{"_index":565,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14590,2],[15860,2],[16298,2]]},"68":{"position":[[13348,3],[18492,1]]},"69":{"position":[[4273,1],[4514,1],[5327,1],[6460,1],[6753,1],[6940,1],[7179,1],[22093,1]]},"70":{"position":[[2522,2],[4360,1],[4401,1],[4442,1]]},"75":{"position":[[7591,1],[7657,2],[7687,1],[7760,2],[7902,1],[7991,2],[8109,1],[8189,2],[8219,1],[8288,2],[10731,1],[10841,2]]},"83":{"position":[[14778,1],[43749,1]]},"87":{"position":[[15794,1]]},"88":{"position":[[24822,3],[27187,1],[32190,3]]},"92":{"position":[[25962,1]]},"105":{"position":[[9624,1],[9790,1],[9964,1],[10268,1],[10433,1],[10606,1]]},"135":{"position":[[4470,1],[15313,1],[16484,1]]},"139":{"position":[[4689,1],[13579,1],[13709,1]]},"140":{"position":[[14743,1]]},"141":{"position":[[8073,1]]},"142":{"position":[[5588,1],[5762,1],[5934,1],[17761,1]]},"143":{"position":[[13630,1]]},"150":{"position":[[17307,1]]}}}],["5)#defin",{"_index":7898,"t":{},"d":{},"k":{},"b":{"146":{"position":[[10416,10]]}}}],["5)const",{"_index":7900,"t":{},"d":{},"k":{},"b":{"146":{"position":[[10476,7]]}}}],["5.0",{"_index":6723,"t":{},"d":{},"k":{},"b":{"134":{"position":[[2475,3]]}}}],["5.1.2.4",{"_index":4130,"t":{},"d":{},"k":{},"b":{"88":{"position":[[21215,7],[21508,7]]}}}],["5.5v)3300",{"_index":1860,"t":{},"d":{},"k":{},"b":{"71":{"position":[[10548,10]]}}}],["50",{"_index":3361,"t":{},"d":{},"k":{},"b":{"83":{"position":[[17369,2],[50607,3]]},"84":{"position":[[11021,3]]},"88":{"position":[[50025,3]]},"105":{"position":[[11522,2]]},"149":{"position":[[7593,4],[7917,4]]}}}],["5000)void",{"_index":7213,"t":{},"d":{},"k":{},"b":{"139":{"position":[[11828,10]]},"140":{"position":[[9196,10]]}}}],["500khz",{"_index":4273,"t":{},"d":{},"k":{},"b":{"88":{"position":[[44175,9]]}}}],["500m",{"_index":7912,"t":{},"d":{},"k":{},"b":{"146":{"position":[[13065,6]]}}}],["500n",{"_index":2071,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44649,6],[45236,6],[45468,6]]}}}],["50mhz",{"_index":1016,"t":{},"d":{},"k":{},"b":{"69":{"position":[[9930,6]]}}}],["50n",{"_index":4123,"t":{},"d":{},"k":{},"b":{"88":{"position":[[20871,4],[21387,4]]}}}],["51",{"_index":5889,"t":{},"d":{},"k":{},"b":{"124":{"position":[[3515,3]]}}}],["512",{"_index":3056,"t":{},"d":{},"k":{},"b":{"79":{"position":[[13361,3]]},"144":{"position":[[13728,4]]},"145":{"position":[[13180,3],[13693,3]]},"149":{"position":[[6678,3]]}}}],["53",{"_index":5888,"t":{},"d":{},"k":{},"b":{"124":{"position":[[3470,3]]}}}],["5500",{"_index":1859,"t":{},"d":{},"k":{},"b":{"71":{"position":[[10543,4]]}}}],["57600",{"_index":7284,"t":{},"d":{},"k":{},"b":{"139":{"position":[[25167,6]]},"140":{"position":[[23116,6]]}}}],["5mhz",{"_index":1020,"t":{},"d":{},"k":{},"b":{"69":{"position":[[9960,5]]}}}],["6",{"_index":567,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14621,2],[15889,2],[16331,2]]},"68":{"position":[[9269,1],[18531,1]]},"69":{"position":[[4284,1],[4525,1],[5338,1],[6471,1],[6764,1],[6951,1],[7190,1],[22132,1]]},"70":{"position":[[2550,2],[4483,1],[4524,1]]},"75":{"position":[[2087,1],[8318,1],[8384,2],[8414,1],[8487,2],[8629,1],[8718,2],[8836,1],[8916,2],[8946,1],[9015,2]]},"80":{"position":[[2071,2]]},"83":{"position":[[14781,1],[43823,1]]},"84":{"position":[[1988,1]]},"87":{"position":[[15873,1]]},"88":{"position":[[50498,1]]},"92":{"position":[[10739,1],[10816,1],[11797,1],[11846,1],[26025,1],[36600,1],[36609,2],[38141,1],[38150,2]]},"105":{"position":[[9627,1],[9793,1],[9967,1],[10271,1],[10436,1],[10609,1],[23684,1],[23754,1],[23847,1],[23940,1]]},"129":{"position":[[10008,1]]},"133":{"position":[[7536,1],[39101,1]]},"135":{"position":[[15368,1],[15731,1]]},"136":{"position":[[7716,2]]},"139":{"position":[[4692,1]]},"140":{"position":[[14844,1],[16098,2]]},"141":{"position":[[8128,1]]},"142":{"position":[[5598,1],[5772,1],[5944,1],[17817,1]]},"143":{"position":[[13672,1]]},"150":{"position":[[17363,1]]},"292":{"position":[[117,3]]}}}],["60",{"_index":2321,"t":{},"d":{},"k":{},"b":{"75":{"position":[[12348,2]]},"133":{"position":[[8175,2]]}}}],["630",{"_index":6946,"t":{},"d":{},"k":{},"b":{"136":{"position":[[5319,3]]}}}],["64",{"_index":2274,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2388,2],[2500,2],[2516,2],[17122,2],[19960,2],[20427,2],[29501,2]]},"79":{"position":[[1495,3],[2540,2],[2678,2],[6175,2],[13146,2]]},"82":{"position":[[7078,3]]},"83":{"position":[[10575,2],[10746,2]]},"88":{"position":[[21907,2]]},"94":{"position":[[1544,2]]},"105":{"position":[[22289,2]]},"125":{"position":[[2682,2]]},"136":{"position":[[1860,2]]},"144":{"position":[[13555,3]]},"145":{"position":[[12986,2],[13499,2]]},"150":{"position":[[8382,2],[23664,2]]}}}],["64)uint8_t",{"_index":8179,"t":{},"d":{},"k":{},"b":{"150":{"position":[[7341,11]]}}}],["64mb",{"_index":8281,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16898,5]]}}}],["64void",{"_index":2487,"t":{},"d":{},"k":{},"b":{"75":{"position":[[29069,6]]}}}],["65535",{"_index":4085,"t":{},"d":{},"k":{},"b":{"88":{"position":[[15097,5]]},"105":{"position":[[8864,5],[9101,5]]},"128":{"position":[[5378,5],[12771,5]]},"138":{"position":[[15091,7],[16271,7]]}}}],["65535].65535",{"_index":4055,"t":{},"d":{},"k":{},"b":{"88":{"position":[[11969,12],[12119,12]]}}}],["65536",{"_index":4881,"t":{},"d":{},"k":{},"b":{"105":{"position":[[5431,5],[5580,5],[5729,5],[5878,5]]}}}],["6mhz",{"_index":4063,"t":{},"d":{},"k":{},"b":{"88":{"position":[[12425,4],[12558,4]]}}}],["6~2800",{"_index":842,"t":{},"d":{},"k":{},"b":{"68":{"position":[[17417,8]]}}}],["7",{"_index":569,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14652,2],[15918,2],[16364,2]]},"68":{"position":[[2481,1],[18570,1]]},"69":{"position":[[4295,1],[4536,1],[5349,1],[6482,1],[6775,1],[6962,1],[7201,1],[22171,1]]},"70":{"position":[[2578,2],[4565,1],[4606,1],[4647,1]]},"75":{"position":[[9045,1],[9111,2],[9141,1],[9214,2],[9356,1],[9445,2],[9563,1],[9643,2],[9673,1],[9742,2]]},"83":{"position":[[14784,1],[43897,1]]},"85":{"position":[[9227,1]]},"86":{"position":[[6920,1]]},"87":{"position":[[15952,1]]},"92":{"position":[[26088,1],[36572,1],[36593,2],[38113,1],[38134,2]]},"105":{"position":[[9630,1],[9796,1],[9970,1],[10274,1],[10439,1],[10612,1]]},"124":{"position":[[2534,1],[3699,1],[3714,1]]},"125":{"position":[[3247,1],[3262,1]]},"127":{"position":[[2875,1],[2890,1]]},"135":{"position":[[15423,1],[15670,1]]},"138":{"position":[[2644,1],[3266,1],[3281,1]]},"139":{"position":[[4695,1]]},"140":{"position":[[14945,1]]},"141":{"position":[[8183,1]]},"142":{"position":[[5608,1],[5782,1],[5954,1],[17873,1]]},"143":{"position":[[13714,1]]},"147":{"position":[[2017,1],[10597,1]]},"150":{"position":[[17419,1]]}}}],["70",{"_index":8136,"t":{},"d":{},"k":{},"b":{"150":{"position":[[3898,2]]}}}],["729",{"_index":2279,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2575,3]]}}}],["75",{"_index":8111,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7637,4],[7877,4]]}}}],["7bit",{"_index":7154,"t":{},"d":{},"k":{},"b":{"139":{"position":[[2938,5]]},"140":{"position":[[2693,5]]}}}],["8",{"_index":515,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12794,1],[14683,2],[15947,2],[16397,2]]},"68":{"position":[[3835,1],[18609,1],[22679,1]]},"69":{"position":[[1303,1],[2697,1]]},"70":{"position":[[2606,2],[4688,1],[4729,1],[4770,1]]},"71":{"position":[[9833,1],[9847,1],[10016,1],[10030,1],[10281,1],[10291,1],[10401,1]]},"75":{"position":[[1248,1],[1337,1],[2151,1],[2252,1],[2254,1],[2385,2],[2547,1],[15496,1],[15573,1],[15743,1],[15839,1],[28392,2],[28510,2]]},"77":{"position":[[643,2],[854,1],[901,1],[941,2],[2073,1],[4138,1],[4207,1],[4420,1],[6583,1],[6714,1],[6773,1]]},"78":{"position":[[182,1],[4736,1],[4746,1]]},"79":{"position":[[1484,2],[2511,1],[2649,1],[6146,1],[12937,1]]},"80":{"position":[[2074,1]]},"82":{"position":[[6953,2]]},"83":{"position":[[3551,1],[43971,1]]},"88":{"position":[[11965,3],[12689,1],[12796,1],[50429,1],[50915,1]]},"92":{"position":[[10744,1],[10821,1],[11802,1],[11851,1],[22355,1],[24752,1]]},"105":{"position":[[3641,1],[6589,1],[6873,1],[22390,1],[23686,2],[23756,2],[23849,2],[23942,2]]},"106":{"position":[[9502,1],[20139,1]]},"107":{"position":[[5488,1],[5518,2],[5558,1]]},"108":{"position":[[2281,1]]},"113":{"position":[[6954,1]]},"125":{"position":[[2647,1]]},"128":{"position":[[5299,1],[8078,1],[12129,1]]},"131":{"position":[[3805,1],[3897,1]]},"135":{"position":[[1218,1],[4455,1],[4578,1],[13681,2],[13762,2],[13837,2],[15478,1],[16234,1]]},"138":{"position":[[4101,1]]},"139":{"position":[[7399,1]]},"140":{"position":[[6309,1],[15046,1],[16147,2]]},"141":{"position":[[8238,1]]},"142":{"position":[[1302,1],[5618,1],[5792,1],[5964,1],[9219,1],[15081,2],[15162,2],[15240,2],[15315,2],[17929,1]]},"143":{"position":[[11910,1],[12043,1],[13756,1]]},"144":{"position":[[13388,2]]},"145":{"position":[[12610,1],[12798,1],[13311,1]]},"146":{"position":[[2370,1]]},"147":{"position":[[2011,2],[10561,1]]},"148":{"position":[[7214,2]]},"150":{"position":[[3440,1],[3541,1],[3640,1],[3741,1],[4044,1],[4365,1],[4686,1],[5026,1],[5176,1],[5284,1],[9921,1],[15200,1],[15504,1],[15596,2],[17475,1]]}}}],["8.0.0",{"_index":6209,"t":{},"d":{},"k":{},"b":{"128":{"position":[[11217,5],[11261,6],[11370,5],[11394,5],[11592,5]]}}}],["80",{"_index":696,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3987,3],[22609,3],[22668,3],[22728,3],[22789,3]]}}}],["80mhz",{"_index":713,"t":{},"d":{},"k":{},"b":{"68":{"position":[[4987,5]]}}}],["8192",{"_index":8093,"t":{},"d":{},"k":{},"b":{"149":{"position":[[6825,4]]}}}],["8bit",{"_index":7153,"t":{},"d":{},"k":{},"b":{"139":{"position":[[2931,5],[2952,5]]},"140":{"position":[[2686,5],[2700,5]]}}}],["8d",{"_index":7659,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12261,2],[12264,2],[12267,2]]}}}],["8mb",{"_index":8275,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16758,4]]}}}],["8mhz",{"_index":4062,"t":{},"d":{},"k":{},"b":{"88":{"position":[[12419,4],[12552,4]]}}}],["8u",{"_index":8236,"t":{},"d":{},"k":{},"b":{"150":{"position":[[13483,2],[14689,3]]}}}],["8x",{"_index":7171,"t":{},"d":{},"k":{},"b":{"139":{"position":[[5586,2],[15390,2]]},"140":{"position":[[12189,2]]}}}],["9",{"_index":572,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14714,2]]},"70":{"position":[[2634,2],[4811,1],[4852,1]]},"83":{"position":[[44045,1]]},"88":{"position":[[12704,1],[51000,1]]},"129":{"position":[[1735,1],[15517,1]]},"139":{"position":[[19702,1],[20060,1],[20942,1],[21287,1]]},"140":{"position":[[15147,1]]},"141":{"position":[[8293,1]]},"143":{"position":[[13798,1]]},"147":{"position":[[2022,2],[10525,1]]},"150":{"position":[[17531,1]]}}}],["90",{"_index":6676,"t":{},"d":{},"k":{},"b":{"133":{"position":[[30706,2]]},"138":{"position":[[3150,2]]}}}],["93.750",{"_index":8010,"t":{},"d":{},"k":{},"b":{"148":{"position":[[4230,6],[4258,6]]}}}],["96",{"_index":2252,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1294,2],[2238,2],[16771,2]]}}}],["9650",{"_index":5886,"t":{},"d":{},"k":{},"b":{"124":{"position":[[3230,4]]}}}],["9899:1999",{"_index":116,"t":{},"d":{},"k":{},"b":{"1":{"position":[[298,9]]}}}],["99.75",{"_index":2322,"t":{},"d":{},"k":{},"b":{"75":{"position":[[12355,5]]}}}],["9bit",{"_index":7155,"t":{},"d":{},"k":{},"b":{"139":{"position":[[2945,5]]}}}],["9th",{"_index":3791,"t":{},"d":{},"k":{},"b":{"86":{"position":[[1835,3]]},"125":{"position":[[5163,3]]}}}],["__asm",{"_index":2658,"t":{},"d":{},"k":{},"b":{"76":{"position":[[7506,5],[7537,5],[9804,5],[9835,5],[23349,5],[23380,5]]}}}],["__attribute__",{"_index":1687,"t":{},"d":{},"k":{},"b":{"71":{"position":[[434,13],[40837,15],[40882,13]]}}}],["__attribute__((aligned(16)));void",{"_index":5235,"t":{},"d":{},"k":{},"b":{"106":{"position":[[13636,33]]}}}],["__bkpt",{"_index":1976,"t":{},"d":{},"k":{},"b":{"71":{"position":[[31076,8],[33651,8]]}}}],["__bkpt(0",{"_index":5930,"t":{},"d":{},"k":{},"b":{"124":{"position":[[8973,10],[9578,10],[9714,10],[11442,10],[12199,10]]},"125":{"position":[[12084,10],[13014,10],[13164,10]]},"138":{"position":[[8860,10],[9472,10],[9608,10],[10653,10],[11440,10]]},"146":{"position":[[6494,10],[9661,10],[12882,10],[14975,10]]}}}],["__file__",{"_index":6249,"t":{},"d":{},"k":{},"b":{"128":{"position":[[15820,9],[16870,9]]}}}],["__i",{"_index":301,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1815,3]]}}}],["__line__",{"_index":6250,"t":{},"d":{},"k":{},"b":{"128":{"position":[[15834,8],[16880,8]]}}}],["__static_inlin",{"_index":1284,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13,15],[78,15],[162,15],[214,15],[267,15],[319,15],[372,15],[476,15],[575,15],[652,15],[729,15],[846,15],[938,15],[1078,15],[13738,15],[14043,15],[14480,15],[14815,15],[15151,15],[15360,15],[15570,15],[15935,15],[16295,15],[16532,15],[16773,15],[17152,15],[17488,15],[17976,15]]},"71":{"position":[[915,15],[970,15],[47061,15],[47320,15]]}}}],["__unnamed__",{"_index":2156,"t":{},"d":{},"k":{},"b":{"74":{"position":[[2364,11]]},"87":{"position":[[1306,11]]},"111":{"position":[[917,11]]},"113":{"position":[[514,11]]},"145":{"position":[[1839,11]]}}}],["_iaq_2nd_gen",{"_index":6598,"t":{},"d":{},"k":{},"b":{"133":{"position":[[5415,12]]}}}],["a.out",{"_index":1765,"t":{},"d":{},"k":{},"b":{"71":{"position":[[4223,5]]}}}],["a/d",{"_index":226,"t":{},"d":{},"k":{},"b":{"67":{"position":[[36,3],[10662,3]]},"68":{"position":[[2116,3],[2193,3],[2252,3],[2313,3],[2384,3],[6206,3],[6281,3],[6832,3],[6966,3],[7332,3],[7392,3],[7433,3],[7590,3],[7649,3],[7698,3],[7849,3],[7953,3],[8039,3],[8168,3],[8293,3],[8327,3],[8437,3],[8478,3],[13206,3],[13311,3],[16075,3],[25261,3],[26309,3],[29495,3]]},"69":{"position":[[3485,3],[3634,3],[3911,3],[9846,3],[9894,3],[10058,3],[19409,3],[19494,3],[19673,3],[19740,3],[36092,3]]},"71":{"position":[[35254,3]]},"83":{"position":[[2883,3],[13081,3],[13145,3],[13211,3],[13275,3],[13340,3],[26325,3],[26432,3],[26529,3],[26553,3],[27106,3],[27310,3],[27403,3],[29360,3],[38695,3],[38825,3],[38982,3],[39139,3],[39296,3],[40945,3],[41005,3],[41048,3],[41113,3],[41156,3],[55375,3]]},"105":{"position":[[2864,3],[2925,3],[2953,3],[3231,3],[8887,3],[9124,3],[9209,3],[9331,3],[18578,3],[18668,3],[27259,3],[27320,3],[27364,3],[27430,3],[27474,3],[27694,3],[27801,3],[37317,3]]},"115":{"position":[[243,3]]},"146":{"position":[[21882,3]]},"152":{"position":[[6667,3]]}}}],["a55",{"_index":2044,"t":{},"d":{},"k":{},"b":{"71":{"position":[[41346,3]]},"94":{"position":[[231,3]]},"95":{"position":[[665,4]]},"96":{"position":[[693,4]]},"97":{"position":[[497,4]]},"98":{"position":[[607,4]]},"99":{"position":[[655,3]]},"100":{"position":[[685,3]]},"101":{"position":[[331,4]]},"102":{"position":[[491,3]]},"104":{"position":[[597,3]]}}}],["abil",{"_index":130,"t":{},"d":{},"k":{},"b":{"1":{"position":[[495,7]]},"93":{"position":[[142,7]]},"128":{"position":[[9765,7]]}}}],["abort",{"_index":1011,"t":{},"d":{},"k":{},"b":{"69":{"position":[[8192,5],[33557,5],[33658,6]]},"74":{"position":[[8364,5]]},"75":{"position":[[2021,7]]},"85":{"position":[[3536,5],[5678,5],[9473,8]]},"86":{"position":[[7162,8]]},"88":{"position":[[40669,8],[47770,5]]},"113":{"position":[[2990,8],[4132,8],[4563,8]]},"124":{"position":[[1718,5],[17220,6],[17591,7],[19119,7]]},"129":{"position":[[16008,8],[16939,8]]},"131":{"position":[[16708,8],[18078,8],[18902,8],[19884,8]]},"133":{"position":[[51845,8],[52423,8],[52997,8],[53587,8],[54362,8],[56013,8]]},"138":{"position":[[1732,5],[13900,8],[13956,5],[16555,6],[16736,8],[16792,5],[16957,7]]},"139":{"position":[[1684,5],[8984,5],[23004,6],[23696,5],[23736,7],[23821,8],[23860,7],[24089,7],[24270,5],[27040,5],[27093,8],[27132,7],[27351,7],[27532,5]]},"140":{"position":[[1680,5],[6858,5],[20858,6],[21548,5],[21588,7],[21673,8],[21712,7],[21941,7],[22122,5],[23989,5],[24042,8],[24081,7],[24300,7],[24481,5]]},"141":{"position":[[11335,8]]},"146":{"position":[[19502,5]]},"147":{"position":[[6570,6],[7432,5],[7616,5]]}}}],["abort_irq",{"_index":4315,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47750,9]]}}}],["abov",{"_index":737,"t":{},"d":{},"k":{},"b":{"68":{"position":[[6027,5]]},"71":{"position":[[4992,6],[6146,6]]},"75":{"position":[[2403,5],[22127,6],[24876,5]]},"76":{"position":[[2848,5]]},"83":{"position":[[6973,5]]},"84":{"position":[[3563,5]]},"124":{"position":[[5883,6]]},"128":{"position":[[6101,5],[6610,5],[13822,5],[14163,5],[14843,5]]},"138":{"position":[[5861,6]]},"150":{"position":[[15031,6]]}}}],["absolut",{"_index":7289,"t":{},"d":{},"k":{},"b":{"139":{"position":[[25366,8]]},"140":{"position":[[23286,8]]}}}],["ac",{"_index":5887,"t":{},"d":{},"k":{},"b":{"124":{"position":[[3422,2]]},"136":{"position":[[3754,2]]}}}],["acceler",{"_index":2243,"t":{},"d":{},"k":{},"b":{"75":{"position":[[991,10]]}}}],["accept",{"_index":1039,"t":{},"d":{},"k":{},"b":{"69":{"position":[[11684,8],[11824,8],[12007,8]]},"75":{"position":[[1534,6],[9908,10],[10000,10],[10067,10],[10159,10],[10226,10],[10317,10],[10384,10],[10475,10],[10542,10],[10633,10],[10700,10],[10791,10],[14873,10],[18115,11],[18226,10],[18796,7],[19438,8],[21466,11],[23700,8],[25307,10]]},"76":{"position":[[23095,6]]},"83":{"position":[[46799,6]]},"84":{"position":[[15684,6]]},"87":{"position":[[1951,6],[2030,6],[17003,6]]},"88":{"position":[[2608,9],[23798,8],[31543,8]]},"105":{"position":[[28328,6]]},"125":{"position":[[1041,6],[4988,9]]},"131":{"position":[[6881,6]]},"133":{"position":[[7930,12]]},"148":{"position":[[8439,10]]}}}],["access",{"_index":758,"t":{"70":{"position":[[53,6]]},"79":{"position":[[59,6]]}},"d":{},"k":{},"b":{"68":{"position":[[8860,6]]},"70":{"position":[[1194,6],[14599,6],[14936,6],[15270,6],[15481,6]]},"71":{"position":[[11773,6],[11818,7],[11873,7],[34527,6],[35094,6],[35143,6]]},"79":{"position":[[1079,6],[6869,7]]},"85":{"position":[[3164,6]]},"86":{"position":[[2811,6]]},"93":{"position":[[36,9],[153,6],[9073,7],[9124,7]]},"111":{"position":[[347,6],[393,6]]},"113":{"position":[[6495,6],[12726,6]]},"115":{"position":[[708,9],[1223,9],[1345,9]]},"123":{"position":[[66,6]]},"128":{"position":[[18245,8],[18711,6]]},"133":{"position":[[49981,7]]},"135":{"position":[[4032,6],[12792,6]]},"136":{"position":[[6485,9]]},"137":{"position":[[36,9]]},"138":{"position":[[7381,6]]},"142":{"position":[[5881,6],[14407,6]]},"143":{"position":[[36,9],[5794,6],[9342,7]]},"145":{"position":[[181,6]]},"150":{"position":[[1479,6],[1757,6],[6530,6],[19136,8],[25700,7]]},"152":{"position":[[481,6],[6329,6],[7092,9],[7579,9],[7691,9]]}}}],["accessthi",{"_index":8340,"t":{},"d":{},"k":{},"b":{"152":{"position":[[437,10]]}}}],["accompani",{"_index":1758,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3817,12]]}}}],["accomplish",{"_index":1752,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3618,12]]}}}],["accord",{"_index":742,"t":{},"d":{},"k":{},"b":{"68":{"position":[[6901,10]]},"77":{"position":[[5566,9]]},"79":{"position":[[5475,9]]},"133":{"position":[[10141,9],[10688,9]]},"134":{"position":[[3127,9],[3215,9]]},"142":{"position":[[18897,9]]},"145":{"position":[[10945,9],[11763,9]]}}}],["accordingli",{"_index":1863,"t":{},"d":{},"k":{},"b":{"71":{"position":[[10735,12]]},"87":{"position":[[18887,12]]}}}],["account",{"_index":2435,"t":{},"d":{},"k":{},"b":{"75":{"position":[[22265,7]]},"76":{"position":[[9476,9],[10742,8],[16532,8]]},"79":{"position":[[7738,7]]},"83":{"position":[[23007,9],[24198,8]]},"84":{"position":[[8014,8]]},"105":{"position":[[14493,8],[31132,8]]}}}],["accur",{"_index":2065,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44336,8]]},"88":{"position":[[16152,8]]},"136":{"position":[[1811,8]]},"139":{"position":[[3980,8]]},"140":{"position":[[3496,8]]}}}],["accuraci",{"_index":5592,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4033,8],[6927,8],[7004,8]]}}}],["acheiv",{"_index":7233,"t":{},"d":{},"k":{},"b":{"139":{"position":[[13188,7]]}}}],["achiev",{"_index":2089,"t":{},"d":{},"k":{},"b":{"71":{"position":[[45602,8]]},"75":{"position":[[15167,7]]},"76":{"position":[[6448,8]]},"83":{"position":[[6611,9],[16649,8],[17332,8]]},"84":{"position":[[5624,8]]},"88":{"position":[[22214,10]]},"92":{"position":[[31199,7]]},"105":{"position":[[11485,8]]},"124":{"position":[[1816,8],[5178,9],[6427,8]]},"125":{"position":[[3986,9],[7637,8]]},"128":{"position":[[13765,8],[14023,8]]},"133":{"position":[[7204,8]]},"135":{"position":[[3263,9],[7982,7],[11251,7]]},"138":{"position":[[1830,8],[3418,9],[5268,9],[6159,8]]},"139":{"position":[[3264,9],[4113,9]]},"140":{"position":[[3629,9],[10431,7]]},"142":{"position":[[5323,9],[8864,7],[12274,7],[24414,10]]}}}],["ack",{"_index":2549,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33676,3],[33888,3]]},"88":{"position":[[10372,3],[10444,3],[10664,3],[10691,3],[10778,3]]},"131":{"position":[[5801,3]]}}}],["ack/nack",{"_index":4243,"t":{},"d":{},"k":{},"b":{"88":{"position":[[41500,8]]}}}],["ack_mod",{"_index":3026,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10129,8]]}}}],["ack_output_pin",{"_index":3028,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10190,14]]}}}],["ack_phase_en",{"_index":4242,"t":{},"d":{},"k":{},"b":{"88":{"position":[[41446,17]]}}}],["acknowledg",{"_index":4025,"t":{},"d":{},"k":{},"b":{"88":{"position":[[4688,11]]}}}],["acmphs0",{"_index":5492,"t":{},"d":{},"k":{},"b":{"109":{"position":[[7180,7]]}}}],["acmphs1",{"_index":5494,"t":{},"d":{},"k":{},"b":{"109":{"position":[[7258,7]]}}}],["acmphs2",{"_index":5496,"t":{},"d":{},"k":{},"b":{"109":{"position":[[7336,7]]}}}],["acmphs3",{"_index":5498,"t":{},"d":{},"k":{},"b":{"109":{"position":[[7414,7]]}}}],["acmphs4",{"_index":5500,"t":{},"d":{},"k":{},"b":{"109":{"position":[[7492,7]]}}}],["acmphs5",{"_index":5502,"t":{},"d":{},"k":{},"b":{"109":{"position":[[7570,7]]}}}],["acord",{"_index":6879,"t":{},"d":{},"k":{},"b":{"135":{"position":[[17063,8]]}}}],["acquir",{"_index":6602,"t":{},"d":{},"k":{},"b":{"133":{"position":[[5917,7]]}}}],["acquisit",{"_index":6491,"t":{},"d":{},"k":{},"b":{"131":{"position":[[7580,11]]},"133":{"position":[[9596,11]]},"146":{"position":[[13108,11]]}}}],["act",{"_index":7464,"t":{},"d":{},"k":{},"b":{"141":{"position":[[10682,6]]}}}],["action",{"_index":1160,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22937,6]]},"83":{"position":[[33484,6],[33554,6],[33624,6],[33694,6],[33764,6],[33834,6],[33904,6],[33974,6],[34060,6],[34167,6],[34275,6],[34383,6],[34490,6],[34597,6],[34705,6],[34813,6],[34895,6],[34950,6],[35005,6],[35060,6],[35115,6],[35170,6],[35225,6],[35280,6],[35387,6],[35457,6],[35527,6],[35597,6],[35667,6],[35737,6],[35807,6],[35877,6],[35963,6],[36070,6],[36178,6],[36286,6],[36393,6],[36500,6],[36608,6],[36716,6],[36802,6],[36865,6],[36928,6],[36991,6],[37054,6],[37117,6],[37180,6],[37243,6],[37306,6],[37369,6],[37432,6],[37495,6],[37558,6],[37621,6],[37684,6],[37747,6]]},"128":{"position":[[16017,6]]}}}],["activ",{"_index":656,"t":{},"d":{},"k":{},"b":{"68":{"position":[[1690,10],[6535,10],[6671,10],[16089,10]]},"71":{"position":[[47183,6]]},"78":{"position":[[324,8]]},"79":{"position":[[1545,10],[2931,10],[3012,10],[3171,10],[5361,10],[10580,10],[15134,10],[16919,10],[19809,10],[20295,10]]},"80":{"position":[[1937,9]]},"83":{"position":[[33434,6],[35337,6]]},"87":{"position":[[15004,8],[15055,8],[15106,8],[15157,8],[16246,8],[16294,8],[16342,8],[16390,8]]},"88":{"position":[[11700,8],[11716,8],[11734,8],[11752,8],[11770,8],[11788,8],[11828,8],[43189,8],[49684,8],[49808,8],[49873,8],[49941,8],[50007,8]]},"92":{"position":[[11288,8],[12393,8]]},"105":{"position":[[2878,10],[2939,10],[3245,10],[9223,10],[9345,10],[27708,10],[27815,10]]},"108":{"position":[[2074,6],[2087,6],[2099,6]]},"109":{"position":[[6528,6],[8108,6]]},"113":{"position":[[4808,6],[5309,7],[9769,7]]},"125":{"position":[[8001,6]]},"131":{"position":[[6494,7]]},"133":{"position":[[5224,7],[13113,7],[17247,7],[21551,7],[26565,7],[32718,7],[36833,7],[41138,7],[45390,7]]},"135":{"position":[[2815,6],[2827,6],[2840,6],[2875,6],[14197,6],[14247,6]]},"136":{"position":[[6062,8]]},"139":{"position":[[4902,6],[4914,6],[4927,6]]},"140":{"position":[[3941,6],[3953,6],[3966,6]]},"142":{"position":[[4543,6],[4555,6],[4568,6],[4603,6],[16101,6],[16152,6]]},"145":{"position":[[6443,10],[6552,10],[6890,10],[7008,10],[7538,10],[8176,10],[16238,10],[16305,10]]},"147":{"position":[[5307,6]]}}}],["activation_request_source_select",{"_index":3032,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10541,32]]}}}],["activation_sourc",{"_index":3025,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10090,17],[10979,17]]}}}],["activity_st",{"_index":4258,"t":{},"d":{},"k":{},"b":{"88":{"position":[[43164,14]]}}}],["actual",{"_index":2072,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44683,6],[45589,6]]},"75":{"position":[[22913,6]]},"76":{"position":[[6286,6]]},"83":{"position":[[17539,8]]},"84":{"position":[[4947,6]]},"105":{"position":[[11693,8]]},"124":{"position":[[4977,6]]},"125":{"position":[[3785,6]]},"128":{"position":[[3973,8],[14721,8]]},"138":{"position":[[4368,6],[5020,6],[6607,6]]},"139":{"position":[[3580,6]]},"140":{"position":[[3096,6],[4041,6]]}}}],["ad",{"_index":675,"t":{},"d":{},"k":{},"b":{"68":{"position":[[2927,5],[3783,2],[3911,2],[10835,2],[13701,2],[17483,2],[22471,2]]},"69":{"position":[[1862,6],[2400,5],[10807,2],[28853,2]]},"75":{"position":[[11610,5]]},"76":{"position":[[2166,5]]},"77":{"position":[[1718,5]]},"79":{"position":[[2093,5]]},"80":{"position":[[4178,5]]},"83":{"position":[[5105,5],[13659,2],[13894,2]]},"84":{"position":[[2592,5]]},"88":{"position":[[7596,5]]},"89":{"position":[[1935,5]]},"90":{"position":[[1883,5]]},"91":{"position":[[1937,5]]},"92":{"position":[[2952,5]]},"105":{"position":[[4401,5]]},"106":{"position":[[1512,5]]},"108":{"position":[[1533,5]]},"124":{"position":[[2646,5]]},"125":{"position":[[1834,5]]},"127":{"position":[[1910,5],[2480,5]]},"129":{"position":[[3737,5]]},"131":{"position":[[3593,5]]},"133":{"position":[[6380,5]]},"135":{"position":[[2098,5]]},"136":{"position":[[4362,5],[17285,2]]},"138":{"position":[[2754,5]]},"139":{"position":[[2473,5]]},"140":{"position":[[2386,5]]},"142":{"position":[[2626,5]]},"145":{"position":[[14098,5]]},"146":{"position":[[2049,5]]},"148":{"position":[[1869,5]]},"150":{"position":[[2425,5]]}}}],["adc",{"_index":224,"t":{"67":{"position":[[45,3]]}},"d":{},"k":{},"b":{"67":{"position":[[66,3],[98,3],[1085,3],[1248,3],[1314,3],[1355,3],[1751,3],[2698,3],[2754,3],[2796,3],[2849,3],[3736,3],[5085,3],[5329,3],[7001,3],[7788,3],[8242,3],[8702,3],[10143,3],[10563,3],[10970,3],[11383,3],[12062,3],[12275,3],[12645,3],[13029,3],[13244,3],[13562,3],[14384,3],[14423,3],[14454,3],[14485,3],[14516,3],[14547,3],[14578,3],[14609,3],[14640,3],[14671,3],[14702,3],[14734,3],[14767,3],[14800,3],[14833,3],[14866,3],[14899,3],[14932,3],[14965,3],[14998,3],[15031,3],[15064,3],[15097,3],[15130,3],[15163,3],[15196,3],[15229,3],[15262,3],[15295,3],[15328,3],[16517,3],[16556,3],[16598,3],[16656,3],[16702,3]]},"68":{"position":[[1227,3],[1281,3],[2894,3],[2976,3],[5083,4],[5182,3],[5249,3],[6053,3],[7176,3],[8781,3],[8881,3],[9351,3],[13547,3],[16318,3],[17003,4],[17616,3],[17904,3],[18104,3],[18752,3],[18998,3],[21779,3],[21995,3],[22213,3],[23479,3]]},"69":{"position":[[1216,3],[2359,3],[2449,3],[2644,3],[3005,3],[6063,3],[6581,3],[8510,3],[10231,4],[10250,3],[10866,3],[10983,3],[12642,3],[12831,3],[12857,3],[13138,3],[17768,3],[18216,3],[19080,4],[20139,3],[20873,3],[21386,3],[21586,3],[22263,3],[22704,3],[22933,3],[23954,3],[28133,3],[28371,3],[28487,3],[28619,3],[28742,3],[30191,3],[30545,3],[32072,3],[36679,4],[37121,4]]},"80":{"position":[[1041,3],[1579,3],[2007,3]]},"83":{"position":[[13032,3],[13460,3],[13474,3],[13695,3],[13709,3],[14875,3],[14893,3],[14914,3],[14935,3],[15013,3],[20193,3],[26410,3],[29901,3],[38845,3],[39002,3],[39159,3],[39316,3],[42690,3],[42787,3],[42831,3],[42877,3],[42929,3]]},"105":{"position":[[2792,3],[8721,3],[8958,3],[9195,3]]},"110":{"position":[[104,3],[158,3],[302,3],[435,3]]},"115":{"position":[[214,3]]},"129":{"position":[[756,3],[1030,3],[2949,3],[3030,3],[4136,3],[4254,3],[4296,3],[9255,3],[9494,3],[13207,3],[13951,3]]},"130":{"position":[[3562,3],[4004,3]]},"131":{"position":[[1455,3],[2015,3],[2394,3],[2475,3],[7890,3],[8048,3],[8448,3],[8835,3],[9411,3],[9569,3],[13151,3],[13982,3],[19314,3],[20436,3]]},"132":{"position":[[4108,3],[4550,3]]},"133":{"position":[[1861,3],[5869,3],[5904,3],[10054,3],[10601,3],[29658,3],[29738,3],[29845,3],[48268,3],[48348,3],[55696,3]]},"134":{"position":[[7501,3],[7965,3],[8498,3],[9010,3],[9543,3],[10077,3],[10610,3],[11118,3]]},"146":{"position":[[1326,3],[2008,3],[2098,3],[15306,4]]},"152":{"position":[[690,3],[744,3],[883,3],[1011,3],[6640,3]]}}}],["adc12",{"_index":962,"t":{},"d":{},"k":{},"b":{"69":{"position":[[1149,5],[13062,5]]},"110":{"position":[[235,5]]},"152":{"position":[[816,5]]}}}],["adc_",{"_index":964,"t":{},"d":{},"k":{},"b":{"69":{"position":[[1256,5]]}}}],["adc_0_adclk",{"_index":1015,"t":{},"d":{},"k":{},"b":{"69":{"position":[[9915,11]]}}}],["adc_a_compare_match",{"_index":3431,"t":{},"d":{},"k":{},"b":{"83":{"position":[[29534,19]]},"105":{"position":[[18551,19]]}}}],["adc_activation_set",{"_index":4980,"t":{},"d":{},"k":{},"b":{"105":{"position":[[20333,22]]}}}],["adc_adclk(tsu",{"_index":695,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3971,15]]}}}],["adc_alignment_left",{"_index":523,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13116,18]]}}}],["adc_alignment_right",{"_index":7863,"t":{},"d":{},"k":{},"b":{"146":{"position":[[5015,20],[7895,20],[11007,20]]}}}],["adc_alignment_t",{"_index":272,"t":{},"d":{},"k":{},"b":{"67":{"position":[[816,15],[2869,15],[12946,15],[12996,15]]},"146":{"position":[[4997,17],[7877,17],[10989,17]]}}}],["adc_api_t",{"_index":263,"t":{},"d":{},"k":{},"b":{"67":{"position":[[675,9],[3663,9],[3709,9],[11876,9]]}}}],["adc_api_t::calibr",{"_index":450,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8604,21]]},"68":{"position":[[30468,20]]},"69":{"position":[[37076,20]]},"146":{"position":[[22838,20]]}}}],["adc_api_t::callbackset",{"_index":468,"t":{},"d":{},"k":{},"b":{"67":{"position":[[9745,23]]},"68":{"position":[[31214,22]]},"69":{"position":[[37841,22]]},"146":{"position":[[24106,22]]}}}],["adc_api_t::clos",{"_index":481,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10481,17]]}}}],["adc_api_t::infoget",{"_index":486,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10865,19]]}}}],["adc_api_t::offsetset",{"_index":462,"t":{},"d":{},"k":{},"b":{"67":{"position":[[9175,21]]},"68":{"position":[[30037,20]]},"69":{"position":[[36634,20]]},"146":{"position":[[23352,20]]}}}],["adc_api_t::open",{"_index":391,"t":{},"d":{},"k":{},"b":{"67":{"position":[[4983,16]]},"68":{"position":[[17966,18]]},"69":{"position":[[21448,18]]},"146":{"position":[[15862,18]]}}}],["adc_api_t::read",{"_index":434,"t":{},"d":{},"k":{},"b":{"67":{"position":[[7670,16]]}}}],["adc_api_t::read32",{"_index":443,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8122,18]]},"146":{"position":[[21506,17]]}}}],["adc_api_t::scancfg",{"_index":406,"t":{},"d":{},"k":{},"b":{"67":{"position":[[5557,19]]},"146":{"position":[[17585,18]]}}}],["adc_api_t::scangroupstart",{"_index":419,"t":{},"d":{},"k":{},"b":{"67":{"position":[[6483,26]]},"68":{"position":[[25978,25]]},"146":{"position":[[18968,25]]}}}],["adc_api_t::scanstart",{"_index":413,"t":{},"d":{},"k":{},"b":{"67":{"position":[[6125,21]]},"69":{"position":[[32966,20]]}}}],["adc_api_t::scanstatusget",{"_index":427,"t":{},"d":{},"k":{},"b":{"67":{"position":[[7302,25]]}}}],["adc_api_t::scanstop",{"_index":424,"t":{},"d":{},"k":{},"b":{"67":{"position":[[6927,20]]}}}],["adc_b_compare_match",{"_index":3432,"t":{},"d":{},"k":{},"b":{"83":{"position":[[29599,19]]},"105":{"position":[[18641,19]]}}}],["adc_basic_exampl",{"_index":773,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9792,17]]},"69":{"position":[[13674,17]]}}}],["adc_c",{"_index":646,"t":{},"d":{},"k":{},"b":{"68":{"position":[[1321,5],[4871,5],[24116,5],[26878,5]]}}}],["adc_c_active_trigger_adtrga0",{"_index":793,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11012,29],[20572,28]]}}}],["adc_c_active_trigger_adtrga0_b0",{"_index":907,"t":{},"d":{},"k":{},"b":{"68":{"position":[[21084,31]]}}}],["adc_c_active_trigger_adtrga1",{"_index":895,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20700,28]]}}}],["adc_c_active_trigger_adtrga1_b1",{"_index":908,"t":{},"d":{},"k":{},"b":{"68":{"position":[[21167,31]]}}}],["adc_c_active_trigger_adtrga2",{"_index":899,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20828,28]]}}}],["adc_c_active_trigger_adtrga2_b2",{"_index":909,"t":{},"d":{},"k":{},"b":{"68":{"position":[[21250,31]]}}}],["adc_c_active_trigger_adtrga3",{"_index":903,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20956,28]]}}}],["adc_c_active_trigger_adtrga3_b3",{"_index":910,"t":{},"d":{},"k":{},"b":{"68":{"position":[[21333,31]]}}}],["adc_c_active_trigger_adtrgb0",{"_index":893,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20636,28]]}}}],["adc_c_active_trigger_adtrgb1",{"_index":897,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20764,28]]}}}],["adc_c_active_trigger_adtrgb2",{"_index":901,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20892,28]]}}}],["adc_c_active_trigger_adtrgb3",{"_index":905,"t":{},"d":{},"k":{},"b":{"68":{"position":[[21020,28]]}}}],["adc_c_active_trigger_t",{"_index":834,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16612,22],[17075,22],[18901,22],[18958,22]]}}}],["adc_c_active_trigger_trg0n",{"_index":875,"t":{},"d":{},"k":{},"b":{"68":{"position":[[19661,26]]}}}],["adc_c_active_trigger_trg4abn",{"_index":883,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20002,28]]}}}],["adc_c_active_trigger_trg4an",{"_index":877,"t":{},"d":{},"k":{},"b":{"68":{"position":[[19720,27]]}}}],["adc_c_active_trigger_trg4an_bn",{"_index":882,"t":{},"d":{},"k":{},"b":{"68":{"position":[[19880,30]]}}}],["adc_c_active_trigger_trg4bn",{"_index":880,"t":{},"d":{},"k":{},"b":{"68":{"position":[[19800,27]]}}}],["adc_c_active_trigger_trg7abn",{"_index":891,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20451,28]]}}}],["adc_c_active_trigger_trg7an",{"_index":885,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20169,27]]}}}],["adc_c_active_trigger_trg7an_bn",{"_index":890,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20329,30]]}}}],["adc_c_active_trigger_trg7bn",{"_index":888,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20249,27]]}}}],["adc_c_active_trigger_trga0n",{"_index":826,"t":{},"d":{},"k":{},"b":{"68":{"position":[[13880,28],[19101,27]]}}}],["adc_c_active_trigger_trga1n",{"_index":863,"t":{},"d":{},"k":{},"b":{"68":{"position":[[19181,27]]}}}],["adc_c_active_trigger_trga2n",{"_index":865,"t":{},"d":{},"k":{},"b":{"68":{"position":[[19261,27]]}}}],["adc_c_active_trigger_trga3n",{"_index":867,"t":{},"d":{},"k":{},"b":{"68":{"position":[[19341,27]]}}}],["adc_c_active_trigger_trga4n",{"_index":869,"t":{},"d":{},"k":{},"b":{"68":{"position":[[19421,27]]}}}],["adc_c_active_trigger_trga6n",{"_index":871,"t":{},"d":{},"k":{},"b":{"68":{"position":[[19501,27]]}}}],["adc_c_active_trigger_trga7n",{"_index":873,"t":{},"d":{},"k":{},"b":{"68":{"position":[[19581,27]]}}}],["adc_c_buffer_mode_1",{"_index":801,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11270,20],[14137,20]]}}}],["adc_c_buffer_mode_4",{"_index":917,"t":{},"d":{},"k":{},"b":{"68":{"position":[[22284,19]]}}}],["adc_c_buffer_mode_t",{"_index":838,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16734,19],[17326,19],[22122,19],[22176,19]]}}}],["adc_c_channel_cfg_t",{"_index":766,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9528,19],[9611,19],[11752,19],[14619,19],[16485,19],[17523,19],[17579,19],[24209,19]]}}}],["adc_c_extended_cfg_t",{"_index":788,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10867,20],[13735,20],[16454,20],[16871,20],[16928,20]]}}}],["adc_c_filter_stage_setting_12",{"_index":924,"t":{},"d":{},"k":{},"b":{"68":{"position":[[22690,29]]}}}],["adc_c_filter_stage_setting_16",{"_index":925,"t":{},"d":{},"k":{},"b":{"68":{"position":[[22751,29]]}}}],["adc_c_filter_stage_setting_4",{"_index":919,"t":{},"d":{},"k":{},"b":{"68":{"position":[[22572,28]]}}}],["adc_c_filter_stage_setting_8",{"_index":923,"t":{},"d":{},"k":{},"b":{"68":{"position":[[22631,28]]}}}],["adc_c_filter_stage_setting_disable,};const",{"_index":805,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11370,42],[14237,42]]}}}],["adc_c_filter_stage_setting_t",{"_index":839,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16763,28],[17428,28],[22327,28],[22390,28]]}}}],["adc_c_input_mode_step",{"_index":797,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11144,22],[14011,22],[21856,21]]}}}],["adc_c_input_mode_t",{"_index":836,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16674,18],[17214,18],[21690,18],[21743,18]]}}}],["adc_c_instance_ctrl_t",{"_index":831,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16515,21],[17807,21],[17865,21]]}}}],["adc_c_interrupt_channel_setting_disable,};void",{"_index":772,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9745,46]]}}}],["adc_c_interrupt_channel_setting_en",{"_index":809,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11894,43],[14761,43],[23080,38]]}}}],["adc_c_interrupt_channel_setting_t",{"_index":840,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16801,33],[17726,33],[22819,33],[22887,33]]}}}],["adc_c_mask_channel_0",{"_index":851,"t":{},"d":{},"k":{},"b":{"68":{"position":[[18268,20]]}}}],["adc_c_mask_channel_1",{"_index":770,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9686,20],[11831,20],[14698,20],[18307,20]]}}}],["adc_c_mask_channel_2",{"_index":852,"t":{},"d":{},"k":{},"b":{"68":{"position":[[18346,20]]}}}],["adc_c_mask_channel_3",{"_index":853,"t":{},"d":{},"k":{},"b":{"68":{"position":[[18385,20]]}}}],["adc_c_mask_channel_4",{"_index":854,"t":{},"d":{},"k":{},"b":{"68":{"position":[[18424,20]]}}}],["adc_c_mask_channel_5",{"_index":855,"t":{},"d":{},"k":{},"b":{"68":{"position":[[18463,20]]}}}],["adc_c_mask_channel_6",{"_index":856,"t":{},"d":{},"k":{},"b":{"68":{"position":[[18502,20]]}}}],["adc_c_mask_channel_7",{"_index":857,"t":{},"d":{},"k":{},"b":{"68":{"position":[[18541,20]]}}}],["adc_c_mask_channel_8",{"_index":858,"t":{},"d":{},"k":{},"b":{"68":{"position":[[18580,20]]}}}],["adc_c_mask_t",{"_index":832,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16560,12],[18023,12],[18070,12]]}}}],["adc_c_operating_mode_select",{"_index":799,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11204,28],[14071,28],[22072,27]]}}}],["adc_c_operating_mode_t",{"_index":837,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16702,22],[17268,22],[21898,22],[21955,22]]}}}],["adc_c_trigger_edge_both",{"_index":913,"t":{},"d":{},"k":{},"b":{"68":{"position":[[21645,23]]}}}],["adc_c_trigger_edge_fal",{"_index":795,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11079,27],[13946,27]]}}}],["adc_c_trigger_edge_ris",{"_index":912,"t":{},"d":{},"k":{},"b":{"68":{"position":[[21604,25]]}}}],["adc_c_trigger_edge_t",{"_index":835,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16644,20],[17142,20],[21423,20],[21478,20]]}}}],["adc_c_trigger_mode_hardwar",{"_index":791,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10946,28],[13814,28],[18841,27]]}}}],["adc_c_trigger_mode_t",{"_index":833,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16582,20],[17023,20],[18659,20],[18714,20]]}}}],["adc_callback",{"_index":806,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11537,13],[12228,12],[12919,13],[14404,13],[15095,12],[15786,13]]}}}],["adc_callback_args_t",{"_index":260,"t":{},"d":{},"k":{},"b":{"67":{"position":[[604,19],[1155,19],[1211,19],[3392,21],[3552,20],[4736,19],[9871,19]]},"68":{"position":[[1142,19],[12241,20],[15108,20],[30992,19]]},"69":{"position":[[1060,19],[14984,20],[17263,20],[37619,19]]},"146":{"position":[[1060,19],[5387,20],[8268,20],[11379,20],[23884,19]]}}}],["adc_cfg_t",{"_index":262,"t":{},"d":{},"k":{},"b":{"67":{"position":[[655,9],[2625,9],[2671,9],[3860,9],[5027,9],[11691,9]]},"68":{"position":[[57,9],[11413,9],[14280,9],[23353,9]]},"69":{"position":[[57,9],[29441,9]]},"146":{"position":[[57,9],[4793,9],[7673,9],[10785,9],[16733,9]]}}}],["adc_channel_1",{"_index":556,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14440,13]]},"68":{"position":[[10695,14],[12401,14],[15268,14]]},"69":{"position":[[14559,14],[15925,14]]}}}],["adc_channel_10",{"_index":573,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14719,14]]}}}],["adc_channel_11",{"_index":574,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14752,14]]}}}],["adc_channel_12",{"_index":576,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14785,14]]}}}],["adc_channel_13",{"_index":577,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14818,14]]}}}],["adc_channel_14",{"_index":579,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14851,14]]}}}],["adc_channel_15",{"_index":580,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14884,14]]}}}],["adc_channel_16",{"_index":582,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14917,14]]}}}],["adc_channel_17",{"_index":583,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14950,14]]}}}],["adc_channel_18",{"_index":585,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14983,14]]}}}],["adc_channel_19",{"_index":587,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15016,14]]}}}],["adc_channel_2",{"_index":558,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14471,13]]}}}],["adc_channel_20",{"_index":589,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15049,14]]}}}],["adc_channel_21",{"_index":591,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15082,14]]}}}],["adc_channel_22",{"_index":593,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15115,14]]}}}],["adc_channel_23",{"_index":595,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15148,14]]}}}],["adc_channel_24",{"_index":597,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15181,14]]}}}],["adc_channel_25",{"_index":598,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15214,14]]}}}],["adc_channel_26",{"_index":600,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15247,14]]}}}],["adc_channel_27",{"_index":602,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15280,14]]}}}],["adc_channel_28",{"_index":604,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15313,14]]}}}],["adc_channel_3",{"_index":560,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14502,13]]}}}],["adc_channel_4",{"_index":562,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14533,13]]}}}],["adc_channel_5",{"_index":564,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14564,13]]}}}],["adc_channel_6",{"_index":566,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14595,13]]}}}],["adc_channel_7",{"_index":568,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14626,13]]}}}],["adc_channel_8",{"_index":570,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14657,13]]}}}],["adc_channel_9",{"_index":571,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14688,13]]}}}],["adc_channel_cfg_t",{"_index":1050,"t":{},"d":{},"k":{},"b":{"69":{"position":[[13319,17],[13400,17]]}}}],["adc_channel_cfg_t::add_mask",{"_index":1139,"t":{},"d":{},"k":{},"b":{"69":{"position":[[21677,27]]}}}],["adc_channel_cfg_t::sample_hold_mask",{"_index":1140,"t":{},"d":{},"k":{},"b":{"69":{"position":[[21709,36]]}}}],["adc_channel_cfg_t::scan_mask",{"_index":847,"t":{},"d":{},"k":{},"b":{"68":{"position":[[18127,29]]},"69":{"position":[[21609,29]]}}}],["adc_channel_cfg_t::scan_mask_group_b",{"_index":1138,"t":{},"d":{},"k":{},"b":{"69":{"position":[[21639,37]]}}}],["adc_channel_duplex",{"_index":609,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15446,18]]},"69":{"position":[[12413,21],[14903,19],[16030,19]]}}}],["adc_channel_duplex_a",{"_index":606,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15346,20]]},"69":{"position":[[12997,21]]}}}],["adc_channel_duplex_b",{"_index":608,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15396,20]]},"69":{"position":[[13023,22]]}}}],["adc_channel_t",{"_index":275,"t":{},"d":{},"k":{},"b":{"67":{"position":[[885,13],[1432,13],[4278,13],[4379,13],[4557,13],[7714,13],[7989,14],[8168,13],[8468,14],[9224,13],[9615,14],[14305,13],[14353,13]]},"68":{"position":[[547,13],[647,13],[885,13],[27298,13],[27949,13],[29851,13]]},"69":{"position":[[547,13],[647,13],[803,13],[17417,13],[34698,13],[35349,13],[36448,13]]},"146":{"position":[[474,13],[574,13],[882,13],[20677,13],[21312,13],[23166,13]]}}}],["adc_channel_temperatur",{"_index":610,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15492,23]]}}}],["adc_channel_volt",{"_index":612,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15545,16]]}}}],["adc_chx",{"_index":714,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5018,7]]}}}],["adc_ctrl_t",{"_index":267,"t":{},"d":{},"k":{},"b":{"67":{"position":[[736,10],[3832,12],[3912,12],[3992,12],[4049,12],[4123,12],[4179,12],[4250,12],[4351,12],[4455,12],[4529,12],[4633,12],[4802,12],[4852,12],[5000,11],[5577,11],[6147,11],[6510,11],[6948,11],[7328,11],[7687,11],[8141,11],[8626,11],[9197,11],[9769,11],[10499,11],[10885,11],[11615,10],[11981,10],[12034,10]]},"68":{"position":[[36,11],[115,11],[197,11],[272,11],[328,11],[405,11],[456,11],[526,11],[626,11],[739,11],[807,11],[858,11],[959,11],[1040,11],[23270,10],[23905,10],[24515,10],[25195,10],[25788,10],[26244,10],[26678,10],[27215,10],[27866,10],[28573,10],[29348,10],[29763,10],[30277,10],[30704,10]]},"69":{"position":[[36,11],[115,11],[197,11],[272,11],[328,11],[405,11],[456,11],[526,11],[626,11],[725,11],[776,11],[877,11],[958,11],[29358,10],[30334,10],[30942,10],[31747,10],[32776,10],[33239,10],[34035,10],[34615,10],[35266,10],[35945,10],[36360,10],[36885,10],[37331,10]]},"146":{"position":[[36,11],[115,11],[199,11],[255,11],[332,11],[383,11],[453,11],[553,11],[652,11],[701,11],[776,11],[855,11],[958,11],[1147,11],[16650,10],[17389,10],[17823,10],[18778,10],[19211,10],[19946,10],[20594,10],[21229,10],[21735,10],[22146,10],[22647,10],[23078,10],[23596,10],[24542,10]]}}}],["adc_e_active_trigger_dis",{"_index":1250,"t":{},"d":{},"k":{},"b":{"69":{"position":[[27962,29]]}}}],["adc_e_active_trigger_elctrg0",{"_index":1249,"t":{},"d":{},"k":{},"b":{"69":{"position":[[27918,28]]}}}],["adc_e_active_trigger_gtadtra0n",{"_index":1169,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24038,30]]}}}],["adc_e_active_trigger_gtadtra0n_b0n",{"_index":1233,"t":{},"d":{},"k":{},"b":{"69":{"position":[[26194,34]]}}}],["adc_e_active_trigger_gtadtra10n",{"_index":1209,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25378,31]]}}}],["adc_e_active_trigger_gtadtra10n_b10n",{"_index":1243,"t":{},"d":{},"k":{},"b":{"69":{"position":[[27264,36]]}}}],["adc_e_active_trigger_gtadtra11n",{"_index":1213,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25514,31]]}}}],["adc_e_active_trigger_gtadtra11n_b11n",{"_index":1244,"t":{},"d":{},"k":{},"b":{"69":{"position":[[27373,36]]}}}],["adc_e_active_trigger_gtadtra12n",{"_index":1217,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25650,31]]}}}],["adc_e_active_trigger_gtadtra12n_b12n",{"_index":1245,"t":{},"d":{},"k":{},"b":{"69":{"position":[[27482,36]]}}}],["adc_e_active_trigger_gtadtra13n",{"_index":1221,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25786,31]]}}}],["adc_e_active_trigger_gtadtra13n_b13n",{"_index":1246,"t":{},"d":{},"k":{},"b":{"69":{"position":[[27591,36]]}}}],["adc_e_active_trigger_gtadtra14n",{"_index":1225,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25922,31]]}}}],["adc_e_active_trigger_gtadtra14n_b14n",{"_index":1247,"t":{},"d":{},"k":{},"b":{"69":{"position":[[27700,36]]}}}],["adc_e_active_trigger_gtadtra15n",{"_index":1229,"t":{},"d":{},"k":{},"b":{"69":{"position":[[26058,31]]}}}],["adc_e_active_trigger_gtadtra15n_b15n",{"_index":1248,"t":{},"d":{},"k":{},"b":{"69":{"position":[[27809,36]]}}}],["adc_e_active_trigger_gtadtra1n",{"_index":1173,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24172,30]]}}}],["adc_e_active_trigger_gtadtra1n_b1n",{"_index":1234,"t":{},"d":{},"k":{},"b":{"69":{"position":[[26301,34]]}}}],["adc_e_active_trigger_gtadtra2n",{"_index":1177,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24306,30]]}}}],["adc_e_active_trigger_gtadtra2n_b2n",{"_index":1235,"t":{},"d":{},"k":{},"b":{"69":{"position":[[26408,34]]}}}],["adc_e_active_trigger_gtadtra3n",{"_index":1181,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24440,30]]}}}],["adc_e_active_trigger_gtadtra3n_b3n",{"_index":1236,"t":{},"d":{},"k":{},"b":{"69":{"position":[[26515,34]]}}}],["adc_e_active_trigger_gtadtra4n",{"_index":1185,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24574,30]]}}}],["adc_e_active_trigger_gtadtra4n_b4n",{"_index":1237,"t":{},"d":{},"k":{},"b":{"69":{"position":[[26622,34]]}}}],["adc_e_active_trigger_gtadtra5n",{"_index":1189,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24708,30]]}}}],["adc_e_active_trigger_gtadtra5n_b5n",{"_index":1238,"t":{},"d":{},"k":{},"b":{"69":{"position":[[26729,34]]}}}],["adc_e_active_trigger_gtadtra6n",{"_index":1193,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24842,30]]}}}],["adc_e_active_trigger_gtadtra6n_b6n",{"_index":1239,"t":{},"d":{},"k":{},"b":{"69":{"position":[[26836,34]]}}}],["adc_e_active_trigger_gtadtra7n",{"_index":1197,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24976,30]]}}}],["adc_e_active_trigger_gtadtra7n_b7n",{"_index":1240,"t":{},"d":{},"k":{},"b":{"69":{"position":[[26943,34]]}}}],["adc_e_active_trigger_gtadtra8n",{"_index":1201,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25110,30]]}}}],["adc_e_active_trigger_gtadtra8n_b8n",{"_index":1241,"t":{},"d":{},"k":{},"b":{"69":{"position":[[27050,34]]}}}],["adc_e_active_trigger_gtadtra9n",{"_index":1205,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25244,30]]}}}],["adc_e_active_trigger_gtadtra9n_b9n",{"_index":1242,"t":{},"d":{},"k":{},"b":{"69":{"position":[[27157,34]]}}}],["adc_e_active_trigger_gtadtrb0n",{"_index":1171,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24105,30]]}}}],["adc_e_active_trigger_gtadtrb10n",{"_index":1211,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25446,31]]}}}],["adc_e_active_trigger_gtadtrb11n",{"_index":1215,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25582,31]]}}}],["adc_e_active_trigger_gtadtrb12n",{"_index":1219,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25718,31]]}}}],["adc_e_active_trigger_gtadtrb13n",{"_index":1223,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25854,31]]}}}],["adc_e_active_trigger_gtadtrb14n",{"_index":1227,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25990,31]]}}}],["adc_e_active_trigger_gtadtrb15n",{"_index":1231,"t":{},"d":{},"k":{},"b":{"69":{"position":[[26126,31]]}}}],["adc_e_active_trigger_gtadtrb1n",{"_index":1175,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24239,30]]}}}],["adc_e_active_trigger_gtadtrb2n",{"_index":1179,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24373,30]]}}}],["adc_e_active_trigger_gtadtrb3n",{"_index":1183,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24507,30]]}}}],["adc_e_active_trigger_gtadtrb4n",{"_index":1187,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24641,30]]}}}],["adc_e_active_trigger_gtadtrb5n",{"_index":1191,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24775,30]]}}}],["adc_e_active_trigger_gtadtrb6n",{"_index":1195,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24909,30]]}}}],["adc_e_active_trigger_gtadtrb7n",{"_index":1199,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25043,30]]}}}],["adc_e_active_trigger_gtadtrb8n",{"_index":1203,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25177,30]]}}}],["adc_e_active_trigger_gtadtrb9n",{"_index":1207,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25311,30]]}}}],["adc_e_active_trigger_t",{"_index":1118,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18742,22],[19364,22],[19449,22],[19628,22],[23818,22],[23875,22]]}}}],["adc_e_add_average_four",{"_index":1157,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22571,22]]}}}],["adc_e_add_average_two",{"_index":1156,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22526,21]]}}}],["adc_e_add_four",{"_index":1153,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22450,14]]}}}],["adc_e_add_sixteen",{"_index":1154,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22485,17]]}}}],["adc_e_add_t",{"_index":1115,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18676,11],[19100,11],[22188,11],[22234,11]]}}}],["adc_e_add_thre",{"_index":1152,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22413,15]]}}}],["adc_e_add_two",{"_index":1151,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22380,13]]}}}],["adc_e_callback",{"_index":1071,"t":{},"d":{},"k":{},"b":{"69":{"position":[[14969,14]]}}}],["adc_e_channel_cfg_t",{"_index":1112,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18579,19],[20780,19],[20836,19],[30636,19]]}}}],["adc_e_clear_after_read_on",{"_index":1159,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22800,25]]}}}],["adc_e_clear_t",{"_index":1116,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18697,13],[19158,13],[22625,13],[22673,13]]}}}],["adc_e_compare_cfg_a_en",{"_index":1082,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16437,27]]}}}],["adc_e_compare_cfg_b_en",{"_index":1083,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16467,26]]}}}],["adc_e_compare_cfg_t",{"_index":1081,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16415,21],[18806,19],[20324,19],[28396,19],[28450,19]]}}}],["adc_e_compare_cfg_window_en",{"_index":1084,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16496,33]]}}}],["adc_e_double_trigger_en",{"_index":1253,"t":{},"d":{},"k":{},"b":{"69":{"position":[[28241,28]]}}}],["adc_e_double_trigger_enabled_extend",{"_index":1254,"t":{},"d":{},"k":{},"b":{"69":{"position":[[28299,37]]}}}],["adc_e_double_trigger_exampl",{"_index":1074,"t":{},"d":{},"k":{},"b":{"69":{"position":[[15086,28]]}}}],["adc_e_double_trigger_t",{"_index":1119,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18774,22],[19288,22],[28036,22],[28093,22]]}}}],["adc_e_elc_group_a_b_c_scan",{"_index":1264,"t":{},"d":{},"k":{},"b":{"69":{"position":[[29066,26]]}}}],["adc_e_elc_group_b_scan",{"_index":1261,"t":{},"d":{},"k":{},"b":{"69":{"position":[[28983,22]]}}}],["adc_e_elc_group_c_scan",{"_index":1267,"t":{},"d":{},"k":{},"b":{"69":{"position":[[29155,22]]}}}],["adc_e_elc_t",{"_index":1122,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18900,11],[19713,11],[28778,11],[28824,11]]}}}],["adc_e_extended_cfg_t",{"_index":1111,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18519,20],[18948,20],[19005,20]]}}}],["adc_e_group_a_t",{"_index":1055,"t":{},"d":{},"k":{},"b":{"69":{"position":[[13563,17]]}}}],["adc_e_grpa_grpb_grpc_restart_cont_scan",{"_index":1167,"t":{},"d":{},"k":{},"b":{"69":{"position":[[23706,38]]}}}],["adc_e_grpa_grpb_grpc_restart_scan",{"_index":1164,"t":{},"d":{},"k":{},"b":{"69":{"position":[[23363,33]]}}}],["adc_e_grpa_grpb_grpc_restart_top_cont_scan",{"_index":1166,"t":{},"d":{},"k":{},"b":{"69":{"position":[[23568,42]]}}}],["adc_e_grpa_grpb_grpc_top_cont_scan",{"_index":1165,"t":{},"d":{},"k":{},"b":{"69":{"position":[[23450,34]]}}}],["adc_e_grpa_grpb_grpc_top_restart_scan",{"_index":1163,"t":{},"d":{},"k":{},"b":{"69":{"position":[[23243,37]]}}}],["adc_e_grpa_grpb_grpc_wait_trig",{"_index":1162,"t":{},"d":{},"k":{},"b":{"69":{"position":[[23165,30]]}}}],["adc_e_grpa_t",{"_index":1117,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18720,12],[21226,12],[22856,12],[22903,12]]}}}],["adc_e_instance_ctrl_t",{"_index":1113,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18609,21],[21289,21],[21347,21]]}}}],["adc_e_mask_channel_0",{"_index":1051,"t":{},"d":{},"k":{},"b":{"69":{"position":[[13465,20],[16606,20],[21869,20]]}}}],["adc_e_mask_channel_1",{"_index":1052,"t":{},"d":{},"k":{},"b":{"69":{"position":[[13488,21],[16629,21],[16752,21],[21908,20]]}}}],["adc_e_mask_channel_2",{"_index":1142,"t":{},"d":{},"k":{},"b":{"69":{"position":[[21947,20]]}}}],["adc_e_mask_channel_3",{"_index":1143,"t":{},"d":{},"k":{},"b":{"69":{"position":[[21986,20]]}}}],["adc_e_mask_channel_4",{"_index":1144,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22025,20]]}}}],["adc_e_mask_channel_5",{"_index":1145,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22064,20]]}}}],["adc_e_mask_channel_6",{"_index":1146,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22103,20]]}}}],["adc_e_mask_channel_7",{"_index":1147,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22142,20]]}}}],["adc_e_mask_t",{"_index":1114,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18654,12],[21505,12],[21552,12]]}}}],["adc_e_window_b_channel_2",{"_index":1092,"t":{},"d":{},"k":{},"b":{"69":{"position":[[17000,25]]}}}],["adc_e_window_b_channel_t",{"_index":1120,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18835,24],[20640,24],[28518,24],[28577,24]]}}}],["adc_e_window_b_mode_greater_than_or_insid",{"_index":1094,"t":{},"d":{},"k":{},"b":{"69":{"position":[[17050,43]]}}}],["adc_e_window_b_mode_t",{"_index":1121,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18869,21],[20705,21],[28647,21],[28703,21]]}}}],["adc_e_window_callback",{"_index":1098,"t":{},"d":{},"k":{},"b":{"69":{"position":[[17241,21]]}}}],["adc_e_window_cfg_t",{"_index":1078,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16285,18],[18550,18],[20048,18],[20103,18],[21147,18]]}}}],["adc_e_window_compare_exampl",{"_index":1101,"t":{},"d":{},"k":{},"b":{"69":{"position":[[17684,28]]}}}],["adc_elc_ctrl",{"_index":1130,"t":{},"d":{},"k":{},"b":{"69":{"position":[[19726,12]]}}}],["adc_event_calibration_complet",{"_index":536,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13775,30]]}}}],["adc_event_calibration_request",{"_index":537,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13883,29]]}}}],["adc_event_conversion_complet",{"_index":294,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1507,30],[13830,29]]}}}],["adc_event_conversion_error",{"_index":539,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13938,26]]}}}],["adc_event_fifo_overflow",{"_index":548,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14120,23]]}}}],["adc_event_fifo_read_request",{"_index":546,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14069,27]]}}}],["adc_event_limit_clip",{"_index":544,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14019,20]]}}}],["adc_event_overflow",{"_index":541,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13979,18]]}}}],["adc_event_scan_complete_group_b",{"_index":534,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13661,31]]}}}],["adc_event_scan_complete_group_c",{"_index":535,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13718,31]]}}}],["adc_event_t",{"_index":274,"t":{},"d":{},"k":{},"b":{"67":{"position":[[864,11],[1335,11],[13487,11],[13533,11]]}}}],["adc_event_window_compare_a",{"_index":549,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14170,26]]},"69":{"position":[[17301,27]]}}}],["adc_event_window_compare_b",{"_index":553,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14234,26]]},"69":{"position":[[17546,27]]}}}],["adc_group_id_1",{"_index":616,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15720,14]]}}}],["adc_group_id_2",{"_index":617,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15749,14]]}}}],["adc_group_id_3",{"_index":618,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15778,14]]}}}],["adc_group_id_4",{"_index":619,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15807,14]]}}}],["adc_group_id_5",{"_index":620,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15836,14]]}}}],["adc_group_id_6",{"_index":621,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15865,14]]}}}],["adc_group_id_7",{"_index":622,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15894,14]]}}}],["adc_group_id_8",{"_index":623,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15923,14]]}}}],["adc_group_id_t",{"_index":276,"t":{},"d":{},"k":{},"b":{"67":{"position":[[908,14],[15599,14],[15648,14]]}}}],["adc_group_mask_0",{"_index":626,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16105,16]]}}}],["adc_group_mask_1",{"_index":627,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16138,16]]}}}],["adc_group_mask_2",{"_index":628,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16171,16]]}}}],["adc_group_mask_3",{"_index":629,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16204,16]]}}}],["adc_group_mask_4",{"_index":630,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16237,16]]}}}],["adc_group_mask_5",{"_index":631,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16270,16]]}}}],["adc_group_mask_6",{"_index":632,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16303,16]]}}}],["adc_group_mask_7",{"_index":633,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16336,16]]}}}],["adc_group_mask_8",{"_index":634,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16369,16]]}}}],["adc_group_mask_al",{"_index":635,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16402,18]]}}}],["adc_group_mask_t",{"_index":277,"t":{},"d":{},"k":{},"b":{"67":{"position":[[932,16],[1626,16],[4071,16],[6531,16],[15959,16],[16010,16]]},"68":{"position":[[349,16],[25871,16]]},"69":{"position":[[349,16],[32859,16]]},"146":{"position":[[276,16],[18861,16]]}}}],["adc_info_t",{"_index":261,"t":{},"d":{},"k":{},"b":{"67":{"position":[[634,10],[1676,10],[1723,10],[4880,10],[10912,10]]},"68":{"position":[[218,10],[24598,10]]},"69":{"position":[[218,10],[31025,10]]},"146":{"position":[[722,10],[5858,10],[9025,10],[12246,10],[22229,10]]}}}],["adc_instance_t",{"_index":264,"t":{},"d":{},"k":{},"b":{"67":{"position":[[695,14],[11426,14],[11477,14]]},"68":{"position":[[11985,14],[14852,14]]}}}],["adc_intad_irqn",{"_index":807,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11688,15],[14555,15]]}}}],["adc_m_pclk",{"_index":1022,"t":{},"d":{},"k":{},"b":{"69":{"position":[[10111,10]]}}}],["adc_mode_continuous_scan",{"_index":509,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12486,24]]},"68":{"position":[[11474,25],[14341,25]]}}}],["adc_mode_group_scan",{"_index":506,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12377,19]]}}}],["adc_mode_single_scan",{"_index":7861,"t":{},"d":{},"k":{},"b":{"146":{"position":[[4886,21],[7766,21],[10878,21]]}}}],["adc_mode_t",{"_index":270,"t":{},"d":{},"k":{},"b":{"67":{"position":[[770,10],[2779,10],[12202,10],[12247,10]]}}}],["adc_repeatmode_exampl",{"_index":816,"t":{},"d":{},"k":{},"b":{"68":{"position":[[12481,22],[15348,22]]}}}],["adc_resolution_10_bit",{"_index":512,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12731,21]]}}}],["adc_resolution_12_bit",{"_index":7862,"t":{},"d":{},"k":{},"b":{"146":{"position":[[4941,22],[7821,22],[10933,22]]}}}],["adc_resolution_14_bit",{"_index":516,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12813,21]]}}}],["adc_resolution_16_bit",{"_index":518,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12855,21]]}}}],["adc_resolution_24_bit",{"_index":520,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12897,21]]}}}],["adc_resolution_8_bit",{"_index":514,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12773,20]]}}}],["adc_resolution_t",{"_index":271,"t":{},"d":{},"k":{},"b":{"67":{"position":[[790,16],[2820,16],[12560,16],[12611,16]]}}}],["adc_scan_max",{"_index":1089,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16848,12],[16889,12],[17170,12],[17213,12]]}}}],["adc_start_trigger_a",{"_index":1126,"t":{},"d":{},"k":{},"b":{"69":{"position":[[19388,19]]}}}],["adc_start_trigger_b",{"_index":1127,"t":{},"d":{},"k":{},"b":{"69":{"position":[[19473,19]]}}}],["adc_start_trigger_c",{"_index":1129,"t":{},"d":{},"k":{},"b":{"69":{"position":[[19652,19]]}}}],["adc_start_trigger_c_en",{"_index":1128,"t":{},"d":{},"k":{},"b":{"69":{"position":[[19540,27]]}}}],["adc_state_calibration_in_progress",{"_index":639,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16622,33]]}}}],["adc_state_scan_in_progress",{"_index":638,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16571,26]]},"68":{"position":[[10441,27],[10478,27]]},"69":{"position":[[14305,27],[14342,27]]}}}],["adc_state_t",{"_index":278,"t":{},"d":{},"k":{},"b":{"67":{"position":[[958,11],[1112,11],[16442,11],[16488,11]]}}}],["adc_status_t",{"_index":259,"t":{},"d":{},"k":{},"b":{"67":{"position":[[581,12],[1006,12],[1055,12],[4207,12],[7355,12]]},"68":{"position":[[477,12],[10402,12],[26761,12]]},"69":{"position":[[477,12],[14266,12],[34118,12]]},"146":{"position":[[404,12],[20029,12]]}}}],["adc_trg",{"_index":649,"t":{},"d":{},"k":{},"b":{"68":{"position":[[1585,9],[4168,7],[5088,7],[6516,7]]}}}],["adc_trigg",{"_index":3428,"t":{},"d":{},"k":{},"b":{"83":{"position":[[29315,11]]}}}],["adc_trigger_async_extern",{"_index":528,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13399,26]]}}}],["adc_trigger_softwar",{"_index":7864,"t":{},"d":{},"k":{},"b":{"146":{"position":[[5069,21],[7949,21],[11061,21]]}}}],["adc_trigger_sync_elc",{"_index":525,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13347,20]]}}}],["adc_trigger_t",{"_index":273,"t":{},"d":{},"k":{},"b":{"67":{"position":[[841,13],[2959,13],[13165,13],[13213,13]]},"69":{"position":[[19203,13]]}}}],["adch",{"_index":1281,"t":{},"d":{},"k":{},"b":{"69":{"position":[[33011,5]]}}}],["adclk",{"_index":725,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5636,5],[13146,5],[16015,5]]}}}],["add",{"_index":1005,"t":{},"d":{},"k":{},"b":{"69":{"position":[[7301,3],[7316,3],[7331,3],[7346,3],[19132,3],[21122,3],[22394,3],[22429,3],[22465,3],[22503,3]]},"76":{"position":[[7855,3]]},"83":{"position":[[21063,3]]},"84":{"position":[[6600,3]]},"105":{"position":[[12820,3]]}}}],["add/averag",{"_index":1004,"t":{},"d":{},"k":{},"b":{"69":{"position":[[7272,11]]}}}],["add_average_count",{"_index":1123,"t":{},"d":{},"k":{},"b":{"69":{"position":[[19113,17]]}}}],["add_mask",{"_index":1056,"t":{},"d":{},"k":{},"b":{"69":{"position":[[13587,9],[21103,8]]}}}],["addit",{"_index":344,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2940,8]]},"68":{"position":[[9477,10],[9517,10]]},"69":{"position":[[7422,8],[13268,10],[13308,10],[22279,8],[22336,8]]},"71":{"position":[[10860,9]]},"75":{"position":[[24075,10],[24627,10],[30444,9]]},"83":{"position":[[2840,8]]},"88":{"position":[[14204,10],[15683,8]]},"92":{"position":[[11163,9],[12237,9]]},"124":{"position":[[1850,10]]},"128":{"position":[[871,10],[8080,10],[16525,10],[21141,10]]},"136":{"position":[[5182,8]]},"137":{"position":[[11008,8]]},"138":{"position":[[1864,10]]},"142":{"position":[[2474,9]]},"145":{"position":[[12017,8]]},"146":{"position":[[16020,8]]},"148":{"position":[[9909,8]]}}}],["addition",{"_index":1048,"t":{},"d":{},"k":{},"b":{"69":{"position":[[12931,12]]}}}],["addition/averag",{"_index":1003,"t":{},"d":{},"k":{},"b":{"69":{"position":[[7045,18],[7238,18]]}}}],["addr_mod",{"_index":3709,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1496,9],[3693,10],[6178,10]]},"86":{"position":[[1303,9]]},"124":{"position":[[586,10],[7487,10],[10221,10],[17974,9]]},"125":{"position":[[8510,10],[9102,10]]},"138":{"position":[[644,10],[17424,9]]}}}],["address",{"_index":303,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1842,7],[2439,7],[10988,7]]},"68":{"position":[[24715,7]]},"69":{"position":[[31142,7]]},"71":{"position":[[3453,9],[38066,7],[41029,7],[41124,7],[41268,7],[43766,7]]},"74":{"position":[[6337,7]]},"77":{"position":[[2276,7],[2529,7],[2616,7],[4530,7],[4665,7]]},"78":{"position":[[1120,7]]},"79":{"position":[[1328,7],[2755,7],[2806,7],[2849,7],[2900,7],[4524,8],[4604,8],[6226,9],[7125,9],[7173,10]]},"85":{"position":[[1440,7],[6211,7],[9161,10],[9233,10],[9290,10]]},"86":{"position":[[1248,7],[6855,10],[6926,10],[6982,10],[7841,7]]},"87":{"position":[[1654,7],[1668,7],[1729,7],[1758,7],[1798,7],[2400,7],[2523,7],[2537,7],[2598,7],[2645,7],[3806,7],[3956,7],[9190,7],[9569,7],[9696,7],[15216,7],[15277,7],[16079,9],[16099,8],[16446,7],[16503,7],[16523,8],[16574,8],[18110,7],[19452,7],[19565,7],[19608,9],[20162,7]]},"88":{"position":[[1741,7],[1858,7],[2561,7],[2788,7],[4069,7],[4209,7],[4330,7],[4891,7],[5024,7],[5643,7],[5693,7],[5713,7],[5927,7],[6016,8],[6130,8],[6300,8],[6366,8],[6452,8],[9914,7],[10001,7],[10602,7],[22677,7],[22857,8],[23137,7],[23258,7],[24212,9],[24436,7],[26712,7],[26831,7],[30396,7],[30576,8],[30856,7],[30977,7],[35235,7],[40287,7],[41183,7],[48462,7],[55979,7]]},"113":{"position":[[3184,7],[8372,7]]},"124":{"position":[[1762,7],[1928,11],[2406,10],[2495,10],[2546,10],[3674,8],[3685,7],[3737,7],[3771,10],[18059,7],[18071,10],[18148,7],[18160,10]]},"125":{"position":[[1062,8],[1096,8],[3119,8],[3216,8],[3233,7],[3285,7],[5764,8]]},"127":{"position":[[2850,8],[2861,7],[2911,7]]},"129":{"position":[[543,7],[12627,7]]},"131":{"position":[[4722,7],[4901,8],[5503,7],[5698,7],[6357,7],[6693,7]]},"133":{"position":[[231,7],[49970,7],[51469,7]]},"138":{"position":[[1776,7],[2010,11],[2516,10],[2605,10],[2656,10],[3185,7],[3241,8],[3252,7],[3298,7],[17509,7],[17521,10],[17598,7],[17610,10],[17780,7]]},"139":{"position":[[19664,7],[20904,7]]},"143":{"position":[[1279,7],[1297,8],[1488,7],[1955,8],[2145,7],[6739,7],[7592,7],[7689,7],[8152,7],[11148,7],[11319,8],[11502,8],[12606,8],[12655,7],[12699,7],[12919,7]]},"145":{"position":[[1907,8],[1976,8],[2487,7],[2586,7],[5577,7],[5606,7],[10916,7],[13877,7],[14009,7],[14111,7],[14181,7],[14296,7],[14411,7],[14520,7],[14604,7],[14713,7]]},"147":{"position":[[5606,7],[6304,7]]},"150":{"position":[[1703,10],[2986,7],[3030,7],[6631,7],[6670,7],[6715,7],[6735,7],[6764,7],[6800,7],[9196,8],[11298,8],[12515,8],[13313,8],[13730,7],[13778,7],[13805,7],[14152,7],[14237,9],[19184,7]]},"292":{"position":[[502,7]]}}}],["address.(us",{"_index":2983,"t":{},"d":{},"k":{},"b":{"79":{"position":[[4818,12],[5003,12]]}}}],["address_assignment_mod",{"_index":3887,"t":{},"d":{},"k":{},"b":{"87":{"position":[[5795,24],[9079,24]]},"88":{"position":[[729,24],[55688,24]]}}}],["address_byt",{"_index":7570,"t":{},"d":{},"k":{},"b":{"143":{"position":[[1902,13]]}}}],["address_length",{"_index":7564,"t":{},"d":{},"k":{},"b":{"143":{"position":[[1472,14]]},"150":{"position":[[9283,15],[11385,15],[12602,15],[13407,15]]}}}],["addressmanu",{"_index":2980,"t":{},"d":{},"k":{},"b":{"79":{"position":[[4467,13],[4552,13],[4761,13],[4951,13]]}}}],["addressmcu",{"_index":2830,"t":{},"d":{},"k":{},"b":{"77":{"position":[[2208,10]]}}}],["addressvalu",{"_index":5891,"t":{},"d":{},"k":{},"b":{"124":{"position":[[3618,12]]},"125":{"position":[[3063,12]]},"127":{"position":[[2794,12]]}}}],["adequ",{"_index":7422,"t":{},"d":{},"k":{},"b":{"141":{"position":[[4378,8],[5818,8]]}}}],["adesto/dialog/renesa",{"_index":8192,"t":{},"d":{},"k":{},"b":{"150":{"position":[[8673,21]]}}}],["adjust",{"_index":2353,"t":{},"d":{},"k":{},"b":{"75":{"position":[[15241,8],[21592,6]]},"136":{"position":[[2760,10],[2783,10],[2819,10],[3201,10],[3241,10],[3252,10],[3287,10],[3400,10],[3494,10],[3523,11],[3559,10],[4928,10],[4998,10],[5026,10],[5101,10],[5133,10],[5146,10],[5227,10],[5251,10],[5335,10],[9417,10],[9474,10],[9700,10],[16593,10],[16688,10],[16911,10]]},"137":{"position":[[199,11],[1273,10],[1375,10],[1460,10],[1533,10],[1616,11],[3021,10],[7843,11],[8004,10],[10853,10],[10911,10],[10977,10],[11077,10],[11267,10],[11337,10],[11409,10],[11577,10],[11653,10],[11739,10],[11820,10]]}}}],["adjustment_mod",{"_index":7023,"t":{},"d":{},"k":{},"b":{"137":{"position":[[1348,15]]}}}],["adjustment_period",{"_index":7024,"t":{},"d":{},"k":{},"b":{"137":{"position":[[1435,17]]}}}],["adjustment_typ",{"_index":7025,"t":{},"d":{},"k":{},"b":{"137":{"position":[[1505,15]]}}}],["adjustment_valu",{"_index":7026,"t":{},"d":{},"k":{},"b":{"137":{"position":[[1565,16]]}}}],["adtrg",{"_index":716,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5225,5]]}}}],["adtrgn",{"_index":660,"t":{},"d":{},"k":{},"b":{"68":{"position":[[1830,6]]},"69":{"position":[[1602,6]]}}}],["advanc",{"_index":3423,"t":{},"d":{},"k":{},"b":{"83":{"position":[[28960,8],[31700,8]]},"92":{"position":[[32923,7],[37827,7]]},"105":{"position":[[18295,8],[20670,8]]},"148":{"position":[[5805,8]]}}}],["advis",{"_index":94,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1671,7]]},"69":{"position":[[11045,9]]}}}],["affect",{"_index":2087,"t":{},"d":{},"k":{},"b":{"71":{"position":[[45540,8]]},"83":{"position":[[18621,8]]}}}],["affili",{"_index":12,"t":{},"d":{},"k":{},"b":{"0":{"position":[[66,11],[252,10]]}}}],["afl",{"_index":2311,"t":{},"d":{},"k":{},"b":{"75":{"position":[[11289,3],[11422,3],[14896,5],[18249,6],[18274,3],[18468,3],[19843,3],[23179,3],[25271,3],[25330,5],[31041,3],[31865,3],[34999,3]]}}}],["again",{"_index":2652,"t":{},"d":{},"k":{},"b":{"76":{"position":[[6608,6]]},"83":{"position":[[16809,6]]},"84":{"position":[[5784,6]]},"108":{"position":[[4750,6]]},"129":{"position":[[4244,6],[4317,6]]},"131":{"position":[[5975,6],[8598,6]]},"133":{"position":[[10494,6]]}}}],["against",{"_index":1666,"t":{},"d":{},"k":{},"b":{"70":{"position":[[14664,7],[15001,7]]},"75":{"position":[[18313,7],[18443,7],[23129,7]]},"128":{"position":[[11351,7]]}}}],["agt_count_source_t",{"_index":3664,"t":{},"d":{},"k":{},"b":{"84":{"position":[[3719,18]]}}}],["agt_extended_cfg_t::clock_sourc",{"_index":4920,"t":{},"d":{},"k":{},"b":{"105":{"position":[[14268,32],[30907,32]]}}}],["ai",{"_index":6616,"t":{},"d":{},"k":{},"b":{"133":{"position":[[7573,2],[7699,2]]}}}],["aim",{"_index":4018,"t":{},"d":{},"k":{},"b":{"88":{"position":[[1605,4]]}}}],["aiq",{"_index":6727,"t":{},"d":{},"k":{},"b":{"134":{"position":[[2772,3]]}}}],["air",{"_index":6603,"t":{},"d":{},"k":{},"b":{"133":{"position":[[5929,3],[7834,3],[8592,3],[9830,3]]},"134":{"position":[[2777,3],[3109,3],[3197,3]]}}}],["alarm",{"_index":6922,"t":{},"d":{},"k":{},"b":{"136":{"position":[[1239,5],[1297,5],[1387,5],[1410,5],[1515,5],[2073,5],[5591,5],[5637,5],[5656,5],[5730,5],[8891,5],[8937,5],[9332,5],[10136,5],[10189,5],[14301,5],[14413,5],[14472,5],[15078,5],[15170,5]]},"137":{"position":[[159,6],[1723,5],[1831,5],[1906,5],[1982,5],[2056,5],[2128,5],[2203,5],[2282,5],[2368,5],[2379,5],[3070,5],[3121,5],[6608,5],[6634,5],[6780,5],[6814,5],[6867,5],[7080,5],[7222,5],[7258,5],[10059,5],[10111,5],[10283,5]]}}}],["alarm1_ipl",{"_index":6987,"t":{},"d":{},"k":{},"b":{"136":{"position":[[10124,10]]}}}],["alarm1_irq",{"_index":6988,"t":{},"d":{},"k":{},"b":{"136":{"position":[[10177,10]]}}}],["alarm_ipl",{"_index":7038,"t":{},"d":{},"k":{},"b":{"137":{"position":[[3059,9]]}}}],["alarm_irq",{"_index":7039,"t":{},"d":{},"k":{},"b":{"137":{"position":[[3110,9]]}}}],["alert",{"_index":1978,"t":{},"d":{},"k":{},"b":{"71":{"position":[[31115,5],[33690,5]]},"131":{"position":[[2499,5]]}}}],["algorithm",{"_index":6611,"t":{},"d":{},"k":{},"b":{"133":{"position":[[7258,9]]},"139":{"position":[[3919,9]]},"140":{"position":[[3435,9]]}}}],["algorithm/s",{"_index":5825,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14254,14]]}}}],["algorithm_vers",{"_index":8408,"t":{"288":{"position":[[45,17]]}},"d":{},"k":{},"b":{}}],["ali",{"_index":5898,"t":{},"d":{},"k":{},"b":{"124":{"position":[[4472,3],[5624,6]]},"125":{"position":[[2343,4],[4432,6],[4670,4]]}}}],["ali_irq",{"_index":5968,"t":{},"d":{},"k":{},"b":{"124":{"position":[[13565,7]]},"125":{"position":[[14016,7]]}}}],["alia",{"_index":6954,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7579,5]]}}}],["align",{"_index":340,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2885,9],[2918,10],[13038,9],[13097,9],[13140,9]]},"71":{"position":[[31395,7],[33970,7]]},"88":{"position":[[19521,7],[57213,7],[58422,7],[59408,7],[60383,7],[61205,7]]},"106":{"position":[[13067,10],[13160,9],[13220,9],[13279,9],[22069,9]]},"107":{"position":[[5397,8]]},"113":{"position":[[6242,9],[7959,7]]},"139":{"position":[[20133,7],[21359,7]]},"146":{"position":[[4969,10],[7849,10],[10961,10]]}}}],["alloc",{"_index":107,"t":{},"d":{},"k":{},"b":{"1":{"position":[[80,10],[834,10],[860,10],[987,9]]},"67":{"position":[[10338,10],[10368,9],[12081,8]]},"69":{"position":[[11410,8]]},"71":{"position":[[6205,10],[6478,10],[6739,8]]},"74":{"position":[[7039,10],[7069,9],[7694,8]]},"75":{"position":[[17720,10],[24810,10]]},"78":{"position":[[4424,8]]},"81":{"position":[[4089,8]]},"82":{"position":[[4841,10],[4871,9],[5969,8]]},"85":{"position":[[7215,10],[7245,9],[8673,8]]},"86":{"position":[[5363,10],[5393,9],[6375,8]]},"87":{"position":[[14532,8]]},"88":{"position":[[19869,9]]},"93":{"position":[[8754,8]]},"94":{"position":[[4222,10],[4252,9],[5217,8]]},"101":{"position":[[3933,10],[3963,9],[5044,8]]},"103":{"position":[[3730,8]]},"107":{"position":[[6902,10],[6932,9],[7557,8]]},"109":{"position":[[4149,10],[4179,9],[5758,8]]},"113":{"position":[[2480,8]]},"126":{"position":[[4110,8]]},"128":{"position":[[6031,9],[7536,9],[7696,9],[10564,9],[18340,9],[19229,8],[19367,10],[19865,10],[21679,10],[21707,10],[21764,10],[21883,10],[21954,9],[22007,10],[22077,10],[22432,10],[22963,9],[23713,10],[24282,9],[25124,10],[25181,10],[25228,10],[25257,10],[25316,10],[25403,9],[25456,10],[25597,10],[25644,10],[25818,10],[25898,10],[26031,10],[26056,9],[26209,9],[26444,9],[27490,9]]},"130":{"position":[[6402,8]]},"132":{"position":[[5544,8]]},"134":{"position":[[12909,8]]},"137":{"position":[[8633,9],[9741,8]]},"141":{"position":[[6698,10],[6728,9],[7695,8]]},"143":{"position":[[10732,8]]},"144":{"position":[[9392,10],[9422,9],[10421,8]]},"145":{"position":[[1569,9],[10387,8]]},"147":{"position":[[8288,10],[8318,9],[9658,8]]},"149":{"position":[[5708,10],[5738,9],[6363,8]]}}}],["allow",{"_index":237,"t":{},"d":{},"k":{},"b":{"67":{"position":[[195,6]]},"69":{"position":[[3270,8],[8245,5],[11384,6],[32032,6]]},"71":{"position":[[2074,5],[5724,6],[8423,8],[10660,6]]},"75":{"position":[[19932,8],[24129,6]]},"77":{"position":[[3115,5]]},"80":{"position":[[823,8],[5053,8]]},"82":{"position":[[5064,5]]},"83":{"position":[[40556,5]]},"84":{"position":[[4570,7]]},"86":{"position":[[1394,5]]},"87":{"position":[[13769,6]]},"88":{"position":[[18999,6],[20584,5]]},"92":{"position":[[11076,5],[14833,6],[31955,6],[36761,6]]},"107":{"position":[[6103,6]]},"108":{"position":[[3508,7]]},"124":{"position":[[13238,6]]},"125":{"position":[[3172,6]]},"128":{"position":[[9053,6],[11279,5],[11552,8],[16264,6],[26235,6],[26307,6]]},"139":{"position":[[3866,7]]},"140":{"position":[[3382,7]]},"144":{"position":[[9601,6]]},"145":{"position":[[8898,6],[9364,5]]},"146":{"position":[[18108,6]]},"147":{"position":[[3151,7],[3456,7]]},"148":{"position":[[978,7],[2329,7],[2424,7]]}}}],["along",{"_index":2377,"t":{},"d":{},"k":{},"b":{"75":{"position":[[18321,5]]},"124":{"position":[[2511,5]]},"138":{"position":[[2621,5]]}}}],["alreadi",{"_index":931,"t":{},"d":{},"k":{},"b":{"68":{"position":[[23687,7]]},"69":{"position":[[29964,7]]},"71":{"position":[[5016,7],[38452,8],[39019,8],[46080,7]]},"75":{"position":[[36012,7],[36056,7]]},"76":{"position":[[23694,7]]},"77":{"position":[[5759,7]]},"79":{"position":[[17014,7]]},"83":{"position":[[47057,7]]},"84":{"position":[[16202,7]]},"88":{"position":[[4658,7],[17350,7],[51891,7],[52417,7]]},"89":{"position":[[5737,7]]},"90":{"position":[[5353,7]]},"91":{"position":[[6908,7]]},"92":{"position":[[29092,7]]},"95":{"position":[[2446,7]]},"96":{"position":[[2156,7]]},"97":{"position":[[1900,7]]},"98":{"position":[[2380,7]]},"99":{"position":[[2409,7]]},"100":{"position":[[2121,7]]},"102":{"position":[[1867,7]]},"104":{"position":[[2343,7]]},"105":{"position":[[28650,7]]},"106":{"position":[[20920,7]]},"108":{"position":[[6134,7]]},"113":{"position":[[2737,7],[13451,7],[14024,7],[14581,7]]},"124":{"position":[[14772,7]]},"125":{"position":[[14575,7],[15568,7],[16678,7]]},"127":{"position":[[4123,7],[7731,7]]},"128":{"position":[[6911,7]]},"129":{"position":[[5744,7],[11840,7]]},"131":{"position":[[789,7],[9997,7],[16574,7],[17695,7]]},"133":{"position":[[11437,7],[15571,7],[19875,7],[24889,7],[31042,7],[35157,7],[39462,7],[43714,7],[51702,7]]},"135":{"position":[[17274,7],[18560,7],[19719,7],[20947,7]]},"136":{"position":[[11547,7],[12000,7],[13095,7],[13878,7],[14655,7],[15294,7],[16133,7],[17501,7]]},"138":{"position":[[13235,7],[15738,7]]},"139":{"position":[[18670,7]]},"140":{"position":[[17199,7]]},"142":{"position":[[19109,7],[20552,7],[21612,7],[22741,7]]},"146":{"position":[[17069,7]]},"148":{"position":[[11252,7]]},"150":{"position":[[19541,7]]}}}],["altern",{"_index":2979,"t":{},"d":{},"k":{},"b":{"79":{"position":[[4328,11],[15783,11]]},"108":{"position":[[4893,14]]},"139":{"position":[[3989,11]]},"140":{"position":[[3505,11]]}}}],["alway",{"_index":1042,"t":{},"d":{},"k":{},"b":{"69":{"position":[[12301,6]]},"71":{"position":[[5386,6]]},"108":{"position":[[1927,6]]},"109":{"position":[[6819,6]]},"128":{"position":[[10065,6]]}}}],["ambient",{"_index":6561,"t":{},"d":{},"k":{},"b":{"133":{"position":[[1512,7],[7098,7],[8446,7],[55047,7]]}}}],["america",{"_index":16,"t":{},"d":{},"k":{},"b":{"0":{"position":[[167,7]]}}}],["amount",{"_index":1789,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6235,6],[35879,6],[35948,6],[36022,6]]},"75":{"position":[[17680,6],[24770,6]]},"79":{"position":[[6508,6]]},"88":{"position":[[10557,6],[41553,6]]},"128":{"position":[[6050,6],[6386,6],[7555,6],[25724,6]]},"133":{"position":[[30699,6]]}}}],["amplifi",{"_index":455,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8743,11]]}}}],["analog",{"_index":251,"t":{"68":{"position":[[45,6]]},"69":{"position":[[45,6]]},"110":{"position":[[45,6]]}},"d":{},"k":{},"b":{"67":{"position":[[444,6],[482,6]]},"68":{"position":[[1438,6],[1922,6],[1968,6],[2885,6],[2967,6],[3541,6],[3593,6],[5035,6],[6328,6],[7364,6],[7486,6],[7740,6],[7892,6],[8021,6],[8150,6],[8359,6],[8531,6],[8601,6],[8997,6]]},"69":{"position":[[1396,6],[2350,6],[2440,6],[10183,6],[10381,6]]},"92":{"position":[[1658,6]]},"109":{"position":[[6242,6]]},"110":{"position":[[22,6],[50,6],[177,6]]},"116":{"position":[[1418,6],[1426,6]]},"146":{"position":[[1999,6],[2089,6]]},"152":{"position":[[638,6],[760,6]]}}}],["analoganalog",{"_index":8342,"t":{},"d":{},"k":{},"b":{"152":{"position":[[614,13]]}}}],["analysi",{"_index":8330,"t":{},"d":{},"k":{},"b":{"151":{"position":[[2621,9]]}}}],["and/or",{"_index":11,"t":{},"d":{},"k":{},"b":{"0":{"position":[[55,6],[732,6]]},"71":{"position":[[9521,6]]},"75":{"position":[[30182,6]]},"76":{"position":[[24239,6],[24736,6]]},"80":{"position":[[2389,6],[3739,6]]},"83":{"position":[[54281,6],[54779,6]]},"92":{"position":[[34505,6],[35775,6],[40430,6]]},"105":{"position":[[35667,6],[36156,6]]},"125":{"position":[[6996,6],[7175,6]]},"145":{"position":[[5623,6]]}}}],["anoth",{"_index":2953,"t":{},"d":{},"k":{},"b":{"79":{"position":[[1147,7]]},"87":{"position":[[17688,7],[17872,7]]},"106":{"position":[[23531,7]]},"113":{"position":[[9949,7],[11471,7]]},"124":{"position":[[15937,7],[16880,7]]},"139":{"position":[[18718,7]]},"140":{"position":[[17247,7]]},"142":{"position":[[6941,7]]}}}],["anxxx",{"_index":1025,"t":{},"d":{},"k":{},"b":{"69":{"position":[[10168,5]]}}}],["anyway",{"_index":6255,"t":{},"d":{},"k":{},"b":{"128":{"position":[[16387,7]]}}}],["api",{"_index":113,"t":{"21":{"position":[[45,3]]},"152":{"position":[[45,3]]}},"d":{},"k":{},"b":{"1":{"position":[[257,6]]},"67":{"position":[[3796,4],[11918,3]]},"68":{"position":[[8753,3],[8836,3],[9058,3],[9178,3]]},"74":{"position":[[96,4],[7531,3],[7759,3]]},"75":{"position":[[30310,3]]},"76":{"position":[[1570,4],[1627,4],[1717,4]]},"77":{"position":[[626,3],[3172,3],[3537,3]]},"78":{"position":[[1372,4],[4261,3],[4489,3]]},"81":{"position":[[676,4],[1731,4],[3926,3],[4154,3]]},"82":{"position":[[2279,4],[5779,3],[6043,3]]},"83":{"position":[[1958,3],[2414,4],[2471,4],[2561,4],[53608,3]]},"84":{"position":[[1272,4],[1404,4],[1450,4],[1540,4],[1645,4]]},"85":{"position":[[115,3],[8496,3],[8738,3]]},"86":{"position":[[113,3],[6200,3],[6440,3]]},"87":{"position":[[78,4],[5208,4],[14369,3],[14597,3]]},"88":{"position":[[44793,3]]},"93":{"position":[[1475,4],[3097,3],[3431,4],[8424,3],[8822,3]]},"94":{"position":[[123,3],[5054,3],[5282,3]]},"95":{"position":[[1511,3]]},"96":{"position":[[1310,3]]},"97":{"position":[[1059,3]]},"98":{"position":[[1449,3]]},"99":{"position":[[1482,3]]},"100":{"position":[[1283,3]]},"101":{"position":[[172,3],[4855,3],[5109,3]]},"102":{"position":[[1034,3]]},"103":{"position":[[172,3],[3541,3],[3795,3]]},"104":{"position":[[1420,3]]},"105":{"position":[[1784,3],[2310,4],[2367,4],[2457,4],[34993,3]]},"107":{"position":[[124,4],[2825,4],[7394,3],[7622,3]]},"108":{"position":[[1025,4],[3572,4]]},"109":{"position":[[81,3],[2131,3],[2207,4],[5592,3],[5824,3]]},"113":{"position":[[834,3],[883,3],[1467,3],[2326,4],[2389,3],[3591,3],[12529,3],[13128,3],[15530,4]]},"115":{"position":[[49,4]]},"116":{"position":[[568,3],[1045,3],[1185,3],[1229,3]]},"124":{"position":[[6775,4],[17615,4],[19143,4]]},"125":{"position":[[6218,3],[6480,4],[6531,3],[6626,3],[6682,4],[6736,3],[6836,3],[6947,3],[7126,3],[11640,3],[12571,3]]},"126":{"position":[[1539,4],[4186,3]]},"128":{"position":[[7903,3],[8038,3],[9550,3],[13090,3],[13141,3],[13500,3],[13701,3],[14123,3]]},"130":{"position":[[1933,4],[6224,3],[6470,3]]},"132":{"position":[[2493,4],[5366,3],[5612,3]]},"133":{"position":[[4900,3],[10137,3],[10684,3]]},"134":{"position":[[931,3],[4243,4],[12725,3],[12970,3]]},"135":{"position":[[13308,3]]},"136":{"position":[[1999,3],[2422,5],[2601,4],[6877,3],[7358,3],[7414,3]]},"137":{"position":[[3743,4],[9422,3],[9806,3]]},"138":{"position":[[7573,4]]},"139":{"position":[[8939,3],[23689,3],[27033,3]]},"140":{"position":[[6813,3],[21541,3],[23982,3]]},"141":{"position":[[7532,3],[7760,3]]},"142":{"position":[[14775,3]]},"143":{"position":[[98,3],[3622,4],[10551,3],[10803,3]]},"144":{"position":[[3431,3],[3511,4],[10252,3],[10488,3]]},"145":{"position":[[3660,4],[10209,3],[10457,3]]},"147":{"position":[[102,4],[3171,3],[3477,4],[6566,3],[9492,3],[9724,3]]},"149":{"position":[[2352,4],[6200,3],[6428,3]]},"150":{"position":[[23633,4]]},"151":{"position":[[807,3],[898,3],[993,3],[1120,3],[1532,3],[1568,3],[1980,3],[2679,4]]},"152":{"position":[[31,3],[6486,4]]}}}],["api'",{"_index":1970,"t":{},"d":{},"k":{},"b":{"71":{"position":[[29795,5],[32370,5]]},"136":{"position":[[3505,5]]}}}],["api_version_major",{"_index":5539,"t":{},"d":{},"k":{},"b":{"113":{"position":[[864,17]]}}}],["api_version_minor",{"_index":5538,"t":{},"d":{},"k":{},"b":{"113":{"position":[[815,17]]}}}],["appli",{"_index":392,"t":{},"d":{},"k":{},"b":{"67":{"position":[[5095,5]]},"68":{"position":[[23494,7],[24305,8]]},"69":{"position":[[5642,7],[5701,7],[30732,8]]},"75":{"position":[[9855,5]]},"76":{"position":[[5738,7]]},"83":{"position":[[4869,7],[14097,5],[14311,5],[43399,8],[43473,8],[43547,8],[43621,8],[43695,8],[43769,8],[43843,8],[43917,8],[43991,8],[44065,8],[44141,8],[44217,8],[44293,8],[44369,8],[44445,8],[44521,8],[44597,8],[44673,8],[44749,8],[44825,8],[44901,8],[44977,8],[45053,8],[45129,8],[45205,8],[45281,8],[45357,8],[45433,8],[45509,8],[45585,8],[45661,8],[45737,8],[45978,6],[46532,7]]},"105":{"position":[[28225,7]]},"108":{"position":[[5751,7]]},"109":{"position":[[8278,7],[8342,5],[8425,5],[8511,5],[8599,5]]},"124":{"position":[[9967,7]]},"129":{"position":[[1220,8],[4458,8],[7683,8],[14502,8]]},"145":{"position":[[8049,7],[15579,7]]},"146":{"position":[[16876,7]]},"147":{"position":[[1086,7],[1224,7],[6667,8]]}}}],["applic",{"_index":41,"t":{},"d":{},"k":{},"b":{"0":{"position":[[623,10],[915,10]]},"1":{"position":[[223,11],[1004,11]]},"68":{"position":[[8924,11],[9361,12]]},"69":{"position":[[11395,11],[13148,12]]},"71":{"position":[[1124,12],[1164,12],[4622,11],[5171,11],[6619,11]]},"75":{"position":[[4380,10],[5107,10],[5834,10],[6561,10],[7288,10],[8015,10],[8742,10],[9469,10],[20381,11],[21899,11],[24452,11],[26763,12]]},"76":{"position":[[7245,12],[7859,11],[9497,11]]},"77":{"position":[[3388,11],[3822,12]]},"79":{"position":[[7882,12]]},"80":{"position":[[5150,12]]},"83":{"position":[[8534,10],[18683,11],[20515,12],[21067,11],[23028,11]]},"84":{"position":[[6046,12],[6604,11]]},"87":{"position":[[12036,11],[12134,12],[17664,11],[17848,11],[20010,11]]},"88":{"position":[[3388,11],[3438,11],[3597,11],[3757,11],[4233,11],[4363,11],[5416,11],[5736,11],[6379,11],[10815,12],[10924,11],[11096,11],[11269,11],[13805,11],[14079,11],[14215,11],[15000,11],[16336,12],[17727,11],[19132,12],[22398,12],[25412,11],[26435,12],[28681,11],[28722,11],[29344,11],[29781,11],[30119,12],[34200,11],[34241,11],[34927,11],[36506,11],[37978,11],[42344,11],[42465,11],[42587,11],[47039,11]]},"89":{"position":[[3257,12]]},"90":{"position":[[2975,12]]},"91":{"position":[[3338,12]]},"92":{"position":[[12719,12]]},"105":{"position":[[12268,12],[12824,11]]},"106":{"position":[[13565,12]]},"108":{"position":[[1053,11],[2155,10],[2392,10],[3816,12]]},"111":{"position":[[186,12],[226,12]]},"124":{"position":[[7178,12]]},"125":{"position":[[6293,11],[6357,11],[6421,11],[8185,12]]},"127":{"position":[[4002,12]]},"128":{"position":[[3267,12],[3797,11],[3999,12],[4236,11],[5783,11],[6432,11],[6564,12],[6722,11],[7039,11],[7109,11],[7262,11],[11285,11],[12207,11],[15524,11],[15600,12],[16028,11],[16144,11],[16222,11],[16448,11],[16499,11],[17419,11],[17497,11],[17579,11],[17640,11],[17762,11],[18296,11],[19935,11],[20382,11],[20620,11],[21845,11],[22108,11],[22462,11],[23764,11],[25035,11],[25543,11],[25848,11],[26044,11],[26197,11],[26281,11],[26318,11],[26432,11],[26480,11]]},"129":{"position":[[5492,12]]},"131":{"position":[[9682,12]]},"133":{"position":[[11163,12]]},"135":{"position":[[8338,12]]},"136":{"position":[[3453,11],[6399,11],[6703,11],[7546,12]]},"138":{"position":[[7011,12],[7057,12],[7185,12],[7773,12]]},"142":{"position":[[9325,12]]},"143":{"position":[[7037,11],[11802,11],[11934,11],[12083,11],[12769,11]]},"144":{"position":[[12782,11]]},"146":{"position":[[4475,12]]},"148":{"position":[[849,12],[949,12],[1398,12],[4496,11],[5084,12],[5616,11],[8239,11],[8569,11],[8641,11]]},"150":{"position":[[3077,11],[7083,12]]},"151":{"position":[[271,12],[3082,12]]},"152":{"position":[[265,12],[305,12]]}}}],["application_defined_privileged_functions.h",{"_index":6261,"t":{},"d":{},"k":{},"b":{"128":{"position":[[17693,45],[18011,44]]}}}],["approach",{"_index":2420,"t":{},"d":{},"k":{},"b":{"75":{"position":[[21054,9]]}}}],["appropri",{"_index":248,"t":{},"d":{},"k":{},"b":{"67":{"position":[[397,11]]},"71":{"position":[[41249,11]]},"127":{"position":[[3852,11]]},"128":{"position":[[7168,12],[16053,12]]},"129":{"position":[[5347,11]]},"131":{"position":[[7169,11]]},"133":{"position":[[9390,11]]}}}],["approxim",{"_index":8006,"t":{},"d":{},"k":{},"b":{"148":{"position":[[3754,13]]}}}],["arbitr",{"_index":2263,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1991,11],[33552,11]]},"88":{"position":[[4840,11]]},"124":{"position":[[5607,11],[13574,11]]},"125":{"position":[[2213,11],[4415,11],[14025,11],[14719,11]]}}}],["arbitrarili",{"_index":661,"t":{},"d":{},"k":{},"b":{"68":{"position":[[1985,11]]},"105":{"position":[[11950,12]]}}}],["architectur",{"_index":99,"t":{"1":{"position":[[49,12]]}},"d":{},"k":{},"b":{"1":{"position":[[23,12],[100,12],[187,12]]},"71":{"position":[[2300,13],[2464,13]]},"128":{"position":[[1999,12],[2138,12],[5313,14],[14080,13]]},"151":{"position":[[707,12]]},"153":{"position":[[113,12]]}}}],["architecutr",{"_index":5867,"t":{},"d":{},"k":{},"b":{"116":{"position":[[237,12]]}}}],["archiv",{"_index":6599,"t":{},"d":{},"k":{},"b":{"133":{"position":[[5445,7],[5488,7]]}}}],["area",{"_index":2115,"t":{"75":{"position":[[56,4]]}},"d":{},"k":{},"b":{"74":{"position":[[397,4]]},"79":{"position":[[6929,4],[7023,4],[7143,4],[7278,4]]},"88":{"position":[[21660,4],[21686,4]]},"95":{"position":[[1817,5],[1879,5]]},"98":{"position":[[1755,5],[1817,5]]},"99":{"position":[[1788,5],[1850,5]]},"104":{"position":[[1726,5],[1788,5]]},"112":{"position":[[67,4]]},"145":{"position":[[11203,4],[14877,4],[15216,4],[15345,4]]},"152":{"position":[[1074,4]]}}}],["aref",{"_index":976,"t":{},"d":{},"k":{},"b":{"69":{"position":[[3417,6]]}}}],["argument",{"_index":284,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1261,9],[8802,9],[9099,9],[10358,9]]},"68":{"position":[[23606,8],[24345,8],[25021,8],[25478,8],[26451,8],[27051,8],[27645,8],[28326,8],[29086,8],[29589,8]]},"69":{"position":[[29883,8],[30772,8],[31573,8],[32464,8],[33808,8],[34451,8],[35045,8],[35726,8],[36186,8]]},"71":{"position":[[46694,8]]},"74":{"position":[[7059,9]]},"75":{"position":[[37545,9],[40368,8]]},"76":{"position":[[25514,8]]},"79":{"position":[[3835,9]]},"82":{"position":[[4861,9]]},"83":{"position":[[57240,8]]},"84":{"position":[[17027,8]]},"85":{"position":[[7235,9]]},"86":{"position":[[5383,9]]},"87":{"position":[[3397,9]]},"88":{"position":[[51835,8],[52296,8],[52883,8],[53797,8],[54439,8],[55201,8],[56134,8],[56941,8],[58160,8],[59146,8],[60102,8],[61007,8],[61624,8]]},"94":{"position":[[4242,9]]},"95":{"position":[[4180,8]]},"96":{"position":[[3481,8]]},"98":{"position":[[4106,8]]},"99":{"position":[[4127,8]]},"100":{"position":[[3434,8]]},"101":{"position":[[3953,9]]},"104":{"position":[[4053,8]]},"105":{"position":[[18063,8],[38144,8]]},"106":{"position":[[22082,8]]},"107":{"position":[[6922,9]]},"108":{"position":[[7578,8]]},"109":{"position":[[4169,9]]},"113":{"position":[[1724,8]]},"124":{"position":[[1298,8]]},"125":{"position":[[5817,9]]},"135":{"position":[[17328,8],[18672,9],[19831,9],[21059,9],[21638,8]]},"136":{"position":[[13048,9],[13831,9],[14608,9],[15247,9],[16086,9],[16747,9],[17454,9]]},"138":{"position":[[1295,9]]},"141":{"position":[[1038,9],[4895,8],[5624,8],[5884,8],[6718,9]]},"142":{"position":[[19163,8],[23333,8]]},"144":{"position":[[9412,9]]},"146":{"position":[[16988,8],[18466,8],[19659,8],[20430,8],[21006,8],[21976,8],[22472,8],[24996,8]]},"147":{"position":[[8308,9]]},"149":{"position":[[5728,9]]}}}],["aris",{"_index":64,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1166,7]]}}}],["arm",{"_index":1724,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2296,3],[2460,3]]},"128":{"position":[[14287,3],[14372,3],[14422,3],[14913,3],[14966,3]]},"133":{"position":[[5572,3]]}}}],["around",{"_index":7731,"t":{},"d":{},"k":{},"b":{"144":{"position":[[10848,7]]}}}],["arrang",{"_index":6000,"t":{},"d":{},"k":{},"b":{"125":{"position":[[7871,11]]}}}],["array",{"_index":2048,"t":{},"d":{},"k":{},"b":{"71":{"position":[[41675,5],[42193,5],[43046,5]]},"75":{"position":[[14907,5],[23861,5],[31910,5]]},"77":{"position":[[6705,5]]},"80":{"position":[[1241,5]]},"93":{"position":[[3284,6],[3812,6]]},"106":{"position":[[13035,6],[13135,5]]},"128":{"position":[[11767,6],[23281,5],[23408,5],[23472,5],[24608,5],[24738,5],[24803,5],[26522,5],[26582,5],[26631,5]]},"145":{"position":[[3364,5],[12150,6]]}}}],["arraynam",{"_index":2345,"t":{},"d":{},"k":{},"b":{"75":{"position":[[14826,9]]}}}],["arriv",{"_index":2680,"t":{},"d":{},"k":{},"b":{"76":{"position":[[9898,6],[19625,6]]},"83":{"position":[[23369,6]]},"139":{"position":[[9028,6],[23934,6],[27206,6]]},"140":{"position":[[6902,6],[21786,6],[24155,6]]}}}],["ascend",{"_index":662,"t":{},"d":{},"k":{},"b":{"68":{"position":[[2018,9],[8398,9]]},"69":{"position":[[10414,9]]}}}],["assembl",{"_index":1767,"t":{},"d":{},"k":{},"b":{"71":{"position":[[4256,9]]},"128":{"position":[[2021,8]]}}}],["assert",{"_index":1865,"t":{},"d":{},"k":{},"b":{"71":{"position":[[10990,6],[11087,8],[29207,10],[29701,9],[31782,10],[32276,9]]},"113":{"position":[[2012,9]]},"128":{"position":[[15350,8],[15369,9],[16254,9],[16288,9],[16345,9],[16693,9],[16714,9],[17123,6]]},"135":{"position":[[9259,9],[9813,6],[10238,6],[10469,6],[10894,6]]},"139":{"position":[[5000,9],[5111,9],[13612,9]]},"142":{"position":[[10261,9],[10822,6],[11256,6],[11487,6],[11921,6]]},"143":{"position":[[5660,8]]},"148":{"position":[[2845,9]]},"150":{"position":[[5492,9],[5570,9],[18127,9],[18185,9]]}}}],["assert(fals",{"_index":6508,"t":{},"d":{},"k":{},"b":{"131":{"position":[[12998,14]]}}}],["assert(fsp_success",{"_index":778,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10009,18],[10127,18],[10743,18],[12448,18],[12703,18],[12821,18],[12949,18],[13431,18],[13494,18],[13607,18],[15315,18],[15570,18],[15688,18],[15816,18],[16201,18],[16265,18],[16378,18]]},"69":{"position":[[17835,18],[18153,18],[18333,18]]},"75":{"position":[[28112,18],[28678,18],[29258,18],[29440,18],[30128,18],[37156,18],[38990,18]]},"79":{"position":[[8138,18],[8276,18]]},"83":{"position":[[26939,18]]},"84":{"position":[[6281,18],[6998,18],[7790,18],[8787,18]]},"88":{"position":[[22548,18],[23003,18],[24044,18],[24151,18],[24382,18],[24708,18],[24916,18],[25204,18],[26584,18],[27341,18],[27444,18],[27756,18],[28065,18],[30267,18],[30722,18],[31789,18],[31896,18],[32078,18],[32280,18],[32562,18],[33640,18],[36166,18],[37572,18],[38632,18]]},"89":{"position":[[4047,18],[4179,18]]},"90":{"position":[[3679,18],[3811,18]]},"91":{"position":[[4317,18],[4450,18]]},"105":{"position":[[15855,18],[16457,18]]},"106":{"position":[[13882,18],[14062,18]]},"108":{"position":[[4051,18]]},"125":{"position":[[10025,18],[10309,18],[10901,18],[11043,18],[11484,18],[12414,18]]},"136":{"position":[[8013,18],[8504,18],[9175,18],[9798,18]]},"138":{"position":[[8150,18],[8516,18],[9128,18],[10075,18],[10382,18],[10838,18],[11169,18]]},"139":{"position":[[10124,18],[10223,18],[10322,18],[12260,18],[12361,18]]},"142":{"position":[[9684,18],[9852,18],[10788,18],[11098,18],[11763,18],[12453,18],[12641,18]]},"146":{"position":[[5770,18],[5933,18],[6714,18],[6993,18],[7164,18],[8504,18],[8653,18],[8937,18],[9100,18],[9881,18],[12158,18],[12321,18],[13236,18],[13367,18],[13679,18],[14012,18],[14209,18]]},"148":{"position":[[5410,18],[5557,18],[5767,18],[6438,18],[6633,18],[6779,18],[8188,18],[8510,18],[8970,18],[9176,18],[10159,18],[11791,18],[12573,18],[13295,18]]}}}],["assertion_tim",{"_index":7234,"t":{},"d":{},"k":{},"b":{"139":{"position":[[13563,15]]}}}],["assertionmcu",{"_index":8003,"t":{},"d":{},"k":{},"b":{"148":{"position":[[2784,12]]}}}],["assertmanu",{"_index":6243,"t":{},"d":{},"k":{},"b":{"128":{"position":[[15249,12]]}}}],["assign",{"_index":3226,"t":{},"d":{},"k":{},"b":{"82":{"position":[[1281,8]]},"87":{"position":[[1774,8],[1806,11],[3823,8],[9198,10],[9577,11],[9657,6],[9704,11],[9762,6],[15224,11],[15285,11],[16454,11],[18118,10],[19460,10],[19573,10],[19593,6],[20170,10]]},"88":{"position":[[1749,12],[1866,10],[4217,11],[4338,10],[4859,8],[5002,9],[5619,7],[5985,7],[6281,8],[6431,7],[9922,10],[10009,10],[10610,10],[24194,9],[24444,10],[35243,10],[55987,10]]},"109":{"position":[[1573,8]]},"124":{"position":[[15114,8]]},"125":{"position":[[1078,8],[15078,8]]},"128":{"position":[[14588,6],[14630,6]]},"135":{"position":[[18656,8],[19815,8],[21043,8]]},"138":{"position":[[13550,8]]}}}],["assigned_address_phase_en",{"_index":4239,"t":{},"d":{},"k":{},"b":{"88":{"position":[[41116,30]]}}}],["assist",{"_index":6296,"t":{},"d":{},"k":{},"b":{"128":{"position":[[21187,6]]}}}],["associ",{"_index":451,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8709,10]]},"69":{"position":[[12897,10]]},"71":{"position":[[10712,10],[45895,10]]},"75":{"position":[[11278,10],[11411,10],[24412,10]]},"79":{"position":[[16899,10]]},"87":{"position":[[3577,10]]},"88":{"position":[[5997,10]]},"89":{"position":[[5799,10]]},"90":{"position":[[5415,10]]},"91":{"position":[[6970,10]]},"116":{"position":[[582,10]]},"125":{"position":[[15611,10],[16721,10]]},"128":{"position":[[7892,10],[8027,10],[9005,10],[9081,10]]},"135":{"position":[[21437,10]]},"138":{"position":[[15781,10]]},"139":{"position":[[1601,10]]},"140":{"position":[[1628,10]]},"141":{"position":[[6976,10]]},"142":{"position":[[23132,10]]},"143":{"position":[[915,10],[1023,10],[3089,10]]},"145":{"position":[[14215,10],[14330,10],[14445,10],[14638,10]]},"147":{"position":[[419,10]]}}}],["assum",{"_index":31,"t":{},"d":{},"k":{},"b":{"0":{"position":[[474,7]]},"71":{"position":[[42515,7],[43366,7]]},"128":{"position":[[5404,8],[5980,7]]}}}],["assumpt",{"_index":2043,"t":{},"d":{},"k":{},"b":{"71":{"position":[[41229,10]]}}}],["asymmetr",{"_index":3297,"t":{},"d":{},"k":{},"b":{"83":{"position":[[2785,10],[5484,10],[5514,10],[6004,10],[6030,10],[18363,10]]},"105":{"position":[[5168,10],[5194,10]]},"144":{"position":[[12454,10],[12555,10]]}}}],["asynchron",{"_index":530,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13435,12]]},"68":{"position":[[1542,12],[6485,12]]},"83":{"position":[[4971,12]]},"139":{"position":[[9231,15],[16388,12]]}}}],["at25ql",{"_index":8210,"t":{},"d":{},"k":{},"b":{"150":{"position":[[9707,7]]}}}],["at25sf/at25qf",{"_index":8195,"t":{},"d":{},"k":{},"b":{"150":{"position":[[8738,14]]}}}],["at25sl/at25ql",{"_index":8193,"t":{},"d":{},"k":{},"b":{"150":{"position":[[8695,13]]}}}],["attempt",{"_index":1798,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6398,9]]},"88":{"position":[[4716,7]]},"108":{"position":[[8757,9]]},"109":{"position":[[4656,8]]},"113":{"position":[[4997,9],[5077,7],[5243,7],[5604,9],[15224,7]]}}}],["attribut",{"_index":1753,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3661,10],[3681,9]]},"289":{"position":[[365,10]]}}}],["audio",{"_index":1640,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12822,6],[17884,5]]},"106":{"position":[[1694,5],[2490,5],[12975,5]]},"107":{"position":[[40,5],[153,5],[1288,5],[7791,5]]},"115":{"position":[[1103,5]]},"152":{"position":[[7469,5]]}}}],["audio_clk1",{"_index":1526,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9147,11]]}}}],["audio_clk2",{"_index":1528,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9179,11]]}}}],["authent",{"_index":5835,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14703,14],[14820,14]]}}}],["author",{"_index":21,"t":{},"d":{},"k":{},"b":{"0":{"position":[[294,11]]}}}],["auto",{"_index":658,"t":{},"d":{},"k":{},"b":{"68":{"position":[[1772,4],[4326,4],[4348,4],[6754,4],[6782,4],[21843,4]]},"75":{"position":[[21825,4],[21937,4]]},"113":{"position":[[9316,4],[9882,4]]},"135":{"position":[[6522,4]]},"142":{"position":[[7696,4]]},"143":{"position":[[9719,4]]},"148":{"position":[[5169,4],[8388,4]]},"149":{"position":[[3214,4]]}}}],["autocalibr",{"_index":7602,"t":{},"d":{},"k":{},"b":{"143":{"position":[[4682,13],[9519,13],[9651,13]]},"150":{"position":[[27062,13]]}}}],["autom",{"_index":8329,"t":{},"d":{},"k":{},"b":{"151":{"position":[[2562,9],[2604,9]]}}}],["automat",{"_index":740,"t":{},"d":{},"k":{},"b":{"68":{"position":[[6859,13]]},"69":{"position":[[2845,13]]},"75":{"position":[[11899,9],[12021,9],[12161,9],[12288,9],[13637,9],[13801,13],[20137,9],[20340,13],[20980,13],[21431,13],[21578,13]]},"76":{"position":[[5819,13]]},"77":{"position":[[2624,14]]},"80":{"position":[[1078,13],[2617,13],[5181,13]]},"83":{"position":[[2830,9],[2952,13],[15712,13]]},"84":{"position":[[3671,13],[4429,13]]},"87":{"position":[[2218,13],[2658,13]]},"88":{"position":[[5219,13],[18783,13],[23648,13],[26847,13],[31393,13],[39225,13]]},"92":{"position":[[10704,9],[11732,9]]},"128":{"position":[[25389,13]]},"133":{"position":[[5263,13]]},"136":{"position":[[2495,13],[3231,9],[4918,9],[5016,9],[5123,9]]},"137":{"position":[[1365,9],[11435,10]]},"140":{"position":[[4438,9],[4494,9],[12717,9],[12852,9]]},"149":{"position":[[8545,13]]}}}],["auxiliari",{"_index":3123,"t":{},"d":{},"k":{},"b":{"80":{"position":[[2117,9]]}}}],["avail",{"_index":657,"t":{},"d":{},"k":{},"b":{"68":{"position":[[1738,9],[5302,10],[6720,9]]},"69":{"position":[[3458,9],[3607,9],[3884,9],[4413,12],[5226,12],[7078,12],[11124,9]]},"71":{"position":[[6258,9],[29016,10],[31591,10],[34124,9],[35713,9]]},"75":{"position":[[1072,10],[3651,9],[16366,10],[16791,9],[17706,9],[21362,9],[21691,9],[24114,9],[24796,9],[30389,9]]},"76":{"position":[[23890,9]]},"77":{"position":[[2837,9]]},"80":{"position":[[2154,9],[2268,9]]},"81":{"position":[[4385,9]]},"83":{"position":[[3502,9],[3835,9],[19790,9],[37948,9],[47458,9],[47569,9]]},"84":{"position":[[1880,9],[16398,9]]},"88":{"position":[[14547,9],[14871,9],[25671,9],[26153,9],[29204,9],[29640,9],[33049,9],[34759,9],[38978,9],[46717,9],[46747,9]]},"89":{"position":[[5926,9]]},"91":{"position":[[7097,9]]},"95":{"position":[[2609,9]]},"96":{"position":[[2319,9]]},"97":{"position":[[1997,9]]},"98":{"position":[[2543,9]]},"99":{"position":[[2572,9]]},"100":{"position":[[2284,9]]},"102":{"position":[[1964,9]]},"104":{"position":[[2506,9]]},"105":{"position":[[3532,9],[5999,9],[28813,9]]},"106":{"position":[[1773,9],[2578,9],[20998,9],[23398,9]]},"108":{"position":[[6361,9]]},"113":{"position":[[3544,9],[3989,9],[11861,10]]},"116":{"position":[[64,9],[298,9],[837,9]]},"124":{"position":[[14836,9]]},"125":{"position":[[14639,9]]},"127":{"position":[[3156,10],[3348,9]]},"128":{"position":[[1839,9],[1893,9],[2290,9],[3780,9],[3870,9],[6454,9],[25738,9]]},"129":{"position":[[4849,10],[5041,9]]},"131":{"position":[[7258,10],[7450,9]]},"133":{"position":[[8888,10],[9080,9]]},"138":{"position":[[13299,9]]},"139":{"position":[[4438,10],[4555,9],[9128,9]]},"140":{"position":[[4960,9]]},"141":{"position":[[4396,9],[5836,9]]},"145":{"position":[[16432,9]]},"146":{"position":[[5841,10],[9008,10],[12229,10]]},"147":{"position":[[1188,9]]},"150":{"position":[[1874,9],[1977,9],[3226,9],[5414,9],[6213,9],[11793,9]]},"151":{"position":[[1368,9]]},"152":{"position":[[553,9]]}}}],["averag",{"_index":753,"t":{},"d":{},"k":{},"b":{"68":{"position":[[8278,7]]},"69":{"position":[[1873,9],[7362,7],[7381,7],[7434,9],[19139,7],[22292,9],[22548,7],[22594,7]]},"106":{"position":[[9026,7],[9133,7],[15375,7],[18152,7]]},"134":{"position":[[3094,7]]},"146":{"position":[[1465,9],[2328,7],[2393,7],[4154,8],[10021,7],[14348,7],[15358,7],[16033,9],[16119,7],[16161,7],[16205,7]]}}}],["average_count",{"_index":7854,"t":{},"d":{},"k":{},"b":{"146":{"position":[[4541,14],[7412,14],[10531,14],[15343,13]]}}}],["avoid",{"_index":1035,"t":{},"d":{},"k":{},"b":{"69":{"position":[[11242,8]]},"71":{"position":[[6365,5]]},"128":{"position":[[404,5],[7152,7]]},"136":{"position":[[6826,5]]},"148":{"position":[[2598,5],[4761,5]]}}}],["awar",{"_index":2445,"t":{},"d":{},"k":{},"b":{"75":{"position":[[24324,5]]},"80":{"position":[[4477,5]]},"88":{"position":[[21586,5]]},"108":{"position":[[3341,5]]},"128":{"position":[[9033,5],[9326,5],[9507,5]]},"135":{"position":[[7077,5]]},"136":{"position":[[7052,5]]},"142":{"position":[[8251,5]]},"148":{"position":[[4366,5]]}}}],["aws/freertosconfig.h",{"_index":6128,"t":{},"d":{},"k":{},"b":{"128":{"position":[[623,21]]}}}],["azureo",{"_index":6096,"t":{},"d":{},"k":{},"b":{"127":{"position":[[4636,7],[5351,7]]},"129":{"position":[[6261,7],[6976,7]]},"131":{"position":[[10520,7],[11235,7]]},"133":{"position":[[11962,7],[12677,7],[16096,7],[16811,7],[20400,7],[21115,7],[25414,7],[26129,7],[31567,7],[32282,7],[35682,7],[36397,7],[39987,7],[40702,7],[44239,7],[44954,7]]}}}],["b",{"_index":350,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3112,1],[3283,1],[13699,1],[14268,1],[15441,2]]},"69":{"position":[[1836,1],[3366,1],[3680,2],[5076,1],[5157,2],[5194,1],[5404,2],[5441,1],[5602,2],[5772,1],[5893,1],[6677,1],[6845,2],[7602,1],[7623,1],[7668,1],[7748,1],[7799,1],[7880,1],[7973,1],[8076,1],[8126,1],[8781,1],[8852,1],[8895,1],[8973,1],[9540,1],[9611,1],[9654,1],[9807,1],[9821,1],[11456,1],[11610,1],[11679,1],[11778,1],[12041,2],[12062,1],[12925,1],[12981,2],[16358,2],[16934,1],[17140,1],[17622,1],[19241,1],[19529,2],[19892,1],[20026,1],[20549,1],[20692,1],[20751,1],[22973,1],[23050,1],[23148,1],[23202,1],[23287,1],[23403,1],[23491,1],[23617,1],[23751,1],[28630,1],[28753,1],[31446,1]]},"83":{"position":[[9831,2],[10000,2],[10366,1],[10445,1],[10648,1],[11568,1],[11625,1],[11661,1],[11767,2],[13239,1],[13303,1],[13713,1],[13902,1],[14918,1],[14945,1],[30443,2],[31417,1],[31586,1],[32926,1],[36894,3],[37398,3],[41184,2],[42881,1],[42939,1]]},"105":{"position":[[5626,1],[8499,1],[8556,1],[8592,1],[8699,2],[8992,1],[9158,1],[10083,1],[10214,1],[10379,1],[10544,1],[17353,2],[18702,1],[19656,1],[20063,2],[20475,1],[20610,1],[27502,2]]},"128":{"position":[[6710,1],[7057,1]]},"144":{"position":[[11061,2]]}}}],["b'00",{"_index":4606,"t":{},"d":{},"k":{},"b":{"92":{"position":[[21495,5],[22614,5],[23892,5],[25011,5],[35626,4]]}}}],["b'01",{"_index":4608,"t":{},"d":{},"k":{},"b":{"92":{"position":[[21556,5],[22695,5],[23953,5],[25092,5]]}}}],["b'10",{"_index":4610,"t":{},"d":{},"k":{},"b":{"92":{"position":[[21617,5],[22776,5],[24014,5],[25173,5]]}}}],["b'11",{"_index":4612,"t":{},"d":{},"k":{},"b":{"92":{"position":[[21678,5],[22857,5],[24075,5],[25254,5],[35481,4]]}}}],["back",{"_index":246,"t":{},"d":{},"k":{},"b":{"67":{"position":[[372,4]]},"92":{"position":[[14900,4],[32022,4],[36828,4]]},"124":{"position":[[9005,4]]},"125":{"position":[[12116,4]]},"138":{"position":[[8892,4]]},"150":{"position":[[1613,4],[11043,4],[13848,4]]}}}],["background",{"_index":7768,"t":{},"d":{},"k":{},"b":{"145":{"position":[[103,10]]},"151":{"position":[[738,10]]}}}],["backward",{"_index":6207,"t":{},"d":{},"k":{},"b":{"128":{"position":[[11026,8],[11445,8]]}}}],["band",{"_index":3934,"t":{},"d":{},"k":{},"b":{"87":{"position":[[12996,4],[18935,4],[19959,4],[20034,4]]},"88":{"position":[[1714,4],[1954,4],[11399,4],[33260,4],[33322,4],[35601,4],[35663,4],[35824,4]]},"106":{"position":[[2806,4],[15503,4],[16377,4],[16500,4],[18458,4]]}}}],["bank",{"_index":7601,"t":{},"d":{},"k":{},"b":{"143":{"position":[[4662,5],[9300,5],[9334,4],[9493,4]]},"150":{"position":[[1034,5],[25605,4],[25692,4]]}}}],["bankset",{"_index":7600,"t":{},"d":{},"k":{},"b":{"143":{"position":[[4617,7],[9188,7]]}}}],["base",{"_index":764,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9442,5]]},"69":{"position":[[13233,5],[33407,5]]},"71":{"position":[[1760,5],[2274,5],[7816,5],[9365,5],[10603,5],[37997,5],[43697,5],[44670,5],[45006,6]]},"72":{"position":[[437,5],[446,5]]},"75":{"position":[[1550,5],[31051,6]]},"76":{"position":[[2675,5],[5416,5],[5891,5],[11161,5],[16951,5]]},"80":{"position":[[2641,5],[5205,5]]},"83":{"position":[[15240,5],[15784,5],[24592,5],[25823,5]]},"84":{"position":[[1385,5],[3075,5],[3685,5],[4476,5],[8367,5]]},"87":{"position":[[2243,5]]},"88":{"position":[[5271,5],[15758,4],[15877,4],[15980,4],[16083,4],[44854,4]]},"92":{"position":[[11489,5],[12083,5]]},"95":{"position":[[1636,4]]},"96":{"position":[[1454,4]]},"97":{"position":[[1201,4]]},"98":{"position":[[1574,4]]},"99":{"position":[[1607,4]]},"100":{"position":[[1427,4]]},"102":{"position":[[1176,4]]},"104":{"position":[[1545,4]]},"105":{"position":[[10848,5],[14898,5],[16156,5],[17703,4],[17763,4],[17826,4],[31537,5]]},"106":{"position":[[13089,5]]},"108":{"position":[[819,5],[2928,5]]},"109":{"position":[[201,5],[6935,5],[7015,5],[7098,5],[7171,5],[7249,5],[7327,5],[7405,5],[7483,5],[7561,5],[7784,5],[7876,5]]},"124":{"position":[[6345,5]]},"125":{"position":[[6284,5],[6348,5],[6412,5],[7555,5],[13617,5]]},"128":{"position":[[13303,5]]},"133":{"position":[[7825,5],[7863,5],[7919,6],[7952,6]]},"134":{"position":[[3157,5],[3245,5]]},"135":{"position":[[13502,4]]},"137":{"position":[[1837,5],[1912,5],[1988,5],[2062,5],[2134,5],[2209,5],[2288,5]]},"138":{"position":[[6063,5]]},"139":{"position":[[5216,4],[5477,4],[18149,5]]},"140":{"position":[[16768,5]]},"142":{"position":[[14902,4]]},"144":{"position":[[6907,5]]},"146":{"position":[[19352,5]]},"148":{"position":[[3531,5],[10673,5]]},"150":{"position":[[14861,5]]},"151":{"position":[[2585,5]]}}}],["baseclock",{"_index":7235,"t":{},"d":{},"k":{},"b":{"139":{"position":[[13590,9],[13720,9]]}}}],["baselin",{"_index":6629,"t":{},"d":{},"k":{},"b":{"133":{"position":[[8237,8]]}}}],["basepri",{"_index":1828,"t":{},"d":{},"k":{},"b":{"71":{"position":[[8397,7]]}}}],["basetype_t",{"_index":6270,"t":{},"d":{},"k":{},"b":{"128":{"position":[[18612,10]]}}}],["basic",{"_index":761,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9291,5],[9315,5]]},"69":{"position":[[13078,5],[13102,5]]},"70":{"position":[[1177,5]]},"75":{"position":[[23024,5],[23934,5],[26684,5],[26708,5]]},"76":{"position":[[7174,5],[7198,5]]},"77":{"position":[[3745,5],[3769,5]]},"79":{"position":[[7811,5],[7835,5]]},"80":{"position":[[5073,5],[5098,5]]},"83":{"position":[[5801,5],[20445,5],[20469,5]]},"84":{"position":[[5976,5],[6000,5]]},"88":{"position":[[22321,5],[22345,5],[26359,5],[26383,5],[30036,5],[30060,5],[33294,5],[35635,5],[36753,5],[38220,5]]},"89":{"position":[[3182,5],[3206,5]]},"90":{"position":[[2900,5],[2924,5]]},"91":{"position":[[3262,5],[3286,5]]},"92":{"position":[[12646,5],[12670,5]]},"105":{"position":[[4965,5],[12197,5],[12221,5]]},"106":{"position":[[13495,5],[13519,5]]},"108":{"position":[[3745,5],[3769,5]]},"111":{"position":[[376,5]]},"124":{"position":[[7098,5],[7122,5],[7242,5]]},"125":{"position":[[8106,5],[8130,5],[8249,5]]},"127":{"position":[[3906,5],[3930,5]]},"129":{"position":[[5401,5],[5425,5]]},"131":{"position":[[9590,5],[9614,5]]},"133":{"position":[[11069,5],[11093,5]]},"135":{"position":[[8267,5],[8291,5]]},"136":{"position":[[7476,5],[7500,5]]},"138":{"position":[[7695,5],[7719,5],[7837,5]]},"142":{"position":[[9255,5],[9279,5]]},"146":{"position":[[4403,5],[4427,5]]},"148":{"position":[[5014,5],[5038,5]]},"150":{"position":[[7011,5],[7036,5]]},"152":{"position":[[464,5]]}}}],["basic_exampl",{"_index":4500,"t":{},"d":{},"k":{},"b":{"92":{"position":[[12737,13]]},"124":{"position":[[7989,13]]},"125":{"position":[[10436,13]]},"138":{"position":[[7875,13]]}}}],["baud",{"_index":2140,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1461,4]]},"75":{"position":[[21840,4]]},"124":{"position":[[6327,4],[6405,4]]},"125":{"position":[[7537,4],[7615,4]]},"138":{"position":[[3880,4],[3939,4],[3998,4],[4057,4],[4116,4],[4181,4],[4413,4],[6045,4],[6137,4]]},"139":{"position":[[1490,4],[3135,4],[3142,4],[3215,4],[3244,4],[3356,4],[3460,4],[3467,4],[3526,4],[3587,4],[3627,4],[3745,4],[3881,4],[4031,4],[5589,4],[5619,4],[5693,4],[5752,4],[7307,4],[7724,4],[11710,4],[13206,4],[14287,4],[14338,4],[14588,4],[15227,4],[15311,4],[15393,4],[15453,4],[21721,4],[24979,4],[25071,4],[25275,4],[25657,4],[25729,4]]},"140":{"position":[[1511,4],[2883,4],[2890,4],[2963,4],[2976,4],[2983,4],[3042,4],[3103,4],[3143,4],[3261,4],[3397,4],[3547,4],[3987,4],[4048,4],[4088,4],[4608,4],[4667,4],[6217,4],[6618,4],[9080,4],[10449,4],[11312,4],[11482,4],[12028,4],[12111,4],[12192,4],[12251,4],[19580,4],[22874,4],[22966,4],[23622,4]]},"147":{"position":[[308,4],[6535,4],[6643,4],[6880,4]]}}}],["baud_rat",{"_index":7216,"t":{},"d":{},"k":{},"b":{"139":{"position":[[11935,9]]},"140":{"position":[[9290,9]]}}}],["baud_rate_error",{"_index":7290,"t":{},"d":{},"k":{},"b":{"139":{"position":[[25379,15]]},"140":{"position":[[23299,15]]}}}],["baud_rate_error_x_1000",{"_index":7138,"t":{},"d":{},"k":{},"b":{"139":{"position":[[769,23],[24769,23]]},"140":{"position":[[792,23],[22665,23]]}}}],["baud_rate_percent_error",{"_index":7288,"t":{},"d":{},"k":{},"b":{"139":{"position":[[25300,25]]}}}],["baud_rate_prescal",{"_index":2139,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1440,19]]}}}],["baud_set",{"_index":7215,"t":{},"d":{},"k":{},"b":{"139":{"position":[[11897,13],[12241,15],[12342,15]]},"140":{"position":[[9258,13],[9581,15],[9671,15]]}}}],["baud_setting_t",{"_index":7312,"t":{},"d":{},"k":{},"b":{"140":{"position":[[3710,14],[9243,14]]}}}],["baudrat",{"_index":2333,"t":{},"d":{},"k":{},"b":{"75":{"position":[[13647,8],[20946,8]]},"87":{"position":[[19263,9]]},"139":{"position":[[725,9],[24601,9]]},"140":{"position":[[748,9],[22497,9]]}}}],["baudset",{"_index":7949,"t":{},"d":{},"k":{},"b":{"147":{"position":[[3935,7],[6377,7]]}}}],["bcr",{"_index":3860,"t":{},"d":{},"k":{},"b":{"87":{"position":[[2265,4],[2747,4],[17434,4],[19808,3]]},"88":{"position":[[4762,3],[5284,3],[5397,3],[6155,4],[6603,3],[25649,3],[27059,4]]}}}],["bcr[0",{"_index":4120,"t":{},"d":{},"k":{},"b":{"88":{"position":[[20360,6]]}}}],["be",{"_index":1282,"t":{},"d":{},"k":{},"b":{"69":{"position":[[33349,5]]},"71":{"position":[[5329,5],[5965,5],[9348,5],[11434,5]]},"88":{"position":[[6275,5],[45045,5]]},"92":{"position":[[32934,5],[37838,5],[40329,5]]},"93":{"position":[[6001,5],[7174,5]]},"113":{"position":[[1160,5],[1402,5],[9395,5]]},"128":{"position":[[5767,5],[7690,5],[11608,5],[19600,5],[26706,5]]},"139":{"position":[[8209,5],[18704,5]]},"140":{"position":[[17233,5]]},"142":{"position":[[7447,5]]},"146":{"position":[[19294,5]]}}}],["becom",{"_index":7913,"t":{},"d":{},"k":{},"b":{"146":{"position":[[13084,7]]}}}],["befor",{"_index":937,"t":{},"d":{},"k":{},"b":{"68":{"position":[[25329,6]]},"69":{"position":[[12216,6],[12883,7],[14783,6],[15614,6],[32315,6]]},"71":{"position":[[1137,6],[29387,6],[31962,6],[41066,6],[41161,6]]},"75":{"position":[[16520,6]]},"76":{"position":[[6512,6],[6576,6],[16332,6]]},"79":{"position":[[7499,6]]},"83":{"position":[[16480,6],[16713,6],[16777,6],[18869,6],[41719,6],[41975,6],[53922,6],[58232,6]]},"84":{"position":[[5688,6],[5752,6],[11108,6]]},"87":{"position":[[11227,6]]},"88":{"position":[[4193,6],[14525,6],[18396,6],[18550,6]]},"92":{"position":[[5611,6],[7044,6]]},"105":{"position":[[35295,6]]},"108":{"position":[[4513,6],[4560,6],[4678,6]]},"111":{"position":[[199,6]]},"124":{"position":[[6909,6]]},"125":{"position":[[5042,6]]},"127":{"position":[[3645,6]]},"129":{"position":[[5167,6]]},"131":{"position":[[6992,6]]},"133":{"position":[[1437,6],[1777,6],[5161,6],[9208,6],[54972,6],[55612,6]]},"135":{"position":[[1476,6],[3719,6]]},"136":{"position":[[6478,6],[6758,6],[14402,6]]},"139":{"position":[[8994,6],[13643,6],[13774,6],[23872,6],[27144,6]]},"140":{"position":[[6868,6],[21724,6],[24093,6]]},"142":{"position":[[1617,6],[5677,6]]},"145":{"position":[[15847,6]]},"148":{"position":[[5660,6],[8760,6],[9069,6],[10052,6]]},"152":{"position":[[278,6]]}}}],["begin",{"_index":715,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5192,5]]},"69":{"position":[[11477,6]]},"75":{"position":[[16540,7]]},"83":{"position":[[17851,9]]},"125":{"position":[[15676,6],[16787,6]]},"138":{"position":[[15841,6]]}}}],["behavior",{"_index":1870,"t":{},"d":{},"k":{},"b":{"71":{"position":[[11203,8],[11334,9],[31179,8],[33754,8]]},"83":{"position":[[8829,8],[9060,8]]},"85":{"position":[[2841,8]]},"86":{"position":[[2491,8]]},"88":{"position":[[42165,8],[46385,8]]},"94":{"position":[[1967,8]]},"101":{"position":[[1975,8]]},"124":{"position":[[1804,8]]},"135":{"position":[[7469,8],[14390,9]]},"138":{"position":[[1818,8]]},"142":{"position":[[8643,8],[9141,8],[16575,9]]}}}],["behaviour",{"_index":6173,"t":{},"d":{},"k":{},"b":{"128":{"position":[[5672,9],[6194,9],[6485,9]]}}}],["belong",{"_index":1002,"t":{},"d":{},"k":{},"b":{"69":{"position":[[6642,6],[6829,6],[7016,6]]}}}],["below",{"_index":670,"t":{},"d":{},"k":{},"b":{"68":{"position":[[2448,6],[4934,5],[9237,6]]},"71":{"position":[[2771,6]]},"75":{"position":[[2906,6],[4233,6],[4960,6],[5687,6],[6414,6],[7141,6],[7868,6],[8595,6],[9322,6],[15006,5],[15286,6],[18631,6],[19281,5],[19855,6],[23038,5],[24271,5],[25287,5]]},"76":{"position":[[6874,6],[7103,6]]},"80":{"position":[[946,5],[1474,5],[5087,5]]},"83":{"position":[[6308,6],[17178,6],[17747,6],[17978,6],[18120,6],[20344,5]]},"84":{"position":[[5955,6]]},"88":{"position":[[2813,7]]},"107":{"position":[[5560,5]]},"108":{"position":[[5036,5]]},"116":{"position":[[478,6]]},"124":{"position":[[3449,6],[14932,6]]},"125":{"position":[[5317,6],[6118,5],[14896,6]]},"128":{"position":[[6589,6],[13258,5],[15711,6],[17041,6],[20190,6],[20469,6],[22405,6],[26571,6]]},"133":{"position":[[4988,6]]},"138":{"position":[[13395,6]]},"148":{"position":[[4104,6]]},"150":{"position":[[7145,6]]}}}],["best",{"_index":2418,"t":{},"d":{},"k":{},"b":{"75":{"position":[[21042,4]]},"133":{"position":[[7187,4]]},"139":{"position":[[25037,4]]},"140":{"position":[[22932,4]]}}}],["better",{"_index":5871,"t":{},"d":{},"k":{},"b":{"116":{"position":[[1027,6]]}}}],["between",{"_index":710,"t":{},"d":{},"k":{},"b":{"68":{"position":[[4773,7],[8009,7],[8142,7],[19762,7],[19842,7],[19925,7],[19964,7],[20045,7],[20085,7],[20211,7],[20291,7],[20374,7],[20413,7],[20494,7],[20534,7]]},"69":{"position":[[8695,7],[8940,7],[9193,7],[9446,7],[9699,7],[23030,7]]},"71":{"position":[[9839,7],[10022,7],[10283,7],[10529,7]]},"75":{"position":[[2823,7],[9810,7],[12340,7],[13859,7],[14329,7],[17551,7],[22344,7]]},"76":{"position":[[4389,7],[4618,7],[4849,7],[5083,7],[5318,7]]},"79":{"position":[[2360,7],[3989,7]]},"80":{"position":[[851,7],[1787,7],[1826,7],[2199,7],[3336,7],[4873,7],[8028,7]]},"83":{"position":[[3445,7],[8571,7],[11210,7],[11481,7],[11706,7],[11952,7],[12227,7],[29837,7],[42147,7]]},"84":{"position":[[1829,7]]},"86":{"position":[[1823,7]]},"88":{"position":[[15705,7]]},"89":{"position":[[2709,7]]},"90":{"position":[[2427,7]]},"91":{"position":[[2160,7],[2786,7]]},"92":{"position":[[15336,7]]},"94":{"position":[[216,7],[283,7]]},"95":{"position":[[648,8],[803,7]]},"96":{"position":[[676,8]]},"97":{"position":[[480,8]]},"98":{"position":[[745,7]]},"99":{"position":[[638,8],[782,7]]},"100":{"position":[[668,8]]},"102":{"position":[[474,8]]},"104":{"position":[[724,7]]},"105":{"position":[[3273,7],[3480,7],[5417,7],[5566,7],[5715,7],[5864,7],[8139,7],[8411,7],[8637,7],[26683,7]]},"106":{"position":[[2927,7],[3081,7],[3234,7],[3387,7],[3540,7],[3693,7],[3846,7],[3999,7],[4152,7],[4305,7],[4458,7],[4612,7],[4767,7],[4922,7],[5077,7],[5232,7],[5387,7],[5542,7],[5697,7],[5852,7],[6007,7],[6376,7],[6551,7],[6726,7],[6901,7],[7076,7],[7251,7],[7426,7],[7601,7],[7776,7],[7951,7],[8127,7],[8471,7],[8624,7],[8777,7],[8930,7],[9804,7],[9946,7],[10282,7],[10487,7],[10884,7],[11272,7],[11729,7],[11970,7],[12213,7]]},"108":{"position":[[2831,7]]},"113":{"position":[[7250,7]]},"124":{"position":[[3216,7],[3565,7],[4368,7]]},"125":{"position":[[2053,7],[2254,7]]},"127":{"position":[[3742,7]]},"128":{"position":[[3489,7],[3537,7],[8393,7],[10146,7],[10353,7]]},"129":{"position":[[5237,7]]},"131":{"position":[[7059,7]]},"133":{"position":[[9280,7]]},"135":{"position":[[4267,7],[4990,7],[5261,7],[5399,7],[5984,7],[8231,7],[10364,7]]},"138":{"position":[[3136,7]]},"139":{"position":[[5103,7],[5363,7],[9269,7],[9424,7]]},"140":{"position":[[5516,7],[5649,7],[5823,7],[5960,7]]},"142":{"position":[[3087,7],[3228,7],[3365,7],[3490,7],[6023,7],[6708,7],[9112,7],[11382,7]]},"143":{"position":[[11140,7]]},"146":{"position":[[2810,7],[2926,7],[3375,7],[3635,7]]},"148":{"position":[[3132,7]]},"150":{"position":[[1913,7],[3884,7]]}}}],["beyond",{"_index":2443,"t":{},"d":{},"k":{},"b":{"75":{"position":[[23818,6]]}}}],["billion",{"_index":6730,"t":{},"d":{},"k":{},"b":{"134":{"position":[[3054,8]]}}}],["binari",{"_index":6190,"t":{},"d":{},"k":{},"b":{"128":{"position":[[8413,6]]},"136":{"position":[[7139,6]]}}}],["bit",{"_index":445,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8274,3],[12714,3],[12756,3],[12796,3],[12838,3],[12880,3],[12922,3]]},"68":{"position":[[1371,3],[17696,3],[17710,3],[28219,3]]},"69":{"position":[[1311,3],[2692,3],[2699,3],[2707,3],[4875,3],[4996,3],[5813,3],[5934,3],[20953,3],[20967,3],[35619,3]]},"71":{"position":[[45396,3]]},"74":{"position":[[1391,3],[2680,3],[8273,6],[9545,4],[9598,4]]},"75":{"position":[[1592,4],[1623,4],[3347,3],[12132,4],[12259,4],[13892,5],[13922,3],[19017,4],[20180,3],[20904,3],[31944,5],[32003,5],[33760,3],[33824,3],[35231,3]]},"76":{"position":[[2883,3],[2891,3],[2899,3],[8052,3],[8083,3],[11665,3],[17455,3]]},"77":{"position":[[656,3],[863,3],[903,3],[1036,3],[1077,3],[1334,3],[2149,3],[2189,3],[3193,3],[3271,3],[3575,3],[4140,3],[4209,3],[4422,3],[6592,3],[6604,3],[6723,3],[6735,3],[6782,3],[6794,3]]},"78":{"position":[[184,4],[192,4],[204,3],[4738,3],[4795,3],[4860,3],[4925,3],[5058,3]]},"79":{"position":[[6272,3],[12939,3],[13009,3],[13079,3],[13149,3],[13221,3],[13293,3],[13365,3],[13439,3]]},"83":{"position":[[1879,3],[1898,3],[3663,3],[3696,3],[3997,3],[4033,3],[6349,4],[6369,4],[6491,4],[6513,4],[15941,3],[16119,3],[16172,3],[21267,3],[22614,3]]},"84":{"position":[[2068,3],[2104,3],[4732,3]]},"85":{"position":[[9229,3],[9286,3]]},"86":{"position":[[6922,3],[6978,3]]},"87":{"position":[[11285,3]]},"88":{"position":[[10165,3],[10309,3],[18443,4],[18597,4],[40591,4],[41304,3],[41403,3]]},"92":{"position":[[16176,3],[35328,3],[35465,4],[35610,4],[36495,3],[36568,3],[36596,3],[38035,3],[38079,3],[38109,3],[38137,3],[38169,3],[39070,3],[39143,3],[39171,3],[39983,3],[40027,3],[40057,3],[40085,3],[40117,3],[40186,4],[40214,3],[40316,4]]},"93":{"position":[[192,3],[7102,3]]},"94":{"position":[[254,3],[1108,3],[1547,3]]},"105":{"position":[[1697,3],[1714,3],[1806,3],[1819,3],[3735,3],[3772,3],[13022,3]]},"106":{"position":[[1875,3],[1889,4],[1907,3],[1922,4],[1946,4],[1964,4],[1980,4],[2004,4],[2022,4],[2038,4],[2062,4],[2080,4],[2096,4],[2120,4],[2138,3],[2153,4],[2177,4],[2195,3],[2210,4],[2234,4],[2252,3],[2267,4],[2291,4],[2309,3],[2324,4],[2348,4],[2366,3],[2381,4],[2463,3],[2714,3],[2733,4],[2753,4],[6164,3],[6183,4],[6203,4],[8281,3],[8300,4],[8320,4],[13102,4],[13125,3],[13176,4],[13184,3],[13235,4],[13243,3],[13310,4],[13317,3],[13366,4],[13416,4],[13423,3],[15985,3],[16082,3],[16183,3],[16301,3],[16420,3],[16543,3],[16812,3],[16914,3],[17209,3],[17347,3],[18573,3],[18615,3],[18657,3],[18940,3],[18998,3],[19056,3],[19298,3],[19340,3],[19382,3]]},"107":{"position":[[7855,3],[7876,3],[7900,3],[7951,3],[7972,3],[7996,4],[8048,3],[8069,3],[8093,4],[8145,3],[8166,3],[8190,4],[8242,3],[8263,3],[8287,3],[8338,3],[8359,3],[8383,3],[8434,3],[8455,3],[8479,3],[8530,3],[8551,3],[8575,3],[8626,3],[8647,3],[8671,3]]},"124":{"position":[[1918,3],[2396,3],[2485,3],[2536,3],[3305,3],[3701,3],[3709,3],[3716,3],[3761,3],[3824,3]]},"125":{"position":[[1092,3],[3249,3],[3257,3],[3264,3]]},"127":{"position":[[2877,3],[2885,3],[2892,3]]},"128":{"position":[[4450,5],[4506,3],[4815,3],[5254,3],[5309,3],[5573,3],[12131,3],[12672,3],[12874,3],[15028,4]]},"130":{"position":[[935,4],[1007,4]]},"131":{"position":[[3807,3],[3815,3],[3823,3],[3831,3],[3839,3],[3899,3],[3907,3],[3915,3],[3923,3],[3931,3],[4743,4],[4881,4],[4921,4],[5524,4],[5717,4],[5805,3],[5920,3],[6377,4],[6714,4]]},"132":{"position":[[1175,4],[1240,4]]},"135":{"position":[[1220,4],[1228,4],[1236,3],[1279,3],[1290,3],[2712,3],[2771,3],[6129,3],[6826,4],[7241,3],[13684,4],[13692,4],[13700,4],[13765,4],[13773,4],[13781,4],[13817,4],[13840,4],[13848,4],[13856,4],[14485,4],[18612,3],[19771,3],[20999,3],[22105,4],[22181,4]]},"138":{"position":[[2000,3],[2506,3],[2595,3],[2646,3],[3268,3],[3276,3],[3283,3],[4262,3],[11831,3],[11901,3]]},"139":{"position":[[1519,3],[2925,4],[2979,4],[3077,4],[3127,5],[3705,4],[5808,3],[5867,3],[6301,3],[7817,3],[16226,3],[16407,3],[16522,4],[16605,4],[19704,3],[20062,3],[20144,3],[20944,3],[21289,3],[21375,3]]},"140":{"position":[[1540,3],[2680,4],[2727,4],[2825,4],[2875,5],[3221,4],[4166,4],[5110,3],[6711,3],[10561,3]]},"141":{"position":[[4182,3],[5042,3],[6031,3],[7957,3],[8005,3],[8020,4],[8060,3],[8075,4],[8115,3],[8130,4],[8170,3],[8185,4],[8225,3],[8240,4],[8280,3],[8295,4],[8336,3],[8352,4],[8393,3],[8409,4],[8450,3],[8466,4],[8507,3],[8523,4],[8564,3],[8580,4],[8621,3],[8637,4],[8678,3],[8694,4],[8735,3],[8751,4],[8792,3],[8808,4],[8849,3],[8865,4],[8906,3],[8922,4],[8967,3],[8983,4],[9024,3],[9040,4],[9081,3],[9097,4],[9142,3],[9158,4],[9203,3],[9219,4],[9264,3],[9280,4],[9321,3],[9337,4],[9378,3],[9394,4],[9435,3],[9451,4],[9492,3],[9508,4],[9553,3],[9569,4],[9614,3],[9630,4],[10980,3]]},"142":{"position":[[1311,3],[1354,3],[1365,3],[4031,3],[4090,3],[5060,3],[7009,3],[8000,4],[8414,3],[9221,4],[9229,3],[15084,4],[15092,4],[15100,4],[15165,4],[15173,4],[15181,4],[15243,4],[15251,4],[15259,4],[15295,4],[15318,4],[15326,4],[15334,4],[16671,4],[17258,3],[17329,3],[23894,4]]},"143":{"position":[[2300,3],[2364,3]]},"144":{"position":[[11647,3],[11683,3]]},"145":{"position":[[12612,3],[12675,3],[12738,3],[12800,3],[12863,3],[12926,3],[12989,3],[13054,3],[13119,3],[13184,3],[13251,3],[13313,3],[13376,3],[13439,3],[13502,3],[13567,3],[13632,3],[13697,3],[13764,3]]},"146":{"position":[[4217,4],[4277,4]]},"147":{"position":[[2000,3],[2122,3],[10464,3],[10520,4],[10527,4],[10556,4],[10563,4],[10592,4],[10599,4],[10920,4],[10970,3],[10976,4],[11005,4],[11012,4]]},"150":{"position":[[3442,3],[3543,3],[3642,3],[3743,3],[3907,3],[4046,3],[4367,3],[4688,3],[5028,3],[5178,3],[5286,3],[9737,4],[15038,3],[15134,4],[15248,5],[15391,3],[15448,5],[15542,5]]}}}],["bit'",{"_index":4714,"t":{},"d":{},"k":{},"b":{"93":{"position":[[7147,5]]}}}],["bit/32",{"_index":2873,"t":{},"d":{},"k":{},"b":{"77":{"position":[[6585,6],[6716,6],[6775,6]]}}}],["bit[7:6",{"_index":4674,"t":{},"d":{},"k":{},"b":{"92":{"position":[[35432,8]]}}}],["bit[9:8",{"_index":4673,"t":{},"d":{},"k":{},"b":{"92":{"position":[[35401,8]]}}}],["bit_ord",{"_index":2897,"t":{},"d":{},"k":{},"b":{"78":{"position":[[1035,9]]},"141":{"position":[[1958,9]]}}}],["bit_width",{"_index":6757,"t":{},"d":{},"k":{},"b":{"135":{"position":[[204,10],[335,10],[484,10],[13806,9],[17968,9],[19078,9],[20322,9]]},"141":{"position":[[2825,10],[2948,10],[3089,10],[3882,10],[4147,11],[4611,10],[5007,11],[5264,10],[5996,11]]},"142":{"position":[[206,10],[338,10],[488,10],[15284,9],[19960,9],[20971,9],[22116,9]]}}}],["bitmask",{"_index":1001,"t":{},"d":{},"k":{},"b":{"69":{"position":[[6519,7]]},"83":{"position":[[33355,8]]},"105":{"position":[[17907,8]]}}}],["bitmust",{"_index":8135,"t":{},"d":{},"k":{},"b":{"150":{"position":[[3862,7]]}}}],["bitrat",{"_index":2248,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1193,7],[2103,7],[2136,7],[11889,7],[12011,7],[12121,7],[12151,7],[12248,7],[12278,7],[12393,7],[12489,8],[12500,7],[12656,7],[12812,7],[12980,7],[13070,8],[13081,7],[13234,7],[13386,7],[13551,7],[13712,7],[15184,7],[15293,7],[15477,7],[19985,9],[20093,7],[20441,7],[20805,7],[20853,7],[21243,8],[21384,7],[21701,7],[22064,7],[28819,7],[29515,7],[32069,7],[36251,7]]},"87":{"position":[[8852,7]]},"88":{"position":[[7709,7],[7891,7],[8056,7],[8272,7],[8463,7],[8645,7],[8810,7],[9026,7],[9217,7],[9382,7],[9550,7],[9713,7],[9878,7],[10039,7],[10191,7],[10336,7],[10471,7],[21099,7],[21160,7],[24574,7],[41725,7],[41828,7],[41878,7],[45202,7],[46259,7],[48804,7]]},"135":{"position":[[597,8],[1334,7],[3171,8],[3191,7],[3245,7],[3362,7],[3395,7],[5751,9],[5865,9],[11267,7],[11309,8],[21880,8],[22124,8],[22200,8],[22224,7],[22259,8],[22277,7],[22307,7],[22356,7],[22391,8],[22464,8],[22516,7]]},"138":{"position":[[4316,7],[4375,7],[7270,7]]},"139":{"position":[[25221,7]]},"140":{"position":[[23170,7]]},"142":{"position":[[603,8],[1433,7],[5231,8],[5251,7],[5305,7],[5422,7],[5455,7],[6448,8],[6589,9],[6844,9],[12290,7],[12332,8],[23577,8],[23913,8],[23937,7],[23972,8],[23990,7],[24020,8],[24044,7],[24079,8],[24152,7],[24266,7]]}}}],["bitrate_mod",{"_index":3885,"t":{},"d":{},"k":{},"b":{"87":{"position":[[5679,13],[8510,13]]},"88":{"position":[[604,13],[54946,12]]}}}],["bitrate_modul",{"_index":7112,"t":{},"d":{},"k":{},"b":{"138":{"position":[[11811,18]]},"139":{"position":[[740,19],[24678,19]]},"140":{"position":[[763,19],[22574,19]]}}}],["bitrate_set",{"_index":4296,"t":{},"d":{},"k":{},"b":{"88":{"position":[[46241,16]]}}}],["bitratevalu",{"_index":6783,"t":{},"d":{},"k":{},"b":{"135":{"position":[[3098,12]]},"142":{"position":[[5158,12]]}}}],["bitwis",{"_index":848,"t":{},"d":{},"k":{},"b":{"68":{"position":[[18161,7]]},"69":{"position":[[21750,7]]}}}],["blank",{"_index":5635,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5907,5]]}}}],["ble",{"_index":5803,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13255,3],[13303,3],[13365,3],[13432,3],[13498,3]]}}}],["blink",{"_index":4511,"t":{},"d":{},"k":{},"b":{"92":{"position":[[13653,5]]}}}],["blinki",{"_index":4510,"t":{},"d":{},"k":{},"b":{"92":{"position":[[13580,6]]}}}],["blinky_exampl",{"_index":4515,"t":{},"d":{},"k":{},"b":{"92":{"position":[[13699,14]]}}}],["block",{"_index":474,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10155,6],[12074,6]]},"68":{"position":[[17925,6],[31383,5]]},"69":{"position":[[21407,6],[38010,5]]},"71":{"position":[[7699,8]]},"74":{"position":[[4218,6],[4682,6],[5130,6],[5518,6],[5896,6],[6307,6],[6816,5],[7687,6],[7732,5]]},"75":{"position":[[36561,5],[37266,5],[38181,5],[39100,5],[39698,5],[40569,5]]},"76":{"position":[[12164,6],[25717,5]]},"77":{"position":[[676,5],[2679,5],[5560,5],[6574,5]]},"78":{"position":[[272,5],[3619,5],[4417,6],[4462,5]]},"79":{"position":[[1238,5],[2425,5],[6476,5],[6492,5],[9612,5],[12372,5],[17727,6],[19086,6],[19582,6],[20040,6],[20526,6],[21075,6],[21590,6],[22369,6]]},"80":{"position":[[1799,6],[1838,6],[8387,6]]},"81":{"position":[[2560,5],[4082,6],[4127,5]]},"82":{"position":[[3134,6],[3634,5],[4039,5],[4658,6],[5271,5],[5962,6],[6007,5]]},"83":{"position":[[28754,6],[51489,6],[57443,5]]},"84":{"position":[[9100,6],[17230,5]]},"85":{"position":[[1250,5],[4396,6],[4858,5],[5439,5],[5944,5],[6396,5],[7032,6],[7652,6],[8008,5],[8666,6],[8711,5]]},"86":{"position":[[1059,5],[3694,6],[4113,5],[4568,5],[5180,6],[5718,5],[6368,6],[6413,5]]},"87":{"position":[[6804,6],[7177,5],[7526,5],[8155,5],[8721,5],[9453,5],[10199,5],[10712,5],[11402,5],[12285,5],[12911,5],[13468,5],[13905,5],[14525,6],[14570,5]]},"88":{"position":[[44520,6]]},"89":{"position":[[4504,6],[4658,5],[8037,5]]},"90":{"position":[[4136,6],[4290,5],[7587,5]]},"91":{"position":[[4907,6],[5062,5],[9198,5]]},"92":{"position":[[17030,6]]},"93":{"position":[[8747,6],[8792,5]]},"94":{"position":[[1226,5],[2990,6],[3430,5],[3981,5],[4608,5],[5210,6],[5255,5]]},"95":{"position":[[1372,6],[4381,5]]},"96":{"position":[[1158,6],[3695,5]]},"97":{"position":[[906,6]]},"98":{"position":[[1310,6],[4307,5]]},"99":{"position":[[1343,6],[4328,5]]},"100":{"position":[[1131,6],[3648,5]]},"101":{"position":[[1261,5],[3074,6],[3693,5],[4331,5],[5037,6],[5082,5]]},"102":{"position":[[881,6]]},"103":{"position":[[1236,5],[2204,6],[2652,5],[3017,5],[3723,6],[3768,5]]},"104":{"position":[[1281,6],[4254,5]]},"105":{"position":[[17475,6],[32771,6],[38347,5]]},"106":{"position":[[14574,6],[20910,5],[23473,5],[25867,5]]},"107":{"position":[[3950,6],[4407,5],[4923,5],[5285,5],[5878,5],[6237,5],[6718,6],[7550,6],[7595,5]]},"108":{"position":[[5320,6],[7780,5]]},"109":{"position":[[2982,6],[3398,5],[3910,5],[4494,5],[4885,5],[5140,5],[5751,6],[5796,5]]},"113":{"position":[[3133,6],[7789,5],[8320,5],[8390,5],[14572,5]]},"124":{"position":[[1795,8],[8698,5],[9303,5],[16069,6],[17012,6],[17505,6],[18509,6],[19033,6],[19978,5]]},"125":{"position":[[11553,5],[12483,5],[18489,5]]},"126":{"position":[[985,5],[1170,8],[4103,6],[4148,5]]},"127":{"position":[[2204,8],[2262,8],[2762,8],[3131,8],[3170,8],[3248,9],[3379,8],[3421,8],[4504,8]]},"128":{"position":[[5477,5],[9776,6]]},"129":{"position":[[302,6],[1697,6],[2197,6],[4824,8],[4863,8],[4941,9],[5072,8],[6129,8],[10382,5],[10454,8],[10464,8],[10543,9],[10734,5],[12111,6],[15479,6],[16574,6]]},"130":{"position":[[1165,5],[1364,5],[6395,6],[6440,5]]},"131":{"position":[[306,6],[7233,8],[7272,8],[7350,9],[7481,8],[10388,8],[14722,5],[14805,9],[14996,5],[16937,6]]},"132":{"position":[[1006,5],[1429,5],[1628,5],[5537,6],[5582,5]]},"133":{"position":[[8863,8],[8902,8],[8980,9],[9111,8],[11830,8],[15964,8],[20268,8],[25282,8],[31435,8],[35550,8],[39855,8],[44107,8],[49423,5],[49557,9],[49805,5],[50322,6]]},"134":{"position":[[3629,5],[12902,6],[12947,5]]},"135":{"position":[[6236,5],[13169,6],[23483,5]]},"136":{"position":[[10397,6],[18280,5],[18383,5]]},"137":{"position":[[2609,6],[2862,6],[8450,6],[9734,6],[9779,5],[10418,5]]},"138":{"position":[[1809,8],[8585,5],[9197,5],[15915,8],[15969,8],[18733,5]]},"139":{"position":[[6029,5],[13058,6],[18410,5],[18660,5],[19528,5],[19747,5],[20773,5],[20987,5],[22028,5],[22132,5],[22744,5],[22792,5],[23282,5],[23330,5],[24157,5],[24205,5],[26570,5],[27419,5],[27467,5]]},"140":{"position":[[4829,5],[10303,6],[17029,5],[17189,5],[18014,5],[18142,5],[18945,5],[19073,5],[19886,5],[19990,5],[20600,5],[20648,5],[21136,5],[21184,5],[22009,5],[22057,5],[23055,6],[24368,5],[24416,5],[25422,5]]},"141":{"position":[[3657,6],[4039,5],[4769,5],[5498,5],[6515,6],[7098,5],[7688,6],[7733,5]]},"142":{"position":[[7116,5],[14636,6],[25222,5]]},"143":{"position":[[10725,6],[10770,5]]},"144":{"position":[[4757,6],[5169,5],[5472,5],[5803,5],[6123,5],[6450,5],[7003,5],[7590,5],[8092,5],[8569,5],[9152,5],[9779,5],[10414,6],[10459,5]]},"145":{"position":[[842,7],[895,6],[1263,5],[2029,6],[4776,6],[5258,6],[5805,5],[6104,6],[6114,5],[6643,5],[7211,5],[7664,5],[8273,5],[8626,5],[9033,5],[9472,5],[9761,5],[10380,6],[10425,5],[11588,5],[11808,5],[12029,5],[12057,5],[12094,6],[12122,5],[12138,6],[12255,5],[12325,5]]},"146":{"position":[[15821,6],[24275,5]]},"147":{"position":[[4789,6],[5556,5],[6276,6],[6794,6],[7203,6],[7570,6],[8105,6],[8628,6],[8986,6],[9651,6],[9696,5]]},"148":{"position":[[9432,6],[10323,5],[11974,5],[12752,5],[13488,5],[14070,5],[14885,5]]},"149":{"position":[[5525,6],[6356,6],[6401,5]]},"150":{"position":[[4335,5],[4411,6],[4422,5],[4479,5],[4550,5],[4572,5],[4597,5],[4651,5],[4737,6],[4748,5],[4805,5],[4881,5],[4908,5],[4938,5],[16113,6],[24084,5]]}}}],["block_count_max",{"_index":7775,"t":{},"d":{},"k":{},"b":{"145":{"position":[[807,15]]}}}],["block_count_remain",{"_index":7776,"t":{},"d":{},"k":{},"b":{"145":{"position":[[862,21]]}}}],["board",{"_index":1671,"t":{"71":{"position":[[49,5]]}},"d":{},"k":{},"b":{"71":{"position":[[1577,5],[4801,5],[9130,5],[9240,5]]},"92":{"position":[[14499,5],[14540,5]]},"111":{"position":[[95,5]]},"133":{"position":[[13218,6],[17352,6],[21656,6],[26670,6],[32823,6],[36938,6],[41243,6],[45495,6]]},"135":{"position":[[5724,5]]},"142":{"position":[[6421,5]]},"151":{"position":[[1084,5]]},"152":{"position":[[176,5]]}}}],["board'",{"_index":1840,"t":{},"d":{},"k":{},"b":{"71":{"position":[[9176,7]]}}}],["bodi",{"_index":1770,"t":{},"d":{},"k":{},"b":{"71":{"position":[[4355,5],[4601,4],[5137,4],[5474,5],[5548,4]]}}}],["bool",{"_index":329,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2344,4]]},"69":{"position":[[14932,4],[19534,4]]},"82":{"position":[[1441,4]]},"83":{"position":[[28318,4]]},"85":{"position":[[1101,4],[3383,4],[3502,4],[4666,4],[5244,4]]},"86":{"position":[[1368,4],[1748,4]]},"87":{"position":[[1933,4],[2001,4],[2077,4],[3156,4],[3238,4],[6163,4],[6264,4],[10987,4],[11784,4]]},"88":{"position":[[1023,4],[1133,4],[42884,4],[43019,4],[43082,4],[43890,4],[46996,4],[57814,4],[58802,4]]},"124":{"position":[[231,4],[365,4],[15509,4],[16461,4]]},"129":{"position":[[10412,4],[10448,4],[10490,4]]},"131":{"position":[[9856,4],[9910,4],[14752,4],[15592,4],[15676,4]]},"133":{"position":[[49504,4],[49578,4],[50060,4]]},"134":{"position":[[2107,4],[3406,4]]},"135":{"position":[[8367,4],[13948,4]]},"136":{"position":[[10614,4]]},"137":{"position":[[1803,4],[1878,4],[1953,4],[2027,4],[2100,4],[2174,4],[2248,4]]},"138":{"position":[[295,4],[427,4],[11805,4],[14615,4],[15566,4]]},"139":{"position":[[735,4],[11993,4],[24662,4]]},"140":{"position":[[758,4],[9347,4],[22558,4]]},"142":{"position":[[9354,4]]},"143":{"position":[[3316,4],[3826,4],[5299,4]]},"146":{"position":[[5335,4],[11327,4],[11485,4]]},"150":{"position":[[273,4],[20463,4]]}}}],["boolean",{"_index":126,"t":{},"d":{},"k":{},"b":{"1":{"position":[[440,8]]}}}],["boost",{"_index":7483,"t":{},"d":{},"k":{},"b":{"142":{"position":[[2442,5]]}}}],["both",{"_index":703,"t":{},"d":{},"k":{},"b":{"68":{"position":[[4217,4],[21669,4]]},"69":{"position":[[3253,4],[6155,4],[12637,4],[15790,4],[28366,4]]},"71":{"position":[[5404,4]]},"75":{"position":[[1264,4],[1469,4],[24147,4]]},"76":{"position":[[3648,4],[3755,4],[13889,4]]},"77":{"position":[[3489,4]]},"82":{"position":[[6476,4]]},"83":{"position":[[18284,4],[30949,4],[31150,4]]},"88":{"position":[[17502,4]]},"89":{"position":[[1365,4],[2225,4]]},"92":{"position":[[2195,5],[11250,4],[12355,4],[12473,4],[27689,4]]},"93":{"position":[[187,4]]},"105":{"position":[[6112,4],[7295,4],[7681,4],[21698,4],[21962,4]]},"124":{"position":[[2358,4]]},"128":{"position":[[8987,4],[16439,4],[20360,4],[23743,4]]},"129":{"position":[[3418,4],[3464,4],[3527,4]]},"131":{"position":[[3351,4],[3400,4],[3465,4],[4540,4]]},"135":{"position":[[1996,4]]},"138":{"position":[[2468,4]]},"139":{"position":[[7625,4]]},"140":{"position":[[6523,4]]},"142":{"position":[[2222,4],[6256,4]]},"145":{"position":[[2079,5]]},"147":{"position":[[11154,4]]},"148":{"position":[[12378,4]]}}}],["boundari",{"_index":2844,"t":{},"d":{},"k":{},"b":{"77":{"position":[[3275,9]]},"106":{"position":[[21806,9],[22598,9]]},"139":{"position":[[19586,8],[20148,9],[20831,8],[21379,9]]},"140":{"position":[[18072,8],[19003,8]]},"150":{"position":[[23436,9]]}}}],["box",{"_index":985,"t":{},"d":{},"k":{},"b":{"69":{"position":[[4550,3]]},"77":{"position":[[1950,4]]},"136":{"position":[[4601,4]]},"138":{"position":[[3001,4]]},"139":{"position":[[2715,4]]},"142":{"position":[[2862,4]]}}}],["bp",{"_index":7282,"t":{},"d":{},"k":{},"b":{"139":{"position":[[25140,6]]},"140":{"position":[[23089,6]]},"147":{"position":[[7240,4]]}}}],["bps)must",{"_index":2318,"t":{},"d":{},"k":{},"b":{"75":{"position":[[12046,9],[12183,9]]}}}],["br",{"_index":2406,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20459,5],[29533,5],[35250,5]]}}}],["brdv",{"_index":6834,"t":{},"d":{},"k":{},"b":{"135":{"position":[[12149,5],[12158,4],[22100,4],[22176,4],[22597,4]]},"142":{"position":[[13310,5],[13319,4],[23889,4],[24347,4]]}}}],["breach",{"_index":68,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1211,7]]}}}],["break",{"_index":2469,"t":{},"d":{},"k":{},"b":{"75":{"position":[[27333,6],[27468,6],[27823,6],[27875,6]]},"80":{"position":[[1806,5],[11142,5]]},"81":{"position":[[2796,5]]},"88":{"position":[[25733,6],[25894,6],[26029,6],[26276,6],[26328,6],[28466,6],[29082,6],[29514,6],[29951,6],[30003,6],[32925,6],[33172,6],[33224,6],[34600,6],[35055,6],[35400,6],[35484,6],[35566,6],[36629,6],[36681,6],[38097,6],[38149,6],[39352,6],[39404,6]]},"113":{"position":[[4204,5]]},"131":{"position":[[12650,6],[12798,6],[12956,6],[13028,6]]},"139":{"position":[[11369,6],[11506,6],[11645,6]]},"140":{"position":[[5680,5],[8738,6],[8875,6],[9014,6],[11186,5],[11234,5]]},"146":{"position":[[14666,6]]},"147":{"position":[[10259,5]]}}}],["breakpoint",{"_index":1965,"t":{},"d":{},"k":{},"b":{"71":{"position":[[29507,13],[32082,13]]},"148":{"position":[[4686,10]]}}}],["brefer",{"_index":978,"t":{},"d":{},"k":{},"b":{"69":{"position":[[3566,6]]}}}],["brh_valu",{"_index":5959,"t":{},"d":{},"k":{},"b":{"124":{"position":[[12673,9]]}}}],["bri",{"_index":7320,"t":{},"d":{},"k":{},"b":{"140":{"position":[[5610,5],[5706,5]]}}}],["bri_ipl",{"_index":7348,"t":{},"d":{},"k":{},"b":{"140":{"position":[[11177,7]]}}}],["bri_irq",{"_index":7349,"t":{},"d":{},"k":{},"b":{"140":{"position":[[11225,7]]}}}],["bring",{"_index":1773,"t":{},"d":{},"k":{},"b":{"71":{"position":[[4785,8]]},"138":{"position":[[7297,8]]}}}],["brl_valu",{"_index":5960,"t":{},"d":{},"k":{},"b":{"124":{"position":[[12727,9]]},"125":{"position":[[13509,9],[13626,10]]}}}],["broadcast",{"_index":3921,"t":{},"d":{},"k":{},"b":{"87":{"position":[[10531,9]]},"88":{"position":[[38387,9],[39038,9],[56775,9]]}}}],["broken",{"_index":3203,"t":{},"d":{},"k":{},"b":{"80":{"position":[[11238,6]]}}}],["brr",{"_index":7345,"t":{},"d":{},"k":{},"b":{"140":{"position":[[10556,3]]}}}],["brr_valu",{"_index":7113,"t":{},"d":{},"k":{},"b":{"138":{"position":[[11890,9]]}}}],["bsp",{"_index":216,"t":{"55":{"position":[[45,3]]},"70":{"position":[[45,3]]},"111":{"position":[[45,3]]}},"d":{},"k":{},"b":{"62":{"position":[[26,3]]},"68":{"position":[[2757,5],[2791,5]]},"69":{"position":[[2222,5],[2256,5]]},"71":{"position":[[1060,3],[1181,3],[1276,3],[1291,3],[1409,3],[1667,3],[1681,3],[1741,3],[2036,3],[2117,3],[3386,3],[3428,3],[3557,3],[3876,3],[3984,3],[4760,3],[5431,3],[5706,3],[5849,3],[6726,3],[9158,3],[9284,3],[10839,3],[10940,6],[11602,3],[31047,3],[33622,3],[36425,4],[37176,4],[43685,3],[46072,3],[46273,3]]},"75":{"position":[[10874,5],[10908,5]]},"76":{"position":[[1987,5],[2021,5]]},"77":{"position":[[1546,5],[1580,5]]},"79":{"position":[[1907,5],[1941,5],[16959,4]]},"80":{"position":[[3992,5],[4026,5]]},"83":{"position":[[4351,5],[4385,5]]},"84":{"position":[[2422,5],[2456,5]]},"88":{"position":[[6920,5],[6954,5]]},"89":{"position":[[1746,5],[1780,5]]},"90":{"position":[[1694,5],[1728,5]]},"91":{"position":[[1747,5],[1781,5]]},"92":{"position":[[2776,5],[2810,5]]},"105":{"position":[[4094,5],[4128,5]]},"106":{"position":[[1226,5],[1260,5]]},"108":{"position":[[1341,5],[1375,5]]},"111":{"position":[[122,3],[243,3],[339,3]]},"113":{"position":[[2610,4]]},"124":{"position":[[2157,5],[2191,5]]},"125":{"position":[[1639,5],[1673,5]]},"127":{"position":[[1718,5],[1752,5]]},"129":{"position":[[3299,5],[3333,5]]},"131":{"position":[[2974,5],[3008,5]]},"133":{"position":[[6190,5],[6224,5]]},"135":{"position":[[1795,5],[1829,5]]},"136":{"position":[[4183,5],[4217,5]]},"138":{"position":[[2235,5],[2269,5]]},"139":{"position":[[1999,5],[2033,5]]},"140":{"position":[[1966,5],[2000,5]]},"142":{"position":[[1995,5],[2029,5]]},"146":{"position":[[1871,5],[1905,5]]},"148":{"position":[[1692,5],[1726,5]]},"150":{"position":[[2241,5],[2275,5]]},"151":{"position":[[1106,5]]},"152":{"position":[[201,3],[322,3],[429,3]]}}}],["bsp_align_vari",{"_index":4280,"t":{},"d":{},"k":{},"b":{"88":{"position":[[44663,18]]}}}],["bsp_bypass_freq_range_12mhz",{"_index":1652,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13451,27]]}}}],["bsp_bypass_freq_range_24mhz",{"_index":1655,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13521,27]]}}}],["bsp_bypass_freq_range_48mhz",{"_index":1658,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13592,27]]}}}],["bsp_bypass_freq_range_t",{"_index":1312,"t":{},"d":{},"k":{},"b":{"70":{"position":[[1040,23],[1651,23],[13228,23],[13286,23],[17736,23]]}}}],["bsp_bypass_mode_external_clk",{"_index":1645,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13087,28]]}}}],["bsp_bypass_mode_power_down",{"_index":1646,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13161,26]]}}}],["bsp_bypass_mode_t",{"_index":1311,"t":{},"d":{},"k":{},"b":{"70":{"position":[[1016,17],[1624,17],[12893,17],[12945,17],[17650,17]]}}}],["bsp_bypass_oscillator_audio",{"_index":1639,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12776,27]]}}}],["bsp_bypass_oscillator_emclk",{"_index":1641,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12831,27]]}}}],["bsp_bypass_oscillator_t",{"_index":1309,"t":{},"d":{},"k":{},"b":{"70":{"position":[[979,24],[1591,23],[12574,23],[12632,23],[17552,23]]}}}],["bsp_cfg_handle_unrecoverable_error",{"_index":1974,"t":{},"d":{},"k":{},"b":{"71":{"position":[[30826,34],[30904,34],[31210,34],[33401,34],[33479,34],[33785,34]]}}}],["bsp_cfg_handle_unrecoverable_error(x",{"_index":1921,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13806,37],[14128,37]]}}}],["bsp_cfg_irq_mask_level_for_critical_sect",{"_index":1831,"t":{},"d":{},"k":{},"b":{"71":{"position":[[8556,43],[8676,43],[8945,44]]}}}],["bsp_cfg_rto",{"_index":6094,"t":{},"d":{},"k":{},"b":{"127":{"position":[[4462,12],[4599,12],[4845,12],[5314,12],[5543,12]]},"129":{"position":[[6087,12],[6224,12],[6470,12],[6939,12],[7168,12]]},"131":{"position":[[10346,12],[10483,12],[10729,12],[11198,12],[11427,12]]},"133":{"position":[[11788,12],[11925,12],[12171,12],[12640,12],[12869,12],[15922,12],[16059,12],[16305,12],[16774,12],[17003,12],[20226,12],[20363,12],[20609,12],[21078,12],[21307,12],[25240,12],[25377,12],[25623,12],[26092,12],[26321,12],[31393,12],[31530,12],[31776,12],[32245,12],[32474,12],[35508,12],[35645,12],[35891,12],[36360,12],[36589,12],[39813,12],[39950,12],[40196,12],[40665,12],[40894,12],[44065,12],[44202,12],[44448,12],[44917,12],[45146,12]]}}}],["bsp_clock_cfg.h",{"_index":1719,"t":{},"d":{},"k":{},"b":{"71":{"position":[[1785,16]]}}}],["bsp_delay_units_microsecond",{"_index":1826,"t":{},"d":{},"k":{},"b":{"71":{"position":[[8190,28],[35977,28],[45131,29]]},"129":{"position":[[7906,30]]},"135":{"position":[[10432,30]]},"142":{"position":[[11450,30]]}}}],["bsp_delay_units_millisecond",{"_index":1825,"t":{},"d":{},"k":{},"b":{"71":{"position":[[8150,29],[35903,28],[45101,29]]},"92":{"position":[[14711,30]]},"124":{"position":[[8846,30],[9451,30],[11315,30],[12072,30]]},"125":{"position":[[11883,30],[12813,30]]},"129":{"position":[[8390,30],[8799,30]]},"131":{"position":[[12604,30],[12910,30]]},"133":{"position":[[13335,30],[13472,30],[13610,30],[14680,30],[17469,30],[17606,30],[17744,30],[18846,30],[19605,30],[21773,30],[21910,30],[22048,30],[23741,30],[24500,30],[26787,30],[26924,30],[27062,30],[27733,30],[28997,30],[30796,30],[32940,30],[33077,30],[33215,30],[34285,30],[37055,30],[37192,30],[37330,30],[38432,30],[39192,30],[41360,30],[41497,30],[41635,30],[42737,30],[45612,30],[45749,30],[45887,30],[46491,30],[47699,30]]},"138":{"position":[[8733,30],[9345,30],[10526,30],[11313,30]]}}}],["bsp_delay_units_second",{"_index":1110,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18462,25]]},"71":{"position":[[8125,24],[8290,25],[45076,24]]},"129":{"position":[[10061,25]]},"131":{"position":[[12757,25]]}}}],["bsp_delay_units_t",{"_index":1702,"t":{},"d":{},"k":{},"b":{"71":{"position":[[798,17],[14237,17],[35626,17],[35678,17],[44121,17],[45013,19]]}}}],["bsp_ethernet_channel_1",{"_index":1608,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10749,22]]}}}],["bsp_ethernet_channel_t",{"_index":1294,"t":{},"d":{},"k":{},"b":{"70":{"position":[[415,23],[779,23],[1365,22],[10549,22],[10606,22],[15636,22],[16846,22]]}}}],["bsp_ethernet_mode_mii",{"_index":1631,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12273,21]]}}}],["bsp_ethernet_mode_t",{"_index":1295,"t":{},"d":{},"k":{},"b":{"70":{"position":[[448,19],[1538,19],[12082,19],[12136,19],[15730,19]]}}}],["bsp_ethernet_voltage_18",{"_index":1622,"t":{},"d":{},"k":{},"b":{"70":{"position":[[11739,23]]}}}],["bsp_ethernet_voltage_25",{"_index":1623,"t":{},"d":{},"k":{},"b":{"70":{"position":[[11795,23]]}}}],["bsp_ethernet_voltage_t",{"_index":1304,"t":{},"d":{},"k":{},"b":{"70":{"position":[[812,22],[1479,22],[11543,22],[11600,22],[16940,22]]}}}],["bsp_feature_bsp_delay_loop_cycl",{"_index":2078,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44894,34]]}}}],["bsp_feature_xspi_start_address;void",{"_index":8182,"t":{},"d":{},"k":{},"b":{"150":{"position":[[7417,35]]}}}],["bsp_grp_irq_t",{"_index":1704,"t":{},"d":{},"k":{},"b":{"71":{"position":[[855,14],[14264,13],[36058,13],[36106,13],[46404,13]]}}}],["bsp_i3c_mode_nor",{"_index":1635,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12515,16]]}}}],["bsp_i3c_mode_t",{"_index":1307,"t":{},"d":{},"k":{},"b":{"70":{"position":[[915,14],[1567,14],[12334,14],[12383,14],[17305,14]]}}}],["bsp_i3c_voltage_12",{"_index":1626,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12029,18]]}}}],["bsp_i3c_voltage_t",{"_index":1306,"t":{},"d":{},"k":{},"b":{"70":{"position":[[887,18],[1511,17],[11858,17],[11910,17],[17216,17]]}}}],["bsp_init",{"_index":1841,"t":{},"d":{},"k":{},"b":{"71":{"position":[[9208,10]]}}}],["bsp_io_audio_clk1",{"_index":1525,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9129,17]]}}}],["bsp_io_audio_clk2",{"_index":1527,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9161,17]]}}}],["bsp_io_direction_input",{"_index":1324,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2074,22]]},"92":{"position":[[15828,24]]}}}],["bsp_io_direction_output",{"_index":1325,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2106,23]]},"92":{"position":[[14149,25]]}}}],["bsp_io_direction_output_with_input_en",{"_index":1326,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2155,41]]}}}],["bsp_io_direction_t",{"_index":1316,"t":{},"d":{},"k":{},"b":{"70":{"position":[[1261,18],[1915,18],[1968,18]]}}}],["bsp_io_level_high",{"_index":1320,"t":{},"d":{},"k":{},"b":{"70":{"position":[[1882,17]]},"92":{"position":[[13405,19],[14375,18]]},"133":{"position":[[13288,19],[13563,19],[17422,19],[17697,19],[21726,19],[22001,19],[26740,19],[27015,19],[32893,19],[33168,19],[37008,19],[37283,19],[41313,19],[41588,19],[45565,19],[45840,19]]},"135":{"position":[[9477,19],[9575,19],[10307,19],[10963,20]]},"142":{"position":[[10478,19],[10576,19],[11325,19],[11990,20]]}}}],["bsp_io_level_low",{"_index":4517,"t":{},"d":{},"k":{},"b":{"92":{"position":[[14223,17],[14319,17],[14443,17],[16103,17]]},"133":{"position":[[13426,18],[17560,18],[21864,18],[26878,18],[33031,18],[37146,18],[41451,18],[45703,18]]},"135":{"position":[[9882,18],[10538,18]]},"142":{"position":[[10891,18],[11556,18]]}}}],["bsp_io_level_t",{"_index":1288,"t":{},"d":{},"k":{},"b":{"70":{"position":[[138,14],[1237,14],[1713,14],[1762,14],[14187,14]]},"92":{"position":[[424,14],[547,14],[655,14],[767,14],[12758,14],[14200,14],[15028,14],[31605,14],[32636,14],[33604,14],[34244,14]]},"93":{"position":[[1875,14],[1992,14],[2094,14],[2200,14],[4314,14],[4735,14],[5109,14],[5449,14]]}}}],["bsp_io_nmi",{"_index":1519,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9063,10]]}}}],["bsp_io_port_00_pin_01",{"_index":1397,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3961,21]]}}}],["bsp_io_port_00_pin_01#defin",{"_index":4369,"t":{},"d":{},"k":{},"b":{"89":{"position":[[3295,28]]}}}],["bsp_io_port_00_pin_03#defin",{"_index":4406,"t":{},"d":{},"k":{},"b":{"91":{"position":[[3376,28]]}}}],["bsp_io_port_01",{"_index":1330,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2387,14]]}}}],["bsp_io_port_01_pin_00",{"_index":1398,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4002,21]]}}}],["bsp_io_port_01_pin_01",{"_index":1399,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4043,21]]}}}],["bsp_io_port_02",{"_index":1331,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2415,14]]}}}],["bsp_io_port_02_pin_00",{"_index":1400,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4084,21]]},"92":{"position":[[16126,21]]}}}],["bsp_io_port_02_pin_01",{"_index":1401,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4125,21]]}}}],["bsp_io_port_03",{"_index":1332,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2443,14]]}}}],["bsp_io_port_03_pin_00",{"_index":1402,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4166,21]]}}}],["bsp_io_port_03_pin_01",{"_index":1403,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4207,21]]}}}],["bsp_io_port_04",{"_index":1333,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2471,14]]}}}],["bsp_io_port_04_pin_00",{"_index":1404,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4248,21]]}}}],["bsp_io_port_04_pin_01",{"_index":1405,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4289,21]]}}}],["bsp_io_port_05",{"_index":1334,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2499,14]]}}}],["bsp_io_port_05_pin_00",{"_index":1406,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4330,21]]}}}],["bsp_io_port_05_pin_01",{"_index":1407,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4371,21]]}}}],["bsp_io_port_05_pin_02",{"_index":1408,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4412,21]]}}}],["bsp_io_port_06",{"_index":1335,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2527,14]]}}}],["bsp_io_port_06_pin_00",{"_index":1409,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4453,21]]},"92":{"position":[[15805,22],[16235,22]]}}}],["bsp_io_port_06_pin_01",{"_index":1410,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4494,21]]}}}],["bsp_io_port_07",{"_index":1336,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2555,14]]}}}],["bsp_io_port_07_pin_00",{"_index":1411,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4535,21]]}}}],["bsp_io_port_07_pin_01",{"_index":1412,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4576,21]]}}}],["bsp_io_port_07_pin_02",{"_index":1413,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4617,21]]}}}],["bsp_io_port_08",{"_index":1337,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2583,14]]}}}],["bsp_io_port_08_pin_00",{"_index":1414,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4658,21]]}}}],["bsp_io_port_08_pin_01",{"_index":1415,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4699,21]]}}}],["bsp_io_port_08_pin_02",{"_index":1416,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4740,21]]}}}],["bsp_io_port_09",{"_index":1338,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2611,14]]}}}],["bsp_io_port_09_pin_00",{"_index":1417,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4781,21]]}}}],["bsp_io_port_09_pin_01",{"_index":1418,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4822,21]]}}}],["bsp_io_port_10",{"_index":1339,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2639,14]]}}}],["bsp_io_port_10_pin_00",{"_index":1419,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4863,21]]},"92":{"position":[[13382,22],[13521,22],[14126,22],[14596,22]]}}}],["bsp_io_port_10_pin_01",{"_index":1420,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4905,21]]}}}],["bsp_io_port_11",{"_index":1340,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2668,14]]}}}],["bsp_io_port_11_pin_00",{"_index":1421,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4947,21]]}}}],["bsp_io_port_11_pin_01",{"_index":1422,"t":{},"d":{},"k":{},"b":{"70":{"position":[[4989,21]]}}}],["bsp_io_port_12",{"_index":1341,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2697,14]]}}}],["bsp_io_port_12_pin_00",{"_index":1423,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5031,21]]}}}],["bsp_io_port_12_pin_01",{"_index":1424,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5073,21]]}}}],["bsp_io_port_13",{"_index":1342,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2726,14]]}}}],["bsp_io_port_13_pin_00",{"_index":1425,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5115,21]]}}}],["bsp_io_port_13_pin_01",{"_index":1426,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5157,21]]}}}],["bsp_io_port_13_pin_02",{"_index":1427,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5199,21]]}}}],["bsp_io_port_14",{"_index":1343,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2755,14]]}}}],["bsp_io_port_14_pin_00",{"_index":1428,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5241,21]]}}}],["bsp_io_port_14_pin_01",{"_index":1429,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5283,21]]}}}],["bsp_io_port_15",{"_index":1344,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2784,14]]}}}],["bsp_io_port_15_pin_00",{"_index":1430,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5325,21]]}}}],["bsp_io_port_15_pin_01",{"_index":1431,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5367,21]]}}}],["bsp_io_port_16",{"_index":1345,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2813,14]]}}}],["bsp_io_port_16_pin_00",{"_index":1432,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5409,21]]}}}],["bsp_io_port_16_pin_01",{"_index":1433,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5451,21]]}}}],["bsp_io_port_17",{"_index":1346,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2842,14]]}}}],["bsp_io_port_17_pin_00",{"_index":1434,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5493,21]]}}}],["bsp_io_port_17_pin_01",{"_index":1435,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5535,21]]}}}],["bsp_io_port_17_pin_02",{"_index":1436,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5577,21]]}}}],["bsp_io_port_18",{"_index":1347,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2871,14]]}}}],["bsp_io_port_18_pin_00",{"_index":1437,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5619,21]]}}}],["bsp_io_port_18_pin_01",{"_index":1438,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5661,21]]}}}],["bsp_io_port_19",{"_index":1348,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2900,14]]}}}],["bsp_io_port_19_pin_00",{"_index":1439,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5703,21]]}}}],["bsp_io_port_19_pin_01",{"_index":1440,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5745,21]]}}}],["bsp_io_port_20",{"_index":1349,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2929,14]]}}}],["bsp_io_port_20_pin_00",{"_index":1441,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5787,21]]}}}],["bsp_io_port_20_pin_01",{"_index":1442,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5829,21]]}}}],["bsp_io_port_20_pin_02",{"_index":1443,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5871,21]]}}}],["bsp_io_port_21",{"_index":1350,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2958,14]]}}}],["bsp_io_port_21_pin_00",{"_index":1444,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5913,21]]}}}],["bsp_io_port_21_pin_01",{"_index":1445,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5955,21]]}}}],["bsp_io_port_22",{"_index":1351,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2987,14]]}}}],["bsp_io_port_22_pin_00",{"_index":1446,"t":{},"d":{},"k":{},"b":{"70":{"position":[[5997,21]]}}}],["bsp_io_port_22_pin_01",{"_index":1447,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6039,21]]}}}],["bsp_io_port_23",{"_index":1352,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3016,14]]}}}],["bsp_io_port_23_pin_00",{"_index":1448,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6081,21]]}}}],["bsp_io_port_23_pin_01",{"_index":1449,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6123,21]]}}}],["bsp_io_port_24",{"_index":1353,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3045,14]]}}}],["bsp_io_port_24_pin_00",{"_index":1450,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6165,21]]}}}],["bsp_io_port_24_pin_01",{"_index":1451,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6207,21]]}}}],["bsp_io_port_25",{"_index":1354,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3074,14]]}}}],["bsp_io_port_25_pin_00",{"_index":1452,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6249,21]]}}}],["bsp_io_port_25_pin_01",{"_index":1453,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6291,21]]}}}],["bsp_io_port_26",{"_index":1355,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3103,14]]}}}],["bsp_io_port_26_pin_00",{"_index":1454,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6333,21]]}}}],["bsp_io_port_26_pin_01",{"_index":1455,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6375,21]]}}}],["bsp_io_port_27",{"_index":1356,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3132,14]]}}}],["bsp_io_port_27_pin_00",{"_index":1456,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6417,21]]}}}],["bsp_io_port_27_pin_01",{"_index":1457,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6459,21]]}}}],["bsp_io_port_28",{"_index":1357,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3161,14]]}}}],["bsp_io_port_28_pin_00",{"_index":1458,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6501,21]]}}}],["bsp_io_port_28_pin_01",{"_index":1459,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6543,21]]}}}],["bsp_io_port_29",{"_index":1358,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3190,14]]}}}],["bsp_io_port_29_pin_00",{"_index":1460,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6585,21]]}}}],["bsp_io_port_29_pin_01",{"_index":1461,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6627,21]]}}}],["bsp_io_port_30",{"_index":1360,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3219,14]]}}}],["bsp_io_port_30_pin_00",{"_index":1462,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6669,21]]}}}],["bsp_io_port_30_pin_01",{"_index":1463,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6711,21]]}}}],["bsp_io_port_31",{"_index":1362,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3248,14]]}}}],["bsp_io_port_31_pin_00",{"_index":1464,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6753,21]]}}}],["bsp_io_port_31_pin_01",{"_index":1465,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6795,21]]}}}],["bsp_io_port_32",{"_index":1364,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3277,14]]}}}],["bsp_io_port_32_pin_00",{"_index":1466,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6837,21]]}}}],["bsp_io_port_32_pin_01",{"_index":1467,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6879,21]]}}}],["bsp_io_port_33",{"_index":1365,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3306,14]]}}}],["bsp_io_port_33_pin_00",{"_index":1468,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6921,21]]}}}],["bsp_io_port_33_pin_01",{"_index":1469,"t":{},"d":{},"k":{},"b":{"70":{"position":[[6963,21]]}}}],["bsp_io_port_34",{"_index":1367,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3335,14]]}}}],["bsp_io_port_34_pin_00",{"_index":1470,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7005,21]]}}}],["bsp_io_port_34_pin_01",{"_index":1471,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7047,21]]}}}],["bsp_io_port_35",{"_index":1369,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3364,14]]}}}],["bsp_io_port_35_pin_00",{"_index":1472,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7089,21]]}}}],["bsp_io_port_35_pin_01",{"_index":1473,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7131,21]]}}}],["bsp_io_port_36",{"_index":1371,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3393,14]]}}}],["bsp_io_port_36_pin_00",{"_index":1474,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7173,21]]}}}],["bsp_io_port_36_pin_01",{"_index":1475,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7215,21]]}}}],["bsp_io_port_37",{"_index":1373,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3422,14]]}}}],["bsp_io_port_37_pin_00",{"_index":1476,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7257,21]]}}}],["bsp_io_port_37_pin_01",{"_index":1477,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7299,21]]}}}],["bsp_io_port_37_pin_02",{"_index":1478,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7341,21]]}}}],["bsp_io_port_38",{"_index":1375,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3451,14]]}}}],["bsp_io_port_38_pin_00",{"_index":1479,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7383,21]]}}}],["bsp_io_port_38_pin_01",{"_index":1480,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7425,21]]}}}],["bsp_io_port_39",{"_index":1377,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3480,14]]}}}],["bsp_io_port_39_pin_00",{"_index":1481,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7467,21]]}}}],["bsp_io_port_39_pin_01",{"_index":1482,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7509,21]]}}}],["bsp_io_port_39_pin_02",{"_index":1483,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7551,21]]}}}],["bsp_io_port_40",{"_index":1379,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3509,14]]}}}],["bsp_io_port_40_pin_00",{"_index":1484,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7593,21]]}}}],["bsp_io_port_40_pin_01",{"_index":1485,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7635,21]]}}}],["bsp_io_port_40_pin_02",{"_index":1486,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7677,21]]}}}],["bsp_io_port_41",{"_index":1380,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3538,14]]}}}],["bsp_io_port_41_pin_00",{"_index":1487,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7719,21]]}}}],["bsp_io_port_41_pin_01",{"_index":1488,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7761,21]]}}}],["bsp_io_port_42",{"_index":1382,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3567,14]]}}}],["bsp_io_port_42_pin_00",{"_index":1489,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7803,21]]}}}],["bsp_io_port_42_pin_01",{"_index":1490,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7845,21]]}}}],["bsp_io_port_42_pin_02",{"_index":1491,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7887,21]]}}}],["bsp_io_port_42_pin_03",{"_index":1492,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7929,21]]}}}],["bsp_io_port_42_pin_04",{"_index":1493,"t":{},"d":{},"k":{},"b":{"70":{"position":[[7971,21]]}}}],["bsp_io_port_43",{"_index":1384,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3596,14]]}}}],["bsp_io_port_43_pin_00",{"_index":1494,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8013,21]]}}}],["bsp_io_port_43_pin_01",{"_index":1495,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8055,21]]}}}],["bsp_io_port_43_pin_02",{"_index":1496,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8097,21]]}}}],["bsp_io_port_43_pin_03",{"_index":1497,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8139,21]]}}}],["bsp_io_port_44",{"_index":1386,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3625,14]]}}}],["bsp_io_port_44_pin_00",{"_index":1498,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8181,21]]}}}],["bsp_io_port_44_pin_01",{"_index":1499,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8223,21]]}}}],["bsp_io_port_44_pin_02",{"_index":1500,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8265,21]]}}}],["bsp_io_port_44_pin_03",{"_index":1501,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8307,21]]}}}],["bsp_io_port_45",{"_index":1388,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3654,14]]}}}],["bsp_io_port_45_pin_00",{"_index":1502,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8349,21]]}}}],["bsp_io_port_45_pin_01",{"_index":1503,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8391,21]]}}}],["bsp_io_port_45_pin_02",{"_index":1504,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8433,21]]}}}],["bsp_io_port_45_pin_03",{"_index":1505,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8475,21]]}}}],["bsp_io_port_46",{"_index":1390,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3683,14]]}}}],["bsp_io_port_46_pin_00",{"_index":1506,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8517,21]]}}}],["bsp_io_port_46_pin_01",{"_index":1507,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8559,21]]}}}],["bsp_io_port_46_pin_02",{"_index":1508,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8601,21]]}}}],["bsp_io_port_46_pin_03",{"_index":1509,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8643,21]]}}}],["bsp_io_port_47",{"_index":1392,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3712,14]]}}}],["bsp_io_port_47_pin_00",{"_index":1510,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8685,21]]}}}],["bsp_io_port_47_pin_01",{"_index":1511,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8727,21]]}}}],["bsp_io_port_47_pin_02",{"_index":1512,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8769,21]]}}}],["bsp_io_port_47_pin_03",{"_index":1513,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8811,21]]}}}],["bsp_io_port_48",{"_index":1394,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3741,14]]}}}],["bsp_io_port_48_pin_00",{"_index":1514,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8853,21]]},"133":{"position":[[13265,22],[13403,22],[13540,22],[17399,22],[17537,22],[17674,22],[21703,22],[21841,22],[21978,22],[26717,22],[26855,22],[26992,22],[32870,22],[33008,22],[33145,22],[36985,22],[37123,22],[37260,22],[41290,22],[41428,22],[41565,22],[45542,22],[45680,22],[45817,22]]}}}],["bsp_io_port_48_pin_01",{"_index":1515,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8895,21]]}}}],["bsp_io_port_48_pin_02",{"_index":1516,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8937,21]]}}}],["bsp_io_port_48_pin_03",{"_index":1517,"t":{},"d":{},"k":{},"b":{"70":{"position":[[8979,21]]}}}],["bsp_io_port_48_pin_04",{"_index":1518,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9021,21]]}}}],["bsp_io_port_pin_t",{"_index":1286,"t":{},"d":{},"k":{},"b":{"70":{"position":[[52,18],[114,18],[1312,17],[3777,17],[3829,17],[13800,17],[14102,17]]},"92":{"position":[[295,17],[401,17],[524,17],[632,17],[744,17],[30534,17],[31520,17],[32551,17],[33519,17],[34159,17]]},"93":{"position":[[854,17],[1752,17],[1852,17],[1969,17],[2071,17],[2177,17],[3934,17],[4291,17],[4712,17],[5086,17],[5426,17]]},"139":{"position":[[14735,17]]},"140":{"position":[[10949,17]]}}}],["bsp_io_port_t",{"_index":1317,"t":{},"d":{},"k":{},"b":{"70":{"position":[[1289,13],[2228,13],[2276,13]]},"92":{"position":[[857,13],[999,13],[1118,13],[1250,13],[1360,13],[34888,13],[36162,13],[37358,13],[38724,13],[39587,13]]},"93":{"position":[[2284,13],[2420,13],[2535,13],[2661,13],[2765,13],[5786,13],[6378,13],[6770,13],[7316,13],[7682,13]]}}}],["bsp_io_qspi0_io0",{"_index":1565,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9721,16]]}}}],["bsp_io_qspi0_io1",{"_index":1567,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9751,16]]}}}],["bsp_io_qspi0_io2",{"_index":1569,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9781,16]]}}}],["bsp_io_qspi0_io3",{"_index":1571,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9811,16]]}}}],["bsp_io_qspi0_spclk",{"_index":1563,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9687,18]]}}}],["bsp_io_qspi0_ssl",{"_index":1573,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9841,16]]}}}],["bsp_io_qspi1_io0",{"_index":1577,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9905,16]]}}}],["bsp_io_qspi1_io1",{"_index":1579,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9935,16]]}}}],["bsp_io_qspi1_io2",{"_index":1581,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9965,16]]}}}],["bsp_io_qspi1_io3",{"_index":1583,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9995,16]]}}}],["bsp_io_qspi1_spclk",{"_index":1575,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9871,18]]}}}],["bsp_io_qspi1_ssl",{"_index":1585,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10025,16]]}}}],["bsp_io_qspi_int_n",{"_index":1591,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10121,17]]}}}],["bsp_io_qspi_reset_n",{"_index":1587,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10055,19]]}}}],["bsp_io_qspi_wp_n",{"_index":1589,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10091,16]]}}}],["bsp_io_riic0_scl",{"_index":1597,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10227,16]]}}}],["bsp_io_riic0_sda",{"_index":1595,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10197,16]]}}}],["bsp_io_riic1_scl",{"_index":1601,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10287,16]]}}}],["bsp_io_riic1_sda",{"_index":1599,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10257,16]]}}}],["bsp_io_sd0_clk",{"_index":1529,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9193,14]]}}}],["bsp_io_sd0_cmd",{"_index":1531,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9219,14]]}}}],["bsp_io_sd0_data0",{"_index":1535,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9275,16]]}}}],["bsp_io_sd0_data1",{"_index":1537,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9305,16]]}}}],["bsp_io_sd0_data2",{"_index":1539,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9335,16]]}}}],["bsp_io_sd0_data3",{"_index":1541,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9365,16]]}}}],["bsp_io_sd0_data4",{"_index":1543,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9395,16]]}}}],["bsp_io_sd0_data5",{"_index":1545,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9425,16]]}}}],["bsp_io_sd0_data6",{"_index":1547,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9455,16]]}}}],["bsp_io_sd0_data7",{"_index":1549,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9485,16]]}}}],["bsp_io_sd0_rst_n",{"_index":1533,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9245,16]]}}}],["bsp_io_sd1_clk",{"_index":1551,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9515,14]]}}}],["bsp_io_sd1_cmd",{"_index":1553,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9541,14]]}}}],["bsp_io_sd1_data0",{"_index":1555,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9567,16]]}}}],["bsp_io_sd1_data1",{"_index":1557,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9597,16]]}}}],["bsp_io_sd1_data2",{"_index":1559,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9627,16]]}}}],["bsp_io_sd1_data3",{"_index":1561,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9657,16]]}}}],["bsp_io_tdo",{"_index":1523,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9111,10]]}}}],["bsp_io_tms_swdio",{"_index":1521,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9081,16]]}}}],["bsp_io_wdtovf_perrout_n",{"_index":1593,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10153,23]]}}}],["bsp_irq_dis",{"_index":1916,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13562,16],[13884,16],[28874,16],[28934,16],[31449,16],[31509,16]]}}}],["bsp_prv_software_delay_loop",{"_index":2068,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44510,29],[44605,29],[45192,29],[45719,29]]}}}],["bsp_qspi_voltage_18",{"_index":1615,"t":{},"d":{},"k":{},"b":{"70":{"position":[[11209,19]]}}}],["bsp_qspi_voltage_t",{"_index":1300,"t":{},"d":{},"k":{},"b":{"70":{"position":[[621,19],[1423,18],[11033,18],[11086,18],[16364,18]]}}}],["bsp_sd_channel_1",{"_index":1605,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10494,16]]}}}],["bsp_sd_channel_t",{"_index":1297,"t":{},"d":{},"k":{},"b":{"70":{"position":[[520,17],[1339,16],[10324,16],[10375,16],[16002,16]]}}}],["bsp_sd_voltage_18",{"_index":1611,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10982,17]]}}}],["bsp_sd_voltage_t",{"_index":1298,"t":{},"d":{},"k":{},"b":{"70":{"position":[[547,16],[1397,16],[10816,16],[10867,16],[16090,16]]}}}],["bsp_stack_align",{"_index":1922,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13854,19],[14176,19],[31259,19],[31322,19],[33834,19],[33897,19]]}}}],["bsp_startup_p0clk_hz",{"_index":4921,"t":{},"d":{},"k":{},"b":{"105":{"position":[[14400,20],[31039,20]]}}}],["bsp_unique_id_t",{"_index":1707,"t":{},"d":{},"k":{},"b":{"71":{"position":[[986,15],[47336,15]]}}}],["bsp_vector_irq_riic3_rxi",{"_index":5914,"t":{},"d":{},"k":{},"b":{"124":{"position":[[7695,25],[10429,25]]}}}],["bsp_vector_irq_riic3_tei",{"_index":5916,"t":{},"d":{},"k":{},"b":{"124":{"position":[[7787,25],[10521,25]]}}}],["bsp_vector_irq_riic3_txi",{"_index":5915,"t":{},"d":{},"k":{},"b":{"124":{"position":[[7741,25],[10475,25]]}}}],["bsp_warm_start_event_t",{"_index":1684,"t":{},"d":{},"k":{},"b":{"71":{"position":[[340,23],[5258,22],[14287,22],[14319,22],[36278,22],[36341,22],[37029,22],[37092,22],[39827,22]]}}}],["bsp_warm_start_post_c",{"_index":2025,"t":{},"d":{},"k":{},"b":{"71":{"position":[[36644,21],[36934,21],[37395,21],[37685,21]]}}}],["bsp_warm_start_post_clock",{"_index":1875,"t":{},"d":{},"k":{},"b":{"71":{"position":[[11642,25],[36547,25],[36837,25],[37298,25],[37588,25]]}}}],["bsp_warm_start_reset",{"_index":2026,"t":{},"d":{},"k":{},"b":{"71":{"position":[[36732,20],[37483,20]]}}}],["bsp_xspi_voltage_18",{"_index":1618,"t":{},"d":{},"k":{},"b":{"70":{"position":[[11440,19]]}}}],["bsp_xspi_voltage_25",{"_index":1619,"t":{},"d":{},"k":{},"b":{"70":{"position":[[11488,19]]}}}],["bsp_xspi_voltage_t",{"_index":1302,"t":{},"d":{},"k":{},"b":{"70":{"position":[[698,19],[1451,18],[11264,18],[11317,18],[16601,18]]}}}],["bspcommon",{"_index":8338,"t":{},"d":{},"k":{},"b":{"152":{"position":[[111,10]]}}}],["bu",{"_index":1740,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2826,3],[11769,3],[34397,3],[34964,3],[35544,3],[41715,3]]},"74":{"position":[[8082,3],[8122,3],[8230,3],[9363,3]]},"75":{"position":[[1904,3],[1942,3],[1956,3],[1982,3],[13849,3],[22311,4],[24096,4],[24191,4],[24259,3],[28596,3],[30046,3],[30226,3],[30295,3],[30372,3],[32749,3],[33145,3],[33340,3],[33414,3],[33501,3],[37074,3]]},"79":{"position":[[7750,3],[12663,3],[13743,3]]},"85":{"position":[[6265,4]]},"87":{"position":[[10585,4],[16837,3],[18057,4],[18750,4],[18809,3],[19147,4],[20269,4]]},"88":{"position":[[2087,4],[2465,3],[3286,4],[4099,4],[4641,3],[9236,3],[9401,3],[9569,3],[9732,3],[14379,4],[14386,3],[14543,3],[14674,3],[14734,3],[14867,3],[16299,3],[20757,3],[20814,3],[20823,3],[21270,3],[21327,3],[21336,3],[21738,3],[21931,4],[24240,3],[46520,3],[46544,4],[46713,3],[46742,4],[46911,3],[46935,4],[53637,4],[56827,4]]},"92":{"position":[[1706,3]]},"113":{"position":[[15815,3]]},"124":{"position":[[3926,3],[6643,3],[6850,4],[6894,3],[6986,3],[9774,5],[18222,4]]},"125":{"position":[[7297,3]]},"127":{"position":[[1411,3],[1429,4],[1471,3],[1872,3],[1976,3],[2087,3],[2169,3],[2308,3],[2365,3],[3144,3],[3189,3],[3261,3],[3321,3],[3331,3],[3434,3],[3557,3],[3619,3],[3765,3],[3800,3],[3839,3],[4106,3],[5212,3],[6711,3]]},"129":{"position":[[1754,4],[2255,4],[4837,3],[4882,3],[4954,3],[5014,3],[5024,3],[5091,3],[5141,3],[5260,3],[5295,3],[5334,3],[5727,3],[6837,3],[15536,4],[16632,4]]},"131":{"position":[[5083,4],[5319,3],[5848,4],[6451,4],[6912,3],[6966,3],[7082,3],[7117,3],[7156,3],[7246,3],[7291,3],[7363,3],[7423,3],[7433,3],[9980,3],[11096,3]]},"133":{"position":[[8876,3],[8921,3],[8993,3],[9053,3],[9063,3],[9130,3],[9182,3],[9303,3],[9338,3],[9377,3],[11420,3],[12538,3],[15554,3],[16672,3],[19858,3],[20976,3],[24872,3],[25990,3],[31025,3],[32143,3],[35140,3],[36258,3],[39445,3],[40563,3],[43697,3],[44815,3]]},"135":{"position":[[21386,4]]},"138":{"position":[[7436,3],[7616,3],[9668,5],[17672,4]]},"142":{"position":[[23081,4]]},"150":{"position":[[5341,3],[5476,3],[5592,3]]}}}],["buf",{"_index":6431,"t":{},"d":{},"k":{},"b":{"129":{"position":[[11126,3]]},"133":{"position":[[49864,3]]}}}],["buffer",{"_index":663,"t":{},"d":{},"k":{},"b":{"68":{"position":[[2054,6],[2071,6],[3407,6],[3422,6],[3437,6],[3452,6],[3475,6],[3489,6],[7079,6],[7276,6],[7294,6],[7519,6],[7536,6],[7685,6],[7836,6],[8076,6],[8205,6],[8638,6],[17360,6],[22217,6],[22270,6],[22306,6]]},"74":{"position":[[1045,6],[4738,7],[5160,6]]},"75":{"position":[[226,7],[333,7],[1053,6],[1283,7],[1320,7],[1394,7],[2194,7],[2227,7],[2261,6],[2335,6],[2409,6],[3522,6],[3584,7],[3643,7],[3714,6],[3816,8],[3847,7],[3921,8],[14457,7],[14631,6],[14711,6],[16071,7],[16120,8],[16146,7],[16180,7],[16238,7],[16689,7],[17633,6],[17690,6],[18182,6],[19414,6],[23564,6],[23733,6],[24389,7],[24780,6],[24856,6],[26870,8],[31536,7],[31930,6],[32333,6],[34511,6],[34634,6],[34761,6],[36841,7],[37415,6],[37837,7],[38035,6]]},"83":{"position":[[32719,6],[32914,6],[43045,9],[43102,6],[43147,6],[50406,6],[50452,6],[51335,6]]},"84":{"position":[[10818,6],[10864,6]]},"86":{"position":[[900,7]]},"87":{"position":[[3055,6],[11161,6],[11483,6],[11957,6],[12016,6],[12094,7],[12108,6],[12366,6],[13040,6],[13317,6],[13549,6],[17652,7],[17696,6],[17836,7],[17880,6]]},"88":{"position":[[3357,6],[3474,6],[3558,7],[7038,6],[7091,6],[17310,7],[17445,7],[17526,7],[17715,7],[17812,6],[19266,6],[19343,7],[19415,6],[19447,7],[19560,7],[19894,6],[20211,6],[27609,6],[27915,6],[28579,7],[28616,6],[28702,6],[28771,6],[28819,6],[29469,7],[29906,7],[33479,6],[34095,7],[34135,6],[34221,6],[34290,6],[34341,6],[35950,6],[37082,6],[39114,6],[45462,6],[45578,6],[45692,6],[57198,6],[57922,6],[58407,6],[58909,6],[59393,6],[60368,6],[60851,6],[61190,6]]},"92":{"position":[[3712,7],[4188,7],[4223,6],[4328,6],[4433,6],[4538,6],[4643,6],[4748,6],[4853,6],[4958,6],[5515,6],[5595,6],[5656,6],[5761,6],[5866,6],[5971,6],[6076,6],[6181,6],[6286,6],[6391,6],[6948,6],[7028,6],[7756,7],[8600,7],[9444,7],[10288,7],[11476,6],[18393,6],[18524,6],[26572,6],[27886,6],[28025,6],[28133,6]]},"94":{"position":[[1569,7]]},"105":{"position":[[2756,6]]},"106":{"position":[[1934,7],[1992,7],[2050,7],[2108,7],[2165,7],[2222,7],[2279,7],[2336,7],[2393,7],[9301,6],[9370,6],[13944,7],[15283,6],[21978,6],[23265,7],[23451,6]]},"107":{"position":[[4502,6],[4541,6],[5443,7],[7887,6],[7983,6],[8080,6],[8177,6],[8274,6],[8370,6],[8466,6],[8562,6],[8658,6],[9627,6]]},"113":{"position":[[4002,7],[4434,7],[4506,7],[7874,6],[8293,6],[8365,6],[8448,6],[8514,6],[8575,6],[8896,6],[9248,7],[9506,6],[9759,6],[13813,6],[15149,6],[15267,6]]},"124":{"position":[[5655,6],[5683,6],[8340,6],[10923,6]]},"125":{"position":[[7864,6],[11109,6]]},"127":{"position":[[6940,7]]},"128":{"position":[[12278,6],[12332,7],[12370,6],[12437,6],[12539,6],[12604,6],[12738,6],[12805,6],[22830,7],[24148,7]]},"129":{"position":[[11135,6]]},"131":{"position":[[15778,6]]},"133":{"position":[[49900,6]]},"135":{"position":[[5088,6],[5157,6],[5205,6],[6342,6],[6379,6],[6460,6],[6499,6],[6567,6],[6719,6],[13563,6],[13605,6],[13904,6]]},"138":{"position":[[5633,6],[5661,6],[8216,6],[10127,6]]},"139":{"position":[[10682,6],[16143,10],[19372,6],[20609,6]]},"140":{"position":[[8052,6],[17858,6],[18781,6]]},"141":{"position":[[1276,6],[1332,6],[4250,6],[4831,6],[5560,6],[5690,6]]},"142":{"position":[[3172,6],[7221,6],[7258,6],[7339,6],[7378,6],[7741,6],[7893,6],[14963,6],[15005,6]]},"144":{"position":[[12284,6]]},"145":{"position":[[12084,6]]},"147":{"position":[[5151,6],[5873,6],[5936,6]]}}}],["buffer[buffer_s",{"_index":5234,"t":{},"d":{},"k":{},"b":{"106":{"position":[[13616,19]]}}}],["buffer_init_valu",{"_index":4552,"t":{},"d":{},"k":{},"b":{"92":{"position":[[18505,17]]}}}],["buffer_mod",{"_index":800,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11241,12],[14108,12],[17347,11]]}}}],["buffer_numb",{"_index":2165,"t":{},"d":{},"k":{},"b":{"74":{"position":[[3355,14],[3454,14],[4489,14],[4953,14]]}}}],["buffer_overwrite_detection_en",{"_index":5256,"t":{},"d":{},"k":{},"b":{"106":{"position":[[15248,33]]}}}],["buffer_s",{"_index":5086,"t":{},"d":{},"k":{},"b":{"106":{"position":[[177,12],[13586,11],[13968,11],[21467,12],[22091,11]]},"107":{"position":[[3002,12],[4246,12]]}}}],["buffersmanu",{"_index":2293,"t":{},"d":{},"k":{},"b":{"75":{"position":[[3604,13]]}}}],["build",{"_index":143,"t":{},"d":{},"k":{},"b":{"1":{"position":[[762,6]]},"68":{"position":[[2570,5],[2622,5],[2856,6]]},"69":{"position":[[2035,5],[2087,5],[2321,6]]},"71":{"position":[[9609,5],[9664,5]]},"72":{"position":[[22,5],[76,5]]},"73":{"position":[[22,5],[76,5]]},"75":{"position":[[2606,5],[2658,5],[10973,6]]},"76":{"position":[[1802,5],[1853,5],[2086,6]]},"77":{"position":[[1363,5],[1413,5],[1645,6]]},"79":{"position":[[1718,5],[1771,5],[2006,6],[5778,6]]},"80":{"position":[[3809,5],[3859,5],[4091,6]]},"83":{"position":[[4168,5],[4218,5],[4450,6]]},"84":{"position":[[2239,5],[2289,5],[2521,6]]},"88":{"position":[[6733,5],[6785,5],[7019,6]]},"89":{"position":[[1553,5],[1608,5],[1845,6]]},"90":{"position":[[1501,5],[1556,5],[1793,6]]},"91":{"position":[[1552,5],[1608,5],[1846,6]]},"92":{"position":[[2587,5],[2640,5],[2875,6]]},"105":{"position":[[3909,5],[3960,5],[4193,6],[4321,6]]},"106":{"position":[[1043,5],[1093,5],[1325,6],[1429,6]]},"108":{"position":[[1156,5],[1207,5],[1440,6]]},"111":{"position":[[1170,5],[1177,5],[1848,5]]},"124":{"position":[[1861,5],[1890,6],[1958,5],[2016,5],[2256,6],[2348,5]]},"125":{"position":[[1442,5],[1499,5],[1738,6]]},"127":{"position":[[1521,5],[1578,5],[1817,6]]},"128":{"position":[[534,5],[582,5],[969,5],[1106,5],[7914,6],[8051,6],[8158,6],[8271,6],[8327,6],[8600,6],[8666,6],[8803,6],[8872,6],[11529,6],[21446,6],[21539,6],[27723,5],[27849,5],[27963,5],[28079,5],[28199,5],[28321,5],[28433,5],[28569,5],[28711,5],[28858,5],[28995,5],[29114,5],[29254,5],[29391,5],[29514,5],[29635,5],[29763,5]]},"129":{"position":[[3108,5],[3162,5],[3398,6]]},"131":{"position":[[2783,5],[2837,5],[3073,6]]},"133":{"position":[[5549,5],[5995,5],[6051,5],[6289,6]]},"135":{"position":[[1610,5],[1661,5],[1894,6],[1986,5]]},"136":{"position":[[4000,5],[4050,5],[4282,6]]},"138":{"position":[[1875,5],[1904,6],[1972,6],[2040,5],[2096,5],[2334,6],[2458,5],[6825,5]]},"139":{"position":[[1802,5],[1859,5],[2098,6]]},"140":{"position":[[1771,5],[1827,5],[2065,6]]},"142":{"position":[[1808,5],[1860,5],[2094,6],[2212,5],[19306,5]]},"146":{"position":[[1684,5],[1736,5],[1970,6]]},"148":{"position":[[1509,5],[1559,5],[1791,6]]},"150":{"position":[[2040,5],[2096,5],[2340,6]]},"151":{"position":[[128,5],[2920,5],[2968,5]]}}}],["built",{"_index":1761,"t":{},"d":{},"k":{},"b":{"71":{"position":[[4074,5],[9515,5]]},"79":{"position":[[7195,5]]},"128":{"position":[[11345,5]]}}}],["bullet",{"_index":8321,"t":{},"d":{},"k":{},"b":{"151":{"position":[[1246,6]]}}}],["burden",{"_index":4118,"t":{},"d":{},"k":{},"b":{"88":{"position":[[19084,6]]}}}],["burst",{"_index":7481,"t":{},"d":{},"k":{},"b":{"142":{"position":[[1391,6]]}}}],["bus_available_detection_tim",{"_index":4300,"t":{},"d":{},"k":{},"b":{"88":{"position":[[46615,28]]}}}],["bus_free_detection_tim",{"_index":4299,"t":{},"d":{},"k":{},"b":{"88":{"position":[[46427,23]]}}}],["bus_idle_detection_tim",{"_index":4301,"t":{},"d":{},"k":{},"b":{"88":{"position":[[46818,23]]}}}],["buse",{"_index":4125,"t":{},"d":{},"k":{},"b":{"88":{"position":[[20904,6]]}}}],["busi",{"_index":4352,"t":{},"d":{},"k":{},"b":{"88":{"position":[[56371,5],[57098,5],[58317,5],[59303,5],[60259,5]]},"113":{"position":[[13768,5]]},"124":{"position":[[6898,4],[15921,4],[16864,4]]},"143":{"position":[[5862,5]]},"150":{"position":[[23608,5],[24713,5]]}}}],["busy/interrupt",{"_index":6556,"t":{},"d":{},"k":{},"b":{"133":{"position":[[1139,14],[2212,14],[2591,14],[2962,14],[3341,14],[3721,14],[4100,14],[4469,14],[54035,14],[56610,14],[57460,14],[58297,14],[59148,14],[59999,14],[60849,14],[61683,14]]}}}],["button",{"_index":1845,"t":{},"d":{},"k":{},"b":{"71":{"position":[[9562,6]]}}}],["bypass",{"_index":1636,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12700,6],[12992,6],[13046,6],[13116,6],[13188,6],[13359,6],[17863,6]]},"83":{"position":[[45784,6]]},"136":{"position":[[3656,6],[3686,9],[3972,6],[4719,6],[4767,6],[10267,6],[10819,6]]}}}],["byte",{"_index":491,"t":{},"d":{},"k":{},"b":{"67":{"position":[[11057,5]]},"68":{"position":[[24787,5]]},"69":{"position":[[31214,5]]},"71":{"position":[[6549,6],[6674,8],[6892,5]]},"75":{"position":[[2277,5],[2290,5],[2362,5],[2391,7],[2503,4],[2549,4],[14805,6],[17125,4],[17848,5],[17932,5],[18020,5],[18090,6],[19963,5],[20430,5],[25476,5],[29504,5]]},"77":{"position":[[3151,6],[8260,4]]},"79":{"position":[[1503,4],[2487,4],[2495,5],[2504,5],[2513,5],[2523,5],[2533,5],[2543,5],[2554,5],[2563,5],[2625,4],[2633,5],[2642,5],[2651,5],[2661,5],[2671,5],[2681,5],[2692,5],[2701,5],[4730,6],[6122,5],[6130,6],[6139,6],[6148,6],[6158,6],[6168,6],[6178,6],[6192,6],[7443,5],[7685,5],[9491,5],[11782,5],[11876,5]]},"85":{"position":[[3376,6],[3495,6],[4659,6],[4983,5],[5237,6],[5567,5]]},"86":{"position":[[853,5],[891,5],[3019,6],[3117,6],[3955,6],[4237,5],[4408,6],[4695,5]]},"87":{"position":[[3641,5],[11196,5],[11525,5],[12185,5],[12386,5],[12443,5],[13060,5],[13117,5],[13569,5],[13626,5]]},"88":{"position":[[13468,4],[19534,5],[19592,6],[19728,6],[19954,5],[20015,6],[20098,6],[20162,5],[20268,6],[26119,5],[28858,5],[29172,5],[29605,5],[33015,5],[34380,5],[37223,6],[43501,5],[44092,4],[45828,5],[45931,5],[57226,6],[57295,6],[58435,6],[59421,5],[59466,6],[60396,6],[61218,5],[61263,6]]},"106":{"position":[[368,6],[13215,4],[13274,4],[23164,5],[23806,5]]},"107":{"position":[[3187,6],[5116,6],[5392,4],[5430,5],[5490,6],[5576,6]]},"124":{"position":[[224,6],[358,6],[1362,5],[15451,6],[15883,5],[16403,6]]},"125":{"position":[[219,6],[331,6],[4894,4],[5889,5],[6542,5],[6747,5],[7353,5],[7976,4],[8035,4],[8081,4],[15412,5],[16080,5],[16523,5]]},"126":{"position":[[1786,6],[1883,6],[2729,6],[2944,5],[3113,6],[3331,5],[3543,5]]},"127":{"position":[[474,6],[665,6],[8531,5],[9160,5]]},"128":{"position":[[4404,6],[4491,5],[4533,7],[4790,5],[8091,5],[12576,5],[12646,5],[12777,5],[12848,5],[23567,6],[24902,6]]},"129":{"position":[[1737,5],[2238,5],[15519,5],[16615,5]]},"135":{"position":[[15680,5],[15741,5],[15802,5],[16061,5],[16122,5],[16183,5],[16244,5],[16307,5],[16370,5],[16433,5],[16494,5]]},"138":{"position":[[288,6],[420,6],[1360,5],[14557,6],[15005,5],[15061,5],[15508,6],[16241,5]]},"139":{"position":[[204,6],[317,6],[6224,4],[9212,5],[9247,5],[9337,5],[9409,5],[10850,5],[16118,4],[19239,5],[19349,5],[20476,5],[20587,5],[22543,5]]},"140":{"position":[[202,6],[314,6],[5033,4],[8220,5],[13974,4],[14342,4],[14442,5],[14543,5],[14644,5],[14745,5],[14846,5],[14947,5],[15048,5],[15149,5],[15252,5],[15355,5],[15458,5],[15561,5],[15664,5],[15767,5],[17725,5],[17835,5],[18648,5],[18759,5],[20399,5]]},"141":{"position":[[8025,6],[8080,6],[8135,6],[8190,6],[8245,6]]},"142":{"position":[[4984,4],[5035,4],[9154,4],[14017,4],[17160,4],[17234,4],[17305,4]]},"143":{"position":[[1927,5],[2435,5],[2460,5],[2530,7],[3819,6],[3946,6],[5292,6],[5586,5],[6029,6],[6306,5],[7757,5],[7982,5],[8223,5],[12593,5],[12663,5],[12707,5],[12927,5],[12950,4]]},"145":{"position":[[2404,6],[2734,6]]},"147":{"position":[[1041,5],[1173,5],[3073,5],[3145,5],[3193,4],[3378,5],[3450,5],[3500,4],[3815,6],[3914,6],[5095,6],[5281,5],[5817,6],[6013,5],[8837,5],[9060,5],[10317,4]]},"150":{"position":[[266,6],[402,6],[1698,4],[2994,5],[3038,6],[3050,4],[8385,6],[12787,6],[12804,4],[13738,5],[13800,4],[14160,5],[14254,6],[15231,5],[15525,5],[20405,6],[21034,5],[23667,5]]}}}],["byte_count",{"_index":7596,"t":{},"d":{},"k":{},"b":{"143":{"position":[[4300,11],[4402,11],[7409,11],[7927,11]]},"150":{"position":[[746,11],[857,11],[23119,10],[23410,10],[23995,10],[24114,10],[24211,10],[24458,10]]}}}],["byte_swap",{"_index":7516,"t":{},"d":{},"k":{},"b":{"142":{"position":[[13999,9]]}}}],["bytes)rx",{"_index":2376,"t":{},"d":{},"k":{},"b":{"75":{"position":[[18006,8]]}}}],["bytes)valu",{"_index":1849,"t":{},"d":{},"k":{},"b":{"71":{"position":[[9789,12],[9972,12],[10232,12]]}}}],["bytes.(us",{"_index":2986,"t":{},"d":{},"k":{},"b":{"79":{"position":[[5234,10]]}}}],["bytesnumb",{"_index":6068,"t":{},"d":{},"k":{},"b":{"126":{"position":[[2929,11]]}}}],["bytesvalu",{"_index":2981,"t":{},"d":{},"k":{},"b":{"79":{"position":[[4650,10],[5154,10]]}}}],["bytevalu",{"_index":4069,"t":{},"d":{},"k":{},"b":{"88":{"position":[[13229,9],[13396,9]]}}}],["c",{"_index":117,"t":{},"d":{},"k":{},"b":{"1":{"position":[[314,1]]},"67":{"position":[[2339,2],[3171,1],[3348,1],[13756,1]]},"68":{"position":[[3069,1],[4434,1]]},"69":{"position":[[1848,2],[2550,1],[3715,1],[3782,2],[3808,2],[3957,2],[6864,1],[7032,2],[7614,1],[7635,1],[7680,1],[7760,1],[7811,1],[7892,1],[7985,1],[8088,1],[8364,1],[9034,1],[9105,1],[9148,1],[9226,1],[9479,1],[9732,1],[9826,1],[9835,1],[11462,3],[11620,2],[11718,2],[11739,1],[11858,2],[11911,1],[19597,2],[19623,2],[19708,2],[23160,2],[23214,1],[23299,1],[23415,1],[23503,1],[23629,1],[23763,1]]},"71":{"position":[[1231,1],[1451,1],[1977,1],[4954,2],[5676,1],[5756,1],[5801,2],[11502,1],[11570,1],[36505,1],[36611,1],[36690,1],[36795,1],[36901,1],[36980,1],[37256,1],[37362,1],[37441,1],[37546,1],[37652,1],[37731,1]]},"75":{"position":[[11768,1],[14082,1],[14852,1]]},"76":{"position":[[2317,1],[4051,1]]},"77":{"position":[[2023,1]]},"79":{"position":[[2241,1],[3676,1]]},"83":{"position":[[5260,1],[10840,1],[36957,3],[37461,3]]},"84":{"position":[[2734,1],[3809,1]]},"88":{"position":[[13910,1],[13969,1],[14178,1]]},"89":{"position":[[2086,1],[2479,1]]},"90":{"position":[[2034,1],[2197,1]]},"91":{"position":[[2089,1],[2556,1]]},"92":{"position":[[3100,1],[3185,1]]},"105":{"position":[[4552,1],[5775,1],[7775,1],[19712,1]]},"106":{"position":[[11391,1],[12307,1]]},"108":{"position":[[1697,1],[2488,1]]},"111":{"position":[[293,1]]},"113":{"position":[[1386,3],[1442,1]]},"124":{"position":[[2797,1],[4133,1]]},"125":{"position":[[2391,1],[3406,1]]},"127":{"position":[[2956,1]]},"128":{"position":[[1733,2],[6716,1],[7063,1],[15348,1],[17936,1]]},"129":{"position":[[3954,1]]},"131":{"position":[[4103,1]]},"133":{"position":[[5576,1],[6596,1],[6719,1]]},"134":{"position":[[11744,3]]},"135":{"position":[[2245,1],[4681,1]]},"136":{"position":[[4674,1],[5435,1],[7593,1]]},"137":{"position":[[9606,1]]},"138":{"position":[[3074,1],[4568,1]]},"139":{"position":[[2798,1],[6485,1]]},"140":{"position":[[2547,1],[5292,1]]},"142":{"position":[[2935,1],[4132,1]]},"146":{"position":[[2199,1],[3031,1]]},"148":{"position":[[2008,1],[3227,1]]},"150":{"position":[[2581,1],[5848,1],[5940,1]]},"152":{"position":[[372,1]]}}}],["c/c",{"_index":6601,"t":{},"d":{},"k":{},"b":{"133":{"position":[[5542,6]]}}}],["c99",{"_index":114,"t":{},"d":{},"k":{},"b":{"1":{"position":[[265,3],[308,5],[379,3]]}}}],["cach",{"_index":2996,"t":{},"d":{},"k":{},"b":{"79":{"position":[[7204,5],[7293,5]]}}}],["calcul",{"_index":1277,"t":{},"d":{},"k":{},"b":{"69":{"position":[[31412,11]]},"71":{"position":[[35791,9],[45568,12],[45672,12]]},"75":{"position":[[12632,9],[12788,9],[12956,9],[13210,9],[13362,9],[13527,9],[17897,10],[20913,11],[21981,10],[22075,10]]},"76":{"position":[[5833,9],[10242,9],[10795,9],[11132,9],[11204,11],[11502,10],[11588,10],[16585,9],[16922,9],[16994,11],[17292,10],[17378,10]]},"77":{"position":[[633,9],[1292,9],[2554,11],[3021,12],[3103,11],[3226,12],[3298,11],[3505,10],[4217,11],[6557,11],[6687,11],[6810,10],[7402,10],[7459,11],[7534,10],[7594,10],[8127,10],[8315,10],[8385,11]]},"78":{"position":[[108,10],[220,11],[1050,11],[1733,9],[2648,10],[2792,10],[2827,12],[3414,9],[3602,11],[3809,10],[3837,12],[5286,11]]},"83":{"position":[[6744,10],[15726,9],[23708,9],[24234,9],[24563,9],[24635,11],[24931,10],[25245,9],[25790,9],[25926,11],[26189,10]]},"84":{"position":[[3660,10],[4443,9],[7512,9],[8067,9],[8338,9],[8410,11],[8706,10]]},"88":{"position":[[16171,13],[16237,12]]},"105":{"position":[[13784,9],[14529,9],[14869,9],[14941,11],[15247,10],[15565,9],[16123,9],[16360,10],[31168,9],[31508,9],[31580,11],[31886,10]]},"124":{"position":[[5010,10],[6265,11],[6303,10],[6515,10],[6571,11]]},"125":{"position":[[3818,10],[7475,11],[7513,10],[7729,10]]},"129":{"position":[[974,10],[2974,11],[4158,11],[9446,9],[13895,10]]},"130":{"position":[[3957,9]]},"131":{"position":[[1959,10],[2419,11],[7999,9],[8786,9],[9520,9],[9931,10],[13935,9],[14147,10],[14294,10],[14428,12],[20380,10]]},"132":{"position":[[4503,9]]},"133":{"position":[[5951,11],[9853,11]]},"134":{"position":[[7930,9],[8463,9],[8983,9],[9509,9],[10042,9],[10575,9],[11092,9]]},"135":{"position":[[22057,10],[22133,10],[22614,11]]},"136":{"position":[[2509,10]]},"138":{"position":[[3565,10],[5080,10],[5980,11],[6021,10],[6680,11]]},"139":{"position":[[3345,10],[3886,12],[4036,11],[4127,10],[24968,10],[25646,10]]},"140":{"position":[[3402,12],[3552,11],[3643,10],[22863,10],[23611,10]]},"142":{"position":[[23846,10],[24364,10]]},"146":{"position":[[6180,10],[7027,9],[8538,9],[9347,10],[10035,9],[12568,10],[14050,9],[14334,9],[24933,9]]},"148":{"position":[[3920,11]]},"150":{"position":[[14839,9]]}}}],["calculated_flag",{"_index":6404,"t":{},"d":{},"k":{},"b":{"129":{"position":[[5687,15],[9659,15],[9809,15],[9940,17]]}}}],["calculatedvalu",{"_index":2796,"t":{},"d":{},"k":{},"b":{"77":{"position":[[238,17],[329,17],[6457,15],[6936,15],[7297,15],[7662,15]]}}}],["calend",{"_index":6930,"t":{},"d":{},"k":{},"b":{"136":{"position":[[1795,8]]},"137":{"position":[[5790,8]]}}}],["calendar",{"_index":6921,"t":{},"d":{},"k":{},"b":{"136":{"position":[[1226,8],[8055,8],[8137,8],[12882,8],[13501,8],[14292,8],[14369,8],[15069,8]]},"137":{"position":[[5762,8],[6225,8],[6599,8],[7071,8]]}}}],["calendaralarmget",{"_index":7045,"t":{},"d":{},"k":{},"b":{"137":{"position":[[4216,16],[6898,16]]}}}],["calendaralarmset",{"_index":6934,"t":{},"d":{},"k":{},"b":{"136":{"position":[[2405,16],[2584,16]]},"137":{"position":[[4124,16],[6426,16]]}}}],["calendartimeget",{"_index":6952,"t":{},"d":{},"k":{},"b":{"136":{"position":[[6861,15]]},"137":{"position":[[4040,15],[6061,15]]}}}],["calendartimeset",{"_index":6933,"t":{},"d":{},"k":{},"b":{"136":{"position":[[2385,15]]},"137":{"position":[[3956,15],[5598,15]]}}}],["calibr",{"_index":321,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2195,11],[2371,11],[2529,11],[2598,11],[4445,9],[8552,9],[8692,9],[11189,11],[13806,11],[13913,11],[16660,11]]},"113":{"position":[[8004,11]]},"143":{"position":[[9724,11]]},"146":{"position":[[5808,11],[6079,11],[6114,11],[8975,11],[9246,11],[9281,11],[12196,11],[12467,11],[12502,11],[22342,11]]}}}],["calibration_data",{"_index":320,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2158,16]]}}}],["calibration_data1",{"_index":333,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2491,17]]},"146":{"position":[[5529,18],[5964,17],[6211,19],[6280,18],[8728,18],[9131,17],[9378,19],[9447,18],[11694,18],[12352,17],[12599,19],[12668,18]]}}}],["calibration_data2",{"_index":335,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2560,17]]},"146":{"position":[[5560,18],[6015,17],[6348,18],[6416,18],[8759,18],[9182,17],[9515,18],[9583,18],[11728,18],[12403,17],[12736,18],[12804,18]]}}}],["calibration_ongo",{"_index":330,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2350,19]]}}}],["call",{"_index":245,"t":{},"d":{},"k":{},"b":{"67":{"position":[[367,4],[5356,7],[5775,5]]},"68":{"position":[[4539,6],[5541,7],[9016,7],[9136,7],[10203,7],[10282,7]]},"69":{"position":[[8448,6],[10779,7],[14067,7],[14146,7],[14806,7],[31939,5]]},"71":{"position":[[4503,6],[5393,6],[5498,6],[7118,5],[7367,4],[9167,4],[11033,4],[29380,6],[29711,5],[30128,5],[31067,4],[31955,6],[32286,5],[32703,5],[33642,4],[36463,6],[36573,6],[36666,6],[36753,6],[36863,6],[36956,6],[37214,6],[37324,6],[37417,6],[37504,6],[37614,6],[37707,6],[39913,6],[40145,4],[44504,5],[45765,6],[46251,6],[46873,4]]},"74":{"position":[[6845,5],[7763,6]]},"75":{"position":[[3120,6],[14177,6],[17573,7]]},"76":{"position":[[4135,6],[6535,7],[6677,6],[7710,6],[7882,6],[8779,6],[12238,7],[16339,7],[23707,6]]},"77":{"position":[[2650,7],[2715,6]]},"78":{"position":[[4493,6]]},"79":{"position":[[3713,6],[17684,4],[19043,4],[19539,4],[19997,4],[20483,4],[21032,4],[21547,4],[22326,4]]},"80":{"position":[[8452,7]]},"81":{"position":[[4158,6]]},"82":{"position":[[3652,4],[4057,4],[5289,4],[6047,6]]},"83":{"position":[[10951,6],[16405,7],[16514,4],[16736,7],[16878,6],[18700,4],[18779,7],[19897,6],[20918,6],[21090,6],[22109,6],[28828,7],[48646,4],[49638,4],[50489,6],[53598,4],[53929,7],[58225,6],[58239,7]]},"84":{"position":[[3893,6],[5511,7],[5711,7],[5853,6],[6455,6],[6627,6],[9174,7],[10901,6],[11115,7],[16215,6]]},"85":{"position":[[4894,5],[5475,5],[5980,5],[6432,5],[8044,5],[8742,6]]},"86":{"position":[[1410,4],[4148,5],[4603,5],[5753,5],[6444,6],[7836,4]]},"87":{"position":[[7206,4],[7555,4],[8184,4],[8750,4],[9482,4],[10228,4],[10741,4],[11431,4],[12314,4],[12940,4],[13497,4],[13934,4],[14601,6],[17706,7],[17890,7],[19777,6]]},"88":{"position":[[3403,7],[4143,7],[4409,7],[5783,7],[14049,6],[17137,7],[17195,7],[17415,6],[25354,6],[28781,7],[29365,4],[29802,4],[34300,7],[44592,7],[44819,7],[51904,6],[53570,6],[53657,6],[57360,4],[60312,6],[61133,6]]},"89":{"position":[[2584,6],[3345,6],[4583,7],[5790,4]]},"90":{"position":[[2302,6],[2991,6],[4215,7],[5406,4]]},"91":{"position":[[2661,6],[3426,6],[4987,7],[6961,4]]},"92":{"position":[[13117,4],[13984,4],[15663,4],[17098,7],[28888,5]]},"93":{"position":[[3057,6],[3087,4],[8826,6]]},"94":{"position":[[3459,5],[4010,4],[4637,5],[5286,6]]},"95":{"position":[[1444,7],[1537,7],[2459,6]]},"96":{"position":[[1243,7],[1336,7],[2169,6]]},"97":{"position":[[991,7],[1085,7],[1913,6]]},"98":{"position":[[1382,7],[1475,7],[2393,6]]},"99":{"position":[[1415,7],[1508,7],[2422,6]]},"100":{"position":[[1216,7],[1309,7],[2134,6]]},"101":{"position":[[3724,4],[4373,5],[5113,6]]},"102":{"position":[[966,7],[1060,7],[1880,6]]},"103":{"position":[[2694,5],[3059,5],[3799,6]]},"104":{"position":[[1353,7],[1446,7],[2356,6]]},"105":{"position":[[7886,6],[11259,7],[11356,7],[12675,6],[12847,6],[17549,7],[30057,4],[34983,4],[35302,7]]},"106":{"position":[[11496,6],[14646,7],[21075,6],[21146,6],[23521,6],[23585,6],[23928,6],[23999,6]]},"107":{"position":[[3801,7],[3850,7],[3873,4],[4436,4],[4605,4],[4829,6],[4952,4],[5186,6],[5314,4],[5907,4],[6266,4],[7626,6]]},"108":{"position":[[2599,6],[4203,6],[5393,7],[8661,7]]},"109":{"position":[[1798,6],[3428,5],[3940,4],[4524,5],[4759,7],[4784,7],[4915,5],[5170,5],[5828,6]]},"113":{"position":[[1771,4],[3403,4],[12533,6],[13132,6],[14956,4]]},"124":{"position":[[4202,6],[16019,4],[16962,4],[17455,4],[17602,7],[18459,4],[18983,4],[19130,7]]},"125":{"position":[[3138,4],[3211,4],[3475,6],[5734,4],[6237,6],[6521,4],[6726,4],[6958,6],[7137,6],[11613,4],[12543,4]]},"126":{"position":[[4190,6]]},"127":{"position":[[1074,6],[3536,6],[3890,5]]},"128":{"position":[[11872,5],[13057,5],[13112,4],[13543,6],[13722,7],[14118,4],[15463,6],[15718,5],[15815,4],[16665,4],[17686,6],[18601,7],[18670,4],[19203,4],[19720,6],[20088,7],[20502,6]]},"129":{"position":[[454,6],[1195,6],[1306,7],[1586,6],[1599,7],[1765,7],[2097,6],[2110,7],[2412,6],[2425,7],[2500,6],[4433,6],[4547,7],[4621,7],[5385,5],[7658,6],[12538,6],[14477,6],[14588,7],[15368,6],[15381,7],[15547,7],[16474,6],[16487,7],[17289,6],[17302,7],[17377,6]]},"130":{"position":[[6474,6]]},"131":{"position":[[458,6],[679,4],[709,7],[7207,5],[7815,4],[7948,4],[8274,4],[8397,4],[8576,4],[8735,4],[9129,4],[9223,6],[9245,4],[9360,4],[9469,4],[17364,6],[17585,4],[17615,7]]},"132":{"position":[[5616,6]]},"133":{"position":[[142,6],[430,6],[624,6],[812,6],[1059,6],[1430,6],[1770,6],[2132,6],[2511,6],[2882,6],[3261,6],[3641,6],[4020,6],[4389,6],[4652,6],[9428,5],[9884,4],[10001,4],[10114,4],[10185,4],[10272,4],[10463,4],[10564,4],[10661,4],[10752,4],[51380,6],[52092,6],[52668,6],[53234,6],[53955,6],[54965,6],[55605,6],[56530,6],[57380,6],[58217,6],[59068,6],[59919,6],[60769,6],[61603,6],[62155,6]]},"134":{"position":[[12974,6]]},"135":{"position":[[4786,6],[13241,7],[13334,7],[17496,6]]},"136":{"position":[[2003,5],[2021,6],[2108,7],[3475,5],[5540,6],[6979,6],[7308,6],[8568,6],[10469,6],[13530,4],[15806,6]]},"137":{"position":[[3407,6],[9810,6]]},"138":{"position":[[4694,6]]},"139":{"position":[[6590,6],[8946,7],[9010,4],[9277,5],[9432,5],[18736,4],[18827,6],[18898,6],[19951,6],[20022,6],[20112,5],[21178,6],[21249,6],[21339,5],[23913,4],[24352,6],[24423,6],[27185,4],[27614,6],[27685,6]]},"140":{"position":[[5397,6],[6820,7],[6884,4],[17265,4],[21765,4],[22204,6],[24134,4],[24563,6]]},"141":{"position":[[7764,6]]},"142":{"position":[[4245,6],[14708,7],[14801,7],[19444,6],[19515,6]]},"143":{"position":[[6101,4],[10807,6]]},"144":{"position":[[5200,4],[5503,4],[5834,4],[6154,4],[6481,4],[7034,4],[7621,4],[8123,4],[8600,4],[9183,4],[9810,4],[10492,6]]},"145":{"position":[[5839,4],[6509,6],[6677,4],[6956,6],[7245,4],[7698,4],[8307,4],[8660,4],[9067,4],[9506,4],[10461,6]]},"146":{"position":[[3136,6],[4069,7],[6558,7],[6637,7],[9725,7],[9804,7],[13594,7],[18015,5]]},"147":{"position":[[5239,6],[6068,6],[9728,6]]},"148":{"position":[[3429,6],[4537,7],[5490,7],[6133,6],[6667,4],[8288,4],[8364,4],[9497,7],[10868,6],[10953,5]]},"149":{"position":[[6432,6]]},"150":{"position":[[16191,6],[23537,6],[24642,6],[25345,6],[26794,6]]}}}],["callabl",{"_index":2825,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1795,8],[1940,9]]},"136":{"position":[[4446,8],[4591,9]]},"138":{"position":[[2846,8],[2991,9]]},"139":{"position":[[2560,8],[2705,9]]},"142":{"position":[[2707,8],[2852,9]]}}}],["callback",{"_index":244,"t":{},"d":{},"k":{},"b":{"67":{"position":[[332,8],[1252,8],[1359,8],[3424,8],[3540,8],[9942,8],[10236,8],[10312,8],[10349,8],[10409,9],[13566,8]]},"68":{"position":[[2281,8],[4454,8],[4502,8],[5653,8],[5711,8],[12868,9],[13163,8],[15735,9],[16032,8],[23739,8],[31135,8],[31183,8]]},"69":{"position":[[1910,8],[8384,8],[8411,8],[11162,8],[14746,8],[14794,8],[15623,8],[15729,8],[16275,9],[18420,8],[29715,8],[30016,8],[37762,8],[37810,8]]},"71":{"position":[[1439,9],[4380,8],[4743,9],[4873,9],[4968,10],[5197,9],[5320,8],[36163,9],[46615,8],[46685,8],[46734,9],[46821,9]]},"74":{"position":[[270,8],[2183,8],[2437,9],[2757,8],[2818,8],[6646,8],[6937,8],[7013,8],[7050,8],[7110,9]]},"75":{"position":[[3043,8],[3101,8],[14113,8],[14140,8],[17461,9],[22697,9],[22742,9],[23008,8],[25102,9],[28732,8],[30197,8],[32254,8],[40308,8],[40359,8]]},"76":{"position":[[2578,8],[4071,8],[4098,8],[6523,8],[6660,8],[7633,8],[7680,9],[7701,8],[8770,8],[25454,8],[25505,8]]},"79":{"position":[[3696,8],[3826,8],[9033,8],[11292,8],[12546,8]]},"82":{"position":[[753,8],[1824,8],[2024,8],[3435,8],[3840,8],[4393,8],[4739,8],[4815,8],[4852,8],[4912,9]]},"83":{"position":[[5766,8],[10860,8],[10909,8],[16724,8],[16861,8],[20841,8],[20888,9],[20909,8],[22100,8],[47249,9],[57180,8],[57231,8]]},"84":{"position":[[2984,8],[3829,8],[3856,8],[5699,8],[5836,8],[6378,8],[6425,9],[6446,8],[16967,8],[17018,8]]},"85":{"position":[[220,8],[817,8],[2088,8],[2790,8],[6820,8],[7113,8],[7189,8],[7226,8],[7286,9],[9405,8]]},"86":{"position":[[217,8],[736,8],[1934,8],[2440,8],[5000,8],[5261,8],[5337,8],[5374,8],[5434,9],[7095,8]]},"87":{"position":[[3435,8],[4926,9],[12063,8],[17297,9],[19760,8]]},"88":{"position":[[3531,8],[3631,9],[5439,8],[6406,8],[10947,8],[11119,8],[11292,8],[14000,8],[14141,8],[14272,9],[15023,8],[17777,8],[48663,9]]},"89":{"position":[[1428,8],[2499,8],[2547,8],[4950,8],[7779,8],[7827,8]]},"90":{"position":[[1387,8],[2217,8],[2265,8],[4582,8],[7329,8],[7377,8]]},"91":{"position":[[1436,8],[2576,8],[2624,8],[5350,8],[8940,8],[8988,8]]},"94":{"position":[[876,8],[1471,8],[1916,8],[2118,8],[3759,8],[4119,8],[4196,8],[4233,8],[4293,9]]},"95":{"position":[[4120,8],[4171,8]]},"96":{"position":[[3421,8],[3472,8]]},"98":{"position":[[4046,8],[4097,8]]},"99":{"position":[[4067,8],[4118,8]]},"100":{"position":[[3374,8],[3425,8]]},"101":{"position":[[898,8],[1519,8],[1924,8],[2139,8],[3497,8],[3831,8],[3907,8],[3944,8],[4004,9]]},"103":{"position":[[873,8],[1416,8]]},"104":{"position":[[3993,8],[4044,8]]},"105":{"position":[[4930,8],[7795,8],[7844,8],[12598,8],[12645,9],[12666,8],[17977,9],[18054,8],[18146,8],[38084,8],[38135,8]]},"106":{"position":[[955,8],[11411,8],[11454,8],[25619,8],[25667,8]]},"107":{"position":[[653,8],[873,8],[2431,8],[2649,8],[4614,8],[4817,8],[6551,8],[6799,8],[6876,8],[6913,8],[6973,9],[9101,8],[9371,8]]},"108":{"position":[[2508,8],[2557,8],[4085,8],[4141,8],[4194,8],[4579,9],[4697,8],[6264,9],[7518,8],[7569,8]]},"109":{"position":[[880,8],[1789,8],[1978,8],[3761,8],[4047,8],[4123,8],[4160,8],[4220,9]]},"113":{"position":[[3904,8],[3948,9]]},"124":{"position":[[1188,9],[1289,8],[1839,10],[4153,8],[7572,8],[8710,8],[9315,8],[9926,8],[10306,8],[14996,8],[15764,9],[16715,9],[17525,8],[19053,8],[19723,8],[19771,8]]},"125":{"position":[[1162,10],[1229,9],[1285,10],[3426,8],[5234,8],[5246,8],[5808,8],[5992,10],[6192,8],[8598,8],[9301,8],[11565,8],[11599,8],[12495,8],[12529,8],[14960,8],[15784,9],[15897,9],[15972,9],[16895,9],[17007,9],[17082,9],[18235,8],[18283,8]]},"126":{"position":[[825,8],[1046,9],[1126,8],[4379,8]]},"127":{"position":[[1056,8],[1099,8],[2990,8],[3546,9],[6121,8],[6322,8]]},"128":{"position":[[19660,9],[22149,8],[24987,8]]},"129":{"position":[[3985,8],[7796,8],[8215,8],[8624,8],[8973,8],[9173,8],[9407,8],[10590,8]]},"130":{"position":[[742,8],[1812,8],[6662,8]]},"131":{"position":[[839,8],[1240,8],[1753,9],[4154,8],[8554,9],[8677,9],[12004,8],[12275,8],[13319,8],[14852,8],[15886,9],[17745,8],[18570,8],[19612,9]]},"132":{"position":[[850,8],[2381,9],[5804,8]]},"133":{"position":[[6649,8],[6760,8],[9991,9],[10417,9],[10977,9],[11048,9],[49655,8],[50152,8],[50759,9],[50839,9]]},"134":{"position":[[935,8],[4045,9],[4125,9],[13168,8]]},"135":{"position":[[1368,8],[4701,8],[4744,8],[8920,8],[10151,8],[10807,8],[23235,8],[23283,8]]},"136":{"position":[[1258,8],[1939,8],[5455,8],[5498,8],[6258,9],[11268,8],[18065,8],[18113,8]]},"137":{"position":[[939,8],[1057,8],[3490,8],[8283,8],[8531,8],[8607,8],[9993,8]]},"138":{"position":[[1181,9],[1286,8],[1853,10],[4609,8],[4652,8],[8597,8],[9209,8],[13459,8],[13939,8],[13979,8],[14870,9],[15856,8],[16077,9],[16775,8],[16815,8],[18478,8],[18526,8]]},"139":{"position":[[1400,8],[6193,8],[6262,8],[6505,8],[6548,8],[9043,8],[16098,8],[16187,8],[23949,8],[26321,8],[26369,8],[27221,8]]},"140":{"position":[[1421,8],[5002,8],[5071,8],[5312,8],[5355,8],[6917,8],[21801,8],[24170,8],[25173,8],[25221,8]]},"141":{"position":[[719,8],[900,9],[2344,8],[2423,8],[6325,8],[6596,8],[6672,8],[6709,8],[6769,9]]},"142":{"position":[[1510,8],[4160,8],[4203,8],[9923,8],[11169,8],[11834,8],[24974,8],[25022,8]]},"144":{"position":[[1074,8],[1300,9],[3082,8],[3303,8],[8942,8],[9290,8],[9366,8],[9403,8],[9463,9],[10741,8]]},"146":{"position":[[3051,8],[3099,8],[6839,8],[7349,9],[13472,8],[13820,8],[17121,8],[24027,8],[24075,8]]},"147":{"position":[[257,8],[1383,8],[1749,9],[2714,8],[2795,8],[5227,8],[5343,8],[6059,8],[7900,8],[8186,8],[8262,8],[8299,8],[8359,9]]},"148":{"position":[[3247,8],[3387,8],[5890,8],[6124,8],[10731,8],[14637,8],[14685,8]]},"149":{"position":[[801,8],[1883,8],[2176,8],[3267,9],[5358,8],[5606,8],[5682,8],[5719,8],[5779,9]]}}}],["callbacknam",{"_index":704,"t":{},"d":{},"k":{},"b":{"68":{"position":[[4405,12]]},"69":{"position":[[8335,12]]},"75":{"position":[[14053,12]]},"76":{"position":[[4022,12]]},"79":{"position":[[3647,12]]},"83":{"position":[[10811,12]]},"84":{"position":[[3780,12]]},"88":{"position":[[13940,12]]},"89":{"position":[[2450,12]]},"90":{"position":[[2168,12]]},"91":{"position":[[2527,12]]},"105":{"position":[[7746,12]]},"106":{"position":[[11362,12]]},"108":{"position":[[2459,12]]},"124":{"position":[[4104,12]]},"125":{"position":[[3377,12]]},"127":{"position":[[2927,12]]},"129":{"position":[[3925,12]]},"131":{"position":[[4074,12]]},"133":{"position":[[6567,12],[6690,12]]},"135":{"position":[[4652,12]]},"136":{"position":[[5406,12]]},"138":{"position":[[4539,12]]},"139":{"position":[[6456,12]]},"140":{"position":[[5263,12]]},"142":{"position":[[4103,12]]},"146":{"position":[[3002,12]]},"148":{"position":[[3198,12]]}}}],["callbackset",{"_index":384,"t":{},"d":{},"k":{},"b":{"67":{"position":[[4621,11],[9691,11]]},"74":{"position":[[3760,11],[6395,11]]},"82":{"position":[[2522,11],[4105,11]]},"85":{"position":[[3718,11],[6541,11]]},"86":{"position":[[3138,11],[4725,11]]},"94":{"position":[[2436,11],[3508,11]]},"101":{"position":[[2441,11],[3194,11]]},"107":{"position":[[3338,11],[6304,11]]},"109":{"position":[[2395,11],[3506,11]]},"137":{"position":[[4521,11],[8036,11]]},"141":{"position":[[3114,11],[6074,11]]},"144":{"position":[[4229,11],[8683,11]]},"147":{"position":[[4196,11],[7645,11]]},"149":{"position":[[2843,11],[5107,11]]}}}],["caller",{"_index":5978,"t":{},"d":{},"k":{},"b":{"124":{"position":[[15650,6],[16601,6]]},"125":{"position":[[15687,6],[16798,6]]},"138":{"position":[[14756,6],[15986,6]]},"141":{"position":[[4356,6],[5796,6]]}}}],["caller'",{"_index":3634,"t":{},"d":{},"k":{},"b":{"83":{"position":[[52534,8]]}}}],["can't",{"_index":5600,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4341,5]]},"150":{"position":[[23528,5],[24633,5],[25336,5]]}}}],["can_api_t",{"_index":2122,"t":{},"d":{},"k":{},"b":{"74":{"position":[[588,9],[3100,9],[3146,9],[7489,9]]}}}],["can_api_t::callbackset",{"_index":2200,"t":{},"d":{},"k":{},"b":{"74":{"position":[[6449,23]]},"75":{"position":[[40399,23]]}}}],["can_api_t::clos",{"_index":2185,"t":{},"d":{},"k":{},"b":{"74":{"position":[[5323,17]]}}}],["can_api_t::infoget",{"_index":2195,"t":{},"d":{},"k":{},"b":{"74":{"position":[[6069,19]]}}}],["can_api_t::modetransit",{"_index":2188,"t":{},"d":{},"k":{},"b":{"74":{"position":[[5596,26]]}}}],["can_api_t::open",{"_index":2172,"t":{},"d":{},"k":{},"b":{"74":{"position":[[3994,16],[6829,15]]}}}],["can_api_t::read",{"_index":2182,"t":{},"d":{},"k":{},"b":{"74":{"position":[[4900,16]]}}}],["can_api_t::writ",{"_index":2176,"t":{},"d":{},"k":{},"b":{"74":{"position":[[4435,17]]}}}],["can_bit_timing_cfg_t",{"_index":2118,"t":{},"d":{},"k":{},"b":{"74":{"position":[[485,20],[1292,20],[1349,20],[2639,20]]},"75":{"position":[[32011,20]]}}}],["can_callback_args_t",{"_index":2120,"t":{},"d":{},"k":{},"b":{"74":{"position":[[538,19],[2086,19],[2142,19],[2343,19],[2714,21],[3875,19],[6575,19]]},"75":{"position":[[718,19],[27041,20],[40165,19]]}}}],["can_callback_args_t::error",{"_index":2437,"t":{},"d":{},"k":{},"b":{"75":{"position":[[22872,27]]}}}],["can_callback_args_t::ev",{"_index":2436,"t":{},"d":{},"k":{},"b":{"75":{"position":[[22822,26]]}}}],["can_cfg_t",{"_index":2121,"t":{},"d":{},"k":{},"b":{"74":{"position":[[568,9],[2498,9],[2544,9],[3268,9],[4038,9],[7402,9]]},"75":{"position":[[67,9],[35658,9]]}}}],["can_clk",{"_index":2351,"t":{},"d":{},"k":{},"b":{"75":{"position":[[15152,7]]}}}],["can_ctrl_t",{"_index":2124,"t":{},"d":{},"k":{},"b":{"74":{"position":[[649,10],[3240,12],[3318,12],[3417,12],[3517,12],[3574,12],[3692,12],[3772,12],[4011,11],[4453,11],[4917,11],[5341,11],[5623,11],[6089,11],[6473,11],[7326,10],[7594,10],[7647,10]]},"75":{"position":[[36,11],[123,11],[180,11],[287,11],[404,11],[527,11],[616,11],[35566,10],[36377,10],[36729,10],[37725,10],[38476,10],[39362,10],[39877,10]]}}}],["can_data_buffer_length",{"_index":2491,"t":{},"d":{},"k":{},"b":{"75":{"position":[[29939,23]]}}}],["can_event_bus_recoveri",{"_index":2211,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8099,22]]}}}],["can_event_err_bus_lock",{"_index":2214,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8207,22]]}}}],["can_event_err_bus_off",{"_index":2210,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8060,21]]}}}],["can_event_err_channel",{"_index":2218,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8282,21]]},"75":{"position":[[22769,21],[27573,22]]}}}],["can_event_err_glob",{"_index":2222,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8476,20]]},"75":{"position":[[22794,20],[27496,21]]}}}],["can_event_err_pass",{"_index":2208,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8015,21]]}}}],["can_event_fifo_message_lost",{"_index":2224,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8576,27]]}}}],["can_event_mailbox_message_lost",{"_index":2213,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8148,30]]}}}],["can_event_rx_complet",{"_index":2220,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8379,21]]},"75":{"position":[[27116,22]]}}}],["can_event_t",{"_index":2125,"t":{},"d":{},"k":{},"b":{"74":{"position":[[683,11],[2272,11],[7867,11],[7913,11]]}}}],["can_event_tx_abort",{"_index":2219,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8334,20]]}}}],["can_event_tx_complet",{"_index":2221,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8427,21]]},"75":{"position":[[27361,22]]}}}],["can_event_tx_fifo_empti",{"_index":2223,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8526,23]]}}}],["can_example_64_byt",{"_index":2413,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20683,21],[29045,20],[29757,21]]}}}],["can_example_id",{"_index":2408,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20513,15],[26887,14],[28222,15],[29587,15]]}}}],["can_frame_t",{"_index":2119,"t":{},"d":{},"k":{},"b":{"74":{"position":[[516,11],[1686,11],[1734,11],[2449,11],[3370,11],[3469,11],[4504,11],[4968,11]]},"75":{"position":[[234,11],[341,11],[36900,11],[37896,11]]}}}],["can_frame_t::data",{"_index":2444,"t":{},"d":{},"k":{},"b":{"75":{"position":[[23843,17]]}}}],["can_frame_t::opt",{"_index":2404,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20247,20]]}}}],["can_frame_type_data",{"_index":2385,"t":{},"d":{},"k":{},"b":{"75":{"position":[[18869,20],[20625,20],[25623,20],[26231,20],[28334,20],[29699,20]]}}}],["can_frame_type_remot",{"_index":2240,"t":{},"d":{},"k":{},"b":{"74":{"position":[[9765,21]]}}}],["can_frame_type_t",{"_index":2129,"t":{},"d":{},"k":{},"b":{"74":{"position":[[782,16],[1874,16],[9618,16],[9669,16]]}}}],["can_id_mode_extend",{"_index":2238,"t":{},"d":{},"k":{},"b":{"74":{"position":[[9558,20]]},"75":{"position":[[18915,21],[26316,20]]}}}],["can_id_mode_standard",{"_index":2410,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20566,21],[25669,20],[28275,21],[29640,21]]}}}],["can_id_mode_t",{"_index":2128,"t":{},"d":{},"k":{},"b":{"74":{"position":[[759,13],[1817,13],[9401,13],[9449,13]]}}}],["can_info_t",{"_index":2117,"t":{},"d":{},"k":{},"b":{"74":{"position":[[464,10],[835,10],[882,10],[3720,10],[6116,10]]},"75":{"position":[[558,10],[39454,10]]}}}],["can_instance_ctrl_t",{"_index":2204,"t":{},"d":{},"k":{},"b":{"74":{"position":[[7785,19]]}}}],["can_instance_t",{"_index":2123,"t":{},"d":{},"k":{},"b":{"74":{"position":[[608,14],[7137,14],[7188,14]]}}}],["can_operation_mode_halt",{"_index":2227,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8868,23]]}}}],["can_operation_mode_norm",{"_index":2490,"t":{},"d":{},"k":{},"b":{"75":{"position":[[29376,26],[38926,26]]}}}],["can_operation_mode_reset",{"_index":2226,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8815,24]]}}}],["can_operation_mode_sleep",{"_index":2228,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8919,24]]}}}],["can_operation_mode_t",{"_index":2126,"t":{},"d":{},"k":{},"b":{"74":{"position":[[704,20],[3606,20],[5654,20],[8635,20],[8690,20]]},"75":{"position":[[435,20],[38568,20]]}}}],["can_test_mode_internal_bu",{"_index":2236,"t":{},"d":{},"k":{},"b":{"74":{"position":[[9317,26]]}}}],["can_test_mode_listen",{"_index":2231,"t":{},"d":{},"k":{},"b":{"74":{"position":[[9138,20]]}}}],["can_test_mode_loopback_extern",{"_index":2233,"t":{},"d":{},"k":{},"b":{"74":{"position":[[9183,31]]},"75":{"position":[[29403,33],[38953,33]]}}}],["can_test_mode_loopback_intern",{"_index":2235,"t":{},"d":{},"k":{},"b":{"74":{"position":[[9250,31]]}}}],["can_test_mode_t",{"_index":2127,"t":{},"d":{},"k":{},"b":{"74":{"position":[[734,15],[3643,15],[5691,15],[8979,15],[9029,15]]},"75":{"position":[[472,15],[38667,15]]}}}],["cancel",{"_index":1927,"t":{},"d":{},"k":{},"b":{"71":{"position":[[14853,7],[15727,6],[16622,6],[17521,6],[18420,6],[19315,6],[20212,6],[21111,6],[22008,6],[22905,6],[23802,6],[24699,6],[25598,6],[26495,6],[27392,6],[28268,7]]},"139":{"position":[[1549,12],[14492,12],[16740,12],[16832,13],[16898,13]]},"140":{"position":[[1570,12],[11387,12],[13012,12],[13103,13],[13168,13]]}}}],["canfd",{"_index":1998,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34598,5],[34618,6],[35214,5],[35234,6]]},"74":{"position":[[9344,5]]},"75":{"position":[[803,5],[889,5],[11510,5],[11567,5],[11665,5],[13783,5],[14685,5],[14954,5],[15089,5],[15196,5],[15375,6],[15959,6],[15985,5],[16083,5],[16385,5],[17649,5],[18201,5],[18408,5],[20021,5],[21520,5],[22464,5],[23902,5],[24152,5],[24370,6],[24739,5],[26744,5],[30250,5],[30426,5],[31194,5],[31786,5],[32486,5],[33092,5],[34488,5],[34620,5],[34739,5],[34866,5],[34993,5],[35126,5],[35424,5],[35791,5],[36456,5],[37026,5],[38021,5],[39564,5]]},"112":{"position":[[122,5]]},"152":{"position":[[1127,5]]}}}],["canfd_0_pclk",{"_index":2350,"t":{},"d":{},"k":{},"b":{"75":{"position":[[15103,12]]}}}],["canfd_afl_entry_t",{"_index":2381,"t":{},"d":{},"k":{},"b":{"75":{"position":[[18651,17],[25370,17],[30586,17],[30952,17],[31006,17],[31830,17]]}}}],["canfd_basic_exampl",{"_index":2470,"t":{},"d":{},"k":{},"b":{"75":{"position":[[27901,19]]}}}],["canfd_callback",{"_index":2466,"t":{},"d":{},"k":{},"b":{"75":{"position":[[27026,14]]}}}],["canfd_clock_hz",{"_index":2355,"t":{},"d":{},"k":{},"b":{"75":{"position":[[15303,14]]}}}],["canfd_error_channel_ack",{"_index":2548,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33652,23]]}}}],["canfd_error_channel_ack_delimit",{"_index":2553,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33854,33]]}}}],["canfd_error_channel_arbitration_loss",{"_index":2543,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33515,36]]}}}],["canfd_error_channel_bit_domin",{"_index":2552,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33791,32]]}}}],["canfd_error_channel_bit_recess",{"_index":2551,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33726,33]]}}}],["canfd_error_channel_bus_lock",{"_index":2542,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33472,28]]}}}],["canfd_error_channel_bus_off_entri",{"_index":2539,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33306,33]]}}}],["canfd_error_channel_bus_off_recoveri",{"_index":2540,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33363,36]]}}}],["canfd_error_channel_crc",{"_index":2550,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33689,23]]}}}],["canfd_error_channel_form",{"_index":2546,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33613,24]]}}}],["canfd_error_channel_overload",{"_index":2541,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33431,28]]}}}],["canfd_error_channel_pass",{"_index":2537,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33232,27]]}}}],["canfd_error_channel_stuff",{"_index":2544,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33572,25]]}}}],["canfd_error_channel_warn",{"_index":2534,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33158,27]]}}}],["canfd_error_global_ch0_ecc",{"_index":2562,"t":{},"d":{},"k":{},"b":{"75":{"position":[[34302,26]]}}}],["canfd_error_global_ch0_scan_fail",{"_index":2560,"t":{},"d":{},"k":{},"b":{"75":{"position":[[34178,32]]}}}],["canfd_error_global_ch1_ecc",{"_index":2564,"t":{},"d":{},"k":{},"b":{"75":{"position":[[34352,26]]}}}],["canfd_error_global_ch1_scan_fail",{"_index":2561,"t":{},"d":{},"k":{},"b":{"75":{"position":[[34240,32]]}}}],["canfd_error_global_dlc",{"_index":2555,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33911,22]]}}}],["canfd_error_global_message_lost",{"_index":2556,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33947,31]]}}}],["canfd_error_global_payload_overflow",{"_index":2557,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33995,35]]}}}],["canfd_error_global_txq_message_lost",{"_index":2559,"t":{},"d":{},"k":{},"b":{"75":{"position":[[34117,35]]}}}],["canfd_error_global_txq_overwrit",{"_index":2558,"t":{},"d":{},"k":{},"b":{"75":{"position":[[34054,32]]}}}],["canfd_error_t",{"_index":2438,"t":{},"d":{},"k":{},"b":{"75":{"position":[[22934,14],[26974,13],[27003,15],[27708,15],[27764,14],[30711,13],[33013,13],[33061,13]]}}}],["canfd_extended_cfg_t",{"_index":2496,"t":{},"d":{},"k":{},"b":{"75":{"position":[[30643,20],[31691,20],[31748,20]]}}}],["canfd_fd_loopback_exampl",{"_index":2488,"t":{},"d":{},"k":{},"b":{"75":{"position":[[29076,25]]}}}],["canfd_frame_option_br",{"_index":2416,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20766,23],[29840,23],[35208,22]]}}}],["canfd_frame_option_fd",{"_index":2415,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20742,21],[29816,21],[35267,21]]}}}],["canfd_frame_options_t",{"_index":2405,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20294,22],[30861,21],[35031,21],[35087,21]]}}}],["canfd_global_cfg_t",{"_index":2495,"t":{},"d":{},"k":{},"b":{"75":{"position":[[30614,18],[31103,18],[31158,18],[32183,18]]}}}],["canfd_instance_ctrl_t",{"_index":2205,"t":{},"d":{},"k":{},"b":{"74":{"position":[[7805,21]]}}}],["canfd_minimum_dlc_0",{"_index":2393,"t":{},"d":{},"k":{},"b":{"75":{"position":[[19342,20],[26551,20]]}}}],["canfd_minimum_dlc_4",{"_index":2454,"t":{},"d":{},"k":{},"b":{"75":{"position":[[25899,20]]}}}],["canfd_minimum_dlc_t",{"_index":2501,"t":{},"d":{},"k":{},"b":{"75":{"position":[[30832,19],[34902,19],[34956,19]]}}}],["canfd_rx_buffer_t",{"_index":2499,"t":{},"d":{},"k":{},"b":{"75":{"position":[[30757,17],[34533,17],[34585,17]]}}}],["canfd_rx_fifo_0",{"_index":2401,"t":{},"d":{},"k":{},"b":{"75":{"position":[[19769,16],[26020,16]]}}}],["canfd_rx_fifo_1",{"_index":2456,"t":{},"d":{},"k":{},"b":{"75":{"position":[[26039,16]]}}}],["canfd_rx_fifo_2",{"_index":2459,"t":{},"d":{},"k":{},"b":{"75":{"position":[[26651,15]]}}}],["canfd_rx_fifo_t",{"_index":2455,"t":{},"d":{},"k":{},"b":{"75":{"position":[[26002,17],[30807,15],[34783,15],[34833,15]]}}}],["canfd_rx_mb_0",{"_index":2458,"t":{},"d":{},"k":{},"b":{"75":{"position":[[26604,14]]}}}],["canfd_rx_mb_non",{"_index":2396,"t":{},"d":{},"k":{},"b":{"75":{"position":[[19613,17],[25952,17]]}}}],["canfd_rx_mb_t",{"_index":2500,"t":{},"d":{},"k":{},"b":{"75":{"position":[[30784,13],[34660,13],[34708,13]]}}}],["canfd_status_bus_off",{"_index":2528,"t":{},"d":{},"k":{},"b":{"75":{"position":[[32717,20]]}}}],["canfd_status_error_pass",{"_index":2527,"t":{},"d":{},"k":{},"b":{"75":{"position":[[32656,26]]}}}],["canfd_status_esi",{"_index":2532,"t":{},"d":{},"k":{},"b":{"75":{"position":[[32923,16]]}}}],["canfd_status_halt_mod",{"_index":2525,"t":{},"d":{},"k":{},"b":{"75":{"position":[[32560,22]]}}}],["canfd_status_readi",{"_index":2531,"t":{},"d":{},"k":{},"b":{"75":{"position":[[32866,18]]}}}],["canfd_status_receiv",{"_index":2530,"t":{},"d":{},"k":{},"b":{"75":{"position":[[32819,22]]}}}],["canfd_status_sleep_mod",{"_index":2526,"t":{},"d":{},"k":{},"b":{"75":{"position":[[32607,23]]}}}],["canfd_status_t",{"_index":2497,"t":{},"d":{},"k":{},"b":{"75":{"position":[[30687,14],[32405,14],[32454,14]]}}}],["canfd_status_transmit",{"_index":2529,"t":{},"d":{},"k":{},"b":{"75":{"position":[[32766,25]]}}}],["canfd_tx_mb_0",{"_index":2477,"t":{},"d":{},"k":{},"b":{"75":{"position":[[28642,14],[30092,14],[37120,14]]}}}],["canfd_tx_mb_t",{"_index":2498,"t":{},"d":{},"k":{},"b":{"75":{"position":[[30734,13],[34409,13],[34457,13]]}}}],["canfd_txmb_merge_mode_t",{"_index":2502,"t":{},"d":{},"k":{},"b":{"75":{"position":[[30892,23],[32279,23],[35325,23],[35383,23]]}}}],["canh",{"_index":2485,"t":{},"d":{},"k":{},"b":{"75":{"position":[[29014,4]]}}}],["canl",{"_index":2486,"t":{},"d":{},"k":{},"b":{"75":{"position":[[29023,4]]}}}],["capabl",{"_index":2370,"t":{},"d":{},"k":{},"b":{"75":{"position":[[17101,13]]},"87":{"position":[[1207,12]]},"88":{"position":[[6575,12]]},"124":{"position":[[6873,7]]}}}],["capac",{"_index":2275,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2465,11],[17157,8],[17254,8],[23740,8]]},"131":{"position":[[3280,8],[6022,8]]}}}],["captur",{"_index":861,"t":{},"d":{},"k":{},"b":{"68":{"position":[[19157,7],[19237,7],[19317,7],[19397,7],[19477,7],[19557,7],[19637,7]]},"76":{"position":[[1378,7],[3604,7],[3711,7],[4463,7],[4515,7],[4565,7],[4643,7],[4694,7],[4746,7],[4796,7],[4874,7],[4979,7],[5109,7],[5214,7],[5344,7],[5704,8],[8653,7],[8709,7],[8793,7],[9196,7],[9316,9],[9454,8],[9872,9],[9882,8],[9992,9],[12702,7],[12788,7],[13682,7],[13742,7],[13807,7],[13870,7],[14519,8],[14606,8],[19523,7],[19599,9],[19609,8],[20088,7],[20177,9]]},"83":{"position":[[2685,7],[6422,7],[9803,7],[9972,7],[10252,7],[10331,7],[10358,7],[10437,7],[11335,7],[11392,7],[11428,7],[11534,7],[11560,7],[11617,7],[11653,7],[11759,7],[18849,7],[18923,7],[19866,7],[19962,8],[21984,7],[22039,7],[22123,7],[22847,9],[22985,8],[23343,9],[23353,8],[23462,9],[30736,7],[30816,7],[31353,7],[31409,7],[31529,7],[31578,7],[37895,7],[49060,7],[49505,7]]},"84":{"position":[[12921,7],[13296,7]]},"92":{"position":[[14844,8],[31840,8],[31966,8],[36646,8],[36772,8]]},"93":{"position":[[6449,8]]},"105":{"position":[[5378,7],[5527,7],[5676,7],[5825,7],[6682,7],[6812,7],[7223,7],[7253,7],[7284,7],[7609,7],[7639,7],[7670,7],[8265,7],[8322,7],[8358,7],[8465,7],[8491,7],[8548,7],[8584,7],[8691,7],[21551,7],[21620,7],[21687,7],[24193,8],[24266,8]]},"131":{"position":[[5341,8]]},"144":{"position":[[1322,7],[1343,8],[5999,8],[6322,8],[10970,7],[11030,7],[11344,7],[11404,7],[11464,7]]}}}],["capture/compar",{"_index":828,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16114,15]]},"105":{"position":[[2903,15],[5455,15],[5604,15],[5753,15],[5902,15],[9248,15],[9370,15],[19578,15],[19634,15],[19690,15],[19775,15],[20383,15],[20453,15],[20525,15],[20588,15],[27733,15],[27840,15]]}}}],["capture0",{"_index":2625,"t":{},"d":{},"k":{},"b":{"76":{"position":[[2994,8]]}}}],["capture1",{"_index":2626,"t":{},"d":{},"k":{},"b":{"76":{"position":[[3010,8]]}}}],["capture_a_ipl",{"_index":3448,"t":{},"d":{},"k":{},"b":{"83":{"position":[[31338,13]]},"105":{"position":[[20368,13]]}}}],["capture_a_irq",{"_index":3451,"t":{},"d":{},"k":{},"b":{"83":{"position":[[31514,13]]},"105":{"position":[[20510,13]]}}}],["capture_a_sourc",{"_index":3440,"t":{},"d":{},"k":{},"b":{"83":{"position":[[30691,16]]}}}],["capture_b_ipl",{"_index":3449,"t":{},"d":{},"k":{},"b":{"83":{"position":[[31394,13]]},"105":{"position":[[20438,13]]}}}],["capture_b_irq",{"_index":3452,"t":{},"d":{},"k":{},"b":{"83":{"position":[[31563,13]]},"105":{"position":[[20573,13]]}}}],["capture_b_sourc",{"_index":3441,"t":{},"d":{},"k":{},"b":{"83":{"position":[[30771,16]]}}}],["capture_filter_gtioca",{"_index":3446,"t":{},"d":{},"k":{},"b":{"83":{"position":[[31257,21]]}}}],["capture_filter_gtiocb",{"_index":3447,"t":{},"d":{},"k":{},"b":{"83":{"position":[[31304,21]]}}}],["capture_ic0_ipl",{"_index":2723,"t":{},"d":{},"k":{},"b":{"76":{"position":[[13062,15]]}}}],["capture_ic0_irq",{"_index":2726,"t":{},"d":{},"k":{},"b":{"76":{"position":[[13190,15]]}}}],["capture_ic0_sourc",{"_index":2714,"t":{},"d":{},"k":{},"b":{"76":{"position":[[12655,18]]}}}],["capture_ic1_ipl",{"_index":2725,"t":{},"d":{},"k":{},"b":{"76":{"position":[[13125,15]]}}}],["capture_ic1_irq",{"_index":2727,"t":{},"d":{},"k":{},"b":{"76":{"position":[[13246,15]]}}}],["capture_ic1_sourc",{"_index":2715,"t":{},"d":{},"k":{},"b":{"76":{"position":[[12741,18]]}}}],["card",{"_index":5758,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11326,4],[11399,4],[11535,4],[11675,4]]}}}],["care",{"_index":2098,"t":{},"d":{},"k":{},"b":{"71":{"position":[[46156,4]]}}}],["carefulli",{"_index":1795,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6341,9]]}}}],["carri",{"_index":2094,"t":{},"d":{},"k":{},"b":{"71":{"position":[[45846,7]]},"136":{"position":[[1729,5],[5931,5],[6005,5],[6786,5],[7270,5],[7378,5],[10648,5],[13624,5]]},"137":{"position":[[3278,5],[3329,5]]}}}],["carry_ipl",{"_index":7042,"t":{},"d":{},"k":{},"b":{"137":{"position":[[3267,9]]}}}],["carry_irq",{"_index":7043,"t":{},"d":{},"k":{},"b":{"137":{"position":[[3318,9]]}}}],["carry_isr_trigg",{"_index":6990,"t":{},"d":{},"k":{},"b":{"136":{"position":[[10619,19]]}}}],["cascad",{"_index":4873,"t":{},"d":{},"k":{},"b":{"105":{"position":[[3066,7]]}}}],["case",{"_index":414,"t":{},"d":{},"k":{},"b":{"67":{"position":[[6210,4],[6602,4],[7014,4]]},"68":{"position":[[28852,6]]},"71":{"position":[[5921,5],[6947,5],[45788,4],[46204,4]]},"75":{"position":[[11093,5],[16556,5],[23803,5],[27111,4],[27356,4],[27491,4],[27568,4]]},"76":{"position":[[6697,5]]},"79":{"position":[[7548,5]]},"83":{"position":[[16898,5]]},"84":{"position":[[5873,5]]},"88":{"position":[[21070,5],[21414,5],[25564,4],[25756,4],[25917,4],[26052,4],[28328,4],[28489,4],[29105,4],[29537,4],[32813,4],[32948,4],[33998,4],[34623,4],[34848,4],[35094,4],[36437,4],[37911,4],[38879,4]]},"107":{"position":[[8934,4]]},"124":{"position":[[17557,4],[19085,4]]},"125":{"position":[[5311,5],[15797,4],[15910,4],[16908,4],[17020,4]]},"128":{"position":[[6149,5]]},"131":{"position":[[12513,4],[12668,4],[12816,4]]},"135":{"position":[[6179,4],[7441,5]]},"138":{"position":[[6449,6]]},"139":{"position":[[10591,4],[11422,4],[11560,4]]},"140":{"position":[[7961,4],[8791,4],[8929,4]]},"142":{"position":[[7059,4],[8615,5]]},"143":{"position":[[2541,4]]},"148":{"position":[[4772,6]]},"151":{"position":[[2480,5]]}}}],["cast",{"_index":2439,"t":{},"d":{},"k":{},"b":{"75":{"position":[[22949,4]]},"76":{"position":[[11304,4],[17094,4]]},"83":{"position":[[24735,4],[25956,4]]},"84":{"position":[[8510,4]]},"105":{"position":[[15041,4],[31680,4]]}}}],["caus",{"_index":1754,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3691,6]]},"75":{"position":[[21854,5]]},"82":{"position":[[975,6]]},"107":{"position":[[862,6]]},"108":{"position":[[4366,5],[4489,5]]},"125":{"position":[[7301,7]]},"128":{"position":[[5061,6],[5170,6],[16275,5]]},"136":{"position":[[2900,6]]},"137":{"position":[[1046,6]]},"144":{"position":[[1289,6]]},"145":{"position":[[7120,5],[10773,6],[11044,5],[11438,5],[11622,6],[11956,5]]}}}],["cb_data",{"_index":3038,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10917,9],[11265,9]]}}}],["ccc",{"_index":3865,"t":{},"d":{},"k":{},"b":{"87":{"position":[[2941,3],[18839,6]]},"88":{"position":[[50192,3]]}}}],["ccitt",{"_index":2809,"t":{},"d":{},"k":{},"b":{"77":{"position":[[990,6],[2088,5]]},"78":{"position":[[4868,5]]}}}],["cco",{"_index":5736,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10365,3],[10430,3]]}}}],["cda",{"_index":6713,"t":{},"d":{},"k":{},"b":{"134":{"position":[[1308,3],[1702,3],[1772,3]]}}}],["cellular",{"_index":5790,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12773,8],[12842,8],[13078,8],[13196,8]]}}}],["celsiu",{"_index":6376,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1015,9],[13936,9]]},"131":{"position":[[1982,9],[20403,9]]},"146":{"position":[[2861,9],[2977,9],[4058,7],[14299,7],[14322,7],[24887,8]]}}}],["central",{"_index":3105,"t":{},"d":{},"k":{},"b":{"80":{"position":[[879,7]]}}}],["certain",{"_index":2259,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1766,7]]},"143":{"position":[[7964,7]]}}}],["certainli",{"_index":2096,"t":{},"d":{},"k":{},"b":{"71":{"position":[[45960,9]]}}}],["cfc",{"_index":5756,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11268,3]]}}}],["cfdgcfg",{"_index":2508,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31371,8]]}}}],["cfdgctr",{"_index":2506,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31288,8]]}}}],["cfdrfccn",{"_index":2510,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31451,9]]}}}],["cfdrmnb",{"_index":2512,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31544,8]]}}}],["cfg",{"_index":4429,"t":{},"d":{},"k":{},"b":{"92":{"position":[[327,4],[30639,3]]},"93":{"position":[[1784,4],[3966,4]]}}}],["cfg.h",{"_index":5558,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2517,6]]}}}],["cgc",{"_index":2642,"t":{},"d":{},"k":{},"b":{"76":{"position":[[5550,3]]},"79":{"position":[[5801,3]]},"148":{"position":[[3667,3]]},"150":{"position":[[6144,3]]}}}],["ch",{"_index":1884,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12056,3],[12093,3],[12142,3],[12190,3],[12239,3],[12287,3],[12338,3],[12388,3],[12437,3],[12485,3],[12534,3],[12582,3],[12632,3],[12681,3],[12731,3],[12780,3],[12829,3],[12877,3],[12927,3],[12976,3],[13025,3],[13073,3],[13123,3],[13172,3],[13222,3],[13271,3],[13320,3],[13368,3],[13418,3],[13467,3],[14780,2],[15205,2],[15654,2],[16100,2],[16549,2],[16995,2],[17448,2],[17898,2],[18347,2],[18793,2],[19242,2],[19688,2],[20139,2],[20587,2],[21038,2],[21486,2],[21935,2],[22381,2],[22832,2],[23280,2],[23729,2],[24175,2],[24626,2],[25074,2],[25525,2],[25973,2],[26422,2],[26868,2],[27319,2],[27767,2],[28398,2],[28825,2]]},"92":{"position":[[21227,2],[21286,2],[23624,2],[23683,2]]},"105":{"position":[[6044,3],[17801,3],[22146,3],[22196,3],[22248,3],[22300,3],[22350,3],[22400,3],[22452,3]]}}}],["ch0",{"_index":845,"t":{},"d":{},"k":{},"b":{"68":{"position":[[17705,4]]},"69":{"position":[[20962,4]]},"105":{"position":[[1839,3],[22528,5],[22606,5],[22684,5],[22762,5],[22815,5],[22870,5],[22950,5]]},"106":{"position":[[12719,3],[12854,3]]},"124":{"position":[[4932,3]]},"125":{"position":[[3740,3]]}}}],["ch0~15).the",{"_index":3311,"t":{},"d":{},"k":{},"b":{"83":{"position":[[3896,12]]}}}],["ch0~2",{"_index":3306,"t":{},"d":{},"k":{},"b":{"83":{"position":[[3613,8],[3947,8]]}}}],["ch0~7",{"_index":3305,"t":{},"d":{},"k":{},"b":{"83":{"position":[[3562,8]]}}}],["ch1",{"_index":846,"t":{},"d":{},"k":{},"b":{"68":{"position":[[17719,4]]},"105":{"position":[[19746,3],[19831,3],[23028,5],[23106,5],[23159,5],[23273,5]]},"106":{"position":[[12764,3],[12897,3]]}}}],["ch15",{"_index":1135,"t":{},"d":{},"k":{},"b":{"69":{"position":[[20977,5]]}}}],["ch2",{"_index":5016,"t":{},"d":{},"k":{},"b":{"105":{"position":[[23351,5],[23429,5],[23507,5],[23562,5],[23615,5]]},"106":{"position":[[12809,3],[12940,3]]}}}],["ch3",{"_index":5022,"t":{},"d":{},"k":{},"b":{"105":{"position":[[23676,4],[23746,4],[23839,4],[23932,4]]}}}],["ch4",{"_index":5079,"t":{},"d":{},"k":{},"b":{"105":{"position":[[37374,4]]}}}],["ch7",{"_index":4870,"t":{},"d":{},"k":{},"b":{"105":{"position":[[1846,3],[37379,3]]},"124":{"position":[[4939,4]]},"125":{"position":[[3747,4]]}}}],["ch8",{"_index":4871,"t":{},"d":{},"k":{},"b":{"105":{"position":[[1850,3]]},"124":{"position":[[4955,4]]},"125":{"position":[[3763,4]]}}}],["chain",{"_index":7790,"t":{},"d":{},"k":{},"b":{"145":{"position":[[3309,5],[3373,7],[15541,5],[15637,5],[15854,8],[16082,7],[16163,7]]}}}],["chanc",{"_index":8053,"t":{},"d":{},"k":{},"b":{"148":{"position":[[8630,6]]}}}],["chang",{"_index":44,"t":{},"d":{},"k":{},"b":{"0":{"position":[[696,6]]},"71":{"position":[[11841,6],[11881,6],[42350,7],[43202,7]]},"72":{"position":[[430,6]]},"75":{"position":[[15904,8],[39193,6]]},"83":{"position":[[16059,8],[18766,6]]},"89":{"position":[[5781,8]]},"90":{"position":[[5397,8]]},"91":{"position":[[6952,8]]},"92":{"position":[[11324,7],[12429,7],[30992,6],[31109,6],[31252,6],[35521,7],[35673,8]]},"93":{"position":[[242,8]]},"105":{"position":[[14336,7],[30975,7]]},"129":{"position":[[1652,7],[3039,8],[4327,8],[8039,6],[8442,6],[15434,7]]},"130":{"position":[[4751,6]]},"131":{"position":[[4824,6],[9048,8]]},"133":{"position":[[7846,7],[13134,6],[17268,6],[21572,6],[26586,6],[32739,6],[36854,6],[41159,6],[45411,6]]},"135":{"position":[[3180,6],[8046,6]]},"136":{"position":[[3909,7],[18226,8]]},"139":{"position":[[1500,6],[21973,8]]},"140":{"position":[[1521,6],[19831,8]]},"142":{"position":[[5240,6],[8928,6]]},"143":{"position":[[1782,7],[6994,6],[7054,6]]},"144":{"position":[[12803,6]]},"145":{"position":[[5937,7],[6030,7],[9604,7],[9697,7]]},"146":{"position":[[13140,7]]},"147":{"position":[[318,6],[6528,6]]},"150":{"position":[[2933,7],[10441,6]]}}}],["channel",{"_index":290,"t":{"94":{"position":[[86,9]]},"95":{"position":[[82,8]]},"98":{"position":[[78,8]]},"99":{"position":[[82,8]]},"104":{"position":[[78,8]]}},"d":{},"k":{},"b":{"67":{"position":[[1447,7],[1456,7],[1564,7],[5204,8],[5682,9],[7956,7],[8435,7],[9582,7],[11025,7],[11149,9],[11823,7],[12365,9],[12474,9],[12541,9],[14388,8],[14427,7],[14458,7],[14489,7],[14520,7],[14551,7],[14582,7],[14613,7],[14644,7],[14675,7],[14706,7],[14738,7],[14771,7],[14804,7],[14837,7],[14870,7],[14903,7],[14936,7],[14969,7],[15002,7],[15035,7],[15068,7],[15101,7],[15134,7],[15167,7],[15200,7],[15233,7],[15266,7],[15299,7],[15332,7]]},"68":{"position":[[1451,8],[1935,7],[2006,8],[2037,7],[2407,7],[2467,8],[5048,8],[5373,8],[7623,7],[8376,8],[8417,7],[9004,8],[9379,7],[10050,9],[12744,9],[13551,10],[15611,9],[16322,10],[18207,9],[18247,8],[18289,7],[18328,7],[18367,7],[18406,7],[18445,7],[18484,7],[18523,7],[18562,7],[18601,7],[18636,7],[22988,7],[24139,7],[24755,7],[24851,9],[24867,8],[27531,7],[28182,7],[28800,9]]},"69":{"position":[[1403,8],[1735,8],[1792,8],[4189,8],[4210,7],[4221,7],[4232,7],[4243,7],[4254,7],[4265,7],[4276,7],[4287,7],[4305,8],[4380,7],[4404,8],[4451,7],[4462,7],[4473,7],[4484,7],[4495,7],[4506,7],[4517,7],[4528,7],[4588,7],[5198,7],[5217,8],[5264,7],[5275,7],[5286,7],[5297,7],[5308,7],[5319,7],[5330,7],[5341,7],[5352,7],[5371,7],[6378,7],[6397,7],[6408,7],[6419,7],[6430,7],[6441,7],[6452,7],[6463,7],[6474,7],[6547,8],[6633,8],[6690,7],[6701,7],[6712,7],[6723,7],[6734,7],[6745,7],[6756,7],[6767,7],[6820,8],[6877,7],[6888,7],[6899,7],[6910,7],[6921,7],[6932,7],[6943,7],[6954,7],[7007,8],[7069,8],[7116,7],[7127,7],[7138,7],[7149,7],[7160,7],[7171,7],[7182,7],[7193,7],[7211,8],[7476,8],[7733,7],[7865,7],[7958,7],[10196,8],[10388,8],[10433,7],[10525,8],[10603,8],[11419,8],[12176,7],[12476,7],[13166,7],[13923,9],[14873,7],[15360,8],[16561,8],[16661,7],[16947,7],[17366,7],[17431,7],[17448,9],[17913,7],[20211,7],[20285,7],[20694,8],[21796,8],[21848,8],[21890,7],[21929,7],[21968,7],[22007,7],[22046,7],[22085,7],[22124,7],[22163,7],[23352,8],[23557,8],[23695,8],[28632,7],[30566,7],[31182,7],[31278,9],[31294,8],[34931,7],[35582,7]]},"70":{"position":[[439,8],[538,8],[803,8],[10424,9],[10481,7],[10529,7],[10667,9],[10736,7],[10796,7],[15670,8],[15856,7],[16030,8],[16210,7],[16447,7],[16684,7],[16880,8],[17072,7]]},"71":{"position":[[13503,8],[13543,8],[14964,8],[14977,7],[15007,9],[15389,8],[15402,7],[15432,9],[15837,8],[15850,7],[15880,9],[16284,8],[16297,7],[16327,9],[16732,8],[16745,7],[16775,9],[17179,8],[17192,7],[17222,9],[17631,8],[17644,7],[17674,9],[18082,8],[18095,7],[18125,9],[18530,8],[18543,7],[18573,9],[18977,8],[18990,7],[19020,9],[19425,8],[19438,7],[19468,9],[19872,8],[19885,7],[19915,9],[20322,8],[20335,7],[20365,9],[20771,8],[20784,7],[20814,9],[21221,8],[21234,7],[21264,9],[21670,8],[21683,7],[21713,9],[22118,8],[22131,7],[22161,9],[22565,8],[22578,7],[22608,9],[23015,8],[23028,7],[23058,9],[23464,8],[23477,7],[23507,9],[23912,8],[23925,7],[23955,9],[24359,8],[24372,7],[24402,9],[24809,8],[24822,7],[24852,9],[25258,8],[25271,7],[25301,9],[25708,8],[25721,7],[25751,9],[26157,8],[26170,7],[26200,9],[26605,8],[26618,7],[26648,9],[27052,8],[27065,7],[27095,9],[27502,8],[27515,7],[27545,9],[27951,8],[27964,7],[27994,9],[28190,7],[28385,8],[28423,9],[28617,7],[28812,8],[28850,9]]},"74":{"position":[[2238,7],[2254,7],[2613,7],[2626,8],[6167,7],[6271,7],[6291,7],[6355,7],[8304,7]]},"75":{"position":[[1185,7],[1415,7],[1474,8],[1811,7],[1890,7],[2076,8],[3093,7],[3182,7],[9931,7],[10042,7],[10090,7],[10201,7],[10249,7],[10359,7],[10407,7],[10517,7],[10565,7],[10675,7],[10723,7],[10833,7],[11871,7],[14272,7],[14349,7],[14526,7],[14583,7],[15991,8],[16827,9],[17062,9],[18485,8],[22521,7],[22566,7],[22586,7],[22676,7],[24158,8],[25022,8],[25081,7],[25146,7],[25240,7],[27621,7],[30256,8],[30432,8],[32263,7],[32535,7],[32583,7],[32631,7],[32683,7],[32738,7],[32792,7],[32842,7],[32885,7],[34211,7],[34273,7],[34329,7],[34379,7],[35797,7],[36462,8],[37032,8],[38796,8],[39607,8]]},"76":{"position":[[2415,8],[5952,7],[12148,7],[23868,7]]},"77":{"position":[[764,7],[8055,7],[8200,9],[8233,7],[8281,7]]},"78":{"position":[[347,9],[917,7],[926,7]]},"79":{"position":[[1685,7],[2400,8],[4130,7],[4224,7],[6090,8],[9939,7],[9948,7],[10851,7],[15972,7],[16681,8],[16842,7]]},"82":{"position":[[931,7],[962,7],[1171,7],[1189,7]]},"83":{"position":[[2941,7],[3538,8],[3553,8],[3589,8],[3604,8],[3871,8],[3887,8],[3923,8],[3938,8],[4888,9],[5373,8],[12349,7],[12365,7],[12381,7],[12397,7],[12413,7],[12458,7],[15190,8],[19147,9],[19559,9],[26862,9],[28738,7],[29137,7],[29182,8],[39503,7],[39527,8],[39582,7],[39598,7],[39654,7],[39670,7],[39726,7],[39742,7],[39798,7],[39814,7],[47368,7],[47521,7],[56345,7]]},"84":{"position":[[1916,8],[2023,9],[2821,8],[9084,7],[16376,7]]},"85":{"position":[[1278,7],[2291,7]]},"86":{"position":[[1087,7],[2137,7]]},"87":{"position":[[4270,7],[4491,7],[4582,7],[4611,7]]},"88":{"position":[[16991,7],[44504,7],[44877,8]]},"89":{"position":[[1146,8],[2188,8],[3003,7],[3602,8],[4642,7],[4729,7],[4738,8],[5715,7],[5844,8],[5892,7],[6027,9],[6070,8],[6326,7],[6524,7],[6878,7],[7078,7],[8409,8],[8586,7]]},"90":{"position":[[1135,8],[2721,7],[3248,8],[4274,7],[4361,7],[4370,8],[5331,7],[5460,8],[5577,9],[5620,8],[5876,7],[6074,7],[6428,7],[6628,7],[7959,8],[8136,7]]},"91":{"position":[[1155,8],[2199,8],[3081,7],[3828,8],[5046,7],[5128,7],[5137,8],[6886,7],[7015,8],[7063,7],[7198,9],[7241,8],[7499,8],[7689,7],[8045,8],[8237,7],[9572,8],[9749,7]]},"94":{"position":[[365,8],[421,8],[474,8],[532,8],[1033,7],[1042,7],[1255,7],[1630,7],[4024,8],[5480,7],[5556,7]]},"95":{"position":[[582,10],[1356,7],[1659,8],[1681,7],[1690,7],[2587,7]]},"96":{"position":[[1142,7],[1477,8],[1499,7],[1508,7],[2297,7]]},"97":{"position":[[890,7],[1224,8],[1245,7],[1254,7],[1975,7]]},"98":{"position":[[577,10],[1294,7],[1597,8],[1619,7],[1628,7],[2521,7]]},"99":{"position":[[572,10],[1327,7],[1630,8],[1652,7],[1661,7],[2550,7]]},"100":{"position":[[1115,7],[1450,8],[1472,7],[1481,7],[2262,7]]},"101":{"position":[[1081,7],[1090,7],[1290,7],[1599,7]]},"102":{"position":[[865,7],[1199,8],[1220,7],[1229,7],[1942,7]]},"103":{"position":[[1056,7],[1065,7],[1267,7]]},"104":{"position":[[567,10],[1265,7],[1568,8],[1590,7],[1599,7],[2484,7]]},"105":{"position":[[2738,8],[3569,8],[3677,9],[4661,8],[6426,9],[6780,8],[10797,8],[17459,7],[17602,7],[17726,8],[17899,7],[28765,7]]},"106":{"position":[[12466,8],[14549,7],[22172,7],[22758,7],[23854,7],[24579,7],[25055,7]]},"107":{"position":[[8862,7],[8918,7],[8967,7]]},"108":{"position":[[1809,8],[3118,7],[3135,7],[3212,8],[3252,7],[3294,7],[3442,8],[5060,7],[5304,7],[6313,7]]},"109":{"position":[[1470,7],[1479,7]]},"112":{"position":[[336,8],[470,10],[925,8],[1058,10],[1110,8],[1242,10],[1693,8],[1824,10]]},"113":{"position":[[2190,7],[2360,7],[2726,7],[8221,7]]},"115":{"position":[[808,9]]},"124":{"position":[[2896,8],[5402,7],[5753,7],[6738,7],[7374,8],[9766,7],[9909,8],[10099,8],[11499,7],[15060,7]]},"125":{"position":[[2489,8],[4209,7],[4557,7],[8377,8],[8980,8],[10607,7],[10626,7],[10646,7],[10665,7],[15024,7],[15622,8],[16732,8]]},"128":{"position":[[29999,7]]},"133":{"position":[[9489,7]]},"135":{"position":[[2351,8],[13153,7],[13525,8],[16858,7],[17418,7],[18478,7],[18512,7],[19633,7],[19671,7],[20861,7],[20899,7],[21281,7],[21681,7],[21719,7]]},"136":{"position":[[10381,7]]},"137":{"position":[[2352,7],[10289,7]]},"138":{"position":[[3168,8],[5497,7],[5731,7],[7536,7],[9660,7],[9808,8],[10710,7],[15792,8]]},"139":{"position":[[1750,8],[2899,8],[4342,7],[4428,7],[4470,10],[8411,7],[14686,7],[18501,7],[18693,7]]},"140":{"position":[[1746,8],[2654,8],[17120,7],[17222,7]]},"141":{"position":[[774,7],[790,7],[1209,7],[1218,7],[3494,7],[4053,8],[4783,8],[5512,8],[6927,7],[7112,8],[9787,7],[9836,7]]},"142":{"position":[[3025,8],[14620,7],[14925,8],[18693,7],[19366,7],[20470,7],[20504,7],[21526,7],[21564,7],[22655,7],[22693,7],[22976,7],[23376,7],[23414,7]]},"144":{"position":[[2500,7],[2800,7],[2892,7],[2921,7]]},"147":{"position":[[1438,7],[1454,7],[1884,7],[1902,7],[1931,7],[5570,8]]},"148":{"position":[[2114,7],[6970,8]]},"150":{"position":[[19641,7]]},"152":{"position":[[1333,8],[1465,9],[1907,8],[2038,9],[2087,8],[2217,9],[2655,8],[2784,9]]}}}],["channel'",{"_index":1044,"t":{},"d":{},"k":{},"b":{"69":{"position":[[12330,9]]}}}],["channel(",{"_index":843,"t":{},"d":{},"k":{},"b":{"68":{"position":[[17620,10]]},"69":{"position":[[20877,10]]}}}],["channel(common",{"_index":4949,"t":{},"d":{},"k":{},"b":{"105":{"position":[[17786,14]]}}}],["channel(nois",{"_index":4951,"t":{},"d":{},"k":{},"b":{"105":{"position":[[17849,13]]}}}],["channel.multipl",{"_index":685,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3606,16]]}}}],["channel/peripher",{"_index":5555,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2420,18]]}}}],["channel1_conversion_result",{"_index":784,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10631,27],[10710,29],[12313,27],[15180,27]]},"69":{"position":[[14495,27],[14574,29]]}}}],["channel1_conversion_result_0",{"_index":1075,"t":{},"d":{},"k":{},"b":{"69":{"position":[[15817,29],[15940,31]]}}}],["channel1_conversion_result_1",{"_index":1076,"t":{},"d":{},"k":{},"b":{"69":{"position":[[15859,29],[16050,31]]}}}],["channel_conversion_result",{"_index":814,"t":{},"d":{},"k":{},"b":{"68":{"position":[[12416,28],[15283,28]]}}}],["channel_mask",{"_index":296,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1550,12]]},"105":{"position":[[17885,12]]}}}],["channel_schedul",{"_index":3036,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10827,18]]}}}],["channelchannel",{"_index":2615,"t":{},"d":{},"k":{},"b":{"76":{"position":[[2359,14]]},"83":{"position":[[5302,14]]},"105":{"position":[[4594,14]]},"108":{"position":[[1738,14]]},"135":{"position":[[2285,14]]},"140":{"position":[[2588,14]]}}}],["channelmcu",{"_index":683,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3554,10]]},"75":{"position":[[3052,10]]},"84":{"position":[[2776,10]]},"148":{"position":[[2038,10]]}}}],["channelmust",{"_index":2965,"t":{},"d":{},"k":{},"b":{"79":{"position":[[2329,11]]}}}],["channels)interfac",{"_index":8395,"t":{},"d":{},"k":{},"b":{"152":{"position":[[7189,18]]}}}],["channels.al",{"_index":3655,"t":{},"d":{},"k":{},"b":{"84":{"position":[[1994,12]]},"105":{"position":[[3648,12]]}}}],["channels/bit",{"_index":844,"t":{},"d":{},"k":{},"b":{"68":{"position":[[17681,14]]},"69":{"position":[[20938,14]]}}}],["channels/sensor",{"_index":1150,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22360,17]]}}}],["channelsth",{"_index":3304,"t":{},"d":{},"k":{},"b":{"83":{"position":[[3512,11],[3845,11]]},"84":{"position":[[1890,11]]},"105":{"position":[[3542,11]]}}}],["channelth",{"_index":1960,"t":{},"d":{},"k":{},"b":{"71":{"position":[[28374,10],[28801,10]]}}}],["channelvalu",{"_index":2315,"t":{},"d":{},"k":{},"b":{"75":{"position":[[11810,12]]},"89":{"position":[[2125,12]]},"91":{"position":[[2128,12]]},"106":{"position":[[12404,12]]},"124":{"position":[[2834,12]]},"125":{"position":[[2427,12]]},"138":{"position":[[3104,12]]},"139":{"position":[[2839,12]]},"142":{"position":[[2965,12]]}}}],["char",{"_index":6268,"t":{},"d":{},"k":{},"b":{"128":{"position":[[18513,4]]},"139":{"position":[[1472,5]]},"140":{"position":[[1493,5]]}}}],["charact",{"_index":6162,"t":{},"d":{},"k":{},"b":{"128":{"position":[[4748,10]]},"139":{"position":[[8958,10],[10571,9],[10657,9],[23762,9],[23834,10],[27106,10]]},"140":{"position":[[6832,10],[7941,9],[8027,9],[21614,9],[21686,10],[24055,10]]},"147":{"position":[[1541,9],[10067,9]]}}}],["characterist",{"_index":3845,"t":{},"d":{},"k":{},"b":{"87":{"position":[[1171,15],[1342,15],[3720,15],[16841,14],[16901,14]]},"124":{"position":[[3425,14]]}}}],["check",{"_index":428,"t":{},"d":{},"k":{},"b":{"67":{"position":[[7396,5]]},"68":{"position":[[2739,8],[2828,8]]},"69":{"position":[[2204,8],[2293,8],[4539,8]]},"71":{"position":[[10760,8],[10822,8],[10898,8],[10970,8],[11123,6],[35498,5]]},"75":{"position":[[1849,5],[10856,8],[10945,8],[11364,5],[12596,5],[12752,5],[12920,5],[13174,5],[13326,5],[13491,5],[17525,7],[18297,5],[18436,6],[19231,8],[19537,7],[21416,5],[21777,5],[23070,8],[23088,8],[23121,7],[23284,8],[27742,5],[30320,8]]},"76":{"position":[[1969,8],[2058,8],[11560,8],[17350,8]]},"77":{"position":[[1528,8],[1617,8],[1915,8]]},"78":{"position":[[54,9],[101,6]]},"79":{"position":[[1889,8],[1978,8]]},"80":{"position":[[2728,5],[3974,8],[4063,8]]},"83":{"position":[[4333,8],[4422,8]]},"84":{"position":[[2404,8],[2493,8]]},"88":{"position":[[6902,8],[6991,8],[17974,8]]},"89":{"position":[[1728,8],[1817,8]]},"90":{"position":[[1676,8],[1765,8]]},"91":{"position":[[1729,8],[1818,8]]},"92":{"position":[[2758,8],[2847,8]]},"105":{"position":[[4076,8],[4165,8]]},"106":{"position":[[1208,8],[1297,8]]},"108":{"position":[[1323,8],[1412,8],[8615,5]]},"113":{"position":[[5913,5]]},"115":{"position":[[359,9]]},"124":{"position":[[2139,8],[2228,8],[14891,5]]},"125":{"position":[[1621,8],[1710,8],[6905,8],[14855,5]]},"127":{"position":[[1700,8],[1789,8]]},"128":{"position":[[15510,5],[20920,5]]},"129":{"position":[[3281,8],[3370,8]]},"131":{"position":[[2956,8],[3045,8]]},"133":{"position":[[1096,5],[1808,5],[2169,5],[2548,5],[2919,5],[3298,5],[3678,5],[4057,5],[4426,5],[6172,8],[6261,8],[9721,6],[10340,5],[10712,8],[10831,5],[29639,5],[48249,5],[50089,8],[53992,5],[55643,5],[56567,5],[57417,5],[58254,5],[59105,5],[59956,5],[60806,5],[61640,5]]},"134":{"position":[[11951,5]]},"135":{"position":[[1777,8],[1866,8],[16985,8],[18185,8],[19343,8],[20554,8]]},"136":{"position":[[2311,9],[2442,9],[4165,8],[4254,8],[4566,8]]},"138":{"position":[[2217,8],[2306,8],[2966,8],[13354,5]]},"139":{"position":[[1981,8],[2070,8],[2680,8]]},"140":{"position":[[1948,8],[2037,8]]},"142":{"position":[[1977,8],[2066,8],[2827,8],[18820,8],[20177,8],[21236,8],[22348,8]]},"146":{"position":[[1853,8],[1942,8],[6069,5],[9236,5],[12457,5],[14751,5]]},"148":{"position":[[1674,8],[1763,8],[7733,5]]},"150":{"position":[[2216,8],[2312,8]]},"152":{"position":[[6773,8]]}}}],["checkmcu",{"_index":2309,"t":{},"d":{},"k":{},"b":{"75":{"position":[[11145,8]]}}}],["checksum",{"_index":6535,"t":{},"d":{},"k":{},"b":{"132":{"position":[[1281,8],[1291,9]]}}}],["chip",{"_index":1790,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6248,4]]},"88":{"position":[[39736,4],[39841,4],[39941,4],[48145,4]]},"131":{"position":[[5194,4],[5685,4],[5783,4],[5898,4],[6524,4],[6843,4],[8237,4]]},"137":{"position":[[10519,4]]},"138":{"position":[[3875,4],[3934,4],[3993,4],[4052,4],[4111,4],[4176,4]]},"143":{"position":[[1086,4],[8294,5]]},"146":{"position":[[3972,4]]},"150":{"position":[[1884,4],[1956,4],[2686,4],[2699,4],[2714,4],[2729,4],[2760,4],[4997,4],[5081,5],[5091,4],[16390,4],[16451,4],[24199,4]]}}}],["choos",{"_index":7834,"t":{},"d":{},"k":{},"b":{"145":{"position":[[16257,8]]}}}],["chosen",{"_index":4919,"t":{},"d":{},"k":{},"b":{"105":{"position":[[14258,6],[30897,6]]},"145":{"position":[[6542,6],[6989,6],[7519,6],[8157,6]]}}}],["chthe",{"_index":1929,"t":{},"d":{},"k":{},"b":{"71":{"position":[[14958,5],[15383,5],[15831,5],[16278,5],[16726,5],[17173,5],[17625,5],[18076,5],[18524,5],[18971,5],[19419,5],[19866,5],[20316,5],[20765,5],[21215,5],[21664,5],[22112,5],[22559,5],[23009,5],[23458,5],[23906,5],[24353,5],[24803,5],[25252,5],[25702,5],[26151,5],[26599,5],[27046,5],[27496,5],[27945,5]]}}}],["cipher",{"_index":5837,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14776,7]]}}}],["circuit",{"_index":3583,"t":{},"d":{},"k":{},"b":{"83":{"position":[[43325,7],[45812,8],[56433,7],[58188,7]]},"106":{"position":[[10024,7],[10050,7],[10154,7],[10182,7],[10208,7],[10329,7],[10388,7],[10414,7],[10522,7],[15019,7],[16984,7],[17041,7]]},"107":{"position":[[9431,7]]},"113":{"position":[[10725,7],[10810,7]]},"136":{"position":[[3717,8]]},"139":{"position":[[6073,9]]},"140":{"position":[[4874,9]]}}}],["circular",{"_index":5603,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4425,8],[4497,8]]}}}],["circumv",{"_index":6276,"t":{},"d":{},"k":{},"b":{"128":{"position":[[18954,11]]}}}],["cks_valu",{"_index":5958,"t":{},"d":{},"k":{},"b":{"124":{"position":[[12618,9]]},"125":{"position":[[13454,9]]}}}],["claim",{"_index":76,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1375,8],[1435,6],[1721,6]]}}}],["clariti",{"_index":2493,"t":{},"d":{},"k":{},"b":{"75":{"position":[[30350,8]]}}}],["classic",{"_index":2247,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1141,9]]}}}],["classif",{"_index":6725,"t":{},"d":{},"k":{},"b":{"134":{"position":[[2541,14]]}}}],["clean",{"_index":3091,"t":{},"d":{},"k":{},"b":{"79":{"position":[[21338,5]]}}}],["clear",{"_index":971,"t":{},"d":{},"k":{},"b":{"69":{"position":[[2774,5],[2859,7],[19173,8],[19183,5],[22708,5],[22776,5],[22826,5]]},"74":{"position":[[1261,7]]},"76":{"position":[[2949,5],[3087,5],[12984,5],[14270,5],[14355,7],[14432,8],[14494,7],[14581,7],[14668,7],[14756,7],[15697,6],[19513,6],[20078,6]]},"80":{"position":[[3185,5],[9006,5]]},"83":{"position":[[2652,6],[9705,5],[9950,5],[10160,5],[10225,5],[19029,6],[19443,6],[19856,6],[19952,6],[30668,6],[49050,6],[49495,6],[57784,6]]},"84":{"position":[[10111,6],[12911,6],[13286,6]]},"95":{"position":[[3364,6]]},"96":{"position":[[2583,6]]},"97":{"position":[[2735,6]]},"98":{"position":[[3293,6]]},"99":{"position":[[3317,6]]},"100":{"position":[[2542,6]]},"102":{"position":[[2692,6]]},"104":{"position":[[3246,6]]},"105":{"position":[[6164,5],[6224,5],[19986,5],[24049,5],[24110,8],[24157,7],[24230,7],[38586,6]]},"108":{"position":[[4660,5],[8707,8],[8770,5]]},"109":{"position":[[4668,5],[4745,7]]},"113":{"position":[[5254,5]]},"124":{"position":[[10905,5]]},"138":{"position":[[10109,5]]},"148":{"position":[[6554,5],[11612,5],[11712,5],[11876,8]]},"149":{"position":[[4188,5],[4356,6]]}}}],["clear_sourc",{"_index":2720,"t":{},"d":{},"k":{},"b":{"76":{"position":[[12962,12]]},"83":{"position":[[30614,12]]}}}],["click",{"_index":1846,"t":{},"d":{},"k":{},"b":{"71":{"position":[[9572,7]]},"77":{"position":[[1862,8]]},"136":{"position":[[4513,8]]},"138":{"position":[[2913,8]]},"139":{"position":[[2627,8]]},"142":{"position":[[2774,8]]}}}],["client",{"_index":5785,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12560,6]]}}}],["clip",{"_index":545,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14048,8]]},"107":{"position":[[7863,5],[7959,5],[8056,5],[8153,5],[8250,5],[8346,5],[8442,5],[8538,5],[8634,5]]}}}],["clk",{"_index":3342,"t":{},"d":{},"k":{},"b":{"83":{"position":[[10520,3],[10536,3],[10552,3],[10569,3],[10691,3],[10707,3],[10723,3],[10740,3]]},"135":{"position":[[8221,3]]},"142":{"position":[[9102,3]]}}}],["clk/1",{"_index":3534,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38390,5]]},"105":{"position":[[25679,5],[26038,5]]},"149":{"position":[[7043,6]]}}}],["clk/128",{"_index":8100,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7201,8]]}}}],["clk/16",{"_index":3539,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38501,7]]},"149":{"position":[[7104,7]]}}}],["clk/2",{"_index":5050,"t":{},"d":{},"k":{},"b":{"105":{"position":[[26102,6]]}}}],["clk/2048",{"_index":8105,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7304,9]]}}}],["clk/256",{"_index":8101,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7235,8]]}}}],["clk/32",{"_index":5046,"t":{},"d":{},"k":{},"b":{"105":{"position":[[25774,6],[26199,6]]},"149":{"position":[[7136,7]]}}}],["clk/4",{"_index":3537,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38453,6]]},"149":{"position":[[7073,6]]}}}],["clk/512",{"_index":8103,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7269,8]]}}}],["clk/64",{"_index":3541,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38550,6]]},"149":{"position":[[7168,7]]}}}],["clk/8",{"_index":5044,"t":{},"d":{},"k":{},"b":{"105":{"position":[[25734,6],[26150,6]]}}}],["clk/8192",{"_index":8107,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7340,9]]}}}],["clk_divisor_valu",{"_index":7114,"t":{},"d":{},"k":{},"b":{"138":{"position":[[11940,17]]}}}],["clk_edg",{"_index":4973,"t":{},"d":{},"k":{},"b":{"105":{"position":[[19916,8]]}}}],["clk_phase",{"_index":7414,"t":{},"d":{},"k":{},"b":{"141":{"position":[[1746,9]]}}}],["clk_polar",{"_index":7415,"t":{},"d":{},"k":{},"b":{"141":{"position":[[1821,12]]}}}],["clock",{"_index":399,"t":{"136":{"position":[[54,5]]}},"d":{},"k":{},"b":{"67":{"position":[[5321,7]]},"68":{"position":[[4847,5],[4947,5],[4974,5],[5623,5],[5759,6],[13133,5],[16002,5]]},"69":{"position":[[9874,5],[9909,5],[11297,6],[30195,5]]},"70":{"position":[[13144,5]]},"71":{"position":[[510,6],[1211,7],[1295,5],[1562,5],[1685,5],[1716,6],[1834,5],[1905,6],[1918,5],[2093,5],[2177,5],[2222,5],[4913,5],[4932,5],[6097,5],[7836,5],[35581,6],[36528,7],[36586,5],[36679,6],[36818,7],[36876,5],[36969,6],[37279,7],[37337,5],[37430,6],[37569,7],[37627,5],[37720,6],[41559,6],[41609,5],[41719,6],[41780,5],[42125,5],[42216,5],[42537,5],[42570,5],[42973,5],[43069,5],[43388,5],[43421,5],[44485,6],[44749,5],[45426,5],[47661,5],[47683,6],[47797,5],[47819,6]]},"75":{"position":[[11467,5],[11516,5],[11911,5],[11985,5],[12463,5],[13047,5],[14930,5],[14980,6],[15019,5],[15053,5],[15139,5],[15209,5],[15945,5],[16467,5],[21285,5],[21742,6],[22099,5],[22431,5]]},"76":{"position":[[1679,5],[5378,5],[5407,5],[5465,5],[5491,6],[5877,5],[5937,5],[5960,5],[6020,5],[6059,5],[10630,5],[10759,5],[11182,6],[16420,5],[16549,5],[16972,6]]},"77":{"position":[[2298,5],[2330,5]]},"79":{"position":[[5607,5],[5671,5],[5724,6],[7754,5]]},"80":{"position":[[3255,8]]},"82":{"position":[[1414,5],[6701,5],[6817,6]]},"83":{"position":[[2523,5],[3710,5],[3742,5],[3807,6],[4047,5],[4079,5],[4144,6],[4900,5],[4962,5],[4984,5],[5021,6],[10488,5],[10659,5],[15203,5],[15231,5],[15264,5],[15308,5],[15334,6],[15770,5],[15829,5],[16018,5],[16980,5],[18644,6],[24093,5],[24613,6],[58439,5]]},"84":{"position":[[1397,6],[1502,5],[2118,5],[2150,5],[2215,6],[3295,6],[3325,6],[3625,5],[4626,5],[4642,5],[4685,5],[7903,5],[8031,5],[8095,5],[8388,6],[15780,5],[15912,5]]},"85":{"position":[[1383,5]]},"86":{"position":[[1191,5],[1851,5]]},"88":{"position":[[2031,5],[9897,5],[9975,5],[10058,5],[10128,5],[10210,5],[10276,5],[10355,5],[10418,5],[10490,5],[10585,5],[12658,5],[12818,5],[15130,6],[15141,5],[16789,5],[17060,5],[41066,5],[41157,5],[41267,5],[41370,5],[41474,5],[41581,5],[41601,5],[41766,5],[41938,5],[41974,5],[46478,5],[46671,5],[46869,5],[50763,5],[50887,5],[50972,5],[51058,5],[51145,5],[51232,5],[51323,5]]},"89":{"position":[[2853,5],[2933,5]]},"90":{"position":[[2571,5],[2651,5]]},"91":{"position":[[2930,5],[3011,5]]},"92":{"position":[[2435,6],[10442,5],[10514,5]]},"105":{"position":[[2419,5],[3786,5],[3819,5],[3884,6],[6083,5],[6132,5],[6264,5],[6383,6],[6510,5],[6518,5],[6652,6],[6822,5],[6906,5],[6952,6],[10810,5],[10839,5],[10864,5],[10900,5],[10926,6],[14172,5],[14248,5],[14312,5],[14381,5],[14554,5],[14919,6],[19926,5],[21806,5],[22119,5],[22169,5],[22220,5],[22272,5],[22323,5],[22373,5],[22424,5],[22494,6],[22572,6],[22650,6],[22728,6],[22794,5],[22848,5],[22915,6],[22994,6],[23072,6],[23138,5],[23251,5],[23317,6],[23395,6],[23473,6],[23540,5],[23594,5],[23655,5],[23724,5],[23805,6],[23898,6],[25074,5],[25831,5],[30811,5],[30887,5],[30951,5],[31020,5],[31193,5],[31558,6]]},"106":{"position":[[12479,5],[12602,6],[12858,5],[12901,5],[12944,5],[14884,6],[17528,6],[20620,5]]},"107":{"position":[[3735,6]]},"108":{"position":[[2248,5],[2266,5],[2284,5],[2303,5],[2323,5],[2890,5],[2919,5],[2944,5]]},"109":{"position":[[8200,5],[8373,5],[8456,5],[8542,5],[8630,5]]},"111":{"position":[[273,7]]},"113":{"position":[[4752,5],[4778,6],[4815,5],[4896,5],[5367,5],[5443,5],[5590,5],[5978,5],[6001,5],[6040,5],[6076,6],[11194,5]]},"115":{"position":[[1246,6]]},"116":{"position":[[883,5]]},"122":{"position":[[686,5]]},"124":{"position":[[3291,5],[4770,5],[4826,5],[4868,5],[4898,5],[4917,5],[5092,5],[5471,5],[6497,5],[6547,5],[12579,5],[12648,5],[12709,6],[12762,6],[13336,5],[14709,5]]},"125":{"position":[[1105,5],[2599,5],[2739,5],[2784,5],[2820,5],[3301,5],[3357,5],[3578,5],[3634,5],[3676,5],[3706,5],[3725,5],[3900,5],[4278,5],[4857,5],[5099,5],[5167,5],[5181,6],[5950,5],[6046,5],[7704,5],[7769,6],[13415,5],[13484,5],[13544,6],[13848,5]]},"128":{"position":[[2593,5],[2677,5],[2792,5],[2827,6],[29948,5],[30023,6]]},"131":{"position":[[2616,5],[5217,5]]},"135":{"position":[[992,5],[1075,5],[2454,5],[2501,5],[2540,5],[2586,5],[3485,5],[3706,5],[3981,5],[4254,5],[5477,5],[5501,5],[5564,5],[5612,5],[6516,5],[6671,5],[11005,5],[11075,5],[11234,5],[12061,5],[12567,5],[12620,5]]},"136":{"position":[[1219,6],[2748,5],[2959,5],[3006,5],[3065,5],[3099,5],[3122,5],[3162,5],[3650,5],[3757,5],[3811,5],[3879,5],[3966,5],[4329,5],[4420,5],[4713,5],[4761,5],[4806,5],[4864,5],[5371,5],[6388,6],[6448,6],[6542,5],[6632,5],[6685,5],[6731,5],[10261,5],[10813,5],[11240,5],[12473,5],[16837,5],[16861,6],[17241,5],[18343,6]]},"137":{"position":[[59,6],[123,5],[225,5],[273,5],[2584,5],[2837,5],[5473,5],[6019,5],[8832,5],[10053,5],[10105,5],[10159,5],[10393,5],[10464,5]]},"138":{"position":[[3854,5],[3907,5],[3966,5],[4025,5],[4084,5],[4143,5],[4208,5],[4476,5],[4503,5],[4996,5],[5189,5],[5566,5],[6656,5],[7173,6],[11775,5],[11959,5],[12199,5],[12591,5],[12751,5],[13172,5],[13487,5]]},"139":{"position":[[3690,6],[5221,5],[5482,5],[5506,5],[5529,5],[5545,5],[5580,5],[5609,5],[5639,5],[5662,5],[5703,5],[5734,5],[7126,5],[7150,5],[7213,5],[7261,5],[7286,5],[7317,5],[7367,6],[7387,5],[7417,5],[7446,5],[7696,5],[7780,5],[14255,5],[14273,5],[15158,5],[15217,5],[15301,5],[15384,5],[15443,5],[21741,5],[22092,6]]},"140":{"position":[[3206,6],[4151,6],[4528,5],[4577,5],[4618,5],[4649,5],[6024,5],[6048,5],[6111,5],[6159,5],[6196,5],[6227,5],[6277,6],[6297,5],[6327,5],[6356,5],[6590,5],[6674,5],[11280,5],[11298,5],[11960,5],[12018,5],[12101,5],[12183,5],[12241,5],[19600,5],[19950,6],[23564,5]]},"141":{"position":[[1786,5],[1835,5],[9959,5],[10246,5],[10297,5],[10356,5]]},"142":{"position":[[1035,6],[1076,5],[1159,5],[3637,5],[3828,5],[3857,5],[3925,5],[4321,5],[4350,5],[4389,5],[5079,5],[5124,5],[5536,5],[5551,5],[5560,6],[5570,6],[5580,6],[5590,6],[5600,6],[5610,6],[5620,6],[5630,5],[5664,5],[5725,5],[5734,6],[5744,6],[5754,6],[5764,6],[5774,6],[5784,6],[5794,6],[5804,5],[5838,5],[5897,5],[5906,6],[5916,6],[5926,6],[5936,6],[5946,6],[5956,6],[5966,6],[5976,5],[6010,5],[6159,5],[6287,6],[7690,5],[7845,5],[12031,5],[12100,5],[12257,5],[13222,5],[13542,5],[14085,5],[14179,5],[14233,5],[15574,5],[18058,5],[24199,5]]},"143":{"position":[[2022,6],[13428,6],[13470,6],[13512,6],[13554,6],[13596,6],[13638,6],[13680,6],[13722,6],[13764,6],[13806,6],[13850,6],[13894,6],[13938,6],[13982,6],[14026,6],[14070,6],[14114,6],[14158,6],[14202,6],[14246,6],[14290,6],[14334,6],[14378,6],[14422,6],[14466,6],[14510,6],[14554,6],[14598,6],[14642,6],[14686,6],[14730,6],[14774,6]]},"144":{"position":[[1640,5],[1708,5],[2420,5],[13143,5],[13202,5],[13256,5],[13310,5],[13364,5],[13419,5],[13475,5],[13531,5],[13588,5],[13646,5],[13704,5],[13763,5]]},"146":{"position":[[3712,5],[3742,5],[3764,5]]},"148":{"position":[[2200,5],[2260,5],[3494,5],[3522,5],[3609,6],[4127,5],[4197,5]]},"149":{"position":[[1101,5],[1193,5],[1278,5],[1497,5],[6647,5],[6682,5],[6719,5],[6756,5],[6793,5],[6830,5],[6869,5],[6988,5]]},"150":{"position":[[3171,6],[3273,6],[5981,5],[6010,5],[6059,5],[6085,6],[6278,5],[17094,6],[17150,6],[17206,6],[17262,6],[17318,6],[17374,6],[17430,6],[17486,6],[17542,6],[17600,6],[17658,6],[17716,6],[17774,6],[17832,6],[17890,6],[17948,6]]},"152":{"position":[[352,7],[6189,5],[7602,5]]}}}],["clock*1",{"_index":2349,"t":{},"d":{},"k":{},"b":{"75":{"position":[[15095,7]]}}}],["clock/2",{"_index":2348,"t":{},"d":{},"k":{},"b":{"75":{"position":[[15069,7]]}}}],["clock_bypass_mod",{"_index":6989,"t":{},"d":{},"k":{},"b":{"136":{"position":[[10242,17]]}}}],["clock_data_turnaround",{"_index":4268,"t":{},"d":{},"k":{},"b":{"88":{"position":[[43838,21]]}}}],["clock_div",{"_index":1698,"t":{},"d":{},"k":{},"b":{"71":{"position":[[687,10],[42887,9]]},"106":{"position":[[14839,9]]}}}],["clock_divis",{"_index":8038,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7370,15]]},"149":{"position":[[1481,14]]}}}],["clock_frequ",{"_index":7715,"t":{},"d":{},"k":{},"b":{"144":{"position":[[1691,15]]}}}],["clock_frequency_hz",{"_index":8076,"t":{},"d":{},"k":{},"b":{"149":{"position":[[1151,18]]}}}],["clock_sel",{"_index":1694,"t":{},"d":{},"k":{},"b":{"71":{"position":[[598,10],[42039,9]]}}}],["clock_set",{"_index":5963,"t":{},"d":{},"k":{},"b":{"124":{"position":[[13316,14]]},"125":{"position":[[13828,14]]},"138":{"position":[[12571,14]]}}}],["clock_sourc",{"_index":7035,"t":{},"d":{},"k":{},"b":{"137":{"position":[[2570,12],[2823,12]]},"138":{"position":[[12185,12]]},"142":{"position":[[633,13],[14057,12],[23669,13]]}}}],["clock_stal",{"_index":4248,"t":{},"d":{},"k":{},"b":{"88":{"position":[[41922,14]]}}}],["clock_stalling_tim",{"_index":4244,"t":{},"d":{},"k":{},"b":{"88":{"position":[[41528,19]]}}}],["clock_stretching_en",{"_index":3789,"t":{},"d":{},"k":{},"b":{"86":{"position":[[1753,23]]}}}],["clocks(adc_adclk",{"_index":712,"t":{},"d":{},"k":{},"b":{"68":{"position":[[4897,17]]}}}],["clocksourceset",{"_index":7044,"t":{},"d":{},"k":{},"b":{"137":{"position":[[3899,14],[5332,14]]}}}],["close",{"_index":388,"t":{},"d":{},"k":{},"b":{"67":{"position":[[4796,5],[10433,5],[10543,5]]},"68":{"position":[[29550,7]]},"69":{"position":[[36147,7]]},"74":{"position":[[3511,5],[5275,5],[5385,5]]},"75":{"position":[[36446,5],[36511,6]]},"76":{"position":[[15795,7]]},"77":{"position":[[5939,5]]},"78":{"position":[[1480,5],[2173,5],[2283,5]]},"79":{"position":[[21439,6]]},"81":{"position":[[784,5],[1560,5],[1721,5]]},"82":{"position":[[2724,5],[4936,5]]},"83":{"position":[[57887,6]]},"84":{"position":[[10209,7]]},"85":{"position":[[4008,5],[7724,5],[7848,6]]},"86":{"position":[[3331,5],[5458,5],[5580,6]]},"87":{"position":[[6504,5],[13659,5]]},"88":{"position":[[61497,5]]},"89":{"position":[[5810,5],[8380,5],[8501,7]]},"90":{"position":[[5426,5],[7930,5],[8051,7]]},"91":{"position":[[6981,5],[9543,5],[9664,7]]},"93":{"position":[[1583,5],[3305,5],[3421,5]]},"94":{"position":[[2611,5],[4317,5],[4427,6]]},"95":{"position":[[3452,7]]},"96":{"position":[[2694,7]]},"97":{"position":[[2846,7]]},"98":{"position":[[3380,7]]},"99":{"position":[[3403,7]]},"100":{"position":[[2651,7]]},"101":{"position":[[2655,5],[4028,5],[4164,6]]},"102":{"position":[[2801,7]]},"103":{"position":[[1785,5],[2714,5],[2850,6]]},"104":{"position":[[3331,7]]},"105":{"position":[[38689,6]]},"106":{"position":[[24769,6],[24848,6],[24955,6]]},"107":{"position":[[3290,5],[5993,5]]},"108":{"position":[[3721,7],[9191,6]]},"109":{"position":[[2679,5],[4935,5]]},"124":{"position":[[18710,6],[18871,6]]},"125":{"position":[[17493,6],[17555,6]]},"126":{"position":[[1657,5],[2346,5],[2466,5]]},"127":{"position":[[3790,5],[8102,7]]},"129":{"position":[[5285,5],[12199,7]]},"130":{"position":[[2723,5],[5629,5],[5751,5]]},"131":{"position":[[7107,5],[17025,7]]},"132":{"position":[[2976,5],[4771,5],[4893,5]]},"133":{"position":[[4664,5],[9328,5],[62167,5],[62268,7]]},"134":{"position":[[6042,5],[12101,5],[12231,5]]},"135":{"position":[[8022,6],[21268,7],[21589,7]]},"136":{"position":[[11787,5],[11917,7],[12012,6]]},"137":{"position":[[3851,5],[5097,5],[5207,5]]},"138":{"position":[[13751,6],[14112,6]]},"139":{"position":[[18741,7],[23086,6],[23228,7]]},"140":{"position":[[17270,7],[20940,6],[21082,7]]},"141":{"position":[[3289,5],[6793,5]]},"142":{"position":[[8904,6],[22963,7],[23284,7]]},"143":{"position":[[4738,5],[9867,5],[9983,5]]},"144":{"position":[[4410,5],[9487,5]]},"145":{"position":[[1693,7],[4334,5],[8749,5]]},"146":{"position":[[21937,7]]},"147":{"position":[[4374,5],[8383,5],[8495,5]]},"150":{"position":[[5733,5],[5788,5],[19857,5]]}}}],["closest",{"_index":5905,"t":{},"d":{},"k":{},"b":{"124":{"position":[[6388,7]]},"125":{"position":[[7598,7]]},"138":{"position":[[6120,7]]}}}],["clut",{"_index":5647,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6505,4]]}}}],["clz",{"_index":6142,"t":{},"d":{},"k":{},"b":{"128":{"position":[[2076,5]]}}}],["cm",{"_index":192,"t":{"28":{"position":[[45,2]]},"31":{"position":[[45,2]]},"44":{"position":[[45,2]]},"48":{"position":[[45,2]]}},"d":{},"k":{},"b":{}}],["cm/portmacro.h",{"_index":8407,"t":{},"d":{},"k":{},"b":{"287":{"position":[[507,14]]},"289":{"position":[[663,14]]}}}],["cm33",{"_index":4357,"t":{},"d":{},"k":{},"b":{"89":{"position":[[810,6]]},"90":{"position":[[810,6]]},"91":{"position":[[827,6]]}}}],["cmo",{"_index":7181,"t":{},"d":{},"k":{},"b":{"139":{"position":[[8020,5]]}}}],["cmsi",{"_index":183,"t":{"17":{"position":[[45,5]]}},"d":{},"k":{},"b":{"71":{"position":[[2140,5],[4291,5],[5147,5]]}}}],["cmtw",{"_index":2611,"t":{},"d":{},"k":{},"b":{"76":{"position":[[1184,4],[1281,4],[5402,4],[6379,4],[7169,4],[7234,4],[7628,4],[7917,4],[7962,4],[8642,4],[8701,4],[10048,4],[12355,4],[14005,4],[22759,4],[22815,4],[22932,4],[23050,4],[23903,5]]},"122":{"position":[[97,4]]},"152":{"position":[[5623,4]]}}}],["cmtw0",{"_index":2643,"t":{},"d":{},"k":{},"b":{"76":{"position":[[6000,5]]}}}],["cmtw3",{"_index":2644,"t":{},"d":{},"k":{},"b":{"76":{"position":[[6006,5]]}}}],["cmtw4",{"_index":2646,"t":{},"d":{},"k":{},"b":{"76":{"position":[[6040,5]]}}}],["cmtw7",{"_index":2647,"t":{},"d":{},"k":{},"b":{"76":{"position":[[6046,5]]}}}],["cmtw_basic_exampl",{"_index":2656,"t":{},"d":{},"k":{},"b":{"76":{"position":[[7263,18]]}}}],["cmtw_capture_exampl",{"_index":2679,"t":{},"d":{},"k":{},"b":{"76":{"position":[[9559,20]]}}}],["cmtw_clear_source_compare_match_cmwocr0",{"_index":2748,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14617,39]]}}}],["cmtw_clear_source_compare_match_cmwocr1",{"_index":2750,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14705,39]]}}}],["cmtw_clear_source_dis",{"_index":2743,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14390,26]]}}}],["cmtw_clear_source_input_capture_cmwicr0",{"_index":2744,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14443,39]]}}}],["cmtw_clear_source_input_capture_cmwicr1",{"_index":2746,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14530,39]]}}}],["cmtw_clear_source_t",{"_index":2706,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11913,19],[12941,19],[14179,19],[14233,19]]}}}],["cmtw_counter_exampl",{"_index":2665,"t":{},"d":{},"k":{},"b":{"76":{"position":[[8102,20]]}}}],["cmtw_example_desired_period_msec",{"_index":2685,"t":{},"d":{},"k":{},"b":{"76":{"position":[[10173,32],[11424,33],[17214,33]]}}}],["cmtw_example_msec_per_sec",{"_index":2683,"t":{},"d":{},"k":{},"b":{"76":{"position":[[10123,25],[11460,27],[17250,27]]}}}],["cmtw_extended_cfg_t",{"_index":2703,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11815,19],[12253,19],[12309,19],[23114,19]]}}}],["cmtw_input_control_en",{"_index":2758,"t":{},"d":{},"k":{},"b":{"76":{"position":[[15397,26]]}}}],["cmtw_input_control_t",{"_index":2708,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11996,20],[12807,20],[12874,20],[15240,20],[15295,20]]}}}],["cmtw_instance_ctrl_t",{"_index":2702,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11784,20],[12053,20],[12110,20]]},"144":{"position":[[10514,20]]}}}],["cmtw_io_pin_t",{"_index":2606,"t":{},"d":{},"k":{},"b":{"76":{"position":[[860,13],[941,13],[11942,13],[14800,13],[14848,13],[24117,13],[24613,13]]}}}],["cmtw_io_pin_toc0_and_toc1",{"_index":2754,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14969,25]]}}}],["cmtw_io_pin_toc1",{"_index":2753,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14944,16]]}}}],["cmtw_output_control_en",{"_index":2756,"t":{},"d":{},"k":{},"b":{"76":{"position":[[15180,27]]}}}],["cmtw_output_control_t",{"_index":2707,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11965,21],[12495,21],[12565,21],[15019,21],[15075,21]]}}}],["cmtw_output_pin_start_level_high",{"_index":2739,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14121,32]]}}}],["cmtw_output_pin_start_level_low",{"_index":2738,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14072,31]]}}}],["cmtw_output_pin_t",{"_index":2705,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11886,17],[12401,17],[12448,17],[13909,17],[13961,17]]}}}],["cmtw_period_calculation_exampl",{"_index":2686,"t":{},"d":{},"k":{},"b":{"76":{"position":[[10290,31]]}}}],["cmtw_source_edge_both",{"_index":2735,"t":{},"d":{},"k":{},"b":{"76":{"position":[[13842,21]]}}}],["cmtw_source_edge_fal",{"_index":2734,"t":{},"d":{},"k":{},"b":{"76":{"position":[[13776,24]]}}}],["cmtw_source_edge_t",{"_index":2704,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11858,18],[12635,18],[12721,18],[13570,18],[13623,18]]}}}],["cmtwm_tic0/cmtwm_tic1",{"_index":2677,"t":{},"d":{},"k":{},"b":{"76":{"position":[[9210,22]]}}}],["cmwcnt",{"_index":2740,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14286,6]]}}}],["cmwcor",{"_index":2742,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14366,6]]}}}],["cmwicr0",{"_index":2745,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14505,7]]}}}],["cmwicr1",{"_index":2747,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14592,7]]}}}],["cmwocr0",{"_index":2749,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14679,7]]}}}],["cmwocr1",{"_index":2751,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14767,7]]}}}],["cockpit",{"_index":8335,"t":{},"d":{},"k":{},"b":{"151":{"position":[[3282,7]]}}}],["code",{"_index":133,"t":{"113":{"position":[[58,5]]}},"d":{},"k":{},"b":{"1":{"position":[[535,5],[1109,4]]},"68":{"position":[[2809,4]]},"69":{"position":[[2274,4]]},"70":{"position":[[14748,5],[15085,5]]},"71":{"position":[[1503,5],[3914,4],[5183,4],[5636,4],[5781,4],[6193,5],[7383,4],[7618,5],[29413,5],[29476,4],[30091,5],[31988,5],[32051,4],[32666,5],[40168,4],[40260,4],[40336,4],[44773,4],[45925,4]]},"74":{"position":[[317,4],[1255,5],[1961,4],[2298,5],[2329,5],[7952,5]]},"75":{"position":[[10926,4],[17448,4],[22926,4],[27754,4],[33104,4]]},"76":{"position":[[2039,4],[7871,4]]},"77":{"position":[[1598,4]]},"78":{"position":[[133,5]]},"79":{"position":[[1959,4],[9111,5]]},"80":{"position":[[4044,4]]},"83":{"position":[[4403,4],[19201,4],[21079,4]]},"84":{"position":[[2474,4],[6616,4]]},"85":{"position":[[272,4],[957,5]]},"86":{"position":[[265,5],[942,5]]},"87":{"position":[[3009,4],[4034,4],[10334,5],[14801,5]]},"88":{"position":[[1800,7],[2025,5],[2247,6],[2943,6],[6972,4],[7271,4],[7393,4],[18685,5],[18742,4],[18898,4],[19049,5],[21702,5],[36729,5],[36793,5],[38196,5],[38262,5],[38947,4],[39028,4],[39181,4],[42862,6],[45032,4]]},"89":{"position":[[1798,4]]},"90":{"position":[[1746,4]]},"91":{"position":[[1799,4]]},"92":{"position":[[2828,4]]},"105":{"position":[[4146,4],[4262,4],[12836,4]]},"106":{"position":[[1278,4],[1379,4],[21056,5],[21125,6],[22227,5],[22282,6],[22813,5],[22868,6],[23909,5],[23978,6]]},"108":{"position":[[1393,4]]},"111":{"position":[[29,4],[82,5],[930,4],[1100,4]]},"113":{"position":[[63,6],[527,4],[665,4],[733,4],[784,4],[1965,5],[15555,4],[15651,6]]},"116":{"position":[[994,4]]},"124":{"position":[[2209,4]]},"125":{"position":[[1691,4],[6172,5]]},"127":{"position":[[1770,4]]},"128":{"position":[[11297,4],[16460,4],[17090,4],[18477,5],[20647,4],[25949,4]]},"129":{"position":[[3351,4]]},"131":{"position":[[3026,4]]},"133":{"position":[[6242,4]]},"135":{"position":[[1847,4],[17477,5],[17546,6]]},"136":{"position":[[4235,4],[6605,4]]},"138":{"position":[[2287,4],[14049,4],[16885,4]]},"139":{"position":[[1432,4],[2051,4],[18808,5],[18877,6],[19932,5],[20001,6],[21159,5],[21228,6],[24333,5],[24402,6],[27595,5],[27664,6]]},"140":{"position":[[1453,4],[2018,4],[17410,5],[18326,5],[19244,5],[22185,5],[22254,6],[24544,5],[24613,6]]},"141":{"position":[[834,5]]},"142":{"position":[[2047,4],[19425,5],[19494,6]]},"146":{"position":[[1426,4],[1460,4],[1923,4],[4175,4]]},"147":{"position":[[295,4],[1499,5],[9931,5]]},"148":{"position":[[1744,4],[8251,5]]},"150":{"position":[[2293,4],[15163,4],[15469,4]]},"151":{"position":[[1069,4],[1488,4],[2520,4],[2786,5],[3372,4],[3390,4]]},"152":{"position":[[122,4],[164,5]]}}}],["code_version_major",{"_index":5537,"t":{},"d":{},"k":{},"b":{"113":{"position":[[764,18]]}}}],["code_version_minor",{"_index":5536,"t":{},"d":{},"k":{},"b":{"113":{"position":[[713,18]]}}}],["coeffici",{"_index":5118,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2884,11],[2987,11],[3039,11],[3141,11],[3192,11],[3294,11],[3345,11],[3447,11],[3498,11],[3600,11],[3651,11],[3753,11],[3804,11],[3906,11],[3957,11],[4059,11],[4110,11],[4212,11],[4263,11],[4365,11],[4416,11],[4518,11],[4569,11],[4672,11],[4724,11],[4827,11],[4879,11],[4982,11],[5034,11],[5137,11],[5189,11],[5292,11],[5344,11],[5447,11],[5499,11],[5602,11],[5654,11],[5757,11],[5809,11],[5912,11],[5964,11],[6067,11],[6335,11],[6440,11],[6510,11],[6615,11],[6685,11],[6790,11],[6860,11],[6965,11],[7035,11],[7140,11],[7210,11],[7315,11],[7385,11],[7490,11],[7560,11],[7665,11],[7735,11],[7840,11],[7910,11],[8015,11],[8085,11],[8191,11],[8430,11],[8532,11],[8583,11],[8685,11],[8736,11],[8838,11],[8889,11],[8991,11],[15966,11],[16063,11],[16162,11],[16280,11],[16401,11],[16524,11]]}}}],["cold",{"_index":8004,"t":{},"d":{},"k":{},"b":{"148":{"position":[[2895,4],[2957,4]]}}}],["cold_reset_en",{"_index":8033,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7140,18]]}}}],["collect",{"_index":5732,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10230,9]]}}}],["color",{"_index":5644,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6366,5]]}}}],["combin",{"_index":849,"t":{},"d":{},"k":{},"b":{"68":{"position":[[18175,7]]},"69":{"position":[[21764,7]]},"75":{"position":[[20273,8]]},"136":{"position":[[1559,11]]},"139":{"position":[[9329,7]]},"150":{"position":[[1723,11]]}}}],["comm",{"_index":6059,"t":{},"d":{},"k":{},"b":{"126":{"position":[[1534,4],[3554,5]]},"127":{"position":[[3677,5]]},"131":{"position":[[4064,5],[4144,5]]},"133":{"position":[[6557,5],[6639,5]]}}}],["command",{"_index":1811,"t":{},"d":{},"k":{},"b":{"71":{"position":[[7050,7]]},"87":{"position":[[3001,7],[3145,8],[3268,7],[4026,7],[4055,8],[9249,7],[9542,7],[10064,8],[10326,7],[10553,7],[10825,8],[14793,7],[18225,7],[18830,8],[19540,7]]},"88":{"position":[[1792,7],[2017,7],[2239,7],[2935,7],[4608,8],[4704,7],[5905,7],[6549,8],[11359,7],[11511,7],[11667,7],[11872,7],[12023,7],[12172,7],[12358,7],[12492,7],[12624,7],[12864,7],[13043,7],[13184,7],[13350,7],[18677,7],[18734,7],[18890,7],[19041,7],[19114,8],[19175,7],[20515,7],[21694,7],[24261,8],[36721,7],[36785,7],[36933,7],[37122,8],[37210,7],[37372,7],[37396,7],[37480,8],[37622,7],[37999,7],[38188,7],[38254,7],[38412,8],[38682,7],[38939,7],[39020,7],[39173,7],[40762,7],[41211,8],[42854,7],[45024,7],[47215,9],[49711,7],[53714,8],[54356,8],[56795,7],[57437,8]]},"113":{"position":[[3598,7],[5725,7]]},"128":{"position":[[27318,7]]},"129":{"position":[[1260,8],[2580,8],[14542,8],[17457,8]]},"131":{"position":[[508,7],[1059,7],[4815,8],[5599,8],[6511,8],[6564,8],[6579,7],[6626,7],[6735,7],[6902,9],[17414,7],[18389,7]]},"143":{"position":[[903,7],[963,7],[978,8],[1034,8],[1342,7],[1360,8],[1445,7],[2170,8],[2605,8],[2647,7],[2724,7],[2788,7],[2848,7],[2904,7],[2984,7],[3076,8],[6730,8],[11710,9],[11765,9],[11889,8],[12022,8],[12727,9],[12801,7],[12955,7]]},"150":{"position":[[1592,8],[3109,7],[3387,7],[3467,7],[3496,7],[3568,7],[3587,7],[3667,7],[3694,7],[3768,7],[3816,8],[3827,7],[3980,8],[3991,7],[4071,7],[4138,7],[4313,7],[4392,7],[4457,7],[4629,7],[4713,7],[4783,7],[4975,7],[5053,7],[5102,7],[5128,7],[5237,7],[7664,9],[8547,7],[8608,8],[9144,8],[9403,7],[9629,7],[10374,7],[11026,7],[11238,8],[12460,8],[13256,8],[13708,7],[14130,7],[24334,7],[26397,7]]}}}],["command/address",{"_index":7607,"t":{},"d":{},"k":{},"b":{"143":{"position":[[5546,15]]}}}],["command0x02",{"_index":8130,"t":{},"d":{},"k":{},"b":{"150":{"position":[[3451,11]]}}}],["command0x03",{"_index":8131,"t":{},"d":{},"k":{},"b":{"150":{"position":[[3552,11]]}}}],["command0x05",{"_index":8133,"t":{},"d":{},"k":{},"b":{"150":{"position":[[3752,11]]}}}],["command0x06",{"_index":8132,"t":{},"d":{},"k":{},"b":{"150":{"position":[[3651,11]]}}}],["command0x20",{"_index":8137,"t":{},"d":{},"k":{},"b":{"150":{"position":[[4055,11],[5187,11]]}}}],["command0x52",{"_index":8142,"t":{},"d":{},"k":{},"b":{"150":{"position":[[4697,11]]}}}],["command0xc7",{"_index":8144,"t":{},"d":{},"k":{},"b":{"150":{"position":[[5037,11]]}}}],["command0xd8",{"_index":8139,"t":{},"d":{},"k":{},"b":{"150":{"position":[[4376,11]]}}}],["command0xff",{"_index":8148,"t":{},"d":{},"k":{},"b":{"150":{"position":[[5295,11]]}}}],["command_buff",{"_index":4211,"t":{},"d":{},"k":{},"b":{"88":{"position":[[37157,15],[37709,14]]}}}],["command_buffer[example_read_buffer_s",{"_index":4209,"t":{},"d":{},"k":{},"b":{"88":{"position":[[36875,41]]}}}],["command_cod",{"_index":3866,"t":{},"d":{},"k":{},"b":{"87":{"position":[[2980,12],[4008,12]]},"88":{"position":[[37024,13]]}}}],["command_descriptor",{"_index":4210,"t":{},"d":{},"k":{},"b":{"88":{"position":[[36991,18],[37547,21]]}}}],["command_length",{"_index":7563,"t":{},"d":{},"k":{},"b":{"143":{"position":[[1429,14]]},"150":{"position":[[9254,15],[11356,15],[12573,15],[13378,15]]}}}],["commandmust",{"_index":8129,"t":{},"d":{},"k":{},"b":{"150":{"position":[[3422,11],[3523,11],[3622,11],[3723,11],[4026,11],[4347,11],[4668,11],[5008,11]]}}}],["commandsend",{"_index":3892,"t":{},"d":{},"k":{},"b":{"87":{"position":[[5981,11],[10354,11]]},"88":{"position":[[17889,12],[19501,11]]}}}],["comment",{"_index":137,"t":{},"d":{},"k":{},"b":{"1":{"position":[[626,8]]},"83":{"position":[[6778,7]]},"128":{"position":[[16570,10]]},"135":{"position":[[3419,7]]},"138":{"position":[[3621,7]]},"139":{"position":[[3401,7],[4169,7]]},"140":{"position":[[3685,7]]},"142":{"position":[[5479,7]]}}}],["common",{"_index":394,"t":{"113":{"position":[[45,6]]}},"d":{},"k":{},"b":{"67":{"position":[[5190,6]]},"71":{"position":[[6697,6]]},"74":{"position":[[89,6]]},"75":{"position":[[1093,6]]},"85":{"position":[[108,6]]},"86":{"position":[[106,6]]},"87":{"position":[[2994,6],[14786,6],[18161,6]]},"88":{"position":[[1784,7],[2010,6],[2232,6],[2928,6],[18670,6],[36714,6],[36778,6],[38181,6],[38247,6],[42847,6],[45017,6]]},"92":{"position":[[7084,6],[7182,6],[7289,6],[7928,6],[8026,6],[8133,6],[8772,6],[8870,6],[8977,6],[9616,6],[9714,6],[9821,6]]},"94":{"position":[[116,6]]},"101":{"position":[[165,6]]},"103":{"position":[[165,6]]},"105":{"position":[[6036,7],[6412,6],[22138,7],[22188,7],[22240,7],[22292,7],[22342,7],[22392,7],[22444,7]]},"106":{"position":[[21043,6],[22214,6],[22800,6],[23896,6]]},"111":{"position":[[22,6],[69,6]]},"113":{"position":[[50,6],[416,6],[1952,6],[15023,6]]},"115":{"position":[[58,6]]},"127":{"position":[[1049,6]]},"135":{"position":[[17464,6]]},"139":{"position":[[18795,6],[19919,6],[21146,6],[24320,6],[27582,6]]},"140":{"position":[[17397,6],[18313,6],[19231,6],[22172,6],[24531,6]]},"141":{"position":[[77,6],[712,6]]},"142":{"position":[[19412,6]]},"147":{"position":[[95,6]]},"151":{"position":[[2469,6]]},"152":{"position":[[151,6],[6495,6]]}}}],["commun",{"_index":1988,"t":{"127":{"position":[[49,13]]},"140":{"position":[[52,14]]}},"d":{},"k":{},"b":{"71":{"position":[[34343,14],[34645,14],[34910,14],[35352,14]]},"74":{"position":[[181,13],[9367,13]]},"75":{"position":[[917,11],[32906,14]]},"77":{"position":[[734,13],[2246,13]]},"78":{"position":[[5376,14],[5443,14]]},"85":{"position":[[47,14],[8918,13]]},"86":{"position":[[46,14],[6617,13]]},"87":{"position":[[107,14],[1882,11]]},"88":{"position":[[1561,13],[6251,14],[16874,11]]},"94":{"position":[[202,13],[270,12]]},"95":{"position":[[634,13],[734,13]]},"96":{"position":[[662,13]]},"97":{"position":[[466,13]]},"98":{"position":[[676,13]]},"99":{"position":[[624,13],[713,13]]},"100":{"position":[[654,13]]},"102":{"position":[[460,13]]},"104":{"position":[[655,13]]},"106":{"position":[[20796,14],[21852,13],[22644,13]]},"107":{"position":[[46,14],[159,14],[4325,14],[4772,14],[4787,13]]},"112":{"position":[[2578,14],[2827,13],[2896,14]]},"113":{"position":[[9698,14]]},"115":{"position":[[553,14],[617,14],[1109,14],[1290,15],[1537,15],[1667,14]]},"124":{"position":[[4532,14],[5285,11],[6012,14],[6686,11],[6931,14],[9846,11]]},"125":{"position":[[4092,11]]},"126":{"position":[[36,14],[87,14],[130,14],[164,14],[216,13],[799,14],[945,14],[4080,14],[4171,14]]},"127":{"position":[[138,14],[297,14],[1175,14],[1315,14],[2425,13],[2539,13],[3584,14],[3695,14],[3966,14],[6549,14],[7386,14],[7992,14]]},"129":{"position":[[10520,13],[10920,14],[11150,15]]},"130":{"position":[[1550,14]]},"131":{"position":[[4848,13],[5043,14],[8195,13],[14782,13],[15182,14],[15871,14]]},"132":{"position":[[2105,14],[2366,14]]},"133":{"position":[[5018,13],[49534,13],[49915,15],[50399,14],[50744,14]]},"134":{"position":[[3708,14],[4030,14]]},"135":{"position":[[5704,11],[7909,13],[9214,13],[16874,13],[19221,14]]},"138":{"position":[[5380,11],[7484,11],[9745,11]]},"139":{"position":[[1319,13],[7532,11]]},"140":{"position":[[1340,13],[3758,13],[3845,13],[6441,11],[11669,13],[12361,13],[12438,13],[12510,13],[12582,13]]},"141":{"position":[[40,15],[98,13],[3510,13]]},"142":{"position":[[5141,14],[6217,13],[6401,11],[8791,13],[10216,13],[13647,14],[14071,13],[15842,14],[15913,14],[18044,13],[18709,13],[21114,14],[24185,13]]},"143":{"position":[[5714,14]]},"147":{"position":[[41,15],[198,13],[466,14]]},"152":{"position":[[3505,14],[3744,13],[3811,14],[6952,13],[7011,13],[7475,13],[7641,14],[7868,14],[7988,14]]}}}],["communication_finish",{"_index":6427,"t":{},"d":{},"k":{},"b":{"129":{"position":[[10496,22]]},"131":{"position":[[14758,22]]},"133":{"position":[[49510,22]]}}}],["communication_to_abort",{"_index":7136,"t":{},"d":{},"k":{},"b":{"139":{"position":[[652,23],[23587,22]]},"140":{"position":[[645,23],[21439,22]]},"147":{"position":[[4158,23],[7391,23]]}}}],["communicationabort",{"_index":7951,"t":{},"d":{},"k":{},"b":{"147":{"position":[[4099,18],[7259,18]]}}}],["communicaton",{"_index":5530,"t":{"126":{"position":[[45,13]]}},"d":{},"k":{},"b":{"112":{"position":[[2949,13]]},"115":{"position":[[1617,13]]},"127":{"position":[[1228,13]]},"152":{"position":[[3864,13],[7940,13]]}}}],["compar",{"_index":820,"t":{"76":{"position":[[45,7]]}},"d":{},"k":{},"b":{"68":{"position":[[13274,7],[19129,7],[19209,7],[19289,7],[19369,7],[19449,7],[19529,7],[19609,7],[19688,7],[19748,7],[19828,7],[19911,7],[20031,7],[20197,7],[20277,7],[20360,7],[20480,7],[20601,7],[20665,7],[20729,7],[20793,7],[20857,7],[20921,7],[20985,7],[21049,7],[21116,7],[21199,7],[21282,7],[21365,7]]},"69":{"position":[[1994,7],[3323,7],[4050,7],[4168,7],[4201,7],[4320,8],[4359,7],[4817,7],[4938,7],[5059,7],[5177,7],[5209,7],[5385,8],[5424,7],[5755,7],[5876,7],[5997,7],[6082,8],[6129,11],[6258,7],[9279,7],[9350,7],[9393,7],[9532,7],[9603,7],[9646,7],[16112,7],[16175,7],[16536,7],[16939,7],[17884,7],[18013,7],[18382,7],[19813,7],[19884,7],[19951,7],[20018,7],[20150,7],[20227,7],[20365,7],[21201,7],[24069,7],[24136,7],[24203,7],[24270,7],[24337,7],[24404,7],[24471,7],[24538,7],[24605,7],[24672,7],[24739,7],[24806,7],[24873,7],[24940,7],[25007,7],[25074,7],[25141,7],[25208,7],[25275,7],[25342,7],[25410,7],[25478,7],[25546,7],[25614,7],[25682,7],[25750,7],[25818,7],[25886,7],[25954,7],[26022,7],[26090,7],[26158,7],[26229,7],[26265,7],[26336,7],[26372,7],[26443,7],[26479,7],[26550,7],[26586,7],[26657,7],[26693,7],[26764,7],[26800,7],[26871,7],[26907,7],[26978,7],[27014,7],[27085,7],[27121,7],[27192,7],[27228,7],[27301,7],[27337,7],[27410,7],[27446,7],[27519,7],[27555,7],[27628,7],[27664,7],[27737,7],[27773,7],[27846,7],[27882,7]]},"71":{"position":[[35392,7]]},"75":{"position":[[19025,7]]},"76":{"position":[[1403,7],[1425,7],[2963,7],[3054,7],[4234,7],[4332,7],[4408,7],[4926,7],[5030,7],[5161,7],[5265,7],[5665,7],[6937,7],[7013,7],[14373,7],[14694,8],[14782,8]]},"83":{"position":[[5915,7],[6085,7],[7352,7],[7499,7],[8052,7],[8199,7],[13480,7],[13617,7],[13715,7],[13852,7],[14899,7],[14920,7],[14947,7],[26446,7],[26571,7],[27211,7],[27421,7],[29566,7],[29631,7],[38871,7],[39030,7],[39185,7],[39344,7],[55403,7]]},"84":{"position":[[5110,7],[5398,7]]},"105":{"position":[[2806,7],[2843,7],[3259,7],[5079,7],[5249,7],[5361,7],[5510,7],[5659,7],[5808,7],[7026,7],[7060,7],[7096,7],[7130,7],[7165,7],[7202,7],[7412,7],[7446,7],[7482,7],[7516,7],[7551,7],[7588,7],[11239,7],[11336,7],[20990,7],[21088,7],[21190,7],[21288,7],[21388,7],[21492,7],[24173,7],[24246,7],[30648,7],[37345,7]]},"109":{"position":[[6249,10],[7188,10],[7266,10],[7344,10],[7422,10],[7500,10],[7578,10]]},"122":{"position":[[50,7]]},"128":{"position":[[5528,8]]},"137":{"position":[[1066,8]]},"144":{"position":[[320,7],[449,7]]},"146":{"position":[[2616,7],[2741,7],[4141,8],[7193,7],[7249,7],[15420,7],[16392,7]]},"152":{"position":[[5578,7]]}}}],["compare0",{"_index":2627,"t":{},"d":{},"k":{},"b":{"76":{"position":[[3027,8]]}}}],["compare1",{"_index":2628,"t":{},"d":{},"k":{},"b":{"76":{"position":[[3044,8]]}}}],["compare_b_channel",{"_index":1091,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16979,18],[20666,17]]}}}],["compare_b_mod",{"_index":1093,"t":{},"d":{},"k":{},"b":{"69":{"position":[[17029,15],[20728,14]]}}}],["compare_b_ref_high",{"_index":1096,"t":{},"d":{},"k":{},"b":{"69":{"position":[[17191,19],[20586,18]]}}}],["compare_b_ref_low",{"_index":1095,"t":{},"d":{},"k":{},"b":{"69":{"position":[[17148,18],[20523,17]]}}}],["compare_cfg",{"_index":1080,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16386,12],[20345,11]]}}}],["compare_ipl",{"_index":7859,"t":{},"d":{},"k":{},"b":{"146":{"position":[[4758,12],[7636,12],[10750,12],[15637,11]]}}}],["compare_irq",{"_index":7858,"t":{},"d":{},"k":{},"b":{"146":{"position":[[4709,12],[7583,12],[10701,12],[15568,11]]}}}],["compare_mask",{"_index":1085,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16584,13],[20197,12]]}}}],["compare_match_valu",{"_index":3283,"t":{},"d":{},"k":{},"b":{"83":{"position":[[1083,20],[55281,19]]},"105":{"position":[[1110,20],[37223,19]]}}}],["compare_mode_mask",{"_index":1086,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16730,18],[20262,17]]}}}],["compare_oc0_ipl",{"_index":2728,"t":{},"d":{},"k":{},"b":{"76":{"position":[[13300,15]]}}}],["compare_oc0_irq",{"_index":2731,"t":{},"d":{},"k":{},"b":{"76":{"position":[[13430,15]]}}}],["compare_oc1_ipl",{"_index":2730,"t":{},"d":{},"k":{},"b":{"76":{"position":[[13364,15]]}}}],["compare_oc1_irq",{"_index":2732,"t":{},"d":{},"k":{},"b":{"76":{"position":[[13487,15]]}}}],["compare_ref_high",{"_index":1090,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16869,17],[20461,16]]},"146":{"position":[[4677,17],[7550,17],[10669,17],[15514,16]]}}}],["compare_ref_low",{"_index":1088,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16828,16],[20400,15]]},"146":{"position":[[4645,16],[7517,16],[10637,16],[15463,15]]}}}],["comparison",{"_index":551,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14206,10],[14270,10]]},"69":{"position":[[4125,10],[4388,10],[4563,10],[4723,10],[4903,10],[5024,10],[5134,10],[5445,10],[5575,10],[5841,10],[5962,10],[6222,10],[6310,10],[16246,10],[17387,10],[28491,10],[28755,10]]},"84":{"position":[[1683,10],[4276,10],[4365,10],[5219,10],[6757,10],[9845,10]]},"105":{"position":[[2697,10]]},"137":{"position":[[2921,10]]},"146":{"position":[[1484,10],[2594,10],[2757,10],[2873,10],[3465,10],[3541,10],[3585,10],[3689,10],[4107,10],[7320,10],[15596,10],[15663,10],[16334,10],[16450,10],[16503,10]]}}}],["comparison_mod",{"_index":7856,"t":{},"d":{},"k":{},"b":{"146":{"position":[[4589,16],[7462,16],[10581,16],[15397,15]]}}}],["compat",{"_index":2246,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1110,13]]},"128":{"position":[[11035,13],[11454,13]]}}}],["compens",{"_index":2334,"t":{},"d":{},"k":{},"b":{"75":{"position":[[13728,12],[13815,10],[13951,12],[21161,13],[21493,12],[32148,12]]},"105":{"position":[[3197,12]]},"106":{"position":[[6097,12],[6119,12],[6241,12],[6293,12],[6315,12],[6420,12],[6468,12],[6490,12],[6595,12],[6643,12],[6665,12],[6770,12],[6818,12],[6840,12],[6945,12],[6993,12],[7015,12],[7120,12],[7168,12],[7190,12],[7295,12],[7343,12],[7365,12],[7470,12],[7518,12],[7540,12],[7645,12],[7693,12],[7715,12],[7820,12],[7868,12],[7890,12],[7995,12],[8043,12],[8065,12],[8171,12],[15610,12],[18797,12]]},"133":{"position":[[1520,13],[55055,13]]}}}],["compensation_filter_coefficient_h[11",{"_index":5270,"t":{},"d":{},"k":{},"b":{"106":{"position":[[16224,37]]}}}],["compensation_filter_shift",{"_index":5259,"t":{},"d":{},"k":{},"b":{"106":{"position":[[15583,25]]}}}],["compil",{"_index":1762,"t":{},"d":{},"k":{},"b":{"71":{"position":[[4083,7],[7429,9],[38006,7],[43706,7]]},"113":{"position":[[1120,8],[1390,8]]},"128":{"position":[[15880,11],[26697,8]]},"139":{"position":[[18211,7]]},"140":{"position":[[16830,7]]}}}],["compiler'",{"_index":6329,"t":{},"d":{},"k":{},"b":{"128":{"position":[[26733,10]]}}}],["complementari",{"_index":4874,"t":{},"d":{},"k":{},"b":{"105":{"position":[[3125,13]]}}}],["complet",{"_index":533,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13649,9],[13706,9],[13763,9],[13818,9],[13871,9]]},"68":{"position":[[2300,9],[2370,10],[8816,10],[10386,9]]},"69":{"position":[[1929,9],[8310,9],[8519,10],[11026,9],[14250,9],[15576,9],[29784,10]]},"71":{"position":[[42358,10],[42632,9],[43210,10],[43482,9]]},"74":{"position":[[8409,8],[8458,8]]},"75":{"position":[[14514,9],[27153,8],[27399,8]]},"79":{"position":[[4397,10],[6620,10],[7371,9],[7529,10],[12620,10],[18860,10]]},"83":{"position":[[50666,10],[58378,9]]},"84":{"position":[[11081,10]]},"85":{"position":[[9537,9],[9617,9]]},"86":{"position":[[7225,9],[7304,9]]},"87":{"position":[[2698,10],[2930,10],[3225,10],[11079,9],[11614,9],[11875,10],[12532,9],[18133,10],[18237,10],[18296,10],[18353,10],[19686,9]]},"88":{"position":[[3582,10],[17487,9],[17915,10],[24458,9],[24984,9],[25271,9],[27816,8],[28125,8],[32348,9],[32629,9],[33710,9],[34695,10],[36237,9],[36540,9],[37633,9],[38010,9],[38693,9],[40072,9],[48610,9],[56339,9],[57066,9],[58004,9],[58285,9],[58991,9],[59271,9],[60227,9]]},"113":{"position":[[3795,9],[12651,10]]},"124":{"position":[[1274,10],[4272,10],[4664,10],[6144,10],[15697,9],[16648,9]]},"125":{"position":[[1397,11],[4974,9],[5469,10]]},"128":{"position":[[1711,10],[13944,10]]},"131":{"position":[[1612,9],[5122,9],[5744,9],[7605,11],[7804,9],[8627,10],[19471,9]]},"133":{"position":[[9621,11],[28649,9],[47351,9]]},"135":{"position":[[1393,8],[18250,8],[18342,10],[19408,8],[19502,10],[20619,8],[20717,10]]},"138":{"position":[[1271,10],[14803,9]]},"139":{"position":[[1444,9],[11403,8],[11541,8]]},"140":{"position":[[1465,9],[8772,8],[8910,8]]},"141":{"position":[[1389,8],[1580,8],[11273,10]]},"142":{"position":[[1535,8],[3313,8],[20242,8],[20334,10],[21301,8],[21395,10],[22413,8],[22511,10]]},"145":{"position":[[3404,9],[7073,10],[7979,10],[11826,9],[15786,8],[16187,9],[16356,9],[16828,9]]},"146":{"position":[[3210,8],[3288,8],[3334,8],[3440,9],[6771,9],[13740,9]]},"147":{"position":[[5184,9],[5213,9],[5903,9],[5999,8],[9980,8],[10030,8]]},"150":{"position":[[6562,9],[10148,8]]}}}],["complex",{"_index":7188,"t":{},"d":{},"k":{},"b":{"139":{"position":[[9462,8]]}}}],["compli",{"_index":6387,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1820,6],[4705,6],[8261,6],[8670,6],[15602,6]]},"138":{"position":[[6503,6]]}}}],["complianc",{"_index":2422,"t":{},"d":{},"k":{},"b":{"75":{"position":[[21076,10]]}}}],["compon",{"_index":5668,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7075,9],[7120,10],[7198,9],[7231,10]]},"128":{"position":[[30075,9]]},"145":{"position":[[1314,10]]}}}],["composit",{"_index":1000,"t":{},"d":{},"k":{},"b":{"69":{"position":[[6339,10]]}}}],["compris",{"_index":2272,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2342,9]]}}}],["comput",{"_index":8257,"t":{},"d":{},"k":{},"b":{"150":{"position":[[15118,8]]}}}],["concentr",{"_index":6714,"t":{},"d":{},"k":{},"b":{"134":{"position":[[1369,13],[1413,13],[1454,13],[1853,13],[1897,13],[1938,13],[2179,13],[3028,13],[3476,13]]}}}],["concept",{"_index":8318,"t":{},"d":{},"k":{},"b":{"151":{"position":[[769,8],[888,9]]}}}],["conceptu",{"_index":3107,"t":{},"d":{},"k":{},"b":{"80":{"position":[[927,10],[1196,10]]}}}],["condit",{"_index":25,"t":{},"d":{},"k":{},"b":{"0":{"position":[[362,10]]},"67":{"position":[[14217,9],[14281,9]]},"69":{"position":[[5632,9],[16671,9],[20293,9],[20753,9]]},"71":{"position":[[29737,9],[30160,9],[32312,9],[32735,9],[44711,9]]},"75":{"position":[[22989,10]]},"82":{"position":[[157,9],[3469,9],[3871,9],[6282,9],[6760,10]]},"83":{"position":[[2999,9]]},"85":{"position":[[5037,9],[5622,9]]},"87":{"position":[[11101,9],[11322,10],[11898,9]]},"88":{"position":[[14395,9],[14557,9],[14683,9],[14743,9],[14881,9],[18386,9],[18540,9],[37304,10],[46529,9],[46554,10],[46727,9],[46757,10],[46920,9],[46945,10],[47510,9],[47558,9],[58026,9],[59013,9]]},"89":{"position":[[980,9]]},"90":{"position":[[979,9]]},"91":{"position":[[998,9],[5952,10]]},"113":{"position":[[3480,10]]},"124":{"position":[[4618,11],[5568,9],[5590,9],[6098,11],[7076,10],[13481,9],[13530,9],[15926,10],[16869,10]]},"125":{"position":[[1415,10],[4376,9],[4398,9],[5015,9],[5664,11],[13932,9],[13981,9]]},"133":{"position":[[7024,12],[8372,12]]},"135":{"position":[[17014,11],[18214,11],[19372,11],[20583,11]]},"138":{"position":[[7673,10]]},"142":{"position":[[18849,11],[20206,11],[21265,11],[22377,11]]},"146":{"position":[[4353,9],[17268,10]]},"148":{"position":[[12400,11]]}}}],["condition(",{"_index":8083,"t":{},"d":{},"k":{},"b":{"149":{"position":[[4340,12]]}}}],["config",{"_index":1102,"t":{},"d":{},"k":{},"b":{"69":{"position":[[17921,6]]},"77":{"position":[[4978,6]]},"137":{"position":[[8015,6]]},"292":{"position":[[110,6],[531,6]]}}}],["configassert",{"_index":6246,"t":{},"d":{},"k":{},"b":{"128":{"position":[[15298,14],[15421,14],[15445,14],[15618,14],[15800,14],[15970,14],[16090,14],[16410,14],[16589,14],[16647,14],[16777,14],[16816,13],[16949,14],[17252,14],[17319,13]]}}}],["configenable_mpu",{"_index":6133,"t":{},"d":{},"k":{},"b":{"128":{"position":[[989,16]]}}}],["configenable_trustzon",{"_index":6134,"t":{},"d":{},"k":{},"b":{"128":{"position":[[1126,22]]}}}],["configkernel_interrupt_prior",{"_index":6229,"t":{},"d":{},"k":{},"b":{"128":{"position":[[13368,31],[13871,32]]}}}],["configmax_syscall_interrupt_prior",{"_index":6232,"t":{},"d":{},"k":{},"b":{"128":{"position":[[13593,36],[13785,36],[14169,36],[14849,37]]}}}],["configminimal_stack_s",{"_index":6313,"t":{},"d":{},"k":{},"b":{"128":{"position":[[23104,24],[23515,24],[23602,25]]}}}],["configtimer_task_stack_depth",{"_index":6322,"t":{},"d":{},"k":{},"b":{"128":{"position":[[24425,28],[24846,28],[24938,29]]}}}],["configtotal_heap_s",{"_index":6331,"t":{},"d":{},"k":{},"b":{"128":{"position":[[26776,21]]}}}],["configur",{"_index":238,"t":{},"d":{},"k":{},"b":{"67":{"position":[[202,13],[2710,13],[5175,14],[5469,13],[5649,9],[5786,14],[9316,10],[11138,10],[11733,13],[11831,13]]},"68":{"position":[[1463,12],[1849,12],[2140,12],[2415,13],[2555,13],[2581,14],[2633,14],[2866,14],[4853,13],[5000,13],[9387,13],[9421,13],[9490,14],[13013,14],[15882,14],[16975,13],[17631,13],[18113,13],[23502,15],[24101,10],[24744,10],[24840,10],[24880,11]]},"69":{"position":[[1359,9],[1414,12],[1621,12],[2021,13],[2046,14],[2098,14],[2331,14],[3435,13],[3584,13],[3861,13],[9880,13],[10150,13],[11058,9],[13174,13],[13212,13],[13281,14],[16154,9],[16917,9],[17892,13],[18033,10],[18064,13],[19052,13],[20158,13],[20373,14],[20888,13],[21209,14],[21595,13],[29619,14],[30530,10],[31171,10],[31267,10],[31307,11],[31908,10],[31961,10],[32172,10],[33450,10]]},"70":{"position":[[15836,10],[16196,10],[16431,10],[16668,10],[17052,10],[17406,10],[17852,10],[18092,10]]},"71":{"position":[[1301,13],[1603,13],[1691,13],[1840,13],[1884,13],[1924,13],[2126,9],[2400,14],[3082,12],[3363,13],[5710,13],[5864,13],[6704,14],[9266,13],[9354,10],[9391,13],[9412,13],[9587,13],[9620,14],[9675,14],[10174,10],[10698,9],[10907,13],[42336,13],[43188,13]]},"72":{"position":[[33,14],[87,14]]},"73":{"position":[[33,14],[87,14]]},"74":{"position":[[1400,14],[2575,13],[2887,14],[4296,13],[7444,13]]},"75":{"position":[[1520,10],[1691,12],[1729,12],[2592,13],[2617,14],[2669,14],[11260,10],[11533,14],[14936,13],[15971,13],[16656,13],[17762,13],[18457,10],[19816,13],[20400,9],[20834,9],[20882,13],[21013,13],[22014,13],[22105,13],[22362,10],[22665,10],[23334,13],[23618,12],[24684,9],[29474,9],[31207,13],[31349,13],[31437,13],[31801,13],[32226,13],[32351,14],[35777,9]]},"76":{"position":[[1480,12],[1788,13],[1813,14],[1864,14],[2096,14],[3215,9],[3352,9],[3452,9],[3559,9],[3875,9],[3977,9],[5384,13],[5513,13],[5582,13],[5793,13],[12426,9],[12473,9],[22960,10]]},"77":{"position":[[1349,13],[1374,14],[1424,14],[1655,14],[1892,13],[2304,13],[2336,13],[2375,13],[4514,9],[4673,9],[5593,13],[8035,9],[8435,10]]},"78":{"position":[[846,13],[1186,14],[2134,13],[2995,9],[4174,13]]},"79":{"position":[[1519,12],[1632,12],[1667,12],[1704,13],[1729,14],[1782,14],[2016,14],[5613,13],[5746,13],[5830,13],[6031,10],[7975,14],[9832,13],[11656,13],[12159,12],[16664,9],[16831,10],[17446,10],[17603,13],[19798,10]]},"80":{"position":[[2579,13],[2765,13],[2870,9],[2939,13],[3048,9],[3277,14],[3434,10],[3820,14],[3870,14],[4101,14],[5225,10],[5261,13],[8860,13]]},"81":{"position":[[366,13],[1521,13],[3839,13]]},"82":{"position":[[111,11],[1101,13],[1646,14],[2966,14],[3208,13],[5683,13]]},"83":{"position":[[2227,12],[2273,12],[3755,12],[4092,12],[4154,13],[4179,14],[4229,14],[5031,14],[6430,14],[8483,14],[13558,12],[13793,12],[14025,12],[14239,12],[15209,13],[15352,13],[15378,13],[15686,13],[15962,9],[16217,9],[17006,10],[17029,10],[19002,10],[19416,10],[19508,12],[19606,10],[26419,12],[26496,9],[27044,9],[28271,14],[28600,11],[30017,9],[30120,9],[30275,10],[30352,13],[30413,13],[31802,11],[41620,10],[41877,10],[46030,9],[46122,9],[46540,15]]},"84":{"position":[[1277,12],[2163,12],[2225,13],[2250,14],[2300,14],[2531,14],[4403,13],[15550,10],[15832,15]]},"85":{"position":[[1236,13],[2213,13],[2432,13],[2956,13],[3024,13],[4477,13],[7500,10],[8402,13]]},"86":{"position":[[1045,13],[2059,13],[2277,13],[2605,13],[2673,13],[3775,13],[6107,13],[7626,10],[7762,10]]},"87":{"position":[[1489,11],[2172,10],[2380,11],[4200,13],[5050,14],[6710,14],[6881,13],[7420,13],[7618,14],[7874,13],[7947,13],[11172,9],[14282,13],[18734,11],[19744,11]]},"88":{"position":[[2416,13],[4045,11],[4250,9],[4557,10],[5172,10],[6108,10],[6718,13],[6744,14],[6796,14],[7529,14],[11444,9],[11595,9],[11805,9],[12960,9],[15147,13],[15196,9],[15601,14],[16810,13],[16937,10],[17222,9],[17541,10],[17699,10],[18914,10],[19190,10],[21076,9],[22831,9],[23687,10],[23919,13],[24552,10],[26885,10],[27238,13],[30550,9],[31432,10],[31664,13],[31944,10],[41746,11],[42787,13],[46013,13],[46173,13],[46276,11],[46362,9],[47169,11],[51704,9],[52007,14],[52778,13],[53506,9],[53604,9]]},"89":{"position":[[934,11],[1107,9],[1228,11],[1305,11],[1409,11],[1538,13],[1564,14],[1619,14],[1855,14],[2859,13],[2954,13],[3019,10],[3081,13],[3530,13],[3917,9],[5363,9],[5761,14]]},"90":{"position":[[933,11],[1096,9],[1217,11],[1294,11],[1368,11],[1487,13],[1512,14],[1567,14],[1803,14],[2577,13],[2672,13],[2737,10],[2799,13],[3176,13],[3549,9],[4995,9],[5377,14]]},"91":{"position":[[952,11],[1116,9],[1237,11],[1315,11],[1417,11],[1537,13],[1563,14],[1619,14],[1856,14],[2936,13],[3032,13],[3097,10],[3160,13],[3612,13],[4186,9],[5515,13],[6543,9],[6932,14]]},"92":{"position":[[1760,9],[2490,13],[2536,10],[2598,14],[2651,14],[2885,14],[3146,13],[3220,13],[10448,13],[10520,14],[10540,13],[10584,11],[10659,14],[11193,10],[11507,10],[11569,10],[11687,14],[11860,10],[12101,10],[12163,10],[12298,10],[12846,9],[12893,13],[13146,13],[13184,14],[13623,9],[13775,9],[13954,9],[14016,13],[14054,14],[15557,9],[15695,13],[15733,14],[17222,13],[17259,10],[17781,13],[17818,10],[18127,13],[18164,10],[18672,13],[18733,10],[18863,14],[18969,14],[19066,14],[20504,9],[25502,10],[26273,10],[26773,10],[27110,10],[27438,10],[27925,10],[28898,13],[28924,9],[28976,13],[29813,10],[29866,13],[30074,14],[30201,13],[30713,10],[30816,10],[31003,13],[31041,14],[37997,10]]},"93":{"position":[[60,11],[786,13],[841,10],[994,13],[1143,13],[1212,13],[1285,14],[3041,15],[3265,13],[3689,9],[3793,13],[3988,9],[6007,11],[6227,11],[8334,13]]},"94":{"position":[[1212,13],[1765,13],[3071,13],[4967,13]]},"95":{"position":[[1595,14]]},"96":{"position":[[1407,14]]},"97":{"position":[[1155,14]]},"98":{"position":[[1533,14]]},"99":{"position":[[1566,14]]},"100":{"position":[[1380,14]]},"101":{"position":[[1247,13],[1747,13],[3155,13],[4755,13]]},"102":{"position":[[1130,14]]},"103":{"position":[[1222,13],[1327,13],[2285,13],[3441,13]]},"104":{"position":[[1504,14]]},"105":{"position":[[2123,12],[2169,12],[3832,12],[3894,13],[3920,14],[3971,14],[4331,14],[5976,13],[8842,12],[9079,12],[10816,13],[10944,13],[10971,13],[17195,14],[17669,15],[28233,15]]},"106":{"position":[[1028,13],[1054,14],[1104,14],[1439,14],[1750,13],[2555,13],[12485,13],[12584,10],[12623,13],[12650,13],[14756,13],[20642,14]]},"107":{"position":[[1183,13],[3667,14],[3781,10],[4027,13],[7307,13]]},"108":{"position":[[679,9],[922,13],[1142,13],[1167,14],[1218,14],[1450,14],[1950,13],[2340,9],[2896,13],[2966,13],[5759,15],[5852,10],[5916,13]]},"109":{"position":[[210,12],[1089,13],[1344,9],[2889,14],[3059,13],[5504,13]]},"113":{"position":[[2375,10],[2765,14],[5449,9],[12365,13],[12789,13],[13376,13]]},"115":{"position":[[732,11]]},"116":{"position":[[780,14],[854,13],[897,14]]},"124":{"position":[[1944,13],[1969,14],[2027,14],[2566,14],[3800,13],[4776,13],[5108,10],[5220,13],[5348,10],[5515,13],[6282,13],[6358,10],[13054,13]]},"125":{"position":[[1428,13],[1453,14],[1510,14],[1748,14],[3347,9],[3584,13],[3916,10],[4028,13],[4155,10],[4322,13],[5200,13],[7492,13],[7568,10],[7788,13],[13771,13]]},"126":{"position":[[971,13],[1261,13],[1334,13],[2307,13]]},"127":{"position":[[123,10],[1507,13],[1532,14],[1589,14],[1827,14],[2387,14],[3033,13],[6651,14],[7371,10],[7599,11],[7662,13]]},"128":{"position":[[503,14],[520,13],[545,14],[593,14],[828,14],[882,15],[2879,9],[19700,11],[25979,13],[29954,13],[30048,10],[30120,13]]},"129":{"position":[[122,10],[3094,13],[3119,14],[3173,14],[3643,14],[4028,13],[10835,14],[11518,10],[11708,11],[11771,13],[13374,13],[14115,13]]},"130":{"position":[[1469,13],[1701,13],[3075,13],[6131,13]]},"131":{"position":[[122,10],[2660,9],[2769,13],[2794,14],[2848,14],[3499,14],[4197,13],[6132,10],[15097,14],[16248,10],[16442,11],[16505,13],[19767,13],[20600,13]]},"132":{"position":[[1733,13],[2256,13],[3328,13],[5273,13]]},"133":{"position":[[4908,11],[5981,13],[6006,14],[6062,14],[6299,14],[6803,13],[8743,14],[50308,13],[50531,14],[52328,11],[52902,11],[53492,11],[54267,11],[55290,11],[55918,11],[56860,11],[57710,11],[58542,11],[59399,11],[60249,11],[61099,11],[61927,11]]},"134":{"position":[[3615,13],[3918,13],[6416,13],[12630,13]]},"135":{"position":[[1321,12],[1596,13],[1621,14],[1672,14],[2032,14],[3677,9],[3952,9],[4225,9],[4476,9],[4583,9],[5483,13],[5638,13],[5786,9],[6420,9],[6767,11],[7171,9],[7294,10],[7833,10],[9405,9],[9503,9],[10984,11],[11219,9],[12307,13],[12546,11],[13392,14],[13460,14],[17026,10],[17079,14],[17354,13]]},"136":{"position":[[1180,10],[3369,14],[3986,13],[4011,14],[4061,14],[4292,14],[4543,13],[6045,13],[6273,13],[10086,13],[10585,15],[11155,10],[11217,13],[18312,10]]},"137":{"position":[[101,11],[1290,13],[2742,13],[3032,14],[3560,14],[5059,13],[8822,9],[9335,13]]},"138":{"position":[[1644,14],[2026,13],[2051,14],[2107,14],[2676,14],[2943,13],[3765,12],[5002,13],[5198,10],[5310,13],[5443,10],[5610,13],[6000,13],[6076,10],[6787,12],[12514,13]]},"139":{"position":[[1788,13],[1813,14],[1870,14],[2400,14],[2657,13],[3817,12],[4532,13],[5084,9],[5344,9],[7132,13],[7486,13],[7914,14],[7998,9],[8045,10],[8094,10],[8268,10],[8741,10],[8795,9],[10036,14],[13351,13],[13930,13],[14209,13],[16042,14],[16426,14],[16753,14],[18122,10],[18168,15],[18419,13],[22061,10]]},"140":{"position":[[1757,13],[1782,14],[1838,14],[2306,14],[3333,12],[4937,13],[6030,13],[6395,13],[7439,14],[10750,13],[11139,13],[13025,14],[13894,14],[16741,10],[16787,15],[17038,13],[19919,10]]},"141":{"position":[[1172,13],[2502,14],[3693,13],[7445,13],[10741,10]]},"142":{"position":[[1420,12],[1794,13],[1819,14],[1871,14],[2530,13],[2559,14],[2804,13],[5636,9],[5810,9],[5982,9],[6165,13],[6268,10],[6308,13],[6335,13],[6480,9],[6893,10],[7299,9],[7574,13],[7941,11],[8344,9],[8468,10],[10406,9],[10504,9],[12011,11],[12243,9],[13469,13],[14159,11],[14859,14],[18861,10],[18914,14],[19189,13],[19312,14]]},"143":{"position":[[129,11],[1639,13],[3178,15],[5100,13],[10458,13]]},"144":{"position":[[366,13],[2198,13],[4624,14],[4834,13],[6933,10],[10163,13]]},"145":{"position":[[1444,9],[3105,13],[3277,13],[4677,14],[4853,13],[10117,13]]},"146":{"position":[[1670,13],[1695,14],[1747,14],[1980,14],[3718,13],[3809,13],[4342,10],[7235,9],[15278,13],[15437,14],[16884,15],[17984,10],[18037,10],[18250,10],[19395,10]]},"147":{"position":[[1847,13],[2866,14],[4873,13],[6868,11],[9404,13]]},"148":{"position":[[1414,13],[1460,9],[1520,14],[1570,14],[1801,14],[3296,10],[3500,13],[3630,13],[3788,13],[4436,10],[9607,13],[10647,10],[10692,15],[10887,13],[11120,11],[11183,13]]},"149":{"position":[[1376,13],[3394,13],[6113,13]]},"150":{"position":[[1787,12],[2026,13],[2051,14],[2107,14],[2350,14],[3203,13],[5391,13],[5987,13],[6107,13],[6176,13],[6445,9],[7201,13],[8078,13]]},"151":{"position":[[139,14],[1008,13],[1305,14],[1353,14],[1388,13],[2931,14],[2979,14],[3357,14]]},"152":{"position":[[7116,11]]},"290":{"position":[[42,14],[158,14]]},"291":{"position":[[28,14],[130,14]]},"292":{"position":[[618,13],[1631,13],[1776,13]]}}}],["configurationoptionsdefaultdescript",{"_index":674,"t":{},"d":{},"k":{},"b":{"68":{"position":[[2688,38],[2993,38]]},"69":{"position":[[2153,38],[2474,38]]},"71":{"position":[[9730,38]]},"72":{"position":[[153,38]]},"73":{"position":[[153,38]]},"75":{"position":[[2724,38],[11692,38]]},"76":{"position":[[1918,38],[2241,38]]},"77":{"position":[[1477,38],[1957,38]]},"79":{"position":[[1838,38],[2175,38]]},"80":{"position":[[3923,38],[4260,38]]},"83":{"position":[[4282,38],[5184,38]]},"84":{"position":[[2353,38],[2658,38]]},"88":{"position":[[6851,38],[7668,38]]},"89":{"position":[[1677,38],[2020,38]]},"90":{"position":[[1625,38],[1968,38]]},"91":{"position":[[1678,38],[2023,38]]},"92":{"position":[[2707,38],[3024,38]]},"105":{"position":[[4025,38],[4476,38]]},"106":{"position":[[1157,38],[1590,38]]},"108":{"position":[[1272,38],[1621,38]]},"124":{"position":[[2088,38],[2731,38]]},"125":{"position":[[1570,38],[1925,38]]},"127":{"position":[[1649,38],[1998,38],[2578,38]]},"128":{"position":[[647,38]]},"129":{"position":[[3230,38],[3836,38]]},"131":{"position":[[2905,38],[3692,38]]},"133":{"position":[[6121,38],[6466,38]]},"135":{"position":[[1726,38],[2169,38]]},"136":{"position":[[4114,38],[4608,38]]},"138":{"position":[[2166,38],[3008,38]]},"139":{"position":[[1930,38],[2722,38]]},"140":{"position":[[1897,38],[2471,38]]},"142":{"position":[[1926,38],[2869,38]]},"146":{"position":[[1802,38],[2123,38]]},"148":{"position":[[1623,38],[1942,38]]},"150":{"position":[[2165,38],[2505,38]]}}}],["configuraton",{"_index":4502,"t":{},"d":{},"k":{},"b":{"92":{"position":[[12922,12]]}}}],["configuse_16_bit_tick",{"_index":6165,"t":{},"d":{},"k":{},"b":{"128":{"position":[[5033,22],[5142,22]]}}}],["confirm",{"_index":5479,"t":{},"d":{},"k":{},"b":{"109":{"position":[[4716,7]]},"146":{"position":[[14247,7]]}}}],["conflict",{"_index":4367,"t":{},"d":{},"k":{},"b":{"89":{"position":[[3109,9]]},"90":{"position":[[2827,9]]},"91":{"position":[[3188,9]]},"128":{"position":[[410,10]]},"135":{"position":[[2689,10]]},"141":{"position":[[1922,9]]},"142":{"position":[[4018,10]]}}}],["connect",{"_index":73,"t":{"112":{"position":[[45,12]]}},"d":{},"k":{},"b":{"0":{"position":[[1304,10]]},"75":{"position":[[11552,12],[11650,12],[24136,10],[28890,9],[28997,9],[30269,9]]},"80":{"position":[[781,7],[3320,7]]},"88":{"position":[[7548,12],[7636,12]]},"92":{"position":[[2003,11],[2071,10],[14505,9]]},"105":{"position":[[3074,10]]},"106":{"position":[[1458,12],[1552,12]]},"112":{"position":[[22,12]]},"113":{"position":[[12713,9]]},"116":{"position":[[1446,12],[1460,12]]},"124":{"position":[[2585,12],[2686,12],[6828,9]]},"125":{"position":[[1767,12],[1874,12],[10588,12]]},"127":{"position":[[1846,12],[1950,12],[2406,12],[2520,12]]},"133":{"position":[[5072,10],[13156,9],[17290,9],[21594,9],[26608,9],[32761,9],[36876,9],[41181,9],[45433,9]]},"135":{"position":[[2051,12],[2138,12]]},"138":{"position":[[2695,12],[2794,12]]},"139":{"position":[[2419,12],[2513,12],[8506,9]]},"140":{"position":[[2325,12],[2426,12]]},"141":{"position":[[10656,10]]},"142":{"position":[[2578,12],[2666,12]]},"150":{"position":[[6226,7],[16377,9],[16438,9]]}}}],["connectivityconnect",{"_index":8346,"t":{},"d":{},"k":{},"b":{"152":{"position":[[1027,25]]}}}],["consecut",{"_index":2216,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8252,11]]},"83":{"position":[[38105,11]]},"109":{"position":[[8166,11]]}}}],["consequenti",{"_index":84,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1497,14]]}}}],["consid",{"_index":157,"t":{},"d":{},"k":{},"b":{"1":{"position":[[1070,10]]},"68":{"position":[[5607,8],[13110,11],[15979,11]]},"69":{"position":[[11079,11]]},"83":{"position":[[3459,8]]},"84":{"position":[[1843,8]]},"105":{"position":[[3494,8]]},"139":{"position":[[3960,8]]},"140":{"position":[[3476,8]]},"145":{"position":[[1722,8]]}}}],["consider",{"_index":738,"t":{},"d":{},"k":{},"b":{"68":{"position":[[6038,14]]}}}],["consist",{"_index":4100,"t":{},"d":{},"k":{},"b":{"88":{"position":[[17005,7]]},"124":{"position":[[5416,7]]},"125":{"position":[[4223,7]]},"131":{"position":[[4621,8],[5402,8],[6322,8]]},"133":{"position":[[8183,10]]},"138":{"position":[[5511,7]]},"139":{"position":[[6042,8]]},"140":{"position":[[4843,8]]}}}],["const",{"_index":287,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1382,5],[2410,5],[3474,5],[3582,5],[3845,6],[3870,5],[3876,6],[3925,6],[3945,5],[3951,6],[4005,6],[4136,6],[4192,6],[4263,6],[4292,5],[4315,6],[4364,6],[4393,5],[4416,6],[4468,6],[4488,5],[4542,6],[4571,5],[4593,5],[4646,6],[4712,5],[4718,6],[4756,6],[4815,6],[4865,6],[4891,6],[5012,6],[5037,5],[5043,6],[5589,6],[5609,5],[5615,6],[6159,6],[6960,6],[7340,6],[7699,6],[7728,5],[7751,6],[8153,6],[8182,5],[8205,6],[8638,6],[8658,5],[9209,6],[9238,5],[9260,5],[9781,6],[9847,5],[9853,6],[9891,6],[10511,6],[10897,6],[10923,6],[11701,5],[11783,5],[11886,5]]},"68":{"position":[[67,5],[73,6],[141,5],[147,6],[561,5],[584,6],[661,5],[684,6],[870,6],[899,5],[971,6],[991,5],[1052,6],[1118,5],[1124,6],[1162,6],[9603,7],[10861,5],[11977,7],[12264,5],[13729,5],[14844,7],[15131,5],[23363,5],[23369,6],[23993,5],[23999,6],[27312,5],[27397,6],[27963,5],[28048,6],[29774,6],[29865,5],[30288,6],[30370,5],[30715,6],[30906,5],[30912,6],[31012,6]]},"69":{"position":[[67,5],[73,6],[141,5],[147,6],[561,5],[584,6],[661,5],[684,6],[788,6],[817,5],[889,6],[909,5],[970,6],[1036,5],[1042,6],[1080,6],[13392,7],[29451,5],[29457,6],[30422,5],[30428,6],[34712,5],[34797,6],[35363,5],[35448,6],[36371,6],[36462,5],[36896,6],[36978,5],[37342,6],[37533,5],[37539,6],[37639,6]]},"71":{"position":[[60,6],[1002,5],[14411,5],[14490,5],[37920,6],[47352,5],[47882,5],[48075,5]]},"74":{"position":[[2384,5],[2785,5],[2845,5],[3253,6],[3278,5],[3284,6],[3331,6],[3382,6],[3430,6],[3481,6],[3530,6],[3587,6],[3705,6],[3731,6],[3785,6],[3851,5],[3857,6],[3895,6],[4023,6],[4048,5],[4054,6],[4465,6],[4516,6],[4929,6],[4980,6],[5353,6],[5635,6],[6101,6],[6127,6],[6485,6],[6551,5],[6557,6],[6595,6],[7412,5],[7499,5]]},"75":{"position":[[48,6],[77,5],[83,6],[135,6],[192,6],[220,5],[246,6],[299,6],[327,5],[353,6],[416,6],[539,6],[569,6],[628,6],[694,5],[700,6],[738,6],[18645,5],[25364,5],[31848,5],[35577,6],[35668,5],[35674,6],[36388,6],[36740,6],[36912,6],[37736,6],[37908,6],[38487,6],[39373,6],[39465,6],[39888,6],[40079,5],[40085,6],[40185,6]]},"76":{"position":[[50,6],[108,6],[132,5],[199,6],[223,5],[257,5],[307,6],[361,6],[416,6],[472,6],[528,6],[556,6],[614,6],[644,6],[699,6],[752,6],[779,5],[785,6],[845,6],[926,6],[1005,6],[1073,5],[1079,6],[1119,6],[15581,6],[16033,6],[16119,5],[17961,6],[18047,5],[18143,5],[18579,6],[18963,6],[19409,6],[19973,6],[20512,6],[20602,6],[21320,6],[21412,6],[22100,6],[22554,6],[22643,5],[22649,6],[24040,6],[24536,6],[25030,6],[25223,5],[25229,6],[25331,6]]},"77":{"position":[[46,6],[71,5],[77,6],[127,6],[182,6],[209,6],[305,6],[389,6],[466,6],[5258,6],[5345,5],[5351,6],[5885,6],[6264,6],[6353,6],[7198,6],[7859,6],[8750,6]]},"78":{"position":[[1143,5],[1421,6],[1446,5],[1452,6],[1499,6],[1554,6],[1630,6],[1704,6],[1756,6],[1783,6],[1929,6],[1954,5],[1960,6],[2251,6],[2575,6],[2944,6],[3254,6],[3500,6],[3527,6],[4142,5],[4229,5]]},"79":{"position":[[54,6],[88,5],[94,6],[158,6],[246,6],[270,5],[325,5],[398,6],[496,6],[560,6],[625,6],[690,6],[731,6],[790,6],[854,6],[878,5],[915,5],[9124,5],[9390,5],[10934,5],[11380,6],[16468,6],[16564,5],[16570,6],[17166,6],[17858,6],[17944,5],[18123,5],[18484,6],[19231,6],[19715,6],[20175,6],[20661,6],[20764,6],[21259,6],[21723,6],[21809,5],[21988,5]]},"80":{"position":[[46,6],[71,5],[77,6],[127,6],[194,6],[282,6],[386,6],[467,6],[520,6],[5292,5],[8587,6],[8674,5],[8680,6],[9359,6],[9772,6],[10357,6],[10956,6],[11450,6],[11760,6]]},"81":{"position":[[447,5],[725,6],[750,5],[756,6],[803,6],[867,6],[949,6],[1050,6],[1128,6],[1178,6],[1295,6],[1320,5],[1326,6],[1638,6],[1949,6],[2326,6],[2735,6],[3071,6],[3340,6],[3807,5],[3894,5]]},"82":{"position":[[806,5],[1568,5],[1595,5],[1924,6],[2337,6],[2371,5],[2377,6],[2434,6],[2493,6],[2556,6],[2631,5],[2637,6],[2684,6],[2752,6],[2887,6],[2921,5],[2927,6],[3396,6],[3800,6],[4213,6],[4289,5],[4295,6],[4342,6],[5032,6],[5651,5],[5747,5]]},"83":{"position":[[48,6],[75,5],[81,6],[132,6],[185,6],[238,6],[292,6],[347,6],[404,6],[428,5],[494,6],[518,5],[552,5],[603,6],[631,6],[688,6],[718,6],[778,6],[856,6],[935,6],[1014,6],[1154,6],[1258,5],[1313,6],[1381,5],[1387,6],[1427,6],[1491,6],[31679,5],[46310,6],[46399,5],[46405,6],[47708,6],[48068,6],[48430,6],[48946,6],[49390,6],[49939,6],[50025,5],[50961,6],[51047,5],[51143,5],[52172,6],[52262,6],[52788,6],[52880,6],[53393,6],[54081,6],[54578,6],[55077,6],[55718,6],[56008,5],[56756,6],[56949,5],[56955,6],[57057,6],[57689,6]]},"84":{"position":[[49,6],[106,6],[130,5],[196,6],[220,5],[254,5],[303,6],[356,6],[410,6],[465,6],[520,6],[548,6],[605,6],[635,6],[689,6],[741,6],[768,5],[774,6],[832,6],[900,5],[906,6],[946,6],[9995,6],[10445,6],[10531,5],[11523,6],[11609,5],[11705,5],[12101,6],[12439,6],[12807,6],[13181,6],[13557,6],[13647,6],[14168,6],[14260,6],[14780,6],[15147,6],[15236,5],[15242,6],[16543,6],[16736,5],[16742,6],[16844,6]]},"85":{"position":[[867,5],[1831,5],[1940,5],[2124,5],[2190,5],[2516,6],[2900,6],[3232,6],[3264,5],[3270,6],[3323,6],[3346,6],[3370,5],[3388,5],[3443,6],[3466,6],[3489,5],[3507,5],[3562,6],[3627,6],[3651,5],[3687,5],[3750,6],[3823,5],[3829,6],[3874,6],[3944,6],[4034,6],[4165,6],[4197,5],[4203,6],[4606,6],[4629,6],[4653,5],[4671,5],[5185,6],[5208,6],[5231,5],[5249,5],[5770,6],[6112,6],[6136,5],[6172,5],[6645,6],[6718,5],[6724,6],[6769,6],[7410,6],[7816,6],[8370,5],[8464,5]]},"86":{"position":[[786,5],[1970,5],[2036,5],[2550,6],[2877,6],[2908,5],[2914,6],[2966,6],[2989,6],[3013,5],[3065,6],[3088,6],[3111,5],[3169,6],[3241,5],[3247,6],[3291,6],[3356,6],[3485,6],[3516,5],[3522,6],[3902,6],[3925,6],[3949,5],[4356,6],[4379,6],[4402,5],[4827,6],[4899,5],[4905,6],[4949,6],[5548,6],[6075,5],[6168,5]]},"87":{"position":[[3679,5],[4071,5],[4352,5],[4358,6],[4381,5],[4447,5],[4868,5],[4874,6],[4986,6],[5257,6],[5282,5],[5288,6],[5336,6],[5391,6],[5423,5],[5429,6],[5498,6],[5559,5],[5565,6],[5632,6],[5750,6],[5917,6],[6006,6],[6102,6],[6125,5],[6131,6],[6209,6],[6232,6],[6314,6],[6362,5],[6368,6],[6435,6],[6458,6],[6523,6],[6640,6],[6665,5],[6671,6],[7052,6],[7336,6],[7368,5],[7374,6],[7755,6],[7816,5],[7822,6],[8463,6],[9034,6],[9932,6],[10444,6],[10926,6],[10949,5],[10955,6],[11729,6],[11752,6],[12655,6],[12703,5],[12709,6],[13232,6],[13255,6],[13737,6],[14250,5],[14337,5]]},"88":{"position":[[48,6],[77,5],[83,6],[136,6],[200,6],[236,5],[242,6],[316,6],[381,5],[387,6],[461,6],[553,6],[680,6],[853,6],[958,6],[985,5],[991,6],[1074,6],[1101,6],[1188,6],[1240,5],[1246,6],[1318,6],[1345,6],[1415,6],[25503,5],[25511,5],[28267,5],[28275,5],[32752,5],[32760,5],[33937,5],[33945,5],[36376,5],[36384,5],[37850,5],[37858,5],[38818,5],[38826,5],[45980,5],[51513,6],[51604,5],[51610,6],[52141,6],[52565,6],[52663,5],[52669,6],[53204,6],[53393,5],[53399,6],[54102,6],[54760,6],[55566,6],[56558,6],[57563,6],[57652,5],[57658,6],[58557,6],[58646,6],[59596,6],[59772,5],[59778,6],[60575,6],[60664,6],[61439,6]]},"89":{"position":[[71,6],[109,5],[115,6],[191,6],[273,6],[359,6],[434,5],[440,6],[487,6],[574,6],[4755,5],[4844,6],[5163,6],[5263,5],[5269,6],[6228,6],[6779,6],[7341,6],[7541,5],[7547,6],[7656,6],[8322,6]]},"90":{"position":[[71,6],[109,5],[115,6],[191,6],[273,6],[359,6],[434,5],[440,6],[487,6],[574,6],[4387,5],[4476,6],[4795,6],[4895,5],[4901,6],[5778,6],[6329,6],[6891,6],[7091,5],[7097,6],[7206,6],[7872,6]]},"91":{"position":[[72,6],[110,5],[116,6],[193,6],[276,6],[363,6],[438,5],[444,6],[491,6],[579,6],[3632,5],[5154,5],[5243,6],[6343,6],[6443,5],[6449,6],[7401,6],[7946,6],[8502,6],[8702,5],[8708,6],[8817,6],[9485,6]]},"92":{"position":[[52,6],[67,5],[136,6],[195,6],[210,5],[280,6],[386,6],[509,6],[617,6],[729,6],[842,6],[984,6],[1103,6],[1235,6],[1345,6],[18799,5],[18907,5],[19008,5],[28664,6],[28741,5],[29228,6],[29628,6],[29705,5],[30457,6],[31443,6],[32474,6],[33442,6],[34082,6],[34811,6],[36085,6],[37281,6],[38647,6],[39510,6]]},"93":{"position":[[1182,5],[1234,5],[1527,6],[1542,5],[1605,6],[1658,6],[1673,5],[1737,6],[1837,6],[1954,6],[2056,6],[2162,6],[2269,6],[2405,6],[2520,6],[2646,6],[2750,6],[2934,6],[2949,5],[3389,6],[3630,6],[3645,5],[3919,6],[4276,6],[4697,6],[5071,6],[5411,6],[5771,6],[6363,6],[6755,6],[7301,6],[7667,6],[8302,5],[8392,5]]},"94":{"position":[[926,5],[1507,5],[1585,5],[2027,6],[2307,6],[2332,5],[2338,6],[2387,6],[2411,5],[2461,6],[2527,5],[2533,6],[2571,6],[2630,6],[2747,6],[2772,5],[2778,6],[3192,6],[3216,5],[3598,6],[3664,5],[3670,6],[3708,6],[4395,6],[4935,5],[5022,5]]},"95":{"position":[[70,5],[76,6],[133,6],[157,5],[209,6],[271,6],[337,5],[343,6],[381,6],[1559,5],[2025,6],[2112,5],[2118,6],[2759,6],[2845,5],[3289,6],[3700,6],[3891,5],[3897,6],[3997,6]]},"96":{"position":[[106,5],[112,6],[190,6],[275,6],[354,5],[360,6],[411,6],[1371,5],[1689,6],[1789,5],[1795,6],[2508,6],[2975,6],[3179,5],[3185,6],[3298,6]]},"97":{"position":[[106,5],[112,6],[197,6],[276,6],[1118,5],[1433,6],[1533,5],[1539,6],[2200,6],[2660,6]]},"98":{"position":[[69,5],[75,6],[131,6],[155,5],[206,6],[267,6],[333,5],[339,6],[377,6],[1497,5],[1961,6],[2048,5],[2054,6],[2690,6],[2776,5],[3218,6],[3626,6],[3817,5],[3823,6],[3923,6]]},"99":{"position":[[68,5],[74,6],[129,6],[153,5],[203,6],[263,6],[329,5],[335,6],[373,6],[1530,5],[1992,6],[2079,5],[2085,6],[2716,6],[2802,5],[3242,6],[3647,6],[3838,5],[3844,6],[3944,6]]},"100":{"position":[[104,5],[110,6],[186,6],[269,6],[348,5],[354,6],[405,6],[1344,5],[1658,6],[1758,5],[1764,6],[2467,6],[2928,6],[3132,5],[3138,6],[3251,6]]},"101":{"position":[[948,5],[1554,5],[2035,6],[2369,6],[2407,5],[2413,6],[2479,6],[2558,5],[2564,6],[2615,6],[2687,6],[2830,6],[2868,5],[2874,6],[3310,6],[3389,5],[3395,6],[3446,6],[4132,6],[4723,5],[4823,5]]},"102":{"position":[[104,5],[110,6],[193,6],[270,6],[1093,5],[1404,6],[1504,5],[1510,6],[2161,6],[2617,6]]},"103":{"position":[[923,5],[1349,5],[1645,6],[1683,5],[1689,6],[1756,6],[1817,6],[1960,6],[1998,5],[2004,6],[2442,6],[2818,6],[3409,5],[3509,5]]},"104":{"position":[[67,5],[73,6],[127,6],[151,5],[200,6],[259,6],[325,5],[331,6],[369,6],[1468,5],[1928,6],[2015,5],[2021,6],[2647,6],[2733,5],[3171,6],[3573,6],[3764,5],[3770,6],[3870,6]]},"105":{"position":[[49,6],[76,5],[82,6],[134,6],[188,6],[242,6],[300,6],[324,5],[391,6],[415,5],[449,5],[501,6],[529,6],[587,6],[617,6],[678,6],[757,6],[848,6],[922,6],[978,6],[1040,6],[1176,6],[1244,5],[1250,6],[1290,6],[1355,6],[17623,5],[18089,5],[20649,5],[28003,6],[28092,5],[28098,6],[28954,6],[29401,6],[29841,6],[30366,6],[30452,5],[32343,6],[32429,5],[32525,5],[33411,6],[33501,6],[34005,6],[34097,6],[34778,6],[35456,6],[35954,6],[36430,6],[36717,6],[37018,6],[37660,6],[37853,5],[37859,6],[37961,6],[38491,6]]},"106":{"position":[[46,6],[71,5],[77,6],[127,6],[147,6],[171,5],[199,5],[268,6],[318,6],[338,6],[362,5],[415,6],[443,6],[496,6],[553,6],[615,5],[621,6],[659,6],[20366,6],[20453,5],[20459,6],[21282,6],[21364,6],[21450,5],[21540,5],[22393,6],[22979,6],[23061,6],[23147,5],[24144,6],[24234,6],[24715,6],[25203,6],[25390,5],[25396,6],[25496,6]]},"107":{"position":[[706,5],[1388,5],[1469,5],[1496,5],[2178,6],[2558,6],[2874,6],[2899,5],[2905,6],[2952,6],[2972,6],[2996,5],[3024,5],[3090,6],[3137,6],[3157,6],[3181,5],[3231,6],[3259,6],[3309,6],[3363,6],[3425,5],[3431,6],[3469,6],[3597,6],[3622,5],[3628,6],[4196,6],[4216,6],[4240,5],[4268,5],[4735,6],[5066,6],[5086,6],[5110,5],[5683,6],[5711,6],[6071,6],[6394,6],[6456,5],[6462,6],[6500,6],[7275,5],[7362,5]]},"108":{"position":[[48,6],[74,5],[80,6],[136,6],[165,6],[226,6],[289,5],[295,6],[334,6],[406,6],[459,6],[512,6],[5531,6],[5619,5],[5625,6],[6511,6],[6602,6],[7100,6],[7288,5],[7294,6],[7395,6],[8043,6],[8436,6],[8994,6]]},"109":{"position":[[934,5],[1439,5],[1886,6],[2257,6],[2283,5],[2289,6],[2341,6],[2421,6],[2488,5],[2494,6],[2533,6],[2601,6],[2650,6],[2699,6],[2818,6],[2844,5],[2850,6],[3238,6],[3598,6],[3665,5],[3671,6],[3710,6],[4340,6],[4624,6],[5015,6],[5472,5],[5560,5]]},"124":{"position":[[61,6],[97,5],[103,6],[167,6],[194,6],[218,5],[236,5],[302,6],[329,6],[352,5],[370,5],[436,6],[516,6],[544,5],[580,5],[648,6],[724,6],[797,5],[803,6],[848,6],[929,6],[14447,6],[14545,5],[14551,6],[15259,6],[15348,6],[15434,5],[15514,5],[16212,6],[16301,6],[16386,5],[16466,5],[17155,6],[17769,6],[17859,5],[17957,5],[18652,6],[19289,6],[19487,5],[19493,6],[19600,6],[20253,6]]},"125":{"position":[[59,6],[94,5],[100,6],[162,6],[189,6],[213,5],[275,6],[302,6],[325,5],[387,6],[461,6],[533,5],[539,6],[583,6],[14245,6],[14342,5],[14348,6],[15220,6],[15309,6],[15395,5],[16332,6],[16421,6],[16506,5],[17435,6],[17803,6],[18000,5],[18006,6],[18112,6]]},"126":{"position":[[1203,5],[1295,5],[1383,5],[1593,6],[1623,5],[1629,6],[1681,6],[1733,6],[1756,6],[1780,5],[1831,6],[1854,6],[1877,5],[1932,6],[2107,6],[2137,5],[2143,6],[2434,6],[2676,6],[2699,6],[2723,5],[3061,6],[3084,6],[3107,5],[3457,6]]},"127":{"position":[[58,6],[92,5],[98,6],[258,6],[417,6],[444,6],[468,5],[609,6],[636,6],[659,5],[806,6],[854,5],[6624,5],[6957,5],[7164,6],[7260,5],[7266,6],[7914,6],[8339,6],[8428,6],[8514,5],[8969,6],[9058,6],[9143,5],[9609,6],[9719,5]]},"128":{"position":[[18507,5]]},"129":{"position":[[56,6],[91,5],[97,6],[248,6],[410,6],[690,6],[730,6],[875,6],[915,6],[951,6],[1153,6],[1464,6],[1505,5],[1545,5],[2026,6],[2054,6],[2370,6],[10801,5],[10874,5],[10975,5],[11310,6],[11407,5],[11413,6],[12018,6],[12455,6],[12999,6],[13101,6],[13592,6],[13694,6],[13792,6],[14396,6],[15042,6],[15145,5],[15247,5],[16261,6],[16351,6],[17208,6]]},"130":{"position":[[1518,5],[1595,5],[1662,5],[1988,6],[2019,5],[2025,6],[2089,6],[2142,6],[2178,6],[2244,6],[2280,6],[2316,6],[2392,6],[2457,6],[2494,5],[2534,5],[2597,6],[2621,6],[2694,6],[2748,6],[2877,6],[2908,5],[2914,6],[3226,6],[3485,6],[3521,6],[3846,6],[3882,6],[3918,6],[4345,6],[4639,6],[4676,5],[4716,5],[5086,6],[5110,6],[5449,6],[5719,6],[6099,5],[6192,5]]},"131":{"position":[[56,6],[91,5],[97,6],[252,6],[414,6],[1000,6],[1389,6],[1429,6],[1860,6],[1900,6],[1936,6],[15063,5],[15136,5],[15237,5],[16040,6],[16137,5],[16143,6],[16844,6],[17281,6],[18291,6],[19106,6],[19208,6],[20077,6],[20179,6],[20277,6]]},"132":{"position":[[1797,5],[1891,5],[1990,5],[2067,5],[2150,5],[2217,5],[2548,6],[2579,5],[2585,6],[2649,6],[2713,6],[2766,6],[2802,6],[2868,6],[2904,6],[2940,6],[3001,6],[3130,6],[3161,5],[3167,6],[3479,6],[3767,6],[4031,6],[4067,6],[4392,6],[4428,6],[4464,6],[4861,6],[5241,5],[5334,5]]},"133":{"position":[[60,6],[97,5],[103,6],[386,6],[580,6],[768,6],[973,6],[1015,6],[1286,6],[1661,6],[1995,6],[2037,6],[2083,6],[2374,6],[2416,6],[2462,6],[2748,6],[2790,6],[2833,6],[3120,6],[3162,6],[3212,6],[3504,6],[3546,6],[3592,6],[3883,6],[3925,6],[3971,6],[4256,6],[4298,6],[4340,6],[4608,6],[50281,5],[50353,5],[50555,5],[50614,5],[51156,6],[51255,5],[51261,6],[52009,6],[52585,6],[53151,6],[53727,6],[53831,6],[54617,6],[55457,6],[56189,6],[56293,6],[56401,6],[57039,6],[57143,6],[57251,6],[57879,6],[57983,6],[58088,6],[58723,6],[58827,6],[58939,6],[59578,6],[59682,6],[59790,6],[60428,6],[60532,6],[60640,6],[61266,6],[61370,6],[61474,6],[62072,6]]},"134":{"position":[[3670,5],[3753,5],[3812,5],[3879,5],[4300,6],[4337,5],[4343,6],[4409,6],[4479,6],[4545,6],[4604,6],[4646,6],[4723,6],[4765,6],[4811,6],[4893,6],[4935,6],[4981,6],[5058,6],[5100,6],[5143,6],[5226,6],[5268,6],[5318,6],[5400,6],[5442,6],[5488,6],[5570,6],[5612,6],[5658,6],[5734,6],[5776,6],[5818,6],[5903,6],[6009,6],[6069,6],[6206,6],[6243,5],[6249,6],[6571,6],[6863,6],[7145,6],[7418,6],[7460,6],[7801,6],[7843,6],[7889,6],[8334,6],[8376,6],[8422,6],[8857,6],[8899,6],[8942,6],[9376,6],[9418,6],[9468,6],[9913,6],[9955,6],[10001,6],[10446,6],[10488,6],[10534,6],[10967,6],[11009,6],[11051,6],[11487,6],[11915,6],[12195,6],[12598,5],[12693,5]]},"135":{"position":[[70,5],[76,6],[126,6],[168,5],[198,5],[252,6],[276,5],[299,5],[329,5],[387,6],[411,5],[448,5],[478,5],[532,6],[685,6],[751,5],[757,6],[795,6],[13356,5],[13543,5],[16729,5],[16735,6],[17692,6],[17859,5],[17951,5],[18797,6],[18883,5],[18969,5],[19061,5],[19964,6],[20050,5],[20213,5],[20305,5],[21184,6],[22815,6],[23006,5],[23012,6],[23112,6]]},"136":{"position":[[46,6],[71,5],[77,6],[127,6],[187,6],[248,6],[274,6],[335,6],[361,6],[423,6],[455,6],[518,6],[550,6],[615,6],[656,5],[717,6],[759,5],[765,6],[823,6],[849,6],[910,6],[972,5],[978,6],[1016,6],[10541,5],[10958,6],[11045,5],[11051,6],[11733,6],[12150,6],[12691,6],[12779,6],[13310,6],[13398,6],[14094,6],[14188,6],[14871,6],[14965,6],[15456,6],[15559,5],[16353,6],[16457,5],[16463,6],[17046,6],[17134,6],[17649,6],[17836,5],[17842,6],[17942,6]]},"137":{"position":[[1099,5],[2979,5],[2986,6],[3437,5],[3518,5],[3792,6],[3817,5],[3823,6],[3870,6],[3927,6],[3985,6],[4011,6],[4069,6],[4095,6],[4154,6],[4186,6],[4246,6],[4278,6],[4340,6],[4381,5],[4439,6],[4481,5],[4487,6],[4546,6],[4608,5],[4614,6],[4652,6],[4713,6],[4739,6],[4860,6],[4885,5],[4891,6],[5175,6],[5428,6],[5696,6],[5722,6],[6159,6],[6185,6],[6526,6],[6558,6],[6998,6],[7030,6],[7387,6],[7428,5],[7743,6],[7785,5],[7791,6],[8126,6],[8188,5],[8194,6],[8232,6],[8739,6],[8765,6],[9303,5],[9390,5]]},"138":{"position":[[59,6],[95,5],[101,6],[164,6],[231,6],[258,6],[282,5],[300,5],[364,6],[391,6],[414,5],[432,5],[496,6],[574,6],[602,5],[638,5],[710,6],[783,5],[789,6],[834,6],[913,6],[12910,6],[13008,5],[13014,6],[13693,6],[14365,6],[14454,6],[14540,5],[14620,5],[15317,6],[15406,6],[15491,5],[15571,5],[16497,6],[17219,6],[17309,5],[17407,5],[18044,6],[18242,5],[18248,6],[18355,6],[19004,6]]},"139":{"position":[[54,6],[84,5],[90,6],[147,6],[174,6],[198,5],[255,6],[282,5],[288,6],[311,5],[370,6],[394,5],[400,6],[469,6],[500,6],[559,6],[622,6],[814,6],[887,6],[954,5],[960,6],[999,6],[1072,6],[17930,6],[18022,5],[18028,6],[19047,6],[19136,6],[19222,5],[20279,6],[20368,5],[20374,6],[20459,5],[21514,6],[21600,5],[21606,6],[22290,6],[22383,6],[22946,6],[23484,6],[24865,6],[25899,6],[26091,5],[26097,6],[26198,6],[26835,6]]},"140":{"position":[[53,6],[83,5],[89,6],[145,6],[172,6],[196,5],[252,6],[279,5],[285,6],[308,5],[366,6],[390,5],[396,6],[464,6],[495,6],[553,6],[615,6],[720,6],[836,6],[905,6],[1000,6],[1067,5],[1073,6],[1112,6],[16549,6],[16641,5],[16647,6],[17533,6],[17622,6],[17708,5],[18451,6],[18540,5],[18546,6],[18631,5],[19373,6],[19459,5],[19465,6],[20146,6],[20239,6],[20800,6],[21336,6],[22396,6],[22760,6],[23784,6],[24751,6],[24943,5],[24949,6],[25050,6]]},"141":{"position":[[847,5],[2027,5],[2163,5],[2372,5],[2451,5],[2699,5],[2705,6],[2751,6],[2789,5],[2819,5],[2869,6],[2889,5],[2912,5],[2942,5],[2996,6],[3016,5],[3053,5],[3083,5],[3139,6],[3205,5],[3211,6],[3249,6],[3308,6],[3444,5],[3450,6],[3808,6],[3846,5],[3876,5],[4532,6],[4552,5],[4575,5],[4605,5],[5171,6],[5191,5],[5228,5],[5258,5],[6164,6],[6230,5],[6236,6],[6274,6],[6871,6],[7413,5],[7500,5]]},"142":{"position":[[71,5],[77,6],[128,6],[170,5],[200,5],[255,6],[279,5],[302,5],[332,5],[391,6],[415,5],[452,5],[482,5],[537,6],[722,6],[788,5],[794,6],[832,6],[14823,5],[14943,5],[18564,5],[18570,6],[19684,6],[19851,5],[19943,5],[20690,6],[20776,5],[20862,5],[20954,5],[21758,6],[21844,5],[22007,5],[22099,5],[22879,6],[24554,6],[24745,5],[24751,6],[24851,6]]},"143":{"position":[[3026,5],[3114,5],[3702,5],[3708,6],[3784,5],[3790,6],[3813,5],[3831,5],[3916,6],[3940,5],[4038,6],[4248,5],[4254,6],[4276,6],[4368,6],[4485,6],[4911,5],[4917,6],[5257,5],[5263,6],[5286,5],[5304,5],[5999,6],[6023,5],[6479,6],[7357,5],[7363,6],[7385,6],[7893,6],[8440,6],[10426,5],[10519,5]]},"144":{"position":[[1127,5],[2675,5],[2702,5],[3210,6],[3562,6],[3589,5],[3595,6],[3644,6],[3693,6],[3743,6],[3794,6],[3846,6],[3900,6],[3924,5],[3980,6],[4004,5],[4038,5],[4086,6],[4114,6],[4168,6],[4198,6],[4256,6],[4324,5],[4330,6],[4370,6],[4431,6],[4552,6],[4579,5],[4585,6],[5007,6],[5315,6],[5620,6],[5953,6],[6275,6],[6606,6],[6630,5],[7214,6],[7238,5],[7272,5],[7877,6],[7905,6],[8306,6],[8336,6],[8777,6],[8845,5],[8851,6],[8891,6],[9569,6],[10131,5],[10220,5]]},"145":{"position":[[1859,5],[2905,5],[3432,5],[3714,6],[3744,5],[3750,6],[3808,6],[3886,6],[3906,5],[3943,5],[4003,6],[4058,6],[4119,6],[4207,6],[4262,6],[4299,6],[4358,6],[4412,6],[4432,5],[4469,5],[4602,6],[4632,5],[4638,6],[5044,6],[5469,6],[5489,5],[5526,5],[6368,6],[6807,6],[7387,6],[7891,6],[8437,6],[8474,6],[8837,6],[9195,6],[9215,5],[9252,5],[10085,5],[10177,5]]},"146":{"position":[[67,5],[73,6],[141,5],[147,6],[488,5],[511,6],[588,5],[611,6],[788,6],[808,5],[867,6],[896,5],[970,6],[1036,5],[1042,6],[1080,6],[1201,6],[4488,5],[7359,5],[8291,5],[16743,5],[16749,6],[17477,5],[17483,6],[20691,5],[20776,6],[21326,5],[21411,6],[22658,6],[22740,5],[23089,6],[23180,5],[23607,6],[23798,5],[23804,6],[23904,6],[24720,6]]},"147":{"position":[[1696,5],[2581,5],[2626,5],[2742,5],[2823,5],[2971,6],[3279,6],[3683,6],[3709,5],[3715,6],[3762,6],[3785,6],[3809,5],[3856,6],[3879,5],[3885,6],[3908,5],[3957,6],[3977,5],[3983,6],[4043,6],[4070,6],[4132,6],[4222,6],[4289,5],[4295,6],[4334,6],[4394,6],[4446,6],[4592,6],[4618,5],[4624,6],[5042,6],[5065,6],[5089,5],[5759,6],[5782,5],[5788,6],[5811,5],[6461,6],[6481,5],[6487,6],[6989,6],[7016,6],[7365,6],[7737,6],[7804,5],[7810,6],[7849,6],[8463,6],[8735,6],[9372,5],[9460,5]]},"148":{"position":[[49,6],[99,6],[124,5],[130,6],[186,6],[201,5],[268,6],[296,6],[354,6],[378,6],[435,6],[471,6],[531,6],[593,5],[599,6],[637,6],[7283,5],[9793,6],[10460,6],[10547,5],[10553,6],[11428,6],[11505,5],[12121,6],[12211,6],[12901,6],[12987,6],[13637,6],[13735,6],[14221,6],[14408,5],[14414,6],[14514,6]]},"149":{"position":[[854,5],[1936,5],[1963,5],[2085,6],[2401,6],[2426,5],[2432,6],[2481,6],[2533,6],[2561,6],[2617,6],[2632,5],[2697,6],[2721,6],[2775,6],[2811,6],[2868,6],[2934,5],[2940,6],[2978,6],[3106,6],[3131,5],[3137,6],[3515,6],[3766,6],[3794,6],[4129,6],[4144,5],[4465,6],[4489,6],[4828,6],[4864,6],[5197,6],[5263,5],[5269,6],[5307,6],[6081,5],[6168,5]]},"150":{"position":[[83,5],[89,6],[231,5],[237,6],[260,5],[278,5],[372,6],[396,5],[694,5],[700,6],[722,6],[823,6],[949,6],[1134,6],[18965,5],[18971,6],[20297,5],[20303,6],[20388,5],[20468,5],[20931,6],[21017,5],[22932,5],[22938,6],[23022,6],[23888,6],[24949,6],[26053,6]]}}}],["constant",{"_index":732,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5815,8]]}}}],["constantli",{"_index":754,"t":{},"d":{},"k":{},"b":{"68":{"position":[[8570,10]]}}}],["constitut",{"_index":4966,"t":{},"d":{},"k":{},"b":{"105":{"position":[[19505,11]]},"136":{"position":[[3023,10]]}}}],["constraint",{"_index":4126,"t":{},"d":{},"k":{},"b":{"88":{"position":[[20933,11]]}}}],["consult",{"_index":2448,"t":{},"d":{},"k":{},"b":{"75":{"position":[[25006,7],[30523,10]]},"128":{"position":[[106,7]]},"150":{"position":[[12192,7]]}}}],["consum",{"_index":6155,"t":{},"d":{},"k":{},"b":{"128":{"position":[[3889,8],[4521,9],[6919,8],[8069,8]]}}}],["consumpt",{"_index":3137,"t":{},"d":{},"k":{},"b":{"80":{"position":[[4719,11]]},"82":{"position":[[5114,12]]},"87":{"position":[[13823,12]]},"107":{"position":[[6157,12]]},"133":{"position":[[7791,11]]},"144":{"position":[[9655,12]]}}}],["contain",{"_index":508,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12454,7]]},"87":{"position":[[914,8]]},"88":{"position":[[2530,8],[2757,8],[18860,8]]},"124":{"position":[[1312,7]]},"125":{"position":[[5832,7]]},"128":{"position":[[9162,8],[17902,7]]},"137":{"position":[[5953,8],[6387,8],[6801,8]]},"138":{"position":[[1310,7]]},"147":{"position":[[1523,8]]},"150":{"position":[[3911,8]]},"289":{"position":[[354,10]]}}}],["content",{"_index":101,"t":{},"d":{},"k":{},"b":{"1":{"position":[[10,8]]},"71":{"position":[[9378,7],[9554,7]]},"116":{"position":[[529,8]]},"147":{"position":[[5943,8]]},"150":{"position":[[6608,8],[11780,8]]},"151":{"position":[[10,8]]}}}],["context",{"_index":469,"t":{},"d":{},"k":{},"b":{"67":{"position":[[9973,7]]},"74":{"position":[[2405,7],[2827,8],[6677,7]]},"79":{"position":[[3789,7]]},"82":{"position":[[4424,7]]},"85":{"position":[[913,8],[2173,8],[6851,7]]},"86":{"position":[[832,8],[2019,8],[5031,7]]},"87":{"position":[[4105,8],[4430,8]]},"94":{"position":[[3790,7]]},"101":{"position":[[3528,7]]},"105":{"position":[[18120,7]]},"107":{"position":[[6582,7]]},"109":{"position":[[3792,7]]},"124":{"position":[[1414,8]]},"125":{"position":[[5941,8]]},"126":{"position":[[1432,8]]},"127":{"position":[[7006,8]]},"128":{"position":[[6768,7]]},"129":{"position":[[11024,8]]},"130":{"position":[[1644,8]]},"131":{"position":[[15286,8]]},"132":{"position":[[2199,8]]},"133":{"position":[[50663,8]]},"134":{"position":[[3861,8]]},"136":{"position":[[2202,7]]},"137":{"position":[[3470,7],[8314,7]]},"138":{"position":[[1412,8]]},"141":{"position":[[868,7],[2405,7],[6356,7]]},"144":{"position":[[8973,7]]},"147":{"position":[[1717,7],[2775,7],[7931,7]]},"149":{"position":[[5389,7]]}}}],["contextmanu",{"_index":2974,"t":{},"d":{},"k":{},"b":{"79":{"position":[[3750,13]]}}}],["contextnam",{"_index":4078,"t":{},"d":{},"k":{},"b":{"88":{"position":[[14150,11]]}}}],["continu",{"_index":235,"t":{},"d":{},"k":{},"b":{"67":{"position":[[155,10],[12511,10]]},"68":{"position":[[5504,8],[5783,10]]},"69":{"position":[[1703,10],[1756,12],[2935,10],[7831,12],[7924,12],[8017,12],[10328,10],[10642,10],[10666,10],[10742,8],[10913,10],[23523,12],[23661,12],[23795,13]]},"75":{"position":[[16402,11],[17363,8]]},"79":{"position":[[4252,12],[7554,10],[18799,8],[22129,8],[22195,10]]},"88":{"position":[[5064,9]]},"106":{"position":[[10231,10],[10352,10],[10436,10],[10544,10],[17007,10],[17096,10]]},"108":{"position":[[4990,13]]},"113":{"position":[[13682,8]]},"125":{"position":[[7901,10],[15813,9],[16924,9]]},"133":{"position":[[7218,10],[7354,10],[7418,10],[9708,12],[11189,10]]},"143":{"position":[[2508,10]]},"145":{"position":[[9387,13],[11504,12],[16800,9]]},"148":{"position":[[6691,8]]}}}],["continuatuion",{"_index":2985,"t":{},"d":{},"k":{},"b":{"79":{"position":[[4916,15],[5101,15],[5330,15]]}}}],["continuous_set",{"_index":3034,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10686,18]]}}}],["control",{"_index":403,"t":{"75":{"position":[[45,10]]},"79":{"position":[[66,10]]},"80":{"position":[[56,10]]}},"d":{},"k":{},"b":{"67":{"position":[[5419,7],[5986,7],[6387,7],[6794,7],[7207,7],[7531,7],[7912,7],[8391,7],[9022,7],[9538,7],[10147,7],[10776,7],[11327,7],[11652,7],[12066,7],[12112,7]]},"68":{"position":[[17917,7],[23665,7],[31375,7]]},"69":{"position":[[1552,10],[9861,8],[19755,8],[21399,7],[28867,7],[29942,7],[32110,7],[38002,7]]},"70":{"position":[[17421,8]]},"71":{"position":[[2349,10],[6351,10],[34310,11],[34534,11],[34877,11],[35101,11],[35150,11],[42270,7],[43123,7]]},"74":{"position":[[386,10],[1549,8],[1601,8],[4210,7],[4674,7],[5122,7],[5510,7],[5888,7],[6299,7],[7363,7],[7679,7],[7724,7]]},"75":{"position":[[16005,7],[31272,7],[40561,7]]},"76":{"position":[[12156,7],[15875,7],[17797,7],[18813,7],[19257,7],[21162,7],[21952,7],[22406,7],[25709,7]]},"77":{"position":[[5112,7],[5552,7],[8493,7]]},"78":{"position":[[4093,7],[4409,7],[4454,7]]},"79":{"position":[[1086,10],[9604,7],[16993,7],[17719,7],[19078,7],[19574,7],[20032,7],[20518,7],[21067,7],[21582,7],[22361,7]]},"80":{"position":[[679,10],[1185,10],[1999,7],[3556,11],[4140,10],[4238,10],[7835,7],[8379,7],[8817,11],[10008,11],[11543,11],[11854,11]]},"81":{"position":[[51,11],[409,10],[1396,11],[1477,7],[1706,10],[1806,7],[2057,11],[2155,7],[2507,7],[2891,7],[3142,11],[3225,7],[3412,11],[3496,7],[3758,7],[4074,7],[4119,7]]},"82":{"position":[[3126,7],[4650,7],[5593,7],[5954,7],[5999,7]]},"83":{"position":[[18947,11],[19363,11],[19742,10],[28746,7],[29145,8],[51481,7],[57435,7]]},"84":{"position":[[4139,8],[9092,7],[10289,7],[11361,7],[12657,7],[14012,7],[14634,7],[15001,7],[17222,7]]},"85":{"position":[[2824,7],[4388,7],[4850,7],[5431,7],[5936,7],[6388,7],[7024,7],[7644,7],[8000,7],[8314,7],[8658,7],[8703,7]]},"86":{"position":[[2474,7],[3686,7],[4105,7],[4560,7],[5172,7],[5710,7],[6020,7],[6360,7],[6405,7]]},"87":{"position":[[6796,7],[14201,7],[14517,7],[14562,7],[20254,7]]},"88":{"position":[[42141,11],[44512,7]]},"89":{"position":[[740,10],[751,8],[2436,11],[4496,7],[4650,7],[8029,7]]},"90":{"position":[[740,10],[751,8],[4128,7],[4282,7],[7579,7]]},"91":{"position":[[647,10],[757,10],[768,8],[2513,11],[4899,7],[5054,7],[9190,7]]},"92":{"position":[[1710,7],[15143,7],[17022,7],[17346,7],[18251,7],[18419,8],[26742,7]]},"93":{"position":[[3509,7],[6050,11],[6182,11],[7947,11],[8250,7],[8739,7],[8784,7]]},"94":{"position":[[1950,7],[2982,7],[3422,7],[4600,7],[4886,7],[5202,7],[5247,7]]},"95":{"position":[[1364,7],[3133,7],[3532,7],[4373,7]]},"96":{"position":[[1150,7],[2774,7],[3687,7]]},"97":{"position":[[898,7],[2471,7],[2926,7]]},"98":{"position":[[1302,7],[3064,7],[3460,7],[4299,7]]},"99":{"position":[[1335,7],[3090,7],[3483,7],[4320,7]]},"100":{"position":[[1123,7],[2731,7],[3640,7]]},"101":{"position":[[1958,7],[3066,7],[4323,7],[4661,7],[5029,7],[5074,7]]},"102":{"position":[[873,7],[2432,7],[2881,7]]},"103":{"position":[[2196,7],[2644,7],[3009,7],[3347,7],[3715,7],[3760,7]]},"104":{"position":[[1273,7],[3021,7],[3411,7],[4246,7]]},"105":{"position":[[6965,7],[7351,7],[17287,7],[17345,7],[17467,7],[20052,7],[32763,7],[38339,7]]},"106":{"position":[[14566,7],[20902,7],[23465,7],[25859,7]]},"107":{"position":[[3942,7],[6710,7],[7226,7],[7542,7],[7587,7]]},"108":{"position":[[5312,7],[7772,7]]},"109":{"position":[[2974,7],[5422,7],[5743,7],[5788,7]]},"112":{"position":[[56,10]]},"113":{"position":[[14564,7]]},"114":{"position":[[360,10]]},"115":{"position":[[417,11]]},"121":{"position":[[61,10]]},"123":{"position":[[73,10]]},"124":{"position":[[12888,7],[16061,7],[17004,7],[17497,7],[18331,7],[18501,7],[19025,7],[19970,7]]},"125":{"position":[[18481,7]]},"126":{"position":[[2263,7],[2557,7],[2840,7],[3226,7],[3692,7],[4095,7],[4140,7]]},"127":{"position":[[6575,7]]},"128":{"position":[[5659,8],[16921,7],[18281,7]]},"129":{"position":[[294,7],[10726,7],[12103,7]]},"130":{"position":[[3031,7],[3364,7],[3657,7],[4096,7],[4494,7],[4866,7],[5246,7],[5596,7],[5839,7],[6044,7],[6387,7],[6432,7]]},"131":{"position":[[298,7],[14988,7],[16929,7]]},"132":{"position":[[3284,7],[3624,7],[3910,7],[4203,7],[4642,7],[4981,7],[5186,7],[5529,7],[5574,7]]},"133":{"position":[[4924,11],[7810,7],[49797,7]]},"134":{"position":[[2129,7],[3428,7],[6372,7],[6716,7],[7006,7],[7293,7],[7590,7],[8072,7],[8605,7],[9112,7],[9651,7],[10184,7],[10717,7],[11219,7],[11688,7],[12068,7],[12328,7],[12541,7],[12894,7],[12939,7]]},"135":{"position":[[8145,11],[13161,7],[17109,7],[18391,7],[19551,7],[20766,8],[21467,7],[23475,7]]},"136":{"position":[[1210,8],[10389,7],[18272,7],[18375,7]]},"137":{"position":[[7938,7],[8442,7],[8929,7],[9254,7],[9726,7],[9771,7]]},"138":{"position":[[7388,10],[12349,7],[18725,7]]},"139":{"position":[[1584,7],[2283,7],[2354,7],[4233,7],[4488,7],[4599,7],[4636,7],[4724,7],[7583,10],[7651,10],[8110,7],[8467,7],[8570,7],[8835,7],[13050,7],[13378,11],[13957,11],[15586,7],[18402,7],[18571,7],[18599,7],[19520,7],[19739,7],[20765,7],[20979,7],[22020,7],[22124,7],[22736,7],[22784,7],[23274,7],[23322,7],[24149,7],[24197,7],[26562,7],[27411,7],[27459,7]]},"140":{"position":[[1611,7],[1672,7],[2181,7],[2260,7],[3743,7],[3897,7],[4211,7],[4282,7],[4319,7],[4389,7],[4421,7],[4509,8],[6492,10],[10295,7],[10777,11],[12732,7],[12805,8],[12875,8],[17021,7],[17356,7],[18006,7],[18134,7],[18937,7],[19065,7],[19878,7],[19982,7],[20592,7],[20640,7],[21128,7],[21176,7],[22001,7],[22049,7],[23047,7],[24360,7],[24408,7],[25414,7]]},"141":{"position":[[3649,7],[4031,7],[4761,7],[5490,7],[6507,7],[7090,7],[7364,7],[7680,7],[7725,7],[10600,10]]},"142":{"position":[[9027,11],[14628,7],[18944,7],[20383,7],[21444,7],[22560,8],[23162,7],[25214,7]]},"143":{"position":[[10371,7],[10717,7],[10762,7]]},"144":{"position":[[4749,7],[10080,7],[10406,7],[10451,7]]},"145":{"position":[[188,10],[4768,7],[5250,7],[10031,7],[10372,7],[10417,7]]},"146":{"position":[[15813,7],[17047,7],[18188,7],[24267,7]]},"147":{"position":[[394,7],[4781,7],[5548,7],[6268,7],[6786,7],[7195,7],[7562,7],[8097,7],[8620,7],[8978,7],[9322,7],[9643,7],[9688,7]]},"148":{"position":[[9424,7],[10315,7],[11966,7],[12744,7],[13480,7],[14062,7],[14877,7]]},"149":{"position":[[3346,7],[3647,7],[3930,7],[4299,7],[4633,7],[5008,7],[5517,7],[6032,7],[6348,7],[6393,7],[8140,8]]},"150":{"position":[[5719,10],[5774,10],[16105,7]]},"152":{"position":[[1063,10],[4222,10],[5325,10],[6336,10],[6826,10]]}}}],["control_sign",{"_index":6721,"t":{},"d":{},"k":{},"b":{"134":{"position":[[2113,14],[3412,14]]}}}],["controlmcu",{"_index":4478,"t":{},"d":{},"k":{},"b":{"92":{"position":[[5183,10],[6616,10],[7104,10],[7948,10],[8792,10],[9636,10]]},"140":{"position":[[4453,10]]}}}],["conveni",{"_index":2417,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20929,12]]}}}],["convers",{"_index":242,"t":{},"d":{},"k":{},"b":{"67":{"position":[[281,10],[1467,10],[1581,10],[7792,10],[8246,10],[11112,10],[13860,10]]},"68":{"position":[[2120,10],[2153,10],[2197,10],[2256,10],[2317,10],[2388,10],[3312,10],[3378,10],[4602,10],[4685,10],[4726,10],[4827,10],[5253,10],[6210,10],[6285,10],[6836,10],[6881,10],[6931,10],[6970,10],[7105,10],[7336,10],[7396,10],[7437,10],[7594,10],[7653,10],[7702,10],[7819,11],[7853,10],[7923,10],[7957,10],[8043,10],[8172,10],[8297,10],[8331,10],[8441,10],[8482,10],[10372,10],[10838,11],[13704,11],[22960,10],[25265,11],[26313,11],[27498,10],[28149,10],[29222,10]]},"69":{"position":[[2725,10],[2877,10],[3489,10],[3638,10],[3915,10],[9898,10],[10062,11],[10810,10],[10987,10],[11105,10],[11466,10],[14236,10],[15562,10],[19413,10],[19498,10],[19677,10],[34898,10],[35549,10]]},"80":{"position":[[1045,11],[1545,10],[2019,10]]},"83":{"position":[[29364,11],[38699,11],[38829,10],[38986,10],[39143,10],[39300,10],[40949,11],[41009,10],[41117,10]]},"105":{"position":[[27263,11],[27324,10],[27434,10]]},"146":{"position":[[1554,10],[3199,10],[3277,10],[3323,10],[3429,10],[6757,10],[13726,10],[20877,10]]}}}],["conversion_count",{"_index":7905,"t":{},"d":{},"k":{},"b":{"146":{"position":[[11762,16],[14605,19]]}}}],["conversion_result",{"_index":7877,"t":{},"d":{},"k":{},"b":{"146":{"position":[[6911,18],[6969,20],[7127,18],[8370,18],[8480,20],[8616,18]]}}}],["conversion_result[conversion_count",{"_index":7914,"t":{},"d":{},"k":{},"b":{"146":{"position":[[13966,38],[14132,36]]}}}],["conversion_result[tsu_b_example_conversion_count",{"_index":7908,"t":{},"d":{},"k":{},"b":{"146":{"position":[[11856,50]]}}}],["convert",{"_index":227,"t":{"68":{"position":[[63,9]]},"69":{"position":[[63,9]]}},"d":{},"k":{},"b":{"67":{"position":[[40,11],[462,9],[500,9]]},"68":{"position":[[1893,7],[1956,7],[8871,9],[10600,9],[12352,9],[13210,9],[13315,9],[15219,9],[16079,9]]},"69":{"position":[[1883,9],[1956,9],[10401,9],[14464,9],[15770,9]]},"71":{"position":[[35258,10]]},"83":{"position":[[2887,9],[13085,9],[13149,9],[13215,9],[13279,9],[13344,9],[26329,9],[26436,9],[27314,9],[41052,9],[41160,9],[55379,9]]},"105":{"position":[[2868,9],[2929,9],[2957,9],[3235,9],[8891,9],[9128,9],[9213,9],[9335,9],[18582,9],[18672,9],[27368,9],[27478,9],[27698,9],[27805,9],[37321,9]]},"106":{"position":[[12999,8]]},"110":{"position":[[68,9],[195,9]]},"115":{"position":[[247,11]]},"146":{"position":[[4037,9],[6880,9],[8339,9],[8422,9],[13904,9],[24864,9]]},"152":{"position":[[656,9],[778,9],[6671,10]]}}}],["cooper",{"_index":3104,"t":{},"d":{},"k":{},"b":{"80":{"position":[[839,11]]},"128":{"position":[[1297,11]]}}}],["copi",{"_index":1049,"t":{},"d":{},"k":{},"b":{"69":{"position":[[12944,6]]},"71":{"position":[[4589,7],[5116,7],[5603,4],[40227,4]]},"135":{"position":[[1448,6]]},"141":{"position":[[4281,6],[5721,6]]},"142":{"position":[[1589,6]]}}}],["copyright",{"_index":5,"t":{"0":{"position":[[45,9]]}},"d":{},"k":{},"b":{"0":{"position":[[1,9],[650,9]]},"153":{"position":[[127,9]]}}}],["core",{"_index":730,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5754,4]]},"69":{"position":[[11292,4]]},"71":{"position":[[1639,5],[11730,5],[11799,4],[40990,4],[47677,5],[47813,5]]},"83":{"position":[[5016,4]]},"95":{"position":[[695,5],[1005,4],[1134,4],[4774,4]]},"96":{"position":[[723,5],[890,4]]},"97":{"position":[[527,5]]},"98":{"position":[[637,5],[946,4],[1075,4],[4697,4]]},"99":{"position":[[674,5],[982,4],[1111,4],[4715,4]]},"100":{"position":[[704,5],[869,4]]},"102":{"position":[[510,5]]},"104":{"position":[[616,5],[923,4],[1052,4],[4638,4]]},"106":{"position":[[14879,4],[17523,4]]},"128":{"position":[[281,4],[396,4],[14435,5],[14926,4]]},"138":{"position":[[7168,4]]},"148":{"position":[[4912,5]]}}}],["corp",{"_index":20,"t":{},"d":{},"k":{},"b":{"0":{"position":[[238,5]]}}}],["corpor",{"_index":10,"t":{},"d":{},"k":{},"b":{"0":{"position":[[43,11]]}}}],["correct",{"_index":2338,"t":{},"d":{},"k":{},"b":{"75":{"position":[[14019,7]]},"108":{"position":[[4477,7]]},"113":{"position":[[6305,10],[6633,10]]},"136":{"position":[[2850,7]]},"139":{"position":[[8445,7]]}}}],["correctli",{"_index":5984,"t":{},"d":{},"k":{},"b":{"124":{"position":[[18287,10]]},"128":{"position":[[2869,9]]},"138":{"position":[[17737,10]]},"146":{"position":[[6191,10],[9358,10],[12579,10]]}}}],["correspond",{"_index":746,"t":{},"d":{},"k":{},"b":{"68":{"position":[[7465,13],[7994,14],[8127,14],[8510,13]]},"75":{"position":[[2437,10]]},"87":{"position":[[4590,13]]},"92":{"position":[[35354,11],[35410,11],[35495,13],[36521,11],[36574,11],[38062,11],[38115,11],[38195,11],[39096,11],[39149,11],[40010,11],[40063,11],[40143,11],[40200,13]]},"93":{"position":[[7127,11]]},"107":{"position":[[2050,13]]},"108":{"position":[[3150,11]]},"109":{"position":[[1489,11]]},"133":{"position":[[8679,13]]},"136":{"position":[[2639,13]]},"144":{"position":[[2900,13]]},"145":{"position":[[1233,11]]},"147":{"position":[[1910,13]]}}}],["corrupt",{"_index":6388,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1863,10],[4748,10],[8304,10],[8713,10],[15645,10]]}}}],["cortex",{"_index":1723,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2287,6],[11789,6],[40975,6],[41195,6],[41339,6]]},"94":{"position":[[224,6],[239,6]]},"95":{"position":[[658,6],[670,6],[685,6]]},"96":{"position":[[686,6],[698,6],[713,6]]},"97":{"position":[[490,6],[502,6],[517,6]]},"98":{"position":[[600,6],[612,6],[627,6]]},"99":{"position":[[648,6],[663,6]]},"100":{"position":[[678,6],[693,6]]},"101":{"position":[[324,6]]},"102":{"position":[[484,6],[499,6]]},"104":{"position":[[590,6],[605,6]]},"128":{"position":[[14291,6],[14376,6],[14426,6],[14917,6],[14970,6]]},"146":{"position":[[1657,6]]}}}],["cost",{"_index":97,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1731,6]]},"128":{"position":[[7632,4]]}}}],["count",{"_index":741,"t":{},"d":{},"k":{},"b":{"68":{"position":[[6892,5],[8906,5],[8987,5],[9099,6],[13246,9],[28779,5],[29040,5]]},"69":{"position":[[7284,5]]},"71":{"position":[[45405,5]]},"74":{"position":[[1165,6],[1218,6]]},"75":{"position":[[33213,5],[33287,5]]},"76":{"position":[[1500,7],[1700,5],[2732,6],[2812,6],[5854,5],[5988,8],[6216,6],[6261,5],[6310,6],[11647,5],[17437,5],[18270,9],[21029,5]]},"83":{"position":[[1703,5],[2090,5],[2247,7],[2544,5],[2659,5],[2669,5],[3230,5],[6378,6],[6855,6],[7574,5],[7658,8],[8274,5],[8358,8],[9124,5],[9222,5],[9266,5],[9311,5],[9341,5],[9441,5],[9487,5],[9532,5],[13121,8],[13187,8],[13251,8],[13317,8],[13952,5],[14113,9],[14164,5],[14329,9],[14392,5],[14493,5],[14756,5],[15060,5],[15474,5],[15747,5],[15880,8],[16012,5],[16085,6],[17066,6],[18452,8],[18467,8],[18512,8],[18583,8],[18664,8],[18735,9],[19036,5],[19049,5],[19450,5],[19463,5],[20163,6],[20421,5],[21369,5],[21391,5],[29434,8],[29507,8],[29726,5],[30907,6],[31008,5],[31108,6],[31209,5],[33299,5],[33312,5],[38862,8],[39021,8],[39176,8],[39335,8],[41442,5],[41526,5],[41782,5],[47402,5],[47436,5],[51543,7],[52493,5],[53633,9]]},"84":{"position":[[1124,5],[1297,7],[1376,8],[1523,5],[3141,7],[3289,5],[3319,5],[3445,6],[3581,5],[4317,5],[4464,5],[4549,8],[4670,8],[4877,6],[4922,5],[4971,6],[5066,6],[5261,6],[8089,5],[11832,9],[13879,5]]},"88":{"position":[[4515,5],[5574,5],[6040,5]]},"105":{"position":[[1997,5],[2143,7],[2440,5],[3051,8],[9595,5],[9761,5],[9935,5],[10239,5],[10404,5],[10577,5],[12155,6],[18803,5],[18910,5],[19017,5],[19124,5],[19243,5],[19362,5],[21859,5],[21907,5],[21953,5],[22501,6],[22579,6],[22657,6],[22735,6],[22922,6],[23001,6],[23079,6],[23324,6],[23402,6],[23480,6],[23812,6],[23905,6],[25848,9],[32825,7],[33730,5],[35018,9]]},"106":{"position":[[10373,6],[10565,6],[17028,6],[17117,6]]},"113":{"position":[[10561,5]]},"128":{"position":[[2056,5],[4976,5],[8689,8],[8763,8],[8830,8]]},"135":{"position":[[15007,5],[15084,5],[15139,5],[15194,5],[15249,5],[15304,5],[15359,5],[15414,5],[15469,5]]},"136":{"position":[[7146,5]]},"141":{"position":[[4433,6],[5873,6]]},"142":{"position":[[15199,5],[17450,5],[17528,5],[17584,5],[17640,5],[17696,5],[17752,5],[17808,5],[17864,5],[17920,5]]},"144":{"position":[[1646,8],[1793,7],[2370,7],[2481,7],[7319,6],[7372,9],[12941,5],[12986,5],[13028,5]]},"146":{"position":[[2336,5],[2401,5],[15366,7]]},"148":{"position":[[929,5],[969,5],[2531,9],[2571,9],[4611,8],[4809,9],[5201,8],[10762,5],[13100,5],[13367,5]]},"149":{"position":[[8457,5],[8534,5]]}}}],["count_direct",{"_index":7714,"t":{},"d":{},"k":{},"b":{"144":{"position":[[1623,15]]}}}],["count_down_sourc",{"_index":3444,"t":{},"d":{},"k":{},"b":{"83":{"position":[[30974,18],[31048,17],[31175,18]]}}}],["count_up_sourc",{"_index":3442,"t":{},"d":{},"k":{},"b":{"83":{"position":[[30851,15],[30954,15],[31155,15]]}}}],["counter",{"_index":1665,"t":{},"d":{},"k":{},"b":{"70":{"position":[[14645,7],[14982,7]]},"71":{"position":[[35608,8]]},"76":{"position":[[1618,8],[1771,7],[2866,7],[2921,7],[2941,7],[3079,7],[6128,7],[7935,7],[7985,8],[8056,8],[8087,9],[8508,7],[8523,7],[12976,7],[13037,7],[14344,7],[14417,7],[14483,7],[14570,7],[14657,7],[14745,7],[15641,8],[17718,7],[17754,8],[18327,7],[18644,7],[19535,8],[20100,8],[21541,7],[21648,7],[21663,7],[21832,7],[23608,7],[23644,8]]},"79":{"position":[[6276,7],[6323,7],[6640,7]]},"80":{"position":[[1598,7]]},"83":{"position":[[802,8],[2462,8],[2615,7],[3043,7],[9206,8],[9425,8],[14549,7],[14680,7],[16382,7],[16496,7],[16543,7],[18606,7],[18749,7],[19247,7],[20047,7],[21142,7],[21191,8],[21841,7],[21856,7],[27373,7],[48495,7],[48601,7],[49072,8],[49517,8],[50221,7],[50289,7],[50632,7],[51413,8],[53136,7],[53490,7],[53572,7],[53622,7],[53647,7],[53691,7],[57749,8]]},"84":{"position":[[1441,8],[1594,7],[3617,7],[4788,7],[5177,7],[5253,7],[5365,7],[5475,7],[6679,7],[6728,8],[7186,7],[7201,7],[10055,8],[10694,7],[11046,7],[11889,7],[12166,7],[12933,8],[13308,8],[14389,7],[14514,7]]},"105":{"position":[[702,8],[2358,8],[2511,7],[2581,7],[3210,8],[6156,7],[6216,7],[11231,7],[11328,7],[12039,7],[12900,7],[12950,8],[13444,7],[13459,7],[19978,7],[24041,7],[29906,7],[30012,7],[30713,7],[34330,7],[34345,7],[34519,7],[34875,7],[34957,7],[35007,7],[35032,7],[35076,7],[38551,8]]},"128":{"position":[[5496,7],[5577,8],[14532,7]]},"136":{"position":[[1866,7],[14378,7]]},"137":{"position":[[5799,7],[10671,7],[10716,7]]},"144":{"position":[[1737,8],[2011,7],[2028,7],[5049,8],[5356,8],[5662,7],[8386,7],[10894,8],[11104,8]]},"148":{"position":[[3866,7],[4459,7],[5671,7],[8421,7],[8717,7],[8878,7],[9080,7],[9945,7],[9992,7],[10063,7],[13203,7]]},"149":{"position":[[1797,7],[4543,7],[4711,7],[8104,7],[8200,7],[8265,7],[8387,7]]}}}],["counter_s",{"_index":2722,"t":{},"d":{},"k":{},"b":{"76":{"position":[[13017,12]]}}}],["counterget",{"_index":8080,"t":{},"d":{},"k":{},"b":{"149":{"position":[[2673,10],[4377,10]]}}}],["countingmcu",{"_index":7999,"t":{},"d":{},"k":{},"b":{"148":{"position":[[2471,11]]}}}],["counts)must",{"_index":3346,"t":{},"d":{},"k":{},"b":{"83":{"position":[[13499,11],[13734,11],[13966,11],[14180,11]]}}}],["countvalu",{"_index":2304,"t":{},"d":{},"k":{},"b":{"75":{"position":[[9946,10],[10105,10],[10264,10],[10422,10],[10580,10],[10738,10]]},"106":{"position":[[10252,10],[10457,10]]}}}],["cpg_error_rst2",{"_index":8050,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7861,15],[7934,15]]}}}],["cpha",{"_index":6771,"t":{},"d":{},"k":{},"b":{"135":{"position":[[1087,6]]},"142":{"position":[[1171,6]]}}}],["cpha=0",{"_index":6772,"t":{},"d":{},"k":{},"b":{"135":{"position":[[1094,6],[2467,6],[2483,6],[7605,6],[7851,6]]},"142":{"position":[[1178,6]]}}}],["cpha=1",{"_index":6773,"t":{},"d":{},"k":{},"b":{"135":{"position":[[1158,6],[2475,6]]},"142":{"position":[[1242,6]]}}}],["cpol",{"_index":6767,"t":{},"d":{},"k":{},"b":{"135":{"position":[[1007,6]]},"142":{"position":[[1091,6]]}}}],["cpol=0",{"_index":6768,"t":{},"d":{},"k":{},"b":{"135":{"position":[[1014,6],[2556,6],[2572,6]]},"142":{"position":[[1098,6]]}}}],["cpol=1",{"_index":6770,"t":{},"d":{},"k":{},"b":{"135":{"position":[[1043,6],[2564,6]]},"142":{"position":[[1127,6]]}}}],["cpsie",{"_index":2659,"t":{},"d":{},"k":{},"b":{"76":{"position":[[7521,7],[9819,7],[23364,7]]}}}],["cpu",{"_index":2038,"t":{},"d":{},"k":{},"b":{"71":{"position":[[40986,3],[44481,3],[44745,3]]},"72":{"position":[[408,3]]},"78":{"position":[[288,3]]},"79":{"position":[[1173,4],[6428,3],[6736,3],[7187,3]]},"80":{"position":[[903,5],[1902,3]]},"94":{"position":[[291,4]]},"95":{"position":[[811,4]]},"98":{"position":[[753,4]]},"99":{"position":[[790,4]]},"104":{"position":[[732,4]]},"107":{"position":[[2492,3]]},"128":{"position":[[2589,3],[2823,3],[3222,3]]},"138":{"position":[[7164,3]]},"144":{"position":[[3144,3],[6893,3]]},"145":{"position":[[132,3]]},"148":{"position":[[2108,3],[4881,3],[4948,3]]}}}],["cr",{"_index":176,"t":{"9":{"position":[[45,2]]},"12":{"position":[[45,2]]},"19":{"position":[[45,2]]},"29":{"position":[[45,2]]}},"d":{},"k":{},"b":{}}],["cr8",{"_index":1717,"t":{},"d":{},"k":{},"b":{"71":{"position":[[1635,3],[11726,3]]},"89":{"position":[[831,6]]},"90":{"position":[[831,6]]},"91":{"position":[[848,6]]},"148":{"position":[[4979,3]]}}}],["crash",{"_index":6240,"t":{},"d":{},"k":{},"b":{"128":{"position":[[14817,5],[16381,5]]}}}],["crc",{"_index":2016,"t":{"77":{"position":[[45,3]]},"78":{"position":[[45,3]]}},"d":{},"k":{},"b":{"71":{"position":[[35504,5]]},"75":{"position":[[33713,3]]},"77":{"position":[[520,3],[574,3],[604,3],[660,3],[820,3],[867,3],[936,4],[960,4],[985,4],[999,3],[1040,3],[1163,4],[1265,4],[1277,3],[1302,3],[1687,3],[1771,3],[2053,3],[2069,3],[2076,3],[2084,3],[2095,3],[2103,3],[2112,3],[2131,3],[2185,3],[2284,3],[2358,3],[2437,3],[2451,3],[2550,3],[2814,4],[2960,3],[3686,3],[3805,3],[4122,3],[4213,3],[4345,3],[4404,3],[4697,3],[5454,3],[5508,3],[5949,3],[6553,3],[6683,3],[7455,3],[8075,3],[8123,3],[8311,3],[8381,3]]},"78":{"position":[[78,3],[129,3],[373,3],[750,3],[974,3],[1046,3],[1163,3],[1282,3],[1312,3],[2000,3],[2088,3],[2293,3],[2381,3],[2749,3],[2823,3],[3102,3],[3381,3],[3598,3],[3708,3],[3774,3],[3833,3],[4405,3],[4485,3],[4660,3],[4742,3],[4799,3],[4864,3],[4929,3],[5062,3],[5282,3],[5358,3],[5425,3]]},"115":{"position":[[312,3]]},"117":{"position":[[54,3],[82,3],[136,3]]},"131":{"position":[[14266,3]]},"152":{"position":[[4340,3],[4366,3],[4420,3],[6728,3]]}}}],["crc32",{"_index":2836,"t":{},"d":{},"k":{},"b":{"77":{"position":[[2929,5],[3015,5],[3097,5],[3166,5],[3292,5],[3541,6],[3604,5],[3643,5]]}}}],["crc32c",{"_index":2849,"t":{},"d":{},"k":{},"b":{"77":{"position":[[3666,7]]}}}],["crc_api_t",{"_index":2891,"t":{},"d":{},"k":{},"b":{"78":{"position":[[455,9],[1209,9],[1255,9],[4219,9]]}}}],["crc_api_t::calcul",{"_index":2874,"t":{},"d":{},"k":{},"b":{"77":{"position":[[6637,20]]},"78":{"position":[[3466,21]]}}}],["crc_api_t::clos",{"_index":2872,"t":{},"d":{},"k":{},"b":{"77":{"position":[[5979,16]]},"78":{"position":[[2221,17]]}}}],["crc_api_t::crcresultget",{"_index":2879,"t":{},"d":{},"k":{},"b":{"77":{"position":[[7431,23]]},"78":{"position":[[2538,24]]}}}],["crc_api_t::open",{"_index":2869,"t":{},"d":{},"k":{},"b":{"77":{"position":[[5483,15]]},"78":{"position":[[1900,16]]}}}],["crc_api_t::snoopdis",{"_index":2888,"t":{},"d":{},"k":{},"b":{"77":{"position":[[8833,23]]},"78":{"position":[[3217,24]]}}}],["crc_api_t::snoopen",{"_index":2881,"t":{},"d":{},"k":{},"b":{"77":{"position":[[8096,22]]},"78":{"position":[[2908,23]]}}}],["crc_bit_order_lms_msb",{"_index":2930,"t":{},"d":{},"k":{},"b":{"78":{"position":[[5393,21]]}}}],["crc_bit_order_t",{"_index":2894,"t":{},"d":{},"k":{},"b":{"78":{"position":[[576,15],[1018,15],[5199,15],[5249,15]]}}}],["crc_cfg_t",{"_index":2791,"t":{},"d":{},"k":{},"b":{"77":{"position":[[61,9],[5335,9]]},"78":{"position":[[435,9],[768,9],[814,9],[1436,9],[1944,9],[4132,9]]}}}],["crc_ctrl_t",{"_index":2790,"t":{},"d":{},"k":{},"b":{"77":{"position":[[34,11],[115,11],[170,11],[293,11],[377,11],[454,11],[5247,10],[5874,10],[6253,10],[7187,10],[7848,10],[8739,10]]},"78":{"position":[[516,10],[1408,12],[1486,12],[1541,12],[1617,12],[1691,12],[1743,12],[1917,11],[2239,11],[2563,11],[2932,11],[3242,11],[3488,11],[4056,10],[4324,10],[4377,10]]}}}],["crc_exampl",{"_index":2851,"t":{},"d":{},"k":{},"b":{"77":{"position":[[3840,11]]}}}],["crc_extended_cfg_t",{"_index":2867,"t":{},"d":{},"k":{},"b":{"77":{"position":[[4789,18],[4873,18],[4928,18]]}}}],["crc_input_t",{"_index":2794,"t":{},"d":{},"k":{},"b":{"77":{"position":[[197,11],[3973,11],[6341,11]]},"78":{"position":[[413,11],[659,11],[707,11],[1771,11],[3515,11]]}}}],["crc_instance_ctrl_t",{"_index":2868,"t":{},"d":{},"k":{},"b":{"77":{"position":[[4818,19],[5003,19],[5059,19]]},"78":{"position":[[4515,19]]}}}],["crc_instance_t",{"_index":2892,"t":{},"d":{},"k":{},"b":{"78":{"position":[[475,14],[3867,14],[3918,14]]}}}],["crc_polynomial_crc_16",{"_index":2912,"t":{},"d":{},"k":{},"b":{"78":{"position":[[4770,21]]}}}],["crc_polynomial_crc_32",{"_index":2918,"t":{},"d":{},"k":{},"b":{"78":{"position":[[4900,21]]}}}],["crc_polynomial_crc_32c",{"_index":2923,"t":{},"d":{},"k":{},"b":{"78":{"position":[[5032,22]]}}}],["crc_polynomial_crc_ccitt",{"_index":2915,"t":{},"d":{},"k":{},"b":{"78":{"position":[[4832,24]]}}}],["crc_polynomial_t",{"_index":2893,"t":{},"d":{},"k":{},"b":{"78":{"position":[[550,16],[944,16],[4575,16],[4626,16]]}}}],["crc_result",{"_index":2902,"t":{},"d":{},"k":{},"b":{"78":{"position":[[1578,12],[2599,12]]}}}],["crc_seed",{"_index":2799,"t":{},"d":{},"k":{},"b":{"77":{"position":[[413,9],[4084,9],[7956,8]]},"78":{"position":[[1654,9],[2968,9]]}}}],["crc_snoop_direction_t",{"_index":2895,"t":{},"d":{},"k":{},"b":{"78":{"position":[[601,21],[5467,21],[5523,21]]}}}],["crc_snoop_direction_transmit",{"_index":2934,"t":{},"d":{},"k":{},"b":{"78":{"position":[[5655,28]]}}}],["crc_snoop_exampl",{"_index":2862,"t":{},"d":{},"k":{},"b":{"77":{"position":[[4371,17]]}}}],["crcresultget",{"_index":2901,"t":{},"d":{},"k":{},"b":{"78":{"position":[[1528,12],[2483,12]]}}}],["crcsa",{"_index":2900,"t":{},"d":{},"k":{},"b":{"78":{"position":[[1128,7]]}}}],["crcswr",{"_index":2932,"t":{},"d":{},"k":{},"b":{"78":{"position":[[5589,8]]}}}],["creat",{"_index":998,"t":{},"d":{},"k":{},"b":{"69":{"position":[[6213,6]]},"75":{"position":[[24208,8]]},"80":{"position":[[1766,6],[4371,7],[8004,6],[10625,6]]},"81":{"position":[[2407,6]]},"92":{"position":[[15312,6]]},"127":{"position":[[3225,6],[3302,6],[4481,6],[5183,6]]},"128":{"position":[[4698,8],[5795,7],[7249,8],[10583,7],[19299,8],[21811,7],[21936,7],[25363,7],[25509,7]]},"129":{"position":[[4918,6],[4995,6],[6106,6],[6808,6]]},"131":{"position":[[7327,6],[7404,6],[10365,6],[11067,6]]},"133":{"position":[[8957,6],[9034,6],[11807,6],[12509,6],[15941,6],[16643,6],[20245,6],[20947,6],[25259,6],[25961,6],[31412,6],[32114,6],[35527,6],[36229,6],[39832,6],[40534,6],[44084,6],[44786,6]]}}}],["creation",{"_index":8336,"t":{},"d":{},"k":{},"b":{"151":{"position":[[3326,9]]}}}],["crefer",{"_index":982,"t":{},"d":{},"k":{},"b":{"69":{"position":[[3843,6]]}}}],["crest",{"_index":3319,"t":{},"d":{},"k":{},"b":{"83":{"position":[[5942,5],[11281,5],[14440,5],[18199,5],[20363,5],[41532,5],[41592,5],[41730,5],[41849,5],[41953,5]]},"105":{"position":[[5106,5],[8211,5]]},"144":{"position":[[10882,5],[12705,5]]}}}],["crest/overflow",{"_index":3352,"t":{},"d":{},"k":{},"b":{"83":{"position":[[14597,14]]}}}],["crest/trough",{"_index":3302,"t":{},"d":{},"k":{},"b":{"83":{"position":[[3179,14],[6112,12],[18293,12]]},"105":{"position":[[5276,12]]}}}],["criteria",{"_index":1099,"t":{},"d":{},"k":{},"b":{"69":{"position":[[17398,8]]},"75":{"position":[[15262,8]]}}}],["critic",{"_index":1827,"t":{},"d":{},"k":{},"b":{"71":{"position":[[8317,8],[8354,8],[8475,8],[8620,8],[8737,8]]},"113":{"position":[[2003,8]]},"128":{"position":[[13987,8]]},"136":{"position":[[13556,8]]}}}],["cross",{"_index":2301,"t":{},"d":{},"k":{},"b":{"75":{"position":[[4201,7],[4928,7],[5655,7],[6382,7],[7109,7],[7836,7],[8563,7],[9290,7]]},"133":{"position":[[5565,6]]},"150":{"position":[[23421,7]]}}}],["crx",{"_index":2365,"t":{},"d":{},"k":{},"b":{"75":{"position":[[16023,3],[28873,3]]}}}],["cryoto",{"_index":5846,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15072,6]]}}}],["crypto",{"_index":5843,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15006,6],[15594,6],[15638,6]]}}}],["crystal",{"_index":1644,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13065,7]]},"136":{"position":[[3777,7],[3933,7],[4732,7],[4775,7],[4826,7]]}}}],["cs",{"_index":8149,"t":{},"d":{},"k":{},"b":{"150":{"position":[[5354,2],[5452,2],[5489,2],[5567,2],[5605,2],[5682,2],[18124,2],[18182,2],[18386,2],[18445,2]]}}}],["cs0",{"_index":8166,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6842,3],[6930,3]]}}}],["cs1",{"_index":8169,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6886,3],[6978,3]]}}}],["cstn_rtsn",{"_index":7182,"t":{},"d":{},"k":{},"b":{"139":{"position":[[8317,9]]}}}],["ct",{"_index":7163,"t":{},"d":{},"k":{},"b":{"139":{"position":[[4294,3],[4362,3],[7565,3],[7611,3],[7630,4],[8069,3],[8292,3],[8395,3],[8543,3],[15729,4],[15793,4],[15876,4]]},"140":{"position":[[6474,3]]}}}],["cts/rt",{"_index":7146,"t":{},"d":{},"k":{},"b":{"139":{"position":[[1562,7],[4243,7],[14839,7]]},"140":{"position":[[1589,7],[11741,7]]},"147":{"position":[[372,7]]}}}],["ctsn",{"_index":7166,"t":{},"d":{},"k":{},"b":{"139":{"position":[[4378,4],[8369,4],[8519,4],[8645,4],[8674,4],[8729,4],[8805,4],[15780,4]]}}}],["ctsn_rtsn",{"_index":7165,"t":{},"d":{},"k":{},"b":{"139":{"position":[[4321,9],[4407,9],[8489,9],[8631,9],[15654,9],[15711,9],[15798,9],[15858,9]]}}}],["ctx",{"_index":2366,"t":{},"d":{},"k":{},"b":{"75":{"position":[[16041,3],[28865,3]]}}}],["current",{"_index":283,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1132,7],[7591,7]]},"68":{"position":[[26870,7]]},"69":{"position":[[31455,9]]},"70":{"position":[[13871,7]]},"71":{"position":[[2207,7],[8805,7],[30388,7],[32963,7],[40341,9]]},"75":{"position":[[39231,7]]},"76":{"position":[[1656,7],[1746,7],[8500,7],[9022,7],[10809,7],[11174,7],[16599,7],[16964,7],[20833,7],[21523,7],[21640,7]]},"77":{"position":[[2806,7],[7394,7],[7526,7]]},"78":{"position":[[2640,7]]},"79":{"position":[[7064,7],[17595,7]]},"80":{"position":[[2704,9],[9231,9]]},"83":{"position":[[2500,7],[2590,7],[7625,7],[8325,7],[21833,7],[22398,7],[24248,7],[24605,7],[25631,7],[25836,7],[52981,7],[56547,7]]},"84":{"position":[[1479,7],[1569,7],[1949,9],[5344,7],[7178,7],[8081,7],[8380,7],[14371,7]]},"85":{"position":[[7694,7]]},"87":{"position":[[784,7],[18858,7]]},"88":{"position":[[2150,7],[22278,9],[44942,7],[45009,7],[51999,7]]},"105":{"position":[[2396,7],[2486,7],[3602,9],[13436,7],[14543,7],[14911,7],[15963,7],[16169,7],[31182,7],[31550,7],[34198,7],[34322,7]]},"107":{"position":[[1078,7],[5749,7]]},"108":{"position":[[6703,7]]},"109":{"position":[[754,7],[3304,7],[3465,7]]},"111":{"position":[[1861,10]]},"113":{"position":[[3623,7],[10792,7],[10961,7]]},"124":{"position":[[6486,7]]},"125":{"position":[[7696,7],[8073,7]]},"128":{"position":[[6940,7],[10917,7]]},"133":{"position":[[30044,7],[48547,7]]},"137":{"position":[[8812,9]]},"139":{"position":[[7833,7],[23754,7]]},"140":{"position":[[21606,7]]},"142":{"position":[[19298,7]]},"144":{"position":[[1964,7],[2020,7],[2067,7],[8378,7]]},"145":{"position":[[7997,7]]},"146":{"position":[[20138,7]]},"148":{"position":[[8866,7],[13092,7],[13191,7],[13359,7]]},"149":{"position":[[4531,7],[4699,7]]}}}],["current_command_cod",{"_index":4285,"t":{},"d":{},"k":{},"b":{"88":{"position":[[44983,20]]}}}],["current_period_count",{"_index":3394,"t":{},"d":{},"k":{},"b":{"83":{"position":[[25740,21],[26064,21]]},"105":{"position":[[16073,21],[16220,22]]}}}],["current_slave_info",{"_index":4279,"t":{},"d":{},"k":{},"b":{"88":{"position":[[44644,18]]}}}],["currentinput",{"_index":1662,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13964,12]]}}}],["custom",{"_index":1817,"t":{},"d":{},"k":{},"b":{"71":{"position":[[7517,11]]},"83":{"position":[[6990,6],[7135,6],[7326,6],[7525,6],[7690,6],[7835,6],[8026,6],[8225,6],[8390,6],[8408,6],[8467,6],[28569,6],[31771,6]]},"128":{"position":[[698,6],[752,6]]},"133":{"position":[[13209,8],[17343,8],[21647,8],[26661,8],[32814,8],[36929,8],[41234,8],[45486,8]]}}}],["cycl",{"_index":690,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3740,6],[6006,5]]},"71":{"position":[[8048,6]]},"76":{"position":[[1518,7],[18247,6],[18293,5],[18434,5]]},"79":{"position":[[13747,5]]},"80":{"position":[[4855,6]]},"83":{"position":[[2265,7],[2291,5],[2395,5],[5895,5],[6065,5],[7161,5],[7304,5],[7861,5],[8004,5],[8514,5],[8614,5],[9323,7],[9544,7],[13417,5],[16323,5],[16349,5],[16986,5],[17385,5],[17596,5],[17868,5],[17900,6],[25042,5],[25100,6],[25266,5],[25817,5],[26205,6],[32001,5],[50400,5],[50577,5],[50616,5],[51244,5],[51311,5],[51369,5],[51403,5],[51527,5],[51673,5],[51860,5]]},"84":{"position":[[1315,7],[10812,5],[10991,5],[11030,5],[11809,6],[11855,5]]},"86":{"position":[[1857,6]]},"88":{"position":[[15103,6],[46311,5]]},"105":{"position":[[2161,7],[2187,5],[2291,5],[5059,5],[5229,5],[8749,5],[8915,5],[8986,5],[9152,5],[11188,5],[11296,5],[11538,5],[11750,5],[11900,5],[11928,5],[15360,5],[15418,6],[15586,5],[16150,5],[16376,6],[18606,5],[18696,5],[32626,6],[32676,5],[32809,5],[32971,6],[33044,5]]},"124":{"position":[[3182,5]]},"125":{"position":[[5173,7]]},"135":{"position":[[3712,6],[3987,6],[4260,6],[6677,5]]},"136":{"position":[[2992,6],[5377,7]]},"138":{"position":[[4465,6],[12082,6]]},"139":{"position":[[3679,6]]},"140":{"position":[[3195,6],[4140,6]]},"142":{"position":[[5670,6],[5844,6],[6016,6],[7851,5]]},"143":{"position":[[1410,7],[11071,7],[11133,6],[13350,6]]},"144":{"position":[[227,5],[2472,5],[2534,5],[2593,5],[7399,5],[7684,5],[12616,5],[12716,5],[12819,6]]},"148":{"position":[[2190,7],[4186,6],[4241,5],[4309,6]]},"149":{"position":[[6653,6],[6688,6],[6725,6],[6762,6],[6799,6],[6836,6],[6875,6]]},"150":{"position":[[5434,6],[5536,5],[5651,5],[18204,6],[18466,6]]}}}],["cycle_end_ipl",{"_index":7718,"t":{},"d":{},"k":{},"b":{"144":{"position":[[2519,13]]}}}],["cycle_end_irq",{"_index":7719,"t":{},"d":{},"k":{},"b":{"144":{"position":[[2578,13]]}}}],["cycles_valu",{"_index":7116,"t":{},"d":{},"k":{},"b":{"138":{"position":[[12051,12]]}}}],["cyclic",{"_index":2014,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35480,6]]},"78":{"position":[[36,6],[82,7]]},"115":{"position":[[341,6]]},"152":{"position":[[6755,6]]}}}],["d",{"_index":3513,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37020,3],[37524,3]]},"105":{"position":[[5924,1],[19797,1]]}}}],["d/ave",{"_index":5700,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8947,5],[9019,5],[9094,5],[9159,5]]}}}],["dack",{"_index":2960,"t":{},"d":{},"k":{},"b":{"79":{"position":[[1615,4],[3207,4],[3250,4],[3279,4],[3328,4],[5449,5],[10139,4],[10206,4],[13546,4]]}}}],["daemon",{"_index":6290,"t":{},"d":{},"k":{},"b":{"128":{"position":[[20255,6],[20331,6],[20536,6]]}}}],["daemon/tim",{"_index":6305,"t":{},"d":{},"k":{},"b":{"128":{"position":[[22356,12]]}}}],["damag",{"_index":79,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1423,8],[1555,8],[1597,7],[1614,7],[1712,8]]}}}],["dat0",{"_index":5763,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11459,4]]}}}],["dat_ipl",{"_index":5388,"t":{},"d":{},"k":{},"b":{"107":{"position":[[1579,7]]}}}],["dat_irq",{"_index":5392,"t":{},"d":{},"k":{},"b":{"107":{"position":[[1747,7]]}}}],["dat_isr",{"_index":5404,"t":{},"d":{},"k":{},"b":{"107":{"position":[[4637,7]]}}}],["data",{"_index":256,"t":{"75":{"position":[[80,4]]}},"d":{},"k":{},"b":{"67":{"position":[[557,4],[974,4],[1099,4],[1285,4],[1424,5],[1802,4],[1871,4],[2207,4],[2468,4],[2726,4],[3515,5],[3803,4],[10974,4],[11211,5],[11602,4],[12649,4],[13033,4],[13092,4],[13135,4],[15367,4],[15417,4],[15465,4]]},"68":{"position":[[10610,5],[12362,5],[13537,4],[15229,5],[16308,4],[16430,4],[16839,4],[17010,4],[17647,4]]},"69":{"position":[[1966,4],[12340,4],[12389,4],[12835,4],[14474,5],[14684,4],[15780,4],[18495,4],[18916,4],[19087,4],[20174,4],[20904,4],[22267,4]]},"71":{"position":[[9299,4],[47976,4],[48169,4]]},"74":{"position":[[421,4],[440,4],[803,4],[928,4],[1056,4],[1417,4],[1767,4],[1780,4],[1949,4],[2072,5],[2215,4],[2484,5],[2591,4],[3211,4],[4809,4],[5240,4],[6372,4],[7313,4],[9751,4]]},"75":{"position":[[974,4],[1006,4],[1222,4],[1597,4],[1656,5],[2131,4],[2373,4],[3223,4],[3410,4],[11446,4],[12173,4],[12243,4],[12999,4],[13065,4],[13100,4],[13253,4],[13405,4],[13984,4],[15467,6],[16435,5],[17537,4],[19872,4],[19891,4],[19980,4],[20115,4],[20848,4],[21238,4],[23196,4],[23359,4],[23718,4],[23813,4],[24562,5],[25448,4],[28452,4],[28584,4],[28761,4],[29881,4],[30034,4],[30562,4],[30920,4],[31223,4],[31817,4],[32053,4],[35298,4],[36246,4],[37014,4],[37062,4],[37352,4],[38009,4]]},"76":{"position":[[11760,4],[12021,4],[12370,4],[12388,4],[15720,5]]},"77":{"position":[[685,4],[715,4],[907,4],[1081,4],[2573,4],[2688,5],[4765,4],[4841,4],[6620,5]]},"78":{"position":[[260,4],[389,4],[627,4],[895,4],[1379,4],[3628,5],[4043,4]]},"79":{"position":[[1114,4],[1508,4],[2474,4],[2587,4],[2612,4],[2730,4],[5996,4],[6103,4],[6518,4],[8306,4],[8902,4],[9061,5],[9069,4],[9166,5],[9372,4],[9887,4],[11458,5],[11711,4],[21356,5]]},"80":{"position":[[4356,4],[8195,4],[8242,4]]},"81":{"position":[[66,4],[256,4],[422,4],[683,4],[3708,4]]},"82":{"position":[[336,4],[610,4],[781,4],[788,4],[848,5],[1150,4],[1999,5],[2286,4],[5534,4]]},"83":{"position":[[27486,4],[28152,4],[28305,4],[28985,4],[30313,4],[32874,4],[57807,5]]},"84":{"position":[[8817,4],[8959,4],[9303,4],[10134,5]]},"85":{"position":[[358,4],[674,4],[849,4],[1088,4],[1258,4],[2227,4],[2970,4],[3183,4],[4953,5],[5532,4],[8257,4]]},"86":{"position":[[317,4],[595,4],[768,4],[1067,4],[2073,4],[2619,4],[2829,4],[4207,5],[4660,4],[5964,4],[7616,4],[7752,4]]},"87":{"position":[[162,4],[655,4],[873,4],[1234,4],[1605,4],[2133,4],[2474,4],[2958,4],[3085,5],[3125,4],[3468,4],[4249,4],[5215,4],[11976,4],[13349,4],[14151,4],[17055,4],[19119,4]]},"88":{"position":[[3345,4],[12398,4],[12466,4],[12531,4],[12598,4],[12667,4],[12827,4],[20279,4],[20456,4],[20550,4],[20633,4],[23595,4],[27628,4],[31340,4],[33502,4],[37105,4],[39068,4],[39212,4],[39427,4],[40935,4],[41093,4],[41785,4],[42197,4],[42871,4],[43655,4],[43670,4],[43794,4],[43865,4],[44736,4],[46202,4],[50174,4],[50350,4],[50416,4],[50485,4],[50554,4],[50623,4],[50772,4],[60883,4]]},"89":{"position":[[4292,4],[4344,4],[4593,4],[4925,5]]},"90":{"position":[[3924,4],[3976,4],[4225,4],[4557,5]]},"91":{"position":[[4563,4],[4744,4],[4997,4],[5325,5],[5542,4]]},"92":{"position":[[2460,4],[2483,4],[3689,4],[4165,4],[7733,4],[8577,4],[9421,4],[10265,4],[14853,4],[16296,4],[16876,4],[17283,4],[17842,4],[18188,4],[18757,4],[28877,5],[28990,4],[29880,4],[30033,4],[30215,4],[31750,4],[31832,4],[31915,4],[31975,4],[32780,4],[33061,4],[36389,5],[36458,4],[36638,4],[36721,4],[36781,4],[37686,4],[38272,4]]},"93":{"position":[[305,4],[573,4],[746,4],[1008,4],[1070,4],[1157,5],[1226,5],[1482,4],[3020,4],[3279,4],[3807,4],[4381,4],[4565,5],[4794,5],[4884,4],[6464,4],[6621,5],[6878,4],[6982,4],[7054,4],[7168,5],[8197,4]]},"94":{"position":[[258,4],[558,4],[747,4],[908,4],[968,5],[1121,5],[1234,4],[1564,4],[2093,5],[2265,4],[3488,5],[4836,4]]},"95":{"position":[[1169,4],[1221,4],[1454,4],[1812,4],[1874,4],[3387,5]]},"96":{"position":[[925,4],[987,4],[1253,4],[2606,5]]},"97":{"position":[[673,4],[735,4],[1001,4],[2758,5]]},"98":{"position":[[1110,4],[1161,4],[1392,4],[1750,4],[1812,4],[3316,5]]},"99":{"position":[[1146,4],[1196,4],[1425,4],[1783,4],[1845,4],[3340,5]]},"100":{"position":[[904,4],[964,4],[1226,4],[2565,5]]},"101":{"position":[[529,4],[743,4],[930,4],[990,5],[1269,4],[2114,5],[2314,4],[4598,4]]},"102":{"position":[[654,4],[714,4],[976,4],[2715,5]]},"103":{"position":[[504,4],[718,4],[905,4],[965,5],[1244,4],[1391,5],[1590,4],[3284,4]]},"104":{"position":[[1087,4],[1136,4],[1363,4],[1721,4],[1783,4],[3269,5]]},"105":{"position":[[16487,4],[17074,4],[17229,4],[17559,4],[18320,4],[19545,4],[38609,5]]},"106":{"position":[[883,4],[991,4],[1700,5],[2496,5],[9166,5],[9284,4],[9401,4],[9418,4],[9464,4],[9480,4],[9496,4],[9512,4],[9529,4],[9545,4],[9557,4],[11810,4],[11872,4],[11912,4],[12001,4],[12723,4],[12768,4],[12813,4],[12981,4],[13012,4],[13024,5],[13030,4],[13141,4],[13291,4],[13390,4],[13397,4],[13478,4],[14092,4],[14424,4],[14811,4],[15409,5],[16008,5],[16105,5],[16206,5],[16324,5],[16443,5],[16566,5],[16675,4],[16835,5],[16937,5],[17232,5],[17370,5],[18185,5],[19784,4],[19906,4],[19987,4],[20068,4],[20149,4],[20232,4],[23246,4],[23393,4]]},"107":{"position":[[222,4],[528,4],[681,4],[688,4],[748,5],[1045,4],[1232,4],[1298,4],[1352,4],[1588,4],[1770,4],[2624,5],[2832,4],[4597,4],[5159,5],[7176,4],[8794,4],[8854,4],[8910,4],[8959,4],[9169,4]]},"108":{"position":[[5129,4],[5177,4]]},"109":{"position":[[89,4],[286,4],[593,4],[720,4],[908,5],[916,4],[976,5],[1143,4],[1953,5],[2214,4],[5371,4]]},"111":{"position":[[419,4],[690,4],[841,4],[1148,4]]},"112":{"position":[[91,4]]},"113":{"position":[[73,4],[304,4],[443,4],[691,4],[3984,4],[4045,4],[4481,4],[4545,4],[5830,4],[7584,4],[7722,4],[7795,4],[9232,4],[9957,5],[10004,4],[10111,5],[10225,4],[11856,4],[13623,4],[15241,4],[15498,4]]},"115":{"position":[[1473,4]]},"116":{"position":[[1067,4],[1115,4]]},"124":{"position":[[8319,4],[8459,4],[9000,4],[9616,4],[11000,4],[11469,4],[12217,4],[12434,4],[12596,4],[13070,4]]},"125":{"position":[[963,4],[1000,4],[1368,5],[4463,4],[4489,4],[4889,4],[5587,5],[6721,4],[8089,5],[11088,4],[11235,4],[12111,4],[13052,4],[13182,4],[13272,4],[13432,4],[13787,4],[15837,5],[16947,5]]},"126":{"position":[[256,4],[510,4],[993,4],[1546,4],[2758,5],[2913,5],[3143,5],[3296,4]]},"127":{"position":[[1380,4],[1399,4],[5978,4],[6179,4],[6350,4],[6406,4],[6596,4],[6878,5],[6935,4],[8724,4],[9363,4],[9963,4]]},"128":{"position":[[11160,4]]},"129":{"position":[[507,4],[521,5],[760,4],[1034,5],[1858,4],[2953,4],[3034,4],[3407,4],[4140,4],[4258,4],[4300,4],[4743,4],[8299,4],[8708,4],[9259,4],[9498,4],[9786,4],[10094,4],[10193,4],[10390,4],[10742,4],[12591,4],[12605,5],[13211,4],[13309,4],[13955,5],[14050,4],[15640,4]]},"130":{"position":[[222,4],[598,4],[885,4],[892,4],[959,4],[1160,4],[1173,4],[1359,4],[1485,4],[1940,4],[3566,4],[3710,4],[4008,5],[4149,5],[4195,4],[5988,4],[6782,4]]},"131":{"position":[[1459,4],[2019,5],[2398,4],[2479,4],[3340,4],[4473,4],[4570,5],[5307,4],[6277,4],[6295,4],[6553,4],[7575,4],[7894,5],[8034,4],[8052,5],[8452,5],[8821,4],[8839,5],[9415,5],[9555,4],[9573,5],[13155,4],[13986,4],[14448,4],[14543,4],[14730,4],[15004,4],[15716,4],[15789,4],[19318,4],[19702,4],[20440,5],[20535,4]]},"132":{"position":[[222,4],[706,4],[1125,4],[1132,4],[1424,4],[1437,4],[1623,4],[1749,4],[2500,4],[4112,4],[4256,4],[4554,5],[4695,5],[4741,4],[5130,4]]},"133":{"position":[[195,4],[209,5],[1865,5],[5873,4],[5908,4],[7429,4],[9591,4],[9776,5],[9790,4],[10058,5],[10605,5],[15218,4],[19384,4],[24279,4],[30493,4],[34818,4],[38971,4],[43275,4],[48996,4],[49092,4],[49238,4],[49431,4],[49813,4],[51433,4],[51447,5],[55700,5]]},"134":{"position":[[217,4],[774,4],[1084,4],[1234,4],[1251,4],[1611,4],[1628,4],[2094,4],[2369,4],[2700,4],[2717,4],[2926,4],[2943,4],[3393,4],[3637,4],[4250,4],[7505,5],[7643,4],[7969,5],[8125,5],[8176,4],[8502,5],[8658,5],[8709,4],[9014,5],[9165,5],[9216,4],[9547,5],[9704,5],[9755,4],[10081,5],[10237,5],[10288,4],[10614,5],[10770,5],[10821,4],[11122,5],[11272,5],[11323,4],[12483,4]]},"135":{"position":[[1101,4],[1165,4],[1240,4],[1462,4],[1492,4],[2522,5],[2766,4],[3731,4],[4005,4],[4280,4],[5997,4],[6115,4],[6138,4],[6290,4],[6795,4],[6924,4],[7031,4],[7421,4],[7682,4],[8244,4],[11600,4],[11921,4],[12087,4],[12323,4],[13251,4],[13657,4],[13738,4],[13826,4],[13911,4],[18071,4],[19182,4],[20453,5]]},"136":{"position":[[9828,4],[9952,4],[10102,4],[10478,4]]},"137":{"position":[[291,4],[814,4],[967,4],[974,4],[1141,5],[1306,4],[1754,4],[2537,4],[2791,4],[3750,4],[9204,4]]},"138":{"position":[[3365,4],[8195,4],[8339,4],[8887,4],[9510,4],[10204,4],[10680,4],[11458,4],[11632,4],[11792,4],[12530,4],[15121,4],[16301,4]]},"139":{"position":[[1350,4],[1457,4],[1772,4],[2920,4],[6319,4],[6359,4],[6426,4],[6779,4],[8201,4],[8249,4],[8595,4],[9876,4],[10881,4],[11057,6],[11276,6],[12391,4],[12897,4],[13418,4],[13978,4],[13994,4],[14062,4],[14225,4],[14992,4],[16244,4],[17628,4],[17704,4],[17763,4],[19675,4],[20066,4],[20915,4],[21293,4]]},"140":{"position":[[1371,4],[1478,4],[2675,4],[5128,4],[5906,4],[7279,4],[8251,4],[8426,6],[8645,6],[9711,4],[10144,4],[10482,4],[10817,4],[11155,4]]},"141":{"position":[[215,4],[587,4],[751,4],[1188,4],[1757,4],[2638,4],[3918,4],[4096,4],[4268,4],[4428,4],[4648,4],[4826,4],[4849,4],[4956,4],[5316,4],[5353,4],[5555,4],[5578,4],[5708,4],[5868,4],[5945,4],[7314,4],[7952,4],[8000,4],[8055,4],[8110,4],[8165,4],[8220,4],[8275,4],[8331,4],[8388,4],[8445,4],[8502,4],[8559,4],[8616,4],[8673,4],[8730,4],[8787,4],[8844,4],[8901,4],[8962,4],[9019,4],[9076,4],[9137,4],[9198,4],[9259,4],[9316,4],[9373,4],[9430,4],[9487,4],[9548,4],[9609,4],[10009,4],[10036,4],[10093,4],[10121,4],[11255,4],[11317,4]]},"142":{"position":[[1185,4],[1249,4],[1315,4],[1603,4],[1633,4],[1670,4],[3650,4],[3677,4],[3706,4],[3734,4],[3762,4],[3789,4],[3849,5],[4085,4],[5064,4],[5689,4],[5862,4],[6036,4],[6721,4],[6995,4],[7018,4],[7170,4],[7969,4],[8098,4],[8205,4],[8595,4],[9125,4],[9196,4],[12671,4],[13093,4],[13248,4],[13485,4],[14718,4],[15057,4],[15138,4],[15216,4],[15304,4],[20063,4],[21075,4],[22247,5]]},"143":{"position":[[273,4],[737,4],[940,4],[1256,4],[1318,4],[1324,5],[1528,4],[1691,4],[3303,4],[3629,4],[5355,4],[5505,4],[6062,4],[6272,4],[6580,4],[6751,4],[7456,4],[7607,4],[7716,4],[10315,4],[11160,5],[11237,5],[11332,4],[11420,5],[11515,4],[11902,4],[12035,4],[12057,4],[13084,4],[13138,4],[13175,4],[13213,4]]},"144":{"position":[[575,4],[945,4],[1102,4],[1109,4],[1169,5],[1591,4],[1988,4],[2247,4],[3278,5],[3518,4],[10028,4]]},"145":{"position":[[36,4],[114,4],[214,4],[624,4],[784,4],[1803,4],[2785,4],[2866,4],[3217,4],[3667,4],[9976,4],[12172,5],[12185,5]]},"146":{"position":[[2357,5],[2387,5],[3955,4],[5820,4],[6091,4],[6126,4],[6890,5],[8349,5],[8432,5],[8987,4],[9258,4],[9293,4],[12208,4],[12479,4],[12514,4],[13914,5],[14993,4],[15142,4],[15313,4],[16008,4],[16093,5],[17222,4],[22354,4]]},"147":{"position":[[541,4],[849,4],[993,4],[1415,4],[1517,4],[1863,4],[1995,4],[3640,4],[5622,4],[5652,4],[6321,4],[6350,4],[9271,4],[10354,5],[10459,4],[10515,4],[10551,4],[10587,4]]},"148":{"position":[[9211,4],[9287,4]]},"149":{"position":[[295,4],[676,4],[829,4],[836,4],[896,5],[1063,5],[1128,4],[1404,4],[2151,5],[2359,4],[5982,4]]},"150":{"position":[[6342,4],[6364,4],[6386,4],[6408,4],[7783,4],[9225,5],[9681,4],[11327,5],[12544,5],[13349,5],[15663,4],[15959,4],[20583,4],[21120,4],[23218,4],[23638,4],[26272,4]]},"151":{"position":[[1840,4],[1887,4]]},"152":{"position":[[1098,4],[7809,4]]},"287":{"position":[[73,4]]},"289":{"position":[[74,4]]},"291":{"position":[[11,4],[113,4]]},"292":{"position":[[71,4],[1102,4]]}}}],["data(bsp_io_level_high",{"_index":4529,"t":{},"d":{},"k":{},"b":{"92":{"position":[[16079,23]]}}}],["data)*2",{"_index":2362,"t":{},"d":{},"k":{},"b":{"75":{"position":[[15623,8]]}}}],["data/address",{"_index":4102,"t":{},"d":{},"k":{},"b":{"88":{"position":[[17043,12]]},"124":{"position":[[5454,12]]},"125":{"position":[[4261,12]]},"138":{"position":[[5549,12]]}}}],["data1",{"_index":334,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2541,6]]}}}],["data2",{"_index":336,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2610,6]]}}}],["data[can_data_buffer_length",{"_index":2154,"t":{},"d":{},"k":{},"b":{"74":{"position":[[2038,28]]}}}],["data_bit",{"_index":7947,"t":{},"d":{},"k":{},"b":{"147":{"position":[[1984,9]]}}}],["data_length",{"_index":7566,"t":{},"d":{},"k":{},"b":{"143":{"position":[[1515,11]]},"150":{"position":[[9312,12],[11414,12],[12631,12],[13436,12]]}}}],["data_length_cod",{"_index":2152,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1927,16]]}}}],["data_typ",{"_index":6384,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1511,10],[15162,10]]},"130":{"position":[[2500,10],[4682,10]]}}}],["datacalcul",{"_index":6449,"t":{},"d":{},"k":{},"b":{"130":{"position":[[2211,13],[3740,13]]},"132":{"position":[[2835,13],[4286,13]]},"133":{"position":[[1444,14],[1793,14],[10123,13],[10670,13],[54979,14],[55628,14]]}}}],["datasheet",{"_index":6399,"t":{},"d":{},"k":{},"b":{"129":{"position":[[4112,9],[10017,10]]},"131":{"position":[[4281,9],[12440,10]]},"133":{"position":[[6888,9],[8012,9]]},"150":{"position":[[12204,9]]}}}],["date",{"_index":5840,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14880,4]]},"136":{"position":[[1351,4],[1382,4],[2275,4],[2344,4],[2563,5]]},"137":{"position":[[9571,4]]}}}],["day",{"_index":6925,"t":{},"d":{},"k":{},"b":{"136":{"position":[[1587,4],[1592,3],[2468,4]]},"137":{"position":[[2086,4]]}}}],["dayofweek",{"_index":7034,"t":{},"d":{},"k":{},"b":{"137":{"position":[[2312,9]]}}}],["dayofweek_match",{"_index":7033,"t":{},"d":{},"k":{},"b":{"137":{"position":[[2254,15]]}}}],["dc",{"_index":6940,"t":{},"d":{},"k":{},"b":{"136":{"position":[[3808,2]]}}}],["dcr",{"_index":3848,"t":{},"d":{},"k":{},"b":{"87":{"position":[[1330,3],[2756,3],[17443,4],[19799,4]]},"88":{"position":[[4753,4],[5388,4],[6164,3],[25640,4],[27098,4]]}}}],["ddr",{"_index":2992,"t":{},"d":{},"k":{},"b":{"79":{"position":[[7013,3]]}}}],["ddr3l",{"_index":2075,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44792,5]]}}}],["de",{"_index":1251,"t":{},"d":{},"k":{},"b":{"69":{"position":[[28007,2]]},"135":{"position":[[10235,2],[10891,2]]},"139":{"position":[[4768,2],[4823,2],[4885,2],[4966,2],[4993,2],[5128,2],[5254,2],[5423,2],[13394,2],[13477,2],[13532,2],[13629,2],[13785,2],[17292,2],[17353,2],[17448,2]]},"140":{"position":[[10793,2],[10874,2],[10927,2],[13550,2],[13609,2],[13702,2],[17353,2]]},"142":{"position":[[11253,2],[11918,2]]}}}],["de_control_pin",{"_index":7347,"t":{},"d":{},"k":{},"b":{"140":{"position":[[10968,14]]}}}],["dead",{"_index":3299,"t":{},"d":{},"k":{},"b":{"83":{"position":[[2852,4],[3255,4],[12067,4],[12126,4],[12168,4],[12280,4],[12535,4],[13930,4],[13942,4],[14084,4],[14142,4],[14154,4],[14298,4],[29414,4],[29487,4],[31465,4],[31627,4],[40126,4]]},"105":{"position":[[3187,4]]},"144":{"position":[[11301,4]]}}}],["dead_time_count_down",{"_index":3430,"t":{},"d":{},"k":{},"b":{"83":{"position":[[29459,20]]}}}],["dead_time_count_up",{"_index":3429,"t":{},"d":{},"k":{},"b":{"83":{"position":[[29388,18]]}}}],["dead_time_ipl",{"_index":3450,"t":{},"d":{},"k":{},"b":{"83":{"position":[[31450,13]]}}}],["dead_time_irq",{"_index":3453,"t":{},"d":{},"k":{},"b":{"83":{"position":[[31612,13]]}}}],["deassert",{"_index":7609,"t":{},"d":{},"k":{},"b":{"143":{"position":[[5765,10]]}}}],["debounc",{"_index":3295,"t":{},"d":{},"k":{},"b":{"83":{"position":[[2165,8],[37923,10]]}}}],["debug",{"_index":1742,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2915,5],[29497,9],[32072,9],[41379,9]]},"128":{"position":[[9039,10],[9144,9],[16304,9]]},"148":{"position":[[2644,9],[4838,10],[6515,5]]},"151":{"position":[[3411,9]]}}}],["debug_printf",{"_index":6273,"t":{},"d":{},"k":{},"b":{"128":{"position":[[18734,13]]}}}],["debugg",{"_index":2046,"t":{},"d":{},"k":{},"b":{"71":{"position":[[41406,8]]},"128":{"position":[[9201,8],[9332,9],[9513,8],[16934,9],[17149,8]]},"148":{"position":[[4704,9]]}}}],["decim",{"_index":5116,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2811,11],[15508,11],[15899,10],[16382,11],[16505,11],[18463,11]]},"130":{"position":[[1241,7]]},"132":{"position":[[1505,7]]}}}],["decimal_part",{"_index":6446,"t":{},"d":{},"k":{},"b":{"130":{"position":[[1220,12]]},"132":{"position":[[1484,12]]}}}],["declar",{"_index":132,"t":{},"d":{},"k":{},"b":{"1":{"position":[[518,12]]},"71":{"position":[[3702,11],[3880,8],[4109,12],[4479,12],[39983,8]]},"74":{"position":[[4233,8]]},"75":{"position":[[25336,11]]},"82":{"position":[[3149,8]]},"85":{"position":[[4411,8]]},"86":{"position":[[3709,8]]},"87":{"position":[[6819,8]]},"94":{"position":[[3005,8]]},"101":{"position":[[3089,8]]},"103":{"position":[[2219,8]]},"107":{"position":[[3965,8]]},"109":{"position":[[2997,8]]},"128":{"position":[[22874,8],[22922,8],[24193,8],[24241,8],[26132,8],[26265,8]]},"144":{"position":[[4772,8]]},"145":{"position":[[4791,8],[5273,8]]},"147":{"position":[[4804,8]]}}}],["decod",{"_index":6125,"t":{},"d":{},"k":{},"b":{"127":{"position":[[8729,8],[9968,8]]},"129":{"position":[[13314,8],[14055,8]]},"131":{"position":[[19707,8],[20540,8]]}}}],["decreas",{"_index":4031,"t":{},"d":{},"k":{},"b":{"88":{"position":[[7262,8],[7384,8]]}}}],["decrement",{"_index":2990,"t":{},"d":{},"k":{},"b":{"79":{"position":[[6284,10]]},"83":{"position":[[9411,9]]},"145":{"position":[[10885,11],[11867,12],[13932,10],[14315,11]]}}}],["decrypt",{"_index":5854,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15450,10]]}}}],["dedic",{"_index":2306,"t":{},"d":{},"k":{},"b":{"75":{"position":[[10029,9],[10188,9],[10346,9],[10504,9],[10662,9],[10820,9]]},"88":{"position":[[16775,9]]},"128":{"position":[[14328,9]]}}}],["deem",{"_index":6253,"t":{},"d":{},"k":{},"b":{"128":{"position":[[16047,5]]}}}],["default",{"_index":134,"t":{},"d":{},"k":{},"b":{"1":{"position":[[565,7]]},"67":{"position":[[2982,7]]},"68":{"position":[[2749,7],[2783,7],[28877,7]]},"69":{"position":[[2214,7],[2248,7]]},"71":{"position":[[4517,9],[6519,7],[7128,7],[8035,7],[10339,8],[10931,8],[11749,7],[14446,7],[14525,7],[29693,7],[31059,7],[31171,7],[32268,7],[33634,7],[33746,7],[38605,7],[39176,7],[47934,7],[48127,7]]},"75":{"position":[[10866,7],[10900,7],[18590,7],[27846,8]]},"76":{"position":[[1979,7],[2013,7]]},"77":{"position":[[1538,7],[1572,7]]},"79":{"position":[[1899,7],[1933,7]]},"80":{"position":[[3984,7],[4018,7]]},"83":{"position":[[4343,7],[4377,7]]},"84":{"position":[[2414,7],[2448,7],[15904,7]]},"88":{"position":[[6912,7],[6946,7],[26299,8],[29974,8],[33195,8],[35439,8],[35537,8],[36652,8],[38120,8],[39375,8],[42779,7]]},"89":{"position":[[1738,7],[1772,7]]},"90":{"position":[[1686,7],[1720,7]]},"91":{"position":[[1739,7],[1773,7]]},"92":{"position":[[1857,7],[2768,7],[2802,7],[12881,7],[20601,9],[22998,9]]},"105":{"position":[[4086,7],[4120,7]]},"106":{"position":[[1218,7],[1252,7]]},"108":{"position":[[1333,7],[1367,7]]},"113":{"position":[[7507,9]]},"124":{"position":[[2149,7],[2183,7],[2526,7]]},"125":{"position":[[1631,7],[1665,7]]},"127":{"position":[[1710,7],[1744,7]]},"128":{"position":[[12484,7],[22044,7],[26103,7]]},"129":{"position":[[3291,7],[3325,7]]},"131":{"position":[[2966,7],[3000,7],[12974,8]]},"133":{"position":[[6182,7],[6216,7]]},"135":{"position":[[1787,7],[1821,7]]},"136":{"position":[[2733,7],[4175,7],[4209,7]]},"138":{"position":[[2227,7],[2261,7],[2636,7],[6834,8]]},"139":{"position":[[1991,7],[2025,7],[7906,7],[11668,8]]},"140":{"position":[[1958,7],[1992,7],[9037,8]]},"142":{"position":[[1987,7],[2021,7]]},"146":{"position":[[1863,7],[1897,7]]},"148":{"position":[[1684,7],[1718,7]]},"150":{"position":[[2233,7],[2267,7],[9751,7]]}}}],["default_handl",{"_index":1676,"t":{},"d":{},"k":{},"b":{"71":{"position":[[116,15],[38468,17],[38520,15]]}}}],["default_handler_",{"_index":1679,"t":{},"d":{},"k":{},"b":{"71":{"position":[[205,17],[39035,19],[39089,17]]}}}],["defin",{"_index":145,"t":{},"d":{},"k":{},"b":{"1":{"position":[[796,7]]},"68":{"position":[[2652,7],[9564,7],[9982,7],[12676,7],[15543,7]]},"69":{"position":[[2117,7],[13353,7],[13864,7],[15286,7],[23915,7]]},"71":{"position":[[3516,7],[3923,6],[4001,8],[4442,7],[4893,7],[5031,7],[7066,8],[9694,7],[11192,6],[11686,7],[12024,7],[12062,7],[12099,7],[12148,7],[12196,7],[12245,7],[12293,7],[12344,7],[12394,7],[12443,7],[12491,7],[12540,7],[12588,7],[12638,7],[12687,7],[12737,7],[12786,7],[12835,7],[12883,7],[12933,7],[12982,7],[13031,7],[13079,7],[13129,7],[13178,7],[13228,7],[13277,7],[13326,7],[13374,7],[13424,7],[13473,7],[13514,7],[13554,7],[13581,7],[13607,7],[13636,7],[13660,7],[13696,7],[13733,7],[13769,7],[13798,7],[13846,7],[13876,7],[13903,7],[13929,7],[13958,7],[13982,7],[14018,7],[14055,7],[14091,7],[14120,7],[14168,7],[14652,7],[15078,7],[15515,7],[15962,7],[16410,7],[16857,7],[17307,7],[17758,7],[18208,7],[18655,7],[19103,7],[19550,7],[19999,7],[20448,7],[20898,7],[21347,7],[21796,7],[22243,7],[22692,7],[23141,7],[23590,7],[24037,7],[24486,7],[24935,7],[25385,7],[25834,7],[26283,7],[26730,7],[27179,7],[27628,7],[28064,7],[28492,7],[28926,7],[29080,7],[29274,7],[29447,6],[29609,7],[29878,7],[30303,7],[30505,7],[30698,7],[30795,7],[30896,7],[31191,8],[31314,7],[31501,7],[31655,7],[31849,7],[32022,6],[32184,7],[32453,7],[32878,7],[33080,7],[33273,7],[33370,7],[33471,7],[33766,8],[33889,7],[41686,7],[42204,7],[43057,7]]},"72":{"position":[[106,7]]},"73":{"position":[[106,7]]},"74":{"position":[[2810,7]]},"75":{"position":[[2688,7],[3375,7],[26879,7],[28085,7],[29037,7],[29231,7]]},"76":{"position":[[1883,7],[7457,7],[8298,7],[9755,7],[10115,7],[10497,7],[23300,7]]},"77":{"position":[[1443,7]]},"79":{"position":[[1801,7],[8111,7],[8502,7],[8546,7],[12096,7],[12286,7]]},"80":{"position":[[1745,7],[3889,7],[7820,7],[7952,7]]},"83":{"position":[[4248,7],[17344,8],[20725,7],[21633,7],[23284,7],[23583,7],[23961,7],[25107,7],[25506,7],[26803,7]]},"84":{"position":[[2319,7],[6254,7],[6971,7],[7387,7],[7763,7]]},"87":{"position":[[1192,6],[4097,7],[14807,7],[15325,6]]},"88":{"position":[[1584,7],[3912,7],[4899,7],[5935,7],[6588,7],[6815,7],[15577,6],[16409,6],[16611,7],[20793,7],[21306,7],[22685,7],[23145,7],[26720,7],[30404,7],[30864,7],[39659,7],[39764,7],[39861,7],[39974,7],[40019,7],[40107,7],[40175,7],[40241,7],[40325,7],[40387,7],[40489,7],[40600,7],[40682,7],[48051,7],[48347,7],[48438,7],[48540,7],[48950,7],[49026,7],[49107,7],[49207,7],[49310,7],[49417,7],[49524,7]]},"89":{"position":[[1638,7],[3270,7],[6597,7],[7151,7]]},"90":{"position":[[1586,7],[6147,7],[6701,7]]},"91":{"position":[[1638,7],[3351,7],[7762,7],[8310,7]]},"92":{"position":[[2670,7],[13065,7],[13667,7],[13902,7],[15128,7],[15260,7],[30038,6]]},"105":{"position":[[3990,7],[11497,8],[12480,7],[13234,7],[13645,7],[14039,7],[15425,7],[15828,7]]},"106":{"position":[[1123,7],[13578,7],[13855,7],[14035,7]]},"108":{"position":[[1237,7],[4024,7]]},"109":{"position":[[69,7]]},"111":{"position":[[513,7],[541,7],[569,7],[597,7],[625,7],[654,7],[1425,7],[1546,7],[1667,7],[1788,7],[1936,7],[2066,7]]},"113":{"position":[[157,7],[193,7],[218,7],[239,7],[993,7],[1331,7],[1531,7],[1657,7],[1815,7]]},"124":{"position":[[1406,7],[2046,7],[8256,7],[10853,7]]},"125":{"position":[[1529,7],[5933,7],[10874,7]]},"127":{"position":[[1608,7],[5877,7]]},"128":{"position":[[612,7],[843,7],[864,6],[5024,8],[5085,7],[5133,8],[5194,7],[9356,7],[11123,7],[12463,7],[12587,8],[12788,8],[15633,8],[15992,7],[16083,6],[16401,8],[16640,6],[16808,7],[16971,7],[17245,6],[17311,7],[17431,7],[17509,7],[17591,7],[19688,7],[19952,6],[20111,8],[20399,6]]},"129":{"position":[[3192,7],[7493,7]]},"131":{"position":[[2867,7],[11752,7]]},"133":{"position":[[5437,7],[5480,7],[6081,7],[13752,7],[17886,7],[22190,7],[27204,7],[33357,7],[37472,7],[41777,7],[46029,7]]},"135":{"position":[[1691,7],[8672,7],[9761,7],[11552,7]]},"136":{"position":[[1931,7],[2194,7],[4080,7],[7986,7],[8477,7],[9148,7]]},"137":{"position":[[3462,7],[9595,7]]},"138":{"position":[[1404,7],[2126,7],[8123,7],[10048,7]]},"139":{"position":[[1889,7],[11727,7],[18618,8]]},"140":{"position":[[1857,7],[9097,7]]},"141":{"position":[[2397,7]]},"142":{"position":[[1890,7],[9657,7],[10761,7],[12614,7]]},"143":{"position":[[887,6],[1228,6]]},"144":{"position":[[406,7]]},"145":{"position":[[15815,7]]},"146":{"position":[[1766,7],[5743,7],[8910,7],[10062,7],[12131,7]]},"147":{"position":[[2767,7]]},"148":{"position":[[1589,7],[5383,7],[5960,7],[8161,7]]},"150":{"position":[[2126,7],[5441,6],[5556,6],[5671,6],[5759,6],[7166,6],[7221,7],[8753,9],[11085,7],[11987,7],[15075,7],[15428,7],[24167,7],[24497,7]]},"151":{"position":[[1969,6]]},"287":{"position":[[14,6],[155,6]]}}}],["definit",{"_index":285,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1271,11],[12294,11],[12665,11],[13048,11],[13261,11],[13581,11]]},"69":{"position":[[22725,11],[28157,11],[28875,12]]},"71":{"position":[[4328,10],[14576,10]]},"74":{"position":[[2202,10],[3190,10]]},"79":{"position":[[12005,10]]},"85":{"position":[[836,10],[3145,10]]},"86":{"position":[[755,10],[2792,10]]},"87":{"position":[[87,11],[15738,12],[15817,12],[15896,12],[15975,12]]},"88":{"position":[[47963,10]]},"94":{"position":[[895,10],[2244,10]]},"101":{"position":[[917,10],[2293,10]]},"103":{"position":[[892,10],[1569,10]]},"107":{"position":[[133,11]]},"111":{"position":[[1350,10]]},"113":{"position":[[913,10],[1589,11]]},"116":{"position":[[1099,11],[1393,11]]},"124":{"position":[[13815,10]]},"126":{"position":[[844,10]]},"128":{"position":[[15655,10],[16604,10]]},"130":{"position":[[761,10]]},"132":{"position":[[869,10]]},"134":{"position":[[954,10]]},"139":{"position":[[15599,10]]},"140":{"position":[[12380,10],[12740,10]]},"141":{"position":[[738,10],[2617,10]]},"147":{"position":[[1402,10],[3618,10],[10475,10],[10704,10],[10925,10],[11116,10]]},"150":{"position":[[3395,11],[3504,11],[3595,11],[3702,11],[3835,11],[3999,11],[4146,11],[4321,11],[4465,11],[4637,11],[4791,11],[4983,11],[5136,11],[5245,11],[7119,10]]},"151":{"position":[[1680,12],[1868,10]]}}}],["defsvl",{"_index":4347,"t":{},"d":{},"k":{},"b":{"88":{"position":[[53706,7]]}}}],["deg",{"_index":6749,"t":{},"d":{},"k":{},"b":{"134":{"position":[[11739,4]]}}}],["degre",{"_index":7847,"t":{},"d":{},"k":{},"b":{"146":{"position":[[2852,8],[2968,8],[4050,7],[14291,7],[14314,7],[24879,7]]}}}],["delay",{"_index":1108,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18371,6]]},"71":{"position":[[791,6],[1520,5],[2064,6],[7680,5],[7717,6],[7726,5],[7795,5],[7855,5],[35723,5],[35873,5],[35942,5],[36016,5],[44063,6],[44226,5],[44345,5],[44571,5],[44981,6],[45245,5],[45342,5],[45525,6],[45596,5],[45807,5],[45994,6]]},"75":{"position":[[13722,5],[13853,5],[13945,5],[21155,5],[21487,5],[21568,5],[22251,7],[24955,5],[32142,5]]},"83":{"position":[[43282,5],[43308,5],[43386,5],[43444,5],[43518,5],[43592,5],[43666,5],[43740,5],[43814,5],[43888,5],[43962,5],[44036,5],[44111,5],[44187,5],[44263,5],[44339,5],[44415,5],[44491,5],[44567,5],[44643,5],[44719,5],[44795,5],[44871,5],[44947,5],[45023,5],[45099,5],[45175,5],[45251,5],[45327,5],[45403,5],[45479,5],[45555,5],[45631,5],[45707,5],[45806,5],[45961,5],[46055,5],[46147,5],[56114,5],[56195,5],[56427,5],[56508,5],[58171,5],[58295,5]]},"92":{"position":[[14663,5]]},"105":{"position":[[2981,8],[8772,8],[9009,8]]},"128":{"position":[[5468,5],[14229,7]]},"129":{"position":[[1724,5],[2224,5],[7819,5],[8238,5],[8647,5],[15506,5],[16601,5]]},"133":{"position":[[19483,5],[24378,5],[27591,6],[30599,6],[30686,5],[39070,5],[46369,5],[49473,5]]},"135":{"position":[[3491,5],[3766,5],[4039,5],[5978,5],[8225,5],[12626,5],[12718,5],[12799,5],[15001,5],[15021,5],[15078,5],[15133,5],[15188,5],[15243,5],[15298,5],[15353,5],[15408,5],[15463,5]]},"138":{"position":[[1589,5],[3598,5],[3695,5],[3817,5],[5166,6],[6109,6],[12069,5]]},"142":{"position":[[5542,5],[5716,5],[5888,5],[6702,5],[9106,5],[14239,5],[14332,5],[14414,5],[17444,5],[17464,5],[17522,5],[17578,5],[17634,5],[17690,5],[17746,5],[17802,5],[17858,5],[17914,5]]},"144":{"position":[[10809,5]]},"292":{"position":[[1492,5]]}}}],["delay_compens",{"_index":2519,"t":{},"d":{},"k":{},"b":{"75":{"position":[[32107,18]]}}}],["delay_loop_cycl",{"_index":1824,"t":{},"d":{},"k":{},"b":{"71":{"position":[[8106,18]]}}}],["delay_m",{"_index":6692,"t":{},"d":{},"k":{},"b":{"133":{"position":[[49463,8]]},"292":{"position":[[270,8],[1371,8]]}}}],["delay_set",{"_index":3287,"t":{},"d":{},"k":{},"b":{"83":{"position":[[1234,14],[55933,14]]}}}],["delay_tim",{"_index":4513,"t":{},"d":{},"k":{},"b":{"92":{"position":[[13675,10]]}}}],["delimit",{"_index":2554,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33892,9]]}}}],["deliv",{"_index":46,"t":{},"d":{},"k":{},"b":{"0":{"position":[[793,9]]}}}],["demand",{"_index":6204,"t":{},"d":{},"k":{},"b":{"128":{"position":[[10646,7]]}}}],["demo",{"_index":6149,"t":{},"d":{},"k":{},"b":{"128":{"position":[[3262,4],[4231,4]]}}}],["demonstr",{"_index":1066,"t":{},"d":{},"k":{},"b":{"69":{"position":[[14663,12]]},"75":{"position":[[23050,14],[28779,12]]},"77":{"position":[[4332,12]]},"124":{"position":[[9793,12]]},"128":{"position":[[15909,13],[17028,12]]},"135":{"position":[[11042,12]]},"138":{"position":[[9687,12]]},"142":{"position":[[12068,12]]},"148":{"position":[[5835,12]]}}}],["densiti",{"_index":5376,"t":{},"d":{},"k":{},"b":{"107":{"position":[[81,7]]},"150":{"position":[[14089,8],[14182,7],[14877,7],[15006,9],[15097,7],[15361,9],[15493,7]]}}}],["depend",{"_index":647,"t":{},"d":{},"k":{},"b":{"68":{"position":[[1386,9]]},"69":{"position":[[1334,9],[4629,9],[31873,9]]},"71":{"position":[[7880,9],[44391,9]]},"74":{"position":[[2877,9]]},"75":{"position":[[16441,9],[21718,9],[22394,9]]},"77":{"position":[[4638,9]]},"78":{"position":[[1176,9]]},"82":{"position":[[1636,9]]},"84":{"position":[[4600,9]]},"88":{"position":[[6558,9],[16268,6],[16709,9],[23543,9],[31288,9]]},"92":{"position":[[10642,9],[11670,9]]},"115":{"position":[[161,12]]},"124":{"position":[[5044,9]]},"125":{"position":[[3852,9]]},"128":{"position":[[6532,10],[26680,9]]},"137":{"position":[[3550,9]]},"138":{"position":[[5114,9]]},"139":{"position":[[10856,9]]},"140":{"position":[[8226,9]]},"141":{"position":[[2492,9]]},"146":{"position":[[17949,9]]},"147":{"position":[[2856,9]]},"152":{"position":[[6598,12]]}}}],["depict",{"_index":6178,"t":{},"d":{},"k":{},"b":{"128":{"position":[[6580,8]]}}}],["deploy",{"_index":6275,"t":{},"d":{},"k":{},"b":{"128":{"position":[[18936,11]]}}}],["depth",{"_index":2260,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1774,5]]},"106":{"position":[[1879,5],[2467,5],[13107,6],[13129,5]]},"128":{"position":[[11792,5],[11863,5],[12159,5],[27484,5]]}}}],["depthmcu",{"_index":2303,"t":{},"d":{},"k":{},"b":{"75":{"position":[[4588,8],[5315,8],[6042,8],[6769,8],[7496,8],[8223,8],[8950,8],[9677,8]]}}}],["depthmust",{"_index":6336,"t":{},"d":{},"k":{},"b":{"128":{"position":[[27423,9]]}}}],["dequeu",{"_index":5723,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10012,8]]}}}],["deriv",{"_index":77,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1391,7]]},"71":{"position":[[1821,7]]},"88":{"position":[[16746,7]]},"135":{"position":[[5526,7]]},"138":{"position":[[5048,7]]},"139":{"position":[[7175,7]]},"140":{"position":[[6073,7]]},"150":{"position":[[6019,7]]}}}],["describ",{"_index":110,"t":{},"d":{},"k":{},"b":{"1":{"position":[[133,9]]},"71":{"position":[[4982,9],[5287,9],[6135,10]]},"88":{"position":[[16671,9]]},"128":{"position":[[21008,9],[21633,9]]},"133":{"position":[[15072,8],[19238,8],[24133,8],[30347,8],[34672,8],[38825,8],[43129,8],[48850,8]]},"145":{"position":[[10643,9]]},"151":{"position":[[194,9]]},"288":{"position":[[17,8],[123,8]]}}}],["descript",{"_index":225,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10,11]]},"68":{"position":[[1200,11]]},"69":{"position":[[1118,11]]},"70":{"position":[[1144,11]]},"71":{"position":[[1044,11]]},"72":{"position":[[10,11]]},"73":{"position":[[10,11]]},"74":{"position":[[10,11]]},"75":{"position":[[776,11]]},"76":{"position":[[1157,11]]},"77":{"position":[[493,11]]},"78":{"position":[[10,11]]},"79":{"position":[[948,11]]},"80":{"position":[[547,11]]},"81":{"position":[[10,11]]},"82":{"position":[[10,11]]},"83":{"position":[[1564,11]]},"84":{"position":[[984,11]]},"85":{"position":[[10,11]]},"86":{"position":[[10,11]]},"87":{"position":[[10,11]]},"88":{"position":[[1446,11]]},"89":{"position":[[605,11]]},"90":{"position":[[605,11]]},"91":{"position":[[610,11]]},"92":{"position":[[1433,11]]},"93":{"position":[[10,11],[268,12]]},"94":{"position":[[10,11]]},"95":{"position":[[459,11]]},"96":{"position":[[499,11]]},"97":{"position":[[303,11]]},"98":{"position":[[454,11]]},"99":{"position":[[449,11]]},"100":{"position":[[491,11]]},"101":{"position":[[10,11]]},"102":{"position":[[297,11]]},"103":{"position":[[10,11]]},"104":{"position":[[444,11]]},"105":{"position":[[1382,11]]},"106":{"position":[[697,11],[13321,11],[13427,11]]},"107":{"position":[[10,11]]},"108":{"position":[[539,11]]},"109":{"position":[[10,11]]},"110":{"position":[[10,11]]},"111":{"position":[[10,11]]},"112":{"position":[[10,11]]},"113":{"position":[[10,11]]},"114":{"position":[[10,11]]},"115":{"position":[[10,11]]},"116":{"position":[[10,11],[618,12],[639,11],[797,11]]},"117":{"position":[[10,11]]},"118":{"position":[[10,11]]},"119":{"position":[[10,11]]},"120":{"position":[[10,11]]},"121":{"position":[[10,11]]},"122":{"position":[[10,11]]},"123":{"position":[[10,11]]},"124":{"position":[[991,11]]},"125":{"position":[[621,11]]},"126":{"position":[[10,11]]},"127":{"position":[[1131,11]]},"128":{"position":[[4648,11],[27006,12],[27198,12],[27382,12],[27592,12]]},"129":{"position":[[2689,11]]},"130":{"position":[[10,11]]},"131":{"position":[[2089,11]]},"132":{"position":[[10,11]]},"133":{"position":[[4740,11],[7320,11],[8543,11]]},"134":{"position":[[10,11]]},"135":{"position":[[833,11]]},"136":{"position":[[1054,11]]},"137":{"position":[[10,11]]},"138":{"position":[[975,11]]},"139":{"position":[[1130,11]]},"140":{"position":[[1150,11]]},"141":{"position":[[10,11]]},"142":{"position":[[870,11]]},"143":{"position":[[10,11]]},"144":{"position":[[10,11]]},"145":{"position":[[10,11]]},"146":{"position":[[1235,11]]},"147":{"position":[[10,11]]},"148":{"position":[[675,11]]},"149":{"position":[[10,11]]},"150":{"position":[[1273,11]]},"151":{"position":[[451,11],[1322,11],[1763,12],[1784,11],[2065,11],[2141,11]]},"287":{"position":[[131,11]]},"288":{"position":[[96,11]]},"289":{"position":[[178,11]]},"290":{"position":[[106,11]]},"291":{"position":[[92,11]]},"292":{"position":[[347,11]]}}}],["descriptor",{"_index":3864,"t":{},"d":{},"k":{},"b":{"87":{"position":[[2915,10],[10796,10]]},"88":{"position":[[36941,11],[45469,10],[45585,10],[45699,10]]},"145":{"position":[[1252,10]]}}}],["design",{"_index":128,"t":{},"d":{},"k":{},"b":{"1":{"position":[[462,10]]},"128":{"position":[[10932,6]]},"133":{"position":[[7647,8]]},"141":{"position":[[6935,10]]},"151":{"position":[[2304,8],[2389,7]]}}}],["desir",{"_index":765,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9509,7],[18199,7]]},"69":{"position":[[13300,7],[21788,7]]},"71":{"position":[[6033,8],[7101,7]]},"75":{"position":[[12369,7],[18166,7],[20864,7],[24725,7]]},"76":{"position":[[11146,7],[11244,7],[16936,7],[17034,7]]},"80":{"position":[[1398,7],[1422,7],[3011,7],[3093,7]]},"83":{"position":[[24577,7],[24675,7],[25804,7],[27203,7],[50599,7]]},"84":{"position":[[8352,7],[8450,7],[11013,7]]},"92":{"position":[[2567,7]]},"105":{"position":[[14883,7],[14981,7],[16137,7],[31522,7],[31620,7]]},"131":{"position":[[4790,7],[5571,7]]},"135":{"position":[[3163,7],[7459,9],[11301,7],[22116,7],[22192,7],[22216,7],[22348,7]]},"136":{"position":[[3515,7],[6106,7]]},"139":{"position":[[3207,7],[8850,8],[13198,7],[14580,7]]},"140":{"position":[[2955,7],[6532,7],[10441,7],[11474,7]]},"142":{"position":[[5223,7],[8633,9],[12324,7],[23905,7],[23929,7],[24036,7]]}}}],["despit",{"_index":6262,"t":{},"d":{},"k":{},"b":{"128":{"position":[[17848,7]]}}}],["dest_addr_mod",{"_index":7785,"t":{},"d":{},"k":{},"b":{"145":{"position":[[2436,14]]}}}],["dest_siz",{"_index":3043,"t":{},"d":{},"k":{},"b":{"79":{"position":[[11836,9]]},"145":{"position":[[2836,9]]}}}],["destin",{"_index":2289,"t":{},"d":{},"k":{},"b":{"75":{"position":[[3510,11],[18332,11],[19186,12],[23552,11],[24638,11],[25843,12],[26495,12]]},"79":{"position":[[2600,11],[2718,11],[2743,11],[2827,12],[3109,11],[4455,11],[4512,11],[4749,11],[4806,11],[6214,11],[7161,11],[7242,11],[9441,11],[11864,11],[15423,11],[18247,12]]},"80":{"position":[[2901,11]]},"135":{"position":[[18402,11],[20785,11]]},"139":{"position":[[19360,11]]},"140":{"position":[[17846,11]]},"141":{"position":[[4238,11],[5678,11]]},"142":{"position":[[20394,11],[22579,11]]},"145":{"position":[[1943,11],[1964,11],[2475,11],[2854,11],[5594,11],[5971,12],[5999,11],[9638,12],[9666,11],[10841,11],[11730,11],[14901,13],[15204,11]]}}}],["destination(",{"_index":2379,"t":{},"d":{},"k":{},"b":{"75":{"position":[[18548,14]]}}}],["destination.minimum_dlc",{"_index":2440,"t":{},"d":{},"k":{},"b":{"75":{"position":[[23141,23]]}}}],["detail",{"_index":163,"t":{},"d":{},"k":{},"b":{"2":{"position":[[5,7]]},"67":{"position":[[1,8],[5867,8],[6051,7],[8897,8],[9413,8],[9668,8]]},"68":{"position":[[1191,8]]},"69":{"position":[[1109,8]]},"70":{"position":[[1135,8]]},"71":{"position":[[1035,8]]},"72":{"position":[[1,8]]},"73":{"position":[[1,8]]},"74":{"position":[[1,8]]},"75":{"position":[[767,8],[22045,7],[24281,8],[25063,8]]},"76":{"position":[[1148,8]]},"77":{"position":[[484,8]]},"78":{"position":[[1,8]]},"79":{"position":[[939,8],[5518,8]]},"80":{"position":[[538,8],[2407,7]]},"81":{"position":[[1,8]]},"82":{"position":[[1,8]]},"83":{"position":[[1555,8]]},"84":{"position":[[975,8],[3756,8]]},"85":{"position":[[1,8]]},"86":{"position":[[1,8]]},"87":{"position":[[1,8]]},"88":{"position":[[1437,8]]},"89":{"position":[[596,8]]},"90":{"position":[[596,8]]},"91":{"position":[[601,8]]},"92":{"position":[[1424,8]]},"93":{"position":[[1,8]]},"94":{"position":[[1,8]]},"95":{"position":[[450,8]]},"96":{"position":[[490,8]]},"97":{"position":[[294,8]]},"98":{"position":[[445,8]]},"99":{"position":[[440,8]]},"100":{"position":[[482,8]]},"101":{"position":[[1,8]]},"102":{"position":[[288,8]]},"103":{"position":[[1,8]]},"104":{"position":[[435,8]]},"105":{"position":[[1373,8]]},"106":{"position":[[688,8]]},"107":{"position":[[1,8]]},"108":{"position":[[530,8]]},"109":{"position":[[1,8]]},"110":{"position":[[1,8]]},"111":{"position":[[1,8]]},"112":{"position":[[1,8]]},"113":{"position":[[1,8]]},"114":{"position":[[1,8]]},"115":{"position":[[1,8]]},"116":{"position":[[1,8],[449,8],[609,8],[1213,7]]},"117":{"position":[[1,8]]},"118":{"position":[[1,8]]},"119":{"position":[[1,8]]},"120":{"position":[[1,8]]},"121":{"position":[[1,8]]},"122":{"position":[[1,8]]},"123":{"position":[[1,8]]},"124":{"position":[[982,8]]},"125":{"position":[[612,8]]},"126":{"position":[[1,8]]},"127":{"position":[[1122,8]]},"128":{"position":[[26013,8]]},"129":{"position":[[2680,8]]},"130":{"position":[[1,8]]},"131":{"position":[[2080,8]]},"132":{"position":[[1,8]]},"133":{"position":[[4731,8]]},"134":{"position":[[1,8]]},"135":{"position":[[824,8]]},"136":{"position":[[1045,8],[1914,8],[3617,7]]},"137":{"position":[[1,8]]},"138":{"position":[[966,8],[7338,7]]},"139":{"position":[[1121,8]]},"140":{"position":[[1141,8]]},"141":{"position":[[1,8]]},"142":{"position":[[861,8]]},"143":{"position":[[1,8],[9373,8]]},"144":{"position":[[1,8],[6722,7],[7768,8]]},"145":{"position":[[1,8],[2366,8],[16481,8]]},"146":{"position":[[1226,8]]},"147":{"position":[[1,8]]},"148":{"position":[[666,8],[4095,8]]},"149":{"position":[[1,8]]},"150":{"position":[[1264,8]]},"151":{"position":[[923,8],[1754,8],[2740,8]]},"152":{"position":[[91,7]]},"287":{"position":[[122,8]]},"288":{"position":[[87,8]]},"289":{"position":[[169,8]]},"290":{"position":[[97,8]]},"291":{"position":[[83,8]]},"292":{"position":[[338,8]]}}}],["detect",{"_index":2215,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8239,8]]},"79":{"position":[[1572,9],[3444,9],[3492,9],[5401,9],[5426,9],[5553,9],[10370,9],[10475,9],[13624,9],[13928,9],[14041,9],[14134,10],[14199,10],[14262,10],[14341,10],[14412,10],[14539,9],[14652,9],[14757,10],[14822,10],[14885,10],[14944,10],[15005,10],[15228,9]]},"82":{"position":[[36,9],[170,8],[6328,9]]},"83":{"position":[[3012,9]]},"86":{"position":[[7395,8],[7493,8],[7871,8]]},"87":{"position":[[18041,8]]},"88":{"position":[[2054,9],[13873,9],[14405,9],[14567,9],[14753,9],[14945,9],[40161,9],[40227,9],[46509,6],[46702,6],[46900,6]]},"89":{"position":[[993,8],[2340,9],[2408,9]]},"90":{"position":[[992,8]]},"91":{"position":[[1011,8],[2425,9],[2485,9]]},"92":{"position":[[5441,9],[6874,9],[7858,9],[8702,9],[9546,9],[10390,9],[17628,9],[18330,9],[27405,9],[27532,9],[27623,9],[27709,9]]},"106":{"position":[[9156,9],[9318,9],[9387,10],[9602,9],[9620,9],[9720,10],[9740,9],[9758,9],[9852,9],[9882,9],[9900,9],[9994,9],[10032,9],[10058,9],[10162,10],[10190,9],[10216,9],[10242,9],[10337,9],[10363,9],[10396,9],[10422,9],[10447,9],[10530,9],[10555,9],[10586,9],[10610,9],[10776,9],[10814,9],[10838,9],[10938,9],[10974,9],[10998,9],[11164,9],[11202,9],[11226,9],[11326,9],[11572,9],[11635,9],[11676,9],[11766,9],[12056,9],[12119,9],[12160,9],[12250,9],[14932,9],[15027,9],[15111,9],[15207,9],[15300,9],[15399,9],[16717,9],[16786,9],[16888,9],[16992,9],[17018,9],[17049,10],[17107,9],[17183,9],[17250,10],[17321,9],[18175,9]]},"107":{"position":[[1651,9],[1840,9],[1904,9],[9219,10],[9439,10],[9513,10],[9587,10],[9646,10]]},"108":{"position":[[3690,8]]},"113":{"position":[[3448,8],[4217,8],[5181,9],[5277,6],[6726,8],[6745,9],[6805,9],[6879,9],[6956,9],[7033,9],[7131,8],[7343,8],[7361,9],[7411,9],[7429,8],[7448,9],[7498,8],[7602,9],[7661,9],[7740,9],[7813,9],[9401,9],[9559,6],[10715,9],[10800,9]]},"115":{"position":[[471,9]]},"124":{"position":[[3919,6],[6884,9],[13132,9],[13875,9],[13961,9],[14181,9],[14261,9]]},"128":{"position":[[20993,9]]},"135":{"position":[[2664,6]]},"139":{"position":[[5812,9],[5871,8],[16416,9],[16484,6],[16563,6]]},"140":{"position":[[5686,9]]},"142":{"position":[[1780,9],[3993,6]]},"147":{"position":[[10265,6]]},"152":{"position":[[6875,9]]}}}],["detectionmcu",{"_index":4479,"t":{},"d":{},"k":{},"b":{"92":{"position":[[5400,12],[6833,12],[7817,12],[8661,12],[9505,12],[10349,12]]}}}],["determin",{"_index":757,"t":{},"d":{},"k":{},"b":{"68":{"position":[[8788,9],[13076,9],[15945,9]]},"69":{"position":[[8090,10]]},"71":{"position":[[45372,10]]},"75":{"position":[[24524,9]]},"83":{"position":[[5901,10],[6071,10]]},"89":{"position":[[4629,9]]},"90":{"position":[[4261,9]]},"91":{"position":[[5033,9]]},"92":{"position":[[14269,9]]},"105":{"position":[[5065,10],[5235,10]]},"108":{"position":[[4352,9]]},"113":{"position":[[1371,9]]},"125":{"position":[[2806,9]]},"138":{"position":[[6224,10]]},"139":{"position":[[3932,9],[25022,10]]},"140":{"position":[[3448,9],[22917,10]]},"143":{"position":[[2304,10],[2368,10],[3388,10]]},"148":{"position":[[6304,9],[12439,9]]},"150":{"position":[[12244,9]]}}}],["dev_err_check",{"_index":6698,"t":{},"d":{},"k":{},"b":{"133":{"position":[[50065,13]]}}}],["develop",{"_index":162,"t":{"2":{"position":[[54,11]]},"153":{"position":[[54,11]]}},"d":{},"k":{},"b":{"2":{"position":[[25,11]]},"68":{"position":[[5589,10]]},"71":{"position":[[6927,11]]},"75":{"position":[[24303,10]]},"80":{"position":[[4456,10]]},"88":{"position":[[21565,10]]},"128":{"position":[[12219,10],[15583,7],[18915,12]]},"135":{"position":[[7056,10]]},"136":{"position":[[7031,10]]},"142":{"position":[[8230,10]]},"148":{"position":[[4345,10]]},"151":{"position":[[519,11],[598,7],[3164,10],[3270,11],[3377,12]]},"153":{"position":[[96,11]]}}}],["deviat",{"_index":2432,"t":{},"d":{},"k":{},"b":{"75":{"position":[[21860,9]]}}}],["devic",{"_index":202,"t":{"42":{"position":[[45,6]]},"127":{"position":[[63,6]]}},"d":{},"k":{},"b":{"67":{"position":[[1318,6]]},"71":{"position":[[3193,7],[7606,7],[7662,7],[9121,7],[36261,7],[41003,7],[46988,7],[47471,7]]},"72":{"position":[[459,7]]},"74":{"position":[[2247,6],[4107,6],[4572,6],[5035,6],[5408,6],[5768,6]]},"75":{"position":[[16323,6],[30538,6]]},"78":{"position":[[2092,6],[2385,6],[2753,6],[3106,6],[3385,6],[3712,6]]},"79":{"position":[[3537,7]]},"80":{"position":[[2207,8],[2308,7],[2570,7],[3801,7]]},"83":{"position":[[47587,7]]},"84":{"position":[[1928,6]]},"85":{"position":[[1461,7],[4746,7],[5325,7],[6232,6],[6481,7],[7515,7],[7894,7]]},"86":{"position":[[1269,7],[4021,7],[4475,7],[5625,7]]},"87":{"position":[[812,6],[1164,6],[1335,6],[1517,6],[1685,7],[1745,7],[1904,6],[1991,7],[2067,7],[2119,6],[2162,6],[2554,7],[2615,7],[2778,6],[3971,6],[4761,7],[7099,7],[7442,7],[7611,6],[7896,6],[7929,6],[8244,6],[8343,6],[8568,6],[8810,6],[8886,7],[9623,6],[9674,6],[9751,7],[10570,7],[16894,6],[16957,6],[17397,6],[18625,7],[18787,6],[18906,7],[19133,6],[19655,6],[19726,7],[19846,7]]},"88":{"position":[[2101,6],[2378,6],[2451,6],[2517,6],[2576,7],[2653,7],[2665,6],[2734,6],[2801,6],[2853,6],[2975,6],[2997,6],[3048,6],[3133,6],[3152,6],[3271,7],[3695,6],[3733,6],[3789,7],[3828,7],[3862,6],[3904,7],[3936,6],[4084,7],[4264,6],[4496,6],[4546,7],[4627,6],[4781,6],[4921,6],[5044,7],[5104,7],[5161,7],[5258,6],[5341,6],[5544,6],[5567,6],[5862,6],[5956,6],[6101,6],[6342,6],[6513,6],[14284,6],[16898,8],[16976,7],[18811,6],[20425,6],[20534,6],[20847,7],[21360,7],[22036,7],[22259,6],[22700,6],[22798,6],[23160,6],[23376,7],[23408,6],[23425,7],[23560,6],[23677,6],[23912,6],[23947,6],[24096,7],[24225,7],[24563,6],[25628,6],[26735,6],[26901,6],[26964,6],[27231,6],[27261,7],[30419,6],[30517,6],[30879,6],[31073,7],[31105,6],[31122,7],[31305,6],[31422,6],[31657,6],[31692,6],[31841,7],[31955,6],[37779,7],[39263,6],[45095,6],[48431,6],[49132,7],[49232,7],[49339,7],[49446,7],[49553,7],[50220,6],[50236,6],[52214,7],[52801,7],[52990,6],[53539,6],[53618,7],[55056,6],[56812,7]]},"89":{"position":[[5943,6]]},"91":{"position":[[7114,6]]},"92":{"position":[[32290,6],[33282,6],[37095,6],[38485,6]]},"93":{"position":[[177,6],[486,7],[8600,7]]},"94":{"position":[[3280,7],[4466,7]]},"101":{"position":[[4203,7]]},"103":{"position":[[2510,7],[2889,7]]},"105":{"position":[[3581,6],[28831,7]]},"106":{"position":[[906,6],[21016,7]]},"108":{"position":[[6379,7]]},"112":{"position":[[2841,6]]},"113":{"position":[[8094,7],[8170,7],[8252,7],[11339,6],[11441,6],[13307,6],[13369,6],[13436,6],[13502,6]]},"115":{"position":[[1374,8]]},"124":{"position":[[1180,7],[1674,7],[1710,7],[1783,7],[4884,6],[5309,8],[5387,7],[5816,7],[6628,7],[6718,7],[9746,7],[9879,7],[14659,7],[15638,7],[16589,7],[18100,7],[18141,6],[18725,7]]},"125":{"position":[[986,7],[1029,7],[3692,6],[4116,8],[4194,7],[4620,7],[4830,6],[6514,6],[14462,7],[14512,6],[15524,7],[16634,7],[17508,7]]},"126":{"position":[[230,6]]},"127":{"position":[[511,7],[703,7],[926,7],[1496,7],[2439,6],[2553,6],[3683,7],[3750,7],[5993,7],[6196,7],[6726,8],[8637,7],[9267,7],[9871,7]]},"128":{"position":[[301,6],[14385,8]]},"129":{"position":[[5193,7],[5245,7]]},"131":{"position":[[863,6],[1264,6],[7015,7],[7067,7],[17769,6],[18594,6]]},"133":{"position":[[9236,7],[9288,7],[10721,6],[10818,6],[10854,6],[10993,6],[23441,7],[28697,7],[29942,7],[47399,7],[48445,7],[50098,6]]},"134":{"position":[[11957,6]]},"135":{"position":[[5730,8],[6242,7],[7200,6],[7324,7],[7581,7],[7706,6],[8172,8],[9248,7],[18087,7],[18645,6],[19196,6],[19804,6],[21032,6]]},"137":{"position":[[5016,6],[5303,6],[5570,6],[5891,6],[6324,6],[6736,6],[7177,6],[7570,6]]},"138":{"position":[[1173,7],[1688,7],[1724,7],[1797,7],[5404,8],[5482,7],[5794,7],[6381,8],[7421,7],[7516,7],[9640,7],[9778,7],[13122,7],[13766,7],[13875,7],[14744,7],[15694,7],[16711,7],[17550,7],[17591,6]]},"139":{"position":[[7556,8],[14202,6]]},"140":{"position":[[6465,8],[11132,6]]},"141":{"position":[[783,6],[3934,7],[4316,7],[4662,7],[4883,7],[5330,6],[5369,6],[5612,7],[5756,7],[10533,6],[10667,6]]},"142":{"position":[[6427,8],[7122,7],[8373,6],[8498,7],[8755,7],[9054,8],[10250,7],[19282,6],[20079,7],[21089,6]]},"143":{"position":[[65,8],[181,8],[5848,6],[7085,7],[7634,6],[7682,6],[8145,6],[8664,6],[9745,7],[11830,6],[11962,6],[12111,6],[12865,7]]},"147":{"position":[[1447,6],[4665,7],[5134,7],[5855,7],[8506,7]]},"148":{"position":[[1073,6],[1336,6],[4029,6]]},"149":{"position":[[187,6],[8482,6],[8569,6]]},"150":{"position":[[1531,6],[1561,6],[1576,6],[1921,8],[2017,7],[6254,7],[6601,6],[7633,6],[7751,6],[7938,6],[8245,6],[10433,7],[11077,7],[11857,6],[11974,6],[12132,7],[12179,6],[12234,6],[12727,6],[14849,6],[16370,6],[16431,6],[23598,6],[24528,6],[24703,6]]},"151":{"position":[[3223,8]]},"152":{"position":[[3758,6],[7720,7]]},"292":{"position":[[2,6],[359,6]]}}}],["device'",{"_index":3707,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1366,8]]},"86":{"position":[[1174,8]]}}}],["device_bitrate_mod",{"_index":4286,"t":{},"d":{},"k":{},"b":{"88":{"position":[[45173,19]]}}}],["device_count",{"_index":3889,"t":{},"d":{},"k":{},"b":{"87":{"position":[[5861,13],[9145,13]]},"88":{"position":[[795,13],[55878,12]]}}}],["device_index",{"_index":3882,"t":{},"d":{},"k":{},"b":{"87":{"position":[[5522,13],[5656,13],[7779,13],[8487,13]]},"88":{"position":[[344,13],[581,13],[45077,12],[53305,13],[54861,13]]}}}],["device_protocol",{"_index":3852,"t":{},"d":{},"k":{},"b":{"87":{"position":[[1844,15]]},"88":{"position":[[23443,16],[31140,16]]}}}],["device_size_byt",{"_index":8227,"t":{},"d":{},"k":{},"b":{"150":{"position":[[12317,18],[13028,17],[15264,17],[15558,17]]}}}],["device_statu",{"_index":3891,"t":{},"d":{},"k":{},"b":{"87":{"position":[[5952,14],[9967,14]]}}}],["device_table_cfg",{"_index":4144,"t":{},"d":{},"k":{},"b":{"88":{"position":[[23067,16],[24021,19],[30786,16],[31766,19]]}}}],["device_typ",{"_index":3874,"t":{},"d":{},"k":{},"b":{"87":{"position":[[4298,11],[4650,11]]}}}],["devicecfgset",{"_index":3879,"t":{},"d":{},"k":{},"b":{"87":{"position":[[5365,12],[7244,12]]}}}],["devicecor",{"_index":8012,"t":{},"d":{},"k":{},"b":{"148":{"position":[[4920,10]]}}}],["deviceerrorcheck",{"_index":6745,"t":{},"d":{},"k":{},"b":{"134":{"position":[[5971,16],[11799,16]]}}}],["deviceselect",{"_index":3884,"t":{},"d":{},"k":{},"b":{"87":{"position":[[5606,12],[8010,13],[8371,12]]}}}],["dht",{"_index":5673,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7335,3]]}}}],["diagnosi",{"_index":5731,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10212,9],[10285,9],[10352,9],[10417,9],[10478,9],[10538,9],[10616,9],[10689,9],[10774,9],[10862,9],[10948,9],[11023,9],[11098,9],[11175,9],[11255,9]]}}}],["diagram",{"_index":3108,"t":{},"d":{},"k":{},"b":{"80":{"position":[[938,7],[1207,7],[1466,7]]},"83":{"position":[[20350,9]]},"128":{"position":[[6602,7]]}}}],["differ",{"_index":974,"t":{},"d":{},"k":{},"b":{"69":{"position":[[3307,9]]},"71":{"position":[[10584,9],[36381,9],[37132,9]]},"75":{"position":[[22277,11],[25136,9],[38786,9]]},"78":{"position":[[150,9]]},"80":{"position":[[804,9],[2192,6]]},"88":{"position":[[16316,9],[48176,9],[48248,9]]},"89":{"position":[[1136,9],[6017,9]]},"90":{"position":[[1125,9],[5567,9]]},"91":{"position":[[1145,9],[7188,9]]},"92":{"position":[[30060,9],[30107,9],[30957,9],[33945,9],[34658,9],[35927,9],[39370,9],[40583,9]]},"108":{"position":[[5898,9]]},"113":{"position":[[2755,9],[7242,7]]},"124":{"position":[[5916,9],[9863,9]]},"128":{"position":[[6220,10],[8381,11],[14956,9],[14999,9],[15104,9]]},"135":{"position":[[7950,9]]},"136":{"position":[[1484,9]]},"138":{"position":[[5894,9],[9762,9]]},"142":{"position":[[8832,9]]},"150":{"position":[[1906,6]]}}}],["differenti",{"_index":463,"t":{},"d":{},"k":{},"b":{"67":{"position":[[9331,12]]}}}],["digit",{"_index":252,"t":{"68":{"position":[[55,7]]},"69":{"position":[[55,7]]}},"d":{},"k":{},"b":{"67":{"position":[[454,7],[492,7]]},"82":{"position":[[1399,7],[1461,7],[6676,7],[6729,7]]},"110":{"position":[[60,7],[187,7]]},"125":{"position":[[2867,7],[3017,7],[13595,7]]},"138":{"position":[[4239,7]]},"139":{"position":[[5970,7],[6008,7]]},"140":{"position":[[4770,7],[4808,7]]},"152":{"position":[[648,7],[770,7]]}}}],["digital_filter_stag",{"_index":6040,"t":{},"d":{},"k":{},"b":{"125":{"position":[[13562,21]]}}}],["dimens",{"_index":6328,"t":{},"d":{},"k":{},"b":{"128":{"position":[[26552,9]]}}}],["direct",{"_index":83,"t":{"79":{"position":[[45,6]]}},"d":{},"k":{},"b":{"0":{"position":[[1489,7]]},"70":{"position":[[2004,9]]},"71":{"position":[[34513,6],[35080,6],[35129,6]]},"76":{"position":[[1706,10],[21035,10]]},"79":{"position":[[1065,6]]},"80":{"position":[[832,6]]},"83":{"position":[[2550,10],[52499,9]]},"84":{"position":[[1529,10],[13885,10]]},"87":{"position":[[3284,6],[10544,8]]},"88":{"position":[[3108,8],[18659,6],[18755,6],[19030,6],[37385,6],[38401,6],[39051,6],[39191,6],[42836,6],[56788,6]]},"92":{"position":[[1802,9],[7239,9],[7398,9],[7531,9],[7792,9],[8083,9],[8242,9],[8375,9],[8636,9],[8927,9],[9086,9],[9219,9],[9480,9],[9771,9],[9930,9],[10063,9],[10324,9],[17399,9],[17416,9],[20583,9],[20658,9],[20726,9],[20816,9],[22980,9],[23055,9],[23123,9],[23213,9],[27077,9],[27185,9],[27252,9],[35173,9],[35582,9],[35640,9],[35719,9]]},"93":{"position":[[225,9],[5883,9],[6062,9]]},"105":{"position":[[2446,10],[33736,10]]},"123":{"position":[[52,6]]},"128":{"position":[[7842,6],[7977,6],[8109,6]]},"131":{"position":[[4835,9]]},"138":{"position":[[7367,6]]},"139":{"position":[[24276,9],[27538,9]]},"140":{"position":[[22128,9],[24487,9]]},"143":{"position":[[1237,6],[4089,10],[5707,6],[6530,10],[6558,6],[14905,6],[14927,9]]},"144":{"position":[[1655,9],[12922,9]]},"145":{"position":[[167,6]]},"150":{"position":[[1185,10],[26177,9]]},"152":{"position":[[6315,6]]}}}],["direction_valu",{"_index":4439,"t":{},"d":{},"k":{},"b":{"92":{"position":[[891,17],[34995,17]]},"93":{"position":[[2318,17],[5820,17]]}}}],["directionmcu",{"_index":4497,"t":{},"d":{},"k":{},"b":{"92":{"position":[[7197,12],[8041,12],[8885,12],[9729,12]]}}}],["directli",{"_index":2883,"t":{},"d":{},"k":{},"b":{"77":{"position":[[8365,8]]},"136":{"position":[[3831,8],[4848,8]]},"150":{"position":[[7800,8],[20588,8],[21125,8],[26277,8]]}}}],["directori",{"_index":170,"t":{"3":{"position":[[53,9]]},"4":{"position":[[58,9]]},"5":{"position":[[57,9]]},"6":{"position":[[58,9]]},"7":{"position":[[55,9]]},"8":{"position":[[56,9]]},"9":{"position":[[48,9]]},"10":{"position":[[54,9]]},"11":{"position":[[51,9]]},"12":{"position":[[48,9]]},"13":{"position":[[51,9]]},"14":{"position":[[53,9]]},"15":{"position":[[66,9]]},"16":{"position":[[54,9]]},"17":{"position":[[51,9]]},"18":{"position":[[51,9]]},"19":{"position":[[48,9]]},"20":{"position":[[57,9]]},"21":{"position":[[49,9]]},"22":{"position":[[51,9]]},"23":{"position":[[52,9]]},"24":{"position":[[49,9]]},"25":{"position":[[52,9]]},"26":{"position":[[51,9]]},"27":{"position":[[58,9]]},"28":{"position":[[48,9]]},"29":{"position":[[48,9]]},"30":{"position":[[55,9]]},"31":{"position":[[48,9]]},"32":{"position":[[57,9]]},"33":{"position":[[49,9]]},"34":{"position":[[53,9]]},"35":{"position":[[55,9]]},"36":{"position":[[54,9]]},"37":{"position":[[49,9]]},"38":{"position":[[49,9]]},"39":{"position":[[59,9]]},"40":{"position":[[56,9]]},"41":{"position":[[62,9]]},"42":{"position":[[52,9]]},"43":{"position":[[57,9]]},"44":{"position":[[48,9]]},"45":{"position":[[64,9]]},"46":{"position":[[53,9]]},"47":{"position":[[52,9]]},"48":{"position":[[48,9]]},"49":{"position":[[66,9]]},"50":{"position":[[53,9]]},"51":{"position":[[53,9]]},"52":{"position":[[52,9]]},"53":{"position":[[51,9]]},"54":{"position":[[57,9]]},"55":{"position":[[49,9]]},"56":{"position":[[53,9]]},"57":{"position":[[55,9]]},"58":{"position":[[64,9]]},"59":{"position":[[51,9]]},"60":{"position":[[52,9]]},"61":{"position":[[51,9]]},"62":{"position":[[49,9]]},"63":{"position":[[53,9]]},"64":{"position":[[56,9]]},"65":{"position":[[51,9]]},"66":{"position":[[49,9]]}},"d":{},"k":{},"b":{"24":{"position":[[3,11],[15,9]]},"33":{"position":[[3,11]]},"37":{"position":[[3,11]]},"41":{"position":[[3,11]]},"53":{"position":[[3,11]]},"60":{"position":[[3,11]]},"62":{"position":[[3,11],[15,9],[32,9]]},"66":{"position":[[3,11]]}}}],["directread",{"_index":7592,"t":{},"d":{},"k":{},"b":{"143":{"position":[[3869,10],[5882,10]]}}}],["directtransf",{"_index":7593,"t":{},"d":{},"k":{},"b":{"143":{"position":[[3967,14],[6334,14]]}}}],["directwrit",{"_index":7590,"t":{},"d":{},"k":{},"b":{"143":{"position":[[3736,11],[5138,11]]}}}],["disabl",{"_index":426,"t":{},"d":{},"k":{},"b":{"67":{"position":[[7046,7],[10604,9]]},"68":{"position":[[2773,8],[3815,8],[3867,8],[4635,8],[4654,8],[4673,7],[22560,9],[22948,7],[23068,9],[26410,9],[29449,8]]},"69":{"position":[[2238,8],[3054,8],[3098,8],[3726,8],[3745,8],[3794,7],[4079,8],[4098,8],[4117,7],[4665,8],[5088,8],[5107,8],[5126,7],[5670,8],[6020,8],[6039,8],[6053,9],[7291,8],[7400,8],[8600,7],[8829,7],[9082,7],[9335,7],[9588,7],[19609,7],[28229,9],[33326,8],[33767,9],[36046,8]]},"70":{"position":[[2144,8],[14928,7],[15473,7]]},"71":{"position":[[3122,9],[5831,10],[5886,9],[6059,9],[6568,9],[10327,8],[10779,8],[10789,8],[11115,7],[11359,8],[11453,8],[11538,8],[11624,9],[30416,8],[32991,8]]},"74":{"position":[[9126,9]]},"75":{"position":[[3797,7],[3978,8],[4006,7],[4704,8],[4714,8],[4733,7],[5431,8],[5441,8],[5460,7],[6158,8],[6168,8],[6187,7],[6885,8],[6895,8],[6914,7],[7612,8],[7622,8],[7641,7],[8339,8],[8349,8],[8368,7],[9066,8],[9076,8],[9095,7],[10890,8],[13750,7],[32172,8]]},"76":{"position":[[2003,8],[2978,8],[3125,8],[3206,8],[3262,8],[3343,8],[3413,7],[3444,7],[3520,7],[3551,7],[3838,7],[3867,7],[3940,7],[3969,7],[9984,7],[15168,9],[15385,9],[15650,8],[15671,8],[20027,8],[20169,7],[20293,9],[24712,7],[24791,9]]},"77":{"position":[[1562,8],[8804,7],[8895,9]]},"78":{"position":[[3286,7]]},"79":{"position":[[1923,8],[7316,9],[20233,7],[21317,7]]},"80":{"position":[[3136,7],[4008,8],[9422,7],[9528,8],[11814,7]]},"81":{"position":[[1157,7],[1670,7],[3258,7],[3372,7]]},"82":{"position":[[2463,7],[3700,7],[3832,7]]},"83":{"position":[[2966,7],[3107,9],[4367,8],[4479,8],[4527,8],[4547,8],[4818,8],[4828,8],[7586,8],[7605,8],[8286,8],[8305,8],[8432,8],[8451,8],[12323,7],[12496,7],[12513,7],[12646,7],[12697,7],[12714,7],[12731,7],[12784,7],[12814,7],[12868,7],[12885,7],[12902,7],[12955,7],[12985,7],[15123,8],[15133,8],[23454,7],[28379,7],[29161,7],[29275,7],[30049,9],[30152,9],[38761,7],[39966,7],[40044,7],[40113,7],[40205,7],[40315,7],[40470,7],[40569,8],[40650,9],[40725,9],[40802,9],[49444,8],[49718,9],[54753,7],[54836,9],[57758,8]]},"84":{"position":[[2438,8],[4114,7],[4131,7],[4160,9],[10064,8],[10085,8],[13235,8],[15956,9]]},"87":{"position":[[14939,7],[16184,7]]},"88":{"position":[[6936,8],[7063,8],[7124,8],[7186,8],[7236,7],[7308,8],[7359,7],[9949,8],[9959,8],[10102,8],[10112,8],[10250,8],[10260,8],[10392,8],[10402,8],[10723,8],[10733,8],[10889,8],[10899,8],[11061,8],[11071,8],[11234,8],[11244,8],[11425,8],[11435,8],[11576,8],[11586,8],[12941,8],[12951,8],[14965,8],[14975,8],[19246,9],[19358,8],[19433,9],[53047,9],[53957,9],[54619,9],[55391,9],[56419,9],[58363,9],[59349,9],[60444,9],[61312,9]]},"89":{"position":[[1273,9],[1762,8],[6837,7],[6977,8]]},"90":{"position":[[1262,9],[1710,8],[6387,7],[6527,8]]},"91":{"position":[[1283,9],[1763,8],[8004,7],[8136,8]]},"92":{"position":[[2369,7],[2792,8],[12550,8],[20753,8],[21002,7],[21207,7],[21330,7],[21710,7],[21964,7],[22148,8],[23150,8],[23399,7],[23604,7],[23727,7],[24107,7],[24361,7],[24545,8],[26836,7]]},"93":{"position":[[6134,9],[9055,7]]},"95":{"position":[[3343,8]]},"96":{"position":[[2562,8]]},"97":{"position":[[2714,8]]},"98":{"position":[[3272,8]]},"99":{"position":[[3296,8]]},"100":{"position":[[2521,8]]},"102":{"position":[[2671,8]]},"104":{"position":[[3225,8]]},"105":{"position":[[2645,9],[4110,8],[4222,8],[4241,8],[6178,8],[6200,8],[9278,8],[9297,8],[10730,8],[10740,8],[24119,9],[24600,8],[24744,9],[25020,8],[25184,9],[27755,8],[36130,7],[36213,9],[38560,8]]},"106":{"position":[[1242,8],[1357,8],[1367,8],[9345,8],[9647,8],[10085,8],[10649,8],[11037,8],[22500,8],[22524,8]]},"108":{"position":[[699,7],[793,9],[861,9],[987,9],[1090,8],[1357,8],[1916,7],[2238,8],[2672,8],[3060,7],[3552,8],[3594,8],[3646,7],[4220,8],[4937,7],[8097,8],[8222,9],[9048,8],[9130,7]]},"109":{"position":[[176,8],[4372,8],[5047,8],[6061,8],[6123,8],[6215,8],[6325,8],[6417,8],[6512,7],[6740,7],[6808,7],[6916,7],[6996,7],[7079,7],[7152,7],[7230,7],[7308,7],[7386,7],[7464,7],[7542,7],[7765,7],[7857,7]]},"124":{"position":[[2173,8],[2427,8],[2437,8],[3971,8],[14206,9]]},"125":{"position":[[1655,8],[2902,8],[3144,8],[3163,8],[3319,8],[3338,8]]},"127":{"position":[[278,8],[1734,8],[7973,8]]},"128":{"position":[[928,8],[938,8],[1058,8],[1068,8],[1080,7],[1156,9],[1203,8],[1277,8],[1381,8],[1391,8],[2352,8],[2362,8],[2443,8],[5626,8],[7355,9],[7394,8],[7769,8],[7955,8],[8199,8],[8209,8],[8281,8],[8518,8],[8528,8],[8610,8],[8719,8],[8813,8],[9691,8],[9701,8],[9831,8],[9912,8],[9922,8],[10231,8],[10472,8],[10482,8],[11059,8],[11069,8],[11471,8],[13955,7],[16987,7],[17270,7],[17470,8],[17480,8],[19023,8],[19092,8],[19166,8],[19176,8],[20290,8],[20300,8],[20809,8],[20819,8],[20879,8],[20955,8],[20965,8],[21084,8],[21094,8],[21287,8],[21297,8],[21471,8],[21590,8],[21600,8],[21728,8],[21897,8],[25278,8],[25288,8],[26081,8],[26091,8],[26833,8],[26910,8],[27666,8],[27791,8],[27911,8],[28026,8],[28144,8],[28265,8],[28382,8],[28506,8],[28645,8],[28789,8],[28799,8],[28931,8],[28941,8],[29059,8],[29069,8],[29189,8],[29327,8],[29337,8],[29457,8],[29467,8],[29579,8],[29589,8],[29704,8],[29916,8],[29935,8]]},"129":{"position":[[268,8],[3315,8],[12077,8]]},"131":{"position":[[272,8],[2990,8],[16903,8]]},"133":{"position":[[6206,8],[10175,8]]},"135":{"position":[[1811,8],[2647,7],[2656,7],[2939,7],[3028,7],[4318,7],[4335,7],[14817,7],[21341,8],[21368,9],[21391,8],[21420,8]]},"136":{"position":[[4199,8],[4954,8],[4980,7],[7331,8]]},"138":{"position":[[2251,8],[2388,8],[2398,8],[2537,8],[2547,8],[4291,7],[6807,8],[11870,8]]},"139":{"position":[[2015,8],[2129,7],[2206,7],[2223,7],[2308,7],[2317,7],[3489,8],[3508,8],[4664,8],[4698,8],[4776,7],[4793,7],[4811,7],[5942,7],[5951,7],[6374,7],[6391,7],[6409,7],[16818,7],[17091,9],[17718,9],[23038,8]]},"140":{"position":[[1982,8],[2207,8],[2217,8],[3005,8],[3024,8],[4740,8],[4750,8],[12791,8],[13089,7],[13355,9],[16386,7],[20892,8]]},"141":{"position":[[6964,7]]},"142":{"position":[[2011,8],[2143,8],[2306,8],[2316,8],[3976,7],[3985,7],[4743,7],[4832,7],[4907,8],[4928,8],[4999,7],[5016,7],[6066,7],[6083,7],[16960,7],[17226,7],[18258,7],[23036,8],[23063,9],[23086,8],[23115,8]]},"144":{"position":[[3823,7],[6189,7],[6307,8]]},"145":{"position":[[4032,7],[6715,7],[6839,7]]},"146":{"position":[[1887,8],[2630,8],[2721,8],[3265,7],[3529,7],[16412,9],[19271,8],[19618,9],[21836,8]]},"147":{"position":[[6610,8]]},"148":{"position":[[1708,8],[2519,7],[2584,10],[2726,7],[2833,7],[2945,7],[4822,10]]},"150":{"position":[[2257,8],[3332,7],[3349,7],[18658,8]]}}}],["disadvantag",{"_index":6234,"t":{},"d":{},"k":{},"b":{"128":{"position":[[14044,13]]}}}],["discard",{"_index":2313,"t":{},"d":{},"k":{},"b":{"75":{"position":[[11454,10]]},"87":{"position":[[12163,7]]}}}],["disclaim",{"_index":53,"t":{},"d":{},"k":{},"b":{"0":{"position":[[931,9]]}}}],["disconnect",{"_index":7183,"t":{},"d":{},"k":{},"b":{"139":{"position":[[8654,12]]}}}],["discontinu",{"_index":45,"t":{},"d":{},"k":{},"b":{"0":{"position":[[706,11]]}}}],["discover",{"_index":8240,"t":{},"d":{},"k":{},"b":{"150":{"position":[[13643,12]]}}}],["discrimin",{"_index":6622,"t":{},"d":{},"k":{},"b":{"133":{"position":[[7874,14]]}}}],["discuss",{"_index":6230,"t":{},"d":{},"k":{},"b":{"128":{"position":[[13479,10]]}}}],["disec",{"_index":4235,"t":{},"d":{},"k":{},"b":{"88":{"position":[[40756,5],[42973,5]]}}}],["divid",{"_index":1697,"t":{},"d":{},"k":{},"b":{"71":{"position":[[669,8],[42807,8],[43075,8],[43260,7],[43448,7]]},"76":{"position":[[5883,7],[10776,9],[16566,9]]},"82":{"position":[[6881,7],[6942,7],[7004,7],[7067,7]]},"83":{"position":[[3768,7],[4105,7],[6535,7],[15776,7],[24215,9],[38068,7],[47002,7]]},"84":{"position":[[2176,7],[8048,9]]},"105":{"position":[[3845,7],[6023,7],[6538,7],[6558,7],[6578,7],[6598,7],[6619,7],[6842,7],[6862,7],[6882,7],[6919,7],[14510,9],[22125,7],[22175,7],[22226,7],[22278,7],[22329,7],[22379,7],[22430,7],[22800,7],[22854,7],[23144,7],[23257,7],[23546,7],[23600,7],[23661,7],[23730,7],[31149,9]]},"108":{"position":[[6079,7]]},"135":{"position":[[11011,7],[11240,7],[12067,7],[12573,8]]},"138":{"position":[[3913,7],[3972,7],[4031,7],[4090,7],[4149,7]]},"142":{"position":[[12037,7],[12263,7],[13228,7],[14185,8]]},"144":{"position":[[2426,8],[13215,7],[13269,7],[13323,7],[13377,7],[13432,7],[13488,7],[13544,7],[13601,7],[13659,7],[13717,7],[13776,7]]},"149":{"position":[[1205,8],[1503,8]]},"150":{"position":[[15190,6],[15474,7]]}}}],["divis",{"_index":1854,"t":{},"d":{},"k":{},"b":{"71":{"position":[[10388,9],[42979,8]]},"106":{"position":[[14861,8],[17505,8]]},"138":{"position":[[4214,8]]},"148":{"position":[[2206,8],[4133,8]]},"149":{"position":[[6994,8]]}}}],["divisor",{"_index":2325,"t":{},"d":{},"k":{},"b":{"75":{"position":[[12469,7],[13053,7],[15218,7]]},"82":{"position":[[1420,7],[6707,7]]},"83":{"position":[[16024,7]]},"84":{"position":[[3649,7]]},"106":{"position":[[20626,7]]},"135":{"position":[[11081,8]]},"142":{"position":[[12106,8]]},"144":{"position":[[13156,8]]},"148":{"position":[[2266,8]]}}}],["divisor)manu",{"_index":2323,"t":{},"d":{},"k":{},"b":{"75":{"position":[[12432,15],[13016,15]]}}}],["dlc",{"_index":2153,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1966,6],[4804,4],[5235,4]]},"75":{"position":[[1652,3],[1845,3],[11141,3],[11227,3],[11360,3],[11374,3],[19227,3],[23066,3],[23084,3],[23280,3],[23389,3],[23427,3],[23532,3],[23772,3],[33934,3],[35011,3]]}}}],["dma",{"_index":2959,"t":{},"d":{},"k":{},"b":{"79":{"position":[[1419,3],[1532,3],[1592,3],[1645,3],[3008,3],[3167,3],[4266,3],[4341,3],[5531,4],[6567,3],[6607,3],[6883,3],[6997,3],[10772,3],[10847,3],[12603,3],[12689,3],[13603,3],[13961,3],[14020,3],[14572,3],[14631,3],[15130,3],[15207,3]]},"107":{"position":[[2234,3]]},"124":{"position":[[4503,3],[4571,3],[5983,3],[6051,3]]}}}],["dmac",{"_index":2653,"t":{},"d":{},"k":{},"b":{"76":{"position":[[6770,5]]},"79":{"position":[[975,4],[1097,6],[1680,4],[2979,4],[3591,4],[3634,4],[5492,4],[5631,4],[5911,4],[6085,4],[7578,4],[7871,4],[8183,4],[9818,4],[9992,4],[10041,4],[10357,4],[10462,4],[10575,4],[10643,4],[11630,4],[15967,4],[16217,4],[16676,4]]},"80":{"position":[[4959,4],[4994,4]]},"106":{"position":[[934,4],[1334,4],[1388,4]]},"123":{"position":[[111,4]]},"124":{"position":[[2265,4],[2309,4],[4692,4],[6172,4]]},"135":{"position":[[1903,4],[1947,4]]},"138":{"position":[[1917,4],[2343,4],[2419,4],[4978,4],[6737,4],[6762,4],[6873,4],[6933,4],[7111,5],[7313,4],[7349,4]]},"139":{"position":[[2192,4],[2238,4],[6145,4],[9094,4],[9112,4],[9532,4],[14719,4]]},"140":{"position":[[2074,4],[2113,4]]},"142":{"position":[[1497,4],[2128,4],[2173,4],[2453,4],[6935,5],[7435,4],[7496,4],[7538,4]]},"145":{"position":[[2092,5],[2122,5],[2164,5],[6129,4],[7003,4],[7533,4],[8171,4],[11274,4]]},"152":{"position":[[6372,4]]}}}],["dmac_b_ack_mode_bus_cycle_mod",{"_index":3061,"t":{},"d":{},"k":{},"b":{"79":{"position":[[13712,30]]}}}],["dmac_b_ack_mode_mask_dack_output",{"_index":3062,"t":{},"d":{},"k":{},"b":{"79":{"position":[[13761,32]]}}}],["dmac_b_ack_mode_t",{"_index":3013,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8666,17],[10111,17],[13459,17],[13511,17]]}}}],["dmac_b_callback_args_t",{"_index":3004,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8330,22],[8934,22],[8993,22],[10892,24],[11241,23],[11497,23]]}}}],["dmac_b_channel_scheduling_round_robin",{"_index":3079,"t":{},"d":{},"k":{},"b":{"79":{"position":[[16059,37]]}}}],["dmac_b_channel_scheduling_t",{"_index":3018,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8840,27],[10799,27],[15860,27],[15922,27]]}}}],["dmac_b_continuous_setting_t",{"_index":3017,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8803,27],[10658,27],[15452,27],[15514,27]]}}}],["dmac_b_continuous_setting_transfer_altern",{"_index":3077,"t":{},"d":{},"k":{},"b":{"79":{"position":[[15712,46]]}}}],["dmac_b_event_t",{"_index":3011,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8610,14],[9082,14],[12439,14],[12488,14]]}}}],["dmac_b_event_transfer_error",{"_index":3048,"t":{},"d":{},"k":{},"b":{"79":{"position":[[12633,27]]}}}],["dmac_b_extended_cfg_t",{"_index":3007,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8436,21],[9721,21],[9779,21]]}}}],["dmac_b_extended_cfg_t::activation_sourc",{"_index":3039,"t":{},"d":{},"k":{},"b":{"79":{"position":[[11047,40]]}}}],["dmac_b_extended_cfg_t::p_callback",{"_index":3040,"t":{},"d":{},"k":{},"b":{"79":{"position":[[11206,34]]}}}],["dmac_b_extended_cfg_t::p_context",{"_index":3041,"t":{},"d":{},"k":{},"b":{"79":{"position":[[11387,32]]}}}],["dmac_b_extended_info_t",{"_index":3008,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8468,22],[11531,22],[11590,22]]}}}],["dmac_b_external_detection_falling_edg",{"_index":3064,"t":{},"d":{},"k":{},"b":{"79":{"position":[[14147,38]]}}}],["dmac_b_external_detection_falling_rising_edg",{"_index":3066,"t":{},"d":{},"k":{},"b":{"79":{"position":[[14275,45]]}}}],["dmac_b_external_detection_no_detect",{"_index":3068,"t":{},"d":{},"k":{},"b":{"79":{"position":[[14354,38]]}}}],["dmac_b_external_detection_rising_edg",{"_index":3065,"t":{},"d":{},"k":{},"b":{"79":{"position":[[14212,37]]}}}],["dmac_b_external_detection_t",{"_index":3014,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8693,27],[10304,27],[13821,27],[13883,27]]}}}],["dmac_b_external_output_pin_t",{"_index":3027,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10161,28],[10232,28]]}}}],["dmac_b_instance_ctrl_t",{"_index":3006,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8403,22],[9505,22],[9564,22]]},"145":{"position":[[10483,22]]}}}],["dmac_b_internal_detection_falling_edg",{"_index":3070,"t":{},"d":{},"k":{},"b":{"79":{"position":[[14770,38]]}}}],["dmac_b_internal_detection_high_level",{"_index":3073,"t":{},"d":{},"k":{},"b":{"79":{"position":[[14957,36]]}}}],["dmac_b_internal_detection_low_level",{"_index":3072,"t":{},"d":{},"k":{},"b":{"79":{"position":[[14898,35]]}}}],["dmac_b_internal_detection_rising_edg",{"_index":3071,"t":{},"d":{},"k":{},"b":{"79":{"position":[[14835,37]]}}}],["dmac_b_internal_detection_t",{"_index":3015,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8730,27],[10409,27],[14432,27],[14494,27]]}}}],["dmac_b_max_block_transfer_length",{"_index":3010,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8554,32],[12224,32],[12294,32]]}}}],["dmac_b_max_normal_transfer_length",{"_index":3009,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8510,33],[12033,33],[12104,33]]}}}],["dmac_b_mode_select_link",{"_index":3081,"t":{},"d":{},"k":{},"b":{"79":{"position":[[16293,23]]}}}],["dmac_b_mode_select_t",{"_index":3019,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8877,20],[10611,20],[16124,20],[16179,20]]}}}],["dmac_b_register_set_setting_t",{"_index":3005,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8363,29],[9234,29],[9300,29],[11906,29]]}}}],["dmac_b_request_direction_destination_modul",{"_index":3075,"t":{},"d":{},"k":{},"b":{"79":{"position":[[15355,43]]}}}],["dmac_b_request_direction_t",{"_index":3016,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8767,26],[10514,26],[15025,26],[15086,26]]}}}],["dmac_b_transfer_size_128_byt",{"_index":3057,"t":{},"d":{},"k":{},"b":{"79":{"position":[[13378,29]]}}}],["dmac_b_transfer_size_16_byt",{"_index":3053,"t":{},"d":{},"k":{},"b":{"79":{"position":[[13162,28]]}}}],["dmac_b_transfer_size_2_byt",{"_index":3050,"t":{},"d":{},"k":{},"b":{"79":{"position":[[12952,27]]}}}],["dmac_b_transfer_size_32_byt",{"_index":3054,"t":{},"d":{},"k":{},"b":{"79":{"position":[[13234,28]]}}}],["dmac_b_transfer_size_4_byt",{"_index":3051,"t":{},"d":{},"k":{},"b":{"79":{"position":[[13022,27]]}}}],["dmac_b_transfer_size_64_byt",{"_index":3055,"t":{},"d":{},"k":{},"b":{"79":{"position":[[13306,28]]}}}],["dmac_b_transfer_size_8_byt",{"_index":3052,"t":{},"d":{},"k":{},"b":{"79":{"position":[[13092,27]]}}}],["dmac_b_transfer_size_t",{"_index":3012,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8634,22],[11724,22],[11812,22],[12712,22],[12769,22]]}}}],["dmac_int_ipl",{"_index":3023,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10027,12]]}}}],["dmac_int_irq",{"_index":3022,"t":{},"d":{},"k":{},"b":{"79":{"position":[[9978,12]]}}}],["dmac_minimal_exampl",{"_index":3000,"t":{},"d":{},"k":{},"b":{"79":{"position":[[7900,20]]}}}],["dmac_mod",{"_index":3033,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10632,9]]}}}],["dmac_trigger_event_t",{"_index":3024,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10069,20],[11026,20]]}}}],["do",{"_index":6210,"t":{},"d":{},"k":{},"b":{"128":{"position":[[11546,5]]}}}],["document",{"_index":4,"t":{"0":{"position":[[30,14]]},"1":{"position":[[30,14]]},"2":{"position":[[30,14]]},"3":{"position":[[30,14]]},"4":{"position":[[30,14]]},"5":{"position":[[30,14]]},"6":{"position":[[30,14]]},"7":{"position":[[30,14]]},"8":{"position":[[30,14]]},"9":{"position":[[30,14]]},"10":{"position":[[30,14]]},"11":{"position":[[30,14]]},"12":{"position":[[30,14]]},"13":{"position":[[30,14]]},"14":{"position":[[30,14]]},"15":{"position":[[30,14]]},"16":{"position":[[30,14]]},"17":{"position":[[30,14]]},"18":{"position":[[30,14]]},"19":{"position":[[30,14]]},"20":{"position":[[30,14]]},"21":{"position":[[30,14]]},"22":{"position":[[30,14]]},"23":{"position":[[30,14]]},"24":{"position":[[30,14]]},"25":{"position":[[30,14]]},"26":{"position":[[30,14]]},"27":{"position":[[30,14]]},"28":{"position":[[30,14]]},"29":{"position":[[30,14]]},"30":{"position":[[30,14]]},"31":{"position":[[30,14]]},"32":{"position":[[30,14]]},"33":{"position":[[30,14]]},"34":{"position":[[30,14]]},"35":{"position":[[30,14]]},"36":{"position":[[30,14]]},"37":{"position":[[30,14]]},"38":{"position":[[30,14]]},"39":{"position":[[30,14]]},"40":{"position":[[30,14]]},"41":{"position":[[30,14]]},"42":{"position":[[30,14]]},"43":{"position":[[30,14]]},"44":{"position":[[30,14]]},"45":{"position":[[30,14]]},"46":{"position":[[30,14]]},"47":{"position":[[30,14]]},"48":{"position":[[30,14]]},"49":{"position":[[30,14]]},"50":{"position":[[30,14]]},"51":{"position":[[30,14]]},"52":{"position":[[30,14]]},"53":{"position":[[30,14]]},"54":{"position":[[30,14]]},"55":{"position":[[30,14]]},"56":{"position":[[30,14]]},"57":{"position":[[30,14]]},"58":{"position":[[30,14]]},"59":{"position":[[30,14]]},"60":{"position":[[30,14]]},"61":{"position":[[30,14]]},"62":{"position":[[30,14]]},"63":{"position":[[30,14]]},"64":{"position":[[30,14]]},"65":{"position":[[30,14]]},"66":{"position":[[30,14]]},"67":{"position":[[30,14]]},"68":{"position":[[30,14]]},"69":{"position":[[30,14]]},"70":{"position":[[30,14]]},"71":{"position":[[30,14]]},"72":{"position":[[30,14]]},"73":{"position":[[30,14]]},"74":{"position":[[30,14]]},"75":{"position":[[30,14]]},"76":{"position":[[30,14]]},"77":{"position":[[30,14]]},"78":{"position":[[30,14]]},"79":{"position":[[30,14]]},"80":{"position":[[30,14]]},"81":{"position":[[30,14]]},"82":{"position":[[30,14]]},"83":{"position":[[30,14]]},"84":{"position":[[30,14]]},"85":{"position":[[30,14]]},"86":{"position":[[30,14]]},"87":{"position":[[30,14]]},"88":{"position":[[30,14]]},"89":{"position":[[30,14]]},"90":{"position":[[30,14]]},"91":{"position":[[30,14]]},"92":{"position":[[30,14]]},"93":{"position":[[30,14]]},"94":{"position":[[30,14]]},"95":{"position":[[30,14]]},"96":{"position":[[30,14]]},"97":{"position":[[30,14]]},"98":{"position":[[30,14]]},"99":{"position":[[30,14]]},"100":{"position":[[30,14]]},"101":{"position":[[30,14]]},"102":{"position":[[30,14]]},"103":{"position":[[30,14]]},"104":{"position":[[30,14]]},"105":{"position":[[30,14]]},"106":{"position":[[30,14]]},"107":{"position":[[30,14]]},"108":{"position":[[30,14]]},"109":{"position":[[30,14]]},"110":{"position":[[30,14]]},"111":{"position":[[30,14]]},"112":{"position":[[30,14]]},"113":{"position":[[30,14]]},"114":{"position":[[30,14]]},"115":{"position":[[30,14]]},"116":{"position":[[30,14]]},"117":{"position":[[30,14]]},"118":{"position":[[30,14]]},"119":{"position":[[30,14]]},"120":{"position":[[30,14]]},"121":{"position":[[30,14]]},"122":{"position":[[30,14]]},"123":{"position":[[30,14]]},"124":{"position":[[30,14]]},"125":{"position":[[30,14]]},"126":{"position":[[30,14]]},"127":{"position":[[30,14]]},"128":{"position":[[30,14]]},"129":{"position":[[30,14]]},"130":{"position":[[30,14]]},"131":{"position":[[30,14]]},"132":{"position":[[30,14]]},"133":{"position":[[30,14]]},"134":{"position":[[30,14]]},"135":{"position":[[30,14]]},"136":{"position":[[30,14]]},"137":{"position":[[30,14]]},"138":{"position":[[30,14]]},"139":{"position":[[30,14]]},"140":{"position":[[30,14]]},"141":{"position":[[30,14]]},"142":{"position":[[30,14]]},"143":{"position":[[30,14]]},"144":{"position":[[30,14]]},"145":{"position":[[30,14]]},"146":{"position":[[30,14]]},"147":{"position":[[30,14]]},"148":{"position":[[30,14]]},"149":{"position":[[30,14]]},"150":{"position":[[30,14]]},"151":{"position":[[30,14]]},"152":{"position":[[30,14]]},"153":{"position":[[30,14]]},"287":{"position":[[30,14]]},"288":{"position":[[30,14]]},"289":{"position":[[30,14]]},"290":{"position":[[30,14]]},"291":{"position":[[30,14]]},"292":{"position":[[30,14]]}},"d":{},"k":{},"b":{"0":{"position":[[117,13],[744,14],[776,13],[1119,14],[1336,13]]},"1":{"position":[[573,13]]},"67":{"position":[[989,13],[4919,13],[11964,13],[12185,13]]},"68":{"position":[[16854,13],[18006,13],[23163,13]]},"69":{"position":[[18931,13],[21488,13],[29251,13]]},"70":{"position":[[1696,13],[13676,13]]},"71":{"position":[[14587,13],[34038,13],[37786,13],[47544,13]]},"72":{"position":[[250,13]]},"74":{"position":[[818,13],[3930,13],[7577,13],[7850,13]]},"75":{"position":[[30935,13],[32388,13],[35459,13]]},"76":{"position":[[12036,13],[13553,13],[15461,13]]},"77":{"position":[[4856,13],[5144,13]]},"78":{"position":[[642,13],[1836,13],[4307,13],[4558,13]]},"79":{"position":[[8917,13],[10962,13],[12016,13],[12422,13],[16343,13]]},"80":{"position":[[8257,13],[8473,13]]},"81":{"position":[[271,13],[1202,13],[3972,13],[4223,13]]},"82":{"position":[[625,13],[1671,13],[2776,13],[5825,13],[6168,13]]},"83":{"position":[[28167,13],[31862,13],[46194,13]]},"84":{"position":[[3738,13],[8974,13],[9340,13],[9877,13]]},"85":{"position":[[689,13],[2274,13],[4058,13],[8542,13],[8814,13]]},"86":{"position":[[610,13],[2120,13],[3380,13],[6246,13],[6515,13]]},"87":{"position":[[670,13],[4474,13],[6547,13],[14415,13],[14666,13]]},"88":{"position":[[40950,13],[47974,13],[48694,13],[51395,13]]},"89":{"position":[[4359,13],[4783,13],[5008,13]]},"90":{"position":[[3991,13],[4415,13],[4640,13]]},"91":{"position":[[4759,13],[5182,13],[5665,13],[5831,13],[6186,13]]},"92":{"position":[[16891,13],[19103,13],[28541,13]]},"93":{"position":[[588,13],[2835,13],[8470,13],[8894,13]]},"94":{"position":[[762,13],[1613,13],[2654,13],[5100,13],[5351,13]]},"95":{"position":[[1236,13],[1901,13]]},"96":{"position":[[1002,13],[1532,13]]},"97":{"position":[[750,13],[1276,13]]},"98":{"position":[[1176,13],[1839,13]]},"99":{"position":[[1211,13],[1872,13]]},"100":{"position":[[979,13],[1505,13]]},"101":{"position":[[758,13],[1582,13],[2711,13],[4901,13]]},"102":{"position":[[729,13],[1251,13]]},"103":{"position":[[733,13],[1841,13],[3587,13]]},"104":{"position":[[1151,13],[1810,13]]},"105":{"position":[[17089,13],[20725,13],[27885,13]]},"106":{"position":[[14439,13],[17398,13],[20252,13]]},"107":{"position":[[543,13],[1935,13],[3504,13],[7440,13],[7691,13]]},"108":{"position":[[5192,13],[5414,13]]},"109":{"position":[[608,13],[1652,13],[2723,13],[5638,13],[5894,13]]},"111":{"position":[[705,13],[1361,13]]},"113":{"position":[[319,13],[924,13],[1864,13]]},"116":{"position":[[941,13],[1198,14],[1354,13]]},"124":{"position":[[12449,13],[13668,13],[14310,13]]},"125":{"position":[[13287,13],[14111,13]]},"126":{"position":[[525,13],[2004,13],[3972,13],[4264,13]]},"127":{"position":[[6421,13],[7031,13]]},"128":{"position":[[127,13],[255,14],[9564,13],[26744,14]]},"129":{"position":[[10208,13],[11182,13]]},"130":{"position":[[613,13],[2772,13],[6270,13],[6545,13]]},"131":{"position":[[14558,13],[15912,13]]},"132":{"position":[[721,13],[3025,13],[5412,13],[5687,13]]},"133":{"position":[[49253,13],[50873,13],[51022,13]]},"134":{"position":[[789,13],[6097,13],[12771,13],[13047,13]]},"135":{"position":[[11936,13],[14019,13],[16527,13]]},"136":{"position":[[9967,13],[10693,13],[10844,13]]},"137":{"position":[[829,13],[4767,13],[9468,13],[9875,13]]},"138":{"position":[[11647,13],[12629,13],[12777,13]]},"139":{"position":[[12912,13],[15038,13],[17801,13]]},"140":{"position":[[10159,13],[11841,13],[16422,13]]},"141":{"position":[[602,13],[3332,13],[7578,13],[7852,13]]},"142":{"position":[[13108,13],[15363,13],[18360,13]]},"143":{"position":[[752,13],[4781,13],[10597,13],[10878,13]]},"144":{"position":[[960,13],[2783,13],[4455,13],[10298,13],[10619,13]]},"145":{"position":[[639,13],[4499,13],[10255,13],[10529,13]]},"146":{"position":[[15157,13],[15902,13],[16543,13]]},"147":{"position":[[864,13],[2891,13],[4497,13],[9538,13],[9826,13]]},"148":{"position":[[9302,13],[9673,13]]},"149":{"position":[[691,13],[2024,13],[3013,13],[6246,13],[6497,13]]},"150":{"position":[[15974,13],[16219,13],[18745,13]]},"151":{"position":[[46,13],[1154,13],[1439,13],[1652,13],[2698,11],[2754,13]]},"287":{"position":[[184,13],[438,13]]},"288":{"position":[[158,13]]},"289":{"position":[[232,13],[594,13]]},"290":{"position":[[178,13]]},"291":{"position":[[150,13]]},"292":{"position":[[393,13],[1798,13]]}}}],["doesn't",{"_index":4121,"t":{},"d":{},"k":{},"b":{"88":{"position":[[20432,7]]},"89":{"position":[[2904,7]]},"90":{"position":[[2622,7]]},"91":{"position":[[2982,7]]},"92":{"position":[[32303,7],[33295,7],[37108,7],[38498,7]]},"150":{"position":[[24469,7]]}}}],["dog",{"_index":5863,"t":{},"d":{},"k":{},"b":{"115":{"position":[[1592,3]]},"149":{"position":[[42,3]]},"152":{"position":[[7918,3]]}}}],["domin",{"_index":2217,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8264,8]]},"75":{"position":[[33834,10]]}}}],["done",{"_index":1006,"t":{},"d":{},"k":{},"b":{"69":{"position":[[7456,4]]},"83":{"position":[[18483,4]]},"95":{"position":[[751,4]]},"98":{"position":[[693,4]]},"99":{"position":[[730,4]]},"104":{"position":[[672,4]]},"133":{"position":[[5812,5]]},"136":{"position":[[7455,5]]}}}],["dopi",{"_index":7653,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12012,4],[12124,4]]}}}],["dosab;",{"_index":6288,"t":{},"d":{},"k":{},"b":{"128":{"position":[[20028,8]]}}}],["doubl",{"_index":966,"t":{},"d":{},"k":{},"b":{"69":{"position":[[1971,6],[3038,6],[3202,6],[12115,6],[12138,6],[12280,6],[12435,6],[12561,6],[12608,6],[14627,6],[14696,6],[15345,6],[19333,6],[28137,6],[28211,6],[28270,6],[28337,6]]},"83":{"position":[[43140,6]]},"125":{"position":[[7857,6]]},"144":{"position":[[1853,6]]}}}],["double_trigger_mod",{"_index":1125,"t":{},"d":{},"k":{},"b":{"69":{"position":[[19312,19]]}}}],["down",{"_index":1647,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13213,5]]},"83":{"position":[[2675,5],[9347,4],[9447,4],[13182,4],[13312,4],[14170,4],[14324,4],[18507,4],[19055,4],[19469,4],[29516,5],[31103,4],[33318,5],[39016,4],[39330,4]]},"84":{"position":[[5073,4]]},"92":{"position":[[1923,5],[21046,5],[21176,5],[23443,5],[23573,5]]},"106":{"position":[[24831,4]]},"124":{"position":[[18743,4]]},"138":{"position":[[6639,5],[13780,4]]},"144":{"position":[[13039,5]]}}}],["download",{"_index":6279,"t":{},"d":{},"k":{},"b":{"128":{"position":[[19330,8],[25954,9]]}}}],["doxygen",{"_index":103,"t":{},"d":{},"k":{},"b":{"1":{"position":[[52,7],[542,7],[550,7],[618,7]]}}}],["dqt",{"_index":5666,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7000,3],[7326,4]]}}}],["drain",{"_index":4009,"t":{},"d":{},"k":{},"b":{"87":{"position":[[19237,5]]},"88":{"position":[[7749,5],[7872,5],[7931,5],[8037,5],[8503,5],[8626,5],[8685,5],[8791,5],[9254,5],[9346,5],[9419,5],[9513,5],[15262,5],[15293,5],[15380,5],[15411,5],[15896,5],[15999,5],[16102,5],[16387,5]]},"92":{"position":[[21235,6],[21294,6],[23632,6],[23691,6]]},"139":{"position":[[7884,5]]}}}],["dram(133mhz",{"_index":2077,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44803,13]]}}}],["dreq",{"_index":2969,"t":{},"d":{},"k":{},"b":{"79":{"position":[[3439,4],[3487,4],[3574,4]]},"92":{"position":[[28512,4]]}}}],["drive",{"_index":4449,"t":{},"d":{},"k":{},"b":{"92":{"position":[[1929,5],[31120,5]]},"128":{"position":[[2688,6],[2803,6]]},"131":{"position":[[3274,5],[6016,5]]},"135":{"position":[[8068,5],[9157,7]]},"142":{"position":[[8950,5],[10159,7]]}}}],["driven",{"_index":1843,"t":{},"d":{},"k":{},"b":{"71":{"position":[[9304,6]]},"74":{"position":[[235,6]]},"75":{"position":[[16986,6]]},"85":{"position":[[185,6]]},"86":{"position":[[182,6]]},"135":{"position":[[7519,6],[8121,6]]},"139":{"position":[[1343,6]]},"140":{"position":[[1364,6]]},"142":{"position":[[8693,6],[9003,6]]},"147":{"position":[[222,6]]}}}],["driver",{"_index":456,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8759,6],[12096,6],[12135,6]]},"68":{"position":[[1212,6]]},"69":{"position":[[1130,6],[2363,6],[2453,6],[10276,6]]},"71":{"position":[[10680,6]]},"74":{"position":[[113,8]]},"75":{"position":[[788,6],[3170,6],[11573,6],[11671,6],[16089,6],[20027,6]]},"76":{"position":[[1169,6],[2130,6],[2221,6],[15713,6]]},"77":{"position":[[505,6],[4498,6],[4964,6],[5096,6],[5458,6],[5512,6],[5545,6],[5960,7],[6121,6],[7037,6],[7712,6],[8543,6],[8968,6]]},"78":{"position":[[1286,6],[2004,6],[2304,6]]},"79":{"position":[[960,6],[2055,6],[2153,6],[6821,6],[7072,6],[9626,7],[20863,6]]},"80":{"position":[[559,6]]},"81":{"position":[[595,6]]},"82":{"position":[[2186,6],[5070,6]]},"83":{"position":[[1576,6],[57800,6]]},"84":{"position":[[996,6],[10127,6]]},"85":{"position":[[131,8],[1121,6],[4255,6],[7859,6]]},"86":{"position":[[129,8],[3573,6],[5591,6]]},"87":{"position":[[1539,6],[2417,6],[12151,6],[13776,6]]},"88":{"position":[[1458,6],[2355,6],[3323,6],[4108,6],[17236,6],[17593,6],[19775,6],[25372,6],[28658,6],[34177,6],[42157,7],[44963,7],[56361,6],[57088,6],[57134,6],[58307,6],[58353,6],[59293,6],[59339,6],[60249,6]]},"89":{"position":[[617,6],[1895,6],[1996,6]]},"90":{"position":[[617,6],[1843,6],[1944,6]]},"91":{"position":[[622,6],[1896,6],[1998,6]]},"92":{"position":[[1445,6],[28870,6]]},"93":{"position":[[1394,6],[3013,6]]},"94":{"position":[[139,8],[2823,6],[4438,6]]},"95":{"position":[[471,6],[3380,6]]},"96":{"position":[[511,6],[2599,6]]},"97":{"position":[[315,6],[2751,6]]},"98":{"position":[[466,6],[3309,6]]},"99":{"position":[[461,6],[3333,6]]},"100":{"position":[[503,6],[2558,6]]},"101":{"position":[[188,8],[2919,6],[4175,6]]},"102":{"position":[[309,6],[2708,6]]},"103":{"position":[[188,8],[2049,6],[2861,6]]},"104":{"position":[[456,6],[3262,6]]},"105":{"position":[[1394,6],[1861,6],[4365,6],[4456,6],[38602,6]]},"106":{"position":[[709,6],[1477,6],[1571,6],[22248,7],[22834,7],[24890,7]]},"107":{"position":[[5971,7],[6110,6]]},"108":{"position":[[551,6],[969,8]]},"109":{"position":[[3312,6]]},"110":{"position":[[89,6],[216,6],[356,6]]},"111":{"position":[[48,8]]},"112":{"position":[[107,6],[212,6],[359,6],[573,6],[778,6],[947,6],[1131,6],[1343,6],[1546,6],[1713,6],[1862,6],[1986,6],[2108,6],[2249,6],[2364,6],[2482,6],[2630,6],[2735,6]]},"114":{"position":[[76,6],[205,6],[335,6]]},"117":{"position":[[67,6],[173,6]]},"120":{"position":[[115,6]]},"121":{"position":[[81,6],[201,6]]},"122":{"position":[[82,6],[200,6],[313,6],[448,6],[587,6],[701,6]]},"123":{"position":[[96,6]]},"124":{"position":[[1003,6],[2462,6],[7219,6],[9824,6],[20455,6]]},"125":{"position":[[633,6],[1792,6],[1899,6],[8226,6]]},"126":{"position":[[1254,6],[2179,7],[2472,7]]},"127":{"position":[[1092,6],[6789,7]]},"135":{"position":[[845,6],[6434,6],[7154,6]]},"136":{"position":[[1066,6],[2539,6],[3362,6],[3445,7],[6362,6],[10521,6],[11174,6],[11801,7],[11910,6]]},"137":{"position":[[3662,6],[4935,7],[5221,7]]},"138":{"position":[[987,6],[2572,6],[6853,6],[7318,7],[7814,6],[9723,6],[19206,6]]},"139":{"position":[[1142,6],[1636,6],[8426,6],[14777,6],[18142,6],[22491,6],[23114,7]]},"140":{"position":[[1162,6],[2165,7],[2244,7],[2345,6],[2446,6],[3913,6],[4227,6],[4335,6],[10989,6],[16761,6],[20347,6],[20968,7]]},"142":{"position":[[882,6],[7313,6],[8327,6]]},"143":{"position":[[4967,6],[5059,6],[5462,6],[6222,6],[6690,6],[7025,7],[7180,6],[7553,6],[8080,6],[8600,6],[8917,6],[9160,6],[9462,6],[9679,6],[9839,6],[10003,6],[10096,6]]},"144":{"position":[[9608,6]]},"145":{"position":[[753,6],[1348,7],[2355,6],[3098,6],[16453,8],[16470,6]]},"146":{"position":[[1247,6],[1636,6],[2012,6],[2102,6]]},"147":{"position":[[120,8],[963,6],[7056,6]]},"148":{"position":[[687,6],[10666,6]]},"150":{"position":[[1285,6],[1421,6],[2384,6],[2480,6],[19079,6],[19104,6],[19872,6],[27090,6]]},"151":{"position":[[2451,7]]},"152":{"position":[[141,7]]}}}],["driver'",{"_index":4298,"t":{},"d":{},"k":{},"b":{"88":{"position":[[46376,8]]},"113":{"position":[[2508,8]]}}}],["driver/r_xspi_qspi_cfg.h",{"_index":8125,"t":{},"d":{},"k":{},"b":{"150":{"position":[[2137,25]]}}}],["drop",{"_index":4177,"t":{},"d":{},"k":{},"b":{"88":{"position":[[28902,8],[34424,8]]}}}],["dtc",{"_index":3721,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1855,3],[1964,3],[2573,3],[2627,3]]},"138":{"position":[[15105,3],[16285,3]]},"139":{"position":[[14712,3]]},"145":{"position":[[1213,4],[1295,4],[1408,4],[1537,4],[1717,4],[2085,3],[3324,4],[6259,4],[7580,4],[8037,4],[11470,3],[15591,4],[16288,3]]}}}],["dtc/dma",{"_index":7417,"t":{},"d":{},"k":{},"b":{"141":{"position":[[2062,7],[2093,7],[2198,7],[2228,7]]}}}],["dtc/dmac",{"_index":493,"t":{},"d":{},"k":{},"b":{"67":{"position":[[11091,8]]}}}],["dual",{"_index":7642,"t":{},"d":{},"k":{},"b":{"143":{"position":[[11220,4],[11305,4],[12052,4]]}}}],["due",{"_index":5482,"t":{},"d":{},"k":{},"b":{"109":{"position":[[6132,3],[6224,3],[6334,3],[6426,3]]},"124":{"position":[[14905,3]]},"125":{"position":[[14869,3]]},"133":{"position":[[28659,3],[29750,3],[29857,3],[47361,3],[48360,3]]},"138":{"position":[[13368,3]]},"148":{"position":[[2747,3],[2868,3],[2968,3],[6899,3]]}}}],["dummi",{"_index":7562,"t":{},"d":{},"k":{},"b":{"143":{"position":[[1404,5],[2016,5],[11065,5],[11126,6],[13344,5],[13422,5],[13464,5],[13506,5],[13548,5],[13590,5],[13632,5],[13674,5],[13716,5],[13758,5],[13800,5],[13844,5],[13888,5],[13932,5],[13976,5],[14020,5],[14064,5],[14108,5],[14152,5],[14196,5],[14240,5],[14284,5],[14328,5],[14372,5],[14416,5],[14460,5],[14504,5],[14548,5],[14592,5],[14636,5],[14680,5],[14724,5],[14768,5]]},"150":{"position":[[3165,5],[3267,5]]}}}],["dummy_clock",{"_index":7571,"t":{},"d":{},"k":{},"b":{"143":{"position":[[1992,12]]}}}],["dummy_cycl",{"_index":7561,"t":{},"d":{},"k":{},"b":{"143":{"position":[[1380,12]]},"150":{"position":[[9341,13],[11443,13],[12660,13],[13465,13]]}}}],["dump",{"_index":1966,"t":{},"d":{},"k":{},"b":{"71":{"position":[[29527,5],[32102,5]]}}}],["duplex",{"_index":607,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15372,9],[15422,9],[15470,9]]},"69":{"position":[[12394,9],[12861,9],[12956,9]]},"74":{"position":[[170,6]]},"135":{"position":[[1356,6]]},"139":{"position":[[1307,6],[1629,6],[4853,6]]},"140":{"position":[[1328,6],[1660,6],[3796,6],[3815,6],[12503,6],[12575,6]]},"141":{"position":[[5382,8]]},"142":{"position":[[1455,6],[4441,6],[4469,6],[4488,6],[13623,6],[15742,8],[15759,7],[15816,6]]},"147":{"position":[[186,6]]}}}],["durat",{"_index":2063,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44259,8]]},"124":{"position":[[4048,8]]}}}],["dure",{"_index":480,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10398,6]]},"68":{"position":[[13236,6]]},"69":{"position":[[11693,6],[11833,6],[12016,6]]},"71":{"position":[[1734,6],[8468,6],[11484,6],[39938,6],[40173,6]]},"74":{"position":[[348,6],[2430,6],[7099,6]]},"76":{"position":[[9447,6]]},"79":{"position":[[7381,6],[12682,6]]},"82":{"position":[[4901,6]]},"83":{"position":[[5933,6],[6103,6],[13111,6],[13175,6],[13241,6],[13305,6],[14103,6],[14317,6],[20266,6],[22978,6],[42709,6],[50549,6]]},"84":{"position":[[10963,6]]},"85":{"position":[[7275,6]]},"86":{"position":[[1791,6],[5423,6]]},"87":{"position":[[1783,6],[3751,6],[3845,6],[9681,6],[11986,6],[12196,6],[12397,6],[13071,6],[13580,6],[18443,6]]},"88":{"position":[[5310,6],[7846,6],[8011,6],[8228,6],[8419,6],[8600,6],[8765,6],[8982,6],[9173,6],[9990,6],[10143,6],[10291,6],[10433,6],[10591,6],[15504,6],[16434,6],[18925,6],[19735,6],[19827,6],[20945,6],[27642,6],[27947,6],[41172,6],[41282,6],[41385,6],[41489,6],[44718,6],[45839,6],[45942,6],[46046,6]]},"93":{"position":[[3064,6],[3101,6]]},"94":{"position":[[4282,6]]},"101":{"position":[[3993,6]]},"105":{"position":[[5097,6],[5267,6]]},"107":{"position":[[5193,6],[6962,6]]},"109":{"position":[[4209,6]]},"124":{"position":[[3946,6],[14191,6],[14271,6]]},"125":{"position":[[4767,6]]},"128":{"position":[[3555,6],[18908,6]]},"131":{"position":[[1539,6],[4965,6],[7731,6],[19398,6]]},"133":{"position":[[23398,6],[28601,6],[47303,6]]},"135":{"position":[[1557,6],[14540,6],[14612,6]]},"136":{"position":[[6881,6]]},"138":{"position":[[6975,6]]},"139":{"position":[[3874,6]]},"140":{"position":[[3390,6]]},"141":{"position":[[893,6],[6758,6]]},"142":{"position":[[16727,6],[16800,6]]},"144":{"position":[[9452,6]]},"145":{"position":[[9347,6]]},"147":{"position":[[351,6],[1742,6],[8348,6]]},"149":{"position":[[5768,6]]},"150":{"position":[[1744,6],[1818,6]]}}}],["duti",{"_index":2767,"t":{},"d":{},"k":{},"b":{"76":{"position":[[18242,4],[18288,4],[18429,4]]},"83":{"position":[[2286,4],[2390,4],[5890,4],[6060,4],[8509,4],[8609,4],[16318,4],[16344,4],[17380,4],[25037,4],[25095,4],[25261,4],[25812,4],[26200,4],[31996,4],[50395,4],[50572,4],[50611,4],[51239,4],[51306,4],[51364,4]]},"84":{"position":[[10807,4],[10986,4],[11025,4],[11804,4],[11850,4]]},"88":{"position":[[46306,4]]},"105":{"position":[[2182,4],[2286,4],[5054,4],[5224,4],[11183,4],[11291,4],[11533,4],[15355,4],[15413,4],[15581,4],[16145,4],[16371,4],[32621,4],[32671,4],[32966,4]]},"124":{"position":[[3177,4],[3244,4],[3340,4]]},"138":{"position":[[12016,4]]},"139":{"position":[[13231,5]]},"140":{"position":[[10474,5],[10616,4]]},"144":{"position":[[2467,4],[7394,4],[7679,4],[12611,4],[12711,4],[12814,4]]}}}],["duty_cycle_count",{"_index":2593,"t":{},"d":{},"k":{},"b":{"76":{"position":[[229,18],[18064,18]]},"83":{"position":[[524,18],[18131,17],[26013,17],[26259,18],[51064,18]]},"84":{"position":[[226,18],[11626,18]]},"105":{"position":[[421,18],[16200,17],[16431,18],[32446,18]]},"144":{"position":[[2448,17],[4010,18],[7244,18]]}}}],["dutycycleset",{"_index":7723,"t":{},"d":{},"k":{},"b":{"144":{"position":[[3952,12],[7118,12]]}}}],["dynam",{"_index":148,"t":{},"d":{},"k":{},"b":{"1":{"position":[[845,7],[1127,7]]},"71":{"position":[[6463,7],[6578,7]]},"87":{"position":[[1721,7],[1790,7],[2590,7],[2637,7],[3798,7],[9182,7],[9561,7],[9688,7],[15208,7],[15269,7],[16438,7],[16495,7],[16566,7],[18102,7],[19557,7],[19600,7],[20154,7]]},"88":{"position":[[1732,8],[1850,7],[2553,7],[2780,7],[4061,7],[4322,7],[4883,7],[5016,7],[5635,7],[5685,7],[6008,7],[6292,7],[6444,7],[22849,7],[23250,7],[24204,7],[24428,7],[26823,7],[30568,7],[30969,7],[35227,7],[55971,7]]},"128":{"position":[[25166,7],[25249,7],[25308,7],[25448,7],[25582,7],[25810,7]]}}}],["dynamic_address",{"_index":3851,"t":{},"d":{},"k":{},"b":{"87":{"position":[[1704,15],[2573,15],[3777,15]]},"88":{"position":[[22876,16],[23296,16],[26932,16],[30595,16],[31015,16]]}}}],["dynamicaddressassignmentstart",{"_index":3886,"t":{},"d":{},"k":{},"b":{"87":{"position":[[5707,29],[8908,29]]}}}],["e",{"_index":3515,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37083,3],[37587,3]]}}}],["e.g",{"_index":6596,"t":{},"d":{},"k":{},"b":{"133":{"position":[[5346,5]]}}}],["e2",{"_index":8313,"t":{},"d":{},"k":{},"b":{"151":{"position":[[154,2],[577,2],[3096,2],[3236,2]]},"153":{"position":[[70,2]]}}}],["each",{"_index":241,"t":{},"d":{},"k":{},"b":{"67":{"position":[[276,4],[1987,4]]},"69":{"position":[[1669,4],[5609,4],[6124,4],[8496,4],[10370,4],[11013,4]]},"71":{"position":[[10207,4]]},"75":{"position":[[1483,4],[2871,4],[4171,4],[4898,4],[5625,4],[6352,4],[7079,4],[7806,4],[8533,4],[9260,4],[14225,4],[15406,4],[16000,4],[18256,4],[22561,4],[23174,4]]},"76":{"position":[[4183,4],[6975,4]]},"79":{"position":[[6019,4],[6543,4],[12845,4],[12911,4],[12980,4],[13050,4],[13120,4],[13191,4],[13263,4],[13335,4],[13408,4]]},"80":{"position":[[2456,4]]},"83":{"position":[[4763,4],[10999,4],[14574,4],[17278,4],[20070,4],[20107,4],[27359,4]]},"84":{"position":[[3941,4]]},"87":{"position":[[19841,4]]},"88":{"position":[[2446,4],[2499,4],[5336,4],[18885,4],[48262,4]]},"89":{"position":[[1117,4],[2632,4]]},"90":{"position":[[1106,4],[2350,4]]},"91":{"position":[[1126,4],[2709,4]]},"92":{"position":[[29890,4],[29987,4],[30231,4],[35323,4],[36490,4],[38030,4],[38164,4],[39065,4],[39978,4],[40112,4]]},"93":{"position":[[1030,4]]},"95":{"position":[[1000,4],[1129,4]]},"96":{"position":[[885,4]]},"98":{"position":[[941,4],[1070,4]]},"99":{"position":[[977,4],[1106,4]]},"100":{"position":[[864,4]]},"104":{"position":[[918,4],[1047,4]]},"105":{"position":[[7934,4],[11431,4],[12062,4],[12099,4]]},"116":{"position":[[86,4],[420,4],[485,4],[1224,4]]},"128":{"position":[[276,4],[391,4],[3562,4],[3679,4],[3865,4],[4414,4],[4497,5],[5993,4],[8059,4],[9220,4],[10578,4],[11734,4],[12412,4],[19259,4]]},"131":{"position":[[7627,4]]},"133":{"position":[[8696,4]]},"135":{"position":[[3726,4],[4000,4],[4275,4],[4386,4],[5574,4],[5992,4],[6790,4],[8239,4]]},"139":{"position":[[6219,4],[7223,4],[16113,4]]},"140":{"position":[[5028,4],[6121,4]]},"142":{"position":[[5684,4],[5857,4],[6031,4],[6134,4],[6716,4],[7964,4],[9120,4]]},"144":{"position":[[216,4],[12653,4]]},"145":{"position":[[1474,4],[2240,4],[2501,4],[2600,4],[10751,4],[11600,4],[11689,4],[12465,4],[12584,4],[12646,4],[12709,4],[12772,4],[12834,4],[12897,4],[12960,4],[13024,4],[13089,4],[13154,4],[13220,4],[13285,4],[13347,4],[13410,4],[13473,4],[13537,4],[13602,4],[13667,4],[13733,4],[13957,4],[14045,4],[14133,4],[14248,4],[14363,4],[14478,4],[14556,4],[14671,4],[14749,4],[15144,4],[16409,4]]},"148":{"position":[[3457,4]]},"150":{"position":[[1642,4]]},"151":{"position":[[466,4],[947,4],[1177,4],[1563,4],[1694,4],[1882,4],[2710,4]]},"152":{"position":[[575,4]]}}}],["eas",{"_index":8311,"t":{},"d":{},"k":{},"b":{"151":{"position":[[104,4],[2632,4]]}}}],["easi",{"_index":6194,"t":{},"d":{},"k":{},"b":{"128":{"position":[[9109,4],[14557,4]]},"151":{"position":[[2324,4]]}}}],["ecc",{"_index":2563,"t":{},"d":{},"k":{},"b":{"75":{"position":[[34339,3],[34389,3]]}}}],["eco2",{"_index":6615,"t":{},"d":{},"k":{},"b":{"133":{"position":[[7403,5],[7503,5],[7607,4],[7733,4]]},"134":{"position":[[1443,4],[1449,4],[1927,4],[1933,4]]}}}],["econom",{"_index":91,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1588,8]]}}}],["edg",{"_index":700,"t":{},"d":{},"k":{},"b":{"68":{"position":[[4130,4],[4198,4],[4211,4],[4222,5],[4237,4],[4259,4],[5213,4],[17184,4],[21522,4],[21596,5],[21637,5],[21674,6]]},"76":{"position":[[3628,4],[3642,4],[3653,4],[3666,4],[3690,5],[3735,4],[3749,4],[3760,4],[3773,4],[3797,5],[13667,4],[13768,5],[13834,5],[13894,5]]},"79":{"position":[[14194,4],[14257,4],[14336,4],[14817,4],[14880,4]]},"82":{"position":[[6384,4],[6432,4],[6481,5]]},"83":{"position":[[1197,5],[9733,4],[9743,4],[9850,4],[9860,4],[10018,4],[10028,4],[17452,4],[17467,5],[18857,4],[18886,4],[18975,5],[19092,4],[21397,5],[33519,5],[33590,5],[33659,5],[33730,5],[33799,5],[33870,5],[33939,5],[34010,5],[35422,5],[35493,5],[35562,5],[35633,5],[35702,5],[35773,5],[35842,5],[35913,5],[46080,5],[46173,5],[55834,5]]},"88":{"position":[[16208,5]]},"89":{"position":[[1345,5],[1359,5],[1370,6],[2230,5],[2273,4]]},"90":{"position":[[1335,5],[1351,5],[2124,4]]},"91":{"position":[[1355,5],[1369,5],[2366,4],[6007,4],[6057,4]]},"92":{"position":[[2162,4],[5395,4],[5436,4],[6828,4],[6869,4],[7812,4],[7853,4],[8656,4],[8697,4],[9500,4],[9541,4],[10344,4],[10385,4],[11255,6],[12360,6],[17623,4],[18325,4],[27400,4],[27518,4],[27609,4],[27694,5]]},"105":{"position":[[6089,4],[6138,5],[7241,4],[7272,4],[7300,5],[7627,4],[7658,4],[7686,5],[11605,4],[11620,5],[19932,4],[21569,5],[21639,5],[21703,6],[21812,4],[21875,5],[21924,5],[21967,6]]},"106":{"position":[[1639,4],[1680,4]]},"107":{"position":[[8849,4],[8905,4],[8954,4]]},"125":{"position":[[5151,4]]},"135":{"position":[[1126,4],[1189,4],[2507,4]]},"139":{"position":[[5831,4],[5856,4],[5891,4],[14431,5],[16411,4]]},"141":{"position":[[1792,5],[10030,5],[10059,4],[10115,5],[10143,4]]},"142":{"position":[[1210,4],[1273,4],[3671,5],[3700,4],[3728,5],[3756,4],[3783,5],[3812,4],[3834,4]]}}}],["edge_detect",{"_index":4549,"t":{},"d":{},"k":{},"b":{"92":{"position":[[17607,14],[18309,14]]}}}],["editor",{"_index":763,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9435,6]]},"69":{"position":[[13226,6]]},"71":{"position":[[1898,6],[3377,7],[5878,7],[9601,7]]},"75":{"position":[[16670,7],[17776,6],[20896,7],[21027,6],[22028,7],[23348,6]]},"76":{"position":[[5527,6],[5807,6]]},"79":{"position":[[5760,6]]},"80":{"position":[[2779,7],[5275,7]]},"83":{"position":[[15366,6],[15700,6]]},"84":{"position":[[4417,6]]},"105":{"position":[[10958,7]]},"106":{"position":[[12637,7]]},"124":{"position":[[6296,6]]},"125":{"position":[[7506,6]]},"138":{"position":[[6014,6]]},"142":{"position":[[6322,7]]},"148":{"position":[[3644,6]]},"150":{"position":[[6121,6]]},"151":{"position":[[1402,7]]}}}],["eei",{"_index":4075,"t":{},"d":{},"k":{},"b":{"88":{"position":[[13769,3]]}}}],["eei_ipl",{"_index":4320,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47907,7]]}}}],["effect",{"_index":1034,"t":{},"d":{},"k":{},"b":{"69":{"position":[[11227,14]]},"71":{"position":[[6556,11]]},"75":{"position":[[24196,11]]},"76":{"position":[[6194,9]]},"84":{"position":[[4855,9]]},"128":{"position":[[3634,6],[5728,6],[6524,7],[6994,11],[17067,6]]},"148":{"position":[[10972,7]]}}}],["effici",{"_index":6139,"t":{},"d":{},"k":{},"b":{"128":{"position":[[1751,9],[2198,9],[3242,10]]},"151":{"position":[[690,12],[2441,9],[3133,10]]}}}],["effort",{"_index":2419,"t":{},"d":{},"k":{},"b":{"75":{"position":[[21047,6]]}}}],["eidr",{"_index":4530,"t":{},"d":{},"k":{},"b":{"92":{"position":[[16171,4]]}}}],["eight",{"_index":7925,"t":{},"d":{},"k":{},"b":{"146":{"position":[[16213,5]]}}}],["elaps",{"_index":2634,"t":{},"d":{},"k":{},"b":{"76":{"position":[[4210,8]]},"83":{"position":[[11026,7],[46742,8]]},"84":{"position":[[3968,8]]},"105":{"position":[[7961,7]]},"144":{"position":[[12101,8],[12157,8]]}}}],["elc",{"_index":316,"t":{"81":{"position":[[45,3]]}},"d":{},"k":{},"b":{"67":{"position":[[2068,3],[2116,3],[13392,4]]},"69":{"position":[[1563,6],[3258,3],[3986,3],[4022,3],[9765,3],[9988,3],[10082,3],[11503,3],[15489,3],[27947,3],[28375,3],[31976,3],[33389,4],[34308,3]]},"80":{"position":[[574,3],[638,3],[690,5],[1231,3],[1521,4],[1638,3],[1664,3],[1732,3],[2368,3],[3230,3],[3397,3],[3476,3],[3717,3],[4527,4],[4572,3],[4619,3],[8367,3],[8965,3],[9430,3],[9507,3]]},"81":{"position":[[591,3],[621,3],[4070,3],[4150,3]]},"83":{"position":[[2141,3],[2747,3],[3286,3],[18547,3],[19384,3],[19482,3],[19521,3],[19594,3],[19649,3],[34915,3],[34970,3],[35025,3],[35080,3],[35135,3],[35190,3],[35245,3],[35300,3],[36822,3],[36885,3],[36948,3],[37011,3],[37074,3],[37137,3],[37200,3],[37263,3],[37326,3],[37389,3],[37452,3],[37515,3],[37578,3],[37641,3],[37704,3],[37767,3]]},"92":{"position":[[1698,4],[3246,3],[3357,3],[3482,3],[3722,3],[3833,3],[3958,3],[4198,3],[4303,3],[4408,3],[4513,3],[4618,3],[4723,3],[4828,3],[4933,3],[5038,3],[5147,3],[5246,3],[5370,3],[5490,3],[5586,3],[5631,3],[5736,3],[5841,3],[5946,3],[6051,3],[6156,3],[6261,3],[6366,3],[6471,3],[6580,3],[6679,3],[6803,3],[6923,3],[7019,3],[7064,3],[7162,3],[7269,3],[7371,3],[7504,3],[7766,3],[7908,3],[8006,3],[8113,3],[8215,3],[8348,3],[8610,3],[8752,3],[8850,3],[8957,3],[9059,3],[9192,3],[9454,3],[9596,3],[9694,3],[9801,3],[9903,3],[10036,3],[10298,3],[10638,3],[10763,3],[11218,3],[11666,3],[11821,3],[12323,3],[14748,3],[14800,3],[14816,3],[17277,3],[17836,3],[18182,3],[18751,3],[25520,3],[26291,3],[26791,3],[27128,3],[27456,3],[27943,3],[31883,4],[32219,3],[32319,4],[33001,3],[33311,4],[36689,4],[36938,3],[37124,4],[37907,3],[37987,3],[38514,4]]},"115":{"position":[[373,3]]},"121":{"position":[[96,3],[160,3]]},"146":{"position":[[1602,3],[2452,3],[2511,3],[2554,3],[18052,3],[19334,4],[20287,3]]},"152":{"position":[[5358,3],[5422,3],[6784,3]]}}}],["elc_api_t",{"_index":3206,"t":{},"d":{},"k":{},"b":{"81":{"position":[[110,9],[518,9],[564,9],[3884,9]]}}}],["elc_api_t::clos",{"_index":3196,"t":{},"d":{},"k":{},"b":{"80":{"position":[[9454,16]]},"81":{"position":[[1608,17]]}}}],["elc_api_t::dis",{"_index":3205,"t":{},"d":{},"k":{},"b":{"80":{"position":[[11877,18]]},"81":{"position":[[3308,19]]}}}],["elc_api_t::en",{"_index":3204,"t":{},"d":{},"k":{},"b":{"80":{"position":[[11566,17]]},"81":{"position":[[3040,18]]}}}],["elc_api_t::linkbreak",{"_index":3201,"t":{},"d":{},"k":{},"b":{"80":{"position":[[11174,20]]},"81":{"position":[[2701,21]]}}}],["elc_api_t::linkset",{"_index":3200,"t":{},"d":{},"k":{},"b":{"80":{"position":[[10664,18]]},"81":{"position":[[2294,19]]}}}],["elc_api_t::open",{"_index":3195,"t":{},"d":{},"k":{},"b":{"80":{"position":[[8840,15]]},"81":{"position":[[1266,16]]}}}],["elc_api_t::softwareeventgener",{"_index":3198,"t":{},"d":{},"k":{},"b":{"80":{"position":[[10031,32]]},"81":{"position":[[1903,33]]}}}],["elc_basic_exampl",{"_index":3189,"t":{},"d":{},"k":{},"b":{"80":{"position":[[7712,17]]}}}],["elc_cfg_t",{"_index":3095,"t":{},"d":{},"k":{},"b":{"80":{"position":[[61,9],[4346,9],[5298,9],[8664,9]]},"81":{"position":[[90,9],[288,9],[334,9],[740,9],[1310,9],[3797,9]]},"92":{"position":[[14967,9]]}}}],["elc_ctrl_t",{"_index":3094,"t":{},"d":{},"k":{},"b":{"80":{"position":[[34,11],[115,11],[182,11],[270,11],[374,11],[455,11],[508,11],[8576,10],[9348,10],[9761,10],[10346,10],[10945,10],[11439,10],[11749,10]]},"81":{"position":[[171,10],[712,12],[790,12],[854,12],[936,12],[1037,12],[1115,12],[1165,12],[1283,11],[1626,11],[1937,11],[2314,11],[2723,11],[3059,11],[3328,11],[3721,10],[3989,10],[4042,10]]}}}],["elc_data.cg_elc",{"_index":3136,"t":{},"d":{},"k":{},"b":{"80":{"position":[[4382,15]]}}}],["elc_ev",{"_index":319,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2093,9]]}}}],["elc_event_gpt_u0_gpt_elcovf_0",{"_index":3166,"t":{},"d":{},"k":{},"b":{"80":{"position":[[6521,30],[8139,31]]}}}],["elc_event_non",{"_index":3145,"t":{},"d":{},"k":{},"b":{"80":{"position":[[5421,15],[5476,15],[5531,15],[5586,15],[5641,15],[5696,15],[5751,15],[5806,15],[5861,15],[5916,15],[5971,15],[6026,15],[6081,15],[6136,15],[6191,15],[6246,15],[6301,15],[6356,15],[6411,15],[6466,15],[6591,15],[6646,15],[6701,15],[6756,15],[6811,15],[6866,15],[6921,15],[6976,15],[7031,15],[7086,15],[7141,15],[7196,15],[7251,15],[7306,15],[7361,15],[7416,15],[7471,15],[7526,15],[7581,15],[7636,15]]}}}],["elc_event_none};void",{"_index":3188,"t":{},"d":{},"k":{},"b":{"80":{"position":[[7691,20]]}}}],["elc_event_sw_event_0",{"_index":3143,"t":{},"d":{},"k":{},"b":{"80":{"position":[[5360,21]]},"92":{"position":[[15473,22]]}}}],["elc_event_t",{"_index":318,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2080,11]]},"72":{"position":[[217,11],[267,11],[313,11]]},"80":{"position":[[326,11],[10525,11]]},"81":{"position":[[435,11],[993,11],[2370,11]]}}}],["elc_instance_ctrl_t",{"_index":3193,"t":{},"d":{},"k":{},"b":{"80":{"position":[[8219,19],[8274,19],[8330,19]]},"81":{"position":[[4180,19]]},"92":{"position":[[14929,19]]}}}],["elc_instance_t",{"_index":3207,"t":{},"d":{},"k":{},"b":{"81":{"position":[[130,14],[3532,14],[3583,14]]}}}],["elc_peripher",{"_index":313,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2022,14]]}}}],["elc_peripheral_adc0",{"_index":3192,"t":{},"d":{},"k":{},"b":{"80":{"position":[[8118,20]]}}}],["elc_peripheral_singleport0",{"_index":4526,"t":{},"d":{},"k":{},"b":{"92":{"position":[[15445,27]]}}}],["elc_peripheral_t",{"_index":312,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2004,16]]},"80":{"position":[[297,16],[401,16],[10434,16],[11033,16]]},"81":{"position":[[205,16],[964,16],[1065,16],[2341,16],[2750,16],[4240,16],[4291,16]]},"92":{"position":[[15426,18]]}}}],["elc_software_event_0",{"_index":4528,"t":{},"d":{},"k":{},"b":{"92":{"position":[[16002,22]]}}}],["elc_software_event_1",{"_index":3217,"t":{},"d":{},"k":{},"b":{"81":{"position":[[4583,20]]}}}],["elc_software_event_t",{"_index":3098,"t":{},"d":{},"k":{},"b":{"80":{"position":[[209,20],[9849,20]]},"81":{"position":[[231,20],[882,20],[1964,20],[4415,20],[4470,20]]}}}],["elcc[1:0",{"_index":1259,"t":{},"d":{},"k":{},"b":{"69":{"position":[[28964,9],[29047,9],[29136,9],[29219,9]]}}}],["electron",{"_index":9,"t":{},"d":{},"k":{},"b":{"0":{"position":[[31,11],[155,11],[226,11]]}}}],["element",{"_index":767,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9548,8]]},"69":{"position":[[13337,8]]},"74":{"position":[[4325,8]]},"75":{"position":[[15411,7],[15437,7]]},"82":{"position":[[3237,8]]},"85":{"position":[[4429,8]]},"86":{"position":[[3727,8]]},"87":{"position":[[6837,8],[6910,8]]},"94":{"position":[[3023,8]]},"101":{"position":[[3107,8]]},"103":{"position":[[2237,8]]},"107":{"position":[[3983,8],[4056,8]]},"109":{"position":[[3015,8],[3088,8]]},"116":{"position":[[1157,8]]},"130":{"position":[[947,7],[1019,7]]},"132":{"position":[[1187,7],[1252,7]]},"144":{"position":[[4790,8],[4863,8]]},"145":{"position":[[3152,8],[4809,8],[4882,8],[5291,8]]},"147":{"position":[[4902,8]]}}}],["elf",{"_index":1763,"t":{},"d":{},"k":{},"b":{"71":{"position":[[4198,3]]}}}],["elif",{"_index":6101,"t":{},"d":{},"k":{},"b":{"127":{"position":[[4839,5],[5537,5]]},"129":{"position":[[6464,5],[7162,5]]},"131":{"position":[[10723,5],[11421,5],[12294,6]]},"133":{"position":[[12165,5],[12863,5],[16299,5],[16997,5],[20603,5],[21301,5],[25617,5],[26315,5],[31770,5],[32468,5],[35885,5],[36583,5],[40190,5],[40888,5],[44442,5],[45140,5]]}}}],["else#endif",{"_index":6509,"t":{},"d":{},"k":{},"b":{"131":{"position":[[13042,12]]}}}],["embed",{"_index":8323,"t":{},"d":{},"k":{},"b":{"151":{"position":[[2373,8],[2489,8]]}}}],["emclk",{"_index":1642,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12877,6],[17894,5]]}}}],["emit",{"_index":1755,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3720,7]]}}}],["emmc",{"_index":5759,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11334,4]]}}}],["empt",{"_index":6184,"t":{},"d":{},"k":{},"b":{"128":{"position":[[7611,7]]}}}],["empti",{"_index":2134,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1104,5],[8567,6]]},"75":{"position":[[17398,7],[38345,6]]},"88":{"position":[[47367,5]]},"113":{"position":[[9520,6],[9994,6],[13827,6]]},"124":{"position":[[5690,5]]},"125":{"position":[[4494,5]]},"135":{"position":[[5095,5],[5164,5],[5212,5],[6349,5],[6467,5],[15864,6]]},"138":{"position":[[5668,5]]},"139":{"position":[[1462,6],[6784,5]]},"140":{"position":[[1483,6],[5911,5]]},"141":{"position":[[1339,5]]},"142":{"position":[[3179,5],[7228,5],[7346,5]]}}}],["en4b",{"_index":7667,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12796,4]]},"150":{"position":[[3104,4]]}}}],["enabl",{"_index":415,"t":{"108":{"position":[[57,6]]}},"d":{},"k":{},"b":{"67":{"position":[[6242,6],[6634,6]]},"68":{"position":[[2764,7],[4627,6],[4645,7],[4663,6],[8692,7],[8722,8],[10043,6],[10248,6],[12737,6],[13199,6],[13352,6],[15604,6],[16068,6],[16136,7],[22938,6],[23139,8],[23786,8],[25438,8]]},"69":{"position":[[2229,7],[3064,7],[3073,7],[3112,8],[3717,7],[3736,7],[3769,6],[4071,6],[4089,7],[4107,6],[4677,7],[5080,6],[5098,7],[5116,6],[5729,8],[6030,7],[6146,8],[6565,7],[12159,7],[12505,8],[12629,7],[13916,6],[14112,6],[15338,6],[15461,6],[16331,6],[16361,6],[19584,6],[21126,7],[28288,8],[28355,7],[29681,8],[30063,8],[31833,7],[32424,8]]},"70":{"position":[[2211,7],[14592,6],[15263,6],[18115,7]]},"71":{"position":[[3012,7],[6990,8],[7415,8],[10406,6],[10770,7],[10803,8],[11369,7],[11378,7],[11529,7],[11548,7],[15278,7],[16173,7],[17068,7],[17971,7],[18866,7],[19761,7],[20660,7],[21559,7],[22454,7],[23353,7],[24248,7],[25147,7],[26046,7],[26941,7],[27840,7],[28695,7],[34239,6],[34806,6]]},"75":{"position":[[3961,6],[3969,7],[3988,7],[3996,6],[4687,6],[4695,7],[4723,6],[5414,6],[5422,7],[5450,6],[6141,6],[6149,7],[6177,6],[6868,6],[6876,7],[6904,6],[7595,6],[7603,7],[7631,6],[8322,6],[8330,7],[8358,6],[9049,6],[9057,7],[9085,6],[10881,7],[11175,7],[11302,8],[13742,6],[13759,6],[13771,7],[13964,7],[14618,7],[14673,7],[14729,7],[17963,8],[19243,7],[20465,7],[21199,7],[21478,8],[21809,8],[23100,7],[23303,8],[29539,7],[31937,6],[31996,6],[32161,7],[35256,8]]},"76":{"position":[[1994,7],[2549,7],[3398,6],[3429,6],[3474,7],[3505,6],[3536,6],[3581,7],[3824,6],[3853,6],[3897,7],[3926,6],[3955,6],[3999,7],[9865,6],[11572,7],[12547,6],[12617,6],[12856,6],[12923,6],[15222,8],[15437,8],[17362,7],[19463,7],[19592,6],[19755,8],[23794,7],[24216,6],[24294,8]]},"77":{"position":[[1553,7],[4542,6]]},"78":{"position":[[3009,6]]},"79":{"position":[[1914,7],[5411,8],[5436,8],[8172,6],[16944,7],[17582,8],[19773,6]]},"80":{"position":[[2425,6],[3999,7],[4606,8],[11504,6]]},"81":{"position":[[1108,6],[2991,6],[3103,6]]},"82":{"position":[[2405,6],[3298,6],[3428,6]]},"83":{"position":[[3094,8],[4358,7],[4489,7],[4498,7],[4536,7],[4613,8],[4650,7],[4699,7],[4801,6],[4809,7],[5737,7],[7596,7],[8296,7],[8424,6],[8442,7],[8460,6],[8677,7],[8705,6],[8908,7],[8936,6],[15114,7],[15160,6],[18722,6],[19813,8],[23336,6],[26855,6],[28355,6],[29947,8],[47196,8],[47217,7],[49000,7],[49174,8],[54256,6],[54338,8]]},"84":{"position":[[2429,7],[2955,7],[4123,6],[4148,8],[12861,7],[16302,7]]},"87":{"position":[[5316,6],[6972,6],[7084,6],[14882,6],[16130,6]]},"88":{"position":[[6927,7],[7054,7],[7073,7],[7177,7],[7196,7],[7299,7],[7318,7],[9940,7],[9968,6],[10093,7],[10121,6],[10241,7],[10269,6],[10383,7],[10411,6],[10714,7],[10745,8],[10880,7],[10911,8],[11052,7],[11083,8],[11225,7],[11256,8],[11416,7],[11567,7],[12932,7],[14956,7],[14987,8],[24081,6],[27378,6],[31826,6],[41150,6],[41260,6],[41363,6],[41467,6],[42915,6],[43052,6],[43112,6],[43925,6],[52199,6],[52425,8],[57349,7],[57402,7]]},"89":{"position":[[1260,8],[1753,7],[3057,8],[4081,6],[6286,6],[6424,7]]},"90":{"position":[[1249,8],[1701,7],[2775,8],[3713,6],[5836,6],[5974,7]]},"91":{"position":[[1270,8],[1754,7],[3136,8],[4351,6],[7459,6],[7589,7]]},"92":{"position":[[1848,8],[2360,6],[2783,7],[5233,10],[6666,10],[7149,10],[7993,10],[8837,10],[9681,10],[12595,7],[20843,7],[21079,7],[21144,7],[21266,7],[21399,7],[22199,7],[22891,7],[23240,7],[23476,7],[23541,7],[23663,7],[23796,7],[24596,7],[25288,7],[26908,6],[31902,7],[32870,7],[36708,7],[37773,7]]},"93":{"position":[[6107,8],[9107,6]]},"105":{"position":[[2632,8],[4101,7],[4232,7],[4901,7],[6272,6],[6287,7],[6303,7],[6319,7],[6335,7],[6692,6],[6707,7],[6723,7],[6750,6],[9270,6],[9288,7],[9324,6],[10713,6],[10721,7],[10767,6],[24612,7],[24822,8],[24899,8],[25032,7],[25268,8],[25351,8],[25434,8],[25517,8],[26451,8],[26529,8],[27862,7],[35642,6],[35724,8]]},"106":{"position":[[1233,7],[1348,7],[9328,6],[9336,7],[9355,7],[9630,6],[9638,7],[10068,6],[10076,7],[10632,6],[10640,7],[11020,6],[11028,7],[14942,7],[15037,7],[15133,7],[15229,7],[15310,7],[21709,7],[21732,7]]},"108":{"position":[[1348,7],[1490,6],[1594,6],[1894,6],[6228,8],[6249,7]]},"109":{"position":[[52,6],[125,6],[259,6],[2109,6]]},"113":{"position":[[2599,7],[3048,8],[5123,8],[5483,8],[9445,8],[9613,7],[13459,8],[13513,8]]},"115":{"position":[[1174,6]]},"122":{"position":[[562,6]]},"124":{"position":[[2164,7],[2300,8],[2418,7],[2449,8],[3785,7],[3962,7],[3981,7],[5774,7],[14286,8]]},"125":{"position":[[1646,7],[3154,7],[3329,7],[4578,7],[5222,8],[5970,7],[6917,7],[7805,8]]},"127":{"position":[[1725,7],[3446,8]]},"128":{"position":[[919,7],[950,6],[1013,8],[1049,7],[1194,7],[1213,7],[1228,7],[1372,7],[1968,8],[2343,7],[2396,7],[5617,7],[5636,7],[5863,7],[6255,7],[7760,7],[7779,7],[7821,7],[8190,7],[8225,7],[8509,7],[8544,7],[8710,7],[8729,7],[8744,7],[9682,7],[9717,7],[9903,7],[9954,8],[10463,7],[10518,7],[11019,6],[11050,7],[11438,6],[12198,8],[17461,7],[17623,7],[19014,7],[19033,7],[19048,7],[19157,7],[19918,7],[20281,7],[20365,7],[20800,7],[20835,7],[20946,7],[21075,7],[21110,7],[21278,7],[21367,7],[21581,7],[21719,7],[21738,7],[21778,7],[22091,7],[22276,8],[22446,8],[23748,8],[25138,8],[25269,7],[25330,7],[25832,7],[26072,7],[26227,7],[26462,8],[26824,7],[26843,7],[26858,7],[27657,7],[27676,7],[27782,7],[27801,7],[27902,7],[27921,7],[28017,7],[28036,7],[28135,7],[28154,7],[28256,7],[28275,7],[28373,7],[28392,7],[28497,7],[28516,7],[28636,7],[28655,7],[28780,7],[28922,7],[29050,7],[29180,7],[29199,7],[29318,7],[29448,7],[29570,7],[29695,7],[29714,7],[29926,7]]},"129":{"position":[[3306,7]]},"131":{"position":[[663,8],[1500,8],[1648,7],[2981,7],[17569,8],[19359,8],[19507,7]]},"133":{"position":[[6197,7],[9875,7]]},"135":{"position":[[1802,7],[1938,8],[2639,6],[3079,8],[4327,6],[14875,6]]},"136":{"position":[[2333,7],[2455,8],[4190,7],[4945,7],[4964,7],[4972,7],[6133,8],[15687,6]]},"137":{"position":[[1820,6],[1895,6],[1971,6],[2045,6],[2117,6],[2192,6],[2271,6],[6623,6]]},"138":{"position":[[2242,7],[2379,7],[2410,8],[2528,7],[2559,8],[4283,6],[4300,6],[4307,8],[4960,7],[4983,8],[5752,7],[6728,8],[11860,6]]},"139":{"position":[[2006,7],[2121,6],[2138,6],[2145,6],[2215,6],[2231,6],[2300,6],[2325,6],[3499,7],[3517,8],[4785,6],[4801,6],[5934,6],[5959,6],[6383,6],[6399,6],[7932,6],[8894,7],[9540,7],[13458,6],[13466,6],[14038,6],[14046,6],[14784,6],[16885,6],[17134,8],[17777,8],[18200,7],[18238,7],[18582,7],[23807,7],[27079,7]]},"140":{"position":[[1973,7],[2173,7],[2198,7],[2226,6],[2252,7],[3015,7],[3033,8],[3920,6],[3978,8],[4234,6],[4342,6],[4731,7],[4759,6],[6768,7],[10855,6],[10863,6],[10996,6],[12424,7],[12484,7],[12556,7],[12844,7],[13155,6],[13396,8],[16819,7],[16857,7],[21659,7],[24028,7]]},"142":{"position":[[1750,7],[2002,7],[2103,6],[2134,7],[2153,7],[2164,8],[2257,6],[2297,7],[2328,8],[2547,8],[3968,6],[4883,8],[4973,8],[5008,6],[6075,6],[7609,8],[7681,8],[17298,6],[18317,6]]},"143":{"position":[[2658,6]]},"144":{"position":[[3772,6],[5869,6],[5985,7]]},"145":{"position":[[3978,6],[5127,6],[5675,6],[6278,6],[6400,6]]},"146":{"position":[[1878,7],[6603,6],[9770,6],[17168,8],[17909,7],[18426,8]]},"148":{"position":[[1699,7],[2509,6],[2716,6],[2823,6],[2935,6],[6879,6],[10779,7]]},"150":{"position":[[2225,6],[2248,7],[3341,6],[3615,6],[3678,6],[9389,6],[9414,6],[10363,6],[18722,7],[23561,8],[24666,8],[25369,8],[26383,6],[26408,6]]},"152":{"position":[[6070,6],[7535,6]]}}}],["enable/dis",{"_index":3229,"t":{},"d":{},"k":{},"b":{"82":{"position":[[1476,14]]},"93":{"position":[[9002,15]]},"135":{"position":[[14761,15]]},"137":{"position":[[1386,15]]},"139":{"position":[[17031,15],[17642,15]]},"140":{"position":[[13297,15]]},"142":{"position":[[13955,14],[17174,15],[18201,15]]}}}],["enable_bitrate_modul",{"_index":7217,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12014,25],[12195,26]]},"140":{"position":[[9362,25],[9535,26]]}}}],["enabled/dis",{"_index":1783,"t":{},"d":{},"k":{},"b":{"71":{"position":[[5362,16]]}}}],["enablemcu",{"_index":1013,"t":{},"d":{},"k":{},"b":{"69":{"position":[[8564,9],[8793,9],[9046,9],[9299,9],[9552,9]]},"76":{"position":[[4258,9],[4483,9],[4714,9],[4946,9],[5181,9]]},"79":{"position":[[3870,9]]},"83":{"position":[[11074,9],[11355,9],[11580,9],[11812,9],[12093,9]]},"105":{"position":[[8009,9],[8285,9],[8511,9]]},"106":{"position":[[11592,9],[11835,9],[12076,9]]},"108":{"position":[[2720,9]]},"135":{"position":[[4868,9],[5111,9]]},"146":{"position":[[3229,9],[3493,9]]},"148":{"position":[[3015,9]]}}}],["enanbl",{"_index":2636,"t":{},"d":{},"k":{},"b":{"76":{"position":[[4308,8],[4535,8],[4766,8],[4999,8],[5234,8]]}}}],["encapsul",{"_index":6266,"t":{},"d":{},"k":{},"b":{"128":{"position":[[18419,12]]}}}],["encompass",{"_index":498,"t":{},"d":{},"k":{},"b":{"67":{"position":[[11524,11]]},"74":{"position":[[7235,11]]},"78":{"position":[[3965,11]]},"81":{"position":[[3630,11]]},"82":{"position":[[5456,11]]},"85":{"position":[[8179,11]]},"86":{"position":[[5886,11]]},"87":{"position":[[14073,11]]},"93":{"position":[[8119,11]]},"94":{"position":[[4758,11]]},"101":{"position":[[4520,11]]},"103":{"position":[[3206,11]]},"107":{"position":[[7098,11]]},"109":{"position":[[5293,11]]},"126":{"position":[[3884,11]]},"137":{"position":[[9126,11]]},"141":{"position":[[7236,11]]},"143":{"position":[[10237,11]]},"144":{"position":[[9950,11]]},"145":{"position":[[9898,11]]},"147":{"position":[[9193,11]]},"149":{"position":[[5904,11]]}}}],["encrypt",{"_index":5852,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15391,10]]}}}],["end",{"_index":347,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3051,3],[3102,3],[3161,3],[3216,3],[3273,3],[3338,3],[10575,6]]},"68":{"position":[[2328,3],[4613,3],[4696,3],[4737,3],[4838,4],[5707,3],[22971,3],[29422,4]]},"69":{"position":[[3130,3],[8550,3],[8613,3],[8648,3],[8727,3],[8771,3],[8842,3],[8885,3],[8980,3],[9024,3],[9095,3],[9138,3],[9233,3],[9486,3],[9739,3],[11158,3],[28930,3],[29013,3],[29100,3],[29185,3],[36019,4]]},"77":{"position":[[3259,3]]},"79":{"position":[[3727,3],[3856,3],[3916,3],[3942,3],[4029,3],[11314,3]]},"83":{"position":[[7167,3],[7310,4],[7867,3],[8010,4],[17889,3],[51409,3]]},"85":{"position":[[1751,3]]},"86":{"position":[[1547,3]]},"87":{"position":[[11254,5]]},"88":{"position":[[18413,4],[18567,4],[40573,5]]},"105":{"position":[[11917,3]]},"124":{"position":[[5715,3]]},"125":{"position":[[4519,3],[14800,3]]},"128":{"position":[[7466,3],[13519,3]]},"138":{"position":[[5693,3]]},"139":{"position":[[5375,3],[6908,3],[6986,3],[13746,3],[18253,3],[19476,5]]},"140":{"position":[[16872,3],[17962,5]]},"144":{"position":[[2540,3],[2599,3]]},"146":{"position":[[21809,4]]},"147":{"position":[[2378,3],[2434,3]]},"148":{"position":[[2381,3],[2449,3]]},"149":{"position":[[1648,3],[7818,3],[7862,3],[7902,3],[7942,3],[7981,3]]}}}],["endian",{"_index":5522,"t":{},"d":{},"k":{},"b":{"111":{"position":[[962,6],[1132,6]]},"135":{"position":[[1261,6]]},"142":{"position":[[1336,6]]}}}],["endif",{"_index":6105,"t":{},"d":{},"k":{},"b":{"127":{"position":[[5165,6],[5745,6],[5755,7]]},"129":{"position":[[6790,6],[7370,6],[7380,7],[8988,7]]},"131":{"position":[[11049,6],[11629,6],[11639,7],[12019,7]]},"133":{"position":[[12491,6],[13071,6],[13081,7],[16625,6],[17205,6],[17215,7],[20929,6],[21509,6],[21519,7],[25943,6],[26523,6],[26533,7],[32096,6],[32676,6],[32686,7],[36211,6],[36791,6],[36801,7],[40516,6],[41096,6],[41106,7],[44768,6],[45348,6],[45358,7]]}}}],["endless",{"_index":6635,"t":{},"d":{},"k":{},"b":{"133":{"position":[[9695,7]]}}}],["endvalu",{"_index":5990,"t":{},"d":{},"k":{},"b":{"125":{"position":[[2025,8]]}}}],["enec",{"_index":4255,"t":{},"d":{},"k":{},"b":{"88":{"position":[[42964,4]]}}}],["enec/disec",{"_index":4051,"t":{},"d":{},"k":{},"b":{"88":{"position":[[11383,10],[11535,10]]}}}],["enforc",{"_index":8327,"t":{},"d":{},"k":{},"b":{"151":{"position":[[2536,8]]}}}],["enhanc",{"_index":8334,"t":{},"d":{},"k":{},"b":{"151":{"position":[[3144,9]]}}}],["enough",{"_index":1029,"t":{},"d":{},"k":{},"b":{"69":{"position":[[10847,6]]},"113":{"position":[[4396,6],[4474,6],[7890,7],[15168,6]]},"135":{"position":[[5928,7],[6611,7]]},"142":{"position":[[6652,7],[7785,7]]}}}],["ensur",{"_index":141,"t":{},"d":{},"k":{},"b":{"1":{"position":[[740,6]]},"68":{"position":[[5561,6]]},"71":{"position":[[46180,6]]},"83":{"position":[[49616,6]]},"88":{"position":[[22013,6]]},"108":{"position":[[4709,6]]},"113":{"position":[[1421,6]]},"124":{"position":[[3751,6]]},"125":{"position":[[4935,6]]},"128":{"position":[[6366,7],[7494,6]]},"136":{"position":[[6430,8],[6720,6]]},"141":{"position":[[4366,6],[5806,6]]},"143":{"position":[[11819,6],[11951,6],[12100,6]]}}}],["entasn",{"_index":4052,"t":{},"d":{},"k":{},"b":{"88":{"position":[[11691,6],[43209,6],[49704,6],[49724,6]]}}}],["entdaa",{"_index":3859,"t":{},"d":{},"k":{},"b":{"87":{"position":[[2189,7],[2688,6],[3758,7],[3852,7],[9231,6],[19533,6]]},"88":{"position":[[4349,9],[4389,6],[4601,6],[5317,7],[10029,7],[23704,7],[24254,6],[26914,7],[31449,7],[41204,6],[44725,7]]}}}],["entdaa/setdasa",{"_index":4019,"t":{},"d":{},"k":{},"b":{"88":{"position":[[1877,16]]}}}],["enter",{"_index":1669,"t":{},"d":{},"k":{},"b":{"70":{"position":[[14734,8],[15071,8]]},"71":{"position":[[10634,8]]},"75":{"position":[[3292,5]]},"87":{"position":[[14998,5],[15049,5],[15100,5],[15151,5],[15263,5],[15471,5],[15516,5],[15562,5],[15608,5],[15654,5],[15700,5],[15779,5],[15858,5],[15937,5],[16240,5],[16288,5],[16336,5],[16384,5],[19551,5]]},"88":{"position":[[4316,5]]},"105":{"position":[[32896,8]]},"113":{"position":[[5666,5]]},"128":{"position":[[2629,5]]},"129":{"position":[[1272,5],[3631,8],[4488,8],[7617,5],[7832,8],[10418,5],[10425,5],[14554,5],[15940,8],[16871,8],[17738,8]]},"130":{"position":[[4377,5]]},"135":{"position":[[3153,5]]},"139":{"position":[[3197,5]]},"140":{"position":[[2945,5]]},"142":{"position":[[5213,5]]},"143":{"position":[[2859,5],[8820,5]]},"149":{"position":[[8489,6],[8576,6]]},"150":{"position":[[1661,8],[5154,5],[5219,5],[10385,5],[10408,8],[22063,6]]}}}],["entir",{"_index":5982,"t":{},"d":{},"k":{},"b":{"124":{"position":[[18215,6]]},"138":{"position":[[17665,6]]},"143":{"position":[[8287,6]]},"145":{"position":[[15799,6]]},"150":{"position":[[5074,6]]}}}],["entiti",{"_index":75,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1368,6]]}}}],["entrant",{"_index":4662,"t":{},"d":{},"k":{},"b":{"92":{"position":[[30945,7],[33933,7],[34646,7],[35915,7],[39358,7],[40571,7]]}}}],["entri",{"_index":1851,"t":{},"d":{},"k":{},"b":{"71":{"position":[[9923,5],[10104,5],[36402,5],[37153,5],[41359,5]]},"75":{"position":[[1950,5],[18261,5],[18616,5],[31045,5],[33354,6]]},"87":{"position":[[1504,5],[8323,5]]},"88":{"position":[[2504,5],[2702,7],[2741,5],[2982,5],[3708,7],[3746,6],[3869,5],[3949,5],[5551,6],[5969,6],[53519,5]]},"113":{"position":[[6510,6]]},"128":{"position":[[29809,5]]}}}],["entry0",{"_index":2294,"t":{},"d":{},"k":{},"b":{"75":{"position":[[3618,6]]}}}],["entry1",{"_index":2324,"t":{},"d":{},"k":{},"b":{"75":{"position":[[12448,6],[13032,6],[13439,6]]}}}],["entry10",{"_index":2328,"t":{},"d":{},"k":{},"b":{"75":{"position":[[12711,7]]}}}],["entry100",{"_index":688,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3695,8]]}}}],["entry12",{"_index":2331,"t":{},"d":{},"k":{},"b":{"75":{"position":[[13133,7]]}}}],["entry192",{"_index":6357,"t":{},"d":{},"k":{},"b":{"128":{"position":[[29859,8]]}}}],["entry29",{"_index":2327,"t":{},"d":{},"k":{},"b":{"75":{"position":[[12555,7]]}}}],["entry4",{"_index":2330,"t":{},"d":{},"k":{},"b":{"75":{"position":[[12868,6],[13286,6]]}}}],["entryadd",{"_index":6130,"t":{},"d":{},"k":{},"b":{"128":{"position":[[728,8]]}}}],["entryassert(x",{"_index":6244,"t":{},"d":{},"k":{},"b":{"128":{"position":[[15262,14]]}}}],["entryg_comms_i2c_bus0",{"_index":6079,"t":{},"d":{},"k":{},"b":{"127":{"position":[[2050,21]]}}}],["entryg_comms_i2c_device0",{"_index":6085,"t":{},"d":{},"k":{},"b":{"127":{"position":[[2630,24]]}}}],["entryg_hs300x_sensor0",{"_index":6397,"t":{},"d":{},"k":{},"b":{"129":{"position":[[3888,21]]}}}],["entryg_hs400x_sensor0",{"_index":6481,"t":{},"d":{},"k":{},"b":{"131":{"position":[[3744,21]]}}}],["entryg_zmod4xxx_sensor0",{"_index":6606,"t":{},"d":{},"k":{},"b":{"133":{"position":[[6518,23]]}}}],["entrynul",{"_index":2975,"t":{},"d":{},"k":{},"b":{"79":{"position":[[3764,9],[4481,9],[4566,9],[4775,9],[4965,9]]}}}],["entrysize_t",{"_index":6222,"t":{},"d":{},"k":{},"b":{"128":{"position":[[12303,11]]}}}],["entrysystemcoreclock",{"_index":6145,"t":{},"d":{},"k":{},"b":{"128":{"position":[[2608,20]]}}}],["entryuint32_t",{"_index":6216,"t":{},"d":{},"k":{},"b":{"128":{"position":[[11809,13]]}}}],["enum",{"_index":269,"t":{},"d":{},"k":{},"b":{"67":{"position":[[764,4],[784,4],[810,4],[835,4],[858,4],[879,4],[902,4],[926,4],[952,4],[12242,4],[12606,4],[12991,4],[13208,4],[13528,4],[14348,4],[15643,4],[16005,4],[16483,4]]},"68":{"position":[[16554,4],[16576,4],[16606,4],[16638,4],[16668,4],[16696,4],[16728,4],[16757,4],[16795,4],[18065,4],[18709,4],[18953,4],[21473,4],[21738,4],[21950,4],[22171,4],[22385,4],[22882,4]]},"69":{"position":[[14881,4],[18648,4],[18670,4],[18691,4],[18714,4],[18736,4],[18768,4],[18800,4],[18829,4],[18863,4],[18894,4],[21547,4],[22229,4],[22668,4],[22898,4],[23870,4],[28088,4],[28445,4],[28572,4],[28698,4],[28819,4]]},"70":{"position":[[1231,4],[1255,4],[1283,4],[1306,4],[1333,4],[1359,4],[1391,4],[1417,4],[1445,4],[1473,4],[1505,4],[1532,4],[1561,4],[1585,4],[1618,4],[1645,4],[1757,4],[1963,4],[2271,4],[3824,4],[10370,4],[10601,4],[10862,4],[11081,4],[11312,4],[11595,4],[11905,4],[12131,4],[12378,4],[12627,4],[12940,4],[13281,4]]},"71":{"position":[[14213,4],[14231,4],[14258,4],[14281,4],[14313,4],[14913,4],[15338,4],[15786,4],[16233,4],[16681,4],[17128,4],[17580,4],[18031,4],[18479,4],[18926,4],[19374,4],[19821,4],[20271,4],[20720,4],[21170,4],[21619,4],[22067,4],[22514,4],[22964,4],[23413,4],[23861,4],[24308,4],[24758,4],[25207,4],[25657,4],[26106,4],[26554,4],[27001,4],[27451,4],[27900,4],[28328,4],[28755,4],[34093,4],[35673,4],[36101,4],[36336,4],[37087,4]]},"72":{"position":[[211,4],[308,4]]},"74":{"position":[[677,4],[698,4],[728,4],[753,4],[776,4],[7908,4],[8685,4],[9024,4],[9444,4],[9664,4]]},"75":{"position":[[22962,4],[30681,4],[30705,4],[30728,4],[30751,4],[30778,4],[30801,4],[30826,4],[30855,4],[30886,4],[32449,4],[33056,4],[34452,4],[34580,4],[34703,4],[34828,4],[34951,4],[35082,4],[35378,4]]},"76":{"position":[[11852,4],[11880,4],[11907,4],[11936,4],[11959,4],[11990,4],[13618,4],[13956,4],[14228,4],[14843,4],[15070,4],[15290,4]]},"78":{"position":[[544,4],[570,4],[595,4],[4621,4],[5244,4],[5518,4]]},"79":{"position":[[8604,4],[8628,4],[8660,4],[8687,4],[8724,4],[8761,4],[8797,4],[8834,4],[8871,4],[12483,4],[12764,4],[13506,4],[13878,4],[14489,4],[15081,4],[15509,4],[15917,4],[16174,4]]},"81":{"position":[[199,4],[225,4],[4286,4],[4465,4]]},"82":{"position":[[544,4],[576,4],[6237,4],[6607,4]]},"83":{"position":[[27666,4],[27688,4],[27719,4],[27744,4],[27766,4],[27796,4],[27823,4],[27848,4],[27878,4],[27907,4],[27940,4],[27977,4],[28013,4],[28047,4],[28074,4],[28114,4],[31921,4],[32668,4],[33020,4],[33208,4],[37846,4],[38630,4],[39460,4],[39893,4],[40428,4],[40874,4],[41253,4],[42069,4],[42643,4],[43005,4],[43229,4],[45887,4]]},"84":{"position":[[8907,4],[8932,4],[9402,4],[9671,4]]},"85":{"position":[[586,4],[613,4],[645,4],[1399,4],[8878,4],[9116,4],[9364,4]]},"86":{"position":[[510,4],[536,4],[567,4],[1207,4],[6578,4],[6811,4],[7055,4]]},"87":{"position":[[477,4],[512,4],[533,4],[560,4],[591,4],[630,4],[14738,4],[17235,4],[18573,4],[19034,4],[19400,4],[19907,4]]},"88":{"position":[[40798,4],[40828,4],[40860,4],[40895,4],[48761,4],[49629,4],[50108,4],[50711,4]]},"91":{"position":[[4714,4],[5897,4]]},"92":{"position":[[16497,4],[16526,4],[16556,4],[16594,4],[16635,4],[16667,4],[16701,4],[16735,4],[16780,4],[16827,4],[19169,4],[20450,4],[25399,4],[26175,4],[26674,4],[27012,4],[27341,4],[27810,4],[28247,4],[28424,4]]},"93":{"position":[[549,4],[8954,4]]},"94":{"position":[[721,4],[5413,4]]},"105":{"position":[[16641,4],[16670,4],[16697,4],[16723,4],[16750,4],[16773,4],[16802,4],[16837,4],[16872,4],[16916,4],[16952,4],[16989,4],[17023,4],[20791,4],[21766,4],[22029,4],[24001,4],[24327,4],[24558,4],[24972,4],[25590,4],[25931,4],[26288,4],[26604,4],[27187,4],[27584,4]]},"106":{"position":[[14182,4],[14205,4],[14240,4],[14277,4],[14318,4],[14356,4],[14388,4],[17458,4],[18097,4],[18393,4],[18743,4],[19139,4],[19459,4],[19736,4]]},"107":{"position":[[408,4],[433,4],[464,4],[485,4],[506,4],[7753,4],[8744,4],[9041,4],[9305,4],[9707,4]]},"109":{"position":[[478,4],[500,4],[524,4],[556,4],[5953,4],[6684,4],[7658,4],[7979,4]]},"113":{"position":[[284,4],[1920,4]]},"124":{"position":[[12360,4],[12395,4],[13740,4],[14075,4]]},"126":{"position":[[483,4],[4327,4]]},"130":{"position":[[507,4],[534,4],[565,4],[6609,4],[6738,4],[6861,4]]},"132":{"position":[[541,4],[568,4],[612,4],[653,4],[5751,4],[5893,4],[6050,4],[6212,4]]},"133":{"position":[[49205,4],[50942,4]]},"134":{"position":[[709,4],[738,4],[13113,4],[13412,4]]},"135":{"position":[[11727,4],[11756,4],[11795,4],[11826,4],[11854,4],[11887,4],[14085,4],[14328,4],[14692,4],[14960,4],[15549,4],[15933,4]]},"136":{"position":[[9918,4],[10763,4]]},"137":{"position":[[570,4],[591,4],[620,4],[648,4],[670,4],[702,4],[739,4],[778,4],[9933,4],[10237,4],[10352,4],[10587,4],[10797,4],[11206,4],[11514,4],[11932,4]]},"138":{"position":[[11597,4],[12700,4]]},"139":{"position":[[12604,4],[12629,4],[12664,4],[12702,4],[12741,4],[12782,4],[12817,4],[12857,4],[15100,4],[15528,4],[15970,4],[16336,4],[16680,4],[16976,4],[17212,4],[17571,4]]},"140":{"position":[[9878,4],[9902,4],[9928,4],[9962,4],[10002,4],[10035,4],[10073,4],[10110,4],[11902,4],[12317,4],[12665,4],[12953,4],[13244,4],[13472,4],[13823,4],[15879,4]]},"141":{"position":[[416,4],[441,4],[461,4],[486,4],[514,4],[540,4],[565,4],[7914,4],[9695,4],[9921,4],[10205,4],[10444,4],[10942,4],[11166,4]]},"142":{"position":[[12795,4],[12821,4],[12852,4],[12882,4],[12910,4],[12950,4],[12974,4],[13001,4],[13030,4],[13060,4],[15426,4],[15678,4],[15987,4],[16222,4],[16512,4],[16873,4],[17120,4],[17402,4],[17997,4],[18131,4]]},"143":{"position":[[533,4],[564,4],[594,4],[629,4],[661,4],[695,4],[10946,4],[11591,4],[12535,4],[13029,4],[13287,4],[14851,4]]},"144":{"position":[[796,4],[819,4],[844,4],[867,4],[889,4],[916,4],[10679,4],[11552,4],[11745,4],[11982,4],[12882,4],[13102,4]]},"145":{"position":[[425,4],[450,4],[475,4],[505,4],[537,4],[568,4],[592,4],[10591,4],[12391,4],[13834,4],[14825,4],[15497,4],[15934,4],[16550,4]]},"146":{"position":[[15087,4],[15112,4],[15964,4],[16286,4]]},"147":{"position":[[731,4],[753,4],[779,4],[802,4],[828,4],[9885,4],[10415,4],[10656,4],[10871,4],[11066,4]]},"149":{"position":[[489,4],[512,4],[542,4],[570,4],[596,4],[625,4],[653,4],[6557,4],[6941,4],[7407,4],[7743,4],[8058,4],[8342,4],[8646,4]]},"150":{"position":[[15730,4],[15763,4],[15796,4],[15841,4],[15879,4],[15919,4],[16289,4],[16528,4],[16978,4],[18022,4],[18280,4],[18541,4]]}}}],["enumer",{"_index":268,"t":{},"d":{},"k":{},"b":{"67":{"position":[[751,12],[7977,11],[8456,11],[9603,11],[12168,11]]},"68":{"position":[[16541,12],[17989,11]]},"69":{"position":[[18635,12],[21471,11],[22986,11]]},"70":{"position":[[1218,12],[1679,11]]},"71":{"position":[[14200,12],[34021,11]]},"72":{"position":[[198,12],[233,11]]},"74":{"position":[[664,12],[7833,11]]},"75":{"position":[[30668,12],[32371,11]]},"76":{"position":[[11839,12],[13536,11]]},"78":{"position":[[531,12],[4541,11]]},"79":{"position":[[8591,12],[12405,11]]},"81":{"position":[[186,12],[4206,11]]},"82":{"position":[[531,12],[6151,11]]},"83":{"position":[[27653,12],[31845,11],[33330,12]]},"84":{"position":[[8894,12],[9323,11]]},"85":{"position":[[573,12],[8797,11]]},"86":{"position":[[497,12],[6498,11]]},"87":{"position":[[464,12],[14649,11]]},"88":{"position":[[40785,12],[48677,11]]},"91":{"position":[[4701,12],[5814,11]]},"92":{"position":[[16484,12],[19086,11]]},"93":{"position":[[536,12],[8877,11]]},"94":{"position":[[708,12],[5334,11]]},"105":{"position":[[16628,12],[20708,11]]},"106":{"position":[[14169,12],[17381,11]]},"107":{"position":[[395,12],[7674,11]]},"109":{"position":[[465,12],[5877,11]]},"113":{"position":[[271,12],[1847,11]]},"116":{"position":[[1086,12],[1132,12]]},"124":{"position":[[12347,12],[13651,11]]},"126":{"position":[[470,12],[4247,11]]},"130":{"position":[[494,12],[6528,11]]},"132":{"position":[[528,12],[5670,11]]},"133":{"position":[[49192,12],[50856,11]]},"134":{"position":[[696,12],[13030,11]]},"135":{"position":[[11714,12],[14002,11]]},"136":{"position":[[9905,12],[10676,11]]},"137":{"position":[[557,12],[9858,11]]},"138":{"position":[[11584,12],[12612,11]]},"139":{"position":[[12591,12],[15021,11],[15138,11]]},"140":{"position":[[9865,12],[11824,11],[11939,11]]},"141":{"position":[[403,12],[7835,11]]},"142":{"position":[[12782,12],[15346,11]]},"143":{"position":[[520,12],[10861,11]]},"144":{"position":[[783,12],[2286,10],[10602,11]]},"145":{"position":[[412,12],[10512,11]]},"146":{"position":[[15074,12],[15885,11]]},"147":{"position":[[718,12],[9809,11]]},"149":{"position":[[476,12],[6480,11]]},"150":{"position":[[15717,12],[16202,11]]},"151":{"position":[[2116,13],[2160,12]]}}}],["enumeratoradc_alignment_right",{"_index":522,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13062,29]]}}}],["enumeratoradc_c_active_trigger_extern",{"_index":860,"t":{},"d":{},"k":{},"b":{"68":{"position":[[19035,39]]}}}],["enumeratoradc_c_buffer_mode_1",{"_index":916,"t":{},"d":{},"k":{},"b":{"68":{"position":[[22238,29]]}}}],["enumeratoradc_c_filter_stage_setting_dis",{"_index":918,"t":{},"d":{},"k":{},"b":{"68":{"position":[[22505,44]]}}}],["enumeratoradc_c_input_mode_auto",{"_index":914,"t":{},"d":{},"k":{},"b":{"68":{"position":[[21811,31]]}}}],["enumeratoradc_c_interrupt_channel_setting_dis",{"_index":926,"t":{},"d":{},"k":{},"b":{"68":{"position":[[22998,49]]}}}],["enumeratoradc_c_mask_off",{"_index":850,"t":{},"d":{},"k":{},"b":{"68":{"position":[[18219,24]]}}}],["enumeratoradc_c_operating_mode_scan",{"_index":915,"t":{},"d":{},"k":{},"b":{"68":{"position":[[22023,35]]}}}],["enumeratoradc_c_trigger_edge_fal",{"_index":911,"t":{},"d":{},"k":{},"b":{"68":{"position":[[21551,36]]}}}],["enumeratoradc_c_trigger_mode_softwar",{"_index":859,"t":{},"d":{},"k":{},"b":{"68":{"position":[[18778,37]]}}}],["enumeratoradc_channel_0",{"_index":554,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14399,23]]}}}],["enumeratoradc_e_active_trigger_extern",{"_index":1168,"t":{},"d":{},"k":{},"b":{"69":{"position":[[23969,39]]}}}],["enumeratoradc_e_add_off",{"_index":1148,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22312,23]]}}}],["enumeratoradc_e_clear_after_read_off",{"_index":1158,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22739,36]]}}}],["enumeratoradc_e_double_trigger_dis",{"_index":1252,"t":{},"d":{},"k":{},"b":{"69":{"position":[[28171,39]]}}}],["enumeratoradc_e_elc_group_a_scan",{"_index":1255,"t":{},"d":{},"k":{},"b":{"69":{"position":[[28890,32]]}}}],["enumeratoradc_e_grpa_priority_off",{"_index":1161,"t":{},"d":{},"k":{},"b":{"69":{"position":[[23069,33]]}}}],["enumeratoradc_e_mask_off",{"_index":1141,"t":{},"d":{},"k":{},"b":{"69":{"position":[[21820,24]]}}}],["enumeratoradc_event_scan_complet",{"_index":531,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13595,33]]}}}],["enumeratoradc_group_id_0",{"_index":614,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15681,24]]}}}],["enumeratoradc_group_mask_non",{"_index":624,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16045,29]]}}}],["enumeratoradc_mode_single_scan",{"_index":504,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12308,30]]}}}],["enumeratoradc_resolution_12_bit",{"_index":510,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12679,31]]}}}],["enumeratoradc_state_idl",{"_index":636,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16531,24]]}}}],["enumeratoradc_trigger_softwar",{"_index":524,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13275,30]]}}}],["enumeratorbsp_bypass_freq_range_1mhz",{"_index":1649,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13374,36]]}}}],["enumeratorbsp_bypass_mode_crystal_osc",{"_index":1643,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13008,37]]}}}],["enumeratorbsp_bypass_oscillator_rtc",{"_index":1637,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12715,35]]}}}],["enumeratorbsp_delay_units_second",{"_index":2022,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35829,33]]}}}],["enumeratorbsp_ethernet_channel_0",{"_index":1607,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10679,32]]}}}],["enumeratorbsp_ethernet_mode_rmii",{"_index":1629,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12207,32]]}}}],["enumeratorbsp_ethernet_voltage_33",{"_index":1621,"t":{},"d":{},"k":{},"b":{"70":{"position":[[11673,33]]}}}],["enumeratorbsp_grp_irq_unsupport",{"_index":2023,"t":{},"d":{},"k":{},"b":{"71":{"position":[[36187,33]]}}}],["enumeratorbsp_i3c_mode_stb",{"_index":1634,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12452,26]]}}}],["enumeratorbsp_i3c_voltage_18",{"_index":1625,"t":{},"d":{},"k":{},"b":{"70":{"position":[[11973,28]]}}}],["enumeratorbsp_io_direction_hiz",{"_index":1321,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2035,30]]}}}],["enumeratorbsp_io_level_low",{"_index":1318,"t":{},"d":{},"k":{},"b":{"70":{"position":[[1848,26]]}}}],["enumeratorbsp_io_port_00",{"_index":1329,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2349,24]]}}}],["enumeratorbsp_io_port_00_pin_00",{"_index":1396,"t":{},"d":{},"k":{},"b":{"70":{"position":[[3910,31]]}}}],["enumeratorbsp_qspi_voltage_33",{"_index":1614,"t":{},"d":{},"k":{},"b":{"70":{"position":[[11151,29]]}}}],["enumeratorbsp_sd_channel_0",{"_index":1604,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10436,26]]}}}],["enumeratorbsp_sd_voltage_33",{"_index":1609,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10928,27]]}}}],["enumeratorbsp_warm_start_reset",{"_index":2024,"t":{},"d":{},"k":{},"b":{"71":{"position":[[36432,30],[37183,30]]}}}],["enumeratorbsp_xspi_voltage_33",{"_index":1617,"t":{},"d":{},"k":{},"b":{"70":{"position":[[11382,29]]}}}],["enumeratorcan_event_err_warn",{"_index":2206,"t":{},"d":{},"k":{},"b":{"74":{"position":[[7960,31]]}}}],["enumeratorcan_frame_type_data",{"_index":2239,"t":{},"d":{},"k":{},"b":{"74":{"position":[[9721,29]]}}}],["enumeratorcan_id_mode_standard",{"_index":2237,"t":{},"d":{},"k":{},"b":{"74":{"position":[[9495,30]]}}}],["enumeratorcan_operation_mode_norm",{"_index":2225,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8750,35]]}}}],["enumeratorcan_test_mode_dis",{"_index":2230,"t":{},"d":{},"k":{},"b":{"74":{"position":[[9079,32]]}}}],["enumeratorcanfd_error_channel_bu",{"_index":2533,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33111,33]]}}}],["enumeratorcanfd_frame_option_error",{"_index":2565,"t":{},"d":{},"k":{},"b":{"75":{"position":[[35148,34]]}}}],["enumeratorcanfd_status_reset_mod",{"_index":2524,"t":{},"d":{},"k":{},"b":{"75":{"position":[[32501,33]]}}}],["enumeratorcmtw_clear_source_compare_match_cmwcor",{"_index":2741,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14295,48]]}}}],["enumeratorcmtw_input_control_dis",{"_index":2757,"t":{},"d":{},"k":{},"b":{"76":{"position":[[15334,37]]}}}],["enumeratorcmtw_io_pin_toc0",{"_index":2752,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14909,26]]}}}],["enumeratorcmtw_output_control_dis",{"_index":2755,"t":{},"d":{},"k":{},"b":{"76":{"position":[[15115,38]]}}}],["enumeratorcmtw_output_pin_retain",{"_index":2736,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14016,32]]}}}],["enumeratorcmtw_source_edge_ris",{"_index":2733,"t":{},"d":{},"k":{},"b":{"76":{"position":[[13702,33]]}}}],["enumeratorcrc_bit_order_lms_lsb",{"_index":2929,"t":{},"d":{},"k":{},"b":{"78":{"position":[[5316,31]]}}}],["enumeratorcrc_polynomial_crc_8",{"_index":2909,"t":{},"d":{},"k":{},"b":{"78":{"position":[[4705,30]]}}}],["enumeratorcrc_snoop_direction_rec",{"_index":2933,"t":{},"d":{},"k":{},"b":{"78":{"position":[[5600,37]]}}}],["enumeratordmac_b_ack_mode_level_mod",{"_index":3060,"t":{},"d":{},"k":{},"b":{"79":{"position":[[13661,36]]}}}],["enumeratordmac_b_channel_scheduling_fix",{"_index":3078,"t":{},"d":{},"k":{},"b":{"79":{"position":[[15994,41]]}}}],["enumeratordmac_b_continuous_setting_transfer_onc",{"_index":3076,"t":{},"d":{},"k":{},"b":{"79":{"position":[[15611,49]]}}}],["enumeratordmac_b_event_transfer_end",{"_index":3047,"t":{},"d":{},"k":{},"b":{"79":{"position":[[12567,35]]}}}],["enumeratordmac_b_external_detection_low_level",{"_index":3063,"t":{},"d":{},"k":{},"b":{"79":{"position":[[14078,45]]}}}],["enumeratordmac_b_internal_detection_no_detect",{"_index":3069,"t":{},"d":{},"k":{},"b":{"79":{"position":[[14689,48]]}}}],["enumeratordmac_b_mode_select_regist",{"_index":3080,"t":{},"d":{},"k":{},"b":{"79":{"position":[[16238,37]]}}}],["enumeratordmac_b_request_direction_source_modul",{"_index":3074,"t":{},"d":{},"k":{},"b":{"79":{"position":[[15265,48]]}}}],["enumeratordmac_b_transfer_size_1_byt",{"_index":3049,"t":{},"d":{},"k":{},"b":{"79":{"position":[[12873,37]]}}}],["enumeratorelc_software_event_0",{"_index":3216,"t":{},"d":{},"k":{},"b":{"81":{"position":[[4532,30]]}}}],["enumeratorexternal_irq_pclk_div_by_1",{"_index":3262,"t":{},"d":{},"k":{},"b":{"82":{"position":[[6826,36]]}}}],["enumeratorexternal_irq_trig_fal",{"_index":3258,"t":{},"d":{},"k":{},"b":{"82":{"position":[[6340,35]]}}}],["enumeratorfsp_err_assert",{"_index":5547,"t":{},"d":{},"k":{},"b":{"113":{"position":[[1973,27]]}}}],["enumeratorfsp_ip_gtm",{"_index":1980,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34145,20]]}}}],["enumeratorgpt_adc_compare_match_adc_a",{"_index":3562,"t":{},"d":{},"k":{},"b":{"83":{"position":[[40963,37]]}}}],["enumeratorgpt_adc_trigger_non",{"_index":3543,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38713,30]]}}}],["enumeratorgpt_buffer_force_push",{"_index":3469,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32797,31]]}}}],["enumeratorgpt_buffer_mode_singl",{"_index":3581,"t":{},"d":{},"k":{},"b":{"83":{"position":[[43062,32]]}}}],["enumeratorgpt_capture_filter_non",{"_index":3532,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38295,33]]}}}],["enumeratorgpt_gtioc_disable_prohibit",{"_index":3557,"t":{},"d":{},"k":{},"b":{"83":{"position":[[40510,38]]}}}],["enumeratorgpt_interrupt_skip_adc_non",{"_index":3577,"t":{},"d":{},"k":{},"b":{"83":{"position":[[42737,37]]}}}],["enumeratorgpt_interrupt_skip_count_0",{"_index":3568,"t":{},"d":{},"k":{},"b":{"83":{"position":[[42164,36]]}}}],["enumeratorgpt_interrupt_skip_source_non",{"_index":3564,"t":{},"d":{},"k":{},"b":{"83":{"position":[[41330,40]]}}}],["enumeratorgpt_io_pin_gtioca",{"_index":3457,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32044,27]]}}}],["enumeratorgpt_output_disable_non",{"_index":3553,"t":{},"d":{},"k":{},"b":{"83":{"position":[[39993,33]]}}}],["enumeratorgpt_pin_level_low",{"_index":3472,"t":{},"d":{},"k":{},"b":{"83":{"position":[[33077,27]]}}}],["enumeratorgpt_poeg_link_poeg0",{"_index":3549,"t":{},"d":{},"k":{},"b":{"83":{"position":[[39538,29]]}}}],["enumeratorgpt_pwm_output_delay_edge_ris",{"_index":3619,"t":{},"d":{},"k":{},"b":{"83":{"position":[[45987,42]]}}}],["enumeratorgpt_pwm_output_delay_setting_0_32",{"_index":3585,"t":{},"d":{},"k":{},"b":{"83":{"position":[[43342,43]]}}}],["enumeratorgpt_source_non",{"_index":3475,"t":{},"d":{},"k":{},"b":{"83":{"position":[[33405,25]]}}}],["enumeratorgtm_giws_type_dis",{"_index":3687,"t":{},"d":{},"k":{},"b":{"84":{"position":[[9473,32]]}}}],["enumeratorgtm_timer_mode_interv",{"_index":3689,"t":{},"d":{},"k":{},"b":{"84":{"position":[[9744,33]]}}}],["enumeratori2c_master_addr_mode_7bit",{"_index":3772,"t":{},"d":{},"k":{},"b":{"85":{"position":[[9187,35]]}}}],["enumeratori2c_master_event_abort",{"_index":3774,"t":{},"d":{},"k":{},"b":{"85":{"position":[[9423,34]]}}}],["enumeratori2c_master_rate_standard",{"_index":3767,"t":{},"d":{},"k":{},"b":{"85":{"position":[[8948,34]]}}}],["enumeratori2c_slave_addr_mode_7bit",{"_index":3811,"t":{},"d":{},"k":{},"b":{"86":{"position":[[6881,34]]}}}],["enumeratori2c_slave_event_abort",{"_index":3813,"t":{},"d":{},"k":{},"b":{"86":{"position":[[7113,33]]}}}],["enumeratori2c_slave_rate_standard",{"_index":3808,"t":{},"d":{},"k":{},"b":{"86":{"position":[[6647,33]]}}}],["enumeratori3c_address_assignment_mode_entdaa",{"_index":4012,"t":{},"d":{},"k":{},"b":{"87":{"position":[[19479,44]]}}}],["enumeratori3c_b_activity_state_entas0",{"_index":4325,"t":{},"d":{},"k":{},"b":{"88":{"position":[[49770,37]]}}}],["enumeratori3c_b_bitrate_mode_i2c_stdbr",{"_index":4321,"t":{},"d":{},"k":{},"b":{"88":{"position":[[48887,38]]}}}],["enumeratori3c_b_clock_data_turnaround_8n",{"_index":4335,"t":{},"d":{},"k":{},"b":{"88":{"position":[[50845,41]]}}}],["enumeratori3c_b_data_rate_setting_fscl_max",{"_index":4330,"t":{},"d":{},"k":{},"b":{"88":{"position":[[50295,42]]}}}],["enumeratori3c_ccc_broadcast_enec",{"_index":3941,"t":{},"d":{},"k":{},"b":{"87":{"position":[[14849,32]]}}}],["enumeratori3c_device_protocol_i2c",{"_index":4008,"t":{},"d":{},"k":{},"b":{"87":{"position":[[19154,33]]}}}],["enumeratori3c_device_type_main_mast",{"_index":4004,"t":{},"d":{},"k":{},"b":{"87":{"position":[[18635,37]]}}}],["enumeratori3c_event_entdaa_address_phas",{"_index":3986,"t":{},"d":{},"k":{},"b":{"87":{"position":[[17309,40]]}}}],["enumeratori3c_ibi_type_interrupt",{"_index":4014,"t":{},"d":{},"k":{},"b":{"87":{"position":[[19977,32]]}}}],["enumeratoriic_master_timeout_mode_long",{"_index":5970,"t":{},"d":{},"k":{},"b":{"124":{"position":[[13828,38]]}}}],["enumeratoriic_master_timeout_scl_low_dis",{"_index":5973,"t":{},"d":{},"k":{},"b":{"124":{"position":[[14127,45]]}}}],["enumeratorintc_tint_trigger_ris",{"_index":4419,"t":{},"d":{},"k":{},"b":{"91":{"position":[[5965,34]]}}}],["enumeratorioport_cfg_port_direction_hiz",{"_index":4588,"t":{},"d":{},"k":{},"b":{"92":{"position":[[20530,39]]}}}],["enumeratorioport_event_control_dis",{"_index":4645,"t":{},"d":{},"k":{},"b":{"92":{"position":[[26797,38]]}}}],["enumeratorioport_event_detection_rising_edg",{"_index":4649,"t":{},"d":{},"k":{},"b":{"92":{"position":[[27462,44]]}}}],["enumeratorioport_event_direction_output",{"_index":4647,"t":{},"d":{},"k":{},"b":{"92":{"position":[[27134,39]]}}}],["enumeratorioport_event_initial_buffer_value_low",{"_index":4652,"t":{},"d":{},"k":{},"b":{"92":{"position":[[27949,47]]}}}],["enumeratorioport_event_output_operation_low",{"_index":4641,"t":{},"d":{},"k":{},"b":{"92":{"position":[[26297,43]]}}}],["enumeratorioport_event_pin_selection_non",{"_index":4632,"t":{},"d":{},"k":{},"b":{"92":{"position":[[25526,41]]}}}],["enumeratorioport_peripheral_mode0",{"_index":4556,"t":{},"d":{},"k":{},"b":{"92":{"position":[[19251,33]]}}}],["enumeratorioport_pfs_write_dis",{"_index":4717,"t":{},"d":{},"k":{},"b":{"93":{"position":[[9020,34]]}}}],["enumeratormhu_send_type_msg",{"_index":4758,"t":{},"d":{},"k":{},"b":{"94":{"position":[[5452,27]]}}}],["enumeratormtu3_adc_compare_match_adc_a",{"_index":5067,"t":{},"d":{},"k":{},"b":{"105":{"position":[[27277,38]]}}}],["enumeratormtu3_adc_tgra_compare_match_dis",{"_index":5069,"t":{},"d":{},"k":{},"b":{"105":{"position":[[27648,45]]}}}],["enumeratormtu3_clock_div_1",{"_index":4994,"t":{},"d":{},"k":{},"b":{"105":{"position":[[22092,26]]}}}],["enumeratormtu3_clock_edge_ris",{"_index":4991,"t":{},"d":{},"k":{},"b":{"105":{"position":[[21826,32]]}}}],["enumeratormtu3_interrupt_skip_count_0",{"_index":5059,"t":{},"d":{},"k":{},"b":{"105":{"position":[[26700,37]]}}}],["enumeratormtu3_interrupt_skip_mode_1",{"_index":5053,"t":{},"d":{},"k":{},"b":{"105":{"position":[[26374,36]]}}}],["enumeratormtu3_io_pin_level_no_output",{"_index":4981,"t":{},"d":{},"k":{},"b":{"105":{"position":[[20852,37]]}}}],["enumeratormtu3_io_pin_mtioca",{"_index":5031,"t":{},"d":{},"k":{},"b":{"105":{"position":[[24383,28]]}}}],["enumeratormtu3_noise_filter_clock_div_1",{"_index":5042,"t":{},"d":{},"k":{},"b":{"105":{"position":[[25639,39]]}}}],["enumeratormtu3_noise_filter_dis",{"_index":5034,"t":{},"d":{},"k":{},"b":{"105":{"position":[[24670,35]]}}}],["enumeratormtu3_noise_filter_external_clock_div_1",{"_index":5048,"t":{},"d":{},"k":{},"b":{"105":{"position":[[25989,48]]}}}],["enumeratormtu3_noise_filter_mtclk_dis",{"_index":5037,"t":{},"d":{},"k":{},"b":{"105":{"position":[[25104,41]]}}}],["enumeratormtu3_tcnt_clear_dis",{"_index":5026,"t":{},"d":{},"k":{},"b":{"105":{"position":[[24071,33]]}}}],["enumeratorpdm_clock_div_2",{"_index":5283,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17537,25]]}}}],["enumeratorpdm_compensation_filter_right_shift_0",{"_index":5337,"t":{},"d":{},"k":{},"b":{"106":{"position":[[18840,47]]}}}],["enumeratorpdm_error_short_circuit",{"_index":5424,"t":{},"d":{},"k":{},"b":{"107":{"position":[[9391,33]]}}}],["enumeratorpdm_event_idl",{"_index":5420,"t":{},"d":{},"k":{},"b":{"107":{"position":[[9121,24]]}}}],["enumeratorpdm_hpf_right_shift_0",{"_index":5341,"t":{},"d":{},"k":{},"b":{"106":{"position":[[19230,31]]}}}],["enumeratorpdm_input_data_edge_ris",{"_index":5418,"t":{},"d":{},"k":{},"b":{"107":{"position":[[8809,34]]}}}],["enumeratorpdm_interrupt_threshold_1",{"_index":5349,"t":{},"d":{},"k":{},"b":{"106":{"position":[[19822,35]]}}}],["enumeratorpdm_lpf_right_shift_0",{"_index":5333,"t":{},"d":{},"k":{},"b":{"106":{"position":[[18505,31]]}}}],["enumeratorpdm_moving_average_mode_1_ord",{"_index":5330,"t":{},"d":{},"k":{},"b":{"106":{"position":[[18193,41]]}}}],["enumeratorpdm_pcm_width_20_bits_0_18",{"_index":5409,"t":{},"d":{},"k":{},"b":{"107":{"position":[[7809,36]]}}}],["enumeratorpdm_sinc_filter_mode_1",{"_index":5345,"t":{},"d":{},"k":{},"b":{"106":{"position":[[19532,32]]}}}],["enumeratorpdm_state_in_us",{"_index":5428,"t":{},"d":{},"k":{},"b":{"107":{"position":[[9800,26]]}}}],["enumeratorpoeg_gtetrg_noise_filter_dis",{"_index":5505,"t":{},"d":{},"k":{},"b":{"109":{"position":[[8218,43]]}}}],["enumeratorpoeg_gtetrg_polarity_active_high",{"_index":5503,"t":{},"d":{},"k":{},"b":{"109":{"position":[[7722,42]]}}}],["enumeratorpoeg_state_no_disable_request",{"_index":5480,"t":{},"d":{},"k":{},"b":{"109":{"position":[[6003,39]]}}}],["enumeratorpoeg_trigger_softwar",{"_index":5487,"t":{},"d":{},"k":{},"b":{"109":{"position":[[6767,31]]}}}],["enumeratorrm_hs400x_periodic_measurement_frequency_2hz",{"_index":6541,"t":{},"d":{},"k":{},"b":{"132":{"position":[[6313,54]]}}}],["enumeratorrm_zmod4xxx_event_dev_err_power_on_reset",{"_index":6751,"t":{},"d":{},"k":{},"b":{"134":{"position":[[13188,50]]}}}],["enumeratorrspi_delay_count_1",{"_index":6865,"t":{},"d":{},"k":{},"b":{"135":{"position":[[15039,28]]}}}],["enumeratorrspi_mosi_idle_value_fixing_dis",{"_index":6857,"t":{},"d":{},"k":{},"b":{"135":{"position":[[14402,45]]}}}],["enumeratorrspi_rx_trigger_1",{"_index":6870,"t":{},"d":{},"k":{},"b":{"135":{"position":[[16010,27]]}}}],["enumeratorrspi_ssl_level_keep_dis",{"_index":6863,"t":{},"d":{},"k":{},"b":{"135":{"position":[[14779,37]]}}}],["enumeratorrspi_sslp_low",{"_index":6854,"t":{},"d":{},"k":{},"b":{"135":{"position":[[14152,23]]}}}],["enumeratorrspi_tx_trigger_7",{"_index":6866,"t":{},"d":{},"k":{},"b":{"135":{"position":[[15629,27]]}}}],["enumeratorrtc_clock_source_subclk",{"_index":7060,"t":{},"d":{},"k":{},"b":{"137":{"position":[[10426,33]]}}}],["enumeratorrtc_error_adjustment_mode_manu",{"_index":7067,"t":{},"d":{},"k":{},"b":{"137":{"position":[[11294,42]]}}}],["enumeratorrtc_error_adjustment_non",{"_index":7064,"t":{},"d":{},"k":{},"b":{"137":{"position":[[10875,35]]}}}],["enumeratorrtc_error_adjustment_period_1_minut",{"_index":7069,"t":{},"d":{},"k":{},"b":{"137":{"position":[[11606,46]]}}}],["enumeratorrtc_event_alarm_irq",{"_index":7057,"t":{},"d":{},"k":{},"b":{"137":{"position":[[10013,29]]}}}],["enumeratorrtc_periodic_irq_select_1_div_by_256_second",{"_index":7072,"t":{},"d":{},"k":{},"b":{"137":{"position":[[12008,53]]}}}],["enumeratorrtc_status_stop",{"_index":7062,"t":{},"d":{},"k":{},"b":{"137":{"position":[[10638,28]]}}}],["enumeratorsci_b_uart_clock_int",{"_index":7245,"t":{},"d":{},"k":{},"b":{"139":{"position":[[15173,30]]}}}],["enumeratorsci_b_uart_flow_control_rt",{"_index":7249,"t":{},"d":{},"k":{},"b":{"139":{"position":[[15612,37]]}}}],["enumeratorsci_b_uart_half_data_dis",{"_index":7263,"t":{},"d":{},"k":{},"b":{"139":{"position":[[17660,38]]}}}],["enumeratorsci_b_uart_noise_cancellation_dis",{"_index":7257,"t":{},"d":{},"k":{},"b":{"139":{"position":[[16770,47]]}}}],["enumeratorsci_b_uart_rs485_de_polarity_high",{"_index":7261,"t":{},"d":{},"k":{},"b":{"139":{"position":[[17305,43]]}}}],["enumeratorsci_b_uart_rs485_dis",{"_index":7259,"t":{},"d":{},"k":{},"b":{"139":{"position":[[17049,34]]}}}],["enumeratorsci_b_uart_rx_fifo_trigger_1",{"_index":7253,"t":{},"d":{},"k":{},"b":{"139":{"position":[[16059,38]]}}}],["enumeratorsci_b_uart_start_bit_low_level",{"_index":7255,"t":{},"d":{},"k":{},"b":{"139":{"position":[[16443,40]]}}}],["enumeratorsci_uart_rs485_de_polarity_high",{"_index":7366,"t":{},"d":{},"k":{},"b":{"140":{"position":[[13563,41]]}}}],["enumeratorsci_uart_rs485_dis",{"_index":7364,"t":{},"d":{},"k":{},"b":{"140":{"position":[[13315,32]]}}}],["enumeratorscif_uart_clock_int",{"_index":7352,"t":{},"d":{},"k":{},"b":{"140":{"position":[[11975,29]]}}}],["enumeratorscif_uart_flow_control_non",{"_index":7359,"t":{},"d":{},"k":{},"b":{"140":{"position":[[12753,37]]}}}],["enumeratorscif_uart_mode_rs232",{"_index":7356,"t":{},"d":{},"k":{},"b":{"140":{"position":[[12393,30]]}}}],["enumeratorscif_uart_noise_cancellation_dis",{"_index":7362,"t":{},"d":{},"k":{},"b":{"140":{"position":[[13042,46]]}}}],["enumeratorscif_uart_receive_trigger_on",{"_index":7368,"t":{},"d":{},"k":{},"b":{"140":{"position":[[13911,39]]}}}],["enumeratorscif_uart_rts_trigger_1",{"_index":7389,"t":{},"d":{},"k":{},"b":{"140":{"position":[[15946,33]]}}}],["enumeratorspi_b_byte_swap_dis",{"_index":7534,"t":{},"d":{},"k":{},"b":{"142":{"position":[[17192,33]]}}}],["enumeratorspi_b_communication_full_duplex",{"_index":7520,"t":{},"d":{},"k":{},"b":{"142":{"position":[[15769,41]]}}}],["enumeratorspi_b_delay_count_1",{"_index":7536,"t":{},"d":{},"k":{},"b":{"142":{"position":[[17482,29]]}}}],["enumeratorspi_b_mosi_idle_value_fixing_dis",{"_index":7528,"t":{},"d":{},"k":{},"b":{"142":{"position":[[16587,46]]}}}],["enumeratorspi_b_parity_mode_dis",{"_index":7531,"t":{},"d":{},"k":{},"b":{"142":{"position":[[16924,35]]}}}],["enumeratorspi_b_ssl_level_keep_dis",{"_index":7544,"t":{},"d":{},"k":{},"b":{"142":{"position":[[18219,38]]}}}],["enumeratorspi_b_ssl_mode_spi",{"_index":7518,"t":{},"d":{},"k":{},"b":{"142":{"position":[[15490,28]]}}}],["enumeratorspi_b_ssl_select_ssl0",{"_index":7524,"t":{},"d":{},"k":{},"b":{"142":{"position":[[16287,31]]}}}],["enumeratorspi_b_sslp_low",{"_index":7522,"t":{},"d":{},"k":{},"b":{"142":{"position":[[16055,24]]}}}],["enumeratorspi_bit_order_msb_first",{"_index":7467,"t":{},"d":{},"k":{},"b":{"141":{"position":[[10992,33]]}}}],["enumeratorspi_bit_width_4_bit",{"_index":7428,"t":{},"d":{},"k":{},"b":{"141":{"position":[[7969,30]]}}}],["enumeratorspi_clk_phase_edge_odd",{"_index":7459,"t":{},"d":{},"k":{},"b":{"141":{"position":[[9973,32]]}}}],["enumeratorspi_clk_polarity_low",{"_index":7461,"t":{},"d":{},"k":{},"b":{"141":{"position":[[10263,30]]}}}],["enumeratorspi_event_transfer_complet",{"_index":7469,"t":{},"d":{},"k":{},"b":{"141":{"position":[[11213,37]]}}}],["enumeratorspi_flash_address_bytes_3",{"_index":7665,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12617,35]]}}}],["enumeratorspi_flash_data_lines_1",{"_index":7669,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13103,32]]}}}],["enumeratorspi_flash_dummy_clocks_0",{"_index":7672,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13385,34]]}}}],["enumeratorspi_flash_protocol_extended_spi",{"_index":7647,"t":{},"d":{},"k":{},"b":{"143":{"position":[[11650,41]]}}}],["enumeratorspi_flash_read_mode_standard",{"_index":7639,"t":{},"d":{},"k":{},"b":{"143":{"position":[[11003,38]]}}}],["enumeratorspi_mode_fault_error_en",{"_index":7465,"t":{},"d":{},"k":{},"b":{"141":{"position":[[10766,37]]}}}],["enumeratorspi_mode_mast",{"_index":7457,"t":{},"d":{},"k":{},"b":{"141":{"position":[[9761,25]]}}}],["enumeratortimer_direction_down",{"_index":7754,"t":{},"d":{},"k":{},"b":{"144":{"position":[[12949,30]]}}}],["enumeratortimer_event_cycle_end",{"_index":7729,"t":{},"d":{},"k":{},"b":{"144":{"position":[[10761,31]]}}}],["enumeratortimer_mode_period",{"_index":7746,"t":{},"d":{},"k":{},"b":{"144":{"position":[[12043,29]]}}}],["enumeratortimer_source_div_1",{"_index":7757,"t":{},"d":{},"k":{},"b":{"144":{"position":[[13167,28]]}}}],["enumeratortimer_state_stop",{"_index":7744,"t":{},"d":{},"k":{},"b":{"144":{"position":[[11842,29]]}}}],["enumeratortimer_variant_32_bit",{"_index":7742,"t":{},"d":{},"k":{},"b":{"144":{"position":[[11613,30]]}}}],["enumeratortransfer_addr_mode_fix",{"_index":7820,"t":{},"d":{},"k":{},"b":{"145":{"position":[[13974,34]]}}}],["enumeratortransfer_chain_mode_dis",{"_index":7828,"t":{},"d":{},"k":{},"b":{"145":{"position":[[15598,38]]}}}],["enumeratortransfer_irq_end",{"_index":7831,"t":{},"d":{},"k":{},"b":{"145":{"position":[[15992,26]]}}}],["enumeratortransfer_mode_norm",{"_index":7806,"t":{},"d":{},"k":{},"b":{"145":{"position":[[10704,30]]}}}],["enumeratortransfer_repeat_area_destin",{"_index":7825,"t":{},"d":{},"k":{},"b":{"145":{"position":[[15161,42]]}}}],["enumeratortransfer_size_1_byt",{"_index":7811,"t":{},"d":{},"k":{},"b":{"145":{"position":[[12553,30]]}}}],["enumeratortransfer_start_mode_singl",{"_index":7837,"t":{},"d":{},"k":{},"b":{"145":{"position":[[16669,36]]}}}],["enumeratortsu_b_average_off",{"_index":7922,"t":{},"d":{},"k":{},"b":{"146":{"position":[[16053,27]]}}}],["enumeratortsu_b_compare_cfg_dis",{"_index":7926,"t":{},"d":{},"k":{},"b":{"146":{"position":[[16356,35]]}}}],["enumeratoruart_data_bits_9",{"_index":7966,"t":{},"d":{},"k":{},"b":{"147":{"position":[[10488,26]]}}}],["enumeratoruart_dir_rx_tx",{"_index":7973,"t":{},"d":{},"k":{},"b":{"147":{"position":[[11129,24]]}}}],["enumeratoruart_event_rx_complet",{"_index":7963,"t":{},"d":{},"k":{},"b":{"147":{"position":[[9939,32]]}}}],["enumeratoruart_parity_off",{"_index":7968,"t":{},"d":{},"k":{},"b":{"147":{"position":[[10717,25]]}}}],["enumeratoruart_stop_bits_1",{"_index":7971,"t":{},"d":{},"k":{},"b":{"147":{"position":[[10938,26]]}}}],["enumeratorwdt_clock_division_1",{"_index":8094,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7012,30]]}}}],["enumeratorwdt_reset_control_nmi",{"_index":8115,"t":{},"d":{},"k":{},"b":{"149":{"position":[[8151,31]]}}}],["enumeratorwdt_status_no_error",{"_index":8119,"t":{},"d":{},"k":{},"b":{"149":{"position":[[8694,29]]}}}],["enumeratorwdt_stop_control_dis",{"_index":8117,"t":{},"d":{},"k":{},"b":{"149":{"position":[[8422,34]]}}}],["enumeratorwdt_timeout_128",{"_index":8086,"t":{},"d":{},"k":{},"b":{"149":{"position":[[6617,25]]}}}],["enumeratorwdt_window_end_75",{"_index":8112,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7834,27]]}}}],["enumeratorwdt_window_start_25",{"_index":8108,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7502,29]]}}}],["enumeratorxspi_qspi_chip_select_0",{"_index":8266,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16336,33]]}}}],["enumeratorxspi_qspi_command_interval_clocks_1",{"_index":8282,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17037,45]]}}}],["enumeratorxspi_qspi_cs_pulldown_clocks_no_extens",{"_index":8300,"t":{},"d":{},"k":{},"b":{"150":{"position":[[18334,51]]}}}],["enumeratorxspi_qspi_cs_pullup_clocks_no_extens",{"_index":8298,"t":{},"d":{},"k":{},"b":{"150":{"position":[[18074,49]]}}}],["enumeratorxspi_qspi_memory_size_1mb",{"_index":8268,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16575,35]]}}}],["enumeratorxspi_qspi_prefetch_function_dis",{"_index":8302,"t":{},"d":{},"k":{},"b":{"150":{"position":[[18594,45]]}}}],["environ",{"_index":1711,"t":{},"d":{},"k":{},"b":{"71":{"position":[[1241,12],[1987,11],[36515,12],[36621,11],[36700,11],[36805,12],[36911,11],[36990,11],[37266,12],[37372,11],[37451,11],[37556,12],[37662,11],[37741,11],[39716,12],[40817,12]]},"111":{"position":[[303,12]]},"133":{"position":[[7106,11],[7288,11],[8454,11]]},"152":{"position":[[382,12]]}}}],["eoi",{"_index":5656,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6741,3],[7444,3],[7490,3]]}}}],["epa",{"_index":6733,"t":{},"d":{},"k":{},"b":{"134":{"position":[[3144,3],[3232,3]]}}}],["epa_aqi",{"_index":6734,"t":{},"d":{},"k":{},"b":{"134":{"position":[[3184,7]]}}}],["equal",{"_index":1830,"t":{},"d":{},"k":{},"b":{"71":{"position":[[8547,5]]},"83":{"position":[[6241,5],[6688,5],[27384,5]]},"88":{"position":[[8171,5],[8372,5],[8925,5],[9126,5],[9312,5],[9479,5],[9644,5],[9809,5],[10540,5],[14448,5],[14610,5],[14796,5]]},"124":{"position":[[4719,5],[5828,5],[6199,5],[6450,5]]},"125":{"position":[[4706,5],[7660,5]]},"128":{"position":[[6044,5],[7549,5],[10163,5],[10370,5],[16792,6]]},"135":{"position":[[3339,5],[11288,5]]},"136":{"position":[[5310,5]]},"138":{"position":[[3502,5],[5806,5],[6182,5]]},"139":{"position":[[5070,5],[5330,5]]},"142":{"position":[[5399,5],[12311,5]]},"150":{"position":[[4212,5],[4530,5],[4861,5],[8356,5]]}}}],["equival",{"_index":1876,"t":{},"d":{},"k":{},"b":{"71":{"position":[[11694,11]]},"128":{"position":[[2085,10]]}}}],["eras",{"_index":5576,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3339,5],[3659,5]]},"143":{"position":[[153,6],[897,5],[926,5],[972,5],[1013,5],[1091,6],[2674,6],[2978,5],[3070,5],[4326,5],[7786,5],[7956,5],[8179,5],[8232,6],[8281,5],[8491,5]]},"150":{"position":[[1538,7],[3810,5],[4020,5],[4082,5],[4109,5],[4167,5],[4238,5],[4261,5],[4287,5],[4341,5],[4403,5],[4428,5],[4485,5],[4556,5],[4578,5],[4603,5],[4657,5],[4724,5],[4754,5],[4811,5],[4887,5],[4914,5],[4944,5],[5002,5],[5064,5],[5096,5],[7984,5],[8021,5],[24076,5],[24155,5],[24204,6],[24345,5],[24486,5],[25064,5]]}}}],["erase_command_list_length",{"_index":7585,"t":{},"d":{},"k":{},"b":{"143":{"position":[[2941,25]]}}}],["eri",{"_index":3714,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1627,4]]},"86":{"position":[[1729,3]]},"140":{"position":[[5477,5],[5563,5]]}}}],["eri_ipl",{"_index":3788,"t":{},"d":{},"k":{},"b":{"86":{"position":[[1691,7]]},"141":{"position":[[1621,7]]},"147":{"position":[[2472,7]]}}}],["eri_irq",{"_index":3718,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1781,7]]},"86":{"position":[[1577,7]]},"141":{"position":[[1424,7]]},"147":{"position":[[2521,7]]}}}],["err",{"_index":774,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9831,3],[9886,3],[10031,5],[10066,3],[10149,5],[10662,3],[10765,6],[12525,3],[12580,3],[12725,5],[12760,3],[12843,5],[12971,5],[13453,5],[13516,5],[13565,3],[13629,5],[15392,3],[15447,3],[15592,5],[15627,3],[15710,5],[15838,5],[16223,5],[16287,5],[16336,3],[16400,5]]},"69":{"position":[[13713,3],[13768,3],[13939,3],[14526,3],[15136,3],[15190,3],[15375,3],[15892,3],[15997,3],[17734,3],[17785,3],[17857,5],[18084,3],[18175,5],[18287,3],[18355,5]]},"71":{"position":[[13689,4],[14011,4],[29133,4],[29330,4],[30003,3],[31708,4],[31905,4],[32578,3]]},"75":{"position":[[27942,4],[27985,3],[28134,5],[28606,3],[28700,5],[29123,4],[29131,3],[29280,5],[29331,3],[29462,5],[30056,3],[30150,5],[35868,3],[37084,3],[37178,5],[38881,3],[39012,5]]},"76":{"position":[[7303,3],[7358,3],[8144,3],[8199,3],[9601,3],[9656,3],[10343,3],[10398,3],[11681,3],[17471,3],[23201,3]]},"79":{"position":[[8006,3],[8160,5],[8232,3],[8298,6]]},"80":{"position":[[7751,3],[7860,3],[8085,3]]},"83":{"position":[[20572,3],[20627,3],[21324,3],[21535,3],[23131,3],[23186,3],[23808,3],[23863,3],[24956,3],[25353,3],[25408,3],[26218,3],[26652,3],[26707,3],[26878,3],[26961,5],[27238,3]]},"84":{"position":[[6103,3],[6158,3],[6303,5],[6820,3],[6875,3],[7020,5],[7612,3],[7667,3],[7812,5],[8731,3],[8809,6]]},"89":{"position":[[3967,3],[4069,5],[4118,3],[4201,5]]},"90":{"position":[[3599,3],[3701,5],[3750,3],[3833,5]]},"91":{"position":[[4236,3],[4339,5],[4388,3],[4472,5]]},"92":{"position":[[12802,4],[12963,3],[13218,3],[13342,3],[13482,3],[13731,4],[13800,3],[14088,3],[14556,3],[15073,4],[15168,3],[15393,3],[15582,3],[15767,3],[15955,3],[16186,3]]},"105":{"position":[[12326,3],[12381,3],[13080,3],[13135,3],[13885,3],[13940,3],[15272,3],[15674,3],[15729,3],[15877,5],[16389,3],[16479,6],[28424,3],[31911,3]]},"106":{"position":[[13709,3],[13763,3],[13904,5],[13913,3],[14084,6]]},"108":{"position":[[3874,3],[3927,3],[4073,6]]},"124":{"position":[[8024,4],[8138,3],[8535,3],[9141,3],[10673,4],[10735,3],[11078,3],[11513,3],[11853,3]]},"125":{"position":[[9929,3],[10047,5],[10212,3],[10331,5],[10763,3],[10923,5],[10975,3],[11065,5],[11376,3],[11506,5],[12307,3],[12436,5]]},"127":{"position":[[4068,3],[5766,3],[7463,3]]},"129":{"position":[[5566,3],[7391,3],[9517,3],[9626,4],[9744,4],[11603,3]]},"131":{"position":[[9756,3],[11650,3],[14005,3],[14114,4],[14230,4],[16337,3]]},"133":{"position":[[11297,3],[13644,3],[13904,3],[14274,3],[14495,3],[14562,4],[14739,4],[14931,3],[15044,4],[15186,4],[15431,3],[17778,3],[18068,3],[18440,3],[18661,3],[18728,4],[18905,4],[19097,3],[19210,4],[19352,4],[19735,3],[22082,3],[22372,3],[22744,3],[22965,3],[23556,3],[23623,4],[23800,4],[23992,3],[24105,4],[24247,4],[24638,3],[27096,3],[27386,3],[27947,3],[28168,3],[28812,3],[28879,4],[29056,4],[29248,3],[30087,3],[30206,3],[30319,4],[30461,4],[30908,3],[33249,3],[33509,3],[33879,3],[34100,3],[34167,4],[34344,4],[34536,3],[34644,4],[34786,4],[35009,3],[37364,3],[37654,3],[38026,3],[38247,3],[38314,4],[38491,4],[38683,3],[38797,4],[38939,4],[39322,3],[41669,3],[41959,3],[42331,3],[42552,3],[42619,4],[42796,4],[42988,3],[43101,4],[43243,4],[43463,3],[45921,3],[46211,3],[46746,3],[46967,3],[47514,3],[47581,4],[47758,4],[47950,3],[48590,3],[48709,3],[48822,4],[48964,4]]},"135":{"position":[[8519,3],[8578,3],[8758,3],[9608,3],[9667,3],[9973,3],[10629,3],[11149,3],[11324,3],[11458,3]]},"136":{"position":[[7841,3],[7892,3],[8035,5],[8333,3],[8383,3],[8526,5],[9005,3],[9054,3],[9197,5],[9536,3],[9738,3],[9820,6],[11329,3]]},"138":{"position":[[7910,4],[8007,3],[8172,5],[8415,3],[8538,5],[9028,3],[9150,5],[9870,4],[9932,3],[10097,5],[10282,3],[10404,5],[10724,3],[10860,5],[11087,3],[11191,5]]},"139":{"position":[[10067,3],[10146,5],[10155,3],[10245,5],[10254,3],[10344,5],[12151,3],[12282,5],[12291,3],[12383,6]]},"140":{"position":[[7470,3],[7547,3],[7635,3],[9492,3],[9622,3]]},"142":{"position":[[9505,3],[9563,3],[9706,5],[9752,3],[9874,5],[10609,3],[10667,3],[10810,5],[10982,3],[11120,5],[11647,3],[11785,5],[12173,3],[12347,3],[12475,5],[12520,3],[12663,6]]},"146":{"position":[[5592,3],[5647,3],[5792,5],[5882,3],[5955,5],[6672,3],[6736,5],[6933,3],[7015,5],[7078,3],[7186,6],[8222,3],[8444,3],[8526,5],[8567,3],[8814,3],[8959,5],[9049,3],[9122,5],[9839,3],[9903,5],[11980,3],[12035,3],[12180,5],[12270,3],[12343,5],[13176,3],[13258,5],[13321,3],[13389,5],[13633,3],[13701,5],[13930,3],[14034,5],[14083,3],[14231,5]]},"148":{"position":[[5141,3],[5289,3],[5432,5],[5519,3],[5579,5],[5725,3],[5789,5],[6268,3],[6389,3],[6460,5],[6583,3],[6655,5],[6741,3],[6854,3],[8065,3],[8210,5],[8472,3],[8532,5],[8907,3],[8992,5],[9134,3],[9198,5],[10117,3],[10181,5],[11026,3],[11741,3],[11813,5],[12524,3],[12595,5],[13232,3],[13317,5]]},"150":{"position":[[7495,4],[7536,3],[8102,3],[8424,3],[9073,4],[9458,3],[10002,3],[10219,3],[10663,3],[11516,3],[11628,3],[12890,3],[13906,3],[14696,3],[19298,3],[26452,3]]}}}],["err);}void",{"_index":815,"t":{},"d":{},"k":{},"b":{"68":{"position":[[12470,10],[15337,10]]},"146":{"position":[[8675,10]]},"148":{"position":[[6801,10]]}}}],["err;#ifdef",{"_index":8228,"t":{},"d":{},"k":{},"b":{"150":{"position":[[12349,10]]}}}],["err_adj_cfg",{"_index":6914,"t":{},"d":{},"k":{},"b":{"136":{"position":[[772,12],[16481,11]]},"137":{"position":[[4494,12],[7798,12]]}}}],["err_cfg2",{"_index":6983,"t":{},"d":{},"k":{},"b":{"136":{"position":[[9783,11]]}}}],["err_ipl",{"_index":5390,"t":{},"d":{},"k":{},"b":{"107":{"position":[[1693,7]]}}}],["err_irq",{"_index":5394,"t":{},"d":{},"k":{},"b":{"107":{"position":[[1875,7]]}}}],["error",{"_index":540,"t":{"113":{"position":[[52,5]]}},"d":{},"k":{},"b":{"67":{"position":[[13970,6]]},"68":{"position":[[9950,7],[12644,7],[15511,7]]},"69":{"position":[[13832,7],[15254,7]]},"71":{"position":[[1393,5],[6954,5],[6973,5],[7003,5],[7315,5],[7398,5],[7533,5],[11241,5],[11255,5],[11266,6],[11302,5],[11320,5],[29190,5],[29407,5],[29440,6],[30085,5],[30209,6],[31037,5],[31137,6],[31765,5],[31982,5],[32015,6],[32660,5],[32784,6],[33612,5],[33712,6],[47999,5],[48192,5]]},"74":{"position":[[1159,5],[1212,5],[1249,5],[2316,5],[2323,5],[2987,5],[7992,5],[8037,5],[8312,5],[8504,5]]},"75":{"position":[[1839,5],[1898,5],[1908,5],[1914,5],[1928,5],[2772,5],[2883,5],[2922,5],[2980,6],[3025,5],[3144,7],[14534,5],[14591,5],[20162,5],[22437,6],[22445,5],[22503,5],[22594,5],[22639,5],[22718,7],[22726,5],[22920,5],[22983,5],[25123,7],[25176,5],[27551,6],[27629,6],[27666,5],[27731,7],[27748,5],[28053,7],[29199,7],[30314,5],[31605,5],[31980,5],[32248,5],[32694,5],[33098,5],[33149,6],[33186,5],[33207,5],[33260,5],[33281,5],[33604,6],[33643,6],[33680,6],[33717,6],[33764,5],[33782,6],[33828,5],[33845,6],[33902,6],[33938,6],[34343,6],[34393,6],[35183,5]]},"76":{"position":[[7425,7],[8266,7],[9723,7],[10465,7],[11541,5],[17331,5],[23268,7]]},"79":{"position":[[8079,7],[12667,5]]},"80":{"position":[[7920,7]]},"83":{"position":[[2993,5],[3265,5],[12077,5],[12136,5],[12178,5],[12290,6],[12545,5],[12624,6],[20693,7],[21601,7],[23252,7],[23929,7],[25474,7],[26771,7],[31475,5],[31637,5],[40136,5]]},"84":{"position":[[3381,5],[6222,7],[6939,7],[7731,7]]},"85":{"position":[[1790,5]]},"86":{"position":[[1586,5]]},"87":{"position":[[18501,5]]},"88":{"position":[[7406,5],[7438,5],[7472,5],[7499,5],[13661,5],[13834,6],[39707,5],[39812,5],[39912,5],[40151,5],[40217,5],[40302,5],[47670,5],[47719,5],[47916,5],[48116,5],[48220,5]]},"92":{"position":[[13033,7],[13870,7],[15228,7]]},"105":{"position":[[12448,7],[13202,7],[14007,7],[15796,7]]},"106":{"position":[[12050,5],[12113,5],[12154,5],[12244,5],[13823,7],[14003,7],[21050,5],[22221,5],[22807,5],[23903,5]]},"107":{"position":[[895,7],[918,5],[937,6],[1898,5],[9248,6],[9339,5]]},"108":{"position":[[3992,7]]},"111":{"position":[[76,5]]},"113":{"position":[[57,5],[1959,5],[3083,6],[4097,6],[4167,5],[4250,5],[4604,6],[4678,6],[4711,6],[6679,6],[6936,6],[7013,6],[7085,5],[7208,5],[7596,5],[7655,5],[7734,5],[7807,5],[8963,5],[9035,5],[9110,5],[9175,5],[9303,5],[9681,5],[9869,5],[11717,6],[14140,5],[14397,5],[15102,6],[15461,6],[15549,5],[15645,5]]},"124":{"position":[[5191,5],[6586,5],[8224,7],[10821,7]]},"125":{"position":[[1409,5],[3999,5],[5658,5],[10365,5],[10842,7],[15918,7],[17028,7]]},"127":{"position":[[5845,7]]},"129":{"position":[[1888,6],[4773,6],[7461,7],[8329,6],[8738,6],[15670,6]]},"131":{"position":[[11720,7],[14270,5]]},"133":{"position":[[10728,5],[10825,5],[10861,5],[11000,6],[13720,7],[17854,7],[22158,7],[23392,5],[27172,7],[28595,5],[33325,7],[37440,7],[41745,7],[45997,7],[47297,5],[50105,6]]},"134":{"position":[[11964,5]]},"135":{"position":[[1414,5],[1518,5],[2632,5],[5350,5],[6056,7],[6655,6],[8640,7],[9729,7],[11520,7],[17008,5],[17471,5],[18208,5],[19366,5],[20577,5],[22322,5],[22408,5]]},"136":{"position":[[2754,5],[2777,5],[2813,5],[2858,7],[3195,5],[3281,5],[3394,5],[3488,5],[3553,5],[4992,5],[5095,5],[5221,5],[5245,5],[7954,7],[8445,7],[9116,7],[9411,5],[9468,5],[9694,5],[16587,5],[16682,5],[16905,5]]},"137":{"position":[[193,5],[1084,7],[1267,5],[1454,5],[1527,5],[1610,5],[3015,5],[7837,5],[7998,5],[10847,5],[11261,5],[11571,5]]},"138":{"position":[[4355,5],[5281,5],[6695,5],[8091,7],[10016,7],[14043,5],[16879,5]]},"139":{"position":[[1478,6],[3313,5],[3378,5],[3567,5],[3756,5],[3860,5],[4065,5],[4099,5],[4146,5],[7025,5],[7096,5],[18802,5],[19926,5],[21153,5],[24327,5],[25285,6],[25637,5],[25696,6],[25720,5],[27589,5]]},"140":{"position":[[1499,6],[3083,5],[3272,5],[3376,5],[3581,5],[3615,5],[3662,5],[4028,5],[5461,5],[5547,5],[5594,5],[5724,5],[17404,5],[18320,5],[19238,5],[22179,5],[23602,5],[24538,5]]},"141":{"position":[[1433,5],[1630,5],[1902,5],[10494,5],[10511,5],[10815,5],[10872,5],[11382,6],[11433,6],[11470,6],[11509,6],[11548,6],[11594,6]]},"142":{"position":[[1556,5],[1660,5],[1728,5],[1771,5],[3441,5],[3961,5],[6796,7],[7829,6],[9625,7],[10729,7],[12582,7],[18843,5],[19419,5],[20200,5],[21259,5],[22371,5],[24096,5]]},"146":{"position":[[5711,7],[8878,7],[12099,7],[14802,5]]},"147":{"position":[[2481,5],[2530,5],[10118,5],[10167,5],[10220,5],[10272,5]]},"148":{"position":[[836,6],[3365,5],[5351,7],[5953,6],[6564,5],[6728,6],[7746,5],[8129,7],[11637,5],[11722,5],[12394,5]]},"149":{"position":[[8134,5],[8823,5],[8939,5]]},"152":{"position":[[158,5]]}}}],["error/transmit",{"_index":2341,"t":{},"d":{},"k":{},"b":{"75":{"position":[[14357,14]]}}}],["error/transmit/rec",{"_index":2159,"t":{},"d":{},"k":{},"b":{"74":{"position":[[2919,22]]}}}],["error_cod",{"_index":2138,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1237,10]]}}}],["error_count_rec",{"_index":2137,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1183,19]]}}}],["error_count_transmit",{"_index":2135,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1128,20]]}}}],["error_interrupt",{"_index":2517,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31962,16]]}}}],["error_irq",{"_index":2160,"t":{},"d":{},"k":{},"b":{"74":{"position":[[2976,9]]}}}],["error_rate_x_1000",{"_index":7218,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12073,17],[12222,18]]},"140":{"position":[[9415,17],[9562,18]]}}}],["erroradjustmentset",{"_index":7047,"t":{},"d":{},"k":{},"b":{"137":{"position":[[4407,18],[7639,18]]}}}],["esi",{"_index":2403,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20174,5],[32990,3],[35199,6]]}}}],["essenc",{"_index":3115,"t":{},"d":{},"k":{},"b":{"80":{"position":[[1218,8]]}}}],["etaskgetst",{"_index":6348,"t":{},"d":{},"k":{},"b":{"128":{"position":[[29024,15],[29086,15]]}}}],["etc",{"_index":1967,"t":{},"d":{},"k":{},"b":{"71":{"position":[[29533,4],[32108,4]]},"108":{"position":[[3305,4]]},"109":{"position":[[1527,4]]},"139":{"position":[[1485,4],[25182,4]]},"140":{"position":[[1506,4],[23131,4]]},"145":{"position":[[12191,5]]}}}],["ether",{"_index":4453,"t":{},"d":{},"k":{},"b":{"92":{"position":[[2324,6],[2338,5]]}}}],["etherc/edmac",{"_index":5708,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9283,12],[9661,12]]}}}],["ethernet",{"_index":1606,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10658,8],[10727,8],[10787,8],[11652,8],[11707,8],[11763,8],[11819,8],[12185,8],[12240,8],[12295,8],[15847,8],[17063,8]]}}}],["etoh",{"_index":6716,"t":{},"d":{},"k":{},"b":{"134":{"position":[[1402,4],[1408,4],[1886,4],[1892,4]]}}}],["evalu",{"_index":7280,"t":{},"d":{},"k":{},"b":{"139":{"position":[[25008,9]]},"140":{"position":[[22903,9]]}}}],["even",{"_index":93,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1646,4]]},"1":{"position":[[769,4]]},"76":{"position":[[2570,4]]},"83":{"position":[[5758,4]]},"84":{"position":[[2976,4]]},"88":{"position":[[3648,4],[17453,4],[19960,4]]},"105":{"position":[[4922,4]]},"108":{"position":[[3699,4]]},"128":{"position":[[13975,4],[20096,4]]},"135":{"position":[[1121,4],[6941,4],[7004,4],[7693,5]]},"136":{"position":[[6899,4]]},"138":{"position":[[14222,4],[15172,4],[16352,4],[17054,4],[17833,4]]},"139":{"position":[[3025,4]]},"140":{"position":[[2773,4]]},"141":{"position":[[1781,4],[10054,4],[10138,4]]},"142":{"position":[[1205,4],[3695,4],[3723,4],[3807,4],[4922,4],[8115,4],[8178,4],[17007,4]]},"147":{"position":[[2079,5],[10773,4]]},"148":{"position":[[4645,4]]}}}],["event",{"_index":71,"t":{"80":{"position":[[45,5]]}},"d":{},"k":{},"b":{"0":{"position":[[1265,5]]},"67":{"position":[[409,5],[1348,5],[1368,6],[2120,5],[13575,5]]},"69":{"position":[[1541,5],[3262,7],[4026,6],[6268,5],[6354,5],[9778,5],[9850,5],[12652,6],[12913,5],[14755,6],[15493,7],[16228,6],[17339,7],[17476,5],[17584,7],[17624,6],[18390,6],[19744,5],[28379,7],[28856,5]]},"71":{"position":[[364,6],[3583,5],[5234,5],[5409,6],[6109,5],[11668,5],[31011,5],[33586,5],[39861,6]]},"72":{"position":[[353,5]]},"74":{"position":[[311,5],[2285,5],[2292,5],[7946,5],[8006,6],[8051,6],[8090,6],[8139,6],[8370,6],[8418,6],[8467,6]]},"75":{"position":[[17176,7],[27091,7],[27162,6],[27313,5],[27408,6],[27448,5],[27803,5],[28741,5],[30206,5]]},"76":{"position":[[6649,6],[6716,6],[7832,7],[8980,7],[9403,7],[12675,5],[12761,5],[19480,5],[19735,6],[20045,5],[20273,6]]},"79":{"position":[[1384,6],[2999,6],[6060,5],[6364,5],[6722,5],[9098,5],[9105,5],[11118,5],[12520,6]]},"80":{"position":[[668,5],[705,5],[1174,5],[1345,6],[1776,5],[1815,5],[1876,6],[1951,7],[2258,6],[2372,5],[2432,5],[2721,6],[2738,5],[2807,5],[2974,7],[3019,5],[3101,5],[3148,6],[3215,6],[3521,5],[3627,5],[3746,5],[4129,5],[4227,5],[4541,6],[5033,5],[5130,5],[5218,6],[8065,5],[8806,5],[8936,5],[9984,5],[9997,5],[10156,5],[10641,5],[11151,5],[11532,5],[11843,5]]},"81":{"position":[[40,5],[398,5],[480,5],[1385,5],[1695,5],[2033,5],[2046,5],[2200,5],[2423,5],[2588,5],[2621,5],[2805,5],[3131,5],[3401,5],[4362,5],[4517,5],[4572,5],[4613,5]]},"83":{"position":[[1709,7],[2145,7],[2751,7],[3290,5],[10341,6],[10447,6],[13052,5],[13075,5],[13139,5],[13205,5],[13269,5],[13669,6],[13904,6],[14586,6],[14879,6],[15017,6],[16850,6],[18446,5],[18461,5],[18551,7],[18577,5],[18658,5],[18729,5],[18810,5],[19388,6],[19486,5],[19574,5],[19653,6],[19731,5],[20093,5],[20197,6],[20333,5],[21040,7],[21363,5],[22311,7],[22355,8],[22934,7],[27338,6],[29845,7],[29905,6],[30476,5],[30552,5],[30628,5],[30709,5],[30789,5],[30868,5],[31067,5],[33441,5],[34924,6],[34979,6],[35034,6],[35089,6],[35144,6],[35199,6],[35254,6],[35309,6],[35344,5],[36835,6],[36898,6],[36961,6],[37024,6],[37087,6],[37150,6],[37213,6],[37276,6],[37339,6],[37402,6],[37465,6],[37528,6],[37591,6],[37654,6],[37717,6],[37780,6],[42155,6],[42694,6],[42791,7],[42837,7],[42883,7],[42941,7],[47430,5],[49017,5],[49154,6],[49462,5],[49698,6]]},"84":{"position":[[1130,7],[5825,6],[6577,7],[12878,5],[13253,5]]},"85":{"position":[[266,5],[944,5],[951,5],[9414,6]]},"86":{"position":[[259,5],[929,5],[936,5],[7104,6]]},"87":{"position":[[3452,5],[3494,5],[3513,5],[3597,6],[14905,7],[14963,7],[16153,7],[16208,7],[17273,6],[17350,6],[17763,6],[18145,6],[20082,5]]},"88":{"position":[[13671,5],[14100,6],[17835,5],[25431,7],[25544,7],[28308,7],[29420,5],[29857,5],[32793,7],[33978,7],[35175,5],[36417,7],[37891,7],[38859,7],[42944,5],[47926,5],[48634,5]]},"89":{"position":[[766,5]]},"90":{"position":[[766,5]]},"91":{"position":[[783,5]]},"92":{"position":[[2113,5],[2156,5],[2447,5],[2471,5],[5172,5],[6605,5],[7093,5],[7191,5],[7233,5],[7937,5],[8035,5],[8077,5],[8781,5],[8879,5],[8921,5],[9625,5],[9723,5],[9765,5],[10767,6],[10901,5],[11099,5],[11222,5],[11267,5],[11382,5],[11535,5],[11825,6],[11958,5],[12129,5],[12327,5],[12372,5],[14804,7],[14820,5],[15373,5],[15893,5],[16062,5],[17335,5],[17410,5],[18240,5],[18690,5],[26736,5],[26866,5],[26937,5],[27071,5],[27394,5],[27526,5],[27552,6],[27617,5],[27643,6],[27703,5],[27729,6],[31738,5],[31826,5],[31942,5],[32767,5],[32857,5],[33005,5],[33055,5],[36377,5],[36446,5],[36632,5],[36748,5],[37673,5],[37760,5],[37911,5],[37991,5],[38266,5]]},"93":{"position":[[4369,5],[4559,5],[4788,5],[4878,5],[4962,6],[6458,5],[6615,5],[6865,5],[6976,5],[7048,5],[7162,5]]},"105":{"position":[[12085,5],[12797,7],[26691,6]]},"107":{"position":[[816,5],[827,5],[9075,6]]},"108":{"position":[[689,6],[4384,6],[4507,5]]},"109":{"position":[[223,7]]},"115":{"position":[[406,5]]},"121":{"position":[[50,5]]},"125":{"position":[[1274,6],[3555,6],[6140,5],[6201,5],[6278,5],[6342,5],[6406,5],[9615,7],[9638,6],[9688,6],[9794,6],[9843,6],[10078,6],[10127,6],[10371,5]]},"126":{"position":[[4366,5]]},"129":{"position":[[10583,5],[10599,6]]},"130":{"position":[[6649,5]]},"131":{"position":[[14845,5],[14861,6]]},"132":{"position":[[5791,5]]},"133":{"position":[[49648,5],[49664,6],[50145,5],[50161,6]]},"134":{"position":[[11970,6],[13155,5]]},"135":{"position":[[1377,6],[8929,6],[9103,7],[10160,6],[10816,6]]},"136":{"position":[[1429,5]]},"137":{"position":[[1000,5],[1011,5],[9967,6]]},"138":{"position":[[13962,6],[16798,6]]},"139":{"position":[[1426,5],[9066,5],[9494,5],[10510,5],[10537,7],[23972,5],[27244,5]]},"140":{"position":[[1447,5],[6940,5],[7880,5],[7907,7],[21824,5],[24193,5]]},"141":{"position":[[821,5],[828,5],[11204,6]]},"142":{"position":[[1519,6],[9932,6],[10105,7],[11178,6],[11843,6]]},"144":{"position":[[1243,5],[1254,5],[1366,5],[10715,6],[10888,5],[11098,5],[11311,6]]},"145":{"position":[[6461,5],[6533,5],[6908,5],[6980,5],[7510,5],[8148,5]]},"146":{"position":[[7302,6]]},"147":{"position":[[289,5],[1486,5],[1493,5],[1568,6],[5251,5],[5366,5],[6080,5],[9925,5],[9989,6],[10039,6],[10124,6],[10173,6],[10226,6],[10278,6]]},"148":{"position":[[1301,6]]},"152":{"position":[[5314,5],[6815,5]]}}}],["event(",{"_index":1047,"t":{},"d":{},"k":{},"b":{"69":{"position":[[12763,9]]}}}],["event;}void",{"_index":5919,"t":{},"d":{},"k":{},"b":{"124":{"position":[[7976,12]]},"125":{"position":[[9506,12]]}}}],["event_control",{"_index":4547,"t":{},"d":{},"k":{},"b":{"92":{"position":[[17320,13],[18225,13]]}}}],["event_data",{"_index":4441,"t":{},"d":{},"k":{},"b":{"92":{"position":[[1033,12],[1152,11],[37465,11]]},"93":{"position":[[2569,11],[6804,11]]}}}],["event_num",{"_index":3210,"t":{},"d":{},"k":{},"b":{"81":{"position":[[903,10],[1985,10]]}}}],["event_numb",{"_index":3099,"t":{},"d":{},"k":{},"b":{"80":{"position":[[230,13],[9881,12]]}}}],["event_statu",{"_index":3870,"t":{},"d":{},"k":{},"b":{"87":{"position":[[3550,12]]},"88":{"position":[[17987,12]]}}}],["eventmcu",{"_index":983,"t":{},"d":{},"k":{},"b":{"69":{"position":[[3990,8]]},"146":{"position":[[2515,8]]}}}],["eventu",{"_index":5997,"t":{},"d":{},"k":{},"b":{"125":{"position":[[7087,10]]}}}],["eventvalu",{"_index":4525,"t":{},"d":{},"k":{},"b":{"92":{"position":[[15043,11],[16258,13]]}}}],["everyth",{"_index":499,"t":{},"d":{},"k":{},"b":{"67":{"position":[[11536,10]]},"74":{"position":[[7247,10]]},"78":{"position":[[3977,10]]},"81":{"position":[[3642,10]]},"82":{"position":[[5468,10]]},"85":{"position":[[8191,10]]},"86":{"position":[[5898,10]]},"87":{"position":[[14085,10]]},"93":{"position":[[8131,10]]},"94":{"position":[[4770,10]]},"101":{"position":[[4532,10]]},"103":{"position":[[3218,10]]},"107":{"position":[[7110,10]]},"109":{"position":[[5305,10]]},"126":{"position":[[3896,10]]},"137":{"position":[[9138,10]]},"141":{"position":[[7248,10]]},"143":{"position":[[10249,10]]},"144":{"position":[[9962,10]]},"145":{"position":[[9910,10]]},"147":{"position":[[9205,10]]},"149":{"position":[[5916,10]]}}}],["exact",{"_index":2352,"t":{},"d":{},"k":{},"b":{"75":{"position":[[15178,5]]},"113":{"position":[[2827,5]]},"128":{"position":[[20435,5],[26537,5]]}}}],["exactli",{"_index":5976,"t":{},"d":{},"k":{},"b":{"124":{"position":[[14728,8]]},"128":{"position":[[20509,7]]},"138":{"position":[[13191,8]]},"150":{"position":[[8037,7],[24130,7]]}}}],["exampl",{"_index":731,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5771,8],[7034,8],[9282,8],[9297,7],[9321,7],[10784,7],[10797,7],[13663,7]]},"69":{"position":[[3284,8],[13069,8],[13084,7],[13108,7],[14642,7],[14655,7],[16120,7],[16133,7]]},"71":{"position":[[45166,8]]},"75":{"position":[[19808,7],[19847,7],[23030,7],[24263,7],[25261,8],[25275,7],[25299,7],[26690,7],[26714,7],[28771,7],[30238,7],[35820,8],[37041,8],[38051,8],[38826,8]]},"76":{"position":[[6798,8],[7027,8],[7160,8],[7180,7],[7204,7],[7642,7],[7661,7],[7693,7],[7943,7],[8661,7],[8680,7],[8762,7],[10067,7],[10083,7],[10221,7],[10954,7],[16389,8],[16744,7],[19062,8],[19576,8],[20142,8],[20794,8],[21615,8],[22201,8],[23155,8]]},"77":{"position":[[3736,8],[3751,7],[3775,7],[4311,7],[4324,7],[8214,8]]},"79":{"position":[[7802,8],[7817,7],[7841,7]]},"80":{"position":[[1534,8],[1642,7],[5064,8],[5079,7],[5104,7]]},"83":{"position":[[17102,8],[17671,8],[17907,8],[18049,8],[19192,8],[19255,9],[20432,8],[20451,7],[20475,7],[20850,7],[20869,7],[20901,7],[21150,7],[21992,7],[22011,7],[22092,7],[23535,7],[23551,7],[23687,7],[24394,7],[25055,7],[25071,7],[25224,7],[26353,7],[26372,7],[26475,7]]},"84":{"position":[[5879,8],[5963,8],[5982,7],[6006,7],[6387,7],[6406,7],[6438,7],[6687,7],[7336,7],[7355,7],[7491,7],[8188,7]]},"88":{"position":[[22301,8],[22327,7],[22351,7],[26365,7],[26389,7],[30042,7],[30066,7],[33276,7],[33300,7],[35617,7],[35641,7],[36735,7],[36759,7],[38202,7],[38226,7]]},"89":{"position":[[3173,8],[3188,7],[3212,7],[3522,7]]},"90":{"position":[[2891,8],[2906,7],[2930,7],[3168,7]]},"91":{"position":[[3253,8],[3268,7],[3292,7],[3604,7]]},"92":{"position":[[12637,8],[12652,7],[12676,7],[13587,7],[13600,7],[14752,7],[14771,7],[31060,7],[35392,8],[36559,8],[38100,8],[39134,8],[40048,8],[40261,8]]},"105":{"position":[[12183,8],[12203,7],[12227,7],[12607,7],[12626,7],[12658,7],[12908,7],[13597,7],[13613,7],[13763,7],[14701,7],[15373,7],[15389,7],[15544,7],[28378,8],[29051,8],[29500,8],[30780,8],[31340,7],[34297,8]]},"106":{"position":[[13486,8],[13501,7],[13525,7]]},"108":{"position":[[3731,8],[3751,7],[3775,7],[4094,7],[4113,7],[4186,7]]},"116":{"position":[[971,9],[1310,8]]},"124":{"position":[[7089,8],[7104,7],[7128,7],[7196,7],[9785,7],[9959,7],[9983,7]]},"125":{"position":[[8097,8],[8112,7],[8136,7],[8203,7]]},"127":{"position":[[3897,8],[3912,7],[3936,7],[7450,8]]},"128":{"position":[[238,8],[11947,8],[15124,8],[15647,7],[18199,8],[22383,8],[24971,8]]},"129":{"position":[[5392,8],[5407,7],[5431,7],[11590,8]]},"131":{"position":[[9581,8],[9596,7],[9620,8],[16324,8]]},"133":{"position":[[11060,8],[11075,7],[11099,8]]},"135":{"position":[[8258,8],[8273,7],[8297,7],[9203,7],[11034,7]]},"136":{"position":[[7463,8],[7482,7],[7506,7],[8229,7],[8248,7],[8907,7],[8926,7],[9428,7],[9447,7],[11287,8],[15828,8]]},"138":{"position":[[7686,8],[7701,7],[7725,7],[7791,7],[9679,7]]},"139":{"position":[[9565,8],[9583,7],[11719,7],[25151,8]]},"140":{"position":[[6968,8],[6987,7],[9089,7],[23100,8]]},"142":{"position":[[9246,8],[9261,7],[9285,7],[10205,7],[12060,7]]},"146":{"position":[[4394,8],[4409,7],[4433,7],[7201,7],[7214,7],[9948,7],[9961,7]]},"148":{"position":[[1129,7],[5001,8],[5020,7],[5044,7],[5814,7],[5827,7],[5882,7],[6116,7],[10024,8],[10980,8],[11685,8],[12412,8],[13158,8]]},"150":{"position":[[7002,8],[7017,7],[7042,7],[7137,7],[8565,7],[8584,7],[8661,7],[9595,7],[10901,7],[10949,7],[11869,7],[11917,7],[12698,7],[19252,8],[26352,8]]},"151":{"position":[[1074,9],[1470,9],[1480,7],[2778,7]]}}}],["example_bcr_set",{"_index":4170,"t":{},"d":{},"k":{},"b":{"88":{"position":[[27066,20]]}}}],["example_callback",{"_index":7204,"t":{},"d":{},"k":{},"b":{"139":{"position":[[10438,16]]},"140":{"position":[[7808,16]]}}}],["example_dcr_set",{"_index":4171,"t":{},"d":{},"k":{},"b":{"88":{"position":[[27105,20]]}}}],["example_dynamic_address",{"_index":4146,"t":{},"d":{},"k":{},"b":{"88":{"position":[[23321,24]]}}}],["example_input",{"_index":2855,"t":{},"d":{},"k":{},"b":{"77":{"position":[[3985,13],[4262,15]]}}}],["example_master_dynamic_address",{"_index":4142,"t":{},"d":{},"k":{},"b":{"88":{"position":[[22895,31],[30614,31]]}}}],["example_master_static_address",{"_index":4141,"t":{},"d":{},"k":{},"b":{"88":{"position":[[22750,30],[30469,30]]}}}],["example_read_buffer_s",{"_index":4179,"t":{},"d":{},"k":{},"b":{"88":{"position":[[29037,25],[34562,26]]}}}],["example_static_address",{"_index":4145,"t":{},"d":{},"k":{},"b":{"88":{"position":[[23216,23],[26785,23],[30935,23]]}}}],["exce",{"_index":5623,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5377,7]]}}}],["exceed",{"_index":2375,"t":{},"d":{},"k":{},"b":{"75":{"position":[[17824,9]]},"84":{"position":[[3355,8]]},"107":{"position":[[9504,8],[9578,8]]}}}],["except",{"_index":156,"t":{},"d":{},"k":{},"b":{"1":{"position":[[1055,10]]},"71":{"position":[[2375,10],[2495,11],[2512,10],[2543,11],[2562,10],[2750,10],[2997,10],[3066,10],[38613,9],[39184,9]]},"75":{"position":[[3311,9]]},"83":{"position":[[20259,6]]},"145":{"position":[[3161,6],[11129,6]]}}}],["exceptionsmcu",{"_index":2284,"t":{},"d":{},"k":{},"b":{"75":{"position":[[3244,13]]}}}],["excess",{"_index":1037,"t":{},"d":{},"k":{},"b":{"69":{"position":[[11330,9]]},"75":{"position":[[11439,6],[23367,6]]}}}],["exchang",{"_index":3963,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16021,8],[17097,8],[17156,8]]}}}],["exclud",{"_index":6186,"t":{},"d":{},"k":{},"b":{"128":{"position":[[7969,7],[11500,8]]}}}],["exclus",{"_index":3132,"t":{},"d":{},"k":{},"b":{"80":{"position":[[3539,9]]}}}],["excut",{"_index":2066,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44447,7],[44781,7]]}}}],["execut",{"_index":1829,"t":{},"d":{},"k":{},"b":{"71":{"position":[[8460,7],[8726,7],[11104,9],[38394,9],[38961,9],[41086,9],[41181,9],[45911,9]]},"79":{"position":[[7330,9],[7519,9],[15594,8]]},"87":{"position":[[10811,9]]},"113":{"position":[[13579,9],[13691,9]]},"124":{"position":[[15815,8],[16766,8]]},"125":{"position":[[16023,8],[17133,8]]},"128":{"position":[[1467,7],[2754,9],[4923,8],[6626,9],[6879,7],[14141,7],[14256,10],[16161,9],[16318,9],[16474,9],[17790,7],[20587,8],[21199,9]]},"133":{"position":[[10323,7],[10808,7]]},"138":{"position":[[14921,8],[16128,8]]},"150":{"position":[[10351,7],[22074,8],[22495,8],[24365,8]]}}}],["exist",{"_index":1274,"t":{},"d":{},"k":{},"b":{"69":{"position":[[30135,5]]},"71":{"position":[[5128,8]]},"75":{"position":[[36124,5]]},"105":{"position":[[4621,5],[19733,5],[19818,5]]},"113":{"position":[[2207,6],[8080,5],[8156,5],[8238,5]]},"128":{"position":[[22997,6],[24316,6]]},"139":{"position":[[18518,5]]},"140":{"position":[[17137,5]]},"150":{"position":[[19658,5]]}}}],["exist0",{"_index":2616,"t":{},"d":{},"k":{},"b":{"76":{"position":[[2390,6]]}}}],["exit",{"_index":3994,"t":{},"d":{},"k":{},"b":{"87":{"position":[[18024,4]]},"88":{"position":[[13845,4]]},"108":{"position":[[4567,7],[4685,7]]},"128":{"position":[[23024,6],[24343,6]]},"129":{"position":[[2592,4],[8851,4],[17469,4]]},"130":{"position":[[5481,4]]},"143":{"position":[[2915,4],[9065,4]]},"150":{"position":[[1674,7],[5263,4],[5324,4],[22485,5]]}}}],["expand",{"_index":2012,"t":{"150":{"position":[[45,8]]}},"d":{},"k":{},"b":{"71":{"position":[[35429,8]]},"120":{"position":[[51,8]]},"143":{"position":[[206,8]]},"152":{"position":[[5126,8]]}}}],["expect",{"_index":3817,"t":{},"d":{},"k":{},"b":{"86":{"position":[[7374,8],[7472,8],[7573,8],[7710,8]]},"88":{"position":[[40085,9],[48623,9]]},"125":{"position":[[6155,8],[6222,8]]},"127":{"position":[[3609,7]]},"128":{"position":[[15067,6]]},"129":{"position":[[5131,7]]},"131":{"position":[[6952,7]]},"133":{"position":[[9172,7]]},"136":{"position":[[6180,8]]},"143":{"position":[[9694,8]]}}}],["expir",{"_index":2651,"t":{},"d":{},"k":{},"b":{"76":{"position":[[6600,7],[6995,7],[7728,8],[23034,11]]},"83":{"position":[[16801,7],[17298,7],[20936,8]]},"84":{"position":[[5776,7],[6473,8],[15624,11]]},"105":{"position":[[11451,7],[12693,8]]},"144":{"position":[[6690,8],[6856,10],[7096,7],[7439,11],[7697,7],[10819,7]]}}}],["explan",{"_index":6227,"t":{},"d":{},"k":{},"b":{"128":{"position":[[13267,11]]}}}],["explicitli",{"_index":55,"t":{},"d":{},"k":{},"b":{"0":{"position":[[965,10]]},"71":{"position":[[3505,10]]},"77":{"position":[[8346,10]]}}}],["express",{"_index":34,"t":{},"d":{},"k":{},"b":{"0":{"position":[[508,7]]}}}],["extarn",{"_index":4889,"t":{},"d":{},"k":{},"b":{"105":{"position":[[6255,8],[6501,8]]}}}],["extbr",{"_index":4247,"t":{},"d":{},"k":{},"b":{"88":{"position":[[41858,5]]}}}],["extbrh/l",{"_index":4323,"t":{},"d":{},"k":{},"b":{"88":{"position":[[49037,9],[49218,8],[49428,8],[49535,8]]}}}],["extend",{"_index":841,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16966,8]]},"69":{"position":[[3081,9],[3193,8],[12599,8],[19043,8]]},"74":{"position":[[1853,8],[9579,8]]},"75":{"position":[[1575,8],[26099,8],[31792,8]]},"77":{"position":[[4971,6]]},"87":{"position":[[5041,8]]},"88":{"position":[[2725,8],[3724,8],[3853,8],[3927,8],[5535,8],[8482,8],[8607,8],[8664,8],[8772,8],[8829,8],[8989,8],[9045,8],[9180,8],[15361,8],[15554,8],[15730,8],[15985,8],[16088,8],[16373,8],[21090,8],[41869,8],[46164,8],[48453,8]]},"92":{"position":[[18663,8]]},"93":{"position":[[1278,6]]},"124":{"position":[[13045,8],[14968,8]]},"125":{"position":[[13762,8],[14932,8]]},"126":{"position":[[1325,8]]},"130":{"position":[[1692,8]]},"132":{"position":[[2247,8]]},"133":{"position":[[50522,8]]},"134":{"position":[[3909,8]]},"135":{"position":[[12283,8],[13451,8]]},"136":{"position":[[10079,6]]},"138":{"position":[[12505,8],[13431,8]]},"141":{"position":[[2470,8]]},"142":{"position":[[13446,8]]},"143":{"position":[[3169,8],[11692,8]]},"146":{"position":[[15269,8]]},"150":{"position":[[5527,6],[5642,6],[18195,6],[18457,6]]},"151":{"position":[[848,6]]}}}],["extens",{"_index":363,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3601,9]]},"75":{"position":[[19902,9]]},"76":{"position":[[12360,9],[23134,9]]},"79":{"position":[[9846,10],[9862,9],[11670,10],[11686,9]]},"83":{"position":[[28946,9],[30265,9],[46827,9]]},"84":{"position":[[9293,9],[15722,9],[15756,9],[15855,9]]},"88":{"position":[[21676,9]]},"91":{"position":[[5529,10]]},"105":{"position":[[18281,9],[19495,9],[28357,9]]},"106":{"position":[[14770,10],[14786,9]]},"107":{"position":[[1515,9]]},"128":{"position":[[17868,10]]},"144":{"position":[[356,9],[2721,9]]},"145":{"position":[[3452,9]]},"148":{"position":[[9621,10],[9637,9]]},"149":{"position":[[2003,10]]},"150":{"position":[[5502,9],[5516,9],[5546,9],[5580,9],[5617,9],[5631,9],[5661,9],[5694,9],[18140,10],[18401,10]]}}}],["extent",{"_index":51,"t":{},"d":{},"k":{},"b":{"0":{"position":[[890,6],[1234,6]]}}}],["extern",{"_index":529,"t":{"82":{"position":[[45,8]]},"89":{"position":[[45,8]]},"90":{"position":[[45,8]]},"91":{"position":[[45,8]]}},"d":{},"k":{},"b":{"67":{"position":[[13426,8]]},"68":{"position":[[1572,8],[1798,8],[3786,8],[3914,8],[5131,8],[5154,8],[10255,8],[17486,8],[19075,8],[22474,8]]},"69":{"position":[[1570,8],[14119,8],[31983,8],[33397,9],[34315,8]]},"70":{"position":[[13135,8]]},"71":{"position":[[1356,8],[3204,8]]},"74":{"position":[[9224,8]]},"75":{"position":[[15080,8],[15122,10],[23987,8],[28842,8],[28911,8],[29302,8],[38852,8]]},"76":{"position":[[19471,8],[20036,8]]},"79":{"position":[[3270,8],[3350,8],[3430,8],[3565,8],[10391,8],[13952,8]]},"82":{"position":[[46,8],[81,8],[185,8],[207,8],[253,8],[279,8],[305,8],[1614,8],[1842,8],[2167,8],[2204,8],[3452,8],[3666,8],[3854,8],[4071,8],[5303,8],[5941,8],[6030,8],[6653,8]]},"83":{"position":[[1725,8],[2696,8],[9166,8],[9276,8],[9385,8],[9497,8],[9601,8],[10108,8],[10199,8],[10295,8],[10401,8],[19822,8],[19909,8],[38026,8],[47393,8],[47417,8],[49008,8],[49453,8]]},"84":{"position":[[12869,8],[13244,8]]},"88":{"position":[[16889,8],[16967,8]]},"89":{"position":[[691,8],[889,8],[1008,8],[1077,8],[1495,8],[1882,8],[1983,8],[2317,8],[2385,8],[2984,8],[3931,8],[4092,8],[5407,8],[5524,8],[6293,8],[6845,8],[8390,8]]},"90":{"position":[[691,8],[889,8],[1066,8],[1830,8],[1931,8],[2702,8],[3563,8],[3724,8],[5032,8],[5843,8],[6395,8],[7940,8]]},"91":{"position":[[708,8],[907,8],[1086,8],[1883,8],[1985,8],[3062,8],[4200,8],[4362,8],[6587,8],[7466,8],[8012,8],[9553,8]]},"105":{"position":[[1542,8],[6374,8],[6897,8],[22485,8],[22563,8],[22641,8],[22719,8],[22906,8],[22985,8],[23063,8],[23308,8],[23386,8],[23464,8],[23796,8],[23889,8],[25065,8]]},"106":{"position":[[893,8],[12706,8],[12751,8],[12796,8],[12841,8],[12884,8],[12927,8]]},"114":{"position":[[49,8],[150,8],[178,8],[279,8],[307,8],[421,8]]},"115":{"position":[[433,8],[481,8],[1355,8]]},"124":{"position":[[5300,8],[5378,8]]},"125":{"position":[[4107,8],[4185,8]]},"136":{"position":[[3641,8],[3957,8],[4704,8],[4752,8]]},"138":{"position":[[5395,8],[5473,8]]},"139":{"position":[[1656,8],[5571,8],[5600,8],[7378,8],[7408,8],[7437,8],[7547,8],[15375,8],[15434,8],[15881,8]]},"140":{"position":[[6288,8],[6318,8],[6347,8],[6456,8],[12174,8],[12232,8]]},"143":{"position":[[46,8]]},"146":{"position":[[6610,8],[9777,8],[18059,8],[19342,9],[20294,8]]},"150":{"position":[[6240,8],[6661,8],[6706,8],[6755,8]]},"152":{"position":[[3923,8],[4022,8],[4047,8],[4146,8],[4171,8],[4283,8],[6839,8],[6885,8],[7701,8]]}}}],["external_detection_mod",{"_index":3030,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10332,23]]}}}],["external_irq_api_t",{"_index":3220,"t":{},"d":{},"k":{},"b":{"82":{"position":[[428,18],[2076,18],[2131,18],[5728,18]]}}}],["external_irq_api_t::callbackset",{"_index":3245,"t":{},"d":{},"k":{},"b":{"82":{"position":[[4159,32]]},"89":{"position":[[7858,32]]},"90":{"position":[[7408,32]]},"91":{"position":[[9019,32]]}}}],["external_irq_api_t::clos",{"_index":3251,"t":{},"d":{},"k":{},"b":{"82":{"position":[[4984,26]]},"89":{"position":[[8429,26]]},"90":{"position":[[7979,26]]},"91":{"position":[[9592,26]]}}}],["external_irq_api_t::dis",{"_index":3241,"t":{},"d":{},"k":{},"b":{"82":{"position":[[3750,28]]},"89":{"position":[[6906,28]]},"90":{"position":[[6456,28]]},"91":{"position":[[8065,28]]}}}],["external_irq_api_t::en",{"_index":3237,"t":{},"d":{},"k":{},"b":{"82":{"position":[[3347,27]]},"89":{"position":[[6354,27]]},"90":{"position":[[5904,27]]},"91":{"position":[[7519,27]]}}}],["external_irq_api_t::open",{"_index":3225,"t":{},"d":{},"k":{},"b":{"82":{"position":[[861,24],[2840,25]]},"89":{"position":[[5448,25]]},"90":{"position":[[5073,25]]},"91":{"position":[[6628,25]]}}}],["external_irq_callback",{"_index":4372,"t":{},"d":{},"k":{},"b":{"89":{"position":[[3379,21],[3787,22]]},"90":{"position":[[3025,21],[3425,22]]},"91":{"position":[[3461,21],[4013,22]]}}}],["external_irq_callback_args_t",{"_index":3218,"t":{},"d":{},"k":{},"b":{"82":{"position":[[360,28],[642,28],[707,28],[1521,30],[1768,29],[2036,29],[2655,28],[4313,28]]},"89":{"position":[[458,28],[3401,29],[4962,29],[7627,28]]},"90":{"position":[[458,28],[3047,29],[4594,29],[7177,28]]},"91":{"position":[[462,28],[3483,29],[5362,29],[8788,28]]}}}],["external_irq_cfg_t",{"_index":3219,"t":{},"d":{},"k":{},"b":{"82":{"position":[[399,18],[898,19],[1005,18],[1060,18],[2352,18],[2902,18],[5632,18]]},"89":{"position":[[90,18],[3550,18],[5244,18]]},"90":{"position":[[90,18],[3196,18],[4876,18]]},"91":{"position":[[91,18],[3776,18],[6424,18]]}}}],["external_irq_cfg_t::p_callback",{"_index":3230,"t":{},"d":{},"k":{},"b":{"82":{"position":[[1736,31]]}}}],["external_irq_cfg_t::p_context",{"_index":3231,"t":{},"d":{},"k":{},"b":{"82":{"position":[[1931,29]]}}}],["external_irq_ctrl_t",{"_index":3222,"t":{},"d":{},"k":{},"b":{"82":{"position":[[507,19],[2315,21],[2412,21],[2471,21],[2534,21],[2730,21],[2866,20],[3375,20],[3779,20],[4192,20],[5011,20],[5547,19],[5842,19],[5904,19]]},"89":{"position":[[50,20],[170,20],[252,20],[338,20],[553,20],[5143,19],[6208,19],[6759,19],[7321,19],[8302,19]]},"90":{"position":[[50,20],[170,20],[252,20],[338,20],[553,20],[4775,19],[5758,19],[6309,19],[6871,19],[7852,19]]},"91":{"position":[[51,20],[172,20],[255,20],[342,20],[558,20],[6323,19],[7381,19],[7926,19],[8482,19],[9465,19]]}}}],["external_irq_instance_t",{"_index":3221,"t":{},"d":{},"k":{},"b":{"82":{"position":[[457,23],[5340,23],[5400,23]]}}}],["external_irq_pclk_div_by_1",{"_index":4377,"t":{},"d":{},"k":{},"b":{"89":{"position":[[3735,27]]},"90":{"position":[[3373,27]]},"91":{"position":[[3961,27]]}}}],["external_irq_pclk_div_by_32",{"_index":3264,"t":{},"d":{},"k":{},"b":{"82":{"position":[[6958,27]]}}}],["external_irq_pclk_div_by_64",{"_index":3265,"t":{},"d":{},"k":{},"b":{"82":{"position":[[7021,27]]}}}],["external_irq_pclk_div_by_8",{"_index":3263,"t":{},"d":{},"k":{},"b":{"82":{"position":[[6897,26]]}}}],["external_irq_pclk_div_t",{"_index":3224,"t":{},"d":{},"k":{},"b":{"82":{"position":[[582,23],[1365,23],[6554,23],[6612,23]]}}}],["external_irq_trig_both_edg",{"_index":3260,"t":{},"d":{},"k":{},"b":{"82":{"position":[[6448,27]]}}}],["external_irq_trig_level_low",{"_index":3261,"t":{},"d":{},"k":{},"b":{"82":{"position":[[6498,27]]}}}],["external_irq_trig_ris",{"_index":3259,"t":{},"d":{},"k":{},"b":{"82":{"position":[[6400,24]]},"89":{"position":[[3654,25]]},"90":{"position":[[3292,25]]},"91":{"position":[[3880,25]]}}}],["external_irq_trigger_t",{"_index":3223,"t":{},"d":{},"k":{},"b":{"82":{"position":[[550,22],[1312,22],[6185,22],[6242,22]]}}}],["external_trigger_filt",{"_index":804,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11341,24],[14208,24],[17458,23]]}}}],["extner",{"_index":3250,"t":{},"d":{},"k":{},"b":{"82":{"position":[[4637,8]]}}}],["extra",{"_index":822,"t":{},"d":{},"k":{},"b":{"68":{"position":[[13359,5]]},"75":{"position":[[21107,5]]},"83":{"position":[[4511,5],[4627,5],[4735,6],[12299,5],[12472,5],[12673,5],[12844,5],[13015,5],[13443,5],[13678,5],[13913,5],[14125,5],[14341,5],[14703,5],[14832,5],[15081,5],[15098,5],[15167,5]]},"84":{"position":[[4215,5]]},"105":{"position":[[6757,5],[8704,5],[8941,5],[9178,5],[9395,5],[9526,5],[9692,5],[9858,5],[10039,5],[10170,5],[10335,5],[10500,5],[10681,5],[10698,5],[10774,5]]},"113":{"position":[[1262,5]]},"135":{"position":[[2784,5],[2891,5],[3090,5],[3477,5],[3745,5],[4019,5],[4294,5],[4409,5],[4529,5]]},"139":{"position":[[4751,5],[4868,5],[4976,5],[5237,5],[5498,5],[5794,5],[5912,5],[6085,5],[6346,5]]},"140":{"position":[[4520,5],[4709,5],[4886,5],[5155,5]]},"150":{"position":[[5706,5],[5796,5],[5887,5]]}}}],["f",{"_index":3517,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37146,3],[37650,3]]},"106":{"position":[[15388,1]]}}}],["facil",{"_index":6295,"t":{},"d":{},"k":{},"b":{"128":{"position":[[21065,8],[21320,8]]}}}],["fact",{"_index":6241,"t":{},"d":{},"k":{},"b":{"128":{"position":[[14937,4]]}}}],["factor",{"_index":1747,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3287,6],[29002,6],[31577,6]]},"83":{"position":[[3474,8]]},"84":{"position":[[1858,8]]},"105":{"position":[[3509,8]]}}}],["factori",{"_index":5580,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3523,7]]}}}],["fade",{"_index":5649,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6556,4]]}}}],["fail",{"_index":5548,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2026,7],[3308,7],[3355,7],[3678,7],[3733,7],[5929,7],[8016,7],[10315,7],[10381,7],[10445,7],[10506,7],[10573,7],[10648,7],[10733,7],[10818,7],[10905,7],[10982,7],[11059,7],[11132,7],[11218,7],[11288,7],[11346,6],[11767,7],[11814,7],[11931,7],[11989,7],[12379,7],[12441,7],[12493,7],[12600,7],[12803,7],[12873,7],[12929,7],[13044,7],[13087,7],[13226,7],[13269,7],[13329,7],[13390,7],[13965,7],[14718,7],[14835,7]]},"125":{"position":[[15551,4],[16661,4]]},"128":{"position":[[16703,6],[16728,6],[17112,6],[17233,7],[19144,6],[19529,6],[19625,6],[19903,6],[19970,6],[20006,6],[20055,6],[20129,6]]},"138":{"position":[[15721,4]]}}}],["failur",{"_index":1866,"t":{},"d":{},"k":{},"b":{"71":{"position":[[10997,8]]},"75":{"position":[[34229,8],[34291,8]]},"88":{"position":[[18046,7]]},"113":{"position":[[14760,7]]},"124":{"position":[[14897,7]]},"125":{"position":[[14861,7]]},"129":{"position":[[1809,7],[4694,7],[8250,7],[8659,7],[15591,7]]},"138":{"position":[[13360,7]]}}}],["fall",{"_index":701,"t":{},"d":{},"k":{},"b":{"68":{"position":[[4190,7],[4229,7],[5205,7],[21588,7]]},"76":{"position":[[3634,7],[3741,7],[13826,7]]},"79":{"position":[[14186,7],[14809,7]]},"82":{"position":[[6376,7]]},"83":{"position":[[19084,7],[33582,7],[33722,7],[33862,7],[34002,7],[34310,5],[34418,5],[34740,5],[34848,5],[35485,7],[35625,7],[35765,7],[35905,7],[36213,5],[36321,5],[36643,5],[36751,5],[46165,7]]},"88":{"position":[[9425,7],[9519,7],[9755,7],[16200,7]]},"89":{"position":[[1351,7],[2208,7]]},"90":{"position":[[1327,7],[2082,7]]},"91":{"position":[[1361,7],[2309,7],[6049,7]]},"92":{"position":[[2175,9],[11239,7],[12344,7],[27601,7]]},"105":{"position":[[6103,7],[7264,7],[7650,7],[21631,7],[21916,7]]},"106":{"position":[[1653,7]]},"107":{"position":[[8900,4],[8949,4]]},"124":{"position":[[3082,4],[3144,4]]},"125":{"position":[[5143,7]]},"139":{"position":[[5823,7],[5848,7],[5883,7],[14423,7],[16570,7]]}}}],["falling/ris",{"_index":3067,"t":{},"d":{},"k":{},"b":{"79":{"position":[[14321,14]]}}}],["fals",{"_index":981,"t":{},"d":{},"k":{},"b":{"69":{"position":[[3785,5],[15667,6],[19600,5]]},"71":{"position":[[29754,6],[30177,6],[32329,6],[32752,6]]},"83":{"position":[[8692,5],[8699,5],[8923,5],[8930,5],[28370,5]]},"88":{"position":[[23525,6],[23755,6],[23885,6],[24905,7],[25193,7],[27745,7],[28054,7],[29063,7],[31270,6],[31500,6],[31630,6],[32269,7],[32551,7],[37341,6],[38621,7],[42248,6]]},"89":{"position":[[3704,6]]},"90":{"position":[[3342,6]]},"91":{"position":[[3930,6]]},"124":{"position":[[8627,7],[9232,7],[11169,7],[11926,7]]},"125":{"position":[[11473,7],[12403,7]]},"131":{"position":[[9900,6],[9954,6],[13626,6],[13888,6],[14307,6],[14418,6]]},"135":{"position":[[8948,6],[9963,6],[10179,6],[10619,6],[10835,6]]},"138":{"position":[[8505,7],[9117,7],[10371,7],[11158,7]]},"139":{"position":[[12042,6]]},"140":{"position":[[9390,6]]},"142":{"position":[[9951,6],[10972,6],[11197,6],[11637,6],[11862,6]]},"143":{"position":[[5738,6]]},"146":{"position":[[13535,6],[13882,6]]},"148":{"position":[[7126,6],[7170,6]]},"150":{"position":[[5746,5],[5753,5]]}}}],["false;void",{"_index":1070,"t":{},"d":{},"k":{},"b":{"69":{"position":[[14958,10]]},"135":{"position":[[8394,10]]},"142":{"position":[[9381,10]]},"146":{"position":[[5361,10],[11353,10],[11512,10]]}}}],["famili",{"_index":8332,"t":{},"d":{},"k":{},"b":{"151":{"position":[[2850,7]]}}}],["familiar",{"_index":6205,"t":{},"d":{},"k":{},"b":{"128":{"position":[[10783,8]]},"151":{"position":[[3261,8]]}}}],["familiaris",{"_index":6188,"t":{},"d":{},"k":{},"b":{"128":{"position":[[8349,11]]}}}],["fast",{"_index":3535,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38398,4]]},"88":{"position":[[20752,4],[20809,4],[20899,4],[21456,4],[21473,4],[21733,4],[21926,4]]},"92":{"position":[[2107,5],[21910,5],[24307,5]]},"105":{"position":[[25687,4],[26046,4]]},"124":{"position":[[1530,4],[1585,4],[2923,4],[2934,4],[3475,4],[3495,4],[15040,4]]},"125":{"position":[[842,4],[897,4],[2516,4],[2527,4],[15004,4]]},"135":{"position":[[5923,4],[6606,4]]},"136":{"position":[[2874,4],[3110,4]]},"138":{"position":[[1528,4],[3330,4]]},"142":{"position":[[6647,4],[7780,4]]},"143":{"position":[[2040,4],[11111,4],[11210,4],[11295,4],[11393,4],[11478,4],[13361,4]]}}}],["fast_aqi",{"_index":6731,"t":{},"d":{},"k":{},"b":{"134":{"position":[[3075,8]]}}}],["faster",{"_index":4117,"t":{},"d":{},"k":{},"b":{"88":{"position":[[19060,7]]},"135":{"position":[[22235,6]]},"142":{"position":[[23948,6]]}}}],["fatal",{"_index":5828,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14391,5]]}}}],["fault",{"_index":1738,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2794,5],[2812,5],[2830,5],[2850,5],[2991,5]]},"113":{"position":[[4598,5]]},"135":{"position":[[1512,5],[2626,5]]},"141":{"position":[[1896,5],[10488,5],[10809,5],[10866,5],[11376,5]]},"142":{"position":[[3955,5]]},"147":{"position":[[10161,5]]}}}],["fclk",{"_index":5632,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5762,4]]}}}],["fd",{"_index":2242,"t":{},"d":{},"k":{},"b":{"75":{"position":[[984,3],[1163,2],[1219,2],[1868,2],[3228,4],[3415,4],[19877,4],[20081,2],[21319,2],[21647,2],[23474,2],[23502,2],[23574,2],[28803,2],[32050,2],[32127,2],[32957,2],[34031,2],[37466,2],[37493,2]]}}}],["fdf",{"_index":2566,"t":{},"d":{},"k":{},"b":{"75":{"position":[[35309,6]]}}}],["featur",{"_index":121,"t":{},"d":{},"k":{},"b":{"1":{"position":[[356,8]]},"68":{"position":[[1308,8],[1357,9],[13365,9]]},"69":{"position":[[1243,8],[1292,9]]},"71":{"position":[[1280,8],[1592,8],[1671,8],[7573,7],[7629,7],[9088,7],[9145,8],[9255,9],[9321,8],[40555,8]]},"74":{"position":[[155,9]]},"75":{"position":[[1084,8],[1100,8],[20007,9]]},"76":{"position":[[1268,8],[1311,9],[22892,7]]},"77":{"position":[[810,8]]},"79":{"position":[[1179,8]]},"80":{"position":[[1651,8]]},"83":{"position":[[1976,8],[2018,9],[4517,8],[4633,9],[4711,8],[4742,9],[12305,8],[12478,8],[12679,8],[12850,8],[13021,8],[13449,8],[13684,8],[13919,8],[14131,8],[14347,8],[14709,8],[14838,8],[15087,8],[15104,8],[15173,8],[28973,9],[31713,9],[56375,8],[56591,7],[58526,7]]},"84":{"position":[[1170,8],[1215,9],[4221,8],[15483,7]]},"88":{"position":[[1696,8],[1809,8],[51965,7]]},"89":{"position":[[1209,8]]},"90":{"position":[[1198,8]]},"91":{"position":[[1218,8]]},"92":{"position":[[1725,8]]},"95":{"position":[[908,8],[960,9]]},"96":{"position":[[755,8],[817,9]]},"97":{"position":[[559,8],[621,9]]},"98":{"position":[[850,8],[901,9]]},"99":{"position":[[887,8],[937,9]]},"100":{"position":[[736,8],[796,9]]},"102":{"position":[[542,8],[602,9]]},"104":{"position":[[829,8],[878,9]]},"105":{"position":[[1898,8],[1941,9],[6763,8],[8710,8],[8947,8],[9184,8],[9401,8],[9532,8],[9698,8],[9864,8],[10045,8],[10176,8],[10341,8],[10506,8],[10687,8],[10704,8],[10780,8],[18308,9],[19526,7],[20683,9]]},"106":{"position":[[805,8],[852,9]]},"108":{"position":[[731,8],[774,9]]},"116":{"position":[[748,8]]},"124":{"position":[[1424,8],[1872,8]]},"125":{"position":[[736,8]]},"127":{"position":[[1276,8],[1362,9]]},"128":{"position":[[422,8],[475,9]]},"129":{"position":[[2822,8],[2896,9]]},"131":{"position":[[2222,8],[2296,9],[2505,7]]},"133":{"position":[[5601,8],[5677,9],[8641,9]]},"135":{"position":[[942,8]]},"136":{"position":[[1328,8],[3633,7]]},"138":{"position":[[1422,8],[1886,8]]},"139":{"position":[[1239,8],[1291,9]]},"140":{"position":[[1260,8],[1313,9]]},"142":{"position":[[978,8]]},"145":{"position":[[12040,9]]},"146":{"position":[[1353,8],[1400,9]]},"147":{"position":[[171,9]]},"148":{"position":[[1139,8],[1189,9]]},"150":{"position":[[1398,8],[1450,9]]},"151":{"position":[[983,9],[1234,9],[1272,8],[3054,7]]}}}],["fetch",{"_index":6489,"t":{},"d":{},"k":{},"b":{"131":{"position":[[6300,5],[6558,5]]}}}],["few",{"_index":2842,"t":{},"d":{},"k":{},"b":{"77":{"position":[[3068,3]]}}}],["fewer",{"_index":7175,"t":{},"d":{},"k":{},"b":{"139":{"position":[[6324,6],[16249,6]]},"140":{"position":[[5133,6]]}}}],["field",{"_index":281,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1104,6],[1290,6],[1807,6],[2731,6],[3808,6],[4913,5],[11607,6]]},"68":{"position":[[17015,6],[17652,6]]},"69":{"position":[[6527,5],[6611,5],[6798,5],[6985,5],[19092,6],[20179,6],[20909,6]]},"74":{"position":[[933,6],[1422,6],[1785,6],[2220,6],[2596,6],[3216,6],[3924,5],[7318,6]]},"75":{"position":[[11231,5],[11378,5],[20364,5],[22849,6],[22865,6],[31228,6],[31822,6]]},"76":{"position":[[12393,6]]},"78":{"position":[[900,6],[1384,6],[1830,5],[4048,6]]},"79":{"position":[[9074,6],[9377,6],[9892,6],[10956,5],[11716,6]]},"81":{"position":[[427,6],[688,6],[1196,5],[3713,6]]},"82":{"position":[[793,6],[1155,6],[1665,5],[2291,6],[2770,5],[5539,6]]},"83":{"position":[[28310,6],[28990,6],[30318,6]]},"85":{"position":[[854,6],[1093,6],[1263,6],[1527,6],[2268,5],[3188,6],[4052,5],[8262,6]]},"86":{"position":[[773,6],[1072,6],[1334,6],[2114,5],[2834,6],[3374,5],[5969,6]]},"87":{"position":[[878,6],[1239,6],[1610,6],[2479,6],[2963,6],[3473,6],[4254,6],[4468,5],[5220,6],[6541,5],[14156,6]]},"88":{"position":[[23634,5],[31379,5],[41098,6],[41790,6],[42202,6],[42876,6],[44741,6],[46207,6]]},"89":{"position":[[4598,6],[4777,5]]},"90":{"position":[[4230,6],[4409,5]]},"91":{"position":[[5002,6],[5176,5],[5547,6]]},"92":{"position":[[17288,6],[17847,6],[18193,6],[18762,6]]},"93":{"position":[[751,6],[1075,6],[1487,6],[2829,5],[8202,6]]},"94":{"position":[[913,6],[1239,6],[1607,5],[2270,6],[2648,5],[4841,6]]},"95":{"position":[[1459,6]]},"96":{"position":[[1258,6]]},"97":{"position":[[1006,6]]},"98":{"position":[[1397,6]]},"99":{"position":[[1430,6]]},"100":{"position":[[1231,6]]},"101":{"position":[[935,6],[1274,6],[1576,5],[2319,6],[2705,5],[4603,6]]},"102":{"position":[[981,6]]},"103":{"position":[[910,6],[1249,6],[1595,6],[1835,5],[3289,6]]},"104":{"position":[[1368,6]]},"105":{"position":[[17234,6],[17564,6],[18325,6],[19550,6]]},"106":{"position":[[14816,6]]},"107":{"position":[[693,6],[1050,6],[1237,6],[1929,5],[2837,6],[3498,5],[7181,6]]},"109":{"position":[[725,6],[921,6],[1148,6],[1646,5],[2219,6],[2717,5],[5376,6]]},"111":{"position":[[846,6],[1153,6]]},"113":{"position":[[448,6],[696,6]]},"124":{"position":[[12601,6],[13075,6]]},"125":{"position":[[13437,6],[13792,6]]},"126":{"position":[[998,6],[1551,6],[1998,5]]},"127":{"position":[[6601,6]]},"129":{"position":[[10395,6],[10747,6]]},"130":{"position":[[897,6],[1178,6],[1490,6],[1945,6],[2766,5],[5993,6]]},"131":{"position":[[14735,6],[15009,6]]},"132":{"position":[[1137,6],[1442,6],[1754,6],[2505,6],[3019,5],[5135,6]]},"133":{"position":[[49436,6],[49818,6]]},"134":{"position":[[1256,6],[1633,6],[2099,6],[2374,6],[2722,6],[2948,6],[3398,6],[3642,6],[4255,6],[6091,5],[12488,6]]},"135":{"position":[[12092,6],[12328,6],[13256,6]]},"136":{"position":[[2486,5],[2615,6],[2713,6],[10107,6],[10483,6],[11613,6],[13170,6],[14565,6]]},"137":{"position":[[979,6],[1311,6],[1759,6],[1869,6],[1944,6],[2018,6],[2091,6],[2165,6],[2239,6],[2322,6],[2542,6],[2796,6],[3755,6],[4761,5],[9209,6]]},"138":{"position":[[11797,6],[12535,6]]},"139":{"position":[[13423,6],[13999,6],[14230,6]]},"140":{"position":[[10487,6],[10822,6],[11160,6]]},"141":{"position":[[756,6],[1193,6],[2643,6],[3326,5],[7319,6]]},"142":{"position":[[13253,6],[13490,6],[14723,6]]},"143":{"position":[[945,6],[1261,6],[1696,6],[3308,6],[3634,6],[4775,5],[10320,6]]},"144":{"position":[[1114,6],[1596,6],[1993,6],[2252,6],[2777,5],[3523,6],[4449,5],[10033,6]]},"145":{"position":[[789,6],[1808,6],[3222,6],[3672,6],[4493,5],[9981,6]]},"146":{"position":[[15318,6]]},"147":{"position":[[998,6],[1420,6],[1868,6],[2885,5],[3645,6],[4491,5],[9276,6]]},"149":{"position":[[841,6],[1133,6],[1409,6],[2018,5],[2364,6],[3007,5],[5987,6]]},"150":{"position":[[9686,6],[15064,5],[15417,5]]},"287":{"position":[[78,6],[178,5]]},"289":{"position":[[79,6],[226,5]]},"292":{"position":[[76,6],[387,5]]}}}],["fifo",{"_index":547,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14097,4],[14144,4]]},"71":{"position":[[34373,5],[34940,5]]},"74":{"position":[[1099,4],[8559,4],[8612,4]]},"75":{"position":[[1354,5],[1364,6],[1714,4],[1746,4],[2246,5],[3759,5],[3944,5],[3952,4],[4017,4],[4039,5],[4047,4],[4120,4],[4254,5],[4262,4],[4351,4],[4461,5],[4469,4],[4549,4],[4571,5],[4579,4],[4648,4],[4670,5],[4678,4],[4744,4],[4766,5],[4774,4],[4847,4],[4981,5],[4989,4],[5078,4],[5188,5],[5196,4],[5276,4],[5298,5],[5306,4],[5375,4],[5397,5],[5405,4],[5471,4],[5493,5],[5501,4],[5574,4],[5708,5],[5716,4],[5805,4],[5915,5],[5923,4],[6003,4],[6025,5],[6033,4],[6102,4],[6124,5],[6132,4],[6198,4],[6220,5],[6228,4],[6301,4],[6435,5],[6443,4],[6532,4],[6642,5],[6650,4],[6730,4],[6752,5],[6760,4],[6829,4],[6851,5],[6859,4],[6925,4],[6947,5],[6955,4],[7028,4],[7162,5],[7170,4],[7259,4],[7369,5],[7377,4],[7457,4],[7479,5],[7487,4],[7556,4],[7578,5],[7586,4],[7652,4],[7674,5],[7682,4],[7755,4],[7889,5],[7897,4],[7986,4],[8096,5],[8104,4],[8184,4],[8206,5],[8214,4],[8283,4],[8305,5],[8313,4],[8379,4],[8401,5],[8409,4],[8482,4],[8616,5],[8624,4],[8713,4],[8823,5],[8831,4],[8911,4],[8933,5],[8941,4],[9010,4],[9032,5],[9040,4],[9106,4],[9128,5],[9136,4],[9209,4],[9343,5],[9351,4],[9440,4],[9550,5],[9558,4],[9638,4],[9660,5],[9668,4],[9737,4],[9759,5],[9868,4],[16209,5],[16219,7],[16953,5],[16962,5],[17076,5],[17319,5],[17390,4],[17513,4],[17742,4],[17884,5],[18015,4],[18044,4],[18059,5],[18192,4],[19706,5],[24616,4],[24698,4],[24832,4],[25516,4],[25530,4],[26124,4],[26808,5],[31432,4],[31658,4],[34647,5],[34880,4],[34889,5],[38045,5],[38337,4]]},"88":{"position":[[40434,4],[40460,4],[45315,5],[45395,5],[47310,4],[47362,4]]},"106":{"position":[[1021,4],[23415,4]]},"113":{"position":[[12310,4]]},"135":{"position":[[4426,4],[4521,5],[4549,4],[4631,5],[12953,4],[13030,4],[15607,4],[15692,5],[15753,5],[15814,5],[15856,4],[15988,4],[16073,5],[16134,5],[16195,5],[16256,5],[16319,5],[16382,5],[16445,5],[16506,5]]},"139":{"position":[[1724,4],[2107,4],[2152,4],[6101,4],[6276,4],[14656,4],[14701,4],[16029,4],[16201,4]]},"140":{"position":[[1720,4],[4902,4],[5085,4],[5171,4],[11549,4],[13881,4],[13985,5],[14057,4],[14155,4],[14253,4],[14353,4],[14454,4],[14555,4],[14656,4],[14757,4],[14858,4],[14959,4],[15060,4],[15161,4],[15264,4],[15367,4],[15470,4],[15573,4],[15676,4],[15779,4]]},"142":{"position":[[1484,4]]},"147":{"position":[[10206,4]]}}}],["fifo(",{"_index":2397,"t":{},"d":{},"k":{},"b":{"75":{"position":[[19659,7]]}}}],["fifo_select_flag",{"_index":2400,"t":{},"d":{},"k":{},"b":{"75":{"position":[[19748,18],[25981,18],[26630,18]]}}}],["figur",{"_index":4098,"t":{},"d":{},"k":{},"b":{"88":{"position":[[16622,6]]}}}],["filclksel",{"_index":4626,"t":{},"d":{},"k":{},"b":{"92":{"position":[[22586,9],[22667,9],[22748,9],[22829,9],[24983,9],[25064,9],[25145,9],[25226,9]]}}}],["file",{"_index":204,"t":{},"d":{},"k":{},"b":{"43":{"position":[[3,5],[9,4]]},"67":{"position":[[12158,5]]},"71":{"position":[[4462,4],[7201,5],[7261,4],[9405,6],[9426,5],[40027,4]]},"128":{"position":[[776,5],[4208,4],[11100,4],[15501,5],[15691,4],[15756,4],[17681,4],[17890,4],[19498,5]]},"133":{"position":[[5246,5],[5330,5],[5373,4],[5463,4],[5506,4]]},"150":{"position":[[7215,5]]},"287":{"position":[[501,5]]},"288":{"position":[[221,5]]},"289":{"position":[[657,5]]},"290":{"position":[[241,5]]},"291":{"position":[[213,5]]},"292":{"position":[[1861,5]]}}}],["filet",{"_index":4952,"t":{},"d":{},"k":{},"b":{"105":{"position":[[17863,8]]}}}],["fill",{"_index":2371,"t":{},"d":{},"k":{},"b":{"75":{"position":[[17216,6],[20370,7]]},"88":{"position":[[28632,7],[34151,7]]},"106":{"position":[[23485,6]]},"137":{"position":[[7241,4]]}}}],["filter",{"_index":692,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3807,6],[3959,8],[17507,7],[22495,7],[22550,6]]},"75":{"position":[[1039,9],[1425,9],[1449,6],[1488,6],[2160,6],[9919,9],[10011,6],[10078,9],[10170,6],[10237,9],[10328,6],[10395,9],[10486,6],[10553,9],[10644,6],[10711,9],[10802,6],[14814,6],[14884,6],[18105,9],[18127,6],[18143,6],[18237,6],[18354,9],[19038,9],[19675,8],[24667,6],[25318,6]]},"82":{"position":[[1407,6],[1469,6],[6684,9],[6737,6],[6810,6],[6863,6],[6924,6],[6986,6],[7049,6]]},"83":{"position":[[2174,6],[10470,6],[10505,6],[10513,6],[10529,6],[10545,6],[10562,6],[10582,6],[10606,6],[10641,6],[10676,6],[10684,6],[10700,6],[10716,6],[10733,6],[10753,6],[10777,6],[19274,9],[37916,6],[38007,6],[38239,6],[38339,10]]},"88":{"position":[[20882,7],[21398,7]]},"92":{"position":[[2383,6],[2404,6],[2428,6],[22141,6],[22192,6],[22263,6],[22281,7],[22345,6],[22363,7],[22428,6],[22447,7],[22512,6],[22531,7],[24538,6],[24589,6],[24660,6],[24678,7],[24742,6],[24760,7],[24825,6],[24844,7],[24909,6],[24928,7]]},"105":{"position":[[2058,6],[6246,6],[6359,6],[6492,6],[6645,6],[6667,6],[6797,6],[6945,6],[24630,6],[24716,6],[24793,6],[24870,6],[25050,6],[25156,6],[25239,6],[25322,6],[25405,6],[25488,6]]},"106":{"position":[[2646,6],[2664,6],[2682,6],[2823,6],[2853,6],[2871,6],[2980,6],[3008,6],[3026,6],[3134,6],[3161,6],[3179,6],[3287,6],[3314,6],[3332,6],[3440,6],[3467,6],[3485,6],[3593,6],[3620,6],[3638,6],[3746,6],[3773,6],[3791,6],[3899,6],[3926,6],[3944,6],[4052,6],[4079,6],[4097,6],[4205,6],[4232,6],[4250,6],[4358,6],[4385,6],[4403,6],[4511,6],[4538,6],[4556,6],[4665,6],[4693,6],[4711,6],[4820,6],[4848,6],[4866,6],[4975,6],[5003,6],[5021,6],[5130,6],[5158,6],[5176,6],[5285,6],[5313,6],[5331,6],[5440,6],[5468,6],[5486,6],[5595,6],[5623,6],[5641,6],[5750,6],[5778,6],[5796,6],[5905,6],[5933,6],[5951,6],[6060,6],[6088,6],[6110,6],[6132,6],[6254,6],[6284,6],[6306,6],[6328,6],[6433,6],[6459,6],[6481,6],[6503,6],[6608,6],[6634,6],[6656,6],[6678,6],[6783,6],[6809,6],[6831,6],[6853,6],[6958,6],[6984,6],[7006,6],[7028,6],[7133,6],[7159,6],[7181,6],[7203,6],[7308,6],[7334,6],[7356,6],[7378,6],[7483,6],[7509,6],[7531,6],[7553,6],[7658,6],[7684,6],[7706,6],[7728,6],[7833,6],[7859,6],[7881,6],[7903,6],[8008,6],[8034,6],[8056,6],[8078,6],[8184,6],[8211,6],[8230,6],[8249,6],[8368,6],[8398,6],[8417,6],[8525,6],[8551,6],[8570,6],[8678,6],[8704,6],[8723,6],[8831,6],[8857,6],[8876,6],[8984,6],[9010,6],[9048,7],[9095,7],[9174,6],[9188,6],[9261,6],[15415,6],[15520,6],[15623,6],[15717,6],[15794,6],[15840,6],[15892,6],[15959,6],[16056,6],[16155,6],[16273,6],[16394,6],[16517,6],[16605,6],[18475,6],[18810,6],[19200,6],[19509,6]]},"108":{"position":[[2230,6],[2360,6]]},"109":{"position":[[1371,7],[6561,6],[6615,8],[8041,7],[8096,7],[8271,6],[8354,6],[8437,6],[8523,6],[8611,6]]},"113":{"position":[[9603,9]]},"124":{"position":[[3527,6],[3596,6],[13389,6]]},"125":{"position":[[2849,6],[2881,6],[2925,6],[2941,6],[2957,6],[2973,6],[2989,6],[3025,6],[13603,6]]},"138":{"position":[[3847,6],[4253,6],[12126,6]]},"139":{"position":[[5926,6],[5984,6],[6022,6]]},"140":{"position":[[4723,6],[4784,6],[4822,6]]}}}],["filter.th",{"_index":693,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3935,10]]}}}],["filter_en",{"_index":3228,"t":{},"d":{},"k":{},"b":{"82":{"position":[[1446,13]]},"89":{"position":[[3687,14]]},"90":{"position":[[3325,14]]},"91":{"position":[[3913,14]]}}}],["filter_setting_tim",{"_index":5275,"t":{},"d":{},"k":{},"b":{"106":{"position":[[16584,19]]}}}],["final",{"_index":2850,"t":{},"d":{},"k":{},"b":{"77":{"position":[[3704,5]]}}}],["find",{"_index":136,"t":{},"d":{},"k":{},"b":{"1":{"position":[[613,4]]},"133":{"position":[[8246,8]]}}}],["finish",{"_index":743,"t":{},"d":{},"k":{},"b":{"68":{"position":[[7116,8]]},"79":{"position":[[6466,9],[6793,9]]},"87":{"position":[[17408,8]]},"113":{"position":[[15776,9]]},"125":{"position":[[15734,8],[16845,8]]},"129":{"position":[[4198,9]]},"133":{"position":[[1083,9],[2156,9],[2535,9],[2906,9],[3285,9],[3665,9],[4044,9],[4413,9],[53979,9],[54434,9],[56554,9],[57404,9],[58241,9],[59092,9],[59943,9],[60793,9],[61627,9]]},"138":{"position":[[16033,8]]},"139":{"position":[[20704,8]]},"140":{"position":[[18876,8]]},"147":{"position":[[5971,9]]}}}],["fire",{"_index":2281,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2861,5],[4153,4],[4880,4],[5607,4],[6334,4],[7061,4],[7788,4],[8515,4],[9242,4],[17349,5],[17375,4]]},"82":{"position":[[137,4]]},"83":{"position":[[41686,5],[41713,5],[41943,5],[41969,5]]},"89":{"position":[[960,4]]},"90":{"position":[[959,4]]},"91":{"position":[[978,4]]},"108":{"position":[[4739,4],[4983,6]]},"136":{"position":[[2267,6]]}}}],["firmwar",{"_index":5794,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12968,8],[13027,8]]}}}],["first",{"_index":489,"t":{},"d":{},"k":{},"b":{"67":{"position":[[11003,5]]},"69":{"position":[[5626,5],[12251,5],[12783,5]]},"75":{"position":[[3205,6],[25164,5]]},"76":{"position":[[23022,5]]},"77":{"position":[[1315,5],[1328,5],[8186,5]]},"78":{"position":[[5370,5],[5437,5]]},"83":{"position":[[18917,5],[20131,5]]},"84":{"position":[[15612,5]]},"87":{"position":[[9668,5]]},"88":{"position":[[4877,5]]},"105":{"position":[[12123,5]]},"107":{"position":[[3895,6]]},"113":{"position":[[4864,6]]},"124":{"position":[[9953,5]]},"125":{"position":[[7426,5]]},"128":{"position":[[20604,5]]},"133":{"position":[[27585,5],[30669,5]]},"135":{"position":[[1212,5],[2727,5],[2738,5],[2749,5],[18520,6],[19679,6],[20907,6],[21727,6]]},"141":{"position":[[1996,6],[11035,5],[11093,5]]},"142":{"position":[[1296,5],[4046,5],[4057,5],[4068,5],[20512,6],[21572,6],[22701,6],[23422,6]]},"145":{"position":[[12166,5]]}}}],["fit",{"_index":58,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1032,7]]}}}],["five",{"_index":2889,"t":{},"d":{},"k":{},"b":{"78":{"position":[[145,4]]},"83":{"position":[[42461,4]]},"105":{"position":[[27003,4]]},"133":{"position":[[6927,4]]}}}],["fix",{"_index":1745,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3042,5]]},"79":{"position":[[1347,5],[2769,5],[2789,5],[2863,5],[2883,5],[4148,5],[6243,5],[16036,5]]},"80":{"position":[[4411,5]]},"106":{"position":[[13342,5],[13378,5],[13448,5],[13466,5],[15996,5],[16093,5],[16194,5],[16312,5],[16431,5],[16554,5],[16823,5],[16925,5],[17220,5],[17358,5]]},"133":{"position":[[7509,5]]},"135":{"position":[[2932,6],[2964,6],[2992,6],[3021,6],[12461,5]]},"142":{"position":[[4736,6],[4768,6],[4796,6],[4825,6],[13884,5]]},"144":{"position":[[12277,6]]},"145":{"position":[[14033,5],[14544,5],[14737,5]]},"146":{"position":[[3756,3]]}}}],["flag",{"_index":1067,"t":{},"d":{},"k":{},"b":{"69":{"position":[[14719,4],[15745,5]]},"74":{"position":[[1061,6],[1110,6]]},"75":{"position":[[32994,4]]},"87":{"position":[[3571,5]]},"108":{"position":[[8504,6],[8552,5],[8783,6]]},"109":{"position":[[4681,5],[4735,5],[6582,4]]},"113":{"position":[[5198,4]]},"127":{"position":[[6821,5]]},"129":{"position":[[10431,5],[10473,5],[10534,4],[10775,5],[11108,5]]},"131":{"position":[[14796,4],[15037,5],[15624,4],[15707,4]]},"133":{"position":[[49548,4],[49610,5],[49846,5],[50080,4]]},"136":{"position":[[2659,4]]},"141":{"position":[[1932,5],[10500,5],[10821,4],[10878,4]]},"146":{"position":[[6855,5],[13488,5],[13836,5]]},"148":{"position":[[6570,6],[7765,4],[11643,6],[11728,6],[12328,6]]},"149":{"position":[[4205,5],[8734,5],[8778,4],[8829,4],[8945,5],[8987,4]]}}}],["flag(",{"_index":8062,"t":{},"d":{},"k":{},"b":{"148":{"position":[[11855,7]]}}}],["flash",{"_index":5581,"t":{"143":{"position":[[49,5]]}},"d":{},"k":{},"b":{"113":{"position":[[3531,5]]},"115":{"position":[[1314,5],[1368,5]]},"120":{"position":[[199,5]]},"143":{"position":[[59,5],[92,5],[175,5],[3588,5],[4961,5],[5371,6],[6080,6],[6596,6],[7468,6],[7628,5],[7676,5],[7995,6],[8139,5],[8511,6],[8658,5],[9673,5],[9997,5],[10711,5],[10797,5]]},"150":{"position":[[1369,5],[1498,5],[1525,5],[1555,5],[6595,5],[7823,6],[8004,6],[8307,6],[8714,6],[13581,5],[13637,5],[13822,5],[14064,5],[14169,5],[14220,5],[19159,5],[22173,5],[22593,5],[23230,6],[23308,5],[24103,6],[24355,5],[25084,6],[26619,5],[27084,5]]},"152":{"position":[[5272,5],[7662,5],[7714,5]]}}}],["flexibl",{"_index":1,"t":{"0":{"position":[[4,8]]},"1":{"position":[[4,8]]},"2":{"position":[[4,8]]},"3":{"position":[[4,8]]},"4":{"position":[[4,8]]},"5":{"position":[[4,8]]},"6":{"position":[[4,8]]},"7":{"position":[[4,8]]},"8":{"position":[[4,8]]},"9":{"position":[[4,8]]},"10":{"position":[[4,8]]},"11":{"position":[[4,8]]},"12":{"position":[[4,8]]},"13":{"position":[[4,8]]},"14":{"position":[[4,8]]},"15":{"position":[[4,8]]},"16":{"position":[[4,8]]},"17":{"position":[[4,8]]},"18":{"position":[[4,8]]},"19":{"position":[[4,8]]},"20":{"position":[[4,8]]},"21":{"position":[[4,8]]},"22":{"position":[[4,8]]},"23":{"position":[[4,8]]},"24":{"position":[[4,8]]},"25":{"position":[[4,8]]},"26":{"position":[[4,8]]},"27":{"position":[[4,8]]},"28":{"position":[[4,8]]},"29":{"position":[[4,8]]},"30":{"position":[[4,8]]},"31":{"position":[[4,8]]},"32":{"position":[[4,8]]},"33":{"position":[[4,8]]},"34":{"position":[[4,8]]},"35":{"position":[[4,8]]},"36":{"position":[[4,8]]},"37":{"position":[[4,8]]},"38":{"position":[[4,8]]},"39":{"position":[[4,8]]},"40":{"position":[[4,8]]},"41":{"position":[[4,8]]},"42":{"position":[[4,8]]},"43":{"position":[[4,8]]},"44":{"position":[[4,8]]},"45":{"position":[[4,8]]},"46":{"position":[[4,8]]},"47":{"position":[[4,8]]},"48":{"position":[[4,8]]},"49":{"position":[[4,8]]},"50":{"position":[[4,8]]},"51":{"position":[[4,8]]},"52":{"position":[[4,8]]},"53":{"position":[[4,8]]},"54":{"position":[[4,8]]},"55":{"position":[[4,8]]},"56":{"position":[[4,8]]},"57":{"position":[[4,8]]},"58":{"position":[[4,8]]},"59":{"position":[[4,8]]},"60":{"position":[[4,8]]},"61":{"position":[[4,8]]},"62":{"position":[[4,8]]},"63":{"position":[[4,8]]},"64":{"position":[[4,8]]},"65":{"position":[[4,8]]},"66":{"position":[[4,8]]},"67":{"position":[[4,8]]},"68":{"position":[[4,8]]},"69":{"position":[[4,8]]},"70":{"position":[[4,8]]},"71":{"position":[[4,8]]},"72":{"position":[[4,8]]},"73":{"position":[[4,8]]},"74":{"position":[[4,8]]},"75":{"position":[[4,8],[71,8]]},"76":{"position":[[4,8]]},"77":{"position":[[4,8]]},"78":{"position":[[4,8]]},"79":{"position":[[4,8]]},"80":{"position":[[4,8]]},"81":{"position":[[4,8]]},"82":{"position":[[4,8]]},"83":{"position":[[4,8]]},"84":{"position":[[4,8]]},"85":{"position":[[4,8]]},"86":{"position":[[4,8]]},"87":{"position":[[4,8]]},"88":{"position":[[4,8]]},"89":{"position":[[4,8]]},"90":{"position":[[4,8]]},"91":{"position":[[4,8]]},"92":{"position":[[4,8]]},"93":{"position":[[4,8]]},"94":{"position":[[4,8]]},"95":{"position":[[4,8]]},"96":{"position":[[4,8]]},"97":{"position":[[4,8]]},"98":{"position":[[4,8]]},"99":{"position":[[4,8]]},"100":{"position":[[4,8]]},"101":{"position":[[4,8]]},"102":{"position":[[4,8]]},"103":{"position":[[4,8]]},"104":{"position":[[4,8]]},"105":{"position":[[4,8]]},"106":{"position":[[4,8]]},"107":{"position":[[4,8]]},"108":{"position":[[4,8]]},"109":{"position":[[4,8]]},"110":{"position":[[4,8]]},"111":{"position":[[4,8]]},"112":{"position":[[4,8]]},"113":{"position":[[4,8]]},"114":{"position":[[4,8]]},"115":{"position":[[4,8]]},"116":{"position":[[4,8]]},"117":{"position":[[4,8]]},"118":{"position":[[4,8]]},"119":{"position":[[4,8]]},"120":{"position":[[4,8]]},"121":{"position":[[4,8]]},"122":{"position":[[4,8]]},"123":{"position":[[4,8]]},"124":{"position":[[4,8]]},"125":{"position":[[4,8]]},"126":{"position":[[4,8]]},"127":{"position":[[4,8]]},"128":{"position":[[4,8]]},"129":{"position":[[4,8]]},"130":{"position":[[4,8]]},"131":{"position":[[4,8]]},"132":{"position":[[4,8]]},"133":{"position":[[4,8]]},"134":{"position":[[4,8]]},"135":{"position":[[4,8]]},"136":{"position":[[4,8]]},"137":{"position":[[4,8]]},"138":{"position":[[4,8]]},"139":{"position":[[4,8]]},"140":{"position":[[4,8]]},"141":{"position":[[4,8]]},"142":{"position":[[4,8]]},"143":{"position":[[4,8]]},"144":{"position":[[4,8]]},"145":{"position":[[4,8]]},"146":{"position":[[4,8]]},"147":{"position":[[4,8]]},"148":{"position":[[4,8]]},"149":{"position":[[4,8]]},"150":{"position":[[4,8]]},"151":{"position":[[4,8]]},"152":{"position":[[4,8]]},"153":{"position":[[4,8]]},"287":{"position":[[4,8]]},"288":{"position":[[4,8]]},"289":{"position":[[4,8]]},"290":{"position":[[4,8]]},"291":{"position":[[4,8]]},"292":{"position":[[4,8]]}},"d":{},"k":{},"b":{"1":{"position":[[155,8]]},"2":{"position":[[93,8]]},"74":{"position":[[412,8]]},"75":{"position":[[965,8],[3214,8],[3401,8],[19863,8],[19882,8],[28752,8],[35289,8]]},"112":{"position":[[82,8]]},"151":{"position":[[227,8],[2239,8]]},"152":{"position":[[1089,8]]}}}],["flipflop",{"_index":7174,"t":{},"d":{},"k":{},"b":{"139":{"position":[[6064,8]]},"140":{"position":[[4865,8]]}}}],["float",{"_index":1807,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6817,8]]},"133":{"position":[[1305,5],[1324,5],[24745,5],[24802,5],[43570,5],[43627,5],[54698,5],[54779,5]]},"134":{"position":[[1264,5],[1295,5],[1326,5],[1351,5],[1395,5],[1436,5],[1641,5],[1676,5],[1736,5],[1810,5],[1835,5],[1879,5],[1920,5],[2166,5],[2382,5],[2416,5],[2730,5],[2765,5],[2956,5],[2990,5],[3464,5],[5922,5],[5941,5],[11506,5],[11525,5]]},"146":{"position":[[1195,5],[7056,5],[8392,5],[11787,5],[11825,5],[11910,5],[24714,5]]}}}],["flow",{"_index":7147,"t":{},"d":{},"k":{},"b":{"139":{"position":[[1579,4],[2278,4],[2349,4],[4228,4],[4483,4],[4594,4],[4631,4],[4719,4],[8105,4],[8462,4],[8565,4],[8830,4],[15581,4],[18594,4]]},"140":{"position":[[1606,4],[1667,4],[2160,4],[2239,4],[3738,4],[3892,4],[4206,4],[4277,4],[4314,4],[4384,4],[4416,4],[4448,4],[4504,4],[12727,4],[12800,4],[12870,4]]},"147":{"position":[[389,4]]}}}],["flow_control",{"_index":7241,"t":{},"d":{},"k":{},"b":{"139":{"position":[[14825,12]]},"140":{"position":[[11727,12]]}}}],["flow_control_pin",{"_index":7240,"t":{},"d":{},"k":{},"b":{"139":{"position":[[14754,16]]}}}],["folder",{"_index":6634,"t":{},"d":{},"k":{},"b":{"133":{"position":[[8819,6]]}}}],["follow",{"_index":367,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3784,6]]},"68":{"position":[[1347,9],[2612,9],[13003,9],[15872,9]]},"69":{"position":[[1282,9],[2077,9],[10449,8]]},"71":{"position":[[9654,9]]},"72":{"position":[[66,9]]},"73":{"position":[[66,9]]},"74":{"position":[[145,9]]},"75":{"position":[[2455,9],[2648,9],[15426,8],[17091,9],[17911,8],[20047,10],[24337,9],[24475,9]]},"76":{"position":[[1301,9],[1843,9]]},"77":{"position":[[844,9],[1023,9],[1403,9]]},"78":{"position":[[1360,6]]},"79":{"position":[[1761,9],[22098,9]]},"80":{"position":[[1695,9],[2852,9],[3849,9],[4490,9]]},"81":{"position":[[664,6]]},"82":{"position":[[2267,6]]},"83":{"position":[[2008,9],[4208,9],[18234,9],[18336,9]]},"84":{"position":[[1205,9],[2279,9]]},"87":{"position":[[5196,6]]},"88":{"position":[[6775,9],[15165,9],[15807,9],[16476,9],[18076,9],[20923,9],[21599,9],[21759,9],[24595,9],[31970,9]]},"89":{"position":[[1598,9],[5638,9]]},"90":{"position":[[1546,9],[5253,9]]},"91":{"position":[[1598,9],[6809,9]]},"92":{"position":[[1774,9],[2231,9],[2630,9]]},"93":{"position":[[1463,6]]},"95":{"position":[[950,9]]},"96":{"position":[[807,9]]},"97":{"position":[[611,9]]},"98":{"position":[[891,9]]},"99":{"position":[[927,9]]},"100":{"position":[[786,9]]},"102":{"position":[[592,9]]},"104":{"position":[[868,9]]},"105":{"position":[[1931,9],[3006,9],[3950,9]]},"106":{"position":[[842,9],[1083,9],[12681,9],[13051,9]]},"107":{"position":[[2813,6]]},"108":{"position":[[764,9],[1197,9],[3354,9]]},"109":{"position":[[2195,6]]},"116":{"position":[[519,9]]},"124":{"position":[[2006,9],[4608,9],[4845,9],[6088,9],[7058,8]]},"125":{"position":[[1264,9],[1489,9],[3653,9],[7432,8]]},"126":{"position":[[3560,8]]},"127":{"position":[[1348,9],[1568,9]]},"128":{"position":[[465,9],[572,9],[13469,9],[18467,9]]},"129":{"position":[[2882,9],[3152,9]]},"131":{"position":[[2282,9],[2827,9],[4637,9],[5418,9],[6719,8]]},"133":{"position":[[5663,9],[6041,9],[7056,8],[8404,8]]},"135":{"position":[[1651,9],[5543,9],[7090,9],[16949,9],[18149,9],[19307,9],[20518,9],[21296,9]]},"136":{"position":[[3924,8],[4040,9],[7065,9]]},"137":{"position":[[3731,6]]},"138":{"position":[[2086,9]]},"139":{"position":[[1281,9],[1849,9],[7192,9],[8438,6]]},"140":{"position":[[1303,9],[1817,9],[6090,9]]},"142":{"position":[[1850,9],[8264,9],[18784,9],[20141,9],[21200,9],[22312,9],[22991,9]]},"143":{"position":[[3610,6],[6092,6]]},"144":{"position":[[3499,6]]},"145":{"position":[[1304,9],[3648,6]]},"146":{"position":[[1390,9],[1726,9]]},"147":{"position":[[161,9]]},"148":{"position":[[1175,9],[1291,9],[1549,9],[3820,9],[4379,9]]},"149":{"position":[[2340,6]]},"150":{"position":[[1436,9],[2086,9],[6194,9],[6789,8],[13716,8],[14138,8]]},"151":{"position":[[1222,10],[1742,10]]},"287":{"position":[[491,9]]},"288":{"position":[[211,9]]},"289":{"position":[[647,9]]},"290":{"position":[[231,9]]},"291":{"position":[[203,9]]},"292":{"position":[[1851,9]]}}}],["footer",{"_index":5544,"t":{},"d":{},"k":{},"b":{"113":{"position":[[1582,6]]}}}],["forc",{"_index":3360,"t":{},"d":{},"k":{},"b":{"83":{"position":[[16459,5],[32712,6],[32859,5]]},"124":{"position":[[17256,6]]},"125":{"position":[[6068,5]]},"138":{"position":[[16591,6]]}}}],["forget",{"_index":6238,"t":{},"d":{},"k":{},"b":{"128":{"position":[[14565,7]]}}}],["form",{"_index":2547,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33638,4]]}}}],["format",{"_index":5232,"t":{},"d":{},"k":{},"b":{"106":{"position":[[13296,6],[13402,6]]},"113":{"position":[[6372,6],[6872,6],[11760,6]]},"128":{"position":[[21256,10],[21343,10]]}}}],["formula",{"_index":2354,"t":{},"d":{},"k":{},"b":{"75":{"position":[[15278,7]]}}}],["forward",{"_index":2989,"t":{},"d":{},"k":{},"b":{"79":{"position":[[6009,9]]}}}],["found",{"_index":2378,"t":{},"d":{},"k":{},"b":{"75":{"position":[[18508,5]]},"113":{"position":[[3857,6],[6252,6],[8300,5],[8647,6],[8695,5],[13649,6]]},"128":{"position":[[12098,5]]}}}],["four",{"_index":744,"t":{},"d":{},"k":{},"b":{"68":{"position":[[7164,4],[7873,4]]},"69":{"position":[[22469,4],[22602,4]]},"83":{"position":[[42410,4]]},"92":{"position":[[11874,4]]},"105":{"position":[[26951,4]]},"128":{"position":[[6647,4],[19348,4]]},"146":{"position":[[16169,4]]}}}],["fraction",{"_index":2372,"t":{},"d":{},"k":{},"b":{"75":{"position":[[17238,8]]}}}],["frame",{"_index":2149,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1772,5],[1898,5],[2462,5],[2478,5],[4787,5],[4818,5],[5249,5],[9707,5],[9756,6],[9794,6]]},"75":{"position":[[1166,6],[1612,5],[17202,5],[18782,5],[19447,7],[20412,5],[21322,7],[23445,5],[24982,6],[25453,6],[26087,6],[27209,5],[28152,5],[28473,5],[29486,5],[29902,5],[35132,5],[35303,5],[37496,6]]},"88":{"position":[[40211,5]]},"106":{"position":[[21800,5],[22592,5]]},"113":{"position":[[4159,7],[9576,5],[9597,5]]},"135":{"position":[[1245,6],[3736,6],[4010,6],[4285,6],[4391,5],[6002,6],[6143,6],[6295,5],[6800,5],[6929,6],[7036,6],[7426,6],[7687,5],[8249,6],[13662,6],[13743,6],[13831,5]]},"141":{"position":[[11540,7]]},"142":{"position":[[1320,6],[5069,7],[5694,6],[5867,6],[6041,6],[6139,5],[6726,6],[7023,6],[7175,5],[7974,5],[8103,6],[8210,6],[8600,6],[9130,6],[9201,6],[15062,6],[15143,6],[15221,6],[15309,5]]}}}],["frame_typ",{"_index":2384,"t":{},"d":{},"k":{},"b":{"75":{"position":[[18855,11],[25609,11],[26217,11]]}}}],["framework",{"_index":5844,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15013,9]]}}}],["free",{"_index":151,"t":{},"d":{},"k":{},"b":{"1":{"position":[[903,6]]},"76":{"position":[[7922,4],[7972,4]]},"83":{"position":[[6391,4],[19234,4],[21129,4],[21178,4]]},"84":{"position":[[1670,4],[4263,4],[4352,4],[5206,4],[6666,4],[6715,4],[6744,4],[9832,4]]},"88":{"position":[[14390,4],[14678,4],[46524,4],[46549,4]]},"105":{"position":[[12887,4],[12937,4]]},"113":{"position":[[13631,4]]},"131":{"position":[[8178,4]]},"144":{"position":[[185,4]]}}}],["freerto",{"_index":5875,"t":{"128":{"position":[[45,8]]}},"d":{},"k":{},"b":{"118":{"position":[[48,8],[82,8]]},"127":{"position":[[4880,8],[5578,8]]},"128":{"position":[[1,8],[47,8],[118,8],[333,8],[438,8],[494,8],[975,8],[1112,8],[1405,8],[1692,8],[2561,8],[8450,8],[9963,8],[10677,8],[10710,8],[11191,8],[11244,8],[11327,8],[12017,8],[12315,8],[13081,8],[13132,8],[13328,8],[13692,8],[13919,8],[15485,8],[15545,9],[15591,8],[15951,8],[16902,8],[17554,8],[19321,8],[19816,8],[21973,8],[25422,8],[25755,8],[25933,8],[26115,8],[26144,8],[26608,8],[26965,8],[27157,8],[27341,8],[27551,8],[29972,8],[30066,8]]},"129":{"position":[[6505,8],[7203,8]]},"131":{"position":[[10764,8],[11462,8]]},"133":{"position":[[12206,8],[12904,8],[16340,8],[17038,8],[20644,8],[21342,8],[25658,8],[26356,8],[31811,8],[32509,8],[35926,8],[36624,8],[40231,8],[40929,8],[44483,8],[45181,8]]},"152":{"position":[[4557,8]]}}}],["freertos.h",{"_index":6208,"t":{},"d":{},"k":{},"b":{"128":{"position":[[11082,10]]}}}],["freertosconfig.h",{"_index":6132,"t":{},"d":{},"k":{},"b":{"128":{"position":[[759,16],[4191,16],[11483,16],[16618,17]]}}}],["freertosconfig.hmanu",{"_index":6129,"t":{},"d":{},"k":{},"b":{"128":{"position":[[705,22]]}}}],["freq_compare_value_loco",{"_index":7036,"t":{},"d":{},"k":{},"b":{"137":{"position":[[2882,23]]}}}],["freq_rang",{"_index":1313,"t":{},"d":{},"k":{},"b":{"70":{"position":[[1064,11],[17771,10]]}}}],["frequenc",{"_index":733,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5832,9]]},"69":{"position":[[11256,9]]},"70":{"position":[[13339,9],[13411,9],[13479,9],[13549,9],[13620,9]]},"71":{"position":[[2228,10],[41615,10],[41698,9],[41786,10],[44464,9],[44728,9],[47667,9],[47803,9]]},"75":{"position":[[11924,9],[11998,10],[15917,9]]},"76":{"position":[[1685,10],[5471,9],[10636,9],[10823,9],[16426,9],[16613,9],[21050,9]]},"79":{"position":[[5694,9],[7760,9]]},"83":{"position":[[2529,10],[15270,10],[15314,9],[24099,9],[24262,9],[52513,9]]},"84":{"position":[[1508,10],[7909,9],[8101,9],[13900,9]]},"88":{"position":[[7994,9],[8338,9],[8402,9],[8748,9],[9092,9],[9156,9],[13219,9],[13299,9],[15225,9],[15299,9],[15349,9],[15417,9],[16161,9],[21428,9],[41772,10],[44140,9],[46292,9]]},"105":{"position":[[2425,10],[10870,10],[10906,9],[14178,9],[14318,9],[14387,9],[14560,9],[30817,9],[30957,9],[31026,9],[31199,9],[33747,10]]},"106":{"position":[[1846,9],[2626,9],[12549,9]]},"108":{"position":[[2950,10]]},"113":{"position":[[10496,9],[11044,9],[11117,9]]},"125":{"position":[[2826,9]]},"128":{"position":[[2639,9],[2978,9],[3084,9],[3166,9],[3595,9],[5420,9]]},"131":{"position":[[2594,9],[3965,9],[4026,9],[9028,9],[9324,9]]},"132":{"position":[[1996,9],[2007,9],[6277,9]]},"136":{"position":[[3128,9],[3168,9]]},"137":{"position":[[2911,9]]},"138":{"position":[[6614,9]]},"139":{"position":[[7800,9]]},"140":{"position":[[6694,9],[23570,9]]},"144":{"position":[[1714,9]]},"146":{"position":[[3770,9]]},"148":{"position":[[3551,10],[3589,9],[4203,9]]},"149":{"position":[[1084,9],[1171,9]]},"150":{"position":[[6065,9]]}}}],["frequencymust",{"_index":4036,"t":{},"d":{},"k":{},"b":{"88":{"position":[[7939,13],[8693,13]]}}}],["frequencypush",{"_index":4041,"t":{},"d":{},"k":{},"b":{"88":{"position":[[8319,13],[9073,13]]}}}],["frequencyref",{"_index":5101,"t":{},"d":{},"k":{},"b":{"106":{"position":[[1724,14],[2529,14]]}}}],["frequneci",{"_index":3642,"t":{},"d":{},"k":{},"b":{"83":{"position":[[58445,9]]}}}],["fromisr",{"_index":6231,"t":{},"d":{},"k":{},"b":{"128":{"position":[[13526,9]]}}}],["frquenci",{"_index":4088,"t":{},"d":{},"k":{},"b":{"88":{"position":[[15467,8]]}}}],["fscl_max",{"_index":4061,"t":{},"d":{},"k":{},"b":{"88":{"position":[[12409,8],[12542,8]]}}}],["fsp",{"_index":98,"t":{"1":{"position":[[45,3]]},"24":{"position":[[45,3]]}},"d":{},"k":{},"b":{"1":{"position":[[19,3],[96,3],[181,5],[219,3],[277,3],[600,4],[650,3],[718,4],[936,3],[972,3]]},"69":{"position":[[13208,3]]},"71":{"position":[[5752,3],[29804,3],[30081,3],[30219,3],[32379,3],[32656,3],[32794,3],[37985,3]]},"75":{"position":[[15883,3]]},"76":{"position":[[5509,3],[5789,3],[10692,4],[16482,4]]},"77":{"position":[[3162,3]]},"79":{"position":[[5742,3]]},"80":{"position":[[2761,3]]},"83":{"position":[[24149,4]]},"84":{"position":[[7965,4]]},"105":{"position":[[14228,4],[30867,4]]},"111":{"position":[[44,3],[812,3],[1194,3],[1239,3],[1284,3],[1329,3],[1468,3],[1589,3],[1710,3],[1831,3],[1987,3],[2123,3]]},"113":{"position":[[26,3],[1567,3]]},"115":{"position":[[26,3]]},"116":{"position":[[81,4],[149,3],[183,3],[196,3],[211,3],[233,3],[439,3]]},"150":{"position":[[6103,3]]},"151":{"position":[[253,5],[591,3],[703,3],[765,3],[884,3],[2214,3],[2265,5],[2516,3],[2644,3],[2805,3],[2946,3],[3110,3]]},"152":{"position":[[27,3],[137,3],[570,4],[6463,3]]},"153":{"position":[[109,3]]}}}],["fsp_assert",{"_index":1871,"t":{},"d":{},"k":{},"b":{"71":{"position":[[11219,12],[29563,10],[29617,10],[32138,10],[32192,10]]}}}],["fsp_assert(a",{"_index":1918,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13644,13],[13966,13]]}}}],["fsp_cfg/bsp/bsp_cfg.h",{"_index":1848,"t":{},"d":{},"k":{},"b":{"71":{"position":[[9705,22]]}}}],["fsp_cfg/bsp/bsp_mcu_family_cfg.h",{"_index":2110,"t":{},"d":{},"k":{},"b":{"72":{"position":[[117,33]]},"73":{"position":[[117,33]]}}}],["fsp_cfg/r_adc_c_cfg.h",{"_index":673,"t":{},"d":{},"k":{},"b":{"68":{"position":[[2663,22]]}}}],["fsp_cfg/r_adc_e_cfg.h",{"_index":967,"t":{},"d":{},"k":{},"b":{"69":{"position":[[2128,22]]}}}],["fsp_cfg/r_canfd_cfg.h",{"_index":2280,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2699,22]]}}}],["fsp_cfg/r_cmtw_cfg.h",{"_index":2613,"t":{},"d":{},"k":{},"b":{"76":{"position":[[1894,21]]}}}],["fsp_cfg/r_crc_cfg.h",{"_index":2824,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1454,20]]}}}],["fsp_cfg/r_dmac_b_cfg.h",{"_index":2962,"t":{},"d":{},"k":{},"b":{"79":{"position":[[1812,23]]}}}],["fsp_cfg/r_elc_cfg.h",{"_index":3133,"t":{},"d":{},"k":{},"b":{"80":{"position":[[3900,20]]}}}],["fsp_cfg/r_gpt_cfg.h",{"_index":3314,"t":{},"d":{},"k":{},"b":{"83":{"position":[[4259,20]]}}}],["fsp_cfg/r_gtm_cfg.h",{"_index":3657,"t":{},"d":{},"k":{},"b":{"84":{"position":[[2330,20]]}}}],["fsp_cfg/r_i3c_b_cfg.h",{"_index":4029,"t":{},"d":{},"k":{},"b":{"88":{"position":[[6826,22]]}}}],["fsp_cfg/r_intc_irq_cfg.h",{"_index":4360,"t":{},"d":{},"k":{},"b":{"89":{"position":[[1649,25]]}}}],["fsp_cfg/r_intc_nmi_cfg.h",{"_index":4390,"t":{},"d":{},"k":{},"b":{"90":{"position":[[1597,25]]}}}],["fsp_cfg/r_intc_tint_cfg.h",{"_index":4398,"t":{},"d":{},"k":{},"b":{"91":{"position":[[1649,26]]}}}],["fsp_cfg/r_ioport_cfg.h",{"_index":4454,"t":{},"d":{},"k":{},"b":{"92":{"position":[[2681,23]]}}}],["fsp_cfg/r_mtu3_cfg.h",{"_index":4877,"t":{},"d":{},"k":{},"b":{"105":{"position":[[4001,21]]}}}],["fsp_cfg/r_pdm_cfg.h",{"_index":5099,"t":{},"d":{},"k":{},"b":{"106":{"position":[[1134,20]]}}}],["fsp_cfg/r_poeg_cfg.h",{"_index":5440,"t":{},"d":{},"k":{},"b":{"108":{"position":[[1248,21]]}}}],["fsp_cfg/r_riic_master_cfg.h",{"_index":5878,"t":{},"d":{},"k":{},"b":{"124":{"position":[[2057,28]]}}}],["fsp_cfg/r_riic_slave_cfg.h",{"_index":5989,"t":{},"d":{},"k":{},"b":{"125":{"position":[[1540,27]]}}}],["fsp_cfg/r_rspi_cfg.h",{"_index":6779,"t":{},"d":{},"k":{},"b":{"135":{"position":[[1702,21]]}}}],["fsp_cfg/r_rtc_cfg.h",{"_index":6942,"t":{},"d":{},"k":{},"b":{"136":{"position":[[4091,20]]}}}],["fsp_cfg/r_sci_b_i2c_cfg.h",{"_index":7082,"t":{},"d":{},"k":{},"b":{"138":{"position":[[2137,26]]}}}],["fsp_cfg/r_sci_b_uart_cfg.h",{"_index":7149,"t":{},"d":{},"k":{},"b":{"139":{"position":[[1900,27]]}}}],["fsp_cfg/r_scif_uart_cfg.h",{"_index":7310,"t":{},"d":{},"k":{},"b":{"140":{"position":[[1868,26]]}}}],["fsp_cfg/r_spi_b_cfg.h",{"_index":7482,"t":{},"d":{},"k":{},"b":{"142":{"position":[[1901,22]]}}}],["fsp_cfg/r_tsu_b_cfg.h",{"_index":7842,"t":{},"d":{},"k":{},"b":{"146":{"position":[[1777,22]]}}}],["fsp_cfg/r_wdt_cfg.h",{"_index":7993,"t":{},"d":{},"k":{},"b":{"148":{"position":[[1600,20]]}}}],["fsp_cfg/rm_comms_i2c_cfg.h",{"_index":6077,"t":{},"d":{},"k":{},"b":{"127":{"position":[[1619,27]]}}}],["fsp_cfg/rm_hs300x_cfg.h",{"_index":6396,"t":{},"d":{},"k":{},"b":{"129":{"position":[[3203,24]]}}}],["fsp_cfg/rm_hs400x_cfg.h",{"_index":6480,"t":{},"d":{},"k":{},"b":{"131":{"position":[[2878,24]]}}}],["fsp_cfg/rm_zmod4xxx_cfg.h",{"_index":6605,"t":{},"d":{},"k":{},"b":{"133":{"position":[[6092,26]]}}}],["fsp_common",{"_index":1847,"t":{},"d":{},"k":{},"b":{"71":{"position":[[9639,10]]}}}],["fsp_cpp_header",{"_index":5533,"t":{},"d":{},"k":{},"b":{"113":{"position":[[201,14],[1287,14],[1339,14]]}}}],["fsp_critical_section_defin",{"_index":1833,"t":{},"d":{},"k":{},"b":{"71":{"position":[[8760,28]]}}}],["fsp_critical_section_ent",{"_index":1835,"t":{},"d":{},"k":{},"b":{"71":{"position":[[8838,27],[13704,26],[14026,26],[30241,26],[30311,26],[32816,26],[32886,26]]}}}],["fsp_critical_section_exit",{"_index":1838,"t":{},"d":{},"k":{},"b":{"71":{"position":[[9038,26],[13741,25],[14063,25],[30444,25],[30513,25],[33019,25],[33088,25]]}}}],["fsp_err_abort",{"_index":5567,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2957,15]]}}}],["fsp_err_abortedcommun",{"_index":6436,"t":{},"d":{},"k":{},"b":{"129":{"position":[[15976,28],[16907,28]]},"131":{"position":[[16676,28],[18046,28],[18870,28],[19852,28]]},"133":{"position":[[51813,28],[52391,28],[52965,28],[53555,28],[54330,28],[55981,28]]}}}],["fsp_err_already_open",{"_index":5563,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2695,20]]}}}],["fsp_err_already_opencontrol",{"_index":7267,"t":{},"d":{},"k":{},"b":{"139":{"position":[[18632,27]]},"140":{"position":[[17161,27]]}}}],["fsp_err_already_opendriv",{"_index":2567,"t":{},"d":{},"k":{},"b":{"75":{"position":[[35985,26]]},"150":{"position":[[19510,26]]}}}],["fsp_err_already_openinst",{"_index":6880,"t":{},"d":{},"k":{},"b":{"135":{"position":[[17241,28]]},"142":{"position":[[19076,28]]}}}],["fsp_err_already_openmodul",{"_index":2871,"t":{},"d":{},"k":{},"b":{"77":{"position":[[5732,26]]},"83":{"position":[[47027,26]]},"92":{"position":[[29062,26]]},"105":{"position":[[28620,26]]},"108":{"position":[[6104,26]]},"124":{"position":[[14742,26]]},"125":{"position":[[14545,26]]},"127":{"position":[[7701,26]]},"129":{"position":[[11810,26]]},"131":{"position":[[16544,26]]},"133":{"position":[[51672,26]]},"136":{"position":[[11517,26]]},"138":{"position":[[13205,26]]},"148":{"position":[[11222,26]]}}}],["fsp_err_already_openopen",{"_index":4342,"t":{},"d":{},"k":{},"b":{"88":{"position":[[51862,24]]}}}],["fsp_err_already_openr_cmtw_open",{"_index":2784,"t":{},"d":{},"k":{},"b":{"76":{"position":[[23658,31]]}}}],["fsp_err_already_openr_gtm_open",{"_index":3694,"t":{},"d":{},"k":{},"b":{"84":{"position":[[16167,30]]}}}],["fsp_err_already_openr_mhu_b_ns_open",{"_index":4770,"t":{},"d":{},"k":{},"b":{"95":{"position":[[2406,35]]}}}],["fsp_err_already_openr_mhu_b_ns_swint_get_open",{"_index":4790,"t":{},"d":{},"k":{},"b":{"96":{"position":[[2106,45]]}}}],["fsp_err_already_openr_mhu_b_ns_swint_set_open",{"_index":4804,"t":{},"d":{},"k":{},"b":{"97":{"position":[[1850,45]]}}}],["fsp_err_already_openr_mhu_b_s_open",{"_index":4812,"t":{},"d":{},"k":{},"b":{"98":{"position":[[2341,34]]}}}],["fsp_err_already_openr_mhu_ns_open",{"_index":4817,"t":{},"d":{},"k":{},"b":{"99":{"position":[[2371,33]]}}}],["fsp_err_already_openr_mhu_ns_swint_get_open",{"_index":4825,"t":{},"d":{},"k":{},"b":{"100":{"position":[[2073,43]]}}}],["fsp_err_already_openr_mhu_ns_swint_set_open",{"_index":4837,"t":{},"d":{},"k":{},"b":{"102":{"position":[[1819,43]]}}}],["fsp_err_already_openr_mhu_s_open",{"_index":4846,"t":{},"d":{},"k":{},"b":{"104":{"position":[[2306,32]]}}}],["fsp_err_already_openth",{"_index":930,"t":{},"d":{},"k":{},"b":{"68":{"position":[[23632,23]]},"69":{"position":[[29909,23]]},"79":{"position":[[16969,23]]},"80":{"position":[[9197,23]]},"89":{"position":[[5691,23]]},"90":{"position":[[5307,23]]},"91":{"position":[[6862,23]]},"106":{"position":[[20878,23]]},"146":{"position":[[17014,23]]}}}],["fsp_err_approxim",{"_index":5564,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2782,21]]}}}],["fsp_err_assert",{"_index":1867,"t":{},"d":{},"k":{},"b":{"71":{"position":[[11014,17],[11064,17],[11148,17],[11174,17]]}}}],["fsp_err_assertiona",{"_index":957,"t":{},"d":{},"k":{},"b":{"68":{"position":[[31305,18]]},"69":{"position":[[37932,18]]},"75":{"position":[[36148,18],[40491,18]]},"76":{"position":[[17607,18],[21083,18],[21873,18],[23494,18],[25639,18]]},"83":{"position":[[46938,18],[57365,18]]},"84":{"position":[[11224,18],[13933,18],[14555,18],[16056,18],[17152,18]]},"89":{"position":[[7959,18]]},"90":{"position":[[7509,18]]},"91":{"position":[[9120,18]]},"95":{"position":[[2350,18],[3053,18],[4303,18]]},"96":{"position":[[2050,18],[3617,18]]},"97":{"position":[[1794,18],[2391,18]]},"98":{"position":[[2285,18],[2984,18],[4229,18]]},"99":{"position":[[2315,18],[3010,18],[4250,18]]},"100":{"position":[[2017,18],[3570,18]]},"102":{"position":[[1763,18],[2352,18]]},"104":{"position":[[2250,18],[2941,18],[4176,18]]},"105":{"position":[[28564,18],[32060,18],[33077,18],[38269,18]]},"106":{"position":[[25789,18]]},"108":{"position":[[6015,18],[7702,18]]},"124":{"position":[[19900,18]]},"125":{"position":[[18411,18]]},"135":{"position":[[21602,18],[23405,18]]},"138":{"position":[[18655,18]]},"139":{"position":[[26492,18]]},"140":{"position":[[25344,18]]},"142":{"position":[[23297,18],[25144,18]]},"146":{"position":[[24197,18]]},"148":{"position":[[14807,18]]},"150":{"position":[[21728,18],[22213,18],[22633,18],[26659,18]]}}}],["fsp_err_assertionan",{"_index":929,"t":{},"d":{},"k":{},"b":{"68":{"position":[[23580,19],[24319,19],[24995,19],[25452,19],[26425,19],[27025,19],[27619,19],[28300,19],[29060,19],[29563,19]]},"69":{"position":[[29857,19],[30746,19],[31547,19],[32438,19],[33782,19],[34425,19],[35019,19],[35700,19],[36160,19]]},"79":{"position":[[16744,19],[17498,19],[18947,19],[19443,19],[19901,19],[20387,19],[21087,19],[21451,19],[22230,19]]},"83":{"position":[[56215,19]]},"88":{"position":[[51815,19],[52276,19],[52863,19],[53777,19],[54419,19],[55181,19],[56114,19],[56921,19],[58140,19],[59126,19],[60082,19],[60987,19],[61604,19]]},"135":{"position":[[17300,19]]},"142":{"position":[[19135,19]]},"146":{"position":[[16962,19],[18440,19],[19633,19],[20404,19],[20980,19],[21950,19],[22446,19],[24970,19]]}}}],["fsp_err_assertioneith",{"_index":2876,"t":{},"d":{},"k":{},"b":{"77":{"position":[[6888,23],[7628,23]]}}}],["fsp_err_assertioninvalid",{"_index":3199,"t":{},"d":{},"k":{},"b":{"80":{"position":[[10131,24]]},"136":{"position":[[11462,24],[11930,24],[12343,24],[13017,24],[13800,24],[14577,24],[15216,24],[16055,24],[16716,24],[17423,24]]}}}],["fsp_err_assertionnul",{"_index":2572,"t":{},"d":{},"k":{},"b":{"75":{"position":[[36582,21],[39121,21],[39719,21]]},"92":{"position":[[29027,21],[30303,21],[30884,21],[32090,21],[33191,21],[33820,21],[34584,21],[35854,21],[36952,21],[38394,21],[39245,21],[40509,21]]},"124":{"position":[[20534,21]]},"127":{"position":[[7616,21],[8115,21],[8743,21],[9375,21],[9982,21]]},"129":{"position":[[11725,21],[12212,21],[12780,21],[13328,21],[14069,21],[14740,21],[15807,21],[16738,21],[17605,21]]},"131":{"position":[[16459,21],[17038,21],[17901,21],[18725,21],[19721,21],[20554,21]]},"133":{"position":[[51614,21],[52233,21],[52807,21],[53397,21],[54172,21],[55195,21],[55823,21],[56765,21],[57615,21],[58447,21],[59304,21],[60154,21],[61004,21],[61832,21],[62281,21]]},"135":{"position":[[18358,21],[19518,21],[20733,21]]},"138":{"position":[[19285,21]]},"139":{"position":[[25560,21]]},"140":{"position":[[23480,21]]},"142":{"position":[[20350,21],[21411,21],[22527,21]]},"148":{"position":[[11137,21],[11890,21],[12668,21],[13397,21],[14001,21]]}}}],["fsp_err_assertionon",{"_index":2579,"t":{},"d":{},"k":{},"b":{"75":{"position":[[37508,20]]},"89":{"position":[[5610,20]]},"90":{"position":[[5225,20]]},"91":{"position":[[6781,20]]}}}],["fsp_err_assertionp_api_ctrl",{"_index":2584,"t":{},"d":{},"k":{},"b":{"75":{"position":[[38254,27]]},"124":{"position":[[15844,28],[16795,27],[17370,27],[18898,27]]},"125":{"position":[[16051,28],[17162,27],[17621,27]]}}}],["fsp_err_assertionp_ctrl",{"_index":2761,"t":{},"d":{},"k":{},"b":{"76":{"position":[[15808,23],[18747,23],[19190,23],[19769,23],[20308,23],[22338,23],[24308,23],[24806,23]]},"77":{"position":[[5685,23],[6063,23],[8910,23]]},"80":{"position":[[9150,23],[9542,23],[10750,23],[11250,23]]},"83":{"position":[[47870,23],[48232,23],[48746,23],[49188,23],[49733,23],[50749,23],[51706,23],[52572,23],[53173,23],[53771,23],[54352,23],[54851,23],[55484,23],[57899,23]]},"84":{"position":[[10222,23],[12590,23],[14933,23]]},"92":{"position":[[29417,23]]},"95":{"position":[[3465,23]]},"96":{"position":[[2707,23]]},"97":{"position":[[2859,23]]},"98":{"position":[[3393,23]]},"99":{"position":[[3416,23]]},"100":{"position":[[2664,23]]},"102":{"position":[[2814,23]]},"104":{"position":[[3344,23]]},"105":{"position":[[29201,23],[29641,23],[30158,23],[33787,23],[34556,23],[35156,23],[35738,23],[36228,23],[37448,23],[38701,23]]},"108":{"position":[[6877,23],[8237,23],[8795,23],[9203,23]]},"138":{"position":[[16157,24],[16985,23],[17753,23]]},"148":{"position":[[10252,23]]}}}],["fsp_err_assertionp_instance_ctrl",{"_index":8306,"t":{},"d":{},"k":{},"b":{"150":{"position":[[19989,32],[23348,33],[24393,32],[25200,32]]}}}],["fsp_err_assertionparamet",{"_index":5977,"t":{},"d":{},"k":{},"b":{"124":{"position":[[14864,26]]},"125":{"position":[[14828,26]]},"138":{"position":[[13327,26]]}}}],["fsp_err_assertionpoint",{"_index":2885,"t":{},"d":{},"k":{},"b":{"77":{"position":[[8465,24]]},"124":{"position":[[18303,24]]},"136":{"position":[[18240,24]]},"139":{"position":[[18369,24],[19487,24],[20732,24],[21987,24],[22703,24],[23241,24],[24116,24],[27378,24]]},"140":{"position":[[16988,24],[17973,24],[18904,24],[19845,24],[20559,24],[21095,24],[21968,24],[24327,24]]}}}],["fsp_err_assertionth",{"_index":2030,"t":{},"d":{},"k":{},"b":{"71":{"position":[[38180,20],[43880,20]]},"89":{"position":[[6451,20],[7005,20],[8514,20]]},"90":{"position":[[6001,20],[6555,20],[8064,20]]},"91":{"position":[[7616,20],[8164,20],[9677,20]]},"106":{"position":[[20816,20],[21892,20],[22684,20],[23744,20],[24494,20],[24981,20]]},"138":{"position":[[14139,20],[14950,20]]},"150":{"position":[[19440,20]]}}}],["fsp_err_blank_check_fail",{"_index":5634,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5880,26]]}}}],["fsp_err_ble_abs_invalid_oper",{"_index":5809,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13524,33]]}}}],["fsp_err_ble_abs_not_found",{"_index":5810,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13591,25]]}}}],["fsp_err_ble_config_fail",{"_index":5805,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13339,25]]}}}],["fsp_err_ble_fail",{"_index":5802,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13236,18]]}}}],["fsp_err_ble_init_fail",{"_index":5804,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13279,23]]}}}],["fsp_err_ble_prf_already_en",{"_index":5806,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13400,31]]}}}],["fsp_err_ble_prf_not_en",{"_index":5808,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13470,27]]}}}],["fsp_err_break_detect",{"_index":5596,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4183,20]]}}}],["fsp_err_buffer_empti",{"_index":5590,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3960,20]]}}}],["fsp_err_buffer_emptybuff",{"_index":2585,"t":{},"d":{},"k":{},"b":{"75":{"position":[[38307,26]]}}}],["fsp_err_buffer_releas",{"_index":5698,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8872,23]]}}}],["fsp_err_calibrate_fail",{"_index":5683,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7979,24]]}}}],["fsp_err_can_data_unavail",{"_index":5771,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11824,28]]}}}],["fsp_err_can_init_fail",{"_index":5773,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11941,23]]}}}],["fsp_err_can_init_failedth",{"_index":2570,"t":{},"d":{},"k":{},"b":{"75":{"position":[[36199,26]]}}}],["fsp_err_can_message_lost",{"_index":5777,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12194,24]]}}}],["fsp_err_can_mode_switch_fail",{"_index":5772,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11874,30]]}}}],["fsp_err_can_receive_mailbox",{"_index":5775,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12054,27]]}}}],["fsp_err_can_transmit_fifo_ful",{"_index":5778,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12270,30]]}}}],["fsp_err_can_transmit_mailbox",{"_index":5776,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12123,28]]}}}],["fsp_err_can_transmit_not_readi",{"_index":5774,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11999,30]]}}}],["fsp_err_can_transmit_not_readytransmit",{"_index":2576,"t":{},"d":{},"k":{},"b":{"75":{"position":[[37287,38]]}}}],["fsp_err_card_init_fail",{"_index":5757,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11298,24]]}}}],["fsp_err_card_not_initi",{"_index":5764,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11503,28]]}}}],["fsp_err_card_not_insert",{"_index":5760,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11370,25]]}}}],["fsp_err_card_write_protect",{"_index":5765,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11555,28]]}}}],["fsp_err_cellular_config_fail",{"_index":5789,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12742,30]]}}}],["fsp_err_cellular_fail",{"_index":5798,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13054,23]]}}}],["fsp_err_cellular_fw_upgrade_fail",{"_index":5796,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12992,34]]}}}],["fsp_err_cellular_fw_uptod",{"_index":5793,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12939,28]]}}}],["fsp_err_cellular_init_fail",{"_index":5791,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12813,28]]}}}],["fsp_err_cellular_invalid_st",{"_index":5799,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13097,30]]}}}],["fsp_err_cellular_registration_fail",{"_index":5800,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13159,36]]}}}],["fsp_err_cellular_transmit_fail",{"_index":5792,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12883,32]]}}}],["fsp_err_clamp",{"_index":5565,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2843,15]]}}}],["fsp_err_clkout_exceed",{"_index":5622,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5319,23]]}}}],["fsp_err_clock_act",{"_index":5612,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4787,20]]}}}],["fsp_err_clock_gener",{"_index":5637,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6015,24]]}}}],["fsp_err_clock_inact",{"_index":5610,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4720,22]]}}}],["fsp_err_cmd_lock",{"_index":5630,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5692,18]]}}}],["fsp_err_comms_bus_not_open",{"_index":5860,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15788,26]]}}}],["fsp_err_crypto_already_open",{"_index":5831,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14536,27]]}}}],["fsp_err_crypto_authentication_fail",{"_index":5834,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14666,36]]}}}],["fsp_err_crypto_buf_overflow",{"_index":5848,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15196,27]]}}}],["fsp_err_crypto_common_not_open",{"_index":5842,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14973,32]]}}}],["fsp_err_crypto_continu",{"_index":5811,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13658,23]]}}}],["fsp_err_crypto_hal_error",{"_index":5845,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15047,24]]}}}],["fsp_err_crypto_install_key_fail",{"_index":5832,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14598,33]]}}}],["fsp_err_crypto_invalid_operation_mod",{"_index":5849,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15286,37]]}}}],["fsp_err_crypto_invalid_s",{"_index":5829,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14415,27]]}}}],["fsp_err_crypto_invalid_st",{"_index":5830,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14472,28]]}}}],["fsp_err_crypto_key_buf_not_enough",{"_index":5847,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15111,33]]}}}],["fsp_err_crypto_not_impl",{"_index":5824,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14223,30]]}}}],["fsp_err_crypto_not_open",{"_index":5821,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14042,23]]}}}],["fsp_err_crypto_null_point",{"_index":5823,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14158,27]]}}}],["fsp_err_crypto_rng_fatal_error",{"_index":5827,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14358,30]]}}}],["fsp_err_crypto_rng_invalid_param",{"_index":5826,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14288,32]]}}}],["fsp_err_crypto_sce_already_open",{"_index":5818,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13975,31]]}}}],["fsp_err_crypto_sce_authent",{"_index":5838,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14786,33]]}}}],["fsp_err_crypto_sce_fail",{"_index":5813,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13776,23]]}}}],["fsp_err_crypto_sce_hrk_invalid_index",{"_index":5814,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13836,36]]}}}],["fsp_err_crypto_sce_key_set_fail",{"_index":5836,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14728,31]]}}}],["fsp_err_crypto_sce_paramet",{"_index":5839,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14845,28]]}}}],["fsp_err_crypto_sce_prohibit_funct",{"_index":5841,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14899,36]]}}}],["fsp_err_crypto_sce_resource_conflict",{"_index":5812,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13713,36]]}}}],["fsp_err_crypto_sce_retri",{"_index":5815,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13890,24]]}}}],["fsp_err_crypto_sce_verify_fail",{"_index":5817,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13924,30]]}}}],["fsp_err_crypto_unknown",{"_index":5822,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14104,22]]}}}],["fsp_err_ctsu_diag_cco_high",{"_index":5735,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10325,26]]}}}],["fsp_err_ctsu_diag_cco_low",{"_index":5738,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10391,25]]}}}],["fsp_err_ctsu_diag_cfc_gain",{"_index":5755,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11228,26]]}}}],["fsp_err_ctsu_diag_clock_recoveri",{"_index":5754,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11142,32]]}}}],["fsp_err_ctsu_diag_current_sourc",{"_index":5749,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10915,32]]}}}],["fsp_err_ctsu_diag_dac",{"_index":5742,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10516,21]]}}}],["fsp_err_ctsu_diag_ldo_over_voltag",{"_index":5733,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10250,34]]}}}],["fsp_err_ctsu_diag_load_resist",{"_index":5747,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10828,33]]}}}],["fsp_err_ctsu_diag_not_yet",{"_index":5730,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10186,25]]}}}],["fsp_err_ctsu_diag_output_voltag",{"_index":5744,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10583,32]]}}}],["fsp_err_ctsu_diag_over_curr",{"_index":5746,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10743,30]]}}}],["fsp_err_ctsu_diag_over_voltag",{"_index":5745,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10658,30]]}}}],["fsp_err_ctsu_diag_sensclk_gain",{"_index":5750,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10992,30]]}}}],["fsp_err_ctsu_diag_sscg",{"_index":5740,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10455,22]]}}}],["fsp_err_ctsu_diag_suclk_gain",{"_index":5752,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11069,28]]}}}],["fsp_err_ctsu_incomplete_tun",{"_index":5727,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10119,30]]}}}],["fsp_err_ctsu_not_get_data",{"_index":5725,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10057,25]]}}}],["fsp_err_ctsu_scan",{"_index":5724,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10023,21]]}}}],["fsp_err_d2d_error_deinit",{"_index":5702,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8994,24]]}}}],["fsp_err_d2d_error_init",{"_index":5699,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8924,22]]}}}],["fsp_err_d2d_error_rend",{"_index":5703,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9066,27]]}}}],["fsp_err_d2d_error_s",{"_index":5705,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9136,22]]}}}],["fsp_err_device_busi",{"_index":5762,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11421,19]]}}}],["fsp_err_device_busyth",{"_index":8308,"t":{},"d":{},"k":{},"b":{"150":{"position":[[23575,22],[24680,22]]}}}],["fsp_err_erase_fail",{"_index":5575,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3318,20]]}}}],["fsp_err_ether_error_filt",{"_index":5715,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9529,29]]}}}],["fsp_err_ether_error_link",{"_index":5707,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9258,24]]}}}],["fsp_err_ether_error_magic_packet_mod",{"_index":5710,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9336,37]]}}}],["fsp_err_ether_error_no_data",{"_index":5706,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9201,27]]}}}],["fsp_err_ether_error_phy_commun",{"_index":5717,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9623,37]]}}}],["fsp_err_ether_error_transmit_buffer_ful",{"_index":5714,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9456,40]]}}}],["fsp_err_ether_phy_error_link",{"_index":5719,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9779,28]]}}}],["fsp_err_ether_phy_not_readi",{"_index":5720,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9830,27]]}}}],["fsp_err_ether_receive_buffer_act",{"_index":5718,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9715,35]]}}}],["fsp_err_fclk",{"_index":5631,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5749,12]]}}}],["fsp_err_fram",{"_index":5595,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4143,15]]}}}],["fsp_err_hardware_timeout",{"_index":5626,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5494,24]]}}}],["fsp_err_hw_lock",{"_index":5559,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2526,17]]}}}],["fsp_err_illegal_buffer_address",{"_index":5688,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8334,30]]}}}],["fsp_err_illegal_subscriber_list",{"_index":5697,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8800,32]]}}}],["fsp_err_in_us",{"_index":5554,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2405,14]]}}}],["fsp_err_in_usea",{"_index":6882,"t":{},"d":{},"k":{},"b":{"135":{"position":[[18532,15],[19691,15],[20919,15]]},"139":{"position":[[19778,15],[21018,15]]},"140":{"position":[[18173,15],[19104,15]]},"142":{"position":[[20524,15],[21584,15],[22713,15]]}}}],["fsp_err_in_usea/d",{"_index":951,"t":{},"d":{},"k":{},"b":{"68":{"position":[[29204,17]]}}}],["fsp_err_in_usean",{"_index":7123,"t":{},"d":{},"k":{},"b":{"138":{"position":[[17851,16]]}}}],["fsp_err_in_useanoth",{"_index":940,"t":{},"d":{},"k":{},"b":{"68":{"position":[[25596,21]]},"69":{"position":[[32584,21]]},"124":{"position":[[18363,21]]},"125":{"position":[[16110,21],[17213,21]]},"146":{"position":[[18586,21]]}}}],["fsp_err_in_usebu",{"_index":5979,"t":{},"d":{},"k":{},"b":{"124":{"position":[[15903,17],[16846,17]]}}}],["fsp_err_in_usechannel",{"_index":2568,"t":{},"d":{},"k":{},"b":{"75":{"position":[[36031,21]]}}}],["fsp_err_in_useperipher",{"_index":5368,"t":{},"d":{},"k":{},"b":{"106":{"position":[[23680,24]]}}}],["fsp_err_in_useth",{"_index":3636,"t":{},"d":{},"k":{},"b":{"83":{"position":[[53871,17]]},"88":{"position":[[56298,17],[57025,17],[58244,17],[59230,17],[60186,17]]},"105":{"position":[[35244,17]]}}}],["fsp_err_insufficient_data",{"_index":5604,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4444,25]]}}}],["fsp_err_insufficient_spac",{"_index":5602,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4365,26]]}}}],["fsp_err_intern",{"_index":5593,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4071,16]]}}}],["fsp_err_invalid_address",{"_index":5571,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3152,23]]}}}],["fsp_err_invalid_align",{"_index":5640,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6201,25]]}}}],["fsp_err_invalid_alignmentth",{"_index":4353,"t":{},"d":{},"k":{},"b":{"88":{"position":[[57169,28],[58378,28],[59364,28],[60339,28],[61161,28]]},"106":{"position":[[22040,28]]}}}],["fsp_err_invalid_argu",{"_index":5550,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2105,24]]}}}],["fsp_err_invalid_argumenta",{"_index":6883,"t":{},"d":{},"k":{},"b":{"135":{"position":[[18586,25],[19745,25],[20973,25]]}}}],["fsp_err_invalid_argumentbaud",{"_index":7293,"t":{},"d":{},"k":{},"b":{"139":{"position":[[25595,28]]},"140":{"position":[[23515,28]]}}}],["fsp_err_invalid_argumentbuff",{"_index":2583,"t":{},"d":{},"k":{},"b":{"75":{"position":[[38202,30]]}}}],["fsp_err_invalid_argumentdata",{"_index":2577,"t":{},"d":{},"k":{},"b":{"75":{"position":[[37376,28]]}}}],["fsp_err_invalid_argumentdestin",{"_index":7269,"t":{},"d":{},"k":{},"b":{"139":{"position":[[19628,35]]}}}],["fsp_err_invalid_argumentduti",{"_index":3631,"t":{},"d":{},"k":{},"b":{"83":{"position":[[51831,28]]}}}],["fsp_err_invalid_argumentflow",{"_index":7266,"t":{},"d":{},"k":{},"b":{"139":{"position":[[18542,28]]}}}],["fsp_err_invalid_argumentinvalid",{"_index":6991,"t":{},"d":{},"k":{},"b":{"136":{"position":[[11566,31],[12441,31],[13123,31],[14518,31],[16873,31]]},"150":{"position":[[21821,31]]}}}],["fsp_err_invalid_argumentlength",{"_index":2878,"t":{},"d":{},"k":{},"b":{"77":{"position":[[6966,30]]}}}],["fsp_err_invalid_argumentnack",{"_index":6043,"t":{},"d":{},"k":{},"b":{"125":{"position":[[14667,29]]}}}],["fsp_err_invalid_argumentp_cfg",{"_index":4396,"t":{},"d":{},"k":{},"b":{"90":{"position":[[5474,29]]}}}],["fsp_err_invalid_argumentport",{"_index":4666,"t":{},"d":{},"k":{},"b":{"92":{"position":[[32177,28],[33079,28],[36897,28],[38290,28]]}}}],["fsp_err_invalid_argumentset",{"_index":7398,"t":{},"d":{},"k":{},"b":{"140":{"position":[[17311,31]]}}}],["fsp_err_invalid_argumentsourc",{"_index":7272,"t":{},"d":{},"k":{},"b":{"139":{"position":[[20873,30]]}}}],["fsp_err_invalid_argumentth",{"_index":4670,"t":{},"d":{},"k":{},"b":{"92":{"position":[[34473,27],[35742,27],[40397,27]]},"95":{"position":[[2488,27]]},"96":{"position":[[2198,27]]},"98":{"position":[[2422,27]]},"99":{"position":[[2451,27]]},"100":{"position":[[2163,27]]},"104":{"position":[[2385,27]]}}}],["fsp_err_invalid_argumentundefin",{"_index":2054,"t":{},"d":{},"k":{},"b":{"71":{"position":[[42374,33],[43226,33]]}}}],["fsp_err_invalid_block",{"_index":5570,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3092,22]]}}}],["fsp_err_invalid_brightness_set",{"_index":5651,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6584,34]]}}}],["fsp_err_invalid_cac_ref_clock",{"_index":5636,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5939,29]]}}}],["fsp_err_invalid_cal",{"_index":5577,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3365,20]]}}}],["fsp_err_invalid_channel",{"_index":5551,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2157,23]]}}}],["fsp_err_invalid_channelrequest",{"_index":4771,"t":{},"d":{},"k":{},"b":{"95":{"position":[[2554,32]]},"96":{"position":[[2264,32]]},"97":{"position":[[1942,32]]},"98":{"position":[[2488,32]]},"99":{"position":[[2517,32]]},"100":{"position":[[2229,32]]},"102":{"position":[[1909,32]]},"104":{"position":[[2451,32]]}}}],["fsp_err_invalid_channelth",{"_index":3637,"t":{},"d":{},"k":{},"b":{"83":{"position":[[56318,26]]}}}],["fsp_err_invalid_clut_access",{"_index":5646,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6459,27]]}}}],["fsp_err_invalid_data",{"_index":5591,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4012,20]]}}}],["fsp_err_invalid_factory_flash",{"_index":5579,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3493,29]]}}}],["fsp_err_invalid_fade_set",{"_index":5648,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6519,28]]}}}],["fsp_err_invalid_gamma_set",{"_index":5641,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6261,29]]}}}],["fsp_err_invalid_hw_condit",{"_index":5578,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3419,28]]}}}],["fsp_err_invalid_hw_conditioncalibr",{"_index":7928,"t":{},"d":{},"k":{},"b":{"146":{"position":[[17182,39]]}}}],["fsp_err_invalid_hw_conditionth",{"_index":1275,"t":{},"d":{},"k":{},"b":{"69":{"position":[[30159,31]]}}}],["fsp_err_invalid_layer_format",{"_index":5643,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6329,28]]}}}],["fsp_err_invalid_layer_set",{"_index":5639,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6144,29]]}}}],["fsp_err_invalid_linked_address",{"_index":5633,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5787,30]]}}}],["fsp_err_invalid_mod",{"_index":5552,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2216,20]]}}}],["fsp_err_invalid_modean",{"_index":2578,"t":{},"d":{},"k":{},"b":{"75":{"position":[[37443,22]]}}}],["fsp_err_invalid_modecannot",{"_index":2586,"t":{},"d":{},"k":{},"b":{"75":{"position":[[39166,26]]}}}],["fsp_err_invalid_modegpt_io_pin_trough",{"_index":3632,"t":{},"d":{},"k":{},"b":{"83":{"position":[[51894,38]]}}}],["fsp_err_invalid_modemodul",{"_index":6435,"t":{},"d":{},"k":{},"b":{"129":{"position":[[15906,26],[16837,26],[17704,26]]}}}],["fsp_err_invalid_modenot",{"_index":7932,"t":{},"d":{},"k":{},"b":{"146":{"position":[[19779,23]]}}}],["fsp_err_invalid_modeonli",{"_index":5071,"t":{},"d":{},"k":{},"b":{"105":{"position":[[28669,24]]}}}],["fsp_err_invalid_modeth",{"_index":4349,"t":{},"d":{},"k":{},"b":{"88":{"position":[[54523,23]]}}}],["fsp_err_invalid_modethi",{"_index":4345,"t":{},"d":{},"k":{},"b":{"88":{"position":[[52380,24],[55285,24],[56229,24],[57109,24],[58328,24],[59314,24],[60270,24],[61091,24]]},"150":{"position":[[23494,24],[24599,24],[25302,24],[26752,24]]}}}],["fsp_err_invalid_modetriangl",{"_index":3624,"t":{},"d":{},"k":{},"b":{"83":{"position":[[47264,28]]}}}],["fsp_err_invalid_msg_buffer_s",{"_index":5690,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8474,31]]}}}],["fsp_err_invalid_point",{"_index":5549,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2036,23]]}}}],["fsp_err_invalid_r",{"_index":5566,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2902,20]]}}}],["fsp_err_invalid_s",{"_index":5572,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3204,20]]}}}],["fsp_err_invalid_sizeprovid",{"_index":7120,"t":{},"d":{},"k":{},"b":{"138":{"position":[[15022,28],[16202,28]]}}}],["fsp_err_invalid_sizeth",{"_index":5364,"t":{},"d":{},"k":{},"b":{"106":{"position":[[21946,23]]}}}],["fsp_err_invalid_st",{"_index":5582,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3569,21]]}}}],["fsp_err_invalid_stateth",{"_index":3639,"t":{},"d":{},"k":{},"b":{"83":{"position":[[56472,24],[58407,24]]}}}],["fsp_err_invalid_timing_set",{"_index":5638,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6085,30]]}}}],["fsp_err_invalid_update_tim",{"_index":5645,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6391,29]]}}}],["fsp_err_invalid_workbuffer_s",{"_index":5689,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8411,31]]}}}],["fsp_err_ip_channel_not_pres",{"_index":5686,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8180,30]]}}}],["fsp_err_ip_channel_not_presentchannel",{"_index":2569,"t":{},"d":{},"k":{},"b":{"75":{"position":[[36077,37]]},"106":{"position":[[20946,37]]},"124":{"position":[[14791,37]]},"125":{"position":[[14594,37]]},"138":{"position":[[13254,37]]}}}],["fsp_err_ip_channel_not_presentrequest",{"_index":2785,"t":{},"d":{},"k":{},"b":{"76":{"position":[[23828,39]]},"84":{"position":[[16336,39]]}}}],["fsp_err_ip_channel_not_presentth",{"_index":1273,"t":{},"d":{},"k":{},"b":{"69":{"position":[[30077,33]]},"79":{"position":[[16797,33]]},"83":{"position":[[47487,33]]},"89":{"position":[[5858,33]]},"91":{"position":[[7029,33]]},"105":{"position":[[28731,33]]},"108":{"position":[[6279,33]]},"135":{"position":[[17384,33]]},"139":{"position":[[18457,33]]},"140":{"position":[[17076,33]]},"142":{"position":[[19332,33]]},"150":{"position":[[19597,33]]}}}],["fsp_err_ip_hardware_not_pres",{"_index":5684,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8026,31]]}}}],["fsp_err_ip_unit_not_pres",{"_index":5685,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8104,27]]}}}],["fsp_err_irq_bsp_dis",{"_index":5560,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2566,24]]}}}],["fsp_err_irq_bsp_disableda",{"_index":932,"t":{},"d":{},"k":{},"b":{"68":{"position":[[23713,25]]},"69":{"position":[[29990,25]]},"76":{"position":[[23736,25]]},"84":{"position":[[16244,25]]},"146":{"position":[[17095,25]]}}}],["fsp_err_irq_bsp_disabledpoeg_cfg_t::p_callback",{"_index":5456,"t":{},"d":{},"k":{},"b":{"108":{"position":[[6153,46]]}}}],["fsp_err_irq_bsp_disabledrequest",{"_index":4385,"t":{},"d":{},"k":{},"b":{"89":{"position":[[6552,33],[7106,33]]},"90":{"position":[[6102,33],[6656,33]]},"91":{"position":[[7717,33],[8265,33]]}}}],["fsp_err_irq_bsp_disabledth",{"_index":3083,"t":{},"d":{},"k":{},"b":{"79":{"position":[[16867,27]]}}}],["fsp_err_irq_bsp_disabledtimer_cfg_t::mod",{"_index":3621,"t":{},"d":{},"k":{},"b":{"83":{"position":[[47076,41]]}}}],["fsp_err_irq_bsp_disabledus",{"_index":7001,"t":{},"d":{},"k":{},"b":{"136":{"position":[[13906,28],[14683,28],[16161,28]]}}}],["fsp_err_jpeg_block_data_number_error",{"_index":5680,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7752,36]]}}}],["fsp_err_jpeg_buffersize_not_enough",{"_index":5681,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7825,34]]}}}],["fsp_err_jpeg_component_error1",{"_index":5667,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7045,29]]}}}],["fsp_err_jpeg_component_error2",{"_index":5670,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7168,29]]}}}],["fsp_err_jpeg_dqt_accuracy_error",{"_index":5665,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6968,31]]}}}],["fsp_err_jpeg_eoi_not_detect",{"_index":5675,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7460,29]]}}}],["fsp_err_jpeg_err",{"_index":5652,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6657,16]]}}}],["fsp_err_jpeg_image_size_error",{"_index":5677,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7614,29]]}}}],["fsp_err_jpeg_last_mcu_data_number_error",{"_index":5679,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7673,39]]}}}],["fsp_err_jpeg_restart_interval_data_number_error",{"_index":5676,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7519,47]]}}}],["fsp_err_jpeg_sof0_dqt_dht_not_detect",{"_index":5672,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7281,38]]}}}],["fsp_err_jpeg_sof1_to_soff_detect",{"_index":5657,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6757,34]]}}}],["fsp_err_jpeg_sof_accuracy_error",{"_index":5663,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6891,31]]}}}],["fsp_err_jpeg_soi_not_detect",{"_index":5654,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6688,29]]}}}],["fsp_err_jpeg_sos_not_detect",{"_index":5674,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7373,29]]}}}],["fsp_err_jpeg_unsupported_image_s",{"_index":5682,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7900,35]]}}}],["fsp_err_jpeg_unsupported_pixel_format",{"_index":5660,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6817,37]]}}}],["fsp_err_low_voltage_mod",{"_index":5627,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5557,24]]}}}],["fsp_err_media_format_fail",{"_index":5769,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11726,27]]}}}],["fsp_err_media_open_fail",{"_index":5770,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11777,25]]}}}],["fsp_err_message_queue_empti",{"_index":5694,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8656,27]]}}}],["fsp_err_message_queue_ful",{"_index":5695,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8725,26]]}}}],["fsp_err_message_too_long",{"_index":5850,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15350,24]]}}}],["fsp_err_mode_fault",{"_index":5606,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4574,18]]}}}],["fsp_err_no_callback_memori",{"_index":5589,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3866,26]]}}}],["fsp_err_no_callback_memoryp_callback",{"_index":959,"t":{},"d":{},"k":{},"b":{"68":{"position":[[31415,36]]},"75":{"position":[[40601,36]]},"83":{"position":[[57475,36]]},"84":{"position":[[17262,36]]},"89":{"position":[[8069,36]]},"90":{"position":[[7619,36]]},"91":{"position":[[9230,36]]},"95":{"position":[[4413,36]]},"96":{"position":[[3727,36]]},"98":{"position":[[4339,36]]},"99":{"position":[[4360,36]]},"100":{"position":[[3680,36]]},"104":{"position":[[4286,36]]},"106":{"position":[[25899,36]]},"108":{"position":[[7812,36]]},"124":{"position":[[20010,36]]},"125":{"position":[[18521,36]]},"135":{"position":[[23515,36]]},"136":{"position":[[18414,36]]},"138":{"position":[[18765,36]]},"139":{"position":[[26602,36]]},"140":{"position":[[25454,36]]},"142":{"position":[[25254,36]]},"146":{"position":[[24307,36]]},"148":{"position":[[14917,36]]}}}],["fsp_err_no_more_buff",{"_index":5687,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8262,22]]}}}],["fsp_err_no_subscriber_found",{"_index":5692,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8597,27]]}}}],["fsp_err_not_en",{"_index":5568,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3001,19]]}}}],["fsp_err_not_enableddmac",{"_index":3085,"t":{},"d":{},"k":{},"b":{"79":{"position":[[17551,23]]}}}],["fsp_err_not_eras",{"_index":5583,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3640,18]]}}}],["fsp_err_not_found",{"_index":5588,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3807,17]]}}}],["fsp_err_not_initi",{"_index":5587,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3743,23]]}}}],["fsp_err_not_initializedadc_",{"_index":1280,"t":{},"d":{},"k":{},"b":{"69":{"position":[[32530,28]]}}}],["fsp_err_not_initializedth",{"_index":3638,"t":{},"d":{},"k":{},"b":{"83":{"position":[[56389,26]]}}}],["fsp_err_not_initializedtsu_b",{"_index":7930,"t":{},"d":{},"k":{},"b":{"146":{"position":[[18532,28],[19725,28],[21072,28],[25062,28]]}}}],["fsp_err_not_initializedunit",{"_index":939,"t":{},"d":{},"k":{},"b":{"68":{"position":[[25543,27],[26516,27],[27710,27],[28391,27],[29112,27]]},"69":{"position":[[33873,27],[35110,27],[35791,27]]}}}],["fsp_err_not_open",{"_index":5553,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2333,16]]}}}],["fsp_err_not_openadc_",{"_index":1279,"t":{},"d":{},"k":{},"b":{"69":{"position":[[32490,21]]}}}],["fsp_err_not_opencontrol",{"_index":2571,"t":{},"d":{},"k":{},"b":{"75":{"position":[[36537,23],[37242,23],[38157,23],[39076,23],[39674,23]]}}}],["fsp_err_not_opendevic",{"_index":6045,"t":{},"d":{},"k":{},"b":{"125":{"position":[[16163,22],[17266,22],[17581,22]]},"138":{"position":[[14191,22],[15141,22],[16321,22],[17023,22],[17802,22]]}}}],["fsp_err_not_opendriv",{"_index":6994,"t":{},"d":{},"k":{},"b":{"136":{"position":[[11968,22],[12398,22],[13063,22],[13846,22],[14623,22],[15262,22],[16101,22],[16762,22],[17469,22]]},"150":{"position":[[20036,22],[21778,22],[22263,22],[22683,22],[23451,22],[24556,22],[25259,22],[26709,22]]}}}],["fsp_err_not_openhandl",{"_index":3086,"t":{},"d":{},"k":{},"b":{"79":{"position":[[17641,22],[19000,22],[19496,22],[19954,22],[20440,22],[20989,22],[21504,22],[22283,22]]},"124":{"position":[[15976,22],[16919,22],[17412,22],[18416,22],[18940,22]]}}}],["fsp_err_not_openinst",{"_index":8059,"t":{},"d":{},"k":{},"b":{"148":{"position":[[10290,24],[11941,24],[12719,24],[13455,24],[14037,24]]}}}],["fsp_err_not_openmodul",{"_index":6124,"t":{},"d":{},"k":{},"b":{"127":{"position":[[8173,22],[8801,22],[9433,22],[10040,22]]},"129":{"position":[[12270,22],[12838,22],[13413,22],[14154,22],[14798,22],[15865,22],[16796,22],[17663,22]]},"131":{"position":[[17096,22],[17959,22],[18783,22],[19898,22],[20639,22]]},"133":{"position":[[52291,22],[52865,22],[53455,22],[54230,22],[55253,22],[55881,22],[56823,22],[57673,22],[58505,22],[59362,22],[60212,22],[61062,22],[61890,22],[62339,22]]}}}],["fsp_err_not_openth",{"_index":958,"t":{},"d":{},"k":{},"b":{"68":{"position":[[31355,19]]},"69":{"position":[[37982,19]]},"75":{"position":[[40541,19]]},"76":{"position":[[15846,19],[17768,19],[18784,19],[19228,19],[19808,19],[20347,19],[21133,19],[21923,19],[22377,19],[24359,19],[24857,19],[25689,19]]},"77":{"position":[[6101,19],[7017,19],[7692,19],[8523,19],[8948,19]]},"80":{"position":[[9580,19],[10193,19],[10788,19],[11288,19]]},"83":{"position":[[47909,19],[48271,19],[48785,19],[49227,19],[49772,19],[50788,19],[51782,19],[52621,19],[53224,19],[53822,19],[54403,19],[54902,19],[55535,19],[56269,19],[57415,19],[57938,19]]},"84":{"position":[[10260,19],[11332,19],[12628,19],[13983,19],[14605,19],[14972,19],[17202,19]]},"89":{"position":[[6504,19],[7058,19],[8009,19],[8566,19]]},"90":{"position":[[6054,19],[6608,19],[7559,19],[8116,19]]},"91":{"position":[[7669,19],[8217,19],[9170,19],[9729,19]]},"92":{"position":[[29455,19],[30251,19],[30832,19],[32125,19],[33139,19],[33855,19],[34533,19],[35802,19],[36987,19],[38342,19],[39280,19],[40457,19]]},"95":{"position":[[3104,19],[3503,19],[4353,19]]},"96":{"position":[[2745,19],[3667,19]]},"97":{"position":[[2442,19],[2897,19]]},"98":{"position":[[3035,19],[3431,19],[4279,19]]},"99":{"position":[[3061,19],[3454,19],[4300,19]]},"100":{"position":[[2702,19],[3620,19]]},"102":{"position":[[2403,19],[2852,19]]},"104":{"position":[[2992,19],[3382,19],[4226,19]]},"105":{"position":[[29240,19],[29680,19],[30197,19],[32168,19],[33185,19],[33836,19],[34607,19],[35195,19],[35777,19],[36267,19],[37487,19],[38319,19],[38740,19]]},"106":{"position":[[22152,19],[22738,19],[23834,19],[24559,19],[25035,19],[25839,19]]},"108":{"position":[[6928,19],[7752,19],[8276,19],[8834,19],[9242,19]]},"124":{"position":[[19950,19]]},"125":{"position":[[18461,19]]},"135":{"position":[[18458,19],[19613,19],[20841,19],[21661,19],[23455,19]]},"136":{"position":[[18355,19]]},"138":{"position":[[18705,19]]},"139":{"position":[[19719,19],[20959,19],[22104,19],[22764,19],[23302,19],[24177,19],[26542,19],[27439,19]]},"140":{"position":[[18114,19],[19045,19],[19962,19],[20620,19],[21156,19],[22029,19],[24388,19],[25394,19]]},"142":{"position":[[20450,19],[21506,19],[22635,19],[23356,19],[25194,19]]},"146":{"position":[[24247,19]]},"148":{"position":[[14857,19]]}}}],["fsp_err_not_openthi",{"_index":4344,"t":{},"d":{},"k":{},"b":{"88":{"position":[[52320,20],[52907,20],[53821,20],[54463,20],[55225,20],[56169,20],[56965,20],[58184,20],[59170,20],[60126,20],[61031,20],[61648,20]]}}}],["fsp_err_not_opentsu_b",{"_index":7929,"t":{},"d":{},"k":{},"b":{"146":{"position":[[18492,21],[19685,21],[21032,21],[22498,21],[25022,21]]}}}],["fsp_err_not_openunit",{"_index":934,"t":{},"d":{},"k":{},"b":{"68":{"position":[[24371,20],[25047,20],[25504,20],[26477,20],[27077,20],[27671,20],[28352,20],[29165,20],[29615,20]]},"69":{"position":[[30798,20],[31599,20],[33834,20],[34477,20],[35071,20],[35752,20],[36212,20]]},"146":{"position":[[20456,20],[22002,20]]}}}],["fsp_err_not_stabil",{"_index":5613,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4873,22]]}}}],["fsp_err_osc_stop_clock_act",{"_index":5620,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5213,29]]}}}],["fsp_err_osc_stop_det_en",{"_index":5616,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5040,28]]}}}],["fsp_err_osc_stop_detect",{"_index":5619,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5134,25]]}}}],["fsp_err_out_of_memori",{"_index":5557,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2458,21]]}}}],["fsp_err_overflow",{"_index":5561,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2617,16]]}}}],["fsp_err_overrun",{"_index":5609,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4687,15]]}}}],["fsp_err_par",{"_index":5597,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4228,14]]}}}],["fsp_err_pe_failur",{"_index":5628,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5637,18]]}}}],["fsp_err_pll_src_inact",{"_index":5615,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4953,24]]}}}],["fsp_err_pll_src_inactiveclock",{"_index":2055,"t":{},"d":{},"k":{},"b":{"71":{"position":[[42433,29],[43284,29]]}}}],["fsp_err_queue_empti",{"_index":5722,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9965,19]]}}}],["fsp_err_queue_ful",{"_index":5721,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9902,18]]}}}],["fsp_err_queue_unavail",{"_index":5599,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4315,25]]}}}],["fsp_err_read_overflow",{"_index":5607,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4613,21]]}}}],["fsp_err_respons",{"_index":5768,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11658,16]]}}}],["fsp_err_rsa_decryption_error",{"_index":5853,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15417,28]]}}}],["fsp_err_rxbuf_overflow",{"_index":5598,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4266,22]]}}}],["fsp_err_sector_release_fail",{"_index":5585,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3688,29]]}}}],["fsp_err_sensor_in_stabil",{"_index":5858,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15660,31]]},"133":{"position":[[15150,32],[19316,32],[24211,32],[30425,32],[34750,32],[38903,32],[43207,32],[48928,32]]}}}],["fsp_err_sensor_invalid_data",{"_index":5855,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15470,27]]},"129":{"position":[[9712,28]]},"131":{"position":[[14198,28]]}}}],["fsp_err_sensor_invalid_datadata",{"_index":6433,"t":{},"d":{},"k":{},"b":{"129":{"position":[[14195,31]]},"131":{"position":[[20680,31]]}}}],["fsp_err_sensor_measurement_not_finish",{"_index":5859,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15717,39]]},"133":{"position":[[14570,40],[14747,41],[18736,40],[18913,41],[23631,40],[23808,41],[28887,40],[29064,41],[34175,40],[34352,41],[38322,40],[38499,41],[42627,40],[42804,41],[47589,40],[47766,41]]}}}],["fsp_err_sensor_measurement_not_finishedmeasur",{"_index":6706,"t":{},"d":{},"k":{},"b":{"133":{"position":[[54376,50]]}}}],["fsp_err_spi_par",{"_index":5608,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4652,18]]}}}],["fsp_err_t",{"_index":368,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3815,11],[3892,11],[3970,11],[4022,11],[4102,11],[4153,11],[4233,11],[4332,11],[4433,11],[4507,11],[4609,11],[4784,11],[4832,11],[4970,11],[5544,11],[6112,11],[6470,11],[6914,11],[7289,11],[7657,11],[8109,11],[8591,11],[9162,11],[9732,11],[10468,11],[10852,11]]},"68":{"position":[[13,9],[89,9],[171,9],[244,9],[295,9],[378,9],[428,9],[503,9],[601,9],[701,9],[783,9],[830,9],[931,9],[1010,9],[9821,9],[12515,9],[15382,9],[23224,9],[23856,9],[24466,9],[25144,9],[25732,9],[26194,9],[26627,9],[27169,9],[27818,9],[28512,9],[29301,9],[29712,9],[30226,9],[30651,9]]},"69":{"position":[[13,9],[89,9],[171,9],[244,9],[295,9],[378,9],[428,9],[503,9],[601,9],[701,9],[748,9],[849,9],[928,9],[13703,9],[15126,9],[17724,9],[29312,9],[30285,9],[30893,9],[31696,9],[32720,9],[33189,9],[33984,9],[34569,9],[35218,9],[35898,9],[36309,9],[36834,9],[37278,9]]},"71":{"position":[[13,9],[519,9],[611,9],[700,9],[825,9],[37851,9],[41865,9],[42716,9],[43561,9],[46351,9]]},"74":{"position":[[3223,11],[3300,11],[3400,11],[3499,11],[3547,11],[3672,11],[3748,11],[3981,11],[4422,11],[4887,11],[5310,11],[5583,11],[6056,11],[6436,11]]},"75":{"position":[[13,9],[99,9],[156,9],[264,9],[371,9],[501,9],[586,9],[27932,9],[29113,9],[35520,9],[36330,9],[36682,9],[37679,9],[38420,9],[39313,9],[39824,9]]},"76":{"position":[[13,9],[67,9],[155,9],[270,9],[324,9],[378,9],[433,9],[489,9],[573,9],[663,9],[716,9],[801,9],[881,9],[962,9],[7293,9],[8134,9],[9591,9],[10333,9],[15522,9],[15970,9],[17895,9],[18520,9],[18904,9],[19349,9],[19912,9],[20451,9],[21257,9],[22042,9],[22496,9],[23974,9],[24469,9],[24965,9]]},"77":{"position":[[13,9],[93,9],[144,9],[258,9],[349,9],[425,9],[5203,9],[5829,9],[6204,9],[7129,9],[7797,9],[8687,9]]},"78":{"position":[[1391,11],[1468,11],[1516,11],[1593,11],[1666,11],[1721,11],[1887,11],[2208,11],[2525,11],[2895,11],[3204,11],[3453,11]]},"79":{"position":[[13,9],[110,9],[204,9],[348,9],[447,9],[517,9],[581,9],[646,9],[748,9],[811,9],[7996,9],[16405,9],[17096,9],[17794,9],[18412,9],[19160,9],[19650,9],[20109,9],[20595,9],[21195,9],[21658,9]]},"80":{"position":[[13,9],[93,9],[144,9],[246,9],[348,9],[432,9],[484,9],[7741,9],[8532,9],[9303,9],[9700,9],[10299,9],[10896,9],[11393,9],[11702,9]]},"81":{"position":[[695,11],[772,11],[820,11],[916,11],[1015,11],[1096,11],[1145,11],[1253,11],[1595,11],[1890,11],[2281,11],[2688,11],[3027,11],[3295,11]]},"82":{"position":[[2298,11],[2393,11],[2451,11],[2510,11],[2712,11],[2827,11],[3334,11],[3737,11],[4146,11],[4971,11]]},"83":{"position":[[13,9],[97,9],[149,9],[202,9],[255,9],[309,9],[364,9],[451,9],[565,9],[648,9],[737,9],[813,9],[891,9],[970,9],[1106,9],[1271,9],[1455,9],[1508,9],[20562,9],[21314,9],[23121,9],[23798,9],[25343,9],[26642,9],[46253,9],[47651,9],[48010,9],[48372,9],[48887,9],[49330,9],[49877,9],[50896,9],[52112,9],[52726,9],[53330,9],[54016,9],[54512,9],[55011,9],[55648,9],[56692,9],[57631,9],[58058,9]]},"84":{"position":[[13,9],[66,9],[153,9],[267,9],[320,9],[373,9],[427,9],[482,9],[565,9],[654,9],[706,9],[790,9],[6093,9],[6810,9],[7602,9],[9937,9],[10383,9],[11458,9],[12043,9],[12381,9],[12748,9],[13121,9],[13497,9],[14106,9],[14723,9],[15090,9],[16479,9]]},"85":{"position":[[3195,11],[3286,11],[3405,11],[3524,11],[3579,11],[3706,11],[3902,11],[3996,11],[4109,11],[4550,11],[5128,11],[5713,11],[6045,11],[6582,11],[7349,11],[7759,11]]},"86":{"position":[[2841,11],[2930,11],[3028,11],[3126,11],[3319,11],[3431,11],[3848,11],[4301,11],[4766,11],[5493,11]]},"87":{"position":[[5227,11],[5304,11],[5353,11],[5452,11],[5594,11],[5695,11],[5877,11],[5969,11],[6071,11],[6179,11],[6280,11],[6402,11],[6492,11],[6598,11],[7008,11],[7286,11],[7697,11],[8413,11],[8967,11],[9880,11],[10395,11],[10883,11],[11687,11],[12609,11],[13187,11],[13694,11]]},"88":{"position":[[13,9],[99,9],[157,9],[265,9],[416,9],[510,9],[620,9],[811,9],[922,9],[1039,9],[1149,9],[1280,9],[1379,9],[22487,9],[26523,9],[30206,9],[33542,9],[36038,9],[37495,9],[38542,9],[51456,9],[52082,9],[52500,9],[53131,9],[54035,9],[54695,9],[55484,9],[56494,9],[57505,9],[58500,9],[59535,9],[60515,9],[61381,9]]},"89":{"position":[[13,9],[131,9],[212,9],[294,9],[515,9],[3957,9],[5083,9],[6146,9],[6696,9],[7254,9],[8241,9]]},"90":{"position":[[13,9],[131,9],[212,9],[294,9],[515,9],[3589,9],[4715,9],[5696,9],[6246,9],[6804,9],[7791,9]]},"91":{"position":[[13,9],[132,9],[214,9],[297,9],[519,9],[4226,9],[6262,9],[7318,9],[7862,9],[8414,9],[9403,9]]},"92":{"position":[[13,9],[96,9],[153,9],[239,9],[334,9],[455,9],[575,9],[686,9],[791,9],[931,9],[1048,9],[1192,9],[1301,9],[12787,9],[13721,9],[15058,9],[28603,9],[29166,9],[29564,9],[30394,9],[31369,9],[32398,9],[33378,9],[34017,9],[34738,9],[36010,9],[37204,9],[38582,9],[39444,9]]},"93":{"position":[[1494,11],[1571,11],[1622,11],[1702,11],[1791,11],[1906,11],[2020,11],[2125,11],[2224,11],[2358,11],[2471,11],[2609,11],[2712,11],[2886,11],[3340,11],[3579,11],[3869,11],[4215,11],[4634,11],[5020,11],[5359,11],[5711,11],[6301,11],[6691,11],[7249,11],[7614,11]]},"94":{"position":[[2277,11],[2354,11],[2424,11],[2599,11],[2705,11],[3147,11],[3549,11],[4352,11]]},"95":{"position":[[13,9],[92,9],[170,9],[226,9],[1965,9],[2696,9],[3228,9],[3633,9]]},"96":{"position":[[13,9],[128,9],[207,9],[1606,9],[2424,9],[2885,9]]},"97":{"position":[[13,9],[128,9],[214,9],[1350,9],[2109,9],[2576,9]]},"98":{"position":[[13,9],[91,9],[168,9],[223,9],[1902,9],[2628,9],[3158,9],[3560,9]]},"99":{"position":[[13,9],[90,9],[166,9],[220,9],[1934,9],[2655,9],[3183,9],[3582,9]]},"100":{"position":[[13,9],[126,9],[203,9],[1577,9],[2385,9],[2840,9]]},"101":{"position":[[2326,11],[2429,11],[2643,11],[2762,11],[3235,11],[4063,11]]},"102":{"position":[[13,9],[126,9],[210,9],[1323,9],[2072,9],[2535,9]]},"103":{"position":[[1602,11],[1705,11],[1773,11],[1892,11],[2366,11],[2749,11]]},"104":{"position":[[13,9],[89,9],[164,9],[217,9],[1871,9],[2587,9],[3113,9],[3509,9]]},"105":{"position":[[13,9],[98,9],[151,9],[205,9],[259,9],[347,9],[462,9],[546,9],[636,9],[713,9],[803,9],[884,9],[939,9],[995,9],[1133,9],[1318,9],[12316,9],[13070,9],[13875,9],[15664,9],[27945,9],[28896,9],[29342,9],[29782,9],[30303,9],[32277,9],[33350,9],[33942,9],[34714,9],[35390,9],[35887,9],[36370,9],[36656,9],[36951,9],[37595,9],[38432,9]]},"106":{"position":[[13,9],[93,9],[235,9],[285,9],[377,9],[462,9],[513,9],[13699,9],[20311,9],[21226,9],[22338,9],[22924,9],[24084,9],[24659,9],[25141,9]]},"107":{"position":[[2844,11],[2921,11],[3060,11],[3107,11],[3196,11],[3278,11],[3326,11],[3555,11],[4153,11],[4693,11],[5024,11],[5636,11],[6028,11],[6345,11]]},"108":{"position":[[13,9],[96,9],[184,9],[362,9],[423,9],[476,9],[3864,9],[5474,9],[6449,9],[7036,9],[7977,9],[8378,9],[8936,9]]},"109":{"position":[[2226,11],[2305,11],[2383,11],[2561,11],[2618,11],[2667,11],[2774,11],[3189,11],[3547,11],[4287,11],[4579,11],[4970,11]]},"113":{"position":[[290,9],[1881,9],[1925,9]]},"124":{"position":[[13,9],[119,9],[253,9],[387,9],[457,9],[599,9],[669,9],[876,9],[8014,9],[10663,9],[14377,9],[15189,9],[16141,9],[17084,9],[17688,9],[18581,9],[19212,9],[20178,9]]},"125":{"position":[[13,9],[116,9],[228,9],[340,9],[408,9],[14177,9],[15152,9],[16263,9],[17366,9],[17728,9]]},"126":{"position":[[1558,11],[1645,11],[1698,11],[1795,11],[1892,11],[2055,11],[2381,11],[2624,11],[3008,11],[3400,11]]},"127":{"position":[[13,9],[212,9],[372,9],[563,9],[756,9],[4058,9],[7097,9],[7846,9],[8272,9],[8901,9],[9537,9]]},"129":{"position":[[13,9],[204,9],[355,9],[647,9],[823,9],[1094,9],[1409,9],[1976,9],[2312,9],[5545,9],[11245,9],[11952,9],[12378,9],[12934,9],[13518,9],[14315,9],[14965,9],[16189,9],[17128,9]]},"130":{"position":[[1952,11],[2041,11],[2106,11],[2199,11],[2340,11],[2409,11],[2554,11],[2643,11],[2711,11],[2823,11],[3160,11],[3431,11],[3783,11],[4275,11],[4573,11],[5025,11],[5380,11],[5664,11]]},"131":{"position":[[13,9],[208,9],[359,9],[946,9],[1346,9],[1808,9],[9735,9],[15975,9],[16778,9],[17204,9],[18215,9],[19041,9],[20003,9]]},"132":{"position":[[2512,11],[2601,11],[2666,11],[2730,11],[2823,11],[2964,11],[3076,11],[3413,11],[3702,11],[3977,11],[4329,11],[4806,11]]},"133":{"position":[[13,9],[327,9],[522,9],[714,9],[926,9],[1218,9],[1602,9],[1930,9],[2309,9],[2688,9],[3054,9],[3439,9],[3818,9],[4197,9],[4560,9],[11270,9],[15404,9],[19708,9],[24611,9],[30884,9],[34978,9],[39295,9],[43436,9],[51087,9],[51928,9],[52505,9],[53075,9],[53658,9],[54527,9],[55376,9],[56102,9],[56952,9],[57797,9],[58635,9],[59491,9],[60341,9],[61185,9],[62002,9]]},"134":{"position":[[4262,11],[4359,11],[4430,11],[4500,11],[4566,11],[4667,11],[4837,11],[5007,11],[5169,11],[5344,11],[5514,11],[5684,11],[5844,11],[5959,11],[6030,11],[6148,11],[6501,11],[6794,11],[7080,11],[7360,11],[7725,11],[8258,11],[8786,11],[9299,11],[9837,11],[10370,11],[10897,11],[11408,11],[11845,11],[12136,11]]},"135":{"position":[[13,9],[92,9],[217,9],[348,9],[497,9],[553,9],[644,9],[8509,9],[9598,9],[11139,9],[16587,9],[17636,9],[18740,9],[19903,9],[21127,9],[21803,9],[22752,9]]},"136":{"position":[[13,9],[93,9],[144,9],[204,9],[291,9],[378,9],[473,9],[568,9],[670,9],[787,9],[870,9],[7831,9],[8323,9],[8995,9],[9526,9],[10903,9],[11677,9],[12085,9],[12625,9],[13244,9],[14027,9],[14804,9],[15387,9],[16284,9],[16988,9],[17587,9]]},"137":{"position":[[3762,11],[3839,11],[3887,11],[3944,11],[4028,11],[4112,11],[4204,11],[4296,11],[4395,11],[4509,11],[4680,11],[4818,11],[5132,11],[5376,11],[5643,11],[6106,11],[6472,11],[6944,11],[7331,11],[7687,11],[8077,11],[8694,11]]},"138":{"position":[[13,9],[117,9],[185,9],[317,9],[449,9],[517,9],[657,9],[862,9],[7900,9],[9860,9],[12842,9],[13624,9],[14297,9],[15248,9],[16428,9],[17140,9],[17969,9],[18931,9]]},"139":{"position":[[13,9],[106,9],[213,9],[326,9],[425,9],[517,9],[580,9],[678,9],[839,9],[1027,9],[10057,9],[12141,9],[17867,9],[18984,9],[20215,9],[21448,9],[22224,9],[22882,9],[23420,9],[24521,9],[25829,9],[26768,9]]},"140":{"position":[[13,9],[105,9],[211,9],[323,9],[421,9],[512,9],[574,9],[671,9],[861,9],[953,9],[7460,9],[9482,9],[16487,9],[17471,9],[18388,9],[19308,9],[20081,9],[20737,9],[21273,9],[22325,9],[23718,9],[24682,9]]},"141":{"position":[[2650,11],[2721,11],[2838,11],[2961,11],[3102,11],[3277,11],[3383,11],[3766,11],[4489,11],[5124,11],[6115,11],[6828,11]]},"142":{"position":[[13,9],[93,9],[219,9],[351,9],[501,9],[558,9],[680,9],[9495,9],[10599,9],[12163,9],[18421,9],[19627,9],[20632,9],[21696,9],[22821,9],[23499,9],[24490,9]]},"143":{"position":[[3641,11],[3724,11],[3857,11],[3955,11],[4102,11],[4194,11],[4314,11],[4416,11],[4504,11],[4555,11],[4605,11],[4670,11],[4726,11],[4832,11],[5179,11],[5922,11],[6378,11],[6869,11],[7285,11],[7821,11],[8353,11],[8736,11],[8982,11],[9225,11],[9562,11],[9902,11]]},"144":{"position":[[3530,11],[3611,11],[3661,11],[3710,11],[3760,11],[3811,11],[3863,11],[3940,11],[4051,11],[4131,11],[4217,11],[4398,11],[4506,11],[4960,11],[5269,11],[5573,11],[5905,11],[6226,11],[6555,11],[7160,11],[7828,11],[8255,11],[8724,11],[9522,11]]},"145":{"position":[[3679,11],[3766,11],[3850,11],[3966,11],[4020,11],[4075,11],[4164,11],[4224,11],[4322,11],[4375,11],[4550,11],[4985,11],[5416,11],[6314,11],[6752,11],[7326,11],[7831,11],[8382,11],[8784,11],[9141,11]]},"146":{"position":[[13,9],[89,9],[171,9],[222,9],[305,9],[355,9],[430,9],[528,9],[628,9],[675,9],[748,9],[827,9],[928,9],[1108,9],[5582,9],[11970,9],[16604,9],[17340,9],[17772,9],[18722,9],[19161,9],[19895,9],[20548,9],[21181,9],[21688,9],[22097,9],[22596,9],[23027,9],[23543,9],[24480,9]]},"147":{"position":[[3652,11],[3731,11],[3824,11],[3923,11],[4009,11],[4087,11],[4184,11],[4362,11],[4411,11],[4548,11],[4998,11],[5714,11],[6414,11],[6942,11],[7307,11],[7686,11],[8418,11],[8687,11]]},"148":{"position":[[13,9],[66,9],[146,9],[230,9],[315,9],[396,9],[491,9],[5131,9],[6258,9],[6844,9],[9735,9],[10405,9],[11366,9],[12061,9],[12840,9],[13576,9],[14159,9]]},"149":{"position":[[2371,11],[2448,11],[2498,11],[2580,11],[2661,11],[2739,11],[2831,11],[3064,11],[3470,11],[3719,11],[4080,11],[4417,11],[4780,11],[5148,11]]},"150":{"position":[[13,9],[105,9],[162,9],[304,9],[411,9],[512,9],[572,9],[631,9],[760,9],[871,9],[968,9],[1042,9],[1198,9],[7485,9],[9063,9],[11506,9],[12339,9],[18810,9],[19740,9],[20143,9],[20778,9],[21320,9],[21943,9],[22366,9],[22784,9],[23740,9],[24786,9],[25443,9],[25876,9],[26937,9]]}}}],["fsp_err_timeout",{"_index":5569,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3059,15]]}}}],["fsp_err_timeoutcommun",{"_index":6437,"t":{},"d":{},"k":{},"b":{"129":{"position":[[16022,28],[16953,28]]},"131":{"position":[[16630,28],[18000,28],[18824,28],[19806,28]]},"133":{"position":[[51767,28],[52345,28],[52919,28],[53509,28],[54284,28],[55935,28]]}}}],["fsp_err_too_many_buff",{"_index":5691,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8540,24]]}}}],["fsp_err_transfer_abort",{"_index":5605,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4516,24]]}}}],["fsp_err_transfer_busi",{"_index":5767,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11612,21]]}}}],["fsp_err_underflow",{"_index":5562,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2655,17]]}}}],["fsp_err_unsupport",{"_index":3691,"t":{},"d":{},"k":{},"b":{"84":{"position":[[11967,19]]},"113":{"position":[[2270,19]]},"135":{"position":[[7271,19],[7802,19]]},"142":{"position":[[8445,19]]}}}],["fsp_err_unsupporteda",{"_index":4343,"t":{},"d":{},"k":{},"b":{"88":{"position":[[51935,20]]},"142":{"position":[[19219,20]]}}}],["fsp_err_unsupportedapi",{"_index":3088,"t":{},"d":{},"k":{},"b":{"79":{"position":[[18306,22]]},"80":{"position":[[11605,22],[11917,22]]},"150":{"position":[[20672,22],[21210,22],[25766,22],[27169,22]]}}}],["fsp_err_unsupportedbitr",{"_index":6893,"t":{},"d":{},"k":{},"b":{"135":{"position":[[22631,26]]},"142":{"position":[[24380,26]]}}}],["fsp_err_unsupportedcalibr",{"_index":953,"t":{},"d":{},"k":{},"b":{"68":{"position":[[30528,30]]}}}],["fsp_err_unsupportedcmtw",{"_index":2770,"t":{},"d":{},"k":{},"b":{"76":{"position":[[18405,23]]}}}],["fsp_err_unsupporteddis",{"_index":5077,"t":{},"d":{},"k":{},"b":{"105":{"position":[[36831,26]]}}}],["fsp_err_unsupporteden",{"_index":5076,"t":{},"d":{},"k":{},"b":{"105":{"position":[[36543,25]]}}}],["fsp_err_unsupportedfd",{"_index":2580,"t":{},"d":{},"k":{},"b":{"75":{"position":[[37569,21]]}}}],["fsp_err_unsupportedfunct",{"_index":943,"t":{},"d":{},"k":{},"b":{"68":{"position":[[26066,27],[30097,27]]},"69":{"position":[[33061,27],[36705,27],[37147,27]]},"136":{"position":[[12492,27]]},"146":{"position":[[17643,27],[19033,27],[21563,27],[22898,27],[23412,27]]}}}],["fsp_err_unsupportedgpt_cfg_output_support_en",{"_index":3633,"t":{},"d":{},"k":{},"b":{"83":{"position":[[51998,48]]}}}],["fsp_err_unsupportedhold",{"_index":6526,"t":{},"d":{},"k":{},"b":{"131":{"position":[[18092,23],[18916,23]]}}}],["fsp_err_unsupportedmast",{"_index":4351,"t":{},"d":{},"k":{},"b":{"88":{"position":[[55354,25],[56382,25],[57307,25],[61275,25]]}}}],["fsp_err_unsupportedmastership",{"_index":4348,"t":{},"d":{},"k":{},"b":{"88":{"position":[[53881,29]]}}}],["fsp_err_unsupportedmtu3_cfg_output_support_en",{"_index":5074,"t":{},"d":{},"k":{},"b":{"105":{"position":[[33234,49]]}}}],["fsp_err_unsupportednmi",{"_index":2105,"t":{},"d":{},"k":{},"b":{"71":{"position":[[46929,22]]}}}],["fsp_err_unsupportedprogram",{"_index":6434,"t":{},"d":{},"k":{},"b":{"129":{"position":[[14839,30],[16068,30],[16999,30],[17774,30]]}}}],["fsp_err_unsupportedsci_b_uart_cfg_rx_en",{"_index":7270,"t":{},"d":{},"k":{},"b":{"139":{"position":[[19845,43]]}}}],["fsp_err_unsupportedsci_b_uart_cfg_tx_en",{"_index":7273,"t":{},"d":{},"k":{},"b":{"139":{"position":[[21072,43]]}}}],["fsp_err_unsupportedscif_uart_cfg_rx_en",{"_index":7399,"t":{},"d":{},"k":{},"b":{"140":{"position":[[18240,42]]}}}],["fsp_err_unsupportedscif_uart_cfg_tx_en",{"_index":7400,"t":{},"d":{},"k":{},"b":{"140":{"position":[[19158,42]]}}}],["fsp_err_unsupportedselect",{"_index":3693,"t":{},"d":{},"k":{},"b":{"84":{"position":[[12257,27],[12995,27],[13371,27]]}}}],["fsp_err_unsupportedslav",{"_index":4350,"t":{},"d":{},"k":{},"b":{"88":{"position":[[54583,24],[60408,24]]}}}],["fsp_err_unsupportedsnoop",{"_index":2887,"t":{},"d":{},"k":{},"b":{"77":{"position":[[8570,24],[8995,24]]}}}],["fsp_err_unsupportedth",{"_index":4346,"t":{},"d":{},"k":{},"b":{"88":{"position":[[52967,22]]},"92":{"position":[[32234,22],[33226,22],[37039,22],[38429,22]]},"136":{"position":[[16814,22]]},"139":{"position":[[24237,22],[27499,22]]},"140":{"position":[[22089,22],[24448,22]]}}}],["fsp_err_unsupportedthi",{"_index":3640,"t":{},"d":{},"k":{},"b":{"83":{"position":[[56567,23],[58502,23]]}}}],["fsp_err_unsupportedunsupport",{"_index":6705,"t":{},"d":{},"k":{},"b":{"133":{"position":[[51721,28]]}}}],["fsp_err_usb_module_en",{"_index":5624,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5412,26]]}}}],["fsp_err_wait_abort",{"_index":5594,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4106,20]]}}}],["fsp_err_wifi_ap_not_connect",{"_index":5788,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12664,29]]}}}],["fsp_err_wifi_config_fail",{"_index":5779,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12326,26]]}}}],["fsp_err_wifi_fail",{"_index":5786,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12575,19]]}}}],["fsp_err_wifi_init_fail",{"_index":5781,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12389,24]]}}}],["fsp_err_wifi_invalid_mod",{"_index":5783,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12503,25]]}}}],["fsp_err_wifi_scan_complet",{"_index":5787,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12610,26]]}}}],["fsp_err_wifi_transmit_fail",{"_index":5782,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12451,28]]}}}],["fsp_err_write_fail",{"_index":5574,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3271,20]]}}}],["fsp_error_log",{"_index":1868,"t":{},"d":{},"k":{},"b":{"71":{"position":[[11038,13],[11284,13],[29225,13],[29282,13],[29454,13],[30134,13],[31800,13],[31857,13],[32029,13],[32709,13]]}}}],["fsp_error_log(err",{"_index":1813,"t":{},"d":{},"k":{},"b":{"71":{"position":[[7075,18],[13615,18],[13937,18]]}}}],["fsp_error_log(err)=fsp_error_log(err",{"_index":1814,"t":{},"d":{},"k":{},"b":{"71":{"position":[[7163,37]]}}}],["fsp_error_return",{"_index":1968,"t":{},"d":{},"k":{},"b":{"71":{"position":[[29717,16],[29826,16],[29886,16],[32292,16],[32401,16],[32461,16]]}}}],["fsp_error_return(a",{"_index":1919,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13668,19],[13990,19]]}}}],["fsp_header",{"_index":5534,"t":{},"d":{},"k":{},"b":{"113":{"position":[[226,10],[1491,10],[1539,10]]}}}],["fsp_invalid_vector",{"_index":1920,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13777,18],[14099,18],[30644,18],[30706,18],[33219,18],[33281,18]]},"146":{"position":[[4733,19],[8152,19],[10725,19]]},"148":{"position":[[7254,19]]}}}],["fsp_ip_adc",{"_index":2004,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35243,10]]}}}],["fsp_ip_canfd",{"_index":1997,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34585,12],[35201,12]]}}}],["fsp_ip_cmtw",{"_index":2009,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35380,11]]}}}],["fsp_ip_crc",{"_index":2013,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35469,10]]}}}],["fsp_ip_dmac",{"_index":1994,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34501,11],[35068,11]]}}}],["fsp_ip_dmac_",{"_index":2003,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35115,13]]}}}],["fsp_ip_gpt",{"_index":1981,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34183,10],[34750,10]]}}}],["fsp_ip_gtm",{"_index":2002,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34722,10]]}}}],["fsp_ip_i3c",{"_index":2017,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35529,10]]}}}],["fsp_ip_im33",{"_index":1984,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34282,11],[34849,11]]}}}],["fsp_ip_mhu",{"_index":1992,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34465,10],[35032,10]]}}}],["fsp_ip_mtu3",{"_index":2001,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34673,11]]}}}],["fsp_ip_poeg",{"_index":1982,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34215,11],[34782,11]]}}}],["fsp_ip_port",{"_index":1983,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34257,11],[34824,11]]}}}],["fsp_ip_riic",{"_index":1989,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34381,11],[34948,11]]}}}],["fsp_ip_rspi",{"_index":1991,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34414,11],[34981,11]]}}}],["fsp_ip_rtc",{"_index":2018,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35561,10]]}}}],["fsp_ip_sci",{"_index":2000,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34627,10],[35334,10]]}}}],["fsp_ip_scif",{"_index":1986,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34324,11],[34891,11]]}}}],["fsp_ip_ssi",{"_index":1995,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34548,10],[35164,10]]}}}],["fsp_ip_syc",{"_index":2020,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35590,10]]}}}],["fsp_ip_t",{"_index":1923,"t":{},"d":{},"k":{},"b":{"71":{"position":[[14219,8],[34055,8],[34098,8]]}}}],["fsp_ip_tsu",{"_index":2005,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35271,10]]}}}],["fsp_ip_wdt",{"_index":2007,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35305,10]]}}}],["fsp_ip_xspi",{"_index":2011,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35417,11]]}}}],["fsp_pack_version_t",{"_index":1673,"t":{},"d":{},"k":{},"b":{"71":{"position":[[40,19],[37901,18]]},"111":{"position":[[442,18],[722,18],[776,18],[897,18]]}}}],["fsp_pack_version_t.__unnamed__",{"_index":5513,"t":{},"d":{},"k":{},"b":{"111":{"position":[[471,30],[985,30],[1052,30]]}}}],["fsp_parameter_not_us",{"_index":5540,"t":{},"d":{},"k":{},"b":{"113":{"position":[[941,22],[1001,22]]}}}],["fsp_parameter_not_used(channel",{"_index":1100,"t":{},"d":{},"k":{},"b":{"69":{"position":[[17497,32]]}}}],["fsp_parameter_not_used(device_size_bytes);#endif",{"_index":8259,"t":{},"d":{},"k":{},"b":{"150":{"position":[[15612,49]]}}}],["fsp_parameter_not_used(device_size_bytes);#endif#ifdef",{"_index":8233,"t":{},"d":{},"k":{},"b":{"150":{"position":[[13097,54]]}}}],["fsp_parameter_not_used(p",{"_index":5532,"t":{},"d":{},"k":{},"b":{"113":{"position":[[165,25]]}}}],["fsp_parameter_not_used(p_arg",{"_index":1072,"t":{},"d":{},"k":{},"b":{"69":{"position":[[15019,31]]},"108":{"position":[[4303,31]]},"146":{"position":[[5422,31],[11414,31],[11573,31]]},"148":{"position":[[6223,31]]}}}],["fsp_priv_clock_divider_t",{"_index":1696,"t":{},"d":{},"k":{},"b":{"71":{"position":[[643,25],[42771,24]]}}}],["fsp_priv_clock_selector_t",{"_index":1692,"t":{},"d":{},"k":{},"b":{"71":{"position":[[552,26],[41921,25]]}}}],["fsp_priv_clock_t",{"_index":1690,"t":{},"d":{},"k":{},"b":{"71":{"position":[[492,17],[41531,16]]}}}],["fsp_return",{"_index":1964,"t":{},"d":{},"k":{},"b":{"71":{"position":[[29034,10],[29088,10],[31609,10],[31663,10]]}}}],["fsp_return(err",{"_index":1917,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13589,15],[13911,15]]}}}],["fsp_secure_argu",{"_index":5535,"t":{},"d":{},"k":{},"b":{"113":{"position":[[247,19],[1608,19],[1665,19]]}}}],["fsp_success",{"_index":775,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9837,12],[12531,12],[15398,12]]},"69":{"position":[[13719,12],[15142,12],[17740,12]]},"76":{"position":[[7309,12],[8150,12],[9607,12],[10349,12]]},"80":{"position":[[7757,12]]},"83":{"position":[[20578,12],[21330,12],[23137,12],[23814,12],[25359,12],[26658,12]]},"84":{"position":[[6109,12],[6826,12],[7618,12]]},"105":{"position":[[12332,12],[13086,12],[13891,12],[15680,12]]},"106":{"position":[[13715,12]]},"108":{"position":[[3880,12]]},"127":{"position":[[4074,12]]},"129":{"position":[[5572,12],[9610,12]]},"131":{"position":[[9762,12],[14098,12]]},"133":{"position":[[11303,12],[15028,12],[15437,12],[19194,12],[19741,12],[24089,12],[24644,12],[30303,12],[30914,12],[34628,12],[35015,12],[38781,12],[39328,12],[43085,12],[43469,12],[48806,12]]},"135":{"position":[[8525,12],[9614,12],[11155,12]]},"136":{"position":[[7847,12],[8339,12],[9011,12],[9542,12]]},"142":{"position":[[9511,12],[10615,12],[12179,12]]},"146":{"position":[[5598,12],[11986,12]]},"148":{"position":[[5147,12],[6274,12],[6860,12]]}}}],["fsp_success;void",{"_index":7887,"t":{},"d":{},"k":{},"b":{"146":{"position":[[8228,16]]}}}],["fsp_successaddress",{"_index":5983,"t":{},"d":{},"k":{},"b":{"124":{"position":[[18248,18]]},"138":{"position":[[17698,18]]}}}],["fsp_successbaud",{"_index":7011,"t":{},"d":{},"k":{},"b":{"136":{"position":[[18188,15]]},"139":{"position":[[21935,15],[25514,15]]},"140":{"position":[[19793,15],[23434,15]]}}}],["fsp_successcalcul",{"_index":2875,"t":{},"d":{},"k":{},"b":{"77":{"position":[[6848,22]]}}}],["fsp_successcalendar",{"_index":6997,"t":{},"d":{},"k":{},"b":{"136":{"position":[[12957,19],[13740,19],[14452,19],[15150,19]]}}}],["fsp_successcallback",{"_index":955,"t":{},"d":{},"k":{},"b":{"68":{"position":[[31258,19]]},"69":{"position":[[37885,19]]},"75":{"position":[[40444,19]]},"76":{"position":[[25592,19]]},"83":{"position":[[57318,19]]},"84":{"position":[[17105,19]]},"89":{"position":[[7912,19]]},"90":{"position":[[7462,19]]},"91":{"position":[[9073,19]]},"95":{"position":[[4256,19]]},"96":{"position":[[3570,19]]},"98":{"position":[[4182,19]]},"99":{"position":[[4203,19]]},"100":{"position":[[3523,19]]},"104":{"position":[[4129,19]]},"105":{"position":[[38222,19]]},"106":{"position":[[25742,19]]},"108":{"position":[[7655,19]]},"124":{"position":[[19853,19]]},"125":{"position":[[18364,19]]},"135":{"position":[[23358,19]]},"138":{"position":[[18608,19]]},"139":{"position":[[26445,19]]},"140":{"position":[[25297,19]]},"142":{"position":[[25097,19]]},"146":{"position":[[24150,19]]},"148":{"position":[[14760,19]]}}}],["fsp_successchannel",{"_index":933,"t":{},"d":{},"k":{},"b":{"68":{"position":[[24268,18]]},"69":{"position":[[30695,18]]},"75":{"position":[[35940,18],[36492,18]]},"124":{"position":[[17322,18]]},"135":{"position":[[17191,18],[21557,18]]},"139":{"position":[[18324,18],[23196,18]]},"140":{"position":[[16943,18],[21050,18]]},"142":{"position":[[19026,18],[23252,18]]}}}],["fsp_successcommun",{"_index":6123,"t":{},"d":{},"k":{},"b":{"127":{"position":[[7546,25]]}}}],["fsp_successconfigur",{"_index":2870,"t":{},"d":{},"k":{},"b":{"77":{"position":[[5639,24],[6017,24]]},"78":{"position":[[2428,24]]},"150":{"position":[[19394,24],[19943,24]]}}}],["fsp_successcount",{"_index":2772,"t":{},"d":{},"k":{},"b":{"76":{"position":[[18716,18]]},"79":{"position":[[19849,18],[20335,18]]},"83":{"position":[[48694,18],[53732,18],[55445,18]]},"105":{"position":[[30106,18],[35117,18],[37409,18]]}}}],["fsp_successcurr",{"_index":2779,"t":{},"d":{},"k":{},"b":{"76":{"position":[[21802,18]]},"83":{"position":[[53101,18]]},"84":{"position":[[14484,18]]},"105":{"position":[[34484,18]]},"108":{"position":[[6821,18]]}}}],["fsp_successd",{"_index":6993,"t":{},"d":{},"k":{},"b":{"136":{"position":[[11858,13]]}}}],["fsp_successdata",{"_index":944,"t":{},"d":{},"k":{},"b":{"68":{"position":[[27571,15],[28252,15]]},"69":{"position":[[34971,15],[35652,15]]},"139":{"position":[[19437,15],[20675,15]]},"140":{"position":[[17923,15],[18847,15]]},"146":{"position":[[20932,15],[24917,15]]}}}],["fsp_successdevic",{"_index":5373,"t":{},"d":{},"k":{},"b":{"106":{"position":[[24937,17]]},"124":{"position":[[18853,17]]},"125":{"position":[[17537,17]]},"138":{"position":[[14094,17]]}}}],["fsp_successdivid",{"_index":2062,"t":{},"d":{},"k":{},"b":{"71":{"position":[[43169,18]]}}}],["fsp_successduti",{"_index":3630,"t":{},"d":{},"k":{},"b":{"83":{"position":[[51657,15]]},"105":{"position":[[33028,15]]}}}],["fsp_successev",{"_index":3202,"t":{},"d":{},"k":{},"b":{"80":{"position":[[11216,16]]}}}],["fsp_successextern",{"_index":2775,"t":{},"d":{},"k":{},"b":{"76":{"position":[[19715,19],[20253,19]]},"83":{"position":[[49134,19],[49678,19]]}}}],["fsp_successfunct",{"_index":5466,"t":{},"d":{},"k":{},"b":{"108":{"position":[[8737,19]]},"124":{"position":[[15795,19],[16746,19]]},"125":{"position":[[16003,19],[17113,19]]},"138":{"position":[[14901,19],[16108,19]]}}}],["fsp_successget",{"_index":7008,"t":{},"d":{},"k":{},"b":{"136":{"position":[[17379,14]]}}}],["fsp_successgpt",{"_index":5461,"t":{},"d":{},"k":{},"b":{"108":{"position":[[8182,14]]}}}],["fsp_successhardwar",{"_index":7931,"t":{},"d":{},"k":{},"b":{"146":{"position":[[19589,19]]}}}],["fsp_successhs300x",{"_index":6432,"t":{},"d":{},"k":{},"b":{"129":{"position":[[11677,17]]}}}],["fsp_successhs400x",{"_index":6525,"t":{},"d":{},"k":{},"b":{"131":{"position":[[16411,17]]}}}],["fsp_successi2c",{"_index":6042,"t":{},"d":{},"k":{},"b":{"125":{"position":[[14491,14]]}}}],["fsp_successinform",{"_index":935,"t":{},"d":{},"k":{},"b":{"68":{"position":[[24945,22]]},"69":{"position":[[31497,22]]},"79":{"position":[[20933,22]]},"106":{"position":[[24445,22]]},"139":{"position":[[22648,22]]},"140":{"position":[[20504,22]]},"146":{"position":[[22396,22]]}}}],["fsp_successiniti",{"_index":2782,"t":{},"d":{},"k":{},"b":{"76":{"position":[[23425,25]]},"80":{"position":[[9104,25],[10085,25],[10704,25]]},"83":{"position":[[46869,25],[58343,25]]},"84":{"position":[[15987,25]]},"95":{"position":[[2303,25]]},"96":{"position":[[2003,25]]},"97":{"position":[[1747,25]]},"98":{"position":[[2238,25]]},"99":{"position":[[2268,25]]},"100":{"position":[[1970,25]]},"102":{"position":[[1716,25]]},"104":{"position":[[2203,25]]},"105":{"position":[[28495,25]]},"108":{"position":[[5968,25]]},"136":{"position":[[11395,25],[12276,25]]}}}],["fsp_successinterrupt",{"_index":4384,"t":{},"d":{},"k":{},"b":{"89":{"position":[[6403,20],[6956,20]]},"90":{"position":[[5953,20],[6506,20]]},"91":{"position":[[7568,20],[8115,20]]}}}],["fsp_successmhu_",{"_index":4847,"t":{},"d":{},"k":{},"b":{"104":{"position":[[3314,16]]}}}],["fsp_successmhu_b_",{"_index":4813,"t":{},"d":{},"k":{},"b":{"98":{"position":[[3361,18]]}}}],["fsp_successmhu_b_n",{"_index":4773,"t":{},"d":{},"k":{},"b":{"95":{"position":[[3432,19]]}}}],["fsp_successmhu_b_ns_swint_get",{"_index":4792,"t":{},"d":{},"k":{},"b":{"96":{"position":[[2664,29]]}}}],["fsp_successmhu_b_ns_swint_set",{"_index":4808,"t":{},"d":{},"k":{},"b":{"97":{"position":[[2816,29]]}}}],["fsp_successmhu_n",{"_index":4818,"t":{},"d":{},"k":{},"b":{"99":{"position":[[3385,17]]}}}],["fsp_successmhu_ns_swint_get",{"_index":4826,"t":{},"d":{},"k":{},"b":{"100":{"position":[[2623,27]]}}}],["fsp_successmhu_ns_swint_set",{"_index":4838,"t":{},"d":{},"k":{},"b":{"102":{"position":[[2773,27]]}}}],["fsp_successmodul",{"_index":927,"t":{},"d":{},"k":{},"b":{"68":{"position":[[23539,17],[26955,17],[29532,17]]},"69":{"position":[[29816,17],[34355,17],[36129,17]]},"146":{"position":[[16921,17],[20334,17],[21919,17]]}}}],["fsp_successopen",{"_index":4341,"t":{},"d":{},"k":{},"b":{"88":{"position":[[51782,15],[52243,15],[52830,15],[53744,15],[54386,15],[55148,15],[56081,15],[56888,15],[58107,15],[59093,15],[60049,15],[60954,15],[61571,15]]},"89":{"position":[[5577,15]]},"90":{"position":[[5192,15]]},"91":{"position":[[6748,15]]}}}],["fsp_successoper",{"_index":2574,"t":{},"d":{},"k":{},"b":{"75":{"position":[[37205,20],[38120,20],[39039,20],[39637,20]]}}}],["fsp_successoutput",{"_index":2786,"t":{},"d":{},"k":{},"b":{"76":{"position":[[24273,17],[24770,17]]},"83":{"position":[[54317,17],[54815,17]]},"105":{"position":[[35703,17],[36192,17]]}}}],["fsp_successpdm",{"_index":5363,"t":{},"d":{},"k":{},"b":{"106":{"position":[[21837,14],[22629,14]]}}}],["fsp_successperiod",{"_index":2764,"t":{},"d":{},"k":{},"b":{"76":{"position":[[17569,17],[21010,18]]},"83":{"position":[[50698,17],[52474,18]]},"84":{"position":[[11186,17],[13860,18]]},"105":{"position":[[32009,17]]}}}],["fsp_successpin",{"_index":4654,"t":{},"d":{},"k":{},"b":{"92":{"position":[[28961,14],[30186,14],[30801,14],[32065,14],[33040,14],[33795,14],[34442,14]]}}}],["fsp_successport",{"_index":4675,"t":{},"d":{},"k":{},"b":{"92":{"position":[[35703,15],[36871,15],[38250,15],[39219,15],[40365,15]]}}}],["fsp_successread",{"_index":5367,"t":{},"d":{},"k":{},"b":{"106":{"position":[[23635,15]]},"135":{"position":[[18303,15]]},"142":{"position":[[20295,15]]}}}],["fsp_successreadi",{"_index":5359,"t":{},"d":{},"k":{},"b":{"106":{"position":[[20771,16]]}}}],["fsp_successrequest",{"_index":5975,"t":{},"d":{},"k":{},"b":{"124":{"position":[[14688,20]]},"138":{"position":[[13151,20]]}}}],["fsp_successreturn",{"_index":2880,"t":{},"d":{},"k":{},"b":{"77":{"position":[[7573,17]]}}}],["fsp_successsampl",{"_index":949,"t":{},"d":{},"k":{},"b":{"68":{"position":[[29016,17]]}}}],["fsp_successscan",{"_index":938,"t":{},"d":{},"k":{},"b":{"68":{"position":[[25374,15],[26346,15]]},"69":{"position":[[32360,15],[33703,15]]},"146":{"position":[[18362,15]]}}}],["fsp_successselector",{"_index":2053,"t":{},"d":{},"k":{},"b":{"71":{"position":[[42316,19]]}}}],["fsp_successsend",{"_index":4772,"t":{},"d":{},"k":{},"b":{"95":{"position":[[3010,15]]},"98":{"position":[[2941,15]]},"99":{"position":[[2967,15]]},"104":{"position":[[2898,15]]}}}],["fsp_successset",{"_index":4806,"t":{},"d":{},"k":{},"b":{"97":{"position":[[2347,14]]},"102":{"position":[[2308,14]]}}}],["fsp_successsnoop",{"_index":2884,"t":{},"d":{},"k":{},"b":{"77":{"position":[[8418,16],[8878,16]]}}}],["fsp_successspi",{"_index":8307,"t":{},"d":{},"k":{},"b":{"150":{"position":[[21672,14]]}}}],["fsp_successstatu",{"_index":5986,"t":{},"d":{},"k":{},"b":{"124":{"position":[[20491,17]]},"138":{"position":[[19242,17]]}}}],["fsp_successsuccess",{"_index":3082,"t":{},"d":{},"k":{},"b":{"79":{"position":[[16711,21],[21417,21],[22173,21]]},"83":{"position":[[57865,21]]},"105":{"position":[[38667,21]]},"108":{"position":[[9169,21]]}}}],["fsp_successsuccessfulli",{"_index":4387,"t":{},"d":{},"k":{},"b":{"89":{"position":[[8477,23]]},"90":{"position":[[8027,23]]},"91":{"position":[[9640,23]]},"127":{"position":[[8078,23],[8700,23],[9331,23],[9939,23]]},"129":{"position":[[12175,23],[12742,23],[13285,23],[14026,23],[14702,23],[15769,23],[16700,23],[17567,23]]},"131":{"position":[[17001,23],[17863,23],[18687,23],[19678,23],[20511,23]]},"133":{"position":[[51576,23],[52195,23],[52769,23],[53359,23],[54125,23],[55148,23],[55776,23],[56718,23],[57568,23],[58400,23],[59257,23],[60107,23],[60957,23],[61785,23],[62244,23]]}}}],["fsp_successtgrx",{"_index":5075,"t":{},"d":{},"k":{},"b":{"105":{"position":[[33713,16]]}}}],["fsp_successth",{"_index":3197,"t":{},"d":{},"k":{},"b":{"80":{"position":[[9492,14]]},"83":{"position":[[56173,14]]},"92":{"position":[[29359,14]]},"136":{"position":[[15989,14]]},"150":{"position":[[22158,14],[22578,14],[23293,14],[24319,14],[25151,14],[26604,14]]}}}],["fsp_successtim",{"_index":2760,"t":{},"d":{},"k":{},"b":{"76":{"position":[[15778,16],[19159,16],[22307,16]]},"83":{"position":[[47826,16],[48188,16]]},"84":{"position":[[10192,16],[12559,16],[14902,16]]},"105":{"position":[[29157,16],[29597,16]]},"136":{"position":[[16666,15]]}}}],["fsp_successtransact",{"_index":7122,"t":{},"d":{},"k":{},"b":{"138":{"position":[[16930,22]]}}}],["fsp_successtransf",{"_index":3084,"t":{},"d":{},"k":{},"b":{"79":{"position":[[17423,19],[18892,19],[19388,19]]}}}],["fsp_successuart",{"_index":7278,"t":{},"d":{},"k":{},"b":{"139":{"position":[[24061,15],[27323,15]]},"140":{"position":[[21913,15],[24272,15]]}}}],["fsp_successvalid",{"_index":6892,"t":{},"d":{},"k":{},"b":{"135":{"position":[[22571,16]]},"142":{"position":[[24321,16]]}}}],["fsp_successvers",{"_index":2029,"t":{},"d":{},"k":{},"b":{"71":{"position":[[38136,18],[43836,18]]}}}],["fsp_successwdt",{"_index":8058,"t":{},"d":{},"k":{},"b":{"148":{"position":[[10208,14],[11092,14],[11840,14],[12622,14],[13344,14],[13937,14]]}}}],["fsp_successwrit",{"_index":6885,"t":{},"d":{},"k":{},"b":{"135":{"position":[[19462,16],[20677,16]]},"142":{"position":[[21355,16],[22471,16]]}}}],["fsp_version_build",{"_index":5517,"t":{},"d":{},"k":{},"b":{"111":{"position":[[605,17],[1741,17],[1796,17]]}}}],["fsp_version_build_str",{"_index":5519,"t":{},"d":{},"k":{},"b":{"111":{"position":[[662,24],[2012,24],[2074,24]]}}}],["fsp_version_major",{"_index":5514,"t":{},"d":{},"k":{},"b":{"111":{"position":[[521,17],[1378,17],[1433,17]]}}}],["fsp_version_minor",{"_index":5515,"t":{},"d":{},"k":{},"b":{"111":{"position":[[549,17],[1499,17],[1554,17]]}}}],["fsp_version_patch",{"_index":5516,"t":{},"d":{},"k":{},"b":{"111":{"position":[[577,17],[1620,17],[1675,17]]}}}],["fsp_version_str",{"_index":5518,"t":{},"d":{},"k":{},"b":{"111":{"position":[[633,18],[1888,18],[1944,18]]}}}],["fsp_version_t",{"_index":1700,"t":{},"d":{},"k":{},"b":{"71":{"position":[[727,14],[14417,13],[14496,13],[43611,13],[47888,13],[48081,13]]},"113":{"position":[[96,13],[336,13],[385,13],[499,13]]}}}],["fsp_version_t.__unnamed__",{"_index":5531,"t":{},"d":{},"k":{},"b":{"113":{"position":[[120,25],[560,25],[622,25]]}}}],["fsppurpos",{"_index":8310,"t":{},"d":{},"k":{},"b":{"151":{"position":[[85,10]]}}}],["full",{"_index":2084,"t":{},"d":{},"k":{},"b":{"71":{"position":[[45388,4]]},"74":{"position":[[165,4]]},"75":{"position":[[17314,4]]},"80":{"position":[[2218,4]]},"87":{"position":[[12026,5]]},"88":{"position":[[28712,5],[34231,5],[47264,4],[47315,4],[47428,4]]},"113":{"position":[[9930,5],[12318,5]]},"124":{"position":[[5662,4]]},"125":{"position":[[4468,4]]},"128":{"position":[[13733,4],[27001,4],[27193,4],[27377,4],[27587,4]]},"135":{"position":[[1351,4],[6386,4],[6506,4],[6574,4]]},"138":{"position":[[5640,4]]},"139":{"position":[[1302,4],[6284,4],[16209,4]]},"140":{"position":[[1323,4],[3810,4],[5093,4],[12570,4],[14245,4]]},"141":{"position":[[1283,4],[5376,5]]},"142":{"position":[[1450,4],[4408,4],[4436,4],[4464,4],[4483,4],[7265,4],[7385,4],[7748,4],[13618,4],[15754,4],[15811,4]]},"144":{"position":[[1838,4]]},"147":{"position":[[181,4]]},"150":{"position":[[1932,4]]}}}],["fullest",{"_index":50,"t":{},"d":{},"k":{},"b":{"0":{"position":[[882,7]]}}}],["fulli",{"_index":7956,"t":{},"d":{},"k":{},"b":{"147":{"position":[[6023,5]]}}}],["funcion",{"_index":2067,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44496,7]]}}}],["function",{"_index":147,"t":{"105":{"position":[[51,8]]}},"d":{},"k":{},"b":{"1":{"position":[[816,9],[910,9]]},"67":{"position":[[102,13],[341,8],[3433,9],[3740,9],[5369,9],[9951,8],[10190,8],[10245,8]]},"68":{"position":[[3,9],[1631,8],[4463,8],[4511,8],[6593,8],[8840,8],[9062,9],[9182,9],[9963,8],[12657,8],[15524,8],[20145,8],[23154,8],[24181,9],[29413,8]]},"69":{"position":[[3,9],[2002,8],[8393,9],[8420,8],[13845,8],[15267,8],[16183,8],[18021,8],[29242,8],[29694,8],[29724,8],[30608,9],[32023,8],[32086,8],[32218,8],[33485,9],[33539,8],[36010,8]]},"70":{"position":[[3,9],[13667,8]]},"71":{"position":[[3,9],[1541,8],[3891,8],[3939,8],[3988,9],[4346,8],[4389,8],[4430,8],[4547,8],[5004,8],[5104,8],[5346,8],[5465,8],[5539,8],[5589,8],[5613,8],[7017,8],[7109,8],[7136,8],[7358,8],[7480,9],[9199,8],[9334,13],[10478,9],[14469,9],[14548,9],[29368,8],[29546,9],[29808,10],[30148,8],[30223,10],[31095,8],[31943,8],[32121,9],[32383,10],[32723,8],[32798,10],[33670,8],[34691,8],[37777,8],[39901,8],[39971,8],[40130,8],[40150,10],[40213,8],[40237,8],[40584,8],[41365,8],[42506,8],[43357,8],[44294,8],[44379,8],[44435,8],[45749,8],[46010,8],[46231,8],[46624,8],[46861,8],[47957,9],[48150,9]]},"74":{"position":[[279,8],[2766,9],[4090,8],[4555,8],[5018,8],[5391,8],[5751,8],[6655,8],[6879,8],[6946,8]]},"75":{"position":[[3,9],[14122,9],[14149,8],[16999,13],[28066,8],[29212,8],[35450,8]]},"76":{"position":[[3,9],[1386,9],[1411,9],[1439,9],[4080,9],[4107,8],[7438,8],[8279,8],[9736,8],[10478,8],[10729,8],[13690,9],[15452,8],[16352,8],[16519,8],[22855,13],[23281,8]]},"77":{"position":[[3,9],[1810,9],[2461,8],[2946,9],[3176,8],[5135,8],[6663,8],[7505,8]]},"78":{"position":[[884,8],[1316,9]]},"79":{"position":[[3,9],[7354,8],[7510,8],[7636,9],[8092,8],[9042,8],[9198,8],[12555,9],[16334,8]]},"80":{"position":[[3,9],[1334,10],[1406,8],[1705,10],[1920,9],[2438,13],[7933,8],[8049,8],[8464,8],[8902,8]]},"81":{"position":[[625,9]]},"82":{"position":[[762,8],[886,8],[1139,8],[2223,9],[4402,8],[4693,8],[4748,8]]},"83":{"position":[[3,9],[3236,9],[10869,8],[10918,8],[20706,8],[21614,8],[23265,8],[23942,8],[24185,8],[25487,8],[26784,8],[38246,9],[46185,8],[46625,13],[48555,8],[50269,8],[50477,8],[53942,9],[58208,8],[58281,8]]},"84":{"position":[[3,9],[3838,9],[3865,8],[6235,8],[6952,8],[7744,8],[8001,8],[9868,8],[10889,8],[11128,8],[12285,8],[13023,8],[13399,8],[15446,13]]},"85":{"position":[[229,8],[2097,9],[2799,9],[6829,8],[7067,8],[7122,8]]},"86":{"position":[[226,8],[1943,9],[2449,9],[5009,8],[5215,8],[5270,8]]},"87":{"position":[[4238,8],[5152,9],[8035,8],[8609,8],[9324,8],[10084,8],[10601,8],[12802,8],[13360,8]]},"88":{"position":[[3,9],[14009,8],[18826,8],[25342,8],[44616,9],[51386,8],[53558,8],[55091,8],[57370,9],[59990,8],[60295,8],[60894,8],[61116,8]]},"89":{"position":[[3,9],[1437,9],[2508,8],[2556,8],[4999,8],[5483,8],[5816,8],[5991,8]]},"90":{"position":[[3,9],[1396,9],[2226,8],[2274,8],[4631,8],[5108,8],[5432,8],[5541,8]]},"91":{"position":[[3,9],[1445,9],[2585,8],[2633,8],[6177,8],[6663,8],[6987,8],[7162,8]]},"92":{"position":[[3,9],[1681,8],[2241,14],[10625,8],[10837,8],[10883,9],[11007,9],[11177,8],[11364,9],[11653,8],[11891,8],[11934,8],[12040,8],[12282,8],[12538,8],[12583,8],[13046,8],[13883,8],[15241,8],[15357,8],[18701,8],[19238,10],[19294,8],[19364,8],[19434,8],[19504,8],[19574,8],[19644,8],[19714,8],[19784,8],[19854,8],[19924,8],[19995,8],[20067,8],[20139,8],[20211,8],[20283,8],[20355,8],[20518,9],[21722,13],[24119,13],[26844,8],[26915,8],[28338,10],[28517,10],[28532,8],[28912,8],[29828,9],[29945,8],[30930,8],[30978,8],[31097,8],[31294,9],[31893,8],[32257,8],[32747,8],[32911,8],[33249,8],[33918,8],[34631,8],[35900,8],[36699,8],[37062,8],[37639,8],[37815,8],[38452,8],[39343,8],[40556,8]]},"93":{"position":[[76,14],[715,8],[1419,9]]},"94":{"position":[[997,8],[1480,9],[1925,9],[3768,8],[4061,8],[4128,8]]},"95":{"position":[[3,9],[613,8],[824,8],[1892,8],[4705,8]]},"96":{"position":[[3,9],[641,8],[1523,8],[4049,8]]},"97":{"position":[[3,9],[445,8],[1267,8]]},"98":{"position":[[3,9],[766,8],[1830,8],[4628,8]]},"99":{"position":[[3,9],[603,8],[803,8],[1863,8],[4646,8]]},"100":{"position":[[3,9],[633,8],[1496,8],[3996,8]]},"101":{"position":[[1032,8],[1528,9],[1933,9],[3506,8],[3773,8],[3840,8]]},"102":{"position":[[3,9],[439,8],[1242,8]]},"103":{"position":[[1007,8]]},"104":{"position":[[3,9],[745,8],[1801,8],[4569,8]]},"105":{"position":[[3,9],[2990,8],[3016,9],[3318,8],[3401,8],[6987,8],[7373,8],[7804,8],[7853,8],[9499,8],[10143,8],[12461,8],[13215,8],[14020,8],[14480,8],[15809,8],[18155,9],[18411,8],[18515,8],[26356,8],[27876,8],[29966,8],[30693,8],[31119,8],[35315,9]]},"106":{"position":[[3,9],[964,8],[11420,8],[11463,8],[13836,8],[14016,8],[14950,8],[20243,8],[20601,8],[21065,9],[21090,8],[21137,8],[21700,8],[22491,8],[23306,8],[23918,9],[23943,8],[23990,8],[24815,8]]},"107":{"position":[[662,8],[777,8],[1221,8],[2769,9],[3814,9],[3863,9],[4623,8],[5170,8],[6560,8],[6753,8],[6808,8],[9110,8],[9380,8]]},"108":{"position":[[3,9],[2517,8],[2566,8],[4005,8],[5405,8],[8674,8],[9112,8]]},"109":{"position":[[889,8],[1131,9],[2151,9],[3770,8],[3989,8],[4056,8],[4772,8]]},"113":{"position":[[1176,9],[1736,8],[1762,8],[3394,8],[5818,8],[11209,8],[13701,9],[14501,8],[14947,8]]},"115":{"position":[[65,14],[748,14],[1424,10],[1487,10],[1602,10],[1693,10],[1769,10],[1845,10],[1925,10]]},"116":{"position":[[539,10],[572,9],[1189,8],[1233,9],[1257,8],[1279,8]]},"122":{"position":[[410,8]]},"124":{"position":[[3,9],[4162,8],[8237,8],[9935,8],[10834,8],[14301,8],[18113,8],[18770,8]]},"125":{"position":[[3,9],[3435,8],[5255,8],[10855,8],[14102,8],[15537,8],[16647,8]]},"126":{"position":[[62,10],[145,14],[1135,9],[1179,14],[4388,8]]},"127":{"position":[[3,9],[1065,8],[1108,9],[2999,8],[3088,9],[5858,8],[7022,8]]},"128":{"position":[[4351,10],[7870,13],[8005,13],[8250,13],[8304,13],[8459,14],[8579,13],[8643,13],[8782,13],[8849,13],[9746,13],[9858,14],[13094,10],[13145,9],[13504,9],[13705,9],[14127,9],[15052,9],[15960,9],[17450,9],[17528,9],[17610,9],[17748,9],[17938,10],[17962,10],[17986,9],[18140,8],[18236,8],[18403,8],[18448,8],[18588,8],[18687,9],[19637,8],[19670,8],[19982,9],[20067,8],[20141,9],[20413,8],[20485,8],[20712,9],[21174,9],[21267,9],[21354,9],[21429,9],[22158,10],[22895,8],[23015,8],[24214,8],[24334,8],[24996,9],[26892,14],[26942,14],[27616,9],[27647,8],[27711,8],[27740,9],[27772,8],[27837,8],[27866,9],[27892,8],[27951,8],[27980,9],[28007,8],[28067,8],[28096,9],[28125,8],[28187,8],[28216,9],[28246,8],[28309,8],[28338,9],[28363,8],[28421,8],[28450,9],[28487,8],[28557,8],[28586,9],[28626,8],[28699,8],[28728,9],[28770,8],[28846,8],[28875,9],[28912,8],[28983,8],[29012,9],[29040,8],[29102,8],[29131,9],[29170,8],[29242,8],[29271,9],[29308,8],[29379,8],[29408,9],[29438,8],[29502,8],[29531,9],[29560,8],[29623,8],[29652,9],[29685,8],[29751,8]]},"129":{"position":[[3,9],[435,8],[1178,8],[1319,9],[1569,8],[1642,9],[1688,8],[1778,9],[2080,8],[2153,9],[2188,8],[2395,8],[2468,9],[2483,8],[3994,8],[4082,9],[4416,8],[4586,9],[4656,9],[7474,8],[11173,8],[12519,8],[14460,8],[14601,9],[15351,8],[15424,9],[15470,8],[15560,9],[16457,8],[16530,9],[16565,8],[17272,8],[17345,9],[17360,8]]},"130":{"position":[[54,10],[112,14],[1821,9],[6671,8]]},"131":{"position":[[3,9],[439,8],[571,8],[722,9],[1116,8],[3309,8],[4163,8],[4251,9],[6051,8],[7843,8],[7985,8],[8314,8],[8425,8],[8772,8],[9169,8],[9211,8],[9388,8],[9506,8],[11733,8],[15903,8],[17345,8],[17477,8],[17628,9],[18446,8]]},"132":{"position":[[54,10],[112,14],[5813,8]]},"133":{"position":[[3,9],[123,8],[411,8],[605,8],[793,8],[1040,8],[1346,8],[1411,8],[1686,8],[1751,8],[2113,8],[2492,8],[2863,8],[3242,8],[3622,8],[4001,8],[4370,8],[4633,8],[6658,8],[6769,8],[7612,13],[7738,14],[10031,8],[10309,8],[10794,8],[13733,8],[17867,8],[22171,8],[27185,8],[33338,8],[37453,8],[41758,8],[46010,8],[51013,8],[51361,8],[52073,8],[52649,8],[53215,8],[53936,8],[54881,8],[54946,8],[55521,8],[55586,8],[56511,8],[57361,8],[58198,8],[59049,8],[59900,8],[60750,8],[61584,8],[62136,8]]},"134":{"position":[[56,10],[118,14],[13177,8]]},"135":{"position":[[3,9],[4710,8],[4753,8],[8653,8],[9742,8],[11533,8],[16518,8],[16834,9],[16927,8],[17158,10],[17486,9],[17511,8],[17563,8],[18053,8],[18127,8],[19163,8],[19285,8],[20407,8],[20496,8],[21247,8],[21524,10]]},"136":{"position":[[3,9],[1245,10],[1948,8],[2794,9],[2830,8],[3212,9],[3577,9],[4461,9],[5464,8],[5507,8],[7967,8],[8458,8],[9129,8],[10835,8],[11277,9],[13540,8],[16568,8]]},"137":{"position":[[135,13],[948,8],[2780,8],[3499,9],[3692,9],[8292,8],[8485,8],[8540,8],[10002,8]]},"138":{"position":[[3,9],[2861,9],[4618,8],[4661,8],[8104,8],[10029,8],[11851,8],[12768,8],[13806,8],[14006,8],[15707,8],[15895,8],[16642,8],[16842,8],[17563,8]]},"139":{"position":[[3,9],[1409,8],[1777,8],[2575,9],[4305,8],[4366,8],[4395,8],[6364,8],[6431,9],[6514,8],[6557,8],[8352,8],[8399,8],[8475,8],[9052,8],[13983,8],[14067,9],[14847,8],[14997,8],[17633,8],[17709,8],[17768,8],[17792,8],[18265,9],[18817,9],[18842,8],[18889,8],[19941,9],[19966,8],[20013,8],[21168,9],[21193,8],[21240,8],[23958,8],[24342,9],[24367,8],[24414,8],[25356,9],[27230,8],[27604,9],[27629,8],[27676,8]]},"140":{"position":[[3,9],[1430,8],[5321,8],[5364,8],[6926,8],[11749,9],[16413,8],[16884,9],[21810,8],[22194,9],[22219,8],[23276,9],[24179,8],[24553,9],[24578,8]]},"141":{"position":[[1069,8],[2353,9],[2432,9],[6334,8],[6550,8],[6605,8]]},"142":{"position":[[3,9],[2722,9],[4169,8],[4212,8],[9638,8],[10742,8],[12595,8],[18351,8],[18669,9],[18762,8],[18993,10],[19434,9],[19459,8],[19506,8],[19553,8],[20045,8],[20119,8],[21056,8],[21178,8],[22201,8],[22290,8],[22942,8],[23219,10]]},"143":{"position":[[1680,8],[5824,8]]},"144":{"position":[[42,10],[115,13],[534,8],[1083,8],[1200,8],[2236,8],[3460,9],[8951,8],[9232,8],[9299,8],[10750,8]]},"145":{"position":[[50,10],[3604,9]]},"146":{"position":[[3,9],[1439,8],[1475,8],[1545,8],[2605,8],[2768,8],[2884,8],[3060,8],[3108,8],[4118,8],[4132,8],[5724,8],[7257,8],[8891,8],[12112,8],[15428,8],[16400,8],[16534,8],[18099,8],[18164,8],[18296,8],[19430,9],[19484,8],[21800,8]]},"147":{"position":[[266,8],[2723,9],[2804,9],[5352,8],[7909,8],[8140,8],[8195,8]]},"148":{"position":[[3,9],[3256,8],[3396,8],[5364,8],[8142,8],[9664,8],[9958,8],[10713,8],[10740,9],[10844,8]]},"149":{"position":[[52,10],[149,13],[810,8],[925,8],[2296,9],[5367,8],[5560,8],[5615,8]]},"150":{"position":[[3,9],[1735,8],[1809,8],[3322,8],[3366,8],[5861,8],[5953,8],[18649,8],[18713,8],[18736,8],[23519,8],[24624,8],[25327,8],[26777,8]]},"151":{"position":[[997,10],[1045,8],[1124,9],[1601,8],[1825,14]]},"152":{"position":[[80,10],[5923,8],[6502,14],[7132,13],[7765,9],[7823,9],[7928,9],[8014,9],[8085,9],[8156,9],[8231,9]]},"292":{"position":[[1205,8],[1334,8],[1472,8],[1498,8]]}}}],["function)must",{"_index":4899,"t":{},"d":{},"k":{},"b":{"105":{"position":[[8781,13],[9018,13]]}}}],["functionmanu",{"_index":6355,"t":{},"d":{},"k":{},"b":{"128":{"position":[[29794,14]]}}}],["functionnam",{"_index":8152,"t":{},"d":{},"k":{},"b":{"150":{"position":[[5819,12],[5911,12]]}}}],["further",{"_index":1800,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6424,8]]},"128":{"position":[[187,7],[14006,8],[16175,8],[26005,7]]},"138":{"position":[[7330,7]]},"145":{"position":[[9370,7],[11054,7],[11448,7],[11966,7]]}}}],["futur",{"_index":2100,"t":{},"d":{},"k":{},"b":{"71":{"position":[[46219,6]]},"87":{"position":[[15731,6],[15810,6],[15889,6],[15968,6]]},"131":{"position":[[2559,7]]}}}],["g",{"_index":3519,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37209,3],[37713,3]]}}}],["g_adc0_cfg",{"_index":777,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9919,13],[11423,10],[12098,12],[12613,13],[14290,10],[14965,12],[15480,13]]},"69":{"position":[[13801,13],[15223,13],[17818,13]]},"83":{"position":[[26740,13]]}}}],["g_adc0_cfg_extend",{"_index":789,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10888,17],[11631,19],[13756,17],[14498,19]]}}}],["g_adc0_channel_cfg",{"_index":768,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9631,18],[10102,21],[11772,18],[12148,20],[12796,21],[14639,18],[15015,20],[15663,21]]},"69":{"position":[[13418,18],[13975,21],[15411,21]]},"83":{"position":[[26914,21]]}}}],["g_adc0_channel_runtime_cfg",{"_index":1105,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18120,29]]}}}],["g_adc0_channel_runtime_cfg.p_window_cfg",{"_index":1103,"t":{},"d":{},"k":{},"b":{"69":{"position":[[17934,39]]}}}],["g_adc0_ctrl",{"_index":811,"t":{},"d":{},"k":{},"b":{"68":{"position":[[12047,13],[14914,13]]}}}],["g_adc0_window_cfg",{"_index":1079,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16304,17],[17976,19]]}}}],["g_adc1",{"_index":810,"t":{},"d":{},"k":{},"b":{"68":{"position":[[12000,6],[14867,6]]}}}],["g_adc_on_adc_c};void",{"_index":812,"t":{},"d":{},"k":{},"b":{"68":{"position":[[12206,21],[15073,21]]}}}],["g_bsp_pin_cfg",{"_index":4503,"t":{},"d":{},"k":{},"b":{"92":{"position":[[12943,13],[12999,16],[13836,16],[15618,16]]}}}],["g_bsp_version",{"_index":1924,"t":{},"d":{},"k":{},"b":{"71":{"position":[[14431,13],[14510,13],[47833,13],[47902,13],[48026,13],[48095,13]]}}}],["g_can_rx_frame;volatil",{"_index":2463,"t":{},"d":{},"k":{},"b":{"75":{"position":[[26950,23]]}}}],["g_can_tx_fram",{"_index":2478,"t":{},"d":{},"k":{},"b":{"75":{"position":[[28657,17],[30107,17],[37135,17]]}}}],["g_can_tx_frame.data[i",{"_index":2475,"t":{},"d":{},"k":{},"b":{"75":{"position":[[28530,22],[29980,22]]}}}],["g_can_tx_frame.data_length_cod",{"_index":2412,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20649,31],[28358,31],[29723,31]]}}}],["g_can_tx_frame.id",{"_index":2407,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20479,17],[28188,17],[29553,17]]}}}],["g_can_tx_frame.id_mod",{"_index":2409,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20532,22],[28241,22],[29606,22]]}}}],["g_can_tx_frame.opt",{"_index":2414,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20708,22],[28398,22],[29782,22]]}}}],["g_can_tx_frame.typ",{"_index":2411,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20591,19],[28300,19],[29665,19]]}}}],["g_can_tx_frame;can_frame_t",{"_index":2462,"t":{},"d":{},"k":{},"b":{"75":{"position":[[26923,26]]}}}],["g_canfd0_cfg",{"_index":2472,"t":{},"d":{},"k":{},"b":{"75":{"position":[[28020,15],[29166,15],[35903,15]]}}}],["g_capture_overflow",{"_index":2671,"t":{},"d":{},"k":{},"b":{"76":{"position":[[8854,19],[9286,20],[9333,19],[9526,22]]},"83":{"position":[[22184,19],[22817,20],[22864,19],[23057,22]]}}}],["g_captured_tim",{"_index":2669,"t":{},"d":{},"k":{},"b":{"76":{"position":[[8820,15],[9243,15]]},"83":{"position":[[22150,15],[22785,15]]}}}],["g_clock_freq[clock]system",{"_index":2049,"t":{},"d":{},"k":{},"b":{"71":{"position":[[41754,25]]}}}],["g_comms_i2c_cfg",{"_index":6114,"t":{},"d":{},"k":{},"b":{"127":{"position":[[5809,18],[7506,18]]}}}],["g_comms_i2c_cfg.p_extend",{"_index":6090,"t":{},"d":{},"k":{},"b":{"127":{"position":[[4233,25]]}}}],["g_crc_buff",{"_index":2866,"t":{},"d":{},"k":{},"b":{"77":{"position":[[4749,14]]}}}],["g_crc_test_cfg",{"_index":2860,"t":{},"d":{},"k":{},"b":{"77":{"position":[[4183,17],[4465,17]]}}}],["g_data_8bit",{"_index":2857,"t":{},"d":{},"k":{},"b":{"77":{"position":[[4031,12]]}}}],["g_dest",{"_index":7201,"t":{},"d":{},"k":{},"b":{"139":{"position":[[10194,7]]},"140":{"position":[[7584,7]]}}}],["g_dest[0",{"_index":8191,"t":{},"d":{},"k":{},"b":{"150":{"position":[[8463,11]]}}}],["g_dest[qspi_example_data_length];uint8_t",{"_index":8180,"t":{},"d":{},"k":{},"b":{"150":{"position":[[7353,40]]}}}],["g_dest[transfer_length];uint8_t",{"_index":7189,"t":{},"d":{},"k":{},"b":{"139":{"position":[[9600,31]]},"140":{"position":[[7004,31]]}}}],["g_elc",{"_index":3135,"t":{},"d":{},"k":{},"b":{"80":{"position":[[4331,5],[4420,6]]}}}],["g_elc_cfg",{"_index":3141,"t":{},"d":{},"k":{},"b":{"80":{"position":[[5308,9],[7890,12]]},"92":{"position":[[15198,12]]}}}],["g_elc_cfg;void",{"_index":4523,"t":{},"d":{},"k":{},"b":{"92":{"position":[[14987,14]]}}}],["g_elc_ctrl;stat",{"_index":4522,"t":{},"d":{},"k":{},"b":{"92":{"position":[[14949,17]]}}}],["g_err_statu",{"_index":2464,"t":{},"d":{},"k":{},"b":{"75":{"position":[[26988,12],[27693,12]]}}}],["g_external_irq_cfg",{"_index":4376,"t":{},"d":{},"k":{},"b":{"89":{"position":[[3569,18],[4022,21]]},"90":{"position":[[3215,18],[3654,21]]},"91":{"position":[[3795,18],[4292,21]]}}}],["g_external_irq_complet",{"_index":4373,"t":{},"d":{},"k":{},"b":{"89":{"position":[[3463,23],[4222,24]]},"90":{"position":[[3109,23],[3854,24]]},"91":{"position":[[3545,23],[4493,24]]}}}],["g_external_irq_extend",{"_index":4409,"t":{},"d":{},"k":{},"b":{"91":{"position":[[3663,21],[4087,23]]}}}],["g_flag",{"_index":6115,"t":{},"d":{},"k":{},"b":{"127":{"position":[[5951,6],[6085,7],[6149,6],[6286,7]]},"129":{"position":[[7599,6],[7768,7],[8021,6],[8187,7],[8424,6],[8596,7],[8833,6],[8945,7],[9024,6],[9137,7],[9224,6],[9363,7]]},"131":{"position":[[11864,6],[11976,7],[12117,6],[12239,7],[13116,6],[13267,7]]}}}],["g_hs300x_cfg",{"_index":6407,"t":{},"d":{},"k":{},"b":{"129":{"position":[[7428,15],[11640,15]]}}}],["g_hs300x_cfg.p_instanc",{"_index":6405,"t":{},"d":{},"k":{},"b":{"129":{"position":[[5852,23]]}}}],["g_hs400x_cfg",{"_index":6499,"t":{},"d":{},"k":{},"b":{"131":{"position":[[11687,15],[16374,15]]}}}],["g_hs400x_cfg.frequenc",{"_index":6502,"t":{},"d":{},"k":{},"b":{"131":{"position":[[12468,24]]}}}],["g_hs400x_cfg.p_comms_inst",{"_index":6497,"t":{},"d":{},"k":{},"b":{"131":{"position":[[10105,29]]}}}],["g_hs400x_event",{"_index":6511,"t":{},"d":{},"k":{},"b":{"131":{"position":[[13473,15]]}}}],["g_i2c_callback_ev",{"_index":5918,"t":{},"d":{},"k":{},"b":{"124":{"position":[[7946,20],[8483,20],[8773,21],[8939,21],[9035,20],[9378,21],[9544,21],[11026,20],[11242,21],[11408,21],[11747,20],[11999,21],[12165,21]]},"138":{"position":[[8363,20],[8660,21],[8826,21],[8922,20],[9272,21],[9438,21],[10230,20],[10453,21],[10619,21],[10981,20],[11240,21],[11406,21]]}}}],["g_i2c_device_cfg_1",{"_index":5908,"t":{},"d":{},"k":{},"b":{"124":{"position":[[7349,18],[8185,21]]},"138":{"position":[[8052,21]]}}}],["g_i2c_device_cfg_2",{"_index":5936,"t":{},"d":{},"k":{},"b":{"124":{"position":[[10074,18],[10782,21]]},"138":{"position":[[9977,21]]}}}],["g_i2c_device_ctrl_1",{"_index":5913,"t":{},"d":{},"k":{},"b":{"124":{"position":[[7601,21]]}}}],["g_i2c_device_ctrl_1;i2c_master_cfg_t",{"_index":5907,"t":{},"d":{},"k":{},"b":{"124":{"position":[[7302,36]]}}}],["g_i2c_device_ctrl_2",{"_index":5939,"t":{},"d":{},"k":{},"b":{"124":{"position":[[10335,21]]}}}],["g_i2c_device_ctrl_2;i2c_master_cfg_t",{"_index":5935,"t":{},"d":{},"k":{},"b":{"124":{"position":[[10027,36]]}}}],["g_i2c_master_callback_ev",{"_index":6023,"t":{},"d":{},"k":{},"b":{"125":{"position":[[9469,27],[11259,27],[11731,27],[11976,28],[12146,27],[12661,27],[12906,28]]}}}],["g_i2c_master_cfg",{"_index":6003,"t":{},"d":{},"k":{},"b":{"125":{"position":[[8354,16],[11020,19]]}}}],["g_i2c_master_ctrl",{"_index":6007,"t":{},"d":{},"k":{},"b":{"125":{"position":[[8627,19]]}}}],["g_i2c_master_ctrl;i2c_master_cfg_t",{"_index":6002,"t":{},"d":{},"k":{},"b":{"125":{"position":[[8309,34]]}}}],["g_i2c_master_rx_buff",{"_index":6037,"t":{},"d":{},"k":{},"b":{"125":{"position":[[13104,23]]}}}],["g_i2c_master_rx_buffer[0",{"_index":6035,"t":{},"d":{},"k":{},"b":{"125":{"position":[[12352,27]]}}}],["g_i2c_master_tx_buffer[0",{"_index":6033,"t":{},"d":{},"k":{},"b":{"125":{"position":[[11422,27]]}}}],["g_i2c_master_tx_buffer[i",{"_index":6031,"t":{},"d":{},"k":{},"b":{"125":{"position":[[11178,25]]}}}],["g_i2c_rx_buff",{"_index":5934,"t":{},"d":{},"k":{},"b":{"124":{"position":[[9661,16]]},"138":{"position":[[9555,16]]}}}],["g_i2c_rx_buffer[0",{"_index":5932,"t":{},"d":{},"k":{},"b":{"124":{"position":[[9188,20],[11125,20]]},"138":{"position":[[9073,20],[10327,20]]}}}],["g_i2c_slave_buff",{"_index":6026,"t":{},"d":{},"k":{},"b":{"125":{"position":[[9972,19],[10256,19]]}}}],["g_i2c_slave_callback_ev",{"_index":6024,"t":{},"d":{},"k":{},"b":{"125":{"position":[[9579,26],[10396,26],[11318,26],[11804,27],[12043,28],[12205,26],[12734,27],[12973,28]]}}}],["g_i2c_slave_cfg",{"_index":6013,"t":{},"d":{},"k":{},"b":{"125":{"position":[[8958,15],[10806,18]]}}}],["g_i2c_slave_ctrl",{"_index":6021,"t":{},"d":{},"k":{},"b":{"125":{"position":[[9327,18]]}}}],["g_i2c_slave_ctrl;i2c_slave_cfg_t",{"_index":6012,"t":{},"d":{},"k":{},"b":{"125":{"position":[[8915,32]]}}}],["g_i2c_tx_buffer[0",{"_index":5927,"t":{},"d":{},"k":{},"b":{"124":{"position":[[8583,20],[11651,18],[11901,20]]},"138":{"position":[[8461,20],[10869,18],[11133,20]]}}}],["g_i2c_tx_buffer[1",{"_index":5950,"t":{},"d":{},"k":{},"b":{"124":{"position":[[11699,18]]},"138":{"position":[[10925,18]]}}}],["g_i2c_tx_buffer[i",{"_index":5924,"t":{},"d":{},"k":{},"b":{"124":{"position":[[8409,18]]},"138":{"position":[[8289,18]]}}}],["g_i3c_cfg",{"_index":4138,"t":{},"d":{},"k":{},"b":{"88":{"position":[[22532,12],[26568,12],[30251,12]]}}}],["g_iic_master_cfg_extend_standard_mode};iic_slave_instance_ctrl_t",{"_index":6011,"t":{},"d":{},"k":{},"b":{"125":{"position":[[8849,65]]}}}],["g_iic_slave_cfg_extend_standard_mode};void",{"_index":6022,"t":{},"d":{},"k":{},"b":{"125":{"position":[[9363,43]]}}}],["g_out_of_band_index",{"_index":7194,"t":{},"d":{},"k":{},"b":{"139":{"position":[[9780,19],[10765,20],[11302,19]]},"140":{"position":[[7184,19],[8135,20],[8671,19]]}}}],["g_out_of_band_received[g_out_of_band_index",{"_index":7208,"t":{},"d":{},"k":{},"b":{"139":{"position":[[10992,45],[11170,45]]},"140":{"position":[[8361,45],[8539,45]]}}}],["g_out_of_band_received[transfer_length];uint32_t",{"_index":7191,"t":{},"d":{},"k":{},"b":{"139":{"position":[[9665,48]]},"140":{"position":[[7069,48]]}}}],["g_pdm_cfg",{"_index":5238,"t":{},"d":{},"k":{},"b":{"106":{"position":[[13793,12]]}}}],["g_poeg0_cfg",{"_index":5446,"t":{},"d":{},"k":{},"b":{"108":{"position":[[3960,14]]}}}],["g_qspi0_cfg",{"_index":8185,"t":{},"d":{},"k":{},"b":{"150":{"position":[[7574,14],[11554,14],[19336,14]]}}}],["g_receive_complet",{"_index":7193,"t":{},"d":{},"k":{},"b":{"139":{"position":[[9747,18],[10401,21],[11471,18]]},"140":{"position":[[7151,18],[7771,21],[8840,18]]}}}],["g_riic_master_cfg_extend_1};void",{"_index":5917,"t":{},"d":{},"k":{},"b":{"124":{"position":[[7857,33]]}}}],["g_riic_master_cfg_extend_2};void",{"_index":5940,"t":{},"d":{},"k":{},"b":{"124":{"position":[[10591,33]]}}}],["g_rtc0_cfg",{"_index":6969,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7923,13],[8414,13],[9085,13],[11360,13]]}}}],["g_rtc1_cfg",{"_index":6981,"t":{},"d":{},"k":{},"b":{"136":{"position":[[9610,13]]}}}],["g_runtime_pin_cfg",{"_index":4506,"t":{},"d":{},"k":{},"b":{"92":{"position":[[13257,20]]}}}],["g_slave_transfer_length",{"_index":6027,"t":{},"d":{},"k":{},"b":{"125":{"position":[[9992,25],[10276,25],[10529,23]]}}}],["g_spi_cfg",{"_index":6811,"t":{},"d":{},"k":{},"b":{"135":{"position":[[8610,12],[9699,12],[11490,12]]},"142":{"position":[[9595,12],[10699,12],[12552,12]]}}}],["g_spi_cfg.p_extend",{"_index":6822,"t":{},"d":{},"k":{},"b":{"135":{"position":[[11171,18]]},"142":{"position":[[12195,18]]}}}],["g_spi_extended_cfg",{"_index":6823,"t":{},"d":{},"k":{},"b":{"135":{"position":[[11192,20]]},"142":{"position":[[12216,20]]}}}],["g_spi_extended_cfg.spck_div",{"_index":6825,"t":{},"d":{},"k":{},"b":{"135":{"position":[[11363,32]]},"142":{"position":[[12417,32]]}}}],["g_src",{"_index":7203,"t":{},"d":{},"k":{},"b":{"139":{"position":[[10294,6]]},"140":{"position":[[7673,6]]}}}],["g_src[i",{"_index":7197,"t":{},"d":{},"k":{},"b":{"139":{"position":[[9946,8]]},"140":{"position":[[7349,8]]}}}],["g_src[transfer_length];uint8_t",{"_index":7190,"t":{},"d":{},"k":{},"b":{"139":{"position":[[9633,30]]},"140":{"position":[[7037,30]]}}}],["g_timer0_cfg",{"_index":824,"t":{},"d":{},"k":{},"b":{"68":{"position":[[13412,15],[16182,15]]},"76":{"position":[[7392,15],[8233,15],[9690,15],[10432,15],[23235,15]]},"83":{"position":[[23896,15]]},"105":{"position":[[12415,15],[13169,15],[13974,15],[15763,15],[28458,15]]},"146":{"position":[[13209,15]]}}}],["g_timer0_cfg.source_div",{"_index":2696,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11101,24],[16891,24]]},"105":{"position":[[14838,24],[31477,24]]}}}],["g_timer3_cfg",{"_index":3401,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27271,15]]}}}],["g_timer4_cfg",{"_index":3369,"t":{},"d":{},"k":{},"b":{"83":{"position":[[20660,15],[21568,15],[23219,15],[25441,15]]}}}],["g_timer4_cfg.source_div",{"_index":3388,"t":{},"d":{},"k":{},"b":{"83":{"position":[[24532,24]]}}}],["g_timer_cfg",{"_index":3672,"t":{},"d":{},"k":{},"b":{"84":{"position":[[6190,14],[6907,14],[7699,14]]}}}],["g_transfer_cfg",{"_index":3002,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8044,17]]}}}],["g_transfer_complet",{"_index":6806,"t":{},"d":{},"k":{},"b":{"135":{"position":[[8372,19],[8958,20],[9123,19],[9941,19],[10189,20],[10597,19],[10845,20]]},"139":{"position":[[9714,19],[10359,22],[11609,19]]},"140":{"position":[[7118,19],[7729,22],[8978,19]]},"142":{"position":[[9359,19],[9961,20],[10125,19],[10950,19],[11207,20],[11615,19],[11872,20]]}}}],["g_tsu0_cfg",{"_index":7860,"t":{},"d":{},"k":{},"b":{"146":{"position":[[4803,10],[5680,13],[7683,10],[8847,13],[10795,10],[12068,13]]}}}],["g_tsu0_cfg_extend",{"_index":7853,"t":{},"d":{},"k":{},"b":{"146":{"position":[[4515,17],[5212,19],[7386,17],[10505,17],[11204,19]]}}}],["g_tsu_cfg_extend",{"_index":7885,"t":{},"d":{},"k":{},"b":{"146":{"position":[[8100,18]]}}}],["g_uart0_cfg",{"_index":7199,"t":{},"d":{},"k":{},"b":{"139":{"position":[[10106,14]]},"140":{"position":[[7507,14]]}}}],["g_uart0_cfg.data_bit",{"_index":7207,"t":{},"d":{},"k":{},"b":{"139":{"position":[[10933,22]]}}}],["g_uart_cfg.data_bit",{"_index":7327,"t":{},"d":{},"k":{},"b":{"140":{"position":[[8303,21]]}}}],["g_wdt0_cfg",{"_index":8016,"t":{},"d":{},"k":{},"b":{"148":{"position":[[5320,13],[11057,13]]}}}],["g_wdt0_cfg_0",{"_index":8036,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7299,12],[8096,15]]}}}],["g_wdt0_cfg_extend_0",{"_index":8029,"t":{},"d":{},"k":{},"b":{"148":{"position":[[6936,19],[7688,21]]}}}],["g_zmod4xxx_cfg",{"_index":6648,"t":{},"d":{},"k":{},"b":{"133":{"position":[[13685,17],[17819,17],[22123,17],[27137,17],[33290,17],[37405,17],[41710,17],[45962,17]]}}}],["g_zmod4xxx_cfg.p_comms_inst",{"_index":6644,"t":{},"d":{},"k":{},"b":{"133":{"position":[[11545,31],[15679,31],[19983,31],[24997,31],[31150,31],[35265,31],[39570,31],[43822,31]]}}}],["g_zmod4xxx_i2c_callback_ev",{"_index":6663,"t":{},"d":{},"k":{},"b":{"133":{"position":[[23234,30],[23329,31],[28437,30],[28532,31],[29493,30],[29584,31],[47235,30],[48195,30]]}}}],["g_zmod4xxx_i2c_callback_flag",{"_index":6652,"t":{},"d":{},"k":{},"b":{"133":{"position":[[13867,28],[13996,29],[14039,28],[14377,29],[14444,28],[14835,29],[14890,28],[18027,28],[18168,29],[18223,28],[18543,29],[18610,28],[19001,29],[19056,28],[22331,28],[22472,29],[22527,28],[22847,29],[22914,28],[23073,29],[23140,28],[23896,29],[23951,28],[27345,28],[27486,29],[27541,28],[28050,29],[28117,28],[28276,29],[28343,28],[29152,29],[29207,28],[29348,29],[29403,28],[33472,28],[33601,29],[33644,28],[33982,29],[34049,28],[34440,29],[34495,28],[37613,28],[37754,29],[37809,28],[38129,29],[38196,28],[38587,29],[38642,28],[41918,28],[42059,29],[42114,28],[42434,29],[42501,28],[42892,29],[42947,28],[46170,28],[46311,29],[46529,28],[46849,29],[46916,28],[47075,29],[47142,28],[47854,29],[47909,28],[48050,29],[48105,28]]}}}],["g_zmod4xxx_irq_callback_flag",{"_index":6650,"t":{},"d":{},"k":{},"b":{"133":{"position":[[13824,28],[14157,29],[14224,28],[17980,28],[18323,29],[18390,28],[22284,28],[22627,29],[22694,28],[27298,28],[27830,29],[27897,28],[33429,28],[33762,29],[33829,28],[37566,28],[37909,29],[37976,28],[41871,28],[42214,29],[42281,28],[46123,28],[46629,29],[46696,28]]}}}],["ga",{"_index":5877,"t":{"133":{"position":[[54,3]]}},"d":{},"k":{},"b":{"119":{"position":[[381,3]]},"133":{"position":[[6336,3],[6438,3],[15214,3],[19380,3],[24275,3],[30489,3],[34814,3],[38967,3],[43271,3],[48992,3]]},"134":{"position":[[188,3]]},"152":{"position":[[4962,3]]},"290":{"position":[[24,3],[140,3]]}}}],["gain",{"_index":454,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8738,4]]},"113":{"position":[[11054,4],[11127,4],[11283,4]]}}}],["gamma",{"_index":5642,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6299,5],[6627,5]]}}}],["gase",{"_index":6628,"t":{},"d":{},"k":{},"b":{"133":{"position":[[8145,5]]}}}],["gbrth",{"_index":3122,"t":{},"d":{},"k":{},"b":{"80":{"position":[[2111,5]]}}}],["gcelc",{"_index":1257,"t":{},"d":{},"k":{},"b":{"69":{"position":[[28952,5],[29035,5],[29124,5],[29207,5]]}}}],["gear",{"_index":2061,"t":{},"d":{},"k":{},"b":{"71":{"position":[[43118,4]]}}}],["gen",{"_index":6626,"t":{},"d":{},"k":{},"b":{"133":{"position":[[8099,3],[8268,3],[10746,4],[11184,4],[15320,4],[19649,4],[24544,4],[39236,4],[43377,4]]},"134":{"position":[[1230,3],[1607,3],[1729,4],[1799,3],[2696,3],[2922,3],[7948,4],[8481,4],[10060,4],[10593,4]]}}}],["gener",{"_index":337,"t":{"83":{"position":[[45,7]]},"84":{"position":[[45,7]]},"97":{"position":[[101,10]]},"102":{"position":[[101,10]]}},"d":{},"k":{},"b":{"67":{"position":[[2702,7]]},"68":{"position":[[2357,9],[3034,7],[3098,7],[3213,7],[3302,7],[3397,7],[3531,7],[3665,7],[3749,7],[6632,7],[9404,9],[13299,9]]},"69":{"position":[[1509,7],[2515,7],[2579,7],[2667,7],[2764,7],[2906,7],[3028,7],[10031,10],[13191,9],[32122,10]]},"71":{"position":[[9485,9],[9537,8],[34166,7],[34194,7],[34733,7],[34761,7],[44324,8]]},"74":{"position":[[195,7]]},"75":{"position":[[11733,7],[11800,7],[13656,10],[21445,9],[21787,9],[21830,9],[21942,9]]},"76":{"position":[[2282,7],[2349,7],[2426,7],[2600,7],[2705,7],[2856,7],[2931,7],[6625,9],[6730,9],[6839,9],[7068,9],[23077,7]]},"77":{"position":[[1827,9]]},"78":{"position":[[119,9],[978,10],[1304,7],[4664,10],[5348,9],[5415,9]]},"80":{"position":[[720,9],[1845,8],[1971,7],[2378,10],[2631,9],[4975,9],[5007,10],[5195,9],[9964,8]]},"81":{"position":[[613,7],[2013,8],[2219,10]]},"83":{"position":[[1749,8],[2809,11],[2872,10],[3377,7],[3409,7],[5066,7],[5161,7],[5225,7],[5292,7],[5384,7],[5574,9],[5631,8],[5791,9],[5851,9],[6020,9],[6175,7],[6793,9],[6828,7],[13382,8],[13426,8],[13642,9],[13877,9],[16826,9],[17076,8],[17143,9],[17712,9],[17943,9],[18085,9],[26517,8],[27133,10],[27349,9],[43314,10],[46781,7],[58177,10]]},"84":{"position":[[1138,8],[1183,7],[1761,7],[1793,7],[2699,7],[2766,7],[2832,7],[3006,7],[3418,7],[3571,7],[4095,8],[4173,9],[5158,9],[5801,9],[5920,9],[9513,8],[9576,9],[15666,7]]},"85":{"position":[[2424,7]]},"86":{"position":[[1402,7],[2269,7],[7828,7]]},"89":{"position":[[1293,11],[1525,10]]},"90":{"position":[[1282,11],[1474,10]]},"91":{"position":[[1303,11],[1524,10]]},"92":{"position":[[1580,7],[3065,7],[3132,7],[15881,8]]},"94":{"position":[[1757,7]]},"95":{"position":[[971,8]]},"97":{"position":[[632,8]]},"98":{"position":[[912,8]]},"99":{"position":[[948,8]]},"101":{"position":[[1739,7]]},"102":{"position":[[613,8]]},"103":{"position":[[268,8],[378,10],[466,10],[1319,7]]},"104":{"position":[[889,8]]},"105":{"position":[[1566,8],[2548,11],[3444,7],[4517,7],[4584,7],[4672,7],[4738,9],[4795,8],[4955,9],[5015,9],[5184,9],[5339,7],[5488,7],[5637,7],[5786,7],[5935,7],[6073,7],[6146,7],[28310,7]]},"108":{"position":[[943,7],[1662,7],[1728,7],[1820,7]]},"112":{"position":[[743,10],[1513,10]]},"113":{"position":[[15178,8]]},"122":{"position":[[173,7],[290,7]]},"125":{"position":[[3130,7],[3203,7],[5726,7]]},"128":{"position":[[688,7],[900,7],[1024,7],[1168,7],[1327,7],[1479,7],[1544,7],[2217,7],[2314,7],[2579,7],[2718,8],[2910,7],[3692,7],[4014,7],[4128,9],[4543,7],[4798,7],[5588,7],[7726,7],[8167,7],[8476,7],[8675,7],[8881,7],[9656,7],[9875,7],[10431,7],[11009,7],[11622,7],[11776,7],[12260,7],[12897,7],[15239,7],[17401,7],[21556,8],[30091,7]]},"133":{"position":[[7343,10],[7444,10],[7556,10],[7666,10],[8566,10],[8614,10],[8778,9]]},"135":{"position":[[2210,7],[2275,7],[2362,7],[2444,7],[2530,7],[2611,7],[2702,7],[3434,9],[6321,9],[6630,10]]},"136":{"position":[[1531,9],[1653,9],[4478,9]]},"137":{"position":[[3680,7],[12080,9],[12174,9],[12267,9],[12359,9],[12451,9],[12542,9],[12632,9],[12722,9],[12803,9],[12882,9]]},"138":{"position":[[2878,9],[3636,9],[3890,9],[3949,9],[4008,9],[4067,9],[4126,9],[4191,9]]},"139":{"position":[[2592,9],[2763,7],[2829,7],[2910,7],[2996,7],[3062,7],[3416,9],[4184,9],[5709,10],[7323,9],[7734,9],[14297,10],[15232,11],[15316,10]]},"140":{"position":[[2512,7],[2578,7],[2665,7],[2744,7],[2810,7],[3700,9],[4624,10],[6233,9],[6628,9],[11322,10],[12033,11],[12116,10]]},"142":{"position":[[2739,9],[5494,9],[7200,9],[7804,10]]},"144":{"position":[[67,7],[480,7],[506,7],[3446,7],[6882,8],[12189,9],[12350,9],[12444,9],[12545,9]]},"146":{"position":[[2164,7],[2228,7],[2318,7],[2418,7],[2501,7],[18200,10]]},"148":{"position":[[1083,9],[1343,10],[3310,8],[4049,10],[5916,9]]},"149":{"position":[[197,10],[1721,9]]},"150":{"position":[[2546,7],[2612,7],[2676,7],[2787,7],[2976,7],[3155,7],[3303,7]]},"151":{"position":[[3395,11]]},"152":{"position":[[1730,10],[2480,10],[5696,7],[5808,7]]},"287":{"position":[[472,9]]},"288":{"position":[[192,9]]},"289":{"position":[[628,9]]},"290":{"position":[[212,9]]},"291":{"position":[[184,9]]},"292":{"position":[[1832,9]]}}}],["general_call_en",{"_index":3786,"t":{},"d":{},"k":{},"b":{"86":{"position":[[1373,19]]}}}],["get",{"_index":167,"t":{},"d":{},"k":{},"b":{"2":{"position":[[67,7]]},"71":{"position":[[1083,7]]},"76":{"position":[[20697,4]]},"84":{"position":[[13742,4]]},"85":{"position":[[7477,4]]},"106":{"position":[[24331,4]]},"109":{"position":[[3295,4]]},"111":{"position":[[145,7]]},"124":{"position":[[17586,4],[19114,4]]},"129":{"position":[[2163,4],[2941,7],[3022,7],[3070,7],[3501,7],[4362,7],[16540,4]]},"131":{"position":[[2386,7],[2467,7],[3437,7]]},"133":{"position":[[1845,7],[55680,7]]},"134":{"position":[[13301,7]]},"150":{"position":[[25046,4]]},"152":{"position":[[224,7]]}}}],["get)interfac",{"_index":8396,"t":{},"d":{},"k":{},"b":{"152":{"position":[[7270,13]]}}}],["get_tim",{"_index":6972,"t":{},"d":{},"k":{},"b":{"136":{"position":[[8193,12]]}}}],["get_time;void",{"_index":6966,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7798,13]]}}}],["getaccmst",{"_index":4354,"t":{},"d":{},"k":{},"b":{"88":{"position":[[57427,9]]}}}],["getmrl",{"_index":4264,"t":{},"d":{},"k":{},"b":{"88":{"position":[[43415,6],[43554,6]]}}}],["getmwl",{"_index":4261,"t":{},"d":{},"k":{},"b":{"88":{"position":[[43313,6]]}}}],["getmxd",{"_index":4060,"t":{},"d":{},"k":{},"b":{"88":{"position":[[12382,7],[12516,7],[12648,7],[12888,7],[13067,7],[20507,7],[20701,7],[43694,7],[50248,7],[50798,7]]}}}],["getstatu",{"_index":3838,"t":{},"d":{},"k":{},"b":{"87":{"position":[[824,9],[10054,9],[10316,9]]},"88":{"position":[[19165,9],[37200,9],[37362,9],[54346,9]]}}}],["getxtim",{"_index":4068,"t":{},"d":{},"k":{},"b":{"88":{"position":[[13208,8],[13374,8],[44207,8],[44352,8]]}}}],["gic",{"_index":4358,"t":{},"d":{},"k":{},"b":{"89":{"position":[[820,3]]},"90":{"position":[[820,3]]},"91":{"position":[[837,3]]}}}],["gigabit",{"_index":8255,"t":{},"d":{},"k":{},"b":{"150":{"position":[[15018,8],[15373,8]]}}}],["give",{"_index":4017,"t":{},"d":{},"k":{},"b":{"87":{"position":[[20246,4]]},"148":{"position":[[5873,5]]}}}],["given",{"_index":1751,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3592,5]]},"87":{"position":[[7910,5]]},"88":{"position":[[5950,5]]},"128":{"position":[[3670,5],[4665,5],[6008,5]]},"135":{"position":[[17341,5]]},"142":{"position":[[19176,5]]}}}],["global",{"_index":1756,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3759,7]]},"74":{"position":[[8497,6]]},"75":{"position":[[1297,6],[1339,6],[1704,6],[1832,6],[2765,6],[2915,6],[3018,6],[3137,6],[9884,9],[22533,7],[22632,6],[22711,6],[25116,6],[27544,6],[30461,6],[31200,6],[31265,6],[31342,6],[31598,6],[32219,6],[32240,7],[38805,6],[39239,6]]},"80":{"position":[[9413,8]]},"136":{"position":[[7340,9]]}}}],["global_config",{"_index":2507,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31327,13]]}}}],["global_err_ipl",{"_index":2513,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31582,14]]}}}],["global_interrupt",{"_index":2505,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31246,17]]}}}],["gnu",{"_index":1766,"t":{},"d":{},"k":{},"b":{"71":{"position":[[4252,3]]}}}],["goal",{"_index":8325,"t":{},"d":{},"k":{},"b":{"151":{"position":[[2409,4]]}}}],["goe",{"_index":7755,"t":{},"d":{},"k":{},"b":{"144":{"position":[[12992,4],[13034,4]]}}}],["good",{"_index":8315,"t":{},"d":{},"k":{},"b":{"151":{"position":[[639,4]]}}}],["gp",{"_index":2896,"t":{},"d":{},"k":{},"b":{"78":{"position":[[1010,5],[4696,6]]}}}],["gp_src",{"_index":8181,"t":{},"d":{},"k":{},"b":{"150":{"position":[[7396,6],[7855,7],[8141,7],[8475,7]]}}}],["gpio",{"_index":4402,"t":{},"d":{},"k":{},"b":{"91":{"position":[[2225,4],[2280,4]]},"92":{"position":[[2267,4]]},"93":{"position":[[1035,4]]},"140":{"position":[[6542,4]]}}}],["gpio_irq1_irqn",{"_index":4378,"t":{},"d":{},"k":{},"b":{"89":{"position":[[3889,15]]}}}],["gpioint",{"_index":4410,"t":{},"d":{},"k":{},"b":{"91":{"position":[[3699,8],[5576,7],[5585,7],[5794,7]]}}}],["gpt",{"_index":655,"t":{"108":{"position":[[68,3]]}},"d":{},"k":{},"b":{"68":{"position":[[1677,5],[6658,5],[10856,4],[12988,3]]},"69":{"position":[[1531,5],[9981,3]]},"71":{"position":[[34250,4],[34817,4]]},"76":{"position":[[6909,3],[7138,3]]},"80":{"position":[[1993,5]]},"83":{"position":[[1591,3],[1677,3],[1856,3],[1989,3],[2974,3],[3395,5],[3491,3],[3534,3],[3644,3],[3726,3],[3824,3],[3867,3],[3978,3],[4001,3],[4063,3],[4884,3],[5012,3],[12454,3],[15227,3],[16123,3],[16581,3],[17213,3],[17499,3],[17782,3],[18008,3],[18416,3],[18602,3],[18959,3],[18985,3],[19143,3],[19230,3],[19375,3],[19399,3],[19525,3],[19555,3],[19665,3],[19673,3],[20441,3],[20505,3],[20837,3],[21125,3],[21169,3],[21974,3],[22032,3],[23517,3],[25033,3],[26321,3],[26393,3],[26510,3],[27032,3],[28942,3],[29178,3],[30261,3],[30306,4],[30370,3],[30431,3],[33067,3],[38280,3],[39578,3],[39650,3],[39722,3],[39794,3],[41044,3],[41152,3],[46586,3],[46755,3],[50529,3]]},"84":{"position":[[1779,5],[1869,3],[1912,3],[1990,3],[2072,3],[2134,3]]},"108":{"position":[[707,3],[803,3],[871,3],[997,3],[1070,3],[1501,3],[1605,3],[2652,3],[3068,3],[3658,3],[4161,3],[4229,3],[8106,3]]},"109":{"position":[[63,4],[136,3],[185,3],[270,3],[2120,3],[4381,3],[4699,3],[6043,3],[6112,3],[6204,3],[6263,4],[6314,3],[6406,3],[6501,3],[6748,3],[6924,3],[7004,3],[7024,3],[7087,3],[7160,3],[7238,3],[7316,3],[7394,3],[7472,3],[7550,3],[7773,3],[7865,3]]},"115":{"position":[[1185,4]]},"122":{"position":[[215,3],[573,3]]},"146":{"position":[[13035,3]]},"152":{"position":[[5736,3],[6081,3],[7546,3]]}}}],["gpt0",{"_index":3509,"t":{},"d":{},"k":{},"b":{"83":{"position":[[36826,4],[36889,4],[36952,4],[37015,4],[37078,4],[37141,4],[37204,4],[37267,4]]}}}],["gpt0.gtadtra",{"_index":892,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20620,13],[21135,12]]}}}],["gpt0.gtadtrb",{"_index":894,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20684,13],[21151,13]]}}}],["gpt00",{"_index":3118,"t":{},"d":{},"k":{},"b":{"80":{"position":[[1592,5]]}}}],["gpt00.gtadtra",{"_index":1170,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24088,14],[26248,13]]}}}],["gpt00.gtadtrb",{"_index":1172,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24155,14],[26284,14]]}}}],["gpt01.gtadtra",{"_index":1174,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24222,14],[26355,13]]}}}],["gpt01.gtadtrb",{"_index":1176,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24289,14],[26391,14]]}}}],["gpt02.gtadtra",{"_index":1178,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24356,14],[26462,13]]}}}],["gpt02.gtadtrb",{"_index":1180,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24423,14],[26498,14]]}}}],["gpt03.gtadtra",{"_index":1182,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24490,14],[26569,13]]}}}],["gpt03.gtadtrb",{"_index":1184,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24557,14],[26605,14]]}}}],["gpt04.gtadtra",{"_index":1186,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24624,14],[26676,13]]}}}],["gpt04.gtadtrb",{"_index":1188,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24691,14],[26712,14]]}}}],["gpt05.gtadtra",{"_index":1190,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24758,14],[26783,13]]}}}],["gpt05.gtadtrb",{"_index":1192,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24825,14],[26819,14]]}}}],["gpt06.gtadtra",{"_index":1194,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24892,14],[26890,13]]}}}],["gpt06.gtadtrb",{"_index":1196,"t":{},"d":{},"k":{},"b":{"69":{"position":[[24959,14],[26926,14]]}}}],["gpt07.gtadtra",{"_index":1198,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25026,14],[26997,13]]}}}],["gpt07.gtadtrb",{"_index":1200,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25093,14],[27033,14]]}}}],["gpt08.gtadtra",{"_index":1202,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25160,14],[27104,13]]}}}],["gpt08.gtadtrb",{"_index":1204,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25227,14],[27140,14]]}}}],["gpt09.gtadtra",{"_index":1206,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25294,14],[27211,13]]}}}],["gpt09.gtadtrb",{"_index":1208,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25361,14],[27247,14]]}}}],["gpt1",{"_index":3523,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37330,4],[37393,4],[37456,4],[37519,4],[37582,4],[37645,4],[37708,4],[37771,4]]}}}],["gpt1.gtadtra",{"_index":896,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20748,13],[21218,12]]}}}],["gpt1.gtadtrb",{"_index":898,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20812,13],[21234,13]]}}}],["gpt10.gtadtra",{"_index":1210,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25429,14],[27320,13]]}}}],["gpt10.gtadtrb",{"_index":1212,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25497,14],[27356,14]]}}}],["gpt11.gtadtra",{"_index":1214,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25565,14],[27429,13]]}}}],["gpt11.gtadtrb",{"_index":1216,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25633,14],[27465,14]]}}}],["gpt12.gtadtra",{"_index":1218,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25701,14],[27538,13]]}}}],["gpt12.gtadtrb",{"_index":1220,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25769,14],[27574,14]]}}}],["gpt13.gtadtra",{"_index":1222,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25837,14],[27647,13]]}}}],["gpt13.gtadtrb",{"_index":1224,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25905,14],[27683,14]]}}}],["gpt14.gtadtra",{"_index":1226,"t":{},"d":{},"k":{},"b":{"69":{"position":[[25973,14],[27756,13]]}}}],["gpt14.gtadtrb",{"_index":1228,"t":{},"d":{},"k":{},"b":{"69":{"position":[[26041,14],[27792,14]]}}}],["gpt15.gtadtra",{"_index":1230,"t":{},"d":{},"k":{},"b":{"69":{"position":[[26109,14],[27865,13]]}}}],["gpt15.gtadtrb",{"_index":1232,"t":{},"d":{},"k":{},"b":{"69":{"position":[[26177,14],[27901,14]]}}}],["gpt2.gtadtra",{"_index":900,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20876,13],[21301,12]]}}}],["gpt2.gtadtrb",{"_index":902,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20940,13],[21317,13]]}}}],["gpt3.gtadtra",{"_index":904,"t":{},"d":{},"k":{},"b":{"68":{"position":[[21004,13],[21384,12]]}}}],["gpt3.gtadtrb",{"_index":906,"t":{},"d":{},"k":{},"b":{"68":{"position":[[21068,13],[21400,13]]}}}],["gpt_adc_compare_match_adc_b",{"_index":3563,"t":{},"d":{},"k":{},"b":{"83":{"position":[[41081,27]]}}}],["gpt_adc_compare_match_t",{"_index":3281,"t":{},"d":{},"k":{},"b":{"83":{"position":[[1029,23],[27913,23],[40821,23],[40879,23],[55154,23]]}}}],["gpt_adc_start_request_exampl",{"_index":3397,"t":{},"d":{},"k":{},"b":{"83":{"position":[[26601,29]]}}}],["gpt_adc_trigger_down_count_start_adc_a",{"_index":3545,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38935,38]]}}}],["gpt_adc_trigger_down_count_start_adc_b",{"_index":3548,"t":{},"d":{},"k":{},"b":{"83":{"position":[[39249,38]]}}}],["gpt_adc_trigger_t",{"_index":3412,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27802,17],[29296,17],[38583,17],[38635,17]]}}}],["gpt_adc_trigger_up_count_start_adc_a",{"_index":3544,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38780,36]]}}}],["gpt_adc_trigger_up_count_start_adc_b",{"_index":3546,"t":{},"d":{},"k":{},"b":{"83":{"position":[[39094,36]]}}}],["gpt_basic_exampl",{"_index":3367,"t":{},"d":{},"k":{},"b":{"83":{"position":[[20533,17]]}}}],["gpt_buffer_force_push",{"_index":3408,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27694,21],[32617,21],[32673,21]]}}}],["gpt_buffer_mode_doubl",{"_index":3582,"t":{},"d":{},"k":{},"b":{"83":{"position":[[43117,22]]}}}],["gpt_buffer_mode_t",{"_index":3419,"t":{},"d":{},"k":{},"b":{"83":{"position":[[28053,17],[42958,17],[43010,17]]}}}],["gpt_callback",{"_index":7903,"t":{},"d":{},"k":{},"b":{"146":{"position":[[11523,12]]}}}],["gpt_capture_exampl",{"_index":3379,"t":{},"d":{},"k":{},"b":{"83":{"position":[[23090,19]]}}}],["gpt_capture_filter_clock_source_div_1",{"_index":3533,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38352,37]]}}}],["gpt_capture_filter_clock_source_div_16",{"_index":3538,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38462,38]]}}}],["gpt_capture_filter_clock_source_div_4",{"_index":3536,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38415,37]]}}}],["gpt_capture_filter_clock_source_div_64",{"_index":3540,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38511,38]]}}}],["gpt_capture_filter_t",{"_index":3411,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27772,20],[31235,20],[31282,20],[37796,20],[37851,20]]}}}],["gpt_cfg_output_support_en",{"_index":3625,"t":{},"d":{},"k":{},"b":{"83":{"position":[[47323,29]]}}}],["gpt_counter_exampl",{"_index":3371,"t":{},"d":{},"k":{},"b":{"83":{"position":[[21283,19]]}}}],["gpt_duty_cycle_calculation_exampl",{"_index":3393,"t":{},"d":{},"k":{},"b":{"83":{"position":[[25297,34]]}}}],["gpt_example_desired_duty_cycle_perc",{"_index":3390,"t":{},"d":{},"k":{},"b":{"83":{"position":[[25115,38],[26088,39]]}}}],["gpt_example_desired_period_msec",{"_index":3383,"t":{},"d":{},"k":{},"b":{"83":{"position":[[23640,31],[24855,32]]}}}],["gpt_example_max_perc",{"_index":3392,"t":{},"d":{},"k":{},"b":{"83":{"position":[[25169,23],[26149,25]]}}}],["gpt_example_msec_per_sec",{"_index":3382,"t":{},"d":{},"k":{},"b":{"83":{"position":[[23591,24],[24890,26]]}}}],["gpt_extended_cfg_t",{"_index":3407,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27630,18],[30170,18],[30225,18],[46808,18]]}}}],["gpt_extended_pwm_cfg_t",{"_index":3406,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27597,22],[28843,22],[28902,22],[31656,22]]}}}],["gpt_extended_pwm_cfg_t::adc_a_compare_match",{"_index":3399,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27148,43],[38888,44],[39047,44]]}}}],["gpt_extended_pwm_cfg_t::adc_b_compare_match",{"_index":3547,"t":{},"d":{},"k":{},"b":{"83":{"position":[[39202,44],[39361,44]]}}}],["gpt_extended_pwm_cfg_t::adc_trigg",{"_index":3398,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27054,35]]}}}],["gpt_gtioc_disable_level_high",{"_index":3561,"t":{},"d":{},"k":{},"b":{"83":{"position":[[40737,28]]}}}],["gpt_gtioc_disable_level_low",{"_index":3560,"t":{},"d":{},"k":{},"b":{"83":{"position":[[40662,27]]}}}],["gpt_gtioc_disable_set_hi_z",{"_index":3558,"t":{},"d":{},"k":{},"b":{"83":{"position":[[40580,26]]}}}],["gpt_gtioc_disable_t",{"_index":3415,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27884,19],[29958,19],[30061,19],[40379,19],[40433,19]]}}}],["gpt_gtior_setting_t",{"_index":3404,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27537,19],[28476,19],[28532,19],[31735,19]]}}}],["gpt_instance_ctrl_t",{"_index":3405,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27567,19],[28645,19],[28701,19]]},"144":{"position":[[10535,19]]}}}],["gpt_interrupt_skip_adc_a",{"_index":3578,"t":{},"d":{},"k":{},"b":{"83":{"position":[[42801,24]]}}}],["gpt_interrupt_skip_adc_a_and_b",{"_index":3580,"t":{},"d":{},"k":{},"b":{"83":{"position":[[42893,30]]}}}],["gpt_interrupt_skip_adc_b",{"_index":3579,"t":{},"d":{},"k":{},"b":{"83":{"position":[[42847,24]]}}}],["gpt_interrupt_skip_adc_t",{"_index":3418,"t":{},"d":{},"k":{},"b":{"83":{"position":[[28019,24],[29855,24],[42589,24],[42648,24]]}}}],["gpt_interrupt_skip_count_1",{"_index":3569,"t":{},"d":{},"k":{},"b":{"83":{"position":[[42227,26]]}}}],["gpt_interrupt_skip_count_2",{"_index":3570,"t":{},"d":{},"k":{},"b":{"83":{"position":[[42276,26]]}}}],["gpt_interrupt_skip_count_3",{"_index":3571,"t":{},"d":{},"k":{},"b":{"83":{"position":[[42326,26]]}}}],["gpt_interrupt_skip_count_4",{"_index":3572,"t":{},"d":{},"k":{},"b":{"83":{"position":[[42378,26]]}}}],["gpt_interrupt_skip_count_5",{"_index":3573,"t":{},"d":{},"k":{},"b":{"83":{"position":[[42429,26]]}}}],["gpt_interrupt_skip_count_6",{"_index":3574,"t":{},"d":{},"k":{},"b":{"83":{"position":[[42480,26]]}}}],["gpt_interrupt_skip_count_7",{"_index":3576,"t":{},"d":{},"k":{},"b":{"83":{"position":[[42530,26]]}}}],["gpt_interrupt_skip_count_t",{"_index":3417,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27983,26],[29758,26],[41634,27],[41891,27],[42013,26],[42074,26]]}}}],["gpt_interrupt_skip_source_crest",{"_index":3566,"t":{},"d":{},"k":{},"b":{"83":{"position":[[41494,31]]}}}],["gpt_interrupt_skip_source_overflow_underflow",{"_index":3565,"t":{},"d":{},"k":{},"b":{"83":{"position":[[41397,44]]}}}],["gpt_interrupt_skip_source_t",{"_index":3416,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27946,27],[29654,27],[41196,27],[41258,27]]}}}],["gpt_interrupt_skip_source_trough",{"_index":3567,"t":{},"d":{},"k":{},"b":{"83":{"position":[[41749,32]]}}}],["gpt_io_pin_crest",{"_index":3460,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32250,16],[51937,16]]}}}],["gpt_io_pin_gtioca",{"_index":3629,"t":{},"d":{},"k":{},"b":{"83":{"position":[[51590,17]]}}}],["gpt_io_pin_gtioca_and_gtiocb",{"_index":3458,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32110,28]]}}}],["gpt_io_pin_gtiocb",{"_index":3396,"t":{},"d":{},"k":{},"b":{"83":{"position":[[26278,19],[32082,17],[51611,17]]}}}],["gpt_io_pin_one_shot_leading_edg",{"_index":3461,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32339,32]]}}}],["gpt_io_pin_one_shot_trailing_edg",{"_index":3464,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32474,33]]}}}],["gpt_io_pin_t",{"_index":3278,"t":{},"d":{},"k":{},"b":{"83":{"position":[[871,12],[950,12],[27672,12],[31879,12],[31926,12],[51567,12],[51764,12],[54158,12],[54655,12]]}}}],["gpt_io_pin_trough",{"_index":3459,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32160,17]]}}}],["gpt_output_disable_dead_time_error",{"_index":3554,"t":{},"d":{},"k":{},"b":{"83":{"position":[[40063,34]]}}}],["gpt_output_disable_gtioca_gtiocb_high",{"_index":3555,"t":{},"d":{},"k":{},"b":{"83":{"position":[[40152,37]]}}}],["gpt_output_disable_gtioca_gtiocb_low",{"_index":3556,"t":{},"d":{},"k":{},"b":{"83":{"position":[[40263,36]]}}}],["gpt_output_disable_t",{"_index":3414,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27854,20],[29193,20],[39843,20],[39898,20]]}}}],["gpt_output_pin_t",{"_index":3403,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27510,16],[28184,16],[28237,16],[30326,16],[30387,16]]}}}],["gpt_period_calculation_exampl",{"_index":3384,"t":{},"d":{},"k":{},"b":{"83":{"position":[[23756,30]]}}}],["gpt_pin_level_high",{"_index":3473,"t":{},"d":{},"k":{},"b":{"83":{"position":[[33122,18]]}}}],["gpt_pin_level_t",{"_index":3409,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27725,15],[28397,15],[28451,16],[32975,15],[33025,15]]}}}],["gpt_poeg_link_poeg1",{"_index":3550,"t":{},"d":{},"k":{},"b":{"83":{"position":[[39620,19]]}}}],["gpt_poeg_link_poeg2",{"_index":3551,"t":{},"d":{},"k":{},"b":{"83":{"position":[[39692,19]]}}}],["gpt_poeg_link_poeg3",{"_index":3552,"t":{},"d":{},"k":{},"b":{"83":{"position":[[39764,19]]}}}],["gpt_poeg_link_t",{"_index":3413,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27829,15],[29091,15],[39415,15],[39465,15]]}}}],["gpt_pwm_output_delay_edge_fal",{"_index":3620,"t":{},"d":{},"k":{},"b":{"83":{"position":[[46088,33]]}}}],["gpt_pwm_output_delay_edge_t",{"_index":3285,"t":{},"d":{},"k":{},"b":{"83":{"position":[[1169,27],[28120,27],[45830,27],[45892,27],[55795,27]]}}}],["gpt_pwm_output_delay_setting_10_32",{"_index":3596,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44076,34]]}}}],["gpt_pwm_output_delay_setting_11_32",{"_index":3597,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44152,34]]}}}],["gpt_pwm_output_delay_setting_12_32",{"_index":3598,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44228,34]]}}}],["gpt_pwm_output_delay_setting_13_32",{"_index":3599,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44304,34]]}}}],["gpt_pwm_output_delay_setting_14_32",{"_index":3600,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44380,34]]}}}],["gpt_pwm_output_delay_setting_15_32",{"_index":3601,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44456,34]]}}}],["gpt_pwm_output_delay_setting_16_32",{"_index":3602,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44532,34]]}}}],["gpt_pwm_output_delay_setting_17_32",{"_index":3603,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44608,34]]}}}],["gpt_pwm_output_delay_setting_18_32",{"_index":3604,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44684,34]]}}}],["gpt_pwm_output_delay_setting_19_32",{"_index":3605,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44760,34]]}}}],["gpt_pwm_output_delay_setting_1_32",{"_index":3586,"t":{},"d":{},"k":{},"b":{"83":{"position":[[43410,33]]}}}],["gpt_pwm_output_delay_setting_20_32",{"_index":3606,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44836,34]]}}}],["gpt_pwm_output_delay_setting_21_32",{"_index":3607,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44912,34]]}}}],["gpt_pwm_output_delay_setting_22_32",{"_index":3608,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44988,34]]}}}],["gpt_pwm_output_delay_setting_23_32",{"_index":3609,"t":{},"d":{},"k":{},"b":{"83":{"position":[[45064,34]]}}}],["gpt_pwm_output_delay_setting_24_32",{"_index":3610,"t":{},"d":{},"k":{},"b":{"83":{"position":[[45140,34]]}}}],["gpt_pwm_output_delay_setting_25_32",{"_index":3611,"t":{},"d":{},"k":{},"b":{"83":{"position":[[45216,34]]}}}],["gpt_pwm_output_delay_setting_26_32",{"_index":3612,"t":{},"d":{},"k":{},"b":{"83":{"position":[[45292,34]]}}}],["gpt_pwm_output_delay_setting_27_32",{"_index":3613,"t":{},"d":{},"k":{},"b":{"83":{"position":[[45368,34]]}}}],["gpt_pwm_output_delay_setting_28_32",{"_index":3614,"t":{},"d":{},"k":{},"b":{"83":{"position":[[45444,34]]}}}],["gpt_pwm_output_delay_setting_29_32",{"_index":3615,"t":{},"d":{},"k":{},"b":{"83":{"position":[[45520,34]]}}}],["gpt_pwm_output_delay_setting_2_32",{"_index":3588,"t":{},"d":{},"k":{},"b":{"83":{"position":[[43484,33]]}}}],["gpt_pwm_output_delay_setting_30_32",{"_index":3616,"t":{},"d":{},"k":{},"b":{"83":{"position":[[45596,34]]}}}],["gpt_pwm_output_delay_setting_31_32",{"_index":3617,"t":{},"d":{},"k":{},"b":{"83":{"position":[[45672,34]]}}}],["gpt_pwm_output_delay_setting_3_32",{"_index":3589,"t":{},"d":{},"k":{},"b":{"83":{"position":[[43558,33]]}}}],["gpt_pwm_output_delay_setting_4_32",{"_index":3590,"t":{},"d":{},"k":{},"b":{"83":{"position":[[43632,33]]}}}],["gpt_pwm_output_delay_setting_5_32",{"_index":3591,"t":{},"d":{},"k":{},"b":{"83":{"position":[[43706,33]]}}}],["gpt_pwm_output_delay_setting_6_32",{"_index":3592,"t":{},"d":{},"k":{},"b":{"83":{"position":[[43780,33]]}}}],["gpt_pwm_output_delay_setting_7_32",{"_index":3593,"t":{},"d":{},"k":{},"b":{"83":{"position":[[43854,33]]}}}],["gpt_pwm_output_delay_setting_8_32",{"_index":3594,"t":{},"d":{},"k":{},"b":{"83":{"position":[[43928,33]]}}}],["gpt_pwm_output_delay_setting_9_32",{"_index":3595,"t":{},"d":{},"k":{},"b":{"83":{"position":[[44002,33]]}}}],["gpt_pwm_output_delay_setting_bypass",{"_index":3618,"t":{},"d":{},"k":{},"b":{"83":{"position":[[45748,35]]}}}],["gpt_pwm_output_delay_setting_t",{"_index":3286,"t":{},"d":{},"k":{},"b":{"83":{"position":[[1203,30],[28080,30],[43169,30],[43234,30],[55891,30]]}}}],["gpt_source_gpt0_act0",{"_index":3508,"t":{},"d":{},"k":{},"b":{"83":{"position":[[36781,20]]}}}],["gpt_source_gpt0_act1",{"_index":3510,"t":{},"d":{},"k":{},"b":{"83":{"position":[[36844,20]]}}}],["gpt_source_gpt0_act2",{"_index":3511,"t":{},"d":{},"k":{},"b":{"83":{"position":[[36907,20]]}}}],["gpt_source_gpt0_act3",{"_index":3512,"t":{},"d":{},"k":{},"b":{"83":{"position":[[36970,20]]}}}],["gpt_source_gpt0_act4",{"_index":3514,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37033,20]]}}}],["gpt_source_gpt0_act5",{"_index":3516,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37096,20]]}}}],["gpt_source_gpt0_act6",{"_index":3518,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37159,20]]}}}],["gpt_source_gpt0_act7",{"_index":3520,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37222,20]]}}}],["gpt_source_gpt1_act0",{"_index":3522,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37285,20]]}}}],["gpt_source_gpt1_act1",{"_index":3524,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37348,20]]}}}],["gpt_source_gpt1_act2",{"_index":3525,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37411,20]]}}}],["gpt_source_gpt1_act3",{"_index":3526,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37474,20]]}}}],["gpt_source_gpt1_act4",{"_index":3527,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37537,20]]}}}],["gpt_source_gpt1_act5",{"_index":3528,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37600,20]]}}}],["gpt_source_gpt1_act6",{"_index":3529,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37663,20]]}}}],["gpt_source_gpt1_act7",{"_index":3530,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37726,20]]}}}],["gpt_source_gpt_",{"_index":3500,"t":{},"d":{},"k":{},"b":{"83":{"position":[[35098,16]]}}}],["gpt_source_gpt_a",{"_index":3492,"t":{},"d":{},"k":{},"b":{"83":{"position":[[34878,16]]}}}],["gpt_source_gpt_b",{"_index":3494,"t":{},"d":{},"k":{},"b":{"83":{"position":[[34933,16]]}}}],["gpt_source_gpt_c",{"_index":3496,"t":{},"d":{},"k":{},"b":{"83":{"position":[[34988,16]]}}}],["gpt_source_gpt_d",{"_index":3498,"t":{},"d":{},"k":{},"b":{"83":{"position":[[35043,16]]}}}],["gpt_source_gpt_f",{"_index":3502,"t":{},"d":{},"k":{},"b":{"83":{"position":[[35153,16]]}}}],["gpt_source_gpt_g",{"_index":3504,"t":{},"d":{},"k":{},"b":{"83":{"position":[[35208,16]]}}}],["gpt_source_gpt_h",{"_index":3506,"t":{},"d":{},"k":{},"b":{"83":{"position":[[35263,16]]}}}],["gpt_source_gtetrga_fal",{"_index":3477,"t":{},"d":{},"k":{},"b":{"83":{"position":[[33527,26],[35430,26]]}}}],["gpt_source_gtetrga_ris",{"_index":3476,"t":{},"d":{},"k":{},"b":{"83":{"position":[[33458,25],[35361,25]]}}}],["gpt_source_gtetrgb_fal",{"_index":3479,"t":{},"d":{},"k":{},"b":{"83":{"position":[[33667,26],[35570,26]]}}}],["gpt_source_gtetrgb_ris",{"_index":3478,"t":{},"d":{},"k":{},"b":{"83":{"position":[[33598,25],[35501,25]]}}}],["gpt_source_gtetrgc_fal",{"_index":3481,"t":{},"d":{},"k":{},"b":{"83":{"position":[[33807,26],[35710,26]]}}}],["gpt_source_gtetrgc_ris",{"_index":3480,"t":{},"d":{},"k":{},"b":{"83":{"position":[[33738,25],[35641,25]]}}}],["gpt_source_gtetrgd_fal",{"_index":3483,"t":{},"d":{},"k":{},"b":{"83":{"position":[[33947,26],[35850,26]]}}}],["gpt_source_gtetrgd_ris",{"_index":3482,"t":{},"d":{},"k":{},"b":{"83":{"position":[[33878,25],[35781,25]]}}}],["gpt_source_gtioca_falling_while_gtiocb_high",{"_index":3487,"t":{},"d":{},"k":{},"b":{"83":{"position":[[34339,43],[36242,43]]}}}],["gpt_source_gtioca_falling_while_gtiocb_low",{"_index":3486,"t":{},"d":{},"k":{},"b":{"83":{"position":[[34232,42],[36135,42]]}}}],["gpt_source_gtioca_rising_while_gtiocb_high",{"_index":3485,"t":{},"d":{},"k":{},"b":{"83":{"position":[[34124,42],[36027,42]]}}}],["gpt_source_gtioca_rising_while_gtiocb_low",{"_index":3484,"t":{},"d":{},"k":{},"b":{"83":{"position":[[34018,41],[35921,41]]}}}],["gpt_source_gtiocb_falling_while_gtioca_high",{"_index":3491,"t":{},"d":{},"k":{},"b":{"83":{"position":[[34769,43],[36672,43]]}}}],["gpt_source_gtiocb_falling_while_gtioca_low",{"_index":3490,"t":{},"d":{},"k":{},"b":{"83":{"position":[[34662,42],[36565,42]]}}}],["gpt_source_gtiocb_rising_while_gtioca_high",{"_index":3489,"t":{},"d":{},"k":{},"b":{"83":{"position":[[34554,42],[36457,42]]}}}],["gpt_source_gtiocb_rising_while_gtioca_low",{"_index":3488,"t":{},"d":{},"k":{},"b":{"83":{"position":[[34448,41],[36351,41]]}}}],["gpt_source_non",{"_index":3443,"t":{},"d":{},"k":{},"b":{"83":{"position":[[30917,15],[31118,15],[35318,15]]}}}],["gpt_source_t",{"_index":3410,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27750,12],[30448,12],[30525,12],[30600,12],[30677,12],[30757,12],[30837,12],[31034,12],[33166,12],[33213,12]]}}}],["gpta",{"_index":3493,"t":{},"d":{},"k":{},"b":{"83":{"position":[[34919,4]]}}}],["gptb",{"_index":3495,"t":{},"d":{},"k":{},"b":{"83":{"position":[[34974,4]]}}}],["gptc",{"_index":3497,"t":{},"d":{},"k":{},"b":{"83":{"position":[[35029,4]]}}}],["gptd",{"_index":3499,"t":{},"d":{},"k":{},"b":{"83":{"position":[[35084,4]]}}}],["gpte",{"_index":3501,"t":{},"d":{},"k":{},"b":{"83":{"position":[[35139,4]]}}}],["gptf",{"_index":3503,"t":{},"d":{},"k":{},"b":{"83":{"position":[[35194,4]]}}}],["gptg",{"_index":3505,"t":{},"d":{},"k":{},"b":{"83":{"position":[[35249,4]]}}}],["gpth",{"_index":3507,"t":{},"d":{},"k":{},"b":{"83":{"position":[[35304,4]]}}}],["gptn",{"_index":3349,"t":{},"d":{},"k":{},"b":{"83":{"position":[[13654,4],[13889,4]]}}}],["grant",{"_index":38,"t":{},"d":{},"k":{},"b":{"0":{"position":[[566,7]]}}}],["greater",{"_index":986,"t":{},"d":{},"k":{},"b":{"69":{"position":[[4599,7],[5491,7]]},"75":{"position":[[12212,7]]},"88":{"position":[[7798,7],[7967,7],[8155,7],[8356,7],[8552,7],[8721,7],[8909,7],[9110,7],[9296,7],[9463,7],[9628,7],[9793,7],[10524,7],[12767,7],[14432,7],[14594,7],[14780,7],[51351,7]]},"105":{"position":[[32913,7]]},"124":{"position":[[4703,7],[6183,7]]},"128":{"position":[[2955,7],[3739,7],[4065,7],[4593,7],[7294,7],[7642,7],[8933,7],[11688,7],[25695,7],[27072,7],[27263,7],[27451,7]]},"135":{"position":[[3130,7]]},"138":{"position":[[13511,7]]},"139":{"position":[[3176,7],[5038,7],[5298,7]]},"140":{"position":[[2924,7]]},"142":{"position":[[5190,7]]},"150":{"position":[[4196,7],[4514,7],[4845,7]]}}}],["greatli",{"_index":6168,"t":{},"d":{},"k":{},"b":{"128":{"position":[[5268,7]]}}}],["group",{"_index":236,"t":{},"d":{},"k":{},"b":{"67":{"position":[[175,5],[1656,5],[2994,5],[3106,5],[3165,5],[3277,5],[3342,5],[5692,7],[6592,5],[6846,6],[12441,6],[13332,5],[13465,5],[13693,5],[13750,5],[15706,5],[15735,5],[15764,5],[15793,5],[15822,5],[15851,5],[15880,5],[15909,5],[15938,5],[16075,5],[16122,5],[16155,5],[16188,5],[16221,5],[16254,5],[16287,5],[16320,5],[16353,5],[16386,5],[16425,7]]},"69":{"position":[[1769,5],[1805,7],[1818,5],[1830,5],[1842,5],[2952,5],[3148,5],[3349,5],[3360,5],[3411,5],[3525,5],[3560,5],[3674,5],[3709,5],[3776,5],[3802,5],[3837,5],[3951,5],[6594,5],[6652,5],[6671,5],[6781,5],[6839,5],[6858,5],[6968,5],[7026,5],[7509,5],[7539,5],[7557,5],[7596,5],[7608,5],[7617,5],[7629,5],[7662,5],[7674,5],[7742,5],[7754,5],[7793,5],[7805,5],[7874,5],[7886,5],[7967,5],[7979,5],[8031,5],[8070,5],[8082,5],[8120,5],[8157,5],[8203,5],[8251,5],[8294,5],[8775,5],[8846,5],[8889,5],[8967,5],[9028,5],[9099,5],[9142,5],[9220,5],[9473,5],[9726,5],[9792,5],[9801,5],[9810,5],[9829,5],[9838,5],[10349,5],[11352,5],[11368,5],[11442,6],[11530,5],[11565,5],[11594,5],[11604,5],[11614,5],[11626,5],[11673,5],[11712,5],[11733,5],[11772,5],[11813,5],[11852,5],[11873,5],[11905,5],[11944,5],[11996,5],[12035,5],[12056,5],[12095,5],[12458,5],[12547,5],[12673,5],[19235,5],[19274,5],[19438,5],[19523,5],[19591,5],[19617,5],[19702,5],[21024,5],[21078,5],[21268,5],[22948,5],[22967,5],[23038,5],[23055,5],[23103,5],[23142,5],[23154,5],[23196,5],[23208,5],[23281,5],[23293,5],[23397,5],[23409,5],[23485,5],[23497,5],[23611,5],[23623,5],[23745,5],[23757,5],[31358,5],[31398,5],[31440,5]]},"71":{"position":[[1337,5],[3133,5],[3150,5],[36225,5],[46952,5]]},"80":{"position":[[2041,5]]},"92":{"position":[[1675,5],[3262,5],[3347,5],[3373,5],[3472,5],[3498,5],[3584,5],[3738,5],[3823,5],[3849,5],[3948,5],[3974,5],[4060,5],[4213,5],[4318,5],[4423,5],[4528,5],[4633,5],[4738,5],[4843,5],[4948,5],[5053,5],[5137,5],[5162,5],[5225,5],[5261,5],[5360,5],[5385,5],[5480,5],[5505,5],[5646,5],[5751,5],[5856,5],[5961,5],[6066,5],[6171,5],[6276,5],[6381,5],[6486,5],[6570,5],[6595,5],[6658,5],[6694,5],[6793,5],[6818,5],[6913,5],[6938,5],[10619,5],[10831,5],[10877,5],[11153,6],[11358,5],[12515,6],[12577,5],[17775,5],[17913,6],[17971,5],[18121,5],[18274,6],[18487,6],[18857,5],[18963,5],[25473,5],[25594,6],[25657,6],[25720,6],[25783,6],[25846,6],[25909,6],[25972,6],[26035,6],[26098,6],[26234,5],[26730,5],[28056,6],[28164,6]]},"105":{"position":[[9433,5],[9564,5],[9730,5],[9896,5],[10077,5],[10208,5],[10373,5],[10538,5]]},"135":{"position":[[5583,6]]},"139":{"position":[[7232,6]]},"140":{"position":[[6130,6]]}}}],["group_a",{"_index":1256,"t":{},"d":{},"k":{},"b":{"69":{"position":[[28939,7]]}}}],["group_abc",{"_index":1265,"t":{},"d":{},"k":{},"b":{"69":{"position":[[29109,9]]}}}],["group_b",{"_index":1262,"t":{},"d":{},"k":{},"b":{"69":{"position":[[29022,7]]}}}],["group_c",{"_index":1268,"t":{},"d":{},"k":{},"b":{"69":{"position":[[29194,7]]}}}],["group_id",{"_index":640,"t":{},"d":{},"k":{},"b":{"68":{"position":[[366,9],[25899,8]]},"69":{"position":[[366,9],[32887,8]]},"146":{"position":[[293,9],[18889,8]]}}}],["group_mask",{"_index":299,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1644,10],[4088,11],[6548,11]]}}}],["groupperipher",{"_index":6796,"t":{},"d":{},"k":{},"b":{"135":{"position":[[5596,15]]},"139":{"position":[[7245,15]]},"140":{"position":[[6143,15]]}}}],["gtccrc",{"_index":3462,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32406,6]]}}}],["gtccrd",{"_index":3465,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32542,6]]}}}],["gtccre",{"_index":3463,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32417,6]]}}}],["gtccrf",{"_index":3466,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32553,6]]}}}],["gtccrn",{"_index":3470,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32884,6]]}}}],["gtclk",{"_index":3587,"t":{},"d":{},"k":{},"b":{"83":{"position":[[43460,5],[43534,5],[43608,5],[43682,5],[43756,5],[43830,5],[43904,5],[43978,5],[44052,5],[44128,5],[44204,5],[44280,5],[44356,5],[44432,5],[44508,5],[44584,5],[44660,5],[44736,5],[44812,5],[44888,5],[44964,5],[45040,5],[45116,5],[45192,5],[45268,5],[45344,5],[45420,5],[45496,5],[45572,5],[45648,5],[45724,5]]}}}],["gtetrg",{"_index":3294,"t":{},"d":{},"k":{},"b":{"83":{"position":[[2112,6],[2718,6],[18534,6],[18968,6],[19067,6],[19113,6],[19158,6],[19303,6],[21408,6],[21448,7]]},"108":{"position":[[828,6],[2057,6],[2138,6],[2169,6],[2217,6],[2375,6],[2406,6],[3103,6],[3169,6]]},"109":{"position":[[1287,6],[1358,6],[6139,6],[6544,6],[6944,6],[7703,6],[7795,6],[7887,6],[8028,6],[8289,6]]}}}],["gtetrga",{"_index":3355,"t":{},"d":{},"k":{},"b":{"83":{"position":[[15412,8],[33504,7],[33574,7],[35407,7],[35477,7],[39608,9]]},"108":{"position":[[3000,8],[3221,7]]},"109":{"position":[[1504,8]]}}}],["gtetrgb",{"_index":3356,"t":{},"d":{},"k":{},"b":{"83":{"position":[[15421,8],[33644,7],[33714,7],[33924,7],[33994,7],[35547,7],[35617,7],[35827,7],[35897,7],[39680,9]]},"108":{"position":[[3009,8],[3263,7]]},"109":{"position":[[1518,8]]}}}],["gtetrgc",{"_index":3357,"t":{},"d":{},"k":{},"b":{"83":{"position":[[15430,8],[33784,7],[33854,7],[35687,7],[35757,7],[39752,9]]},"108":{"position":[[3018,8]]}}}],["gtetrgd",{"_index":3358,"t":{},"d":{},"k":{},"b":{"83":{"position":[[15439,8],[39824,9]]},"108":{"position":[[3030,7]]}}}],["gtioa",{"_index":3328,"t":{},"d":{},"k":{},"b":{"83":{"position":[[7008,5],[7153,5],[7344,5],[7543,5]]}}}],["gtiob",{"_index":3331,"t":{},"d":{},"k":{},"b":{"83":{"position":[[7708,5],[7853,5],[8044,5],[8243,5]]}}}],["gtioc",{"_index":3291,"t":{},"d":{},"k":{},"b":{"83":{"position":[[1820,5],[2127,5],[2184,5],[2733,5],[17254,5],[18562,5],[40496,5],[40611,5],[40694,5],[40770,5]]},"108":{"position":[[711,5],[892,5]]}}}],["gtioca",{"_index":3337,"t":{},"d":{},"k":{},"b":{"83":{"position":[[8663,6],[8726,6],[8754,6],[10617,7],[12552,6],[12582,6],[12707,6],[12834,7],[15448,6],[15509,6],[15596,6],[30027,6],[30344,6],[30747,7],[32072,7],[32139,6],[34082,6],[34189,6],[34297,6],[34405,6],[34537,6],[34644,6],[34752,6],[34860,6],[35985,6],[36092,6],[36200,6],[36308,6],[36440,6],[36547,6],[36655,6],[36763,6],[40216,6],[40326,6],[54274,6],[54772,6]]}}}],["gtioca_disable_set",{"_index":3436,"t":{},"d":{},"k":{},"b":{"83":{"position":[[29979,22]]}}}],["gtiocb",{"_index":3338,"t":{},"d":{},"k":{},"b":{"83":{"position":[[8894,6],[8957,6],[8985,6],[10788,7],[12563,6],[12593,6],[12878,6],[13005,7],[15459,6],[15520,6],[15607,6],[30130,6],[30405,6],[30827,7],[32100,7],[32150,7],[34107,6],[34214,6],[34322,6],[34430,6],[34512,6],[34619,6],[34727,6],[34835,6],[36010,6],[36117,6],[36225,6],[36333,6],[36415,6],[36522,6],[36630,6],[36738,6],[40227,6],[40337,6],[54288,7],[54786,7]]}}}],["gtiocb_disable_set",{"_index":3437,"t":{},"d":{},"k":{},"b":{"83":{"position":[[30082,22]]}}}],["gtiocx",{"_index":3315,"t":{},"d":{},"k":{},"b":{"83":{"position":[[4596,6]]}}}],["gtiocxa",{"_index":3329,"t":{},"d":{},"k":{},"b":{"83":{"position":[[7115,8],[7293,7],[7488,7],[28612,7],[31814,7],[37976,7]]}}}],["gtiocxb",{"_index":3332,"t":{},"d":{},"k":{},"b":{"83":{"position":[[7815,8],[7993,7],[8188,7],[28624,7],[31826,7],[37988,8]]}}}],["gtior",{"_index":3422,"t":{},"d":{},"k":{},"b":{"83":{"position":[[28576,5],[31778,5]]}}}],["gtior_set",{"_index":3455,"t":{},"d":{},"k":{},"b":{"83":{"position":[[31756,13]]}}}],["gtioxa",{"_index":3330,"t":{},"d":{},"k":{},"b":{"83":{"position":[[7633,6]]}}}],["gtioxb",{"_index":3333,"t":{},"d":{},"k":{},"b":{"83":{"position":[[8333,6]]}}}],["gtm",{"_index":3303,"t":{},"d":{},"k":{},"b":{"83":{"position":[[3423,6],[3495,3],[3585,3],[3678,3],[3791,3],[3828,3],[3919,3],[4015,3],[4128,3]]},"84":{"position":[[1011,3],[1098,3],[1641,3],[1807,6],[1873,3],[2019,3],[2086,3],[2199,3],[4232,3],[4313,3],[4720,3],[5556,3],[5972,3],[6036,3],[6374,3],[6662,3],[6706,3],[7318,3],[9289,3],[9449,3],[9719,3],[10942,3],[15352,3],[15407,3],[15523,3],[15640,3],[15747,4],[16411,4]]},"105":{"position":[[3458,6],[3525,3],[3673,3],[3754,3],[3868,3]]},"122":{"position":[[328,3]]},"128":{"position":[[29995,3]]},"152":{"position":[[5844,3]]}}}],["gtm_basic_exampl",{"_index":3670,"t":{},"d":{},"k":{},"b":{"84":{"position":[[6064,17]]}}}],["gtm_counter_exampl",{"_index":3674,"t":{},"d":{},"k":{},"b":{"84":{"position":[[6779,19]]}}}],["gtm_example_desired_period_msec",{"_index":3678,"t":{},"d":{},"k":{},"b":{"84":{"position":[[7444,31],[8630,32]]}}}],["gtm_example_msec_per_sec",{"_index":3677,"t":{},"d":{},"k":{},"b":{"84":{"position":[[7395,24],[8665,26]]}}}],["gtm_extended_cfg_t",{"_index":3684,"t":{},"d":{},"k":{},"b":{"84":{"position":[[8871,18],[9189,18],[9244,18],[15703,18]]}}}],["gtm_giws_type_en",{"_index":3688,"t":{},"d":{},"k":{},"b":{"84":{"position":[[9554,21]]}}}],["gtm_giws_type_t",{"_index":3685,"t":{},"d":{},"k":{},"b":{"84":{"position":[[8913,15],[9357,15],[9407,15]]}}}],["gtm_instance_ctrl_t",{"_index":3683,"t":{},"d":{},"k":{},"b":{"84":{"position":[[8841,19],[8991,19],[9047,19]]},"144":{"position":[[10555,19]]}}}],["gtm_period_calculation_exampl",{"_index":3679,"t":{},"d":{},"k":{},"b":{"84":{"position":[[7560,30]]}}}],["gtm_timer_mode_freerun",{"_index":3690,"t":{},"d":{},"k":{},"b":{"84":{"position":[[9805,22]]}}}],["gtm_timer_mode_t",{"_index":3686,"t":{},"d":{},"k":{},"b":{"84":{"position":[[8938,16],[9625,16],[9676,16]]}}}],["guarante",{"_index":2998,"t":{},"d":{},"k":{},"b":{"79":{"position":[[7599,11]]},"113":{"position":[[4057,11]]},"142":{"position":[[9181,10]]}}}],["guard",{"_index":2826,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1804,5]]},"136":{"position":[[4455,5]]},"138":{"position":[[2855,5]]},"139":{"position":[[2569,5]]},"141":{"position":[[1063,5]]},"142":{"position":[[2716,5]]}}}],["gui",{"_index":6196,"t":{},"d":{},"k":{},"b":{"128":{"position":[[9154,4]]}}}],["guid",{"_index":109,"t":{},"d":{},"k":{},"b":{"1":{"position":[[127,5]]},"83":{"position":[[19761,5]]},"116":{"position":[[465,5],[490,5]]},"151":{"position":[[557,5],[1203,5],[1723,5]]}}}],["h",{"_index":3521,"t":{},"d":{},"k":{},"b":{"83":{"position":[[37272,3],[37776,3]]},"128":{"position":[[17865,2]]}}}],["h(0",{"_index":5175,"t":{},"d":{},"k":{},"b":{"106":{"position":[[6452,4],[8850,4]]}}}],["h(0)valu",{"_index":5173,"t":{},"d":{},"k":{},"b":{"106":{"position":[[6347,9],[8748,9]]}}}],["h(1",{"_index":5178,"t":{},"d":{},"k":{},"b":{"106":{"position":[[6627,4],[9003,4]]}}}],["h(1)valu",{"_index":5176,"t":{},"d":{},"k":{},"b":{"106":{"position":[[6522,9],[8901,9]]}}}],["h(10",{"_index":5200,"t":{},"d":{},"k":{},"b":{"106":{"position":[[8203,5]]}}}],["h(10)valu",{"_index":5199,"t":{},"d":{},"k":{},"b":{"106":{"position":[[8097,10]]}}}],["h(2",{"_index":5181,"t":{},"d":{},"k":{},"b":{"106":{"position":[[6802,4]]}}}],["h(2)valu",{"_index":5179,"t":{},"d":{},"k":{},"b":{"106":{"position":[[6697,9]]}}}],["h(3",{"_index":5184,"t":{},"d":{},"k":{},"b":{"106":{"position":[[6977,4]]}}}],["h(3)valu",{"_index":5182,"t":{},"d":{},"k":{},"b":{"106":{"position":[[6872,9]]}}}],["h(4",{"_index":5187,"t":{},"d":{},"k":{},"b":{"106":{"position":[[7152,4]]}}}],["h(4)valu",{"_index":5185,"t":{},"d":{},"k":{},"b":{"106":{"position":[[7047,9]]}}}],["h(5",{"_index":5190,"t":{},"d":{},"k":{},"b":{"106":{"position":[[7327,4]]}}}],["h(5)valu",{"_index":5188,"t":{},"d":{},"k":{},"b":{"106":{"position":[[7222,9]]}}}],["h(6",{"_index":5192,"t":{},"d":{},"k":{},"b":{"106":{"position":[[7502,4]]}}}],["h(6)valu",{"_index":5191,"t":{},"d":{},"k":{},"b":{"106":{"position":[[7397,9]]}}}],["h(7",{"_index":5194,"t":{},"d":{},"k":{},"b":{"106":{"position":[[7677,4]]}}}],["h(7)valu",{"_index":5193,"t":{},"d":{},"k":{},"b":{"106":{"position":[[7572,9]]}}}],["h(8",{"_index":5196,"t":{},"d":{},"k":{},"b":{"106":{"position":[[7852,4]]}}}],["h(8)valu",{"_index":5195,"t":{},"d":{},"k":{},"b":{"106":{"position":[[7747,9]]}}}],["h(9",{"_index":5198,"t":{},"d":{},"k":{},"b":{"106":{"position":[[8027,4]]}}}],["h(9)valu",{"_index":5197,"t":{},"d":{},"k":{},"b":{"106":{"position":[[7922,9]]}}}],["h(p",{"_index":5269,"t":{},"d":{},"k":{},"b":{"106":{"position":[[16174,4],[16292,4]]}}}],["h0",{"_index":5272,"t":{},"d":{},"k":{},"b":{"106":{"position":[[16413,2]]}}}],["h0(10",{"_index":5122,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2999,6]]}}}],["h0(10)valu",{"_index":5119,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2896,11]]}}}],["h1",{"_index":5274,"t":{},"d":{},"k":{},"b":{"106":{"position":[[16536,2]]}}}],["h1(0",{"_index":5125,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3153,5]]}}}],["h1(0)valu",{"_index":5123,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3051,10]]}}}],["h1(1",{"_index":5128,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3306,5]]}}}],["h1(1)valu",{"_index":5126,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3204,10]]}}}],["h1(10",{"_index":5154,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4684,6]]}}}],["h1(10)valu",{"_index":5153,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4581,11]]}}}],["h1(11",{"_index":5156,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4839,6]]}}}],["h1(11)valu",{"_index":5155,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4736,11]]}}}],["h1(12",{"_index":5158,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4994,6]]}}}],["h1(12)valu",{"_index":5157,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4891,11]]}}}],["h1(13",{"_index":5160,"t":{},"d":{},"k":{},"b":{"106":{"position":[[5149,6]]}}}],["h1(13)valu",{"_index":5159,"t":{},"d":{},"k":{},"b":{"106":{"position":[[5046,11]]}}}],["h1(14",{"_index":5162,"t":{},"d":{},"k":{},"b":{"106":{"position":[[5304,6]]}}}],["h1(14)valu",{"_index":5161,"t":{},"d":{},"k":{},"b":{"106":{"position":[[5201,11]]}}}],["h1(15",{"_index":5164,"t":{},"d":{},"k":{},"b":{"106":{"position":[[5459,6]]}}}],["h1(15)valu",{"_index":5163,"t":{},"d":{},"k":{},"b":{"106":{"position":[[5356,11]]}}}],["h1(16",{"_index":5166,"t":{},"d":{},"k":{},"b":{"106":{"position":[[5614,6]]}}}],["h1(16)valu",{"_index":5165,"t":{},"d":{},"k":{},"b":{"106":{"position":[[5511,11]]}}}],["h1(17",{"_index":5168,"t":{},"d":{},"k":{},"b":{"106":{"position":[[5769,6]]}}}],["h1(17)valu",{"_index":5167,"t":{},"d":{},"k":{},"b":{"106":{"position":[[5666,11]]}}}],["h1(18",{"_index":5170,"t":{},"d":{},"k":{},"b":{"106":{"position":[[5924,6]]}}}],["h1(18)valu",{"_index":5169,"t":{},"d":{},"k":{},"b":{"106":{"position":[[5821,11]]}}}],["h1(19",{"_index":5172,"t":{},"d":{},"k":{},"b":{"106":{"position":[[6079,6]]}}}],["h1(19)valu",{"_index":5171,"t":{},"d":{},"k":{},"b":{"106":{"position":[[5976,11]]}}}],["h1(2",{"_index":5131,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3459,5]]}}}],["h1(2)valu",{"_index":5129,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3357,10]]}}}],["h1(3",{"_index":5134,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3612,5]]}}}],["h1(3)valu",{"_index":5132,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3510,10]]}}}],["h1(4",{"_index":5137,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3765,5]]}}}],["h1(4)valu",{"_index":5135,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3663,10]]}}}],["h1(5",{"_index":5140,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3918,5]]}}}],["h1(5)valu",{"_index":5138,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3816,10]]}}}],["h1(6",{"_index":5143,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4071,5]]}}}],["h1(6)valu",{"_index":5141,"t":{},"d":{},"k":{},"b":{"106":{"position":[[3969,10]]}}}],["h1(7",{"_index":5146,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4224,5]]}}}],["h1(7)valu",{"_index":5144,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4122,10]]}}}],["h1(8",{"_index":5149,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4377,5]]}}}],["h1(8)valu",{"_index":5147,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4275,10]]}}}],["h1(9",{"_index":5152,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4530,5]]}}}],["h1(9)valu",{"_index":5150,"t":{},"d":{},"k":{},"b":{"106":{"position":[[4428,10]]}}}],["hal",{"_index":365,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3769,3]]},"74":{"position":[[109,3]]},"76":{"position":[[22937,3]]},"78":{"position":[[1345,3]]},"80":{"position":[[1668,3]]},"81":{"position":[[654,3]]},"82":{"position":[[2252,3]]},"84":{"position":[[15527,3]]},"85":{"position":[[127,3]]},"86":{"position":[[125,3]]},"87":{"position":[[5181,3]]},"89":{"position":[[1476,3]]},"90":{"position":[[1435,3]]},"91":{"position":[[1484,3]]},"92":{"position":[[1745,3],[2517,3],[10475,3]]},"93":{"position":[[1448,3]]},"94":{"position":[[135,3]]},"101":{"position":[[184,3]]},"103":{"position":[[184,3]]},"107":{"position":[[2798,3]]},"109":{"position":[[2180,3]]},"113":{"position":[[15079,3]]},"124":{"position":[[1129,3]]},"136":{"position":[[1169,3],[1458,3]]},"137":{"position":[[3721,3]]},"138":{"position":[[1122,3]]},"144":{"position":[[3489,3]]},"145":{"position":[[2351,3],[3633,3],[16449,3],[16466,3]]},"146":{"position":[[3923,3]]},"147":{"position":[[116,3]]},"148":{"position":[[1156,3]]},"149":{"position":[[2325,3]]}}}],["hal_data.c",{"_index":3662,"t":{},"d":{},"k":{},"b":{"84":{"position":[[3404,11]]}}}],["half",{"_index":5115,"t":{},"d":{},"k":{},"b":{"106":{"position":[[2800,5],[15496,5],[16371,5],[16494,5],[18452,5]]},"139":{"position":[[1624,4],[1767,4],[4848,4],[6354,4],[6421,4],[13973,4],[14057,4],[14987,4],[17623,4],[17699,4],[17758,4]]},"140":{"position":[[3791,4],[12498,4],[14147,4]]},"142":{"position":[[15736,5]]}}}],["half/ful",{"_index":7309,"t":{},"d":{},"k":{},"b":{"140":{"position":[[1650,9]]}}}],["half_data_set",{"_index":7244,"t":{},"d":{},"k":{},"b":{"139":{"position":[[14968,17]]}}}],["halt",{"_index":1869,"t":{},"d":{},"k":{},"b":{"71":{"position":[[11099,4]]},"74":{"position":[[8896,4]]},"75":{"position":[[32594,4]]}}}],["handl",{"_index":404,"t":{"95":{"position":[[53,8]]},"96":{"position":[[53,8]]},"97":{"position":[[53,8]]},"98":{"position":[[53,8]]},"99":{"position":[[53,8]]},"100":{"position":[[53,8]]},"102":{"position":[[53,8]]},"104":{"position":[[53,8]]}},"d":{},"k":{},"b":{"67":{"position":[[5427,6],[5994,6],[6395,6],[6802,6],[7215,6],[7539,6],[7920,6],[8399,6],[9030,6],[9546,6],[10784,6],[11335,6]]},"68":{"position":[[9939,6],[12633,6],[15500,6]]},"69":{"position":[[13821,6],[15243,6],[16221,6],[18405,7]]},"71":{"position":[[2367,7],[2487,7],[34484,8],[35051,8]]},"75":{"position":[[3130,6],[3321,8],[22451,8],[27306,6],[27441,6],[27796,6],[28042,6],[29188,6]]},"76":{"position":[[7414,6],[8255,6],[9712,6],[10454,6],[23257,6]]},"78":{"position":[[2099,7],[2392,6],[2760,7],[3113,7],[3392,7],[3719,7]]},"79":{"position":[[8068,6],[8191,6]]},"80":{"position":[[1092,7],[3588,7],[7909,6]]},"83":{"position":[[19334,7],[20682,6],[21590,6],[23241,6],[23918,6],[25463,6],[26760,6]]},"84":{"position":[[6211,6],[6928,6],[7720,6]]},"88":{"position":[[2258,8]]},"92":{"position":[[13022,6],[13859,6],[15217,6]]},"94":{"position":[[44,8],[81,8],[160,8],[340,8],[392,8],[449,8],[503,8]]},"101":{"position":[[44,8],[105,8],[209,8],[361,8],[446,8]]},"103":{"position":[[44,8],[105,8],[209,8],[330,8],[418,8]]},"105":{"position":[[12437,6],[13191,6],[13996,6],[15785,6]]},"106":{"position":[[13812,6],[13992,6]]},"108":{"position":[[3981,6]]},"112":{"position":[[307,8],[493,8],[695,8],[900,8],[1081,8],[1265,8],[1465,8],[1668,8]]},"115":{"position":[[841,8],[922,8],[1027,8]]},"124":{"position":[[8213,6],[10810,6]]},"125":{"position":[[6146,8],[6271,6],[6335,6],[6399,6],[10831,6]]},"127":{"position":[[3725,6],[5834,6]]},"129":{"position":[[5220,6],[7450,6]]},"131":{"position":[[7042,6],[11709,6]]},"133":{"position":[[9263,6],[13709,6],[17843,6],[22147,6],[27161,6],[33314,6],[37429,6],[41734,6],[45986,6]]},"135":{"position":[[6444,6],[6598,7],[8629,6],[9718,6],[11509,6]]},"136":{"position":[[6192,6],[7943,6],[8434,6],[9105,6]]},"137":{"position":[[5023,6],[5310,7],[5577,6],[5898,6],[6331,6],[6743,6],[7184,6],[7577,6],[7946,6],[8937,6]]},"138":{"position":[[8080,6],[10005,6]]},"139":{"position":[[10494,6]]},"140":{"position":[[7864,6]]},"141":{"position":[[6953,6]]},"142":{"position":[[2360,7],[7323,6],[7772,7],[9614,6],[10718,6],[12571,6]]},"143":{"position":[[5066,6],[5469,6],[6229,6],[6697,6],[7187,6],[7560,6],[8087,6],[8607,6],[8924,6],[9167,6],[9469,6],[9846,6],[10103,6]]},"146":{"position":[[5700,6],[7295,6],[8867,6],[12088,6]]},"148":{"position":[[5340,6],[5902,6],[8118,6]]},"152":{"position":[[1304,8],[1485,8],[1682,8],[1882,8],[2058,8],[2237,8],[2432,8],[2630,8],[7220,8],[7296,8],[7397,8]]}}}],["handle_error(err",{"_index":1061,"t":{},"d":{},"k":{},"b":{"69":{"position":[[13891,18],[14000,18],[14607,19],[15313,18],[15436,18],[15975,18],[16085,19]]},"76":{"position":[[7484,18],[8325,18],[9782,18],[10524,18],[11739,19],[17529,18],[23327,18]]},"80":{"position":[[7979,18],[8174,19]]},"83":{"position":[[20752,18],[21660,18],[23311,18],[23988,18],[25013,19],[25533,18],[26301,19],[26830,18]]},"92":{"position":[[13092,18],[13281,18],[13428,18],[13560,19],[13929,18],[14178,18],[14634,18],[15287,18],[15499,18],[15638,18],[15856,18],[16028,18],[16275,19]]},"105":{"position":[[12507,18],[13261,18],[14066,18],[15330,19],[31969,18]]},"124":{"position":[[8283,18],[8638,18],[9243,18],[10880,18],[11180,18],[11629,18],[11937,18]]},"127":{"position":[[5904,18]]},"129":{"position":[[9887,18]]},"131":{"position":[[14371,18]]},"133":{"position":[[13961,18],[14334,18],[14796,18],[15279,18],[17913,18],[18129,18],[18500,18],[18962,18],[19445,18],[22217,18],[22433,18],[22804,18],[23030,18],[23857,18],[24340,18],[27231,18],[27447,18],[28007,18],[28233,18],[29113,18],[29309,18],[30180,18],[30554,18],[33566,18],[33939,18],[34401,18],[34879,18],[37499,18],[37715,18],[38086,18],[38548,18],[39032,18],[41804,18],[42020,18],[42391,18],[42853,18],[43336,18],[46056,18],[46272,18],[46806,18],[47032,18],[47815,18],[48011,18],[48683,18],[49057,18]]},"135":{"position":[[8699,18],[8858,18],[9788,18],[10089,18],[10745,18],[11399,18],[11579,19]]},"140":{"position":[[7525,18],[7613,18],[7701,18],[9600,18],[9690,19]]},"150":{"position":[[7592,18],[8178,18],[8512,19],[9570,18],[10114,18],[10279,18],[10775,18],[11572,18],[11739,18],[13006,18],[14024,18],[14814,18],[19354,18],[26564,18]]}}}],["handle_error(err);#if",{"_index":6408,"t":{},"d":{},"k":{},"b":{"129":{"position":[[7520,21]]},"131":{"position":[[11779,21]]},"133":{"position":[[13779,21],[33384,21]]}}}],["handler",{"_index":1739,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2800,7],[2818,7],[2836,7],[2856,7],[2907,7],[2929,7],[2953,7],[2969,7],[38623,8],[38797,8],[39194,8],[39366,8]]},"75":{"position":[[25232,7]]},"148":{"position":[[3449,7]]}}}],["hang",{"_index":5893,"t":{},"d":{},"k":{},"b":{"124":{"position":[[3930,5]]}}}],["happen",{"_index":6001,"t":{},"d":{},"k":{},"b":{"125":{"position":[[7959,6]]},"141":{"position":[[10639,7],[10729,6]]},"145":{"position":[[2464,7],[2568,7],[10663,6]]}}}],["hard",{"_index":1737,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2789,4],[2986,4]]}}}],["hardwar",{"_index":239,"t":{},"d":{},"k":{},"b":{"67":{"position":[[219,8],[3625,8],[6253,8],[6645,8],[7058,8]]},"68":{"position":[[1519,8],[1711,8],[2517,8],[3145,8],[3999,8],[4023,8],[4073,8],[4100,8],[4282,8],[5917,8],[5962,8],[6097,8],[6351,8],[6414,8],[6462,8],[6693,8],[6800,8],[7003,8],[7132,8],[17115,8],[18869,8],[19002,8],[25420,8],[26392,8]]},"69":{"position":[[1470,8],[31845,8],[31992,8],[32406,8],[33372,8],[33506,8],[33749,8]]},"74":{"position":[[322,8],[2868,8]]},"75":{"position":[[16298,8]]},"76":{"position":[[2406,8],[22820,8]]},"78":{"position":[[1167,8]]},"79":{"position":[[2312,8],[2391,8],[13575,8],[13992,8],[14403,8],[14603,8],[14748,8],[15179,8]]},"82":{"position":[[953,8],[1180,8],[1627,8]]},"83":{"position":[[5364,8],[20038,8],[38263,8],[46590,8]]},"84":{"position":[[2812,8],[15411,8]]},"85":{"position":[[2246,9],[2989,9],[4282,9]]},"86":{"position":[[2092,9],[2638,9],[3600,9]]},"87":{"position":[[4633,9]]},"89":{"position":[[2179,8]]},"91":{"position":[[2190,8]]},"92":{"position":[[10984,8]]},"93":{"position":[[1269,8]]},"94":{"position":[[2850,9]]},"101":{"position":[[2946,9]]},"103":{"position":[[2076,9]]},"105":{"position":[[4652,8],[12030,8]]},"106":{"position":[[12990,8],[22123,8]]},"107":{"position":[[1539,8],[2098,9]]},"108":{"position":[[1800,8],[3523,9]]},"113":{"position":[[2544,8],[2634,8],[2673,8],[3457,8],[11965,8],[13750,8],[14066,8]]},"125":{"position":[[7886,8]]},"135":{"position":[[1252,8],[7758,8]]},"137":{"position":[[3541,8]]},"139":{"position":[[1570,8],[7601,9],[7669,8],[8060,8],[8283,8],[8300,8],[8453,8],[8533,9],[8551,8],[8715,8],[8821,8]]},"140":{"position":[[1597,8],[6510,9]]},"141":{"position":[[2483,8]]},"142":{"position":[[1327,8]]},"144":{"position":[[2745,8],[2943,9]]},"145":{"position":[[3476,8],[8878,8]]},"146":{"position":[[17921,8],[18068,8],[18408,8],[19317,8],[19451,8]]},"147":{"position":[[325,8],[380,8],[1953,9],[2847,8]]},"148":{"position":[[2086,8]]}}}],["have",{"_index":1750,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3498,6]]},"128":{"position":[[14730,6],[17856,6]]}}}],["hdr",{"_index":3954,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15522,3],[15568,3],[15614,3],[15660,3],[15706,3],[15785,3],[15864,3],[15943,3],[18020,3]]},"88":{"position":[[13841,3]]}}}],["head",{"_index":1010,"t":{},"d":{},"k":{},"b":{"69":{"position":[[7721,4],[7853,4],[7946,4],[23340,4],[23545,4],[23683,4]]}}}],["header",{"_index":503,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12151,6]]},"75":{"position":[[2355,6],[17999,6],[18083,6]]},"88":{"position":[[40295,6]]},"113":{"position":[[1571,6],[7113,6],[7263,6]]},"128":{"position":[[11093,6],[17674,6],[17883,6]]},"150":{"position":[[13554,6]]}}}],["header'",{"_index":8243,"t":{},"d":{},"k":{},"b":{"150":{"position":[[13759,8]]}}}],["heap",{"_index":1710,"t":{},"d":{},"k":{},"b":{"71":{"position":[[1205,5],[6200,4],[6319,4],[6527,4],[6663,5],[6750,5],[6842,4],[10222,4],[10319,4],[10356,4],[31371,5],[33946,5]]},"111":{"position":[[267,5]]},"128":{"position":[[19254,4],[19825,4],[21982,5],[25431,5],[25663,4],[25764,5],[26066,4],[26124,4],[26219,4],[26246,4],[26350,4],[26454,4],[26617,5]]},"152":{"position":[[346,5]]}}}],["heap_1.c",{"_index":6281,"t":{},"d":{},"k":{},"b":{"128":{"position":[[19439,9],[26388,9]]}}}],["heap_2.c",{"_index":6282,"t":{},"d":{},"k":{},"b":{"128":{"position":[[19449,9],[26398,8]]}}}],["heap_3.c",{"_index":6283,"t":{},"d":{},"k":{},"b":{"128":{"position":[[19459,9]]}}}],["heap_4.c",{"_index":6284,"t":{},"d":{},"k":{},"b":{"128":{"position":[[19469,8],[26410,8]]}}}],["heap_5.c",{"_index":6285,"t":{},"d":{},"k":{},"b":{"128":{"position":[[19482,8]]}}}],["heavili",{"_index":1842,"t":{},"d":{},"k":{},"b":{"71":{"position":[[9291,7]]}}}],["held",{"_index":5894,"t":{},"d":{},"k":{},"b":{"124":{"position":[[4033,4],[13275,4]]},"128":{"position":[[4985,4]]},"131":{"position":[[4942,4]]}}}],["help",{"_index":722,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5556,4]]},"71":{"position":[[7278,4],[7505,7]]},"116":{"position":[[1013,4]]},"138":{"position":[[6941,7]]},"151":{"position":[[403,7],[1505,4]]},"153":{"position":[[36,4]]}}}],["here",{"_index":479,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10378,4]]},"68":{"position":[[4488,5]]},"69":{"position":[[17482,4],[17631,4]]},"71":{"position":[[10647,4],[38404,4],[38971,4]]},"74":{"position":[[4261,5],[7079,4]]},"75":{"position":[[13704,5]]},"76":{"position":[[7902,5]]},"82":{"position":[[3177,5],[4881,4]]},"83":{"position":[[10895,5],[21110,5]]},"84":{"position":[[6647,5]]},"85":{"position":[[4446,5],[7255,4]]},"86":{"position":[[3744,5],[5403,4]]},"87":{"position":[[6850,5]]},"89":{"position":[[2533,5]]},"90":{"position":[[2251,5]]},"91":{"position":[[2610,5]]},"94":{"position":[[3040,5],[4262,4]]},"101":{"position":[[3124,5],[3973,4]]},"103":{"position":[[2254,5]]},"105":{"position":[[7830,5],[12867,5]]},"107":{"position":[[2277,5],[3996,5],[6942,4]]},"108":{"position":[[2543,5]]},"109":{"position":[[3028,5],[4189,4]]},"124":{"position":[[3836,5]]},"128":{"position":[[851,5]]},"129":{"position":[[4125,5]]},"131":{"position":[[4294,5]]},"133":{"position":[[6901,5],[8025,5]]},"139":{"position":[[25467,4]]},"140":{"position":[[23387,4]]},"141":{"position":[[2110,5],[2245,5],[6738,4]]},"143":{"position":[[8678,5]]},"144":{"position":[[4803,5],[9432,4]]},"145":{"position":[[4822,5],[5304,5]]},"146":{"position":[[3085,5]]},"147":{"position":[[4832,5],[8328,4]]},"148":{"position":[[5633,5],[8586,5]]},"149":{"position":[[5748,4]]},"151":{"position":[[435,4]]}}}],["hertz",{"_index":2623,"t":{},"d":{},"k":{},"b":{"76":{"position":[[2790,5]]},"83":{"position":[[6913,5]]},"84":{"position":[[3503,5]]}}}],["hex",{"_index":7084,"t":{},"d":{},"k":{},"b":{"138":{"position":[[3209,3]]}}}],["hi",{"_index":1322,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2066,2]]},"83":{"position":[[12755,2],[12926,2]]},"92":{"position":[[1812,3],[20596,2],[22993,2],[35557,2]]},"93":{"position":[[6157,2]]}}}],["high",{"_index":727,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5727,4],[5827,4]]},"69":{"position":[[11251,4]]},"70":{"position":[[1900,5]]},"71":{"position":[[8432,4]]},"75":{"position":[[21636,4]]},"76":{"position":[[3182,4],[3319,4],[14164,5]]},"79":{"position":[[5420,5],[14994,4]]},"83":{"position":[[7063,4],[7228,4],[7423,4],[7763,4],[7928,4],[8123,4],[8798,4],[9029,4],[12570,4],[12778,4],[12949,4],[17839,4],[33151,5],[34224,5],[34440,5],[34654,5],[34870,5],[36127,5],[36343,5],[36557,5],[36773,5],[38147,5],[40238,4],[40620,4],[40782,4]]},"87":{"position":[[18419,4]]},"88":{"position":[[7763,4],[7827,4],[8109,4],[8135,4],[8209,4],[8517,4],[8581,4],[8863,4],[8889,4],[8963,4],[15059,4],[15268,4],[15319,4],[15386,4],[15437,4],[16691,4],[20975,4],[21811,4],[21940,4],[22192,4],[47067,4]]},"91":{"position":[[1389,4],[2318,4],[6102,4]]},"92":{"position":[[2142,5],[11455,5],[11583,4],[12056,5],[12177,4],[13331,4],[20959,5],[23356,5],[26418,4],[28108,4],[34373,4]]},"105":{"position":[[7055,4],[7111,4],[7145,4],[7160,4],[7180,4],[7441,4],[7497,4],[7531,4],[7546,4],[7566,4],[21073,4],[21268,5],[21367,5],[21373,4],[21469,5]]},"106":{"position":[[8220,4],[8239,4],[8358,4],[8407,4],[8515,4],[8560,4],[8668,4],[8713,4],[8821,4],[8866,4],[8974,4],[10226,4],[10347,4],[15707,4],[15949,4],[16046,4],[16145,4],[16263,4],[17002,4],[19190,4]]},"108":{"position":[[2081,4],[2106,4]]},"109":{"position":[[6231,4],[7817,5]]},"116":{"position":[[737,4]]},"124":{"position":[[3262,4],[3388,4],[12684,4]]},"128":{"position":[[3156,4],[3580,4],[11981,4],[14491,4]]},"135":{"position":[[1058,4],[2834,4],[2999,4],[5746,4],[5860,4],[14254,5],[14607,4]]},"136":{"position":[[3141,4]]},"138":{"position":[[6585,4]]},"139":{"position":[[4921,4],[4934,4],[8164,4],[17366,4]]},"140":{"position":[[3960,4],[3973,4],[13622,4]]},"141":{"position":[[10374,4]]},"142":{"position":[[1142,4],[3888,4],[4562,4],[4803,4],[6443,4],[6584,4],[6839,4],[16159,5],[16795,4]]},"144":{"position":[[7350,5]]},"151":{"position":[[1261,4],[2347,4]]}}}],["high_pass_filter_shift",{"_index":5260,"t":{},"d":{},"k":{},"b":{"106":{"position":[[15683,22]]}}}],["higher",{"_index":1832,"t":{},"d":{},"k":{},"b":{"71":{"position":[[8655,6],[40009,6]]},"75":{"position":[[11122,6],[19973,6]]},"125":{"position":[[4691,6],[4914,6]]},"128":{"position":[[3072,6],[3126,6],[3355,6],[3961,6],[13185,6],[13212,7],[13843,6]]},"136":{"position":[[6240,6],[7245,6],[13599,6]]}}}],["highest",{"_index":6201,"t":{},"d":{},"k":{},"b":{"128":{"position":[[10080,7],[10283,7],[12969,7],[13639,7],[14741,7],[15198,7]]}}}],["highli",{"_index":2431,"t":{},"d":{},"k":{},"b":{"75":{"position":[[21755,6]]},"88":{"position":[[20336,6]]},"128":{"position":[[15561,6]]}}}],["hold",{"_index":2368,"t":{},"d":{},"k":{},"b":{"75":{"position":[[16740,4]]},"86":{"position":[[1782,4]]},"113":{"position":[[11451,7],[15278,5]]},"124":{"position":[[6973,4]]},"125":{"position":[[5116,8],[6037,4]]},"131":{"position":[[592,4],[643,4],[1480,4],[1516,5],[1628,4],[2625,4],[3100,4],[3121,4],[3164,4],[3227,4],[4348,4],[4368,4],[4408,4],[4420,4],[4576,4],[4595,4],[4798,4],[5354,4],[5376,4],[5582,4],[7645,4],[7665,4],[7708,5],[8062,4],[8085,4],[8137,4],[12093,4],[13393,4],[15732,4],[17498,4],[17549,4],[18947,4],[19339,4],[19375,5],[19487,4]]},"136":{"position":[[2181,5]]},"138":{"position":[[7603,4]]},"141":{"position":[[4409,4],[5849,4]]},"290":{"position":[[15,4],[131,4]]}}}],["hook",{"_index":6183,"t":{},"d":{},"k":{},"b":{"128":{"position":[[7195,4],[18991,5],[19008,4],[19083,5],[19117,5],[19125,5],[19151,4],[19536,4],[19632,4],[19651,4],[19910,4],[19977,4],[20013,4],[20062,4],[20136,4],[20243,5],[20275,4],[20351,4],[20408,4],[20480,4],[20707,4],[20777,5],[20794,4],[20870,5],[20904,5],[20912,5]]}}}],["horizont",{"_index":2984,"t":{},"d":{},"k":{},"b":{"79":{"position":[[4879,12],[5064,12],[5293,12]]}}}],["host",{"_index":8333,"t":{},"d":{},"k":{},"b":{"151":{"position":[[3125,4]]}}}],["hot",{"_index":4006,"t":{},"d":{},"k":{},"b":{"87":{"position":[[18955,3]]},"88":{"position":[[1991,3],[2293,3],[6673,3],[10695,3],[10782,3],[10860,3],[10968,3],[11548,3],[11633,3],[14916,3],[35166,3],[35922,3],[42264,3],[42368,3],[43119,3]]}}}],["hot_join_acknowledg",{"_index":4249,"t":{},"d":{},"k":{},"b":{"88":{"position":[[42220,21]]}}}],["hotjoin_request_en",{"_index":4257,"t":{},"d":{},"k":{},"b":{"88":{"position":[[43088,22]]}}}],["hour",{"_index":6610,"t":{},"d":{},"k":{},"b":{"133":{"position":[[7050,5],[8398,5]]},"136":{"position":[[1609,5],[7128,4]]},"137":{"position":[[2012,5]]}}}],["hour_match",{"_index":7029,"t":{},"d":{},"k":{},"b":{"137":{"position":[[1959,10]]}}}],["hpf",{"_index":5201,"t":{},"d":{},"k":{},"b":{"106":{"position":[[8426,3],[8579,3],[8732,3],[8885,3]]}}}],["hpf_coefficient_h[2",{"_index":5268,"t":{},"d":{},"k":{},"b":{"106":{"position":[[16123,20]]}}}],["hpf_coefficient_k1",{"_index":5266,"t":{},"d":{},"k":{},"b":{"106":{"position":[[16026,18]]}}}],["hpf_coefficient_s0",{"_index":5264,"t":{},"d":{},"k":{},"b":{"106":{"position":[[15929,18]]}}}],["hs300x",{"_index":5864,"t":{"129":{"position":[[45,6]]},"130":{"position":[[45,6]]}},"d":{},"k":{},"b":{"115":{"position":[[1708,6],[1751,6]]},"119":{"position":[[50,6],[126,6],[178,6]]},"129":{"position":[[137,6],[287,6],[558,6],[770,7],[2729,6],[2781,6],[2835,6],[3671,6],[3786,6],[4105,6],[4310,6],[5114,6],[5186,6],[5457,6],[9269,6],[10350,6],[10719,6],[10828,6],[11533,6],[12096,6],[12642,6],[13221,7]]},"130":{"position":[[36,6],[79,6],[105,6],[131,6],[171,6],[735,6],[874,6],[1146,6],[1352,6],[1462,6],[1926,6],[3576,7],[4188,6],[4916,7],[4962,7],[5309,7],[5757,7],[5970,6],[6380,6],[6463,6],[6795,6],[6925,6]]},"152":{"position":[[4641,6],[4715,6],[4767,6],[8026,6],[8067,6]]}}}],["hs300x_data",{"_index":6403,"t":{},"d":{},"k":{},"b":{"129":{"position":[[5650,12],[9581,14]]}}}],["hs300x_raw_data",{"_index":6402,"t":{},"d":{},"k":{},"b":{"129":{"position":[[5609,16],[9321,18],[9563,17]]}}}],["hs400x",{"_index":5865,"t":{"131":{"position":[[45,6]]},"132":{"position":[[45,6]]}},"d":{},"k":{},"b":{"115":{"position":[[1784,6],[1827,6]]},"119":{"position":[[211,6],[287,6],[339,6]]},"131":{"position":[[137,6],[291,6],[534,6],[856,6],[1103,7],[1257,6],[1469,7],[1509,6],[2129,6],[2181,6],[2235,6],[3527,6],[3642,6],[4274,6],[4666,6],[4890,6],[5139,6],[5447,6],[5636,6],[6105,6],[6346,6],[6935,6],[7687,6],[8107,6],[8896,6],[9647,6],[13165,6],[14692,6],[14981,6],[15090,6],[16263,6],[16922,6],[17440,6],[17762,6],[18433,7],[18587,6],[19328,7],[19368,6]]},"132":{"position":[[36,6],[79,6],[105,6],[131,6],[171,6],[843,6],[988,6],[1114,6],[1410,6],[1616,6],[1726,6],[2486,6],[4122,7],[4734,6],[4899,7],[5112,6],[5522,6],[5605,6]]},"152":{"position":[[4797,6],[4871,6],[4923,6],[8097,6],[8138,6]]}}}],["hs400x_data",{"_index":6495,"t":{},"d":{},"k":{},"b":{"131":{"position":[[9840,12],[14069,14]]}}}],["hs400x_raw_data",{"_index":6494,"t":{},"d":{},"k":{},"b":{"131":{"position":[[9799,16],[13221,18],[14051,17]]}}}],["https://www.freertos.org/document",{"_index":6126,"t":{},"d":{},"k":{},"b":{"128":{"position":[[144,38]]}}}],["humid",{"_index":6374,"t":{},"d":{},"k":{},"b":{"129":{"position":[[985,8],[2986,8],[3423,8],[3449,8],[3469,8],[3509,8],[3532,8],[4170,8],[8050,8],[9456,8],[13906,8]]},"130":{"position":[[3967,8]]},"131":{"position":[[1996,8],[2431,8],[3356,8],[3405,8],[3470,8],[3876,8],[3953,9],[4545,8],[6254,8],[8025,8],[8812,8],[9546,8],[13945,8],[15446,8],[20417,8]]},"132":{"position":[[1933,9],[4513,8],[6124,8]]},"133":{"position":[[1330,9],[1459,8],[24808,8],[30068,8],[30162,10],[43633,8],[48571,8],[48665,10],[54796,8],[54994,8]]},"134":{"position":[[5947,9],[11531,9],[11578,9]]}}}],["humidity[2",{"_index":6442,"t":{},"d":{},"k":{},"b":{"130":{"position":[[914,11]]},"132":{"position":[[1154,11]]}}}],["humidity_resolut",{"_index":6537,"t":{},"d":{},"k":{},"b":{"132":{"position":[[1897,19]]}}}],["hw",{"_index":5819,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14007,2]]}}}],["hyperlink",{"_index":8322,"t":{},"d":{},"k":{},"b":{"151":{"position":[[1624,10]]}}}],["hz",{"_index":2687,"t":{},"d":{},"k":{},"b":{"76":{"position":[[10650,4],[16440,4]]},"83":{"position":[[24113,4]]},"84":{"position":[[7923,4]]},"105":{"position":[[14192,4],[30831,4]]},"128":{"position":[[2652,2],[30111,3]]},"136":{"position":[[1863,2]]}}}],["hz.3400000",{"_index":4043,"t":{},"d":{},"k":{},"b":{"88":{"position":[[8387,10],[9141,10]]}}}],["hzmanual",{"_index":6144,"t":{},"d":{},"k":{},"b":{"128":{"position":[[2599,8]]}}}],["hzmust",{"_index":6146,"t":{},"d":{},"k":{},"b":{"128":{"position":[[2930,6]]}}}],["i.e.,255",{"_index":4366,"t":{},"d":{},"k":{},"b":{"89":{"position":[[2812,11]]},"90":{"position":[[2530,11]]},"91":{"position":[[2889,11]]}}}],["i/o",{"_index":1283,"t":{"70":{"position":[[49,3]]},"92":{"position":[[45,3]]},"93":{"position":[[45,3]]}},"d":{},"k":{},"b":{"71":{"position":[[34269,3],[34836,3]]},"77":{"position":[[2414,3],[2516,3]]},"79":{"position":[[5869,3]]},"80":{"position":[[3379,3],[3414,3],[3487,3]]},"83":{"position":[[30374,3],[30435,3]]},"88":{"position":[[16907,3]]},"92":{"position":[[1460,3],[1520,3],[1555,3],[1588,3],[1603,3],[1665,4],[2508,3],[2913,3],[3001,3],[10466,3]]},"93":{"position":[[46,3],[72,3],[281,3]]},"105":{"position":[[6961,3],[7347,3],[17283,3],[17341,3],[20048,3],[20833,3]]},"111":{"position":[[343,3]]},"113":{"position":[[13809,3]]},"115":{"position":[[674,3],[718,3],[744,3]]},"121":{"position":[[179,3],[216,3],[276,3]]},"124":{"position":[[5318,3]]},"125":{"position":[[4125,3]]},"128":{"position":[[30159,3]]},"136":{"position":[[6312,3]]},"138":{"position":[[5413,3]]},"143":{"position":[[11310,3],[11493,3]]},"146":{"position":[[3848,3]]},"150":{"position":[[6349,3],[6371,3],[6393,3],[6415,3]]},"152":{"position":[[433,3],[5438,3],[5473,3],[5533,3],[7060,3],[7102,3],[7128,3]]}}}],["i2c",{"_index":1990,"t":{"85":{"position":[[45,3]]},"86":{"position":[[45,3]]},"124":{"position":[[45,3]]},"125":{"position":[[45,3]]},"127":{"position":[[45,3]]},"138":{"position":[[45,3]]}},"d":{},"k":{},"b":{"71":{"position":[[34393,3],[34960,3]]},"85":{"position":[[36,3],[76,3],[123,3],[144,3],[294,3],[329,3],[813,3],[1064,3],[1232,3],[1872,3],[1981,3],[2590,3],[3160,3],[4244,3],[4735,3],[5314,3],[7511,3],[7883,3],[8654,3],[8734,3]]},"86":{"position":[[36,3],[75,3],[121,3],[142,3],[288,3],[732,3],[1041,3],[2807,3],[3563,3],[4011,3],[4465,3],[5615,3],[6356,3],[6436,3]]},"87":{"position":[[1664,3],[1918,3],[2533,3],[19214,3]]},"88":{"position":[[1624,3],[1919,3],[2195,3],[2888,3],[6338,3],[16448,3],[16521,3],[20843,3],[21181,3],[21356,3],[21452,3],[21469,3],[22032,3],[22084,3],[22666,3],[23126,3],[23281,4],[23404,3],[26701,3],[30025,3],[30092,3],[30385,3],[30845,3],[31000,4],[31101,3],[31230,4]]},"112":{"position":[[1950,3],[2056,3],[2082,3],[2178,3],[2338,3],[2435,3],[2823,3],[2892,3]]},"115":{"position":[[506,3],[542,3],[572,3],[607,3]]},"124":{"position":[[1073,3],[1110,3],[1170,3],[1645,3],[1682,3],[2600,3],[2701,3],[4984,3],[5398,3],[6859,3],[6999,3],[8467,3],[9019,3],[11010,3],[11477,3],[12575,3],[12884,3],[13332,3],[13788,3],[14655,3],[15634,3],[16585,3],[18721,3],[18817,3]]},"125":{"position":[[703,3],[1239,3],[1782,3],[1889,3],[3533,3],[3792,3],[4205,3],[5327,3],[5540,3],[5703,3],[6078,3],[6130,3],[11243,3],[12130,3],[13411,3],[13844,3],[14452,3],[15513,3],[15591,3],[15646,3],[16623,3],[16701,3],[16756,3],[17504,3]]},"126":{"position":[[212,3]]},"127":{"position":[[507,3],[699,3],[922,3],[1088,3],[1171,3],[1311,3],[1407,3],[1425,3],[1467,3],[1492,3],[1861,3],[1965,3],[2421,3],[2535,3],[2907,3],[3084,3],[3185,3],[3580,3],[3673,3],[3864,3],[3962,3],[4102,3],[5989,3],[6192,3],[6785,3],[8633,3],[9263,3],[9867,3]]},"129":{"position":[[1750,3],[2251,3],[4078,3],[4878,3],[5359,3],[5723,3],[10916,3],[11146,3],[15532,3],[16628,3]]},"131":{"position":[[2732,3],[3305,3],[4070,3],[4150,3],[4247,3],[4718,3],[4897,3],[5499,3],[5694,3],[6047,3],[6353,3],[6447,3],[6689,3],[6898,3],[6962,3],[7011,3],[7181,3],[7287,3],[9976,3],[15178,3],[15867,3]]},"132":{"position":[[2362,3]]},"133":{"position":[[5014,3],[6563,3],[6645,3],[6854,3],[8917,3],[9402,3],[10351,4],[10842,4],[11416,3],[15550,3],[19854,3],[24868,3],[31021,3],[35136,3],[39441,3],[43693,3],[49911,3],[50395,3],[50740,3]]},"134":{"position":[[4026,3]]},"138":{"position":[[1058,3],[1102,3],[1163,3],[1659,3],[1696,3],[2710,3],[2809,3],[3361,3],[5027,3],[5334,3],[5493,3],[5964,3],[6519,3],[6757,3],[6849,3],[7007,3],[7117,3],[7266,3],[7456,3],[7629,3],[7990,3],[8347,3],[8906,3],[9719,3],[10214,3],[10688,3],[11771,3],[12345,3],[12501,3],[12587,3],[13118,3],[13762,3],[13785,3],[13853,3],[14740,3],[15690,3],[15761,3],[15816,3],[16602,3],[16689,3],[17868,3]]},"152":{"position":[[2902,3],[3006,3],[3029,3],[3123,3],[3275,3],[3370,3],[3740,3],[3807,3],[6907,3],[6941,3],[6968,3],[7001,3]]},"292":{"position":[[498,3],[1225,3],[1354,3]]}}}],["i2c_7bit_addr_iic_slav",{"_index":6005,"t":{},"d":{},"k":{},"b":{"125":{"position":[[8482,24],[9074,24]]}}}],["i2c_addr",{"_index":8420,"t":{},"d":{},"k":{},"b":{"292":{"position":[[91,8],[410,8]]}}}],["i2c_api_master_t::open",{"_index":3737,"t":{},"d":{},"k":{},"b":{"85":{"position":[[4871,22],[5452,22],[5957,22],[6409,22],[8021,22]]}}}],["i2c_buffer_size_byt",{"_index":5923,"t":{},"d":{},"k":{},"b":{"124":{"position":[[8369,22],[8604,22],[9209,22],[9678,23],[10965,23],[11146,22]]},"125":{"position":[[10555,22],[11138,22],[11450,22],[12380,22],[13128,23]]},"138":{"position":[[8249,22],[8482,22],[9094,22],[9572,23],[10169,23],[10348,22]]}}}],["i2c_callback",{"_index":5912,"t":{},"d":{},"k":{},"b":{"124":{"position":[[7551,13],[7891,12],[10285,13]]}}}],["i2c_channel",{"_index":5909,"t":{},"d":{},"k":{},"b":{"124":{"position":[[7391,12],[10116,12]]}}}],["i2c_event_tx_complet",{"_index":7121,"t":{},"d":{},"k":{},"b":{"138":{"position":[[16048,21]]}}}],["i2c_example_data_1",{"_index":7106,"t":{},"d":{},"k":{},"b":{"138":{"position":[[10902,19]]}}}],["i2c_example_data_2",{"_index":7107,"t":{},"d":{},"k":{},"b":{"138":{"position":[[10958,19]]}}}],["i2c_legacy_basic_exampl",{"_index":4181,"t":{},"d":{},"k":{},"b":{"88":{"position":[[30137,24]]}}}],["i2c_legacy_basic_example_callback",{"_index":4189,"t":{},"d":{},"k":{},"b":{"88":{"position":[[32697,33]]}}}],["i2c_master_addr_mode_10bit",{"_index":3773,"t":{},"d":{},"k":{},"b":{"85":{"position":[[9252,26]]}}}],["i2c_master_addr_mode_7bit",{"_index":5911,"t":{},"d":{},"k":{},"b":{"124":{"position":[[7504,26],[10238,26],[11598,27]]},"125":{"position":[[8527,26]]},"138":{"position":[[10807,27]]}}}],["i2c_master_addr_mode_t",{"_index":3704,"t":{},"d":{},"k":{},"b":{"85":{"position":[[619,22],[1473,22],[3664,22],[6149,22],[9064,22],[9121,22]]},"124":{"position":[[557,22],[17934,22]]},"138":{"position":[[615,22],[17384,22]]}}}],["i2c_master_api_t",{"_index":3700,"t":{},"d":{},"k":{},"b":{"85":{"position":[[476,16],[3048,16],[3101,16],[8447,16]]}}}],["i2c_master_api_t::abort",{"_index":3746,"t":{},"d":{},"k":{},"b":{"85":{"position":[[5726,24]]}}}],["i2c_master_api_t::callbackset",{"_index":3754,"t":{},"d":{},"k":{},"b":{"85":{"position":[[6595,30]]},"124":{"position":[[19802,29]]},"138":{"position":[[18557,29]]}}}],["i2c_master_api_t::clos",{"_index":3762,"t":{},"d":{},"k":{},"b":{"85":{"position":[[7772,24]]}}}],["i2c_master_api_t::open",{"_index":3731,"t":{},"d":{},"k":{},"b":{"85":{"position":[[4122,23]]}}}],["i2c_master_api_t::read",{"_index":3734,"t":{},"d":{},"k":{},"b":{"85":{"position":[[4563,23]]}}}],["i2c_master_api_t::slaveaddressset",{"_index":3749,"t":{},"d":{},"k":{},"b":{"85":{"position":[[6058,34]]}}}],["i2c_master_api_t::statusget",{"_index":3759,"t":{},"d":{},"k":{},"b":{"85":{"position":[[7362,28]]}}}],["i2c_master_api_t::writ",{"_index":3742,"t":{},"d":{},"k":{},"b":{"85":{"position":[[5141,24]]}}}],["i2c_master_callback",{"_index":6006,"t":{},"d":{},"k":{},"b":{"125":{"position":[[8574,20],[9407,19]]}}}],["i2c_master_callback_args_t",{"_index":3697,"t":{},"d":{},"k":{},"b":{"85":{"position":[[382,26],[706,26],[769,26],[2038,28],[2724,27],[3847,26],[6742,26]]},"124":{"position":[[821,26],[7904,27],[19573,26]]},"125":{"position":[[9427,27]]},"127":{"position":[[1011,27]]},"138":{"position":[[807,26],[18328,26]]}}}],["i2c_master_cfg_t",{"_index":3699,"t":{},"d":{},"k":{},"b":{"85":{"position":[[449,16],[1145,16],[1198,16],[3247,16],[4180,16],[8353,16]]},"124":{"position":[[80,16],[14528,16]]},"138":{"position":[[78,16],[12991,16]]}}}],["i2c_master_cfg_t::channel",{"_index":3724,"t":{},"d":{},"k":{},"b":{"85":{"position":[[2336,25]]}}}],["i2c_master_cfg_t::p_callback",{"_index":3726,"t":{},"d":{},"k":{},"b":{"85":{"position":[[2694,29]]}}}],["i2c_master_cfg_t::p_extend",{"_index":3727,"t":{},"d":{},"k":{},"b":{"85":{"position":[[2907,26]]}}}],["i2c_master_cfg_t::p_transfer_tx",{"_index":3725,"t":{},"d":{},"k":{},"b":{"85":{"position":[[2523,31]]}}}],["i2c_master_channel_0",{"_index":6004,"t":{},"d":{},"k":{},"b":{"125":{"position":[[8394,21]]}}}],["i2c_master_ctrl_t",{"_index":3702,"t":{},"d":{},"k":{},"b":{"85":{"position":[[551,17],[3212,19],[3303,19],[3423,19],[3542,19],[3607,19],[3730,19],[3924,19],[4014,19],[4146,18],[4587,18],[5166,18],[5751,18],[6093,18],[6626,18],[7391,18],[7797,18],[8270,17],[8559,17],[8619,17]]},"124":{"position":[[42,18],[148,18],[283,18],[417,18],[497,18],[629,18],[705,18],[910,18],[14429,17],[15241,17],[16194,17],[17137,17],[17751,17],[18634,17],[19271,17],[20235,17]]},"138":{"position":[[40,18],[145,18],[212,18],[345,18],[477,18],[555,18],[691,18],[894,18],[12892,17],[13675,17],[14347,17],[15299,17],[16479,17],[17201,17],[18026,17],[18986,17]]}}}],["i2c_master_event_abort",{"_index":5925,"t":{},"d":{},"k":{},"b":{"124":{"position":[[8506,25],[8910,25],[9058,25],[9515,25],[11049,25],[11379,25],[11770,25],[12136,25]]},"125":{"position":[[11289,25],[11946,26],[12176,25],[12876,26]]},"138":{"position":[[8386,25],[8797,25],[8945,25],[9409,25],[10253,25],[10590,25],[11004,25],[11377,25]]}}}],["i2c_master_event_rx_complet",{"_index":3775,"t":{},"d":{},"k":{},"b":{"85":{"position":[[9484,28]]},"124":{"position":[[9344,30],[11208,30],[15728,28]]},"125":{"position":[[12627,30]]},"138":{"position":[[9238,30],[10419,30],[14834,28]]}}}],["i2c_master_event_t",{"_index":3705,"t":{},"d":{},"k":{},"b":{"85":{"position":[[651,18],[924,18],[9316,18],[9369,18]]}}}],["i2c_master_event_tx_complet",{"_index":3776,"t":{},"d":{},"k":{},"b":{"85":{"position":[[9563,28]]},"124":{"position":[[8739,30],[11965,30],[16679,28]]},"125":{"position":[[11697,30]]},"138":{"position":[[8626,30],[11206,30]]}}}],["i2c_master_instance_t",{"_index":3701,"t":{},"d":{},"k":{},"b":{"85":{"position":[[503,21],[8067,21],[8125,21]]},"127":{"position":[[4262,21],[4316,22]]},"129":{"position":[[5897,21],[5941,22]]},"131":{"position":[[10156,21],[10200,22]]},"133":{"position":[[11598,21],[11642,22],[15732,21],[15776,22],[20036,21],[20080,22],[25050,21],[25094,22],[31203,21],[31247,22],[35318,21],[35362,22],[39623,21],[39667,22],[43875,21],[43919,22]]}}}],["i2c_master_rate_fast",{"_index":3769,"t":{},"d":{},"k":{},"b":{"85":{"position":[[8993,20]]},"124":{"position":[[7424,21]]},"131":{"position":[[2670,20]]}}}],["i2c_master_rate_fastplu",{"_index":3771,"t":{},"d":{},"k":{},"b":{"85":{"position":[[9024,24]]},"131":{"position":[[2694,24]]}}}],["i2c_master_rate_standard",{"_index":5937,"t":{},"d":{},"k":{},"b":{"124":{"position":[[10149,25]]},"125":{"position":[[8436,25]]}}}],["i2c_master_rate_t",{"_index":3703,"t":{},"d":{},"k":{},"b":{"85":{"position":[[592,17],[1342,17],[8831,17],[8883,17]]}}}],["i2c_master_status_t",{"_index":3698,"t":{},"d":{},"k":{},"b":{"85":{"position":[[419,19],[971,19],[1027,19],[3963,19],[7429,19]]},"124":{"position":[[948,19],[20334,19]]},"138":{"position":[[932,19],[19085,19]]}}}],["i2c_rate_t",{"_index":3708,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1404,11]]},"86":{"position":[[1212,11]]}}}],["i2c_slave_addr_mode_10bit",{"_index":3812,"t":{},"d":{},"k":{},"b":{"86":{"position":[[6945,25]]}}}],["i2c_slave_addr_mode_7bit",{"_index":6016,"t":{},"d":{},"k":{},"b":{"125":{"position":[[9116,25]]}}}],["i2c_slave_addr_mode_t",{"_index":3783,"t":{},"d":{},"k":{},"b":{"86":{"position":[[542,21],[1281,21],[6760,21],[6816,21]]}}}],["i2c_slave_api_t",{"_index":3779,"t":{},"d":{},"k":{},"b":{"86":{"position":[[403,15],[2697,15],[2749,15],[6152,15]]}}}],["i2c_slave_api_t::callbackset",{"_index":3803,"t":{},"d":{},"k":{},"b":{"86":{"position":[[4779,29]]},"125":{"position":[[18314,28]]}}}],["i2c_slave_api_t::clos",{"_index":3805,"t":{},"d":{},"k":{},"b":{"86":{"position":[[5506,23]]}}}],["i2c_slave_api_t::open",{"_index":3797,"t":{},"d":{},"k":{},"b":{"86":{"position":[[3444,22],[4126,21],[4581,21],[5731,21]]}}}],["i2c_slave_api_t::read",{"_index":3799,"t":{},"d":{},"k":{},"b":{"86":{"position":[[3861,22]]}}}],["i2c_slave_api_t::writ",{"_index":3801,"t":{},"d":{},"k":{},"b":{"86":{"position":[[4314,23]]}}}],["i2c_slave_callback",{"_index":6020,"t":{},"d":{},"k":{},"b":{"125":{"position":[[9277,19],[9519,18]]}}}],["i2c_slave_callback_args_t",{"_index":3777,"t":{},"d":{},"k":{},"b":{"86":{"position":[[341,25],[627,25],[689,25],[1885,27],[2375,26],[3265,25],[4923,25]]},"125":{"position":[[557,25],[9538,26],[18086,25]]}}}],["i2c_slave_cfg_t",{"_index":3778,"t":{},"d":{},"k":{},"b":{"86":{"position":[[377,15],[956,15],[1008,15],[2892,15],[3500,15],[6059,15]]},"125":{"position":[[78,15],[14326,15]]}}}],["i2c_slave_cfg_t::channel",{"_index":3793,"t":{},"d":{},"k":{},"b":{"86":{"position":[[2182,24]]}}}],["i2c_slave_cfg_t::p_callback",{"_index":3794,"t":{},"d":{},"k":{},"b":{"86":{"position":[[2346,28]]}}}],["i2c_slave_cfg_t::p_extend",{"_index":3795,"t":{},"d":{},"k":{},"b":{"86":{"position":[[2557,25]]}}}],["i2c_slave_channel_1",{"_index":6014,"t":{},"d":{},"k":{},"b":{"125":{"position":[[8994,20]]}}}],["i2c_slave_ctrl_t",{"_index":3781,"t":{},"d":{},"k":{},"b":{"86":{"position":[[476,16],[2858,18],[2947,18],[3046,18],[3150,18],[3337,18],[3467,17],[3884,17],[4338,17],[4809,17],[5530,17],[5977,16],[6263,16],[6322,16]]},"125":{"position":[[41,17],[144,17],[257,17],[369,17],[443,17],[14228,16],[15203,16],[16315,16],[17418,16],[17786,16]]}}}],["i2c_slave_display_adapt",{"_index":5947,"t":{},"d":{},"k":{},"b":{"124":{"position":[[11571,26]]},"138":{"position":[[10780,26]]}}}],["i2c_slave_eeprom",{"_index":5910,"t":{},"d":{},"k":{},"b":{"124":{"position":[[7466,17]]}}}],["i2c_slave_event_abort",{"_index":5995,"t":{},"d":{},"k":{},"b":{"125":{"position":[[5676,23],[6247,23],[11348,24],[12015,24],[12235,24],[12945,24],[15929,23],[17039,23]]}}}],["i2c_slave_event_general_cal",{"_index":3821,"t":{},"d":{},"k":{},"b":{"86":{"position":[[7799,28]]},"125":{"position":[[5773,28],[6842,28]]}}}],["i2c_slave_event_rx_complet",{"_index":3814,"t":{},"d":{},"k":{},"b":{"86":{"position":[[7173,27]]},"125":{"position":[[5509,27],[6307,27],[9648,28],[11773,27],[15749,27]]}}}],["i2c_slave_event_rx_more_request",{"_index":3819,"t":{},"d":{},"k":{},"b":{"86":{"position":[[7524,31]]},"125":{"position":[[5626,31],[6632,31],[7003,32],[9853,33],[15846,31]]}}}],["i2c_slave_event_rx_request",{"_index":3816,"t":{},"d":{},"k":{},"b":{"86":{"position":[[7330,26]]},"125":{"position":[[5405,26],[6435,26],[6969,26],[9804,27]]}}}],["i2c_slave_event_t",{"_index":3784,"t":{},"d":{},"k":{},"b":{"86":{"position":[[573,17],[910,17],[7008,17],[7060,17]]}}}],["i2c_slave_event_tx_complet",{"_index":3815,"t":{},"d":{},"k":{},"b":{"86":{"position":[[7251,27]]},"125":{"position":[[5480,28],[6371,27],[9698,29],[12703,27],[16860,27]]}}}],["i2c_slave_event_tx_more_request",{"_index":3820,"t":{},"d":{},"k":{},"b":{"86":{"position":[[7660,31]]},"125":{"position":[[5593,32],[6785,31],[7182,32],[10137,33],[16956,31]]}}}],["i2c_slave_event_tx_request",{"_index":3818,"t":{},"d":{},"k":{},"b":{"86":{"position":[[7427,26]]},"125":{"position":[[5377,27],[6580,26],[7148,26],[10088,27]]}}}],["i2c_slave_instance_t",{"_index":3780,"t":{},"d":{},"k":{},"b":{"86":{"position":[[429,20],[5776,20],[5833,20]]}}}],["i2c_slave_rate_fast",{"_index":3809,"t":{},"d":{},"k":{},"b":{"86":{"position":[[6691,19]]}}}],["i2c_slave_rate_fastplu",{"_index":3810,"t":{},"d":{},"k":{},"b":{"86":{"position":[[6721,23]]}}}],["i2c_slave_rate_standard",{"_index":6015,"t":{},"d":{},"k":{},"b":{"125":{"position":[[9032,24]]}}}],["i2c_slave_rate_t",{"_index":3782,"t":{},"d":{},"k":{},"b":{"86":{"position":[[516,16],[1151,16],[6532,16],[6583,16]]}}}],["i2c_slave_temp_sensor",{"_index":5938,"t":{},"d":{},"k":{},"b":{"124":{"position":[[10195,22]]}}}],["i2c_transaction_busy_delay",{"_index":5921,"t":{},"d":{},"k":{},"b":{"124":{"position":[[8071,27],[9110,27],[10704,27],[11822,27]]},"125":{"position":[[10498,27],[12276,27]]},"138":{"position":[[7941,27],[8997,27],[9901,27],[11056,27]]}}}],["i3c",{"_index":1624,"t":{"87":{"position":[[45,3]]},"88":{"position":[[45,3]]}},"d":{},"k":{},"b":{"70":{"position":[[11957,3],[12002,3],[12048,3],[12445,4],[17417,3]]},"71":{"position":[[35540,3]]},"87":{"position":[[36,4],[55,3],[103,3],[145,3],[846,3],[1203,3],[1643,3],[1911,4],[2512,3],[5148,3],[7095,3],[14513,3],[14593,3],[14823,3],[17269,3],[18826,3],[19318,3]]},"88":{"position":[[1473,3],[1526,3],[1552,3],[1819,3],[1835,3],[2083,3],[4623,3],[6509,3],[7456,3],[7490,3],[7517,3],[7563,3],[7651,3],[16295,3],[16644,3],[16785,3],[16828,3],[16987,3],[18713,3],[20721,3],[20770,3],[20952,3],[21120,3],[21235,3],[21283,3],[21528,3],[21636,4],[22061,3],[22153,3],[22310,3],[22381,3],[22660,3],[23120,3],[23421,3],[24092,3],[25368,3],[25427,3],[26347,5],[26419,3],[26695,3],[30379,3],[30839,3],[31118,3],[31837,3],[33246,3],[33341,3],[35588,3],[35682,3],[36703,3],[36802,3],[38171,3],[38271,3],[41590,3],[42001,3],[42991,3],[43228,3],[43332,3],[43434,3],[43573,3],[43714,3],[44228,3],[44373,3],[46464,3],[46577,3],[46657,3],[46780,3],[46855,3],[46968,3],[49127,4],[49227,4],[49334,4],[49441,4],[49548,4],[49743,3],[50268,3],[50818,3],[52210,3],[53633,3],[61507,3]]},"112":{"position":[[197,3],[227,3],[280,3]]},"115":{"position":[[636,3],[665,4]]},"152":{"position":[[1199,3],[1227,3],[1280,3],[7027,3],[7054,3]]}}}],["i3c_address_assignment_mode_entdaa",{"_index":3915,"t":{},"d":{},"k":{},"b":{"87":{"position":[[9785,36]]},"88":{"position":[[24336,35],[35338,35]]}}}],["i3c_address_assignment_mode_t",{"_index":3836,"t":{},"d":{},"k":{},"b":{"87":{"position":[[597,29],[5765,29],[9049,29],[9261,29],[19341,29],[19405,29]]},"88":{"position":[[699,29],[55647,29]]}}}],["i3c_api_t",{"_index":3829,"t":{},"d":{},"k":{},"b":{"87":{"position":[[388,9],[5075,9],[5121,9],[14327,9]]}}}],["i3c_api_t::clos",{"_index":3937,"t":{},"d":{},"k":{},"b":{"87":{"position":[[13707,17]]},"88":{"position":[[61532,17]]}}}],["i3c_api_t::commandsend",{"_index":3920,"t":{},"d":{},"k":{},"b":{"87":{"position":[[10408,23]]},"88":{"position":[[56843,23]]}}}],["i3c_api_t::devicecfgset",{"_index":3861,"t":{},"d":{},"k":{},"b":{"87":{"position":[[2446,25],[7299,24]]},"88":{"position":[[5656,24],[6184,24]]}}}],["i3c_api_t::deviceselect",{"_index":3906,"t":{},"d":{},"k":{},"b":{"87":{"position":[[8426,24]]},"88":{"position":[[3016,24],[3177,24],[15511,24],[15655,24],[45123,24],[48860,24]]}}}],["i3c_api_t::dynamicaddressassignmentstart",{"_index":3909,"t":{},"d":{},"k":{},"b":{"87":{"position":[[8980,41]]},"88":{"position":[[4151,41],[4417,40],[5791,40],[56018,41]]}}}],["i3c_api_t::en",{"_index":3898,"t":{},"d":{},"k":{},"b":{"87":{"position":[[7021,18]]}}}],["i3c_api_t::ibiread",{"_index":3935,"t":{},"d":{},"k":{},"b":{"87":{"position":[[13200,19],[17714,19]]},"88":{"position":[[3411,19]]}}}],["i3c_api_t::ibiwrit",{"_index":3931,"t":{},"d":{},"k":{},"b":{"87":{"position":[[12622,20]]},"88":{"position":[[6697,19]]}}}],["i3c_api_t::masterdevicetableset",{"_index":3849,"t":{},"d":{},"k":{},"b":{"87":{"position":[[1569,33],[7710,32]]},"88":{"position":[[4283,32]]}}}],["i3c_api_t::open",{"_index":3896,"t":{},"d":{},"k":{},"b":{"87":{"position":[[6611,16],[7190,15],[7539,15],[8168,15],[8734,15],[9466,15],[10212,15],[10725,15],[11415,15],[12298,15],[12924,15],[13481,15],[13918,15]]},"88":{"position":[[44573,15],[51744,16]]}}}],["i3c_api_t::read",{"_index":3929,"t":{},"d":{},"k":{},"b":{"87":{"position":[[11700,16],[17898,16]]},"88":{"position":[[17371,15],[19649,15],[20058,15],[59055,16]]}}}],["i3c_api_t::slavestatusset",{"_index":3916,"t":{},"d":{},"k":{},"b":{"87":{"position":[[9893,26]]},"88":{"position":[[19219,26]]}}}],["i3c_api_t::writ",{"_index":3924,"t":{},"d":{},"k":{},"b":{"87":{"position":[[10896,17]]},"88":{"position":[[17391,16],[19669,16],[20126,16],[58068,17]]}}}],["i3c_b",{"_index":4050,"t":{},"d":{},"k":{},"b":{"88":{"position":[[10758,5],[14094,5],[14341,5],[14373,5],[15117,5],[51717,5]]}}}],["i3c_b_activity_state_entas1",{"_index":4326,"t":{},"d":{},"k":{},"b":{"88":{"position":[[49845,27]]}}}],["i3c_b_activity_state_entas2",{"_index":4327,"t":{},"d":{},"k":{},"b":{"88":{"position":[[49913,27]]}}}],["i3c_b_activity_state_entas3",{"_index":4328,"t":{},"d":{},"k":{},"b":{"88":{"position":[[49979,27]]}}}],["i3c_b_activity_state_t",{"_index":4236,"t":{},"d":{},"k":{},"b":{"88":{"position":[[40834,22],[43140,22],[49577,22],[49634,22]]}}}],["i3c_b_api_t::ibiread",{"_index":4197,"t":{},"d":{},"k":{},"b":{"88":{"position":[[34308,21]]}}}],["i3c_b_api_t::read",{"_index":4176,"t":{},"d":{},"k":{},"b":{"88":{"position":[[28789,18],[29370,17],[29807,17],[39133,18]]}}}],["i3c_b_api_t::writ",{"_index":4180,"t":{},"d":{},"k":{},"b":{"88":{"position":[[29391,18],[29828,18]]}}}],["i3c_b_app_event_notify(i3c_event_address_assignment_complet",{"_index":4164,"t":{},"d":{},"k":{},"b":{"88":{"position":[[25820,62],[28392,62]]}}}],["i3c_b_app_event_notify(i3c_event_command_complet",{"_index":4215,"t":{},"d":{},"k":{},"b":{"88":{"position":[[38034,51],[39289,51]]}}}],["i3c_b_app_event_notify(i3c_event_ibi_read_complet",{"_index":4199,"t":{},"d":{},"k":{},"b":{"88":{"position":[[34983,52]]}}}],["i3c_b_app_event_notify(i3c_event_ibi_write_complet",{"_index":4207,"t":{},"d":{},"k":{},"b":{"88":{"position":[[36564,53]]}}}],["i3c_b_app_event_notify(i3c_event_read_complet",{"_index":4167,"t":{},"d":{},"k":{},"b":{"88":{"position":[[26216,48],[29267,48],[33112,48]]}}}],["i3c_b_app_event_notify(i3c_event_write_complet",{"_index":4165,"t":{},"d":{},"k":{},"b":{"88":{"position":[[25968,49],[29703,49],[32864,49]]}}}],["i3c_b_app_event_wait(i3c_event_address_assignment_complet",{"_index":4150,"t":{},"d":{},"k":{},"b":{"88":{"position":[[24474,60]]}}}],["i3c_b_app_event_wait(i3c_event_command_complet",{"_index":4213,"t":{},"d":{},"k":{},"b":{"88":{"position":[[37649,49]]}}}],["i3c_b_app_event_wait(i3c_event_command_complete);}void",{"_index":4220,"t":{},"d":{},"k":{},"b":{"88":{"position":[[38709,54]]}}}],["i3c_b_app_event_wait(i3c_event_ibi_read_complete);}void",{"_index":4195,"t":{},"d":{},"k":{},"b":{"88":{"position":[[33820,55]]}}}],["i3c_b_app_event_wait(i3c_event_ibi_write_complete);}void",{"_index":4205,"t":{},"d":{},"k":{},"b":{"88":{"position":[[36253,56]]}}}],["i3c_b_app_event_wait(i3c_event_read_complet",{"_index":4161,"t":{},"d":{},"k":{},"b":{"88":{"position":[[25287,49],[27848,46]]}}}],["i3c_b_app_event_wait(i3c_event_read_complete);}void",{"_index":4188,"t":{},"d":{},"k":{},"b":{"88":{"position":[[32645,51]]}}}],["i3c_b_app_event_wait(i3c_event_write_complet",{"_index":4156,"t":{},"d":{},"k":{},"b":{"88":{"position":[[25000,47],[32364,47]]}}}],["i3c_b_app_event_wait(i3c_event_write_complete);}void",{"_index":4174,"t":{},"d":{},"k":{},"b":{"88":{"position":[[28158,52]]}}}],["i3c_b_app_next_read_buffer_get",{"_index":4178,"t":{},"d":{},"k":{},"b":{"88":{"position":[[28951,33],[34473,33]]}}}],["i3c_b_bitrate_mode_i2c_extbr",{"_index":4097,"t":{},"d":{},"k":{},"b":{"88":{"position":[[16566,30],[48973,28]]}}}],["i3c_b_bitrate_mode_i2c_stdbr",{"_index":4096,"t":{},"d":{},"k":{},"b":{"88":{"position":[[16536,29],[32044,30]]}}}],["i3c_b_bitrate_mode_i3c_sdr0_stdbr",{"_index":4152,"t":{},"d":{},"k":{},"b":{"88":{"position":[[24669,35],[49049,33]]}}}],["i3c_b_bitrate_mode_i3c_sdr1_extbr",{"_index":4324,"t":{},"d":{},"k":{},"b":{"88":{"position":[[49149,33]]}}}],["i3c_b_bitrate_mode_i3c_sdr2_stdbr_x2",{"_index":4092,"t":{},"d":{},"k":{},"b":{"88":{"position":[[15826,37],[49249,36]]}}}],["i3c_b_bitrate_mode_i3c_sdr3_extbr_x2",{"_index":4093,"t":{},"d":{},"k":{},"b":{"88":{"position":[[15929,37],[49356,36]]}}}],["i3c_b_bitrate_mode_i3c_sdr4_extbr_x4",{"_index":4094,"t":{},"d":{},"k":{},"b":{"88":{"position":[[16032,37],[49463,36]]}}}],["i3c_b_bitrate_mode_t",{"_index":4089,"t":{},"d":{},"k":{},"b":{"88":{"position":[[15478,20],[16486,20],[40804,20],[45152,20],[48711,20],[48766,20]]}}}],["i3c_b_bitrate_settings_t",{"_index":4223,"t":{},"d":{},"k":{},"b":{"88":{"position":[[39484,24],[41622,24],[41683,24],[46215,24]]}}}],["i3c_b_clock_data_turnaround_10n",{"_index":4337,"t":{},"d":{},"k":{},"b":{"88":{"position":[[51025,32]]}}}],["i3c_b_clock_data_turnaround_11n",{"_index":4338,"t":{},"d":{},"k":{},"b":{"88":{"position":[[51112,32]]}}}],["i3c_b_clock_data_turnaround_12n",{"_index":4339,"t":{},"d":{},"k":{},"b":{"88":{"position":[[51199,32]]}}}],["i3c_b_clock_data_turnaround_9n",{"_index":4336,"t":{},"d":{},"k":{},"b":{"88":{"position":[[50940,31]]}}}],["i3c_b_clock_data_turnaround_extend",{"_index":4340,"t":{},"d":{},"k":{},"b":{"88":{"position":[[51286,36]]}}}],["i3c_b_clock_data_turnaround_t",{"_index":4238,"t":{},"d":{},"k":{},"b":{"88":{"position":[[40901,29],[43807,29],[50652,29],[50716,29]]}}}],["i3c_b_clock_stalling_t",{"_index":4222,"t":{},"d":{},"k":{},"b":{"88":{"position":[[39451,22],[40967,22],[41026,22],[41898,22]]}}}],["i3c_b_data_rate_setting_2mhz",{"_index":4334,"t":{},"d":{},"k":{},"b":{"88":{"position":[[50576,28]]}}}],["i3c_b_data_rate_setting_4mhz",{"_index":4333,"t":{},"d":{},"k":{},"b":{"88":{"position":[[50507,28]]}}}],["i3c_b_data_rate_setting_6mhz",{"_index":4332,"t":{},"d":{},"k":{},"b":{"88":{"position":[[50438,28]]}}}],["i3c_b_data_rate_setting_8mhz",{"_index":4331,"t":{},"d":{},"k":{},"b":{"88":{"position":[[50369,28]]}}}],["i3c_b_data_rate_setting_t",{"_index":4237,"t":{},"d":{},"k":{},"b":{"88":{"position":[[40866,25],[43601,25],[43742,25],[50053,25],[50113,25]]}}}],["i3c_b_device_index_extended_devic",{"_index":4231,"t":{},"d":{},"k":{},"b":{"88":{"position":[[39982,34],[48283,34],[48355,34]]}}}],["i3c_b_error_recovery_version_1",{"_index":4228,"t":{},"d":{},"k":{},"b":{"88":{"position":[[39667,30],[47991,30],[48059,30]]}}}],["i3c_b_error_recovery_version_2",{"_index":4229,"t":{},"d":{},"k":{},"b":{"88":{"position":[[39772,30]]}}}],["i3c_b_error_recovery_version_both",{"_index":4230,"t":{},"d":{},"k":{},"b":{"88":{"position":[[39869,33]]}}}],["i3c_b_event_status_abort",{"_index":4113,"t":{},"d":{},"k":{},"b":{"88":{"position":[[18310,26],[18467,27],[40608,26]]}}}],["i3c_b_event_status_aborted_to_mast",{"_index":4112,"t":{},"d":{},"k":{},"b":{"88":{"position":[[18273,36],[18621,37],[40497,36]]}}}],["i3c_b_event_status_address_head",{"_index":4109,"t":{},"d":{},"k":{},"b":{"88":{"position":[[18187,33],[40249,33]]}}}],["i3c_b_event_status_fram",{"_index":4108,"t":{},"d":{},"k":{},"b":{"88":{"position":[[18162,24],[40183,24]]}}}],["i3c_b_event_status_ibi_nack_dis",{"_index":4234,"t":{},"d":{},"k":{},"b":{"88":{"position":[[40690,36]]}}}],["i3c_b_event_status_nack",{"_index":4110,"t":{},"d":{},"k":{},"b":{"88":{"position":[[18221,23],[40333,23]]}}}],["i3c_b_event_status_overflow",{"_index":4111,"t":{},"d":{},"k":{},"b":{"88":{"position":[[18245,27],[40395,27]]}}}],["i3c_b_event_status_par",{"_index":4107,"t":{},"d":{},"k":{},"b":{"88":{"position":[[18136,25],[40115,25]]}}}],["i3c_b_event_status_success",{"_index":4106,"t":{},"d":{},"k":{},"b":{"88":{"position":[[18109,26],[40027,26],[48484,26],[48548,26]]}}}],["i3c_b_extended_cfg_t",{"_index":4227,"t":{},"d":{},"k":{},"b":{"88":{"position":[[39627,20],[46069,20],[46126,20]]}}}],["i3c_b_extended_cfg_t::slave_command_response_info",{"_index":4115,"t":{},"d":{},"k":{},"b":{"88":{"position":[[18942,51]]}}}],["i3c_b_ibi_control_t",{"_index":4224,"t":{},"d":{},"k":{},"b":{"88":{"position":[[39519,19],[42035,19],[42091,19],[46328,19]]}}}],["i3c_b_instance_ctrl_t",{"_index":4226,"t":{},"d":{},"k":{},"b":{"88":{"position":[[39595,21],[44407,21],[44465,21]]}}}],["i3c_b_master_basic_exampl",{"_index":4136,"t":{},"d":{},"k":{},"b":{"88":{"position":[[22416,26]]}}}],["i3c_b_master_basic_example_callback",{"_index":4162,"t":{},"d":{},"k":{},"b":{"88":{"position":[[25446,35]]}}}],["i3c_b_master_ccc_exampl",{"_index":4208,"t":{},"d":{},"k":{},"b":{"88":{"position":[[36824,24]]}}}],["i3c_b_master_ccc_example_callback",{"_index":4214,"t":{},"d":{},"k":{},"b":{"88":{"position":[[37795,33]]}}}],["i3c_b_master_ibi_basic_exampl",{"_index":4190,"t":{},"d":{},"k":{},"b":{"88":{"position":[[33363,30]]}}}],["i3c_b_master_ibi_basic_example_callback",{"_index":4196,"t":{},"d":{},"k":{},"b":{"88":{"position":[[33876,39]]}}}],["i3c_b_read_buffer_descriptor_t",{"_index":4291,"t":{},"d":{},"k":{},"b":{"88":{"position":[[45523,30],[45638,30]]}}}],["i3c_b_slave_basic_exampl",{"_index":4168,"t":{},"d":{},"k":{},"b":{"88":{"position":[[26453,25]]}}}],["i3c_b_slave_basic_example_callback",{"_index":4175,"t":{},"d":{},"k":{},"b":{"88":{"position":[[28211,34]]}}}],["i3c_b_slave_ccc_exampl",{"_index":4216,"t":{},"d":{},"k":{},"b":{"88":{"position":[[38292,23]]}}}],["i3c_b_slave_ccc_example_callback",{"_index":4221,"t":{},"d":{},"k":{},"b":{"88":{"position":[[38764,32]]}}}],["i3c_b_slave_command_response_info_t",{"_index":4225,"t":{},"d":{},"k":{},"b":{"88":{"position":[[39549,35],[42654,35],[42726,35],[47082,35]]}}}],["i3c_b_slave_ibi_write_basic_exampl",{"_index":4200,"t":{},"d":{},"k":{},"b":{"88":{"position":[[35703,35]]}}}],["i3c_b_slave_ibi_write_basic_example_callback",{"_index":4206,"t":{},"d":{},"k":{},"b":{"88":{"position":[[36310,44]]}}}],["i3c_b_write_buffer_descriptor_t",{"_index":4289,"t":{},"d":{},"k":{},"b":{"88":{"position":[[45405,31]]}}}],["i3c_callback_args_t",{"_index":3827,"t":{},"d":{},"k":{},"b":{"87":{"position":[[338,19],[3304,19],[3360,19],[4330,21],[4847,20]]},"88":{"position":[[25482,20],[28246,20],[32731,20],[33916,20],[36355,20],[37829,20],[38797,20]]}}}],["i3c_callback_args_t::event_statu",{"_index":4104,"t":{},"d":{},"k":{},"b":{"88":{"position":[[17930,33]]}}}],["i3c_callback_args_t::p_slave_info",{"_index":3987,"t":{},"d":{},"k":{},"b":{"87":{"position":[[17480,34]]},"88":{"position":[[25684,34]]}}}],["i3c_callback_args_t::transfer_s",{"_index":4166,"t":{},"d":{},"k":{},"b":{"88":{"position":[[26166,35],[29217,35],[29653,35],[33062,35]]}}}],["i3c_ccc_broadcast_defsvl",{"_index":3949,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15299,25]]}}}],["i3c_ccc_broadcast_disec",{"_index":3942,"t":{},"d":{},"k":{},"b":{"87":{"position":[[14915,23]]}}}],["i3c_ccc_broadcast_entas0",{"_index":3943,"t":{},"d":{},"k":{},"b":{"87":{"position":[[14973,24]]}}}],["i3c_ccc_broadcast_entas1",{"_index":3944,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15024,24]]}}}],["i3c_ccc_broadcast_entas2",{"_index":3945,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15075,24]]}}}],["i3c_ccc_broadcast_entas3",{"_index":3946,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15126,24]]}}}],["i3c_ccc_broadcast_entdaa",{"_index":3948,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15238,24]]}}}],["i3c_ccc_broadcast_enthdr0",{"_index":3953,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15490,25]]}}}],["i3c_ccc_broadcast_enthdr1",{"_index":3955,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15536,25]]}}}],["i3c_ccc_broadcast_enthdr2",{"_index":3956,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15582,25]]}}}],["i3c_ccc_broadcast_enthdr3",{"_index":3957,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15628,25]]}}}],["i3c_ccc_broadcast_enthdr4",{"_index":3958,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15674,25]]}}}],["i3c_ccc_broadcast_enthdr5",{"_index":3959,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15753,25]]}}}],["i3c_ccc_broadcast_enthdr6",{"_index":3960,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15832,25]]}}}],["i3c_ccc_broadcast_enthdr7",{"_index":3961,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15911,25]]}}}],["i3c_ccc_broadcast_enttm",{"_index":3952,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15447,23]]}}}],["i3c_ccc_broadcast_rstdaa",{"_index":3947,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15177,24]]}}}],["i3c_ccc_broadcast_setaasa",{"_index":3964,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16045,25]]}}}],["i3c_ccc_broadcast_setmrl",{"_index":3951,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15399,24]]}}}],["i3c_ccc_broadcast_setmwl",{"_index":3950,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15350,24]]}}}],["i3c_ccc_broadcast_setxtim",{"_index":3962,"t":{},"d":{},"k":{},"b":{"87":{"position":[[15990,26]]}}}],["i3c_ccc_direct_disec",{"_index":3966,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16163,20]]}}}],["i3c_ccc_direct_enec",{"_index":3965,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16110,19]]}}}],["i3c_ccc_direct_entas0",{"_index":3967,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16218,21]]}}}],["i3c_ccc_direct_entas1",{"_index":3968,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16266,21]]}}}],["i3c_ccc_direct_entas2",{"_index":3969,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16314,21]]}}}],["i3c_ccc_direct_entas3",{"_index":3970,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16362,21]]}}}],["i3c_ccc_direct_getaccmst",{"_index":3982,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16974,24]]}}}],["i3c_ccc_direct_getbcr",{"_index":3979,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16811,21]]}}}],["i3c_ccc_direct_getdcr",{"_index":3980,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16868,21]]}}}],["i3c_ccc_direct_getmrl",{"_index":3977,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16722,21]]}}}],["i3c_ccc_direct_getmwl",{"_index":3976,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16676,21]]}}}],["i3c_ccc_direct_getmxd",{"_index":3983,"t":{},"d":{},"k":{},"b":{"87":{"position":[[17024,22]]}}}],["i3c_ccc_direct_getpid",{"_index":3978,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16767,21]]}}}],["i3c_ccc_direct_getstatu",{"_index":3981,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16928,24]]},"88":{"position":[[37040,25]]}}}],["i3c_ccc_direct_getxtim",{"_index":3985,"t":{},"d":{},"k":{},"b":{"87":{"position":[[17128,23]]}}}],["i3c_ccc_direct_rstdaa",{"_index":3971,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16410,21]]}}}],["i3c_ccc_direct_setdasa",{"_index":3972,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16468,22]]}}}],["i3c_ccc_direct_setmrl",{"_index":3975,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16631,21]]}}}],["i3c_ccc_direct_setmwl",{"_index":3974,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16585,21]]}}}],["i3c_ccc_direct_setnewda",{"_index":3973,"t":{},"d":{},"k":{},"b":{"87":{"position":[[16534,23]]}}}],["i3c_ccc_direct_setxtim",{"_index":3984,"t":{},"d":{},"k":{},"b":{"87":{"position":[[17069,23]]}}}],["i3c_cfg_t",{"_index":3828,"t":{},"d":{},"k":{},"b":{"87":{"position":[[368,9],[4122,9],[4168,9],[5272,9],[6655,9],[14240,9]]},"88":{"position":[[67,9],[45970,9],[51594,9]]}}}],["i3c_cfg_t::channel",{"_index":3875,"t":{},"d":{},"k":{},"b":{"87":{"position":[[4537,18]]}}}],["i3c_cfg_t::device_typ",{"_index":3876,"t":{},"d":{},"k":{},"b":{"87":{"position":[[4709,22]]}}}],["i3c_cfg_t::p_callback",{"_index":3877,"t":{},"d":{},"k":{},"b":{"87":{"position":[[4824,22]]}}}],["i3c_cfg_t::p_extend",{"_index":3878,"t":{},"d":{},"k":{},"b":{"87":{"position":[[4993,19]]}}}],["i3c_command_descriptor_t",{"_index":3826,"t":{},"d":{},"k":{},"b":{"87":{"position":[[303,24],[2812,24],[2873,24],[6021,24],[10459,24]]},"88":{"position":[[872,24],[36966,24],[56639,24]]}}}],["i3c_common_command_code_t",{"_index":3832,"t":{},"d":{},"k":{},"b":{"87":{"position":[[483,25],[14683,25],[14743,25]]}}}],["i3c_ctrl_t",{"_index":3831,"t":{},"d":{},"k":{},"b":{"87":{"position":[[449,10],[5244,12],[5323,12],[5378,12],[5485,12],[5619,12],[5737,12],[5904,12],[5993,12],[6089,12],[6196,12],[6301,12],[6422,12],[6510,12],[6628,11],[7040,11],[7324,11],[7743,11],[8451,11],[9022,11],[9920,11],[10432,11],[10914,11],[11717,11],[12643,11],[13220,11],[13725,11],[14164,10],[14432,10],[14485,10]]},"88":{"position":[[36,11],[124,11],[188,11],[304,11],[449,11],[541,11],[668,11],[841,11],[946,11],[1062,11],[1176,11],[1306,11],[1403,11],[51502,10],[52130,10],[52554,10],[53193,10],[54091,10],[54749,10],[55555,10],[56547,10],[57552,10],[58546,10],[59585,10],[60564,10],[61428,10]]}}}],["i3c_device_cfg_t",{"_index":3825,"t":{},"d":{},"k":{},"b":{"87":{"position":[[276,16],[2279,16],[2332,16],[5406,16],[7351,16]]},"88":{"position":[[219,16],[22589,16],[26625,16],[30308,16],[52646,16]]}}}],["i3c_device_protocol_i2c",{"_index":4182,"t":{},"d":{},"k":{},"b":{"88":{"position":[[31165,24]]}}}],["i3c_device_protocol_i3c",{"_index":4010,"t":{},"d":{},"k":{},"b":{"87":{"position":[[19275,23]]},"88":{"position":[[23468,24]]}}}],["i3c_device_protocol_t",{"_index":3835,"t":{},"d":{},"k":{},"b":{"87":{"position":[[566,21],[1821,21],[18983,21],[19039,21]]}}}],["i3c_device_status_t",{"_index":3822,"t":{},"d":{},"k":{},"b":{"87":{"position":[[186,19],[687,19],[743,19],[5932,19],[9947,19]]},"88":{"position":[[480,19],[54183,19]]}}}],["i3c_device_table_cfg_t",{"_index":3824,"t":{},"d":{},"k":{},"b":{"87":{"position":[[243,22],[1376,22],[1435,22],[5536,22],[7793,22]]},"88":{"position":[[358,22],[2474,24],[23044,22],[30763,22],[53370,22]]}}}],["i3c_device_type_slav",{"_index":4005,"t":{},"d":{},"k":{},"b":{"87":{"position":[[18757,21]]}}}],["i3c_device_type_t",{"_index":3834,"t":{},"d":{},"k":{},"b":{"87":{"position":[[539,17],[4280,17],[4691,17],[18526,17],[18578,17]]}}}],["i3c_event_address_assignment_complet",{"_index":3996,"t":{},"d":{},"k":{},"b":{"87":{"position":[[18064,37]]},"88":{"position":[[25761,38],[28333,38]]}}}],["i3c_event_command_complet",{"_index":3997,"t":{},"d":{},"k":{},"b":{"87":{"position":[[18196,26]]},"88":{"position":[[37916,27],[38884,27]]}}}],["i3c_event_entdaa_address_phas",{"_index":4163,"t":{},"d":{},"k":{},"b":{"88":{"position":[[25569,31]]}}}],["i3c_event_hdr_exit_pattern_detect",{"_index":3993,"t":{},"d":{},"k":{},"b":{"87":{"position":[[17980,35]]}}}],["i3c_event_ibi_read_buffer_ful",{"_index":3989,"t":{},"d":{},"k":{},"b":{"87":{"position":[[17582,30]]},"88":{"position":[[34003,31]]}}}],["i3c_event_ibi_read_complet",{"_index":3988,"t":{},"d":{},"k":{},"b":{"87":{"position":[[17517,27]]},"88":{"position":[[34628,28]]}}}],["i3c_event_ibi_write_complet",{"_index":3992,"t":{},"d":{},"k":{},"b":{"87":{"position":[[17917,28]]},"88":{"position":[[36442,29]]}}}],["i3c_event_internal_error",{"_index":4003,"t":{},"d":{},"k":{},"b":{"87":{"position":[[18464,24]]}}}],["i3c_event_read_buffer_ful",{"_index":3991,"t":{},"d":{},"k":{},"b":{"87":{"position":[[17736,26]]},"88":{"position":[[17750,26],[28494,27]]}}}],["i3c_event_read_complet",{"_index":3999,"t":{},"d":{},"k":{},"b":{"87":{"position":[[18309,23]]},"88":{"position":[[26057,24],[29110,24],[32953,24]]}}}],["i3c_event_t",{"_index":3833,"t":{},"d":{},"k":{},"b":{"87":{"position":[[518,11],[3481,11],[17194,11],[17240,11]]}}}],["i3c_event_timeout_detect",{"_index":4000,"t":{},"d":{},"k":{},"b":{"87":{"position":[[18366,26]]}}}],["i3c_event_write_complet",{"_index":3998,"t":{},"d":{},"k":{},"b":{"87":{"position":[[18250,24]]},"88":{"position":[[25922,25],[29542,25],[32818,25]]}}}],["i3c_ibi_type_hot_join",{"_index":4015,"t":{},"d":{},"k":{},"b":{"87":{"position":[[20098,21]]},"88":{"position":[[35099,22]]}}}],["i3c_ibi_type_interrupt",{"_index":4198,"t":{},"d":{},"k":{},"b":{"88":{"position":[[34853,23],[36094,23]]}}}],["i3c_ibi_type_mastership_request",{"_index":4016,"t":{},"d":{},"k":{},"b":{"87":{"position":[[20192,31]]}}}],["i3c_ibi_type_t",{"_index":3837,"t":{},"d":{},"k":{},"b":{"87":{"position":[[636,14],[3862,14],[6329,14],[12670,14],[19863,14],[19912,14]]},"88":{"position":[[1207,14],[59677,14]]}}}],["i3c_instance_ctrl_t",{"_index":3939,"t":{},"d":{},"k":{},"b":{"87":{"position":[[14623,19]]}}}],["i3c_instance_t",{"_index":3830,"t":{},"d":{},"k":{},"b":{"87":{"position":[[408,14],[13975,14],[14026,14]]}}}],["i3c_slave_info_t",{"_index":3823,"t":{},"d":{},"k":{},"b":{"87":{"position":[[216,16],[1077,16],[1130,16],[1288,16],[2712,16],[3662,16]]},"88":{"position":[[44627,16],[44696,16]]}}}],["i3cclk",{"_index":4099,"t":{},"d":{},"k":{},"b":{"88":{"position":[[16795,9]]}}}],["iaq",{"_index":6613,"t":{},"d":{},"k":{},"b":{"133":{"position":[[7335,3],[7395,3],[7436,3],[7495,3],[7548,3],[7599,3],[7658,3],[7725,3],[10738,3],[11176,3],[15310,5],[19639,5],[24534,5]]},"134":{"position":[[1222,3],[1333,3],[1338,3],[1599,3],[1721,3],[1791,3],[1817,3],[1822,3],[7940,3],[8473,3]]}}}],["iaq1stgendatacalcul",{"_index":6737,"t":{},"d":{},"k":{},"b":{"134":{"position":[[4679,22],[7673,22]]}}}],["iaq2ndgendatacalcul",{"_index":6738,"t":{},"d":{},"k":{},"b":{"134":{"position":[[4849,22],[8206,22]]}}}],["iaq_2nd_gen",{"_index":6564,"t":{},"d":{},"k":{},"b":{"133":{"position":[[1713,11],[55548,11]]}}}],["iaq_2nd_gen_ulp",{"_index":6560,"t":{},"d":{},"k":{},"b":{"133":{"position":[[1389,16],[1729,16],[54924,16],[55564,16]]}}}],["ibi",{"_index":3855,"t":{},"d":{},"k":{},"b":{"87":{"position":[[1968,3],[2096,3],[3900,3],[3992,4],[12770,3],[13345,3],[17548,3],[17643,3],[17948,3]]},"88":{"position":[[2267,4],[2588,3],[2631,3],[3230,3],[3470,3],[3503,4],[3554,3],[3575,3],[3984,3],[5194,3],[6645,3],[10964,3],[11136,3],[11309,3],[11482,3],[12216,3],[12293,3],[13636,3],[14718,3],[23571,3],[31316,3],[33498,3],[33777,4],[34688,3],[34947,3],[35896,3],[36527,3],[40731,3],[42189,5],[42364,3],[42485,3],[42607,3],[42922,3],[43534,3],[45391,3],[45734,3],[45952,3],[46409,5],[47467,3],[59964,3],[60879,3]]}}}],["ibi_accept",{"_index":3854,"t":{},"d":{},"k":{},"b":{"87":{"position":[[1939,10]]},"88":{"position":[[23500,11],[31245,11]]}}}],["ibi_address",{"_index":3873,"t":{},"d":{},"k":{},"b":{"87":{"position":[[3939,11]]},"88":{"position":[[34739,11]]}}}],["ibi_buffer_descriptor",{"_index":4293,"t":{},"d":{},"k":{},"b":{"88":{"position":[[45669,21]]}}}],["ibi_control",{"_index":4297,"t":{},"d":{},"k":{},"b":{"88":{"position":[[46349,11]]}}}],["ibi_irq",{"_index":4307,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47458,7]]}}}],["ibi_next_word",{"_index":4288,"t":{},"d":{},"k":{},"b":{"88":{"position":[[45334,13]]}}}],["ibi_payload",{"_index":3858,"t":{},"d":{},"k":{},"b":{"87":{"position":[[2083,11],[2201,11]]},"88":{"position":[[23730,12],[31475,12]]}}}],["ibi_payload_length",{"_index":4265,"t":{},"d":{},"k":{},"b":{"88":{"position":[[43471,18]]}}}],["ibi_transfer_count_fin",{"_index":4295,"t":{},"d":{},"k":{},"b":{"88":{"position":[[45885,24]]}}}],["ibi_typ",{"_index":3872,"t":{},"d":{},"k":{},"b":{"87":{"position":[[3878,8],[6344,9],[12685,9]]},"88":{"position":[[1222,9],[34725,9],[34809,10],[59703,9]]}}}],["ibi_write_buff",{"_index":4203,"t":{},"d":{},"k":{},"b":{"88":{"position":[[36118,17]]}}}],["ibi_write_buffer[example_write_buffer_s",{"_index":4201,"t":{},"d":{},"k":{},"b":{"88":{"position":[[35758,44]]}}}],["ibiread",{"_index":3895,"t":{},"d":{},"k":{},"b":{"87":{"position":[[6414,7],[13150,7]]},"88":{"position":[[17878,7],[19471,8],[33690,7],[34087,7],[34127,7]]}}}],["ibiwrit",{"_index":3894,"t":{},"d":{},"k":{},"b":{"87":{"position":[[6292,8],[12571,8]]},"88":{"position":[[17868,9],[19487,9],[36216,8]]}}}],["ic0_control",{"_index":2716,"t":{},"d":{},"k":{},"b":{"76":{"position":[[12829,11]]}}}],["ic1_control",{"_index":2718,"t":{},"d":{},"k":{},"b":{"76":{"position":[[12896,11]]}}}],["iclk",{"_index":2988,"t":{},"d":{},"k":{},"b":{"79":{"position":[[5659,4],[5689,4]]}}}],["icu",{"_index":3138,"t":{},"d":{},"k":{},"b":{"80":{"position":[[4784,3]]}}}],["id",{"_index":615,"t":{},"d":{},"k":{},"b":{"67":{"position":[[15712,2],[15741,2],[15770,2],[15799,2],[15828,2],[15857,2],[15886,2],[15915,2],[15944,2]]},"71":{"position":[[1500,2],[7615,2],[47443,2]]},"74":{"position":[[1803,2],[1811,3],[1862,2],[1865,6],[4800,3],[5231,3],[9484,2],[9535,3],[9588,3]]},"75":{"position":[[1560,2],[1584,2],[1587,4],[18725,3],[18766,3],[18770,2],[18818,3],[25496,3],[25552,3],[25578,3],[26108,2],[26158,3],[26184,3],[28174,2]]},"87":{"position":[[1276,3],[16805,3]]},"88":{"position":[[4749,3],[5384,3],[6151,3]]},"94":{"position":[[1403,3]]},"101":{"position":[[1438,3]]},"111":{"position":[[884,2],[2135,3]]},"113":{"position":[[486,2]]},"129":{"position":[[2179,3],[3089,2],[4381,3],[7958,2],[16556,3]]},"130":{"position":[[5162,3],[5303,2]]},"133":{"position":[[51758,3]]},"150":{"position":[[12767,3]]},"151":{"position":[[164,3],[3106,3],[3246,3]]},"153":{"position":[[80,4]]},"292":{"position":[[976,2]]}}}],["id/ide/rtr",{"_index":2258,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1628,10]]}}}],["id/mod",{"_index":2386,"t":{},"d":{},"k":{},"b":{"75":{"position":[[19009,7]]}}}],["id_mod",{"_index":2150,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1832,7]]},"75":{"position":[[18901,8],[25655,8],[26302,8]]}}}],["identif",{"_index":6195,"t":{},"d":{},"k":{},"b":{"128":{"position":[[9120,14]]}}}],["identifi",{"_index":1772,"t":{},"d":{},"k":{},"b":{"71":{"position":[[4676,10],[7283,8],[29769,8],[30192,8],[32344,8],[32767,8],[47510,10]]},"85":{"position":[[1287,10],[2380,10]]},"86":{"position":[[1096,10],[2225,10]]},"87":{"position":[[19078,10]]},"93":{"position":[[696,10],[882,11]]},"94":{"position":[[1264,10],[1713,10]]},"101":{"position":[[1299,10],[1695,10]]},"103":{"position":[[1276,10]]},"107":{"position":[[848,8]]},"137":{"position":[[1032,8]]},"144":{"position":[[1275,8]]}}}],["idl",{"_index":637,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16563,5]]},"88":{"position":[[14738,4],[46915,4],[46940,4]]},"106":{"position":[[23608,5],[23733,5]]},"107":{"position":[[9146,5]]},"128":{"position":[[2337,4],[2388,4],[4117,4],[5598,4],[5698,4],[5825,4],[6111,4],[6176,4],[6234,4],[6272,4],[6330,4],[6417,4],[6686,4],[6755,4],[6845,4],[6897,4],[7190,4],[7234,4],[7311,4],[7334,4],[7373,4],[7416,4],[7518,4],[7713,4],[19003,4],[19078,4],[19112,4],[22243,4],[22582,4],[22860,4],[23199,4],[23312,4],[25077,4]]},"135":{"position":[[1038,4],[1068,4],[2603,5],[2904,4],[2921,4],[2953,4],[2981,4],[3010,4],[3052,4],[3071,4],[12456,4],[14385,4],[14552,7],[14624,7]]},"141":{"position":[[1852,5],[10324,4],[10384,4]]},"142":{"position":[[1122,4],[1152,4],[3882,4],[3898,4],[3913,4],[3942,5],[4708,4],[4725,4],[4757,4],[4785,4],[4814,4],[4856,4],[4875,4],[13879,4],[16570,4],[16739,7],[16812,7]]},"150":{"position":[[5365,4],[5463,4]]}}}],["idle/error",{"_index":5391,"t":{},"d":{},"k":{},"b":{"107":{"position":[[1702,10]]}}}],["ierr_irq",{"_index":4311,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47635,8]]}}}],["if((temperature[conversion_count",{"_index":7917,"t":{},"d":{},"k":{},"b":{"146":{"position":[[14373,33]]}}}],["if(conversion_count",{"_index":7911,"t":{},"d":{},"k":{},"b":{"146":{"position":[[12970,19]]}}}],["ignor",{"_index":343,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2929,7]]},"69":{"position":[[7565,7],[8039,7],[23111,7]]},"75":{"position":[[26271,7]]},"113":{"position":[[1748,7]]}}}],["iic",{"_index":3758,"t":{},"d":{},"k":{},"b":{"85":{"position":[[7013,3],[7633,3]]},"86":{"position":[[5162,3]]},"125":{"position":[[4046,3],[6023,3]]}}}],["iic_master_clock_settings_t",{"_index":5954,"t":{},"d":{},"k":{},"b":{"124":{"position":[[12241,27],[12466,27],[12530,27],[13287,27]]}}}],["iic_master_instance_ctrl_t",{"_index":3766,"t":{},"d":{},"k":{},"b":{"85":{"position":[[8764,26]]},"124":{"position":[[7275,26],[10000,26],[12279,26],[12777,26],[12840,26]]},"125":{"position":[[8282,26]]}}}],["iic_master_timeout_mode_short",{"_index":5972,"t":{},"d":{},"k":{},"b":{"124":{"position":[[13923,29]]}}}],["iic_master_timeout_mode_t",{"_index":5956,"t":{},"d":{},"k":{},"b":{"124":{"position":[[12366,25],[13083,25],[13685,25],[13745,25]]}}}],["iic_master_timeout_scl_low_en",{"_index":5974,"t":{},"d":{},"k":{},"b":{"124":{"position":[[14218,34]]}}}],["iic_master_timeout_scl_low_t",{"_index":5957,"t":{},"d":{},"k":{},"b":{"124":{"position":[[12401,28],[13191,28],[14017,28],[14080,28]]}}}],["iic_slave_clock_settings_t",{"_index":6038,"t":{},"d":{},"k":{},"b":{"125":{"position":[[13206,26],[13304,26],[13367,26],[13800,26]]}}}],["iic_slave_instance_ctrl_t",{"_index":3807,"t":{},"d":{},"k":{},"b":{"86":{"position":[[6466,25]]}}}],["illeg",{"_index":5617,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5069,7],[8861,8],[14888,8]]}}}],["illustr",{"_index":3109,"t":{},"d":{},"k":{},"b":{"80":{"position":[[952,11],[1480,11]]},"116":{"position":[[981,12]]}}}],["im33",{"_index":1985,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34294,4],[34861,4]]}}}],["imag",{"_index":5678,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7644,5],[7941,5]]}}}],["immedi",{"_index":1009,"t":{},"d":{},"k":{},"b":{"69":{"position":[[7690,11],[7770,11],[7902,11],[7995,11],[8276,11],[23309,11],[23425,11],[23639,11],[23773,11]]},"71":{"position":[[36477,11],[36767,11],[37228,11],[37518,11]]},"76":{"position":[[16262,12]]},"84":{"position":[[10674,11]]},"128":{"position":[[6293,11],[17168,11]]},"133":{"position":[[6986,11]]},"139":{"position":[[6202,11]]},"140":{"position":[[5011,11]]},"148":{"position":[[5210,11]]}}}],["imped",{"_index":3559,"t":{},"d":{},"k":{},"b":{"83":{"position":[[40625,9]]}}}],["implement",{"_index":250,"t":{},"d":{},"k":{},"b":{"67":{"position":[[428,11],[3750,11],[5226,11],[5827,16],[5848,14],[5876,11],[6032,14],[6271,11],[6663,11],[7076,11],[7415,11],[7811,11],[8284,11],[8778,14],[8857,16],[8878,14],[8906,11],[9075,14],[9373,16],[9394,14],[9422,11],[9649,14],[10017,11],[10672,11],[11217,11]]},"68":{"position":[[1266,10],[26116,15],[30147,15],[31203,10]]},"69":{"position":[[1201,10],[33111,15],[36755,15],[37197,15],[37830,10]]},"71":{"position":[[2040,10],[4527,15],[7145,14],[7219,14],[7686,10],[7804,11],[8341,10],[40079,11]]},"74":{"position":[[370,11],[1994,14],[4114,11],[4579,11],[5042,11],[5415,11],[5775,11],[6181,11],[6721,11],[7770,11]]},"75":{"position":[[844,10],[40388,10]]},"76":{"position":[[1224,10],[2510,11],[15726,10],[16275,10],[18346,10],[18664,10],[19031,10],[19544,10],[20109,10],[20761,10],[21580,10],[22171,10],[22781,10],[22913,11],[23055,14],[25534,10]]},"77":{"position":[[559,10],[5472,10],[5968,10],[6626,10],[7420,10],[8085,10],[8822,10]]},"78":{"position":[[357,11],[1326,11],[2019,11],[2311,11],[2666,11],[3026,11],[3304,11],[3634,11],[4500,11]]},"79":{"position":[[1015,10],[21362,10]]},"80":{"position":[[623,10],[8829,10],[9443,10],[10020,10],[10653,10],[11163,10],[11555,10],[11866,10]]},"81":{"position":[[635,11],[1408,11],[1736,11],[2069,11],[2435,11],[2817,11],[3154,11],[3424,11],[4165,11]]},"82":{"position":[[237,11],[2233,11],[2981,11],[3487,11],[3889,11],[4468,11],[5127,11],[6054,11]]},"83":{"position":[[1630,10],[5699,11],[46556,10],[46759,14],[47775,10],[48136,10],[48515,10],[49081,10],[49526,10],[50321,10],[51268,10],[52420,10],[53045,10],[57260,10],[57813,10]]},"84":{"position":[[1051,10],[2916,11],[10140,10],[10733,10],[11908,10],[12205,10],[12507,10],[12942,10],[13317,10],[13806,10],[14428,10],[14851,10],[15373,10],[15504,11],[15644,14],[17047,10]]},"85":{"position":[[278,11],[1314,15],[2407,15],[3000,14],[4292,11],[4754,11],[5333,11],[5838,11],[6270,11],[6895,11],[7523,11],[7902,11],[8749,11]]},"86":{"position":[[272,11],[1123,15],[2252,15],[2649,14],[3610,11],[4029,11],[4483,11],[5075,11],[5633,11],[6451,11]]},"87":{"position":[[129,15],[5162,11],[6725,11],[7107,11],[7450,11],[8071,11],[8645,11],[9360,11],[10121,11],[10637,11],[11333,11],[12217,11],[12839,11],[13397,11],[13836,11],[14608,11]]},"88":{"position":[[1511,10],[51733,10],[56007,10],[56832,10],[58057,10],[59044,10],[61521,10]]},"89":{"position":[[676,10],[874,10],[5437,10],[6343,10],[6895,10],[7847,10],[8418,10]]},"90":{"position":[[676,10],[874,10],[5062,10],[5893,10],[6445,10],[7397,10],[7968,10]]},"91":{"position":[[693,10],[892,10],[6617,10],[7508,10],[8054,10],[9008,10],[9581,10]]},"92":{"position":[[1505,10],[29307,10],[29906,10],[30747,10],[31774,10],[32801,10],[33740,10],[34386,10],[35213,10],[36395,10],[37703,10],[38947,10],[39887,10]]},"93":{"position":[[1429,11],[3189,11],[3436,11],[3714,11],[4030,11],[4429,11],[4800,11],[5176,11],[5520,11],[5924,11],[6481,11],[6895,11],[7425,11],[7794,11],[8833,11]]},"94":{"position":[[316,11],[1291,15],[1740,15],[2860,11],[3288,11],[3834,11],[4474,11],[5293,11]]},"95":{"position":[[526,10],[2254,10],[2958,10],[4200,10]]},"96":{"position":[[566,10],[1941,10],[3501,10]]},"97":{"position":[[370,10],[1685,10],[2277,10]]},"98":{"position":[[521,10],[2189,10],[2889,10],[4126,10]]},"99":{"position":[[516,10],[2219,10],[2915,10],[4147,10]]},"100":{"position":[[558,10],[1908,10],[3454,10]]},"101":{"position":[[337,11],[1326,15],[1722,15],[2956,11],[3572,11],[4211,11],[5120,11]]},"102":{"position":[[364,10],[1654,10],[2238,10]]},"103":{"position":[[306,11],[1303,15],[2086,11],[2518,11],[2897,11],[3806,11]]},"104":{"position":[[511,10],[2154,10],[2846,10],[4073,10]]},"105":{"position":[[1460,10],[4863,11],[28249,10],[28288,14],[29021,10],[29469,10],[29926,10],[30745,10],[32633,10],[33659,10],[34262,10],[38164,10],[38615,10]]},"106":{"position":[[763,10],[20568,10],[21666,10],[22458,10],[23273,10],[24391,10],[24781,10],[25687,10]]},"107":{"position":[[181,15],[2779,11],[3682,11],[4340,11],[4857,11],[5219,11],[5807,11],[6170,11],[6626,11],[7633,11]]},"108":{"position":[[606,10],[5775,10],[6766,10],[7598,10],[8123,10],[8511,10],[9073,10]]},"109":{"position":[[231,11],[2161,11],[2904,11],[3326,11],[3836,11],[4418,11],[4817,11],[5072,11],[5835,11]]},"110":{"position":[[143,10],[287,10],[420,10]]},"112":{"position":[[163,10],[265,10],[414,10],[628,10],[833,10],[1002,10],[1186,10],[1398,10],[1601,10],[1768,10],[1916,10],[2041,10],[2163,10],[2304,10],[2420,10],[2536,10],[2685,10],[2789,10],[2878,9],[2934,10]]},"113":{"position":[[1218,14],[14273,12]]},"114":{"position":[[135,10],[264,10],[406,10]]},"115":{"position":[[92,11]]},"116":{"position":[[98,10]]},"117":{"position":[[121,10],[227,10]]},"119":{"position":[[112,9],[163,10],[273,9],[324,10],[421,9],[474,10]]},"120":{"position":[[180,10]]},"121":{"position":[[145,10],[261,10]]},"122":{"position":[[137,10],[254,10],[368,10],[514,10],[642,10],[755,10]]},"123":{"position":[[151,10]]},"124":{"position":[[1058,10],[19791,10]]},"125":{"position":[[688,10],[1146,11],[18303,10]]},"126":{"position":[[196,11],[2187,11],[2480,11],[2764,11],[3149,11],[3611,11],[4197,11]]},"127":{"position":[[168,10],[327,10],[519,10],[711,10],[934,10],[1157,9],[1213,10],[1289,14],[3981,14],[7416,10],[8022,10],[8645,10],[9275,10],[9879,10]]},"128":{"position":[[1658,12],[2520,15],[10833,15],[10939,10],[14987,9],[17824,12],[17914,14],[17996,11],[19420,11],[22490,14],[23792,14]]},"129":{"position":[[159,10],[309,10],[590,10],[778,10],[1040,10],[1348,10],[1919,10],[2260,10],[2619,10],[2715,9],[2766,10],[2859,14],[5471,14],[11555,10],[12118,10],[12674,10],[13229,10],[13961,10],[14630,10],[15701,10],[16637,10],[17496,10]]},"130":{"position":[[155,11],[2958,11],[3279,11],[3584,11],[4014,11],[4405,11],[4781,11],[5166,11],[5508,11],[5765,11],[6481,11]]},"131":{"position":[[163,10],[313,10],[889,10],[1290,10],[1763,10],[2025,10],[2115,9],[2166,10],[2259,14],[9661,14],[16289,10],[16944,10],[17795,10],[18620,10],[19622,10],[20446,10]]},"132":{"position":[[155,11],[3211,11],[3539,11],[3826,11],[4130,11],[4560,11],[4907,11],[5623,11]]},"133":{"position":[[280,10],[463,10],[656,10],[872,10],[1171,10],[1534,10],[1871,10],[2244,10],[2623,10],[2994,10],[3373,10],[3753,10],[4132,10],[4501,10],[4682,10],[4766,9],[4819,10],[5640,14],[11142,14],[51518,10],[52125,10],[52700,10],[53294,10],[54067,10],[55069,10],[55706,10],[56642,10],[57492,10],[58329,10],[59180,10],[60031,10],[60881,10],[61715,10],[62185,10]]},"134":{"position":[[163,11],[6293,11],[6625,11],[6916,11],[7207,11],[7511,11],[7975,11],[8508,11],[9020,11],[9553,11],[10087,11],[10620,11],[11128,11],[11588,11],[11977,11],[12248,11],[12981,11]]},"135":{"position":[[900,10],[16894,10],[18095,10],[19252,10],[20459,10],[21312,10],[23303,10]]},"136":{"position":[[1120,10],[6157,14],[11189,10],[11809,10],[12204,10],[12542,15],[12897,10],[13681,10],[14313,10],[15090,10],[15714,10],[16604,10],[17328,10],[18133,10]]},"137":{"position":[[248,11],[3702,11],[4943,11],[5229,11],[5487,11],[5807,11],[6240,11],[6651,11],[7092,11],[7483,11],[7855,11],[8358,11],[8857,11],[9817,11]]},"138":{"position":[[1043,10],[18546,10]]},"139":{"position":[[1196,10],[18275,10],[19388,10],[20625,10],[21830,10],[22596,10],[23146,10],[23998,10],[26389,10],[27270,10]]},"140":{"position":[[1217,10],[16894,10],[17874,10],[18797,10],[19688,10],[20452,10],[21000,10],[21850,10],[24219,10],[25241,10]]},"141":{"position":[[136,11],[3530,11],[3942,11],[4670,11],[5391,11],[6400,11],[6999,11],[7771,11]]},"142":{"position":[[936,10],[18729,10],[20087,10],[21145,10],[22253,10],[23007,10],[25042,10]]},"143":{"position":[[190,11],[3145,14],[3594,15],[4982,11],[5378,11],[6139,11],[6603,11],[7093,11],[7475,11],[8002,11],[8518,11],[8836,11],[9080,11],[9354,14],[9382,11],[9753,11],[10018,11],[10814,11]]},"144":{"position":[[433,11],[3470,11],[4639,11],[5058,11],[5365,11],[5692,11],[6008,11],[6331,11],[6703,14],[6755,11],[7451,11],[7749,14],[7973,11],[8442,11],[9017,11],[9668,11],[10499,11]]},"145":{"position":[[151,11],[3614,11],[4692,11],[5167,11],[5735,11],[6572,11],[7139,11],[7586,11],[8196,11],[8554,11],[8963,11],[9401,11],[10468,11]]},"146":{"position":[[1311,10],[17693,15],[19083,15],[21613,15],[22948,15],[23462,15],[24095,10]]},"147":{"position":[[443,11],[4673,11],[5444,11],[6162,11],[6676,11],[7085,11],[7456,11],[7975,11],[8514,11],[8866,11],[9735,11]]},"148":{"position":[[741,10],[9875,10],[10811,10],[11650,10],[12335,10],[13124,10],[13882,10],[14705,10]]},"149":{"position":[[258,11],[2306,11],[3277,11],[3575,11],[3856,11],[4223,11],[4558,11],[4933,11],[5433,11],[6439,11]]},"150":{"position":[[1350,10],[19218,10],[19887,10],[20610,10],[21149,10],[21607,10],[22099,10],[22520,10],[23237,10],[24263,10],[25091,10],[25708,10],[26308,10],[27105,10]]},"151":{"position":[[2019,9]]},"152":{"position":[[587,10],[729,10],[868,10],[996,10],[1168,10],[1265,10],[1409,10],[1618,10],[1818,10],[1982,10],[2161,10],[2368,10],[2566,10],[2728,10],[2871,10],[2991,10],[3108,10],[3244,10],[3355,10],[3466,10],[3610,10],[3709,10],[3793,9],[3849,10],[4007,10],[4131,10],[4268,10],[4405,10],[4506,10],[4701,9],[4752,10],[4857,9],[4908,10],[5000,9],[5053,10],[5253,10],[5407,10],[5518,10],[5663,10],[5775,10],[5884,10],[6025,10],[6148,10],[6256,10],[6412,10],[6529,11]]}}}],["impli",{"_index":35,"t":{},"d":{},"k":{},"b":{"0":{"position":[[519,8]]},"75":{"position":[[22554,6]]}}}],["implicitli",{"_index":56,"t":{},"d":{},"k":{},"b":{"0":{"position":[[979,11]]}}}],["import",{"_index":2840,"t":{},"d":{},"k":{},"b":{"77":{"position":[[3044,9],[3072,9]]}}}],["impos",{"_index":6140,"t":{},"d":{},"k":{},"b":{"128":{"position":[[1799,6],[2243,7]]}}}],["improp",{"_index":5904,"t":{},"d":{},"k":{},"b":{"124":{"position":[[5958,8]]},"138":{"position":[[5936,8]]}}}],["improv",{"_index":2425,"t":{},"d":{},"k":{},"b":{"75":{"position":[[21275,9],[21607,9]]},"88":{"position":[[1613,7],[7137,8],[19379,7]]},"128":{"position":[[5276,7]]},"133":{"position":[[7136,7],[7580,8],[7706,8],[8484,7]]},"135":{"position":[[6076,7]]},"138":{"position":[[7094,11]]},"142":{"position":[[6816,7],[6956,7],[7405,8]]}}}],["in,out]p_ctrlpoint",{"_index":2175,"t":{},"d":{},"k":{},"b":{"74":{"position":[[4177,21]]},"141":{"position":[[3594,21]]},"145":{"position":[[4743,21],[5225,21]]},"147":{"position":[[4747,21]]}}}],["in,out]remaining_bytespoint",{"_index":7962,"t":{},"d":{},"k":{},"b":{"147":{"position":[[8998,30]]}}}],["in/fad",{"_index":5650,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6561,7]]}}}],["in]address_assignment_modeth",{"_index":3912,"t":{},"d":{},"k":{},"b":{"87":{"position":[[9511,30]]}}}],["in]address_modeaddress",{"_index":3753,"t":{},"d":{},"k":{},"b":{"85":{"position":[[6494,26]]}}}],["in]bankth",{"_index":7633,"t":{},"d":{},"k":{},"b":{"143":{"position":[[9481,11]]}}}],["in]baud_rate_error_x_1000.h",{"_index":7705,"t":{},"d":{},"k":{},"b":{"144":{"position":[[417,15]]}}}],["r_adc",{"_index":293,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1501,5]]}}}],["r_adc_",{"_index":169,"t":{"3":{"position":[[45,7]]},"69":{"position":[[73,9]]}},"d":{},"k":{},"b":{"67":{"position":[[510,9]]},"69":{"position":[[2065,7],[2373,7],[2463,8]]},"110":{"position":[[205,9]]}}}],["r_adc_b",{"_index":298,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1615,8]]}}}],["r_adc_c",{"_index":211,"t":{"50":{"position":[[45,7]]},"68":{"position":[[73,9]]}},"d":{},"k":{},"b":{"67":{"position":[[472,9]]},"68":{"position":[[2600,7],[2898,9],[2980,10]]},"110":{"position":[[78,9]]}}}],["r_adc_c)driv",{"_index":8343,"t":{},"d":{},"k":{},"b":{"152":{"position":[[666,15]]}}}],["r_adc_c_calibr",{"_index":458,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8921,19]]},"68":{"position":[[941,17],[30177,19],[30236,17]]}}}],["r_adc_c_callbackset",{"_index":471,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10032,21]]},"68":{"position":[[1020,19],[30600,21],[30661,19]]}}}],["r_adc_c_callbackset(g_adc0.p_ctrl",{"_index":817,"t":{},"d":{},"k":{},"b":{"68":{"position":[[12884,34],[15751,34]]}}}],["r_adc_c_clos",{"_index":483,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10687,15]]},"68":{"position":[[793,13],[29256,15],[29311,13]]}}}],["r_adc_c_infoget",{"_index":494,"t":{},"d":{},"k":{},"b":{"67":{"position":[[11232,17]]},"68":{"position":[[181,15],[24419,17],[24476,15]]}}}],["r_adc_c_offsetset",{"_index":464,"t":{},"d":{},"k":{},"b":{"67":{"position":[[9437,19]]},"68":{"position":[[840,17],[29663,19],[29722,17]]}}}],["r_adc_c_open",{"_index":395,"t":{},"d":{},"k":{},"b":{"67":{"position":[[5241,14]]},"68":{"position":[[23,12],[23180,14],[23234,12],[25316,12]]}}}],["r_adc_c_open(&g_adc0_ctrl",{"_index":776,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9892,26],[12586,26],[15453,26]]}}}],["r_adc_c_read",{"_index":435,"t":{},"d":{},"k":{},"b":{"67":{"position":[[7826,14]]},"68":{"position":[[513,12],[27125,14],[27179,12]]}}}],["r_adc_c_read(&g_adc0_ctrl",{"_index":785,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10668,26],[12374,26],[15241,26]]}}}],["r_adc_c_read32",{"_index":447,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8299,16]]},"68":{"position":[[611,14],[27772,16],[27828,14]]}}}],["r_adc_c_samplestatecountset",{"_index":642,"t":{},"d":{},"k":{},"b":{"68":{"position":[[711,27],[9028,29],[9148,29],[28453,29],[28522,27]]}}}],["r_adc_c_scancfg",{"_index":409,"t":{},"d":{},"k":{},"b":{"67":{"position":[[5891,17]]},"68":{"position":[[99,15],[9586,16],[23809,17],[23866,15],[25294,15],[28978,16]]}}}],["r_adc_c_scancfg(&g_adc0_ctrl",{"_index":779,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10072,29],[12766,29],[15633,29]]}}}],["r_adc_c_scangroupstart",{"_index":420,"t":{},"d":{},"k":{},"b":{"67":{"position":[[6678,24],[7091,24]]},"68":{"position":[[305,22],[25678,24],[25742,22]]}}}],["r_adc_c_scanstart",{"_index":416,"t":{},"d":{},"k":{},"b":{"67":{"position":[[6286,19]]},"68":{"position":[[254,17],[10211,20],[10290,20],[25095,19],[25154,17]]}}}],["r_adc_c_scanstart(&g_adc0_ctrl",{"_index":780,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10324,32],[13571,32],[16342,32]]}}}],["r_adc_c_scanstop",{"_index":641,"t":{},"d":{},"k":{},"b":{"68":{"position":[[388,16],[5519,18],[26146,18],[26204,16]]}}}],["r_adc_c_statusget",{"_index":429,"t":{},"d":{},"k":{},"b":{"67":{"position":[[7430,19]]},"68":{"position":[[438,17],[8735,17],[26578,19],[26637,17]]}}}],["r_adc_c_statusget(&g_adc0_ctrl",{"_index":783,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10542,31]]}}}],["r_adc_e)driv",{"_index":8344,"t":{},"d":{},"k":{},"b":{"152":{"position":[[788,15]]}}}],["r_adc_e_calibr",{"_index":459,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8941,19]]},"69":{"position":[[859,17],[36785,19],[36844,17]]}}}],["r_adc_e_callbackset",{"_index":472,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10054,21]]},"69":{"position":[[938,19],[37227,21],[37288,19]]}}}],["r_adc_e_clos",{"_index":484,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10703,15]]},"69":{"position":[[711,13],[35853,15],[35908,13]]}}}],["r_adc_e_infoget",{"_index":495,"t":{},"d":{},"k":{},"b":{"67":{"position":[[11250,17]]},"69":{"position":[[181,15],[30846,17],[30903,15]]}}}],["r_adc_e_offsetset",{"_index":465,"t":{},"d":{},"k":{},"b":{"67":{"position":[[9457,19]]},"69":{"position":[[758,17],[36260,19],[36319,17]]}}}],["r_adc_e_open",{"_index":396,"t":{},"d":{},"k":{},"b":{"67":{"position":[[5256,14]]},"69":{"position":[[23,12],[29268,14],[29322,12],[31926,12],[32302,12],[33472,12]]}}}],["r_adc_e_open(&g_adc0_ctrl",{"_index":1060,"t":{},"d":{},"k":{},"b":{"69":{"position":[[13774,26],[15196,26],[17791,26]]},"83":{"position":[[26713,26]]}}}],["r_adc_e_read",{"_index":436,"t":{},"d":{},"k":{},"b":{"67":{"position":[[7841,14]]},"69":{"position":[[513,12],[14841,12],[34525,14],[34579,12]]}}}],["r_adc_e_read(&g_adc0_ctrl",{"_index":1065,"t":{},"d":{},"k":{},"b":{"69":{"position":[[14532,26],[15898,26],[16003,26]]}}}],["r_adc_e_read32",{"_index":448,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8316,16]]},"69":{"position":[[611,14],[35172,16],[35228,14]]}}}],["r_adc_e_scancfg",{"_index":410,"t":{},"d":{},"k":{},"b":{"67":{"position":[[5909,17]]},"69":{"position":[[99,15],[13375,16],[30238,17],[30295,15],[32280,15]]}}}],["r_adc_e_scancfg(&g_adc0_ctrl",{"_index":1062,"t":{},"d":{},"k":{},"b":{"69":{"position":[[13945,29],[15381,29],[18090,29]]},"83":{"position":[[26884,29]]}}}],["r_adc_e_scangroupstart",{"_index":421,"t":{},"d":{},"k":{},"b":{"67":{"position":[[6703,24],[7116,24]]},"69":{"position":[[305,22],[32666,24],[32730,22]]}}}],["r_adc_e_scanstart",{"_index":417,"t":{},"d":{},"k":{},"b":{"67":{"position":[[6306,19]]},"69":{"position":[[254,17],[14075,20],[14154,20],[31647,19],[31706,17]]}}}],["r_adc_e_scanstart(&g_adc0_ctrl",{"_index":1063,"t":{},"d":{},"k":{},"b":{"69":{"position":[[14188,32],[15514,32],[18293,32]]},"83":{"position":[[26977,32]]}}}],["r_adc_e_scanstop",{"_index":961,"t":{},"d":{},"k":{},"b":{"69":{"position":[[388,16],[10757,18],[33141,18],[33199,16]]}}}],["r_adc_e_statusget",{"_index":430,"t":{},"d":{},"k":{},"b":{"67":{"position":[[7450,19]]},"69":{"position":[[438,17],[33935,19],[33994,17]]}}}],["r_adc_e_statusget(&g_adc0_ctrl",{"_index":1064,"t":{},"d":{},"k":{},"b":{"69":{"position":[[14406,31]]}}}],["r_bsp_bypassmodecfg",{"_index":1308,"t":{},"d":{},"k":{},"b":{"70":{"position":[[959,19],[17437,21],[17509,19]]}}}],["r_bsp_cfg.h",{"_index":4382,"t":{},"d":{},"k":{},"b":{"89":{"position":[[5962,12]]},"91":{"position":[[7133,12]]}}}],["r_bsp_clockdividerset",{"_index":1695,"t":{},"d":{},"k":{},"b":{"71":{"position":[[621,21],[42663,23],[42726,21]]}}}],["r_bsp_clockselectorset",{"_index":1691,"t":{},"d":{},"k":{},"b":{"71":{"position":[[529,22],[41811,24],[41875,22]]}}}],["r_bsp_ethernetmodecfg",{"_index":1293,"t":{},"d":{},"k":{},"b":{"70":{"position":[[393,21],[15517,23],[15591,21]]}}}],["r_bsp_ethernetvoltagemodecfg",{"_index":1303,"t":{},"d":{},"k":{},"b":{"70":{"position":[[750,28],[16713,30],[16794,28]]}}}],["r_bsp_groupirqwrit",{"_index":1703,"t":{},"d":{},"k":{},"b":{"71":{"position":[[835,19],[46300,21],[46361,19]]}}}],["r_bsp_i3ccontrolcfg",{"_index":1305,"t":{},"d":{},"k":{},"b":{"70":{"position":[[867,19],[17101,21],[17173,19]]}}}],["r_bsp_module_start",{"_index":1925,"t":{},"d":{},"k":{},"b":{"71":{"position":[[14604,18],[14660,18]]}}}],["r_bsp_module_start(fsp_ip_poeg",{"_index":3372,"t":{},"d":{},"k":{},"b":{"83":{"position":[[21462,31]]}}}],["r_bsp_module_start(ip",{"_index":1883,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12032,22]]}}}],["r_bsp_module_start_fsp_ip_adc",{"_index":1937,"t":{},"d":{},"k":{},"b":{"71":{"position":[[18149,29],[18216,29]]}}}],["r_bsp_module_start_fsp_ip_adc(ip",{"_index":1892,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12402,33]]}}}],["r_bsp_module_start_fsp_ip_canfd",{"_index":1935,"t":{},"d":{},"k":{},"b":{"71":{"position":[[17246,31],[17315,31]]}}}],["r_bsp_module_start_fsp_ip_canfd(ip",{"_index":1890,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12301,35]]}}}],["r_bsp_module_start_fsp_ip_dmac",{"_index":1953,"t":{},"d":{},"k":{},"b":{"71":{"position":[[25325,30],[25393,30]]}}}],["r_bsp_module_start_fsp_ip_dmac(ip",{"_index":1908,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13186,34]]}}}],["r_bsp_module_start_fsp_ip_gpt",{"_index":1933,"t":{},"d":{},"k":{},"b":{"71":{"position":[[16351,29],[16418,29]]}}}],["r_bsp_module_start_fsp_ip_gpt(ip",{"_index":1888,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12204,33]]}}}],["r_bsp_module_start_fsp_ip_gtm",{"_index":1931,"t":{},"d":{},"k":{},"b":{"71":{"position":[[15456,29],[15523,29]]}}}],["r_bsp_module_start_fsp_ip_gtm(ip",{"_index":1886,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12107,33]]}}}],["r_bsp_module_start_fsp_ip_mhu",{"_index":1939,"t":{},"d":{},"k":{},"b":{"71":{"position":[[19044,29],[19111,29]]}}}],["r_bsp_module_start_fsp_ip_mhu(ip",{"_index":1894,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12499,33]]}}}],["r_bsp_module_start_fsp_ip_mtu3",{"_index":1957,"t":{},"d":{},"k":{},"b":{"71":{"position":[[27119,30],[27187,30]]}}}],["r_bsp_module_start_fsp_ip_mtu3(ip",{"_index":1912,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13382,34]]}}}],["r_bsp_module_start_fsp_ip_poeg",{"_index":1941,"t":{},"d":{},"k":{},"b":{"71":{"position":[[19939,30],[20007,30]]}}}],["r_bsp_module_start_fsp_ip_poeg(ip",{"_index":1896,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12596,34]]}}}],["r_bsp_module_start_fsp_ip_ri",{"_index":1943,"t":{},"d":{},"k":{},"b":{"71":{"position":[[20838,30],[20906,30]]}}}],["r_bsp_module_start_fsp_ip_riic(ip",{"_index":1898,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12695,34]]}}}],["r_bsp_module_start_fsp_ip_rspi",{"_index":1947,"t":{},"d":{},"k":{},"b":{"71":{"position":[[22632,30],[22700,30]]}}}],["r_bsp_module_start_fsp_ip_rspi(ip",{"_index":1902,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12891,34]]}}}],["r_bsp_module_start_fsp_ip_sci",{"_index":1945,"t":{},"d":{},"k":{},"b":{"71":{"position":[[21737,29],[21804,29]]}}}],["r_bsp_module_start_fsp_ip_sci(ip",{"_index":1900,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12794,33]]}}}],["r_bsp_module_start_fsp_ip_scif",{"_index":1951,"t":{},"d":{},"k":{},"b":{"71":{"position":[[24426,30],[24494,30]]}}}],["r_bsp_module_start_fsp_ip_scif(ip",{"_index":1906,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13087,34]]}}}],["r_bsp_module_start_fsp_ip_tsu",{"_index":1949,"t":{},"d":{},"k":{},"b":{"71":{"position":[[23531,29],[23598,29]]}}}],["r_bsp_module_start_fsp_ip_tsu(ip",{"_index":1904,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12990,33]]}}}],["r_bsp_module_start_fsp_ip_wdt",{"_index":1955,"t":{},"d":{},"k":{},"b":{"71":{"position":[[26224,29],[26291,29]]}}}],["r_bsp_module_start_fsp_ip_wdt(ip",{"_index":1910,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13285,33]]}}}],["r_bsp_module_stop",{"_index":1930,"t":{},"d":{},"k":{},"b":{"71":{"position":[[15031,17],[15086,17]]}}}],["r_bsp_module_stop(ip",{"_index":1885,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12070,21]]}}}],["r_bsp_module_stop_fsp_ip_adc",{"_index":1938,"t":{},"d":{},"k":{},"b":{"71":{"position":[[18597,28],[18663,28]]}}}],["r_bsp_module_stop_fsp_ip_adc(ip",{"_index":1893,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12451,32]]}}}],["r_bsp_module_stop_fsp_ip_canfd",{"_index":1936,"t":{},"d":{},"k":{},"b":{"71":{"position":[[17698,30],[17766,30]]}}}],["r_bsp_module_stop_fsp_ip_canfd(ip",{"_index":1891,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12352,34]]}}}],["r_bsp_module_stop_fsp_ip_dmac",{"_index":1954,"t":{},"d":{},"k":{},"b":{"71":{"position":[[25775,29],[25842,29]]}}}],["r_bsp_module_stop_fsp_ip_dmac(ip",{"_index":1909,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13236,33]]}}}],["r_bsp_module_stop_fsp_ip_gpt",{"_index":1934,"t":{},"d":{},"k":{},"b":{"71":{"position":[[16799,28],[16865,28]]}}}],["r_bsp_module_stop_fsp_ip_gpt(ip",{"_index":1889,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12253,32]]}}}],["r_bsp_module_stop_fsp_ip_gtm",{"_index":1932,"t":{},"d":{},"k":{},"b":{"71":{"position":[[15904,28],[15970,28]]}}}],["r_bsp_module_stop_fsp_ip_gtm(ip",{"_index":1887,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12156,32]]}}}],["r_bsp_module_stop_fsp_ip_mhu",{"_index":1940,"t":{},"d":{},"k":{},"b":{"71":{"position":[[19492,28],[19558,28]]}}}],["r_bsp_module_stop_fsp_ip_mhu(ip",{"_index":1895,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12548,32]]}}}],["r_bsp_module_stop_fsp_ip_mtu3",{"_index":1958,"t":{},"d":{},"k":{},"b":{"71":{"position":[[27569,29],[27636,29]]}}}],["r_bsp_module_stop_fsp_ip_mtu3(ip",{"_index":1913,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13432,33]]}}}],["r_bsp_module_stop_fsp_ip_poeg",{"_index":1942,"t":{},"d":{},"k":{},"b":{"71":{"position":[[20389,29],[20456,29]]}}}],["r_bsp_module_stop_fsp_ip_poeg(ip",{"_index":1897,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12646,33]]}}}],["r_bsp_module_stop_fsp_ip_ri",{"_index":1944,"t":{},"d":{},"k":{},"b":{"71":{"position":[[21288,29],[21355,29]]}}}],["r_bsp_module_stop_fsp_ip_riic(ip",{"_index":1899,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12745,33]]}}}],["r_bsp_module_stop_fsp_ip_rspi",{"_index":1948,"t":{},"d":{},"k":{},"b":{"71":{"position":[[23082,29],[23149,29]]}}}],["r_bsp_module_stop_fsp_ip_rspi(ip",{"_index":1903,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12941,33]]}}}],["r_bsp_module_stop_fsp_ip_sci",{"_index":1946,"t":{},"d":{},"k":{},"b":{"71":{"position":[[22185,28],[22251,28]]}}}],["r_bsp_module_stop_fsp_ip_sci(ip",{"_index":1901,"t":{},"d":{},"k":{},"b":{"71":{"position":[[12843,32]]}}}],["r_bsp_module_stop_fsp_ip_scif",{"_index":1952,"t":{},"d":{},"k":{},"b":{"71":{"position":[[24876,29],[24943,29]]}}}],["r_bsp_module_stop_fsp_ip_scif(ip",{"_index":1907,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13137,33]]}}}],["r_bsp_module_stop_fsp_ip_tsu",{"_index":1950,"t":{},"d":{},"k":{},"b":{"71":{"position":[[23979,28],[24045,28]]}}}],["r_bsp_module_stop_fsp_ip_tsu(ip",{"_index":1905,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13039,32]]}}}],["r_bsp_module_stop_fsp_ip_wdt",{"_index":1956,"t":{},"d":{},"k":{},"b":{"71":{"position":[[26672,28],[26738,28]]}}}],["r_bsp_module_stop_fsp_ip_wdt(ip",{"_index":1911,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13334,32]]}}}],["r_bsp_mstp_start",{"_index":1959,"t":{},"d":{},"k":{},"b":{"71":{"position":[[28018,16],[28072,16]]}}}],["r_bsp_mstp_start(ip",{"_index":1914,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13481,20]]}}}],["r_bsp_mstp_stop",{"_index":1961,"t":{},"d":{},"k":{},"b":{"71":{"position":[[28447,15],[28500,15]]}}}],["r_bsp_mstp_stop(ip",{"_index":1915,"t":{},"d":{},"k":{},"b":{"71":{"position":[[13522,19]]}}}],["r_bsp_oenaccessdis",{"_index":1292,"t":{},"d":{},"k":{},"b":{"70":{"position":[[340,22],[15306,24],[15381,22]]}}}],["r_bsp_oenaccessen",{"_index":1291,"t":{},"d":{},"k":{},"b":{"70":{"position":[[288,21],[15098,23],[15172,21]]}}}],["r_bsp_pinaccessdis",{"_index":1290,"t":{},"d":{},"k":{},"b":{"70":{"position":[[235,22],[14761,24],[14836,22]]}}}],["r_bsp_pinaccessen",{"_index":1289,"t":{},"d":{},"k":{},"b":{"70":{"position":[[183,21],[14427,23],[14501,21]]}}}],["r_bsp_pinread",{"_index":1285,"t":{},"d":{},"k":{},"b":{"70":{"position":[[38,13],[13693,15],[13763,13]]}}}],["r_bsp_pinwrit",{"_index":1287,"t":{},"d":{},"k":{},"b":{"70":{"position":[[99,14],[13997,16],[14064,14]]}}}],["r_bsp_pinwrite(slave_select_line_1",{"_index":6818,"t":{},"d":{},"k":{},"b":{"135":{"position":[[9441,35],[9846,35],[10271,35]]},"142":{"position":[[10442,35],[10855,35],[11289,35]]}}}],["r_bsp_pinwrite(slave_select_line_2",{"_index":6819,"t":{},"d":{},"k":{},"b":{"135":{"position":[[9539,35],[10502,35],[10927,35]]},"142":{"position":[[10540,35],[11520,35],[11954,35]]}}}],["r_bsp_qspivoltagemodecfg",{"_index":1299,"t":{},"d":{},"k":{},"b":{"70":{"position":[[596,24],[16239,26],[16316,24]]}}}],["r_bsp_sdvoltagemodecfg",{"_index":1296,"t":{},"d":{},"k":{},"b":{"70":{"position":[[497,22],[15881,24],[15956,22]]}}}],["r_bsp_securityinit",{"_index":1685,"t":{},"d":{},"k":{},"b":{"71":{"position":[[378,18],[40392,20],[40447,18]]}}}],["r_bsp_softwaredelay",{"_index":1701,"t":{},"d":{},"k":{},"b":{"71":{"position":[[761,19],[8240,20],[35739,22],[43944,21],[44000,19]]}}}],["r_bsp_softwaredelay(1",{"_index":1109,"t":{},"d":{},"k":{},"b":{"69":{"position":[[18439,22]]},"71":{"position":[[8267,22]]},"131":{"position":[[12734,22]]}}}],["r_bsp_softwaredelay(10",{"_index":6646,"t":{},"d":{},"k":{},"b":{"133":{"position":[[13311,23],[13448,23],[13586,23],[17445,23],[17582,23],[17720,23],[21749,23],[21886,23],[22024,23],[26763,23],[26900,23],[27038,23],[32916,23],[33053,23],[33191,23],[37031,23],[37168,23],[37306,23],[41336,23],[41473,23],[41611,23],[45588,23],[45725,23],[45863,23]]}}}],["r_bsp_softwaredelay(120",{"_index":6412,"t":{},"d":{},"k":{},"b":{"129":{"position":[[7881,24]]}}}],["r_bsp_softwaredelay(14",{"_index":6417,"t":{},"d":{},"k":{},"b":{"129":{"position":[[8366,23],[8775,23]]}}}],["r_bsp_softwaredelay(1u",{"_index":5929,"t":{},"d":{},"k":{},"b":{"124":{"position":[[8822,23],[9427,23],[11291,23],[12048,23]]},"125":{"position":[[11859,23],[12789,23]]},"138":{"position":[[8709,23],[9321,23],[10502,23],[11289,23]]}}}],["r_bsp_softwaredelay(2500",{"_index":6507,"t":{},"d":{},"k":{},"b":{"131":{"position":[[12884,25]]}}}],["r_bsp_softwaredelay(4",{"_index":6424,"t":{},"d":{},"k":{},"b":{"129":{"position":[[10038,22]]}}}],["r_bsp_softwaredelay(500",{"_index":6504,"t":{},"d":{},"k":{},"b":{"131":{"position":[[12579,24]]}}}],["r_bsp_softwaredelay(delay_tim",{"_index":4521,"t":{},"d":{},"k":{},"b":{"92":{"position":[[14679,31]]}}}],["r_bsp_softwaredelay(ssl_next_access_delay",{"_index":6820,"t":{},"d":{},"k":{},"b":{"135":{"position":[[10389,42]]},"142":{"position":[[11407,42]]}}}],["r_bsp_softwaredelay(zmod4xxx_wait_1010_m",{"_index":6672,"t":{},"d":{},"k":{},"b":{"133":{"position":[[27690,42]]}}}],["r_bsp_softwaredelay(zmod4xxx_wait_1990_m",{"_index":6665,"t":{},"d":{},"k":{},"b":{"133":{"position":[[24457,42],[39149,42]]}}}],["r_bsp_softwaredelay(zmod4xxx_wait_2000_m",{"_index":6687,"t":{},"d":{},"k":{},"b":{"133":{"position":[[46448,42]]}}}],["r_bsp_softwaredelay(zmod4xxx_wait_50_m",{"_index":6657,"t":{},"d":{},"k":{},"b":{"133":{"position":[[14639,40],[18805,40],[23700,40],[28956,40],[34244,40],[38391,40],[42696,40],[47658,40]]}}}],["r_bsp_softwaredelay(zmod4xxx_wait_5475_m",{"_index":6660,"t":{},"d":{},"k":{},"b":{"133":{"position":[[19562,42]]}}}],["r_bsp_softwaredelay(zmod4xxx_wait_90000_m",{"_index":6677,"t":{},"d":{},"k":{},"b":{"133":{"position":[[30728,42]]}}}],["r_bsp_uniqueidget",{"_index":1708,"t":{},"d":{},"k":{},"b":{"71":{"position":[[1011,17],[47271,19],[47361,17]]}}}],["r_bsp_versionget",{"_index":1699,"t":{},"d":{},"k":{},"b":{"71":{"position":[[710,16],[43513,18],[43571,16]]}}}],["r_bsp_warmstart",{"_index":1683,"t":{},"d":{},"k":{},"b":{"71":{"position":[[324,15],[4398,18],[5042,18],[5207,17],[39736,17],[39788,15]]}}}],["r_bsp_xspioutputenablecfg",{"_index":1314,"t":{},"d":{},"k":{},"b":{"70":{"position":[[1099,25],[17919,27],[17997,25]]}}}],["r_bsp_xspivoltagemodecfg",{"_index":1301,"t":{},"d":{},"k":{},"b":{"70":{"position":[[673,24],[16476,26],[16553,24]]}}}],["r_can_callbackset",{"_index":2201,"t":{},"d":{},"k":{},"b":{"74":{"position":[[6736,19]]}}}],["r_can_clos",{"_index":2186,"t":{},"d":{},"k":{},"b":{"74":{"position":[[5430,13]]}}}],["r_can_infoget",{"_index":2196,"t":{},"d":{},"k":{},"b":{"74":{"position":[[6196,15]]}}}],["r_can_modetransit",{"_index":2190,"t":{},"d":{},"k":{},"b":{"74":{"position":[[5790,22]]}}}],["r_can_open",{"_index":2173,"t":{},"d":{},"k":{},"b":{"74":{"position":[[4129,12]]}}}],["r_can_writ",{"_index":2177,"t":{},"d":{},"k":{},"b":{"74":{"position":[[4594,13]]}}}],["r_canfd",{"_index":195,"t":{"34":{"position":[[45,7]]},"75":{"position":[[85,9]]}},"d":{},"k":{},"b":{"74":{"position":[[426,9]]},"75":{"position":[[2636,7],[11583,7],[11681,8]]},"112":{"position":[[96,9]]}}}],["r_canfd)driv",{"_index":8347,"t":{},"d":{},"k":{},"b":{"152":{"position":[[1103,15]]}}}],["r_canfd_callbackset",{"_index":2202,"t":{},"d":{},"k":{},"b":{"74":{"position":[[6756,21]]},"75":{"position":[[596,19],[39773,21],[39834,19]]}}}],["r_canfd_cfdgafl_typ",{"_index":2503,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31061,20]]}}}],["r_canfd_clos",{"_index":2187,"t":{},"d":{},"k":{},"b":{"74":{"position":[[5444,15]]},"75":{"position":[[109,13],[36285,15],[36340,13]]}}}],["r_canfd_example.c",{"_index":2582,"t":{},"d":{},"k":{},"b":{"75":{"position":[[38068,17]]}}}],["r_canfd_infoget",{"_index":2197,"t":{},"d":{},"k":{},"b":{"74":{"position":[[6212,17]]},"75":{"position":[[511,15],[16880,15],[17581,15],[19550,15],[24505,15],[39266,17],[39323,15]]}}}],["r_canfd_modetransit",{"_index":2191,"t":{},"d":{},"k":{},"b":{"74":{"position":[[5813,24]]},"75":{"position":[[381,22],[24010,22],[24930,22],[38366,24],[38430,22]]}}}],["r_canfd_modetransition(&g_canfd0_ctrl",{"_index":2489,"t":{},"d":{},"k":{},"b":{"75":{"position":[[29337,38],[38887,38]]}}}],["r_canfd_open",{"_index":2174,"t":{},"d":{},"k":{},"b":{"74":{"position":[[4142,14]]},"75":{"position":[[23,12],[35476,14],[35530,12]]}}}],["r_canfd_open(&g_canfd0_ctrl",{"_index":2471,"t":{},"d":{},"k":{},"b":{"75":{"position":[[27991,28],[29137,28],[35874,28]]}}}],["r_canfd_read",{"_index":2183,"t":{},"d":{},"k":{},"b":{"74":{"position":[[5057,14]]},"75":{"position":[[274,12],[16900,12],[17601,13],[19570,13],[24577,12],[37635,14],[37689,12],[38086,12]]}}}],["r_canfd_writ",{"_index":2178,"t":{},"d":{},"k":{},"b":{"74":{"position":[[4608,15]]},"75":{"position":[[166,13],[36637,15],[36692,13]]}}}],["r_canfd_write(&g_canfd0_ctrl",{"_index":2476,"t":{},"d":{},"k":{},"b":{"75":{"position":[[28612,29],[30062,29],[37090,29]]}}}],["r_cmtw",{"_index":209,"t":{"47":{"position":[[45,6]]},"76":{"position":[[67,8]]}},"d":{},"k":{},"b":{"76":{"position":[[1832,6],[2140,6],[2231,7]]},"122":{"position":[[72,8]]},"144":{"position":[[471,8]]}}}],["r_cmtw)driver",{"_index":8385,"t":{},"d":{},"k":{},"b":{"152":{"position":[[5600,14]]}}}],["r_cmtw_callbackset",{"_index":2608,"t":{},"d":{},"k":{},"b":{"76":{"position":[[972,18],[24915,20],[24975,18]]},"144":{"position":[[9032,20]]}}}],["r_cmtw_close",{"_index":2588,"t":{},"d":{},"k":{},"b":{"76":{"position":[[23,12],[15478,14],[15532,12]]},"144":{"position":[[9683,14]]}}}],["r_cmtw_disabl",{"_index":2597,"t":{},"d":{},"k":{},"b":{"76":{"position":[[443,14],[19866,16],[19922,14]]},"144":{"position":[[6346,16]]}}}],["r_cmtw_disable(&g_timer0_ctrl",{"_index":2682,"t":{},"d":{},"k":{},"b":{"76":{"position":[[10015,32],[20200,31]]}}}],["r_cmtw_dutycycleset",{"_index":2592,"t":{},"d":{},"k":{},"b":{"76":{"position":[[165,19],[17844,21],[17905,19]]},"144":{"position":[[7466,21]]}}}],["r_cmtw_enabl",{"_index":2596,"t":{},"d":{},"k":{},"b":{"76":{"position":[[388,13],[19304,15],[19359,13]]},"144":{"position":[[6023,15]]}}}],["r_cmtw_enable(&g_timer0_ctrl",{"_index":2681,"t":{},"d":{},"k":{},"b":{"76":{"position":[[9936,30],[19663,30]]}}}],["r_cmtw_infoget",{"_index":2598,"t":{},"d":{},"k":{},"b":{"76":{"position":[[499,14],[10714,14],[16504,14],[20405,16],[20461,14]]},"144":{"position":[[7988,16]]}}}],["r_cmtw_infoget(&g_timer0_ctrl",{"_index":2675,"t":{},"d":{},"k":{},"b":{"76":{"position":[[9094,30],[20905,30]]}}}],["r_cmtw_open",{"_index":2603,"t":{},"d":{},"k":{},"b":{"76":{"position":[[726,11],[22453,13],[22506,11]]},"144":{"position":[[4654,13]]}}}],["r_cmtw_open(&g_timer0_ctrl",{"_index":2657,"t":{},"d":{},"k":{},"b":{"76":{"position":[[7364,27],[8205,27],[9662,27],[10404,27],[23207,27]]}}}],["r_cmtw_outputdis",{"_index":2607,"t":{},"d":{},"k":{},"b":{"76":{"position":[[891,20],[24417,22],[24479,20]]}}}],["r_cmtw_outputen",{"_index":2605,"t":{},"d":{},"k":{},"b":{"76":{"position":[[811,19],[23923,21],[23984,19]]}}}],["r_cmtw_periodset",{"_index":2590,"t":{},"d":{},"k":{},"b":{"76":{"position":[[77,16],[15922,18],[15980,16]]},"144":{"position":[[6770,18]]}}}],["r_cmtw_periodset(&g_timer0_ctrl",{"_index":2701,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11687,32],[17477,32]]}}}],["r_cmtw_reset",{"_index":2594,"t":{},"d":{},"k":{},"b":{"76":{"position":[[280,12],[18476,14],[18530,12]]},"144":{"position":[[5707,14]]}}}],["r_cmtw_start",{"_index":2595,"t":{},"d":{},"k":{},"b":{"76":{"position":[[334,12],[18860,14],[18914,12]]},"144":{"position":[[5073,14]]}}}],["r_cmtw_start(&g_timer0_ctrl",{"_index":2661,"t":{},"d":{},"k":{},"b":{"76":{"position":[[7597,30],[8380,29],[10579,29],[19108,29]]}}}],["r_cmtw_statusget",{"_index":2600,"t":{},"d":{},"k":{},"b":{"76":{"position":[[583,16],[21209,18],[21267,16]]},"144":{"position":[[8457,18]]}}}],["r_cmtw_statusget(&g_timer0_ctrl",{"_index":2668,"t":{},"d":{},"k":{},"b":{"76":{"position":[[8598,32],[21738,32]]}}}],["r_cmtw_stop",{"_index":2602,"t":{},"d":{},"k":{},"b":{"76":{"position":[[673,11],[21999,13],[22052,11]]},"144":{"position":[[5380,13]]}}}],["r_cmtw_stop(&g_timer0_ctrl",{"_index":2666,"t":{},"d":{},"k":{},"b":{"76":{"position":[[8456,28],[22257,28]]}}}],["r_cpg",{"_index":8049,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7854,6],[7928,5]]}}}],["r_cpg_cpg_error_rst2_error_rst0_msk",{"_index":8051,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7879,36],[7952,35]]}}}],["r_cpg_cpg_error_rst2_error_rst0_wen_msk",{"_index":8052,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7990,40]]}}}],["r_crc",{"_index":178,"t":{"11":{"position":[[45,5]]},"77":{"position":[[49,7]]}},"d":{},"k":{},"b":{"77":{"position":[[1393,5],[1691,7],[1775,8],[3524,5],[3598,5]]},"78":{"position":[[377,7]]},"117":{"position":[[58,7]]}}}],["r_crc)driver",{"_index":8371,"t":{},"d":{},"k":{},"b":{"152":{"position":[[4344,13]]}}}],["r_crc_calcul",{"_index":2793,"t":{},"d":{},"k":{},"b":{"77":{"position":[[154,15],[2658,15],[6157,17],[6214,15]]},"78":{"position":[[3649,17]]}}}],["r_crc_calculate(&crc_ctrl",{"_index":2861,"t":{},"d":{},"k":{},"b":{"77":{"position":[[4235,26]]}}}],["r_crc_calculatedvalueget",{"_index":2797,"t":{},"d":{},"k":{},"b":{"77":{"position":[[268,24],[2759,24],[7073,26],[7139,24]]},"78":{"position":[[2681,26]]}}}],["r_crc_calculatedvalueget(&crc_ctrl",{"_index":2865,"t":{},"d":{},"k":{},"b":{"77":{"position":[[4713,35]]}}}],["r_crc_close",{"_index":2792,"t":{},"d":{},"k":{},"b":{"77":{"position":[[103,11],[5786,13],[5839,11]]},"78":{"position":[[2326,13]]}}}],["r_crc_open",{"_index":2789,"t":{},"d":{},"k":{},"b":{"77":{"position":[[23,10],[5161,12],[5213,10]]},"78":{"position":[[2034,12]]}}}],["r_crc_open(&crc_ctrl",{"_index":2859,"t":{},"d":{},"k":{},"b":{"77":{"position":[[4161,21],[4443,21]]}}}],["r_crc_snoopdis",{"_index":2800,"t":{},"d":{},"k":{},"b":{"77":{"position":[[435,18],[8637,20],[8697,18]]},"78":{"position":[[3319,20]]}}}],["r_crc_snoopen",{"_index":2798,"t":{},"d":{},"k":{},"b":{"77":{"position":[[359,17],[2694,17],[7748,19],[7807,17]]},"78":{"position":[[3041,19]]}}}],["r_crc_snoopenable(&crc_ctrl",{"_index":2863,"t":{},"d":{},"k":{},"b":{"77":{"position":[[4566,28]]}}}],["r_dmac_b",{"_index":182,"t":{"16":{"position":[[45,8]]},"79":{"position":[[77,10]]}},"d":{},"k":{},"b":{"79":{"position":[[1748,8],[2065,8],[2163,9]]},"123":{"position":[[84,10]]},"138":{"position":[[7399,10]]},"145":{"position":[[199,10]]}}}],["r_dmac_b)driv",{"_index":8392,"t":{},"d":{},"k":{},"b":{"152":{"position":[[6347,16]]}}}],["r_dmac_b_clos",{"_index":2951,"t":{},"d":{},"k":{},"b":{"79":{"position":[[758,14],[21149,16],[21205,14]]},"145":{"position":[[8978,16]]}}}],["r_dmac_b_dis",{"_index":2948,"t":{},"d":{},"k":{},"b":{"79":{"position":[[591,16],[20061,18],[20119,16]]},"145":{"position":[[7154,18]]}}}],["r_dmac_b_en",{"_index":2947,"t":{},"d":{},"k":{},"b":{"79":{"position":[[527,15],[19603,17],[19660,15]]},"145":{"position":[[6587,17]]}}}],["r_dmac_b_enable(&g_transfer_ctrl",{"_index":3003,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8238,34]]}}}],["r_dmac_b_infoget",{"_index":2949,"t":{},"d":{},"k":{},"b":{"79":{"position":[[656,16],[20547,18],[20605,16]]},"145":{"position":[[8569,18]]}}}],["r_dmac_b_open",{"_index":2935,"t":{},"d":{},"k":{},"b":{"79":{"position":[[23,13],[16360,15],[16415,13]]},"145":{"position":[[4707,15]]}}}],["r_dmac_b_open(&g_transfer_ctrl",{"_index":3001,"t":{},"d":{},"k":{},"b":{"79":{"position":[[8012,31]]}}}],["r_dmac_b_reconfigur",{"_index":2938,"t":{},"d":{},"k":{},"b":{"79":{"position":[[120,20],[17044,22],[17106,20]]},"145":{"position":[[5182,22]]}}}],["r_dmac_b_reload",{"_index":2952,"t":{},"d":{},"k":{},"b":{"79":{"position":[[821,15],[21611,17],[21668,15]]},"145":{"position":[[9416,17]]}}}],["r_dmac_b_reset",{"_index":2940,"t":{},"d":{},"k":{},"b":{"79":{"position":[[214,14],[17748,16],[17804,14]]},"145":{"position":[[5750,16]]}}}],["r_dmac_b_softwarestart",{"_index":2944,"t":{},"d":{},"k":{},"b":{"79":{"position":[[358,22],[18358,24],[18422,22]]},"145":{"position":[[7601,24]]}}}],["r_dmac_b_softwarestop",{"_index":2946,"t":{},"d":{},"k":{},"b":{"79":{"position":[[457,21],[19107,23],[19170,21]]},"145":{"position":[[8211,23]]}}}],["r_dmac_open",{"_index":3087,"t":{},"d":{},"k":{},"b":{"79":{"position":[[17689,11],[19048,11],[19544,11],[20002,11],[20488,11],[21037,11],[21552,11],[22331,11]]}}}],["r_elc",{"_index":223,"t":{"65":{"position":[[45,5]]},"80":{"position":[[67,7]]}},"d":{},"k":{},"b":{"80":{"position":[[3839,5],[4151,7],[4249,8]]},"83":{"position":[[19753,7]]},"121":{"position":[[72,7]]}}}],["r_elc)driv",{"_index":8382,"t":{},"d":{},"k":{},"b":{"152":{"position":[[5336,13]]}}}],["r_elc_clos",{"_index":3096,"t":{},"d":{},"k":{},"b":{"80":{"position":[[103,11],[9260,13],[9313,11]]},"81":{"position":[[1751,13]]}}}],["r_elc_concept.svg",{"_index":3114,"t":{},"d":{},"k":{},"b":{"80":{"position":[[1155,17]]}}}],["r_elc_dis",{"_index":3103,"t":{},"d":{},"k":{},"b":{"80":{"position":[[494,13],[11657,15],[11712,13]]},"81":{"position":[[3439,15]]}}}],["r_elc_en",{"_index":3102,"t":{},"d":{},"k":{},"b":{"80":{"position":[[442,12],[11349,14],[11403,12]]},"81":{"position":[[3169,14]]}}}],["r_elc_eventset.svg",{"_index":3119,"t":{},"d":{},"k":{},"b":{"80":{"position":[[1618,18]]}}}],["r_elc_linkbreak",{"_index":3101,"t":{},"d":{},"k":{},"b":{"80":{"position":[[358,15],[3166,15],[9053,15],[10849,17],[10906,15]]},"81":{"position":[[2832,17]]}}}],["r_elc_linkset",{"_index":3100,"t":{},"d":{},"k":{},"b":{"80":{"position":[[256,13],[1446,15],[2986,13],[9035,13],[10254,15],[10309,13]]},"81":{"position":[[2450,15]]}}}],["r_elc_linkset(&g_elc_ctrl",{"_index":3191,"t":{},"d":{},"k":{},"b":{"80":{"position":[[8091,26]]},"92":{"position":[[15399,26]]}}}],["r_elc_open",{"_index":3093,"t":{},"d":{},"k":{},"b":{"80":{"position":[[23,10],[8436,12],[8490,12],[8542,10]]},"81":{"position":[[1423,12]]}}}],["r_elc_open(&g_elc_ctrl",{"_index":3190,"t":{},"d":{},"k":{},"b":{"80":{"position":[[7866,23]]},"92":{"position":[[15174,23]]}}}],["r_elc_softwareeventgener",{"_index":3097,"t":{},"d":{},"k":{},"b":{"80":{"position":[[154,27],[9641,29],[9710,27]]},"81":{"position":[[2084,29]]}}}],["r_elc_softwareeventgenerate(&g_elc_ctrl",{"_index":4527,"t":{},"d":{},"k":{},"b":{"92":{"position":[[15961,40]]}}}],["r_fsp_currentirqget",{"_index":1706,"t":{},"d":{},"k":{},"b":{"71":{"position":[[941,19],[47010,21],[47087,19]]}}}],["r_fsp_systemclockhzget",{"_index":1689,"t":{},"d":{},"k":{},"b":{"71":{"position":[[469,22],[41422,24],[41485,22]]},"76":{"position":[[10983,25],[16773,25]]},"83":{"position":[[24422,25]]},"84":{"position":[[8217,25]]},"105":{"position":[[14729,25],[31368,25]]}}}],["r_fsp_systemclockhzget(bsp_feature_cmtw_source_clock",{"_index":2695,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11044,53],[16834,53]]}}}],["r_fsp_systemclockhzget(bsp_feature_gtm_source_clock",{"_index":3680,"t":{},"d":{},"k":{},"b":{"84":{"position":[[8117,53],[8278,53]]}}}],["r_fsp_systemclockhzget(fsp_priv_clock_gptclk",{"_index":3385,"t":{},"d":{},"k":{},"b":{"83":{"position":[[24278,45],[24483,45]]}}}],["r_fsp_systemclockhzget(fsp_priv_clock_p0clk",{"_index":4922,"t":{},"d":{},"k":{},"b":{"105":{"position":[[14576,44],[14790,44],[31215,44],[31429,44]]}}}],["r_fsp_systemclockhzget(fsp_priv_clock_pclkl",{"_index":2690,"t":{},"d":{},"k":{},"b":{"76":{"position":[[10839,44],[16629,44]]}}}],["r_fsp_versionget",{"_index":1672,"t":{},"d":{},"k":{},"b":{"71":{"position":[[23,16],[37803,18],[37861,16]]}}}],["r_gpt",{"_index":190,"t":{"26":{"position":[[45,5]]},"83":{"position":[[63,7]]}},"d":{},"k":{},"b":{"83":{"position":[[4198,5],[5078,7],[5173,8]]},"108":{"position":[[961,7]]},"122":{"position":[[191,7]]},"144":{"position":[[498,7]]}}}],["r_gpt)driver",{"_index":8386,"t":{},"d":{},"k":{},"b":{"152":{"position":[[5714,13]]}}}],["r_gpt_adctriggerset",{"_index":3280,"t":{},"d":{},"k":{},"b":{"83":{"position":[[980,19],[54960,21],[55021,19]]}}}],["r_gpt_callbackset",{"_index":3288,"t":{},"d":{},"k":{},"b":{"83":{"position":[[1281,17],[56643,19],[56702,17]]},"144":{"position":[[9053,19]]}}}],["r_gpt_close",{"_index":3289,"t":{},"d":{},"k":{},"b":{"83":{"position":[[1465,11],[57588,13],[57641,11]]},"144":{"position":[[9698,13]]}}}],["r_gpt_counterset",{"_index":3276,"t":{},"d":{},"k":{},"b":{"83":{"position":[[747,16],[53282,18],[53340,16]]}}}],["r_gpt_disabl",{"_index":3271,"t":{},"d":{},"k":{},"b":{"83":{"position":[[319,13],[49285,15],[49340,13],[49596,16]]},"144":{"position":[[6363,15]]}}}],["r_gpt_disable(&g_timer4_ctrl",{"_index":3381,"t":{},"d":{},"k":{},"b":{"83":{"position":[[23485,31]]}}}],["r_gpt_dutycycleset",{"_index":3273,"t":{},"d":{},"k":{},"b":{"83":{"position":[[461,18],[16434,21],[18171,20],[32020,21],[32186,18],[32275,18],[32380,18],[32516,18],[32773,21],[32837,18],[50846,20],[50906,18]]},"144":{"position":[[7488,20]]}}}],["r_gpt_dutycycleset(&g_timer4_ctrl",{"_index":3395,"t":{},"d":{},"k":{},"b":{"83":{"position":[[26224,34]]}}}],["r_gpt_enabl",{"_index":3270,"t":{},"d":{},"k":{},"b":{"83":{"position":[[265,12],[19874,14],[48843,14],[48897,12]]},"144":{"position":[[6039,14]]}}}],["r_gpt_enable(&g_timer4_ctrl",{"_index":3380,"t":{},"d":{},"k":{},"b":{"83":{"position":[[23407,29]]}}}],["r_gpt_infoget",{"_index":3274,"t":{},"d":{},"k":{},"b":{"83":{"position":[[575,13],[24171,13],[52067,15],[52122,13]]},"144":{"position":[[8005,15]]}}}],["r_gpt_infoget(&g_timer4_ctrl",{"_index":3376,"t":{},"d":{},"k":{},"b":{"83":{"position":[[22470,29],[25690,29]]}}}],["r_gpt_one_shot_output.svg",{"_index":2654,"t":{},"d":{},"k":{},"b":{"76":{"position":[[6882,25]]},"83":{"position":[[17186,25]]}}}],["r_gpt_open",{"_index":3266,"t":{},"d":{},"k":{},"b":{"83":{"position":[[23,10],[46211,12],[46263,10]]},"144":{"position":[[4668,12]]}}}],["r_gpt_open(&g_timer0_ctrl",{"_index":823,"t":{},"d":{},"k":{},"b":{"68":{"position":[[13385,26]]},"83":{"position":[[23869,26]]},"146":{"position":[[13182,26]]}}}],["r_gpt_open(&g_timer3_ctrl",{"_index":3400,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27244,26]]}}}],["r_gpt_open(&g_timer4_ctrl",{"_index":3368,"t":{},"d":{},"k":{},"b":{"83":{"position":[[20633,26],[21541,26],[23192,26],[25414,26]]}}}],["r_gpt_outputdis",{"_index":3279,"t":{},"d":{},"k":{},"b":{"83":{"position":[[901,19],[54461,21],[54522,19]]}}}],["r_gpt_outputen",{"_index":3277,"t":{},"d":{},"k":{},"b":{"83":{"position":[[823,18],[53966,20],[54026,18]]}}}],["r_gpt_periodic_output.svg",{"_index":2655,"t":{},"d":{},"k":{},"b":{"76":{"position":[[7111,25]]},"83":{"position":[[17755,25]]}}}],["r_gpt_periodset",{"_index":3272,"t":{},"d":{},"k":{},"b":{"83":{"position":[[374,15],[16413,17],[48654,18],[49830,17],[49887,15]]},"144":{"position":[[6789,17]]}}}],["r_gpt_periodset(&g_timer0_ctrl",{"_index":3389,"t":{},"d":{},"k":{},"b":{"83":{"position":[[24962,31]]}}}],["r_gpt_pwm_output.svg",{"_index":3363,"t":{},"d":{},"k":{},"b":{"83":{"position":[[17986,20]]}}}],["r_gpt_pwmoutputdelayiniti",{"_index":3290,"t":{},"d":{},"k":{},"b":{"83":{"position":[[1518,30],[57996,32],[58068,30]]}}}],["r_gpt_pwmoutputdelayset",{"_index":3284,"t":{},"d":{},"k":{},"b":{"83":{"position":[[1116,23],[55593,25],[55658,23],[58247,24]]}}}],["r_gpt_reset",{"_index":3269,"t":{},"d":{},"k":{},"b":{"83":{"position":[[212,11],[16519,13],[48329,13],[48382,11]]},"144":{"position":[[5722,13]]}}}],["r_gpt_start",{"_index":3268,"t":{},"d":{},"k":{},"b":{"83":{"position":[[159,11],[18705,13],[18787,13],[47967,13],[48020,11]]},"144":{"position":[[5088,13]]}}}],["r_gpt_start(&g_timer0_ctrl",{"_index":825,"t":{},"d":{},"k":{},"b":{"68":{"position":[[13462,28]]},"83":{"position":[[24043,28]]},"146":{"position":[[13327,28]]}}}],["r_gpt_start(&g_timer3_ctrl",{"_index":3402,"t":{},"d":{},"k":{},"b":{"83":{"position":[[27455,29]]}}}],["r_gpt_start(&g_timer4_ctrl",{"_index":3370,"t":{},"d":{},"k":{},"b":{"83":{"position":[[20807,29],[21715,28],[25588,28]]}}}],["r_gpt_statusget",{"_index":3275,"t":{},"d":{},"k":{},"b":{"83":{"position":[[658,15],[52679,17],[52736,15]]},"144":{"position":[[8476,17]]}}}],["r_gpt_statusget(&g_timer4_ctrl",{"_index":3374,"t":{},"d":{},"k":{},"b":{"83":{"position":[[21931,31]]}}}],["r_gpt_stop",{"_index":3267,"t":{},"d":{},"k":{},"b":{"83":{"position":[[107,10],[47609,12],[47661,10],[49643,13]]},"144":{"position":[[5394,12]]}}}],["r_gpt_stop(&g_timer4_ctrl",{"_index":3373,"t":{},"d":{},"k":{},"b":{"83":{"position":[[21790,27]]}}}],["r_gpt_triangle_wave_pwm_output.svg",{"_index":3364,"t":{},"d":{},"k":{},"b":{"83":{"position":[[18380,34]]}}}],["r_gtm",{"_index":221,"t":{"61":{"position":[[45,5]]},"84":{"position":[[59,7]]}},"d":{},"k":{},"b":{"84":{"position":[[2269,5],[2565,7],[2647,8]]},"122":{"position":[[304,7]]},"144":{"position":[[520,7]]}}}],["r_gtm)driver",{"_index":8387,"t":{},"d":{},"k":{},"b":{"152":{"position":[[5822,13]]}}}],["r_gtm_callbackset",{"_index":3654,"t":{},"d":{},"k":{},"b":{"84":{"position":[[800,17],[16430,19],[16489,17]]},"144":{"position":[[9073,19]]}}}],["r_gtm_close",{"_index":3643,"t":{},"d":{},"k":{},"b":{"84":{"position":[[23,11],[9894,13],[9947,11]]},"144":{"position":[[9712,13]]}}}],["r_gtm_disabl",{"_index":3649,"t":{},"d":{},"k":{},"b":{"84":{"position":[[437,13],[13076,15],[13131,13]]},"144":{"position":[[6379,15]]}}}],["r_gtm_dutycycleset",{"_index":3645,"t":{},"d":{},"k":{},"b":{"84":{"position":[[163,18],[11408,20],[11468,18]]},"144":{"position":[[7509,20]]}}}],["r_gtm_enabl",{"_index":3648,"t":{},"d":{},"k":{},"b":{"84":{"position":[[383,12],[12704,14],[12758,12]]},"144":{"position":[[6054,14]]}}}],["r_gtm_infoget",{"_index":3650,"t":{},"d":{},"k":{},"b":{"84":{"position":[[492,13],[7987,13],[13452,15],[13507,13]]},"144":{"position":[[8021,15]]}}}],["r_gtm_open",{"_index":3653,"t":{},"d":{},"k":{},"b":{"84":{"position":[[716,10],[15048,12],[15100,10]]},"144":{"position":[[4681,12]]}}}],["r_gtm_open(&g_timer_ctrl",{"_index":3671,"t":{},"d":{},"k":{},"b":{"84":{"position":[[6164,25],[6881,25],[7673,25]]}}}],["r_gtm_periodset",{"_index":3644,"t":{},"d":{},"k":{},"b":{"84":{"position":[[76,15],[5519,18],[10336,17],[10393,15]]},"144":{"position":[[6807,17]]}}}],["r_gtm_periodset(&g_timer_ctrl",{"_index":3682,"t":{},"d":{},"k":{},"b":{"84":{"position":[[8737,30]]}}}],["r_gtm_reset",{"_index":3646,"t":{},"d":{},"k":{},"b":{"84":{"position":[[277,11],[12000,13],[12053,11]]},"144":{"position":[[5736,13]]}}}],["r_gtm_start",{"_index":3647,"t":{},"d":{},"k":{},"b":{"84":{"position":[[330,11],[12338,13],[12391,11]]},"144":{"position":[[5102,13]]}}}],["r_gtm_start(&g_timer_ctrl",{"_index":3673,"t":{},"d":{},"k":{},"b":{"84":{"position":[[6345,28],[7062,27],[7854,27]]}}}],["r_gtm_statusget",{"_index":3651,"t":{},"d":{},"k":{},"b":{"84":{"position":[[575,15],[14059,17],[14116,15]]},"144":{"position":[[8494,17]]}}}],["r_gtm_statusget(&g_timer_ctrl",{"_index":3676,"t":{},"d":{},"k":{},"b":{"84":{"position":[[7276,30]]}}}],["r_gtm_stop",{"_index":3652,"t":{},"d":{},"k":{},"b":{"84":{"position":[[664,10],[14681,12],[14733,10]]},"144":{"position":[[5407,12]]}}}],["r_gtm_stop(&g_timer_ctrl",{"_index":3675,"t":{},"d":{},"k":{},"b":{"84":{"position":[[7136,26]]}}}],["r_i3c_b",{"_index":208,"t":{"46":{"position":[[45,7]]},"88":{"position":[[49,9]]}},"d":{},"k":{},"b":{"87":{"position":[[149,9]]},"88":{"position":[[6763,7],[7567,9],[7655,10],[46191,8]]},"112":{"position":[[201,9]]}}}],["r_i3c_b)driv",{"_index":8348,"t":{},"d":{},"k":{},"b":{"152":{"position":[[1203,15]]}}}],["r_i3c_b0_typ",{"_index":4281,"t":{},"d":{},"k":{},"b":{"88":{"position":[[44831,13]]}}}],["r_i3c_b_clos",{"_index":3938,"t":{},"d":{},"k":{},"b":{"87":{"position":[[13851,15]]},"88":{"position":[[1389,13],[61336,15],[61391,13]]}}}],["r_i3c_b_commandsend",{"_index":3922,"t":{},"d":{},"k":{},"b":{"87":{"position":[[10652,21]]},"88":{"position":[[821,19],[56443,21],[56504,19]]}}}],["r_i3c_b_commandsend(&g_i3c_ctrl",{"_index":4212,"t":{},"d":{},"k":{},"b":{"88":{"position":[[37514,32]]}}}],["r_i3c_b_devicecfgset",{"_index":3900,"t":{},"d":{},"k":{},"b":{"87":{"position":[[7465,22]]},"88":{"position":[[167,20],[52448,22],[52510,20]]}}}],["r_i3c_b_devicecfgset(&g_i3c_ctrl",{"_index":4143,"t":{},"d":{},"k":{},"b":{"88":{"position":[[22945,33],[27284,33],[30664,33]]}}}],["r_i3c_b_deviceselect",{"_index":3907,"t":{},"d":{},"k":{},"b":{"87":{"position":[[8660,22]]},"88":{"position":[[520,20],[54643,22],[54705,20]]}}}],["r_i3c_b_deviceselect(&g_i3c_ctrl",{"_index":4151,"t":{},"d":{},"k":{},"b":{"88":{"position":[[24632,33],[32007,33]]}}}],["r_i3c_b_dynamicaddressassignmentstart",{"_index":3911,"t":{},"d":{},"k":{},"b":{"87":{"position":[[9375,39]]},"88":{"position":[[630,37],[55415,39],[55494,37]]}}}],["r_i3c_b_dynamicaddressassignmentstart(&g_i3c_ctrl",{"_index":4149,"t":{},"d":{},"k":{},"b":{"88":{"position":[[24285,50],[35287,50]]}}}],["r_i3c_b_en",{"_index":3899,"t":{},"d":{},"k":{},"b":{"87":{"position":[[7122,16]]},"88":{"position":[[109,14],[52036,16],[52092,14]]}}}],["r_i3c_b_enable(&g_i3c_ctrl",{"_index":4148,"t":{},"d":{},"k":{},"b":{"88":{"position":[[24119,28],[27412,28],[31864,28]]}}}],["r_i3c_b_ibiread",{"_index":3936,"t":{},"d":{},"k":{},"b":{"87":{"position":[[13412,17]]},"88":{"position":[[1290,15],[60468,17],[60525,15]]}}}],["r_i3c_b_ibiread(&g_i3c_ctrl",{"_index":4192,"t":{},"d":{},"k":{},"b":{"88":{"position":[[33561,28],[34518,28]]}}}],["r_i3c_b_ibiwrit",{"_index":3932,"t":{},"d":{},"k":{},"b":{"87":{"position":[[12854,18]]},"88":{"position":[[1159,16],[59487,18],[59545,16]]}}}],["r_i3c_b_ibiwrite(&g_i3c_ctrl",{"_index":4202,"t":{},"d":{},"k":{},"b":{"88":{"position":[[36064,29]]}}}],["r_i3c_b_masterdevicetableset",{"_index":3903,"t":{},"d":{},"k":{},"b":{"87":{"position":[[8086,30]]},"88":{"position":[[275,28],[53071,30],[53141,28]]}}}],["r_i3c_b_masterdevicetableset(&g_i3c_ctrl",{"_index":4147,"t":{},"d":{},"k":{},"b":{"88":{"position":[[23976,41],[31721,41]]}}}],["r_i3c_b_open",{"_index":3897,"t":{},"d":{},"k":{},"b":{"87":{"position":[[6740,14]]},"88":{"position":[[23,12],[51412,14],[51466,12]]}}}],["r_i3c_b_open(&g_i3c_ctrl",{"_index":4137,"t":{},"d":{},"k":{},"b":{"88":{"position":[[22506,25],[26542,25],[30225,25]]}}}],["r_i3c_b_read",{"_index":3930,"t":{},"d":{},"k":{},"b":{"87":{"position":[[12232,14]]},"88":{"position":[[1049,12],[58456,14],[58510,12]]}}}],["r_i3c_b_read(&g_i3c_ctrl",{"_index":4158,"t":{},"d":{},"k":{},"b":{"88":{"position":[[25129,25],[27681,25],[28996,25],[32491,25],[38561,25]]}}}],["r_i3c_b_slavestatusset",{"_index":3917,"t":{},"d":{},"k":{},"b":{"87":{"position":[[10136,24]]},"88":{"position":[[426,22],[53981,24],[54045,22]]}}}],["r_i3c_b_writ",{"_index":3926,"t":{},"d":{},"k":{},"b":{"87":{"position":[[11348,15]]},"88":{"position":[[932,13],[57460,15],[57515,13]]}}}],["r_i3c_b_write(&g_i3c_ctrl",{"_index":4154,"t":{},"d":{},"k":{},"b":{"88":{"position":[[24838,26],[27987,26],[32206,26]]}}}],["r_i3c_device_table.svg",{"_index":4022,"t":{},"d":{},"k":{},"b":{"88":{"position":[[2822,22]]}}}],["r_iic_slav",{"_index":6041,"t":{},"d":{},"k":{},"b":{"125":{"position":[[13750,11]]}}}],["r_intc_irq",{"_index":200,"t":{"40":{"position":[[45,10]]},"89":{"position":[[58,12]]}},"d":{},"k":{},"b":{"82":{"position":[[292,12]]},"89":{"position":[[842,10],[1583,10],[1905,10],[2006,11]]},"114":{"position":[[62,12]]}}}],["r_intc_irq)driv",{"_index":8367,"t":{},"d":{},"k":{},"b":{"152":{"position":[[3936,18]]}}}],["r_intc_irq_externalirqcallbackset",{"_index":3248,"t":{},"d":{},"k":{},"b":{"82":{"position":[[4519,35]]},"89":{"position":[[304,33],[7189,35],[7264,33]]}}}],["r_intc_irq_externalirqclos",{"_index":3253,"t":{},"d":{},"k":{},"b":{"82":{"position":[[5172,29]]},"89":{"position":[[525,27],[8182,29],[8251,27]]}}}],["r_intc_irq_externalirqdis",{"_index":3243,"t":{},"d":{},"k":{},"b":{"82":{"position":[[3936,31]]},"89":{"position":[[222,29],[6635,31],[6706,29]]}}}],["r_intc_irq_externalirqen",{"_index":3239,"t":{},"d":{},"k":{},"b":{"82":{"position":[[3533,30]]},"89":{"position":[[141,28],[6086,30],[6156,28]]}}}],["r_intc_irq_externalirqenable(&g_external_irq_ctrl",{"_index":4380,"t":{},"d":{},"k":{},"b":{"89":{"position":[[4124,51]]}}}],["r_intc_irq_externalirqopen",{"_index":3234,"t":{},"d":{},"k":{},"b":{"82":{"position":[[3025,28]]},"89":{"position":[[23,26],[4553,26],[5025,28],[5093,26]]}}}],["r_intc_irq_externalirqopen(&g_external_irq_ctrl",{"_index":4379,"t":{},"d":{},"k":{},"b":{"89":{"position":[[3973,48]]}}}],["r_intc_irq_isr",{"_index":4371,"t":{},"d":{},"k":{},"b":{"89":{"position":[[3357,14]]}}}],["r_intc_nmi",{"_index":222,"t":{"64":{"position":[[45,10]]},"90":{"position":[[58,12]]}},"d":{},"k":{},"b":{"82":{"position":[[266,12]]},"90":{"position":[[842,10],[1531,10],[1853,10],[1954,11]]},"114":{"position":[[191,12]]}}}],["r_intc_nmi)driv",{"_index":8368,"t":{},"d":{},"k":{},"b":{"152":{"position":[[4060,18]]}}}],["r_intc_nmi_externalirqcallbackset",{"_index":3247,"t":{},"d":{},"k":{},"b":{"82":{"position":[[4483,35]]},"90":{"position":[[304,33],[6739,35],[6814,33]]}}}],["r_intc_nmi_externalirqclos",{"_index":3252,"t":{},"d":{},"k":{},"b":{"82":{"position":[[5142,29]]},"90":{"position":[[525,27],[7732,29],[7801,27]]}}}],["r_intc_nmi_externalirqdis",{"_index":3242,"t":{},"d":{},"k":{},"b":{"82":{"position":[[3904,31]]},"90":{"position":[[222,29],[6185,31],[6256,29]]}}}],["r_intc_nmi_externalirqen",{"_index":3238,"t":{},"d":{},"k":{},"b":{"82":{"position":[[3502,30]]},"90":{"position":[[141,28],[5636,30],[5706,28]]}}}],["r_intc_nmi_externalirqenable(&g_external_irq_ctrl",{"_index":4394,"t":{},"d":{},"k":{},"b":{"90":{"position":[[3756,51]]}}}],["r_intc_nmi_externalirqopen",{"_index":3233,"t":{},"d":{},"k":{},"b":{"82":{"position":[[2996,28]]},"90":{"position":[[23,26],[4185,26],[4657,28],[4725,26]]}}}],["r_intc_nmi_externalirqopen(&g_external_irq_ctrl",{"_index":4393,"t":{},"d":{},"k":{},"b":{"90":{"position":[[3605,48]]}}}],["r_intc_nmi_isr",{"_index":4391,"t":{},"d":{},"k":{},"b":{"90":{"position":[[3003,14]]}}}],["r_intc_tint",{"_index":215,"t":{"54":{"position":[[45,11]]},"91":{"position":[[58,13]]}},"d":{},"k":{},"b":{"82":{"position":[[318,13]]},"91":{"position":[[859,11],[1582,11],[1906,11],[2008,12]]},"114":{"position":[[320,13]]}}}],["r_intc_tint)driv",{"_index":8369,"t":{},"d":{},"k":{},"b":{"152":{"position":[[4184,19]]}}}],["r_intc_tint_externalirqcallbackset",{"_index":3249,"t":{},"d":{},"k":{},"b":{"82":{"position":[[4555,36]]},"91":{"position":[[307,34],[8348,36],[8424,34]]}}}],["r_intc_tint_externalirqclos",{"_index":3254,"t":{},"d":{},"k":{},"b":{"82":{"position":[[5202,30]]},"91":{"position":[[529,28],[9343,30],[9413,28]]}}}],["r_intc_tint_externalirqdis",{"_index":3244,"t":{},"d":{},"k":{},"b":{"82":{"position":[[3968,32]]},"91":{"position":[[224,30],[7800,32],[7872,30]]}}}],["r_intc_tint_externalirqen",{"_index":3240,"t":{},"d":{},"k":{},"b":{"82":{"position":[[3564,31]]},"91":{"position":[[142,29],[7257,31],[7328,29]]}}}],["r_intc_tint_externalirqenable(&g_external_irq_ctrl",{"_index":4415,"t":{},"d":{},"k":{},"b":{"91":{"position":[[4394,52]]}}}],["r_intc_tint_externalirqopen",{"_index":3235,"t":{},"d":{},"k":{},"b":{"82":{"position":[[3054,29]]},"91":{"position":[[23,27],[4956,27],[6203,29],[6272,27]]}}}],["r_intc_tint_externalirqopen(&g_external_irq_ctrl",{"_index":4414,"t":{},"d":{},"k":{},"b":{"91":{"position":[[4242,49]]}}}],["r_intc_tint_isr",{"_index":4407,"t":{},"d":{},"k":{},"b":{"91":{"position":[[3438,15]]}}}],["r_ioport",{"_index":177,"t":{"10":{"position":[[45,8]]},"92":{"position":[[55,10]]}},"d":{},"k":{},"b":{"92":{"position":[[2617,8],[2922,10],[3010,11]]},"93":{"position":[[291,10]]},"121":{"position":[[189,10]]}}}],["r_ioport)driv",{"_index":8383,"t":{},"d":{},"k":{},"b":{"152":{"position":[[5448,16]]}}}],["r_ioport_clos",{"_index":4426,"t":{},"d":{},"k":{},"b":{"92":{"position":[[106,14],[29120,16],[29176,14]]},"93":{"position":[[3451,16]]}}}],["r_ioport_init",{"_index":4687,"t":{},"d":{},"k":{},"b":{"93":{"position":[[1052,15]]}}}],["r_ioport_open",{"_index":4423,"t":{},"d":{},"k":{},"b":{"92":{"position":[[23,13],[17079,15],[28558,15],[28613,13]]},"93":{"position":[[3204,15]]}}}],["r_ioport_open(&g_ioport_ctrl",{"_index":4504,"t":{},"d":{},"k":{},"b":{"92":{"position":[[12969,29],[13806,29],[15588,29]]}}}],["r_ioport_pincfg",{"_index":4428,"t":{},"d":{},"k":{},"b":{"92":{"position":[[249,15],[13993,15],[15672,15],[30347,17],[30404,15]]},"93":{"position":[[4045,17]]}}}],["r_ioport_pincfg(&g_ioport_ctrl",{"_index":4516,"t":{},"d":{},"k":{},"b":{"92":{"position":[[14094,31],[15773,31]]}}}],["r_ioport_pineventinputread",{"_index":4430,"t":{},"d":{},"k":{},"b":{"92":{"position":[[344,26],[11017,26],[31311,28],[31379,26]]},"93":{"position":[[4444,28]]}}}],["r_ioport_pineventinputread(&g_ioport_ctrl",{"_index":4531,"t":{},"d":{},"k":{},"b":{"92":{"position":[[16192,42]]}}}],["r_ioport_pineventoutputwrit",{"_index":4432,"t":{},"d":{},"k":{},"b":{"92":{"position":[[465,28],[12204,29],[32338,30],[32408,28]]},"93":{"position":[[4815,30]]}}}],["r_ioport_pinread",{"_index":4434,"t":{},"d":{},"k":{},"b":{"92":{"position":[[585,16],[33330,18],[33388,16]]},"93":{"position":[[5191,18]]}}}],["r_ioport_pinread(&g_ioport_ctrl",{"_index":4509,"t":{},"d":{},"k":{},"b":{"92":{"position":[[13488,32]]}}}],["r_ioport_pinscfg",{"_index":4427,"t":{},"d":{},"k":{},"b":{"92":{"position":[[163,16],[13122,16],[29516,18],[29574,16]]},"93":{"position":[[3729,18]]}}}],["r_ioport_pinscfg(&g_ioport_ctrl",{"_index":4505,"t":{},"d":{},"k":{},"b":{"92":{"position":[[13224,32]]}}}],["r_ioport_pinwrit",{"_index":4436,"t":{},"d":{},"k":{},"b":{"92":{"position":[[696,17],[33968,19],[34027,17]]},"93":{"position":[[5535,19]]}}}],["r_ioport_pinwrite(&g_ioport_ctrl",{"_index":4508,"t":{},"d":{},"k":{},"b":{"92":{"position":[[13348,33],[14562,33]]},"133":{"position":[[13231,33],[13369,33],[13506,33],[17365,33],[17503,33],[17640,33],[21669,33],[21807,33],[21944,33],[26683,33],[26821,33],[26958,33],[32836,33],[32974,33],[33111,33],[36951,33],[37089,33],[37226,33],[41256,33],[41394,33],[41531,33],[45508,33],[45646,33],[45783,33]]}}}],["r_ioport_portdirectionset",{"_index":4437,"t":{},"d":{},"k":{},"b":{"92":{"position":[[801,25],[34681,27],[34748,25]]},"93":{"position":[[5939,27]]}}}],["r_ioport_porteventinputread",{"_index":4440,"t":{},"d":{},"k":{},"b":{"92":{"position":[[941,27],[11048,27],[35951,29],[36020,27]]},"93":{"position":[[6496,29]]}}}],["r_ioport_porteventoutputwrit",{"_index":4442,"t":{},"d":{},"k":{},"b":{"92":{"position":[[1058,29],[11610,30],[37143,31],[37214,29]]},"93":{"position":[[6910,31]]}}}],["r_ioport_portread",{"_index":4444,"t":{},"d":{},"k":{},"b":{"92":{"position":[[1202,17],[38533,19],[38592,17]]},"93":{"position":[[7440,19]]}}}],["r_ioport_portwrit",{"_index":4446,"t":{},"d":{},"k":{},"b":{"92":{"position":[[1311,18],[39394,20],[39454,18]]},"93":{"position":[[7809,20]]}}}],["r_mhu0_typ",{"_index":4765,"t":{},"d":{},"k":{},"b":{"95":{"position":[[1614,11]]},"98":{"position":[[1552,11]]},"99":{"position":[[1585,11]]},"104":{"position":[[1523,11]]}}}],["r_mhu_",{"_index":180,"t":{"14":{"position":[[45,7]]},"104":{"position":[[87,9]]}},"d":{},"k":{},"b":{"94":{"position":[[374,9]]},"112":{"position":[[1702,9]]}}}],["r_mhu_b_",{"_index":196,"t":{"35":{"position":[[45,9]]},"98":{"position":[[87,11]]}},"d":{},"k":{},"b":{"94":{"position":[[483,11]]},"112":{"position":[[934,11]]}}}],["r_mhu_b_n",{"_index":175,"t":{"8":{"position":[[45,10]]},"95":{"position":[[91,12]]}},"d":{},"k":{},"b":{"94":{"position":[[541,12]]},"112":{"position":[[345,12]]}}}],["r_mhu_b_ns)driv",{"_index":8349,"t":{},"d":{},"k":{},"b":{"152":{"position":[[1342,18]]}}}],["r_mhu_b_ns_callbackset",{"_index":4750,"t":{},"d":{},"k":{},"b":{"94":{"position":[[3918,24]]},"95":{"position":[[236,22],[3579,24],[3643,22]]}}}],["r_mhu_b_ns_clos",{"_index":4756,"t":{},"d":{},"k":{},"b":{"94":{"position":[[4540,18]]},"95":{"position":[[180,16],[3180,18],[3238,16]]}}}],["r_mhu_b_ns_isrsub",{"_index":4760,"t":{},"d":{},"k":{},"b":{"95":{"position":[[414,17],[4526,19],[4580,17]]}}}],["r_mhu_b_ns_msgsend",{"_index":4744,"t":{},"d":{},"k":{},"b":{"94":{"position":[[3360,20]]},"95":{"position":[[102,18],[2646,20],[2706,18]]}}}],["r_mhu_b_ns_open",{"_index":4739,"t":{},"d":{},"k":{},"b":{"94":{"position":[[2923,17]]},"95":{"position":[[23,15],[1918,17],[1975,15]]}}}],["r_mhu_b_ns_swint_get",{"_index":181,"t":{"15":{"position":[[45,20]]},"96":{"position":[[109,22]]}},"d":{},"k":{},"b":{"101":{"position":[[502,22]]},"112":{"position":[[549,22]]}}}],["r_mhu_b_ns_swint_get)driv",{"_index":8350,"t":{},"d":{},"k":{},"b":{"152":{"position":[[1541,28]]}}}],["r_mhu_b_ns_swint_get_callbackset",{"_index":4782,"t":{},"d":{},"k":{},"b":{"96":{"position":[[217,32],[2821,34],[2895,32]]},"101":{"position":[[3620,34]]}}}],["r_mhu_b_ns_swint_get_clos",{"_index":4781,"t":{},"d":{},"k":{},"b":{"96":{"position":[[138,26],[2366,28],[2434,26]]},"101":{"position":[[4253,28]]}}}],["r_mhu_b_ns_swint_get_isrsub",{"_index":4785,"t":{},"d":{},"k":{},"b":{"96":{"position":[[444,27],[3840,29],[3904,27]]}}}],["r_mhu_b_ns_swint_get_open",{"_index":4778,"t":{},"d":{},"k":{},"b":{"96":{"position":[[23,25],[1549,27],[1616,25]]},"101":{"position":[[2997,27]]}}}],["r_mhu_b_ns_swint_set",{"_index":210,"t":{"49":{"position":[[45,20]]},"97":{"position":[[112,22]]}},"d":{},"k":{},"b":{"103":{"position":[[477,22]]},"112":{"position":[[754,22]]}}}],["r_mhu_b_ns_swint_set)driv",{"_index":8351,"t":{},"d":{},"k":{},"b":{"152":{"position":[[1741,28]]}}}],["r_mhu_b_ns_swint_set_clos",{"_index":4800,"t":{},"d":{},"k":{},"b":{"97":{"position":[[224,26],[2518,28],[2586,26]]},"103":{"position":[[2939,28]]}}}],["r_mhu_b_ns_swint_set_interruptset",{"_index":4799,"t":{},"d":{},"k":{},"b":{"97":{"position":[[138,33],[2044,35],[2119,33]]},"103":{"position":[[2567,35]]}}}],["r_mhu_b_ns_swint_set_open",{"_index":4796,"t":{},"d":{},"k":{},"b":{"97":{"position":[[23,25],[1293,27],[1360,25]]},"103":{"position":[[2127,27]]}}}],["r_mhu_b_s)driv",{"_index":8352,"t":{},"d":{},"k":{},"b":{"152":{"position":[[1916,17]]}}}],["r_mhu_b_s_callbackset",{"_index":4749,"t":{},"d":{},"k":{},"b":{"94":{"position":[[3894,23]]},"98":{"position":[[233,21],[3507,23],[3570,21]]}}}],["r_mhu_b_s_clos",{"_index":4755,"t":{},"d":{},"k":{},"b":{"94":{"position":[[4522,17]]},"98":{"position":[[178,15],[3111,17],[3168,15]]}}}],["r_mhu_b_s_isrsub",{"_index":4809,"t":{},"d":{},"k":{},"b":{"98":{"position":[[410,16],[4452,18],[4505,16]]}}}],["r_mhu_b_s_msgsend",{"_index":4743,"t":{},"d":{},"k":{},"b":{"94":{"position":[[3340,19]]},"98":{"position":[[101,17],[2579,19],[2638,17]]}}}],["r_mhu_b_s_open",{"_index":4738,"t":{},"d":{},"k":{},"b":{"94":{"position":[[2906,16]]},"98":{"position":[[23,14],[1856,16],[1912,14]]}}}],["r_mhu_n",{"_index":197,"t":{"36":{"position":[[45,8]]},"99":{"position":[[91,10]]}},"d":{},"k":{},"b":{"94":{"position":[[430,10]]},"112":{"position":[[1119,10]]}}}],["r_mhu_ns)driv",{"_index":8353,"t":{},"d":{},"k":{},"b":{"152":{"position":[[2096,16]]}}}],["r_mhu_ns_callbackset",{"_index":4748,"t":{},"d":{},"k":{},"b":{"94":{"position":[[3871,22]]},"99":{"position":[[230,20],[3530,22],[3592,20]]}}}],["r_mhu_ns_clos",{"_index":4754,"t":{},"d":{},"k":{},"b":{"94":{"position":[[4505,16]]},"99":{"position":[[176,14],[3137,16],[3193,14]]}}}],["r_mhu_ns_isrsub",{"_index":4814,"t":{},"d":{},"k":{},"b":{"99":{"position":[[406,15],[4473,17],[4525,15]]}}}],["r_mhu_ns_msgsend",{"_index":4742,"t":{},"d":{},"k":{},"b":{"94":{"position":[[3321,18]]},"99":{"position":[[100,16],[2607,18],[2665,16]]}}}],["r_mhu_ns_open",{"_index":4737,"t":{},"d":{},"k":{},"b":{"94":{"position":[[2890,15]]},"99":{"position":[[23,13],[1889,15],[1944,13]]}}}],["r_mhu_ns_swint_get",{"_index":207,"t":{"45":{"position":[[45,18]]},"100":{"position":[[109,20]]}},"d":{},"k":{},"b":{"101":{"position":[[417,20]]},"112":{"position":[[1321,20]]}}}],["r_mhu_ns_swint_get)driv",{"_index":8354,"t":{},"d":{},"k":{},"b":{"152":{"position":[[2293,26]]}}}],["r_mhu_ns_swint_get_callbackset",{"_index":4821,"t":{},"d":{},"k":{},"b":{"100":{"position":[[213,30],[2778,32],[2850,30]]},"101":{"position":[[3587,32]]}}}],["r_mhu_ns_swint_get_clos",{"_index":4820,"t":{},"d":{},"k":{},"b":{"100":{"position":[[136,24],[2329,26],[2395,24]]},"101":{"position":[[4226,26]]}}}],["r_mhu_ns_swint_get_isrsub",{"_index":4822,"t":{},"d":{},"k":{},"b":{"100":{"position":[[438,25],[3793,27],[3855,25]]}}}],["r_mhu_ns_swint_get_open",{"_index":4819,"t":{},"d":{},"k":{},"b":{"100":{"position":[[23,23],[1522,25],[1587,23]]},"101":{"position":[[2971,25]]}}}],["r_mhu_ns_swint_set",{"_index":219,"t":{"58":{"position":[[45,18]]},"102":{"position":[[112,20]]}},"d":{},"k":{},"b":{"103":{"position":[[389,20]]},"112":{"position":[[1524,20]]}}}],["r_mhu_ns_swint_set)driv",{"_index":8355,"t":{},"d":{},"k":{},"b":{"152":{"position":[[2491,26]]}}}],["r_mhu_ns_swint_set_clos",{"_index":4834,"t":{},"d":{},"k":{},"b":{"102":{"position":[[220,24],[2479,26],[2545,24]]},"103":{"position":[[2912,26]]}}}],["r_mhu_ns_swint_set_interruptset",{"_index":4833,"t":{},"d":{},"k":{},"b":{"102":{"position":[[136,31],[2009,33],[2082,31]]},"103":{"position":[[2533,33]]}}}],["r_mhu_ns_swint_set_open",{"_index":4832,"t":{},"d":{},"k":{},"b":{"102":{"position":[[23,23],[1268,25],[1333,23]]},"103":{"position":[[2101,25]]}}}],["r_mhu_s)driv",{"_index":8356,"t":{},"d":{},"k":{},"b":{"152":{"position":[[2664,15]]}}}],["r_mhu_s_callbackset",{"_index":4747,"t":{},"d":{},"k":{},"b":{"94":{"position":[[3849,21]]},"104":{"position":[[227,19],[3458,21],[3519,19]]}}}],["r_mhu_s_clos",{"_index":4753,"t":{},"d":{},"k":{},"b":{"94":{"position":[[4489,15]]},"104":{"position":[[174,13],[3068,15],[3123,13]]}}}],["r_mhu_s_isrsub",{"_index":4843,"t":{},"d":{},"k":{},"b":{"104":{"position":[[402,14],[4399,16],[4450,14]]}}}],["r_mhu_s_msgsend",{"_index":4741,"t":{},"d":{},"k":{},"b":{"94":{"position":[[3303,17]]},"104":{"position":[[99,15],[2540,17],[2597,15]]}}}],["r_mhu_s_open",{"_index":4736,"t":{},"d":{},"k":{},"b":{"94":{"position":[[2875,14]]},"104":{"position":[[23,12],[1827,14],[1881,12]]}}}],["r_mhu_swint0_typ",{"_index":4789,"t":{},"d":{},"k":{},"b":{"96":{"position":[[1426,17]]},"97":{"position":[[1172,17]]},"100":{"position":[[1399,17]]},"102":{"position":[[1147,17]]}}}],["r_mtu3",{"_index":187,"t":{"23":{"position":[[45,6]]},"105":{"position":[[79,8]]}},"d":{},"k":{},"b":{"105":{"position":[[3939,6],[4375,6],[4466,7]]},"122":{"position":[[438,8]]},"144":{"position":[[562,8]]}}}],["r_mtu3)driv",{"_index":8388,"t":{},"d":{},"k":{},"b":{"152":{"position":[[5951,14]]}}}],["r_mtu3_adctriggerset",{"_index":4864,"t":{},"d":{},"k":{},"b":{"105":{"position":[[1005,20],[36899,22],[36961,20]]}}}],["r_mtu3_callbackset",{"_index":4866,"t":{},"d":{},"k":{},"b":{"105":{"position":[[1143,18],[37545,20],[37605,18]]},"144":{"position":[[9093,20]]}}}],["r_mtu3_clos",{"_index":4867,"t":{},"d":{},"k":{},"b":{"105":{"position":[[1328,12],[38388,14],[38442,12]]},"144":{"position":[[9726,14]]}}}],["r_mtu3_counterset",{"_index":4856,"t":{},"d":{},"k":{},"b":{"105":{"position":[[646,17],[34665,19],[34724,17]]}}}],["r_mtu3_dis",{"_index":4863,"t":{},"d":{},"k":{},"b":{"105":{"position":[[949,14],[36610,16],[36666,14]]},"144":{"position":[[6395,16]]}}}],["r_mtu3_dutycycleset",{"_index":4853,"t":{},"d":{},"k":{},"b":{"105":{"position":[[357,19],[11364,22],[32226,21],[32287,19]]},"144":{"position":[[7530,21]]}}}],["r_mtu3_dutycycleset(&g_timer0_ctrl",{"_index":4930,"t":{},"d":{},"k":{},"b":{"105":{"position":[[16395,35]]}}}],["r_mtu3_en",{"_index":4862,"t":{},"d":{},"k":{},"b":{"105":{"position":[[894,13],[36325,15],[36380,13]]},"144":{"position":[[6069,15]]}}}],["r_mtu3_infoget",{"_index":4854,"t":{},"d":{},"k":{},"b":{"105":{"position":[[472,14],[14465,14],[31104,14],[33304,16],[33360,14]]},"144":{"position":[[8037,16]]}}}],["r_mtu3_infoget(&g_timer0_ctrl",{"_index":4929,"t":{},"d":{},"k":{},"b":{"105":{"position":[[16022,30]]}}}],["r_mtu3_open",{"_index":4848,"t":{},"d":{},"k":{},"b":{"105":{"position":[[23,11],[27902,13],[27955,11]]},"144":{"position":[[4694,13]]}}}],["r_mtu3_open(&g_timer0_ctrl",{"_index":829,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16154,27]]},"105":{"position":[[12387,27],[13141,27],[13946,27],[15735,27],[28430,27]]}}}],["r_mtu3_outputdis",{"_index":4860,"t":{},"d":{},"k":{},"b":{"105":{"position":[[813,20],[35835,22],[35897,20]]}}}],["r_mtu3_outputen",{"_index":4857,"t":{},"d":{},"k":{},"b":{"105":{"position":[[723,19],[35339,21],[35400,19]]}}}],["r_mtu3_periodset",{"_index":4852,"t":{},"d":{},"k":{},"b":{"105":{"position":[[269,16],[11267,19],[30065,19],[30255,18],[30313,16]]},"144":{"position":[[6825,18]]}}}],["r_mtu3_periodset(&g_timer0_ctrl",{"_index":4925,"t":{},"d":{},"k":{},"b":{"105":{"position":[[15278,32],[31917,32]]}}}],["r_mtu3_reset",{"_index":4851,"t":{},"d":{},"k":{},"b":{"105":{"position":[[215,12],[29738,14],[29792,12]]},"144":{"position":[[5750,14]]}}}],["r_mtu3_start",{"_index":4850,"t":{},"d":{},"k":{},"b":{"105":{"position":[[161,12],[29298,14],[29352,12]]},"144":{"position":[[5116,14]]}}}],["r_mtu3_start(&g_timer0_ctrl",{"_index":830,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16232,29]]},"105":{"position":[[12562,30],[13316,29],[14121,29],[15919,29],[29546,29]]}}}],["r_mtu3_statusget",{"_index":4855,"t":{},"d":{},"k":{},"b":{"105":{"position":[[556,16],[33894,18],[33952,16]]},"144":{"position":[[8512,18]]}}}],["r_mtu3_statusget(&g_timer0_ctrl",{"_index":4914,"t":{},"d":{},"k":{},"b":{"105":{"position":[[13534,32],[34420,32]]}}}],["r_mtu3_stop",{"_index":4849,"t":{},"d":{},"k":{},"b":{"105":{"position":[[108,11],[28853,13],[28906,11]]},"144":{"position":[[5420,13]]}}}],["r_mtu3_stop(&g_timer0_ctrl",{"_index":4913,"t":{},"d":{},"k":{},"b":{"105":{"position":[[13392,28],[29107,28]]}}}],["r_mtu_typ",{"_index":4947,"t":{},"d":{},"k":{},"b":{"105":{"position":[[17739,10]]}}}],["r_pdm",{"_index":179,"t":{"13":{"position":[[45,5]]},"106":{"position":[[59,7]]}},"d":{},"k":{},"b":{"106":{"position":[[1073,5],[1487,5],[1581,6]]},"107":{"position":[[211,7]]},"112":{"position":[[1853,7]]}}}],["r_pdm)driver",{"_index":8357,"t":{},"d":{},"k":{},"b":{"152":{"position":[[2810,13]]}}}],["r_pdm_callbackset",{"_index":5093,"t":{},"d":{},"k":{},"b":{"106":{"position":[[523,17],[25092,19],[25151,17]]},"107":{"position":[[6641,19]]}}}],["r_pdm_close",{"_index":5092,"t":{},"d":{},"k":{},"b":{"106":{"position":[[472,11],[24616,13],[24669,11]]},"107":{"position":[[6185,13]]}}}],["r_pdm_open",{"_index":5081,"t":{},"d":{},"k":{},"b":{"106":{"position":[[23,10],[20269,12],[20321,10]]},"107":{"position":[[3697,12]]}}}],["r_pdm_open(&g_pdm_ctrl",{"_index":5237,"t":{},"d":{},"k":{},"b":{"106":{"position":[[13769,23]]}}}],["r_pdm_read",{"_index":5089,"t":{},"d":{},"k":{},"b":{"106":{"position":[[295,10],[22882,12],[22934,10]]},"107":{"position":[[5234,12]]}}}],["r_pdm_start",{"_index":5084,"t":{},"d":{},"k":{},"b":{"106":{"position":[[103,11],[21183,13],[21236,11]]},"107":{"position":[[4355,13]]}}}],["r_pdm_start(&g_pdm_ctrl",{"_index":5239,"t":{},"d":{},"k":{},"b":{"106":{"position":[[13919,24]]}}}],["r_pdm_statusget",{"_index":5090,"t":{},"d":{},"k":{},"b":{"106":{"position":[[387,15],[24037,17],[24094,15]]},"107":{"position":[[5822,17]]}}}],["r_pdm_stop",{"_index":5088,"t":{},"d":{},"k":{},"b":{"106":{"position":[[245,10],[22296,12],[22348,10]]},"107":{"position":[[4872,12]]}}}],["r_poeg",{"_index":213,"t":{"52":{"position":[[45,6]]},"108":{"position":[[72,8]]}},"d":{},"k":{},"b":{"108":{"position":[[1186,6],[1505,8],[1609,9]]},"109":{"position":[[274,8]]},"122":{"position":[[577,8]]}}}],["r_poeg)driv",{"_index":8389,"t":{},"d":{},"k":{},"b":{"152":{"position":[[6085,14]]}}}],["r_poeg_callbackset",{"_index":5434,"t":{},"d":{},"k":{},"b":{"108":{"position":[[194,18],[6986,20],[7046,18]]},"109":{"position":[[3851,20]]}}}],["r_poeg_clos",{"_index":5439,"t":{},"d":{},"k":{},"b":{"108":{"position":[[486,12],[3606,15],[8892,14],[8946,12]]},"109":{"position":[[5087,14]]}}}],["r_poeg_open",{"_index":5429,"t":{},"d":{},"k":{},"b":{"108":{"position":[[23,11],[5431,13],[5484,11]]},"109":{"position":[[2919,13]]}}}],["r_poeg_open(&g_poeg0_ctrl",{"_index":5445,"t":{},"d":{},"k":{},"b":{"108":{"position":[[3933,26]]}}}],["r_poeg_outputdis",{"_index":5437,"t":{},"d":{},"k":{},"b":{"108":{"position":[[372,20],[7925,22],[7987,20]]},"109":{"position":[[4433,22]]}}}],["r_poeg_reset",{"_index":5438,"t":{},"d":{},"k":{},"b":{"108":{"position":[[433,12],[8334,14],[8388,12]]},"109":{"position":[[4832,14]]}}}],["r_poeg_reset(&g_poeg0_ctrl",{"_index":5449,"t":{},"d":{},"k":{},"b":{"108":{"position":[[4602,28]]}}}],["r_poeg_statusget",{"_index":5432,"t":{},"d":{},"k":{},"b":{"108":{"position":[[106,16],[6401,18],[6459,16],[8638,16]]},"109":{"position":[[3341,18]]}}}],["r_poeg_statusget(&g_poeg0_ctrl",{"_index":5448,"t":{},"d":{},"k":{},"b":{"108":{"position":[[4429,31],[4785,31]]}}}],["r_qspi_basic_exampl",{"_index":8183,"t":{},"d":{},"k":{},"b":{"150":{"position":[[7453,20]]}}}],["r_qspi_direct_exampl",{"_index":8220,"t":{},"d":{},"k":{},"b":{"150":{"position":[[11142,21]]}}}],["r_qspi_example_init",{"_index":8186,"t":{},"d":{},"k":{},"b":{"150":{"position":[[7680,22],[9032,19]]}}}],["r_qspi_size_exampl",{"_index":8226,"t":{},"d":{},"k":{},"b":{"150":{"position":[[12088,19]]}}}],["r_riic_mast",{"_index":199,"t":{"39":{"position":[[45,13]]},"124":{"position":[[64,15]]}},"d":{},"k":{},"b":{"85":{"position":[[313,15]]},"112":{"position":[[1969,15]]},"124":{"position":[[1988,13],[2611,15],[2712,16],[7158,13]]},"131":{"position":[[2751,16]]}}}],["r_riic_master)driv",{"_index":8358,"t":{},"d":{},"k":{},"b":{"152":{"position":[[2921,21]]}}}],["r_riic_master_abort",{"_index":3747,"t":{},"d":{},"k":{},"b":{"85":{"position":[[5853,21]]},"124":{"position":[[397,19],[17033,21],[17094,19]]}}}],["r_riic_master_callbackset",{"_index":3755,"t":{},"d":{},"k":{},"b":{"85":{"position":[[6910,27]]},"124":{"position":[[679,25],[19155,27],[19222,25]]}}}],["r_riic_master_clos",{"_index":3764,"t":{},"d":{},"k":{},"b":{"85":{"position":[[7917,21]]},"124":{"position":[[609,19],[18530,21],[18591,19]]}}}],["r_riic_master_open",{"_index":3732,"t":{},"d":{},"k":{},"b":{"85":{"position":[[4307,20]]},"124":{"position":[[23,18],[14327,20],[14387,18],[16024,18],[16967,18],[17460,18],[18464,18],[18988,18]]}}}],["r_riic_master_open(&g_i2c_device_ctrl_1",{"_index":5922,"t":{},"d":{},"k":{},"b":{"124":{"position":[[8144,40]]}}}],["r_riic_master_open(&g_i2c_device_ctrl_2",{"_index":5942,"t":{},"d":{},"k":{},"b":{"124":{"position":[[10741,40]]}}}],["r_riic_master_open(&g_i2c_master_ctrl",{"_index":6030,"t":{},"d":{},"k":{},"b":{"125":{"position":[[10981,38]]}}}],["r_riic_master_read",{"_index":3735,"t":{},"d":{},"k":{},"b":{"85":{"position":[[4769,20]]},"124":{"position":[[129,18],[15139,20],[15199,18]]}}}],["r_riic_master_read(&g_i2c_device_ctrl_1",{"_index":5931,"t":{},"d":{},"k":{},"b":{"124":{"position":[[9147,40]]}}}],["r_riic_master_read(&g_i2c_device_ctrl_2",{"_index":5945,"t":{},"d":{},"k":{},"b":{"124":{"position":[[11084,40]]}}}],["r_riic_master_read(&g_i2c_master_ctrl",{"_index":6034,"t":{},"d":{},"k":{},"b":{"125":{"position":[[12313,38]]}}}],["r_riic_master_slaveaddressset",{"_index":3750,"t":{},"d":{},"k":{},"b":{"85":{"position":[[6285,31]]},"124":{"position":[[467,29],[17627,31],[17698,29]]}}}],["r_riic_master_slaveaddressset(&g_i2c_device_ctrl_2",{"_index":5946,"t":{},"d":{},"k":{},"b":{"124":{"position":[[11519,51]]}}}],["r_riic_master_statusget",{"_index":3760,"t":{},"d":{},"k":{},"b":{"85":{"position":[[7538,25]]},"124":{"position":[[886,23],[20123,25],[20188,23]]}}}],["r_riic_master_writ",{"_index":3743,"t":{},"d":{},"k":{},"b":{"85":{"position":[[5348,21]]},"124":{"position":[[263,19],[16090,21],[16151,19]]}}}],["r_riic_master_write(&g_i2c_device_ctrl_1",{"_index":5926,"t":{},"d":{},"k":{},"b":{"124":{"position":[[8541,41]]}}}],["r_riic_master_write(&g_i2c_device_ctrl_2",{"_index":5952,"t":{},"d":{},"k":{},"b":{"124":{"position":[[11859,41]]}}}],["r_riic_master_write(&g_i2c_master_ctrl",{"_index":6032,"t":{},"d":{},"k":{},"b":{"125":{"position":[[11382,39]]}}}],["r_riic_slav",{"_index":173,"t":{"6":{"position":[[45,12]]},"125":{"position":[[55,14]]}},"d":{},"k":{},"b":{"86":{"position":[[298,14]]},"112":{"position":[[2092,14]]},"125":{"position":[[1472,12],[1802,12],[1909,13],[8166,12]]}}}],["r_riic_slave)driv",{"_index":8359,"t":{},"d":{},"k":{},"b":{"152":{"position":[[3039,20]]}}}],["r_riic_slave_callbackset",{"_index":3804,"t":{},"d":{},"k":{},"b":{"86":{"position":[[5090,26]]},"125":{"position":[[418,24],[17672,26],[17738,24]]}}}],["r_riic_slave_clos",{"_index":3806,"t":{},"d":{},"k":{},"b":{"86":{"position":[[5648,20]]},"125":{"position":[[350,18],[17316,20],[17376,18]]}}}],["r_riic_slave_open",{"_index":3798,"t":{},"d":{},"k":{},"b":{"86":{"position":[[3625,19]]},"125":{"position":[[23,17],[14128,19],[14187,17]]}}}],["r_riic_slave_open(&g_i2c_slave_ctrl",{"_index":6029,"t":{},"d":{},"k":{},"b":{"125":{"position":[[10769,36]]}}}],["r_riic_slave_read",{"_index":3800,"t":{},"d":{},"k":{},"b":{"86":{"position":[[4044,19]]},"125":{"position":[[126,17],[6462,17],[6664,17],[6871,17],[6929,17],[11622,17],[15103,19],[15162,17]]}}}],["r_riic_slave_read(&g_i2c_slave_ctrl",{"_index":6025,"t":{},"d":{},"k":{},"b":{"125":{"position":[[9935,36]]}}}],["r_riic_slave_writ",{"_index":3802,"t":{},"d":{},"k":{},"b":{"86":{"position":[[4498,20]]},"125":{"position":[[238,18],[6607,18],[6817,18],[7107,18],[12552,18],[16213,20],[16273,18]]}}}],["r_riic_slave_write(&g_i2c_slave_ctrl",{"_index":6028,"t":{},"d":{},"k":{},"b":{"125":{"position":[[10218,37]]}}}],["r_rspi",{"_index":189,"t":{"25":{"position":[[45,6]]},"135":{"position":[[81,8]]}},"d":{},"k":{},"b":{"112":{"position":[[2239,8]]},"135":{"position":[[1640,6],[2070,8],[2157,9]]},"141":{"position":[[188,8]]}}}],["r_rspi)driv",{"_index":8360,"t":{},"d":{},"k":{},"b":{"152":{"position":[[3181,14]]}}}],["r_rspi0_typ",{"_index":6847,"t":{},"d":{},"k":{},"b":{"135":{"position":[[13479,12]]}}}],["r_rspi_calculatebitr",{"_index":6761,"t":{},"d":{},"k":{},"b":{"135":{"position":[[563,23],[21748,25],[21813,23]]}}}],["r_rspi_calculatebitrate(bitr",{"_index":6824,"t":{},"d":{},"k":{},"b":{"135":{"position":[[11330,32]]}}}],["r_rspi_callback",{"_index":6816,"t":{},"d":{},"k":{},"b":{"135":{"position":[[9010,15]]}}}],["r_rspi_callbackset",{"_index":6764,"t":{},"d":{},"k":{},"b":{"135":{"position":[[654,18],[22702,20],[22762,18]]},"141":{"position":[[6415,20]]}}}],["r_rspi_clos",{"_index":6760,"t":{},"d":{},"k":{},"b":{"135":{"position":[[507,12],[21083,14],[21137,12]]},"141":{"position":[[7014,14]]}}}],["r_rspi_open",{"_index":6752,"t":{},"d":{},"k":{},"b":{"135":{"position":[[23,11],[16544,13],[16597,11]]},"141":{"position":[[3545,13]]}}}],["r_rspi_open(&g_rspi_ctrl",{"_index":6810,"t":{},"d":{},"k":{},"b":{"135":{"position":[[8584,25],[9673,25],[11464,25]]}}}],["r_rspi_read",{"_index":6755,"t":{},"d":{},"k":{},"b":{"135":{"position":[[102,11],[17593,13],[17646,11]]},"141":{"position":[[3957,13]]}}}],["r_rspi_writ",{"_index":6758,"t":{},"d":{},"k":{},"b":{"135":{"position":[[227,12],[18696,14],[18750,12]]},"141":{"position":[[4685,14]]}}}],["r_rspi_writeread",{"_index":6759,"t":{},"d":{},"k":{},"b":{"135":{"position":[[358,16],[19855,18],[19913,16]]},"141":{"position":[[5406,18]]}}}],["r_rspi_writeread(&g_rspi_ctrl",{"_index":6812,"t":{},"d":{},"k":{},"b":{"135":{"position":[[8764,30],[9995,30],[10651,30]]}}}],["r_rtc",{"_index":184,"t":{"18":{"position":[[45,5]]},"136":{"position":[[60,7]]}},"d":{},"k":{},"b":{"122":{"position":[[692,7]]},"136":{"position":[[4030,5],[4335,7],[4426,8],[7107,5]]},"137":{"position":[[279,7]]}}}],["r_rtc)driver",{"_index":8390,"t":{},"d":{},"k":{},"b":{"152":{"position":[[6195,13]]}}}],["r_rtc_calendaralarmget",{"_index":6909,"t":{},"d":{},"k":{},"b":{"136":{"position":[[483,22],[14750,24],[14814,22]]},"137":{"position":[[7107,24]]}}}],["r_rtc_calendaralarmset",{"_index":6906,"t":{},"d":{},"k":{},"b":{"136":{"position":[[388,22],[13973,24],[14037,22]]},"137":{"position":[[6666,24]]}}}],["r_rtc_calendaralarmset(&g_rtc0_ctrl",{"_index":6978,"t":{},"d":{},"k":{},"b":{"136":{"position":[[9263,36]]}}}],["r_rtc_calendartimeget",{"_index":6905,"t":{},"d":{},"k":{},"b":{"136":{"position":[[301,21],[7179,23],[13191,23],[13254,21]]},"137":{"position":[[6255,23]]}}}],["r_rtc_calendartimeget(&g_rtc0_ctrl",{"_index":6971,"t":{},"d":{},"k":{},"b":{"136":{"position":[[8157,35]]}}}],["r_rtc_calendartimeset",{"_index":6902,"t":{},"d":{},"k":{},"b":{"136":{"position":[[214,21],[6949,21],[8538,21],[12572,23],[12635,21],[15776,21]]},"137":{"position":[[5822,23]]}}}],["r_rtc_calendartimeset(&g_rtc0_ctrl",{"_index":6970,"t":{},"d":{},"k":{},"b":{"136":{"position":[[8075,35],[8612,35],[9206,35],[9627,35]]}}}],["r_rtc_callbackset",{"_index":6918,"t":{},"d":{},"k":{},"b":{"136":{"position":[[880,17],[17538,19],[17597,17]]},"137":{"position":[[8373,19]]}}}],["r_rtc_clocksourceset",{"_index":6901,"t":{},"d":{},"k":{},"b":{"136":{"position":[[154,20],[12033,22],[12095,20]]},"137":{"position":[[5502,22]]}}}],["r_rtc_close",{"_index":6900,"t":{},"d":{},"k":{},"b":{"136":{"position":[[103,11],[11634,13],[11687,11]]},"137":{"position":[[5244,13]]}}}],["r_rtc_erroradjustmentset",{"_index":6912,"t":{},"d":{},"k":{},"b":{"136":{"position":[[680,24],[16228,26],[16294,24]]},"137":{"position":[[7870,26]]}}}],["r_rtc_erroradjustmentset(&g_rtc0_ctrl",{"_index":6982,"t":{},"d":{},"k":{},"b":{"136":{"position":[[9744,38]]}}}],["r_rtc_infoget",{"_index":6915,"t":{},"d":{},"k":{},"b":{"136":{"position":[[797,13],[16943,15],[16998,13]]},"137":{"position":[[8872,15]]}}}],["r_rtc_open",{"_index":6897,"t":{},"d":{},"k":{},"b":{"136":{"position":[[23,10],[10861,12],[10913,10]]},"137":{"position":[[4958,12]]}}}],["r_rtc_open(&g_rtc0_ctrl",{"_index":6968,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7898,24],[8389,24],[9060,24],[9585,24],[11335,24]]}}}],["r_rtc_periodicirqrateset",{"_index":6910,"t":{},"d":{},"k":{},"b":{"136":{"position":[[578,24],[15331,26],[15397,24]]},"137":{"position":[[7498,26]]}}}],["r_rtc_periodicirqrateset(&g_rtc0_ctrl",{"_index":6974,"t":{},"d":{},"k":{},"b":{"136":{"position":[[8716,38],[15894,38]]}}}],["r_sci_b_i2c",{"_index":194,"t":{"32":{"position":[[45,11]]},"138":{"position":[[56,13]]}},"d":{},"k":{},"b":{"85":{"position":[[340,13]]},"112":{"position":[[2349,13]]},"138":{"position":[[2070,11],[2721,13],[2820,14],[7755,11]]}}}],["r_sci_b_i2c)driv",{"_index":8361,"t":{},"d":{},"k":{},"b":{"152":{"position":[[3286,19]]}}}],["r_sci_b_i2c_abort",{"_index":3748,"t":{},"d":{},"k":{},"b":{"85":{"position":[[5875,19]]},"138":{"position":[[459,17],[16379,19],[16438,17]]}}}],["r_sci_b_i2c_callbackset",{"_index":3756,"t":{},"d":{},"k":{},"b":{"85":{"position":[[6938,25]]},"138":{"position":[[667,23],[17914,25],[17979,23]]}}}],["r_sci_b_i2c_clos",{"_index":3765,"t":{},"d":{},"k":{},"b":{"85":{"position":[[7939,19]]},"138":{"position":[[127,17],[13575,19],[13634,17]]}}}],["r_sci_b_i2c_open",{"_index":3733,"t":{},"d":{},"k":{},"b":{"85":{"position":[[4328,18]]},"138":{"position":[[23,16],[12794,18],[12852,16]]}}}],["r_sci_b_i2c_open(&g_i2c_device_ctrl_1",{"_index":7099,"t":{},"d":{},"k":{},"b":{"138":{"position":[[8013,38]]}}}],["r_sci_b_i2c_open(&g_i2c_device_ctrl_2",{"_index":7103,"t":{},"d":{},"k":{},"b":{"138":{"position":[[9938,38]]}}}],["r_sci_b_i2c_read",{"_index":3736,"t":{},"d":{},"k":{},"b":{"85":{"position":[[4790,18]]},"138":{"position":[[195,16],[14249,18],[14307,16]]}}}],["r_sci_b_i2c_read(&g_i2c_device_ctrl_1",{"_index":7102,"t":{},"d":{},"k":{},"b":{"138":{"position":[[9034,38]]}}}],["r_sci_b_i2c_read(&g_i2c_device_ctrl_2",{"_index":7104,"t":{},"d":{},"k":{},"b":{"138":{"position":[[10288,38]]}}}],["r_sci_b_i2c_slaveaddressset",{"_index":3751,"t":{},"d":{},"k":{},"b":{"85":{"position":[[6317,29]]},"138":{"position":[[527,27],[17081,29],[17150,27]]}}}],["r_sci_b_i2c_slaveaddressset(&g_i2c_device_ctrl_2",{"_index":7105,"t":{},"d":{},"k":{},"b":{"138":{"position":[[10730,49]]}}}],["r_sci_b_i2c_statusget",{"_index":3761,"t":{},"d":{},"k":{},"b":{"85":{"position":[[7564,23]]},"138":{"position":[[872,21],[18878,23],[18941,21]]}}}],["r_sci_b_i2c_writ",{"_index":3744,"t":{},"d":{},"k":{},"b":{"85":{"position":[[5370,19]]},"138":{"position":[[327,17],[15199,19],[15258,17]]}}}],["r_sci_b_i2c_write(&g_i2c_device_ctrl_1",{"_index":7101,"t":{},"d":{},"k":{},"b":{"138":{"position":[[8421,39]]}}}],["r_sci_b_i2c_write(&g_i2c_device_ctrl_2",{"_index":7108,"t":{},"d":{},"k":{},"b":{"138":{"position":[[11093,39]]}}}],["r_sci_b_uart",{"_index":171,"t":{"4":{"position":[[45,12]]},"139":{"position":[[50,14]]}},"d":{},"k":{},"b":{"112":{"position":[[2466,14]]},"139":{"position":[[1832,12],[2439,14],[2533,15]]},"147":{"position":[[522,14]]}}}],["r_sci_b_uart)driv",{"_index":8362,"t":{},"d":{},"k":{},"b":{"152":{"position":[[3398,20]]}}}],["r_sci_b_uart_abort",{"_index":7134,"t":{},"d":{},"k":{},"b":{"139":{"position":[[590,18],[23370,20],[23430,18]]},"147":{"position":[[7491,20]]}}}],["r_sci_b_uart_basic_exampl",{"_index":7195,"t":{},"d":{},"k":{},"b":{"139":{"position":[[9809,26]]}}}],["r_sci_b_uart_baud_exampl",{"_index":7214,"t":{},"d":{},"k":{},"b":{"139":{"position":[[11839,25]]}}}],["r_sci_b_uart_baudcalcul",{"_index":7137,"t":{},"d":{},"k":{},"b":{"139":{"position":[[688,26],[24463,28],[24531,26]]}}}],["r_sci_b_uart_baudcalculate(baud_r",{"_index":7219,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12157,37]]}}}],["r_sci_b_uart_baudset",{"_index":7129,"t":{},"d":{},"k":{},"b":{"139":{"position":[[336,20],[21396,22],[21458,20]]},"147":{"position":[[6713,22]]}}}],["r_sci_b_uart_baudset(&g_uart0_ctrl",{"_index":7220,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12297,35]]}}}],["r_sci_b_uart_callbackset",{"_index":7140,"t":{},"d":{},"k":{},"b":{"139":{"position":[[849,24],[25773,26],[25839,24]]},"147":{"position":[[8016,26]]}}}],["r_sci_b_uart_clos",{"_index":7133,"t":{},"d":{},"k":{},"b":{"139":{"position":[[527,18],[22832,20],[22892,18]]},"147":{"position":[[8549,20]]}}}],["r_sci_b_uart_infoget",{"_index":7131,"t":{},"d":{},"k":{},"b":{"139":{"position":[[435,20],[22172,22],[22234,20]]},"147":{"position":[[7122,22]]}}}],["r_sci_b_uart_open",{"_index":7124,"t":{},"d":{},"k":{},"b":{"139":{"position":[[23,17],[17818,19],[17877,17],[20094,17],[21321,17]]},"147":{"position":[[4707,19]]}}}],["r_sci_b_uart_open(&g_uart0_ctrl",{"_index":7198,"t":{},"d":{},"k":{},"b":{"139":{"position":[[10073,32]]}}}],["r_sci_b_uart_read",{"_index":7127,"t":{},"d":{},"k":{},"b":{"139":{"position":[[116,17],[9286,20],[9360,19],[18935,19],[18994,17]]},"147":{"position":[[5478,19]]}}}],["r_sci_b_uart_read(&g_uart0_ctrl",{"_index":7200,"t":{},"d":{},"k":{},"b":{"139":{"position":[[10161,32]]}}}],["r_sci_b_uart_readstop",{"_index":7143,"t":{},"d":{},"k":{},"b":{"139":{"position":[[1037,21],[26715,23],[26778,21]]},"147":{"position":[[8904,23]]}}}],["r_sci_b_uart_writ",{"_index":7128,"t":{},"d":{},"k":{},"b":{"139":{"position":[[223,18],[20165,20],[20225,18]]},"147":{"position":[[6197,20]]}}}],["r_sci_b_uart_write(&g_uart0_ctrl",{"_index":7202,"t":{},"d":{},"k":{},"b":{"139":{"position":[[10260,33]]}}}],["r_scif_uart",{"_index":172,"t":{"5":{"position":[[45,11]]},"140":{"position":[[89,13]]}},"d":{},"k":{},"b":{"112":{"position":[[2615,13]]},"140":{"position":[[1801,11],[2355,11],[2456,12]]},"147":{"position":[[503,13]]}}}],["r_scif_uart)driv",{"_index":8363,"t":{},"d":{},"k":{},"b":{"152":{"position":[[3542,19]]}}}],["r_scif_uart_abort",{"_index":7303,"t":{},"d":{},"k":{},"b":{"140":{"position":[[584,17],[21224,19],[21283,17]]},"147":{"position":[[7471,19]]}}}],["r_scif_uart_basic_exampl",{"_index":7323,"t":{},"d":{},"k":{},"b":{"140":{"position":[[7213,25]]}}}],["r_scif_uart_baud_exampl",{"_index":7330,"t":{},"d":{},"k":{},"b":{"140":{"position":[[9207,24]]}}}],["r_scif_uart_baudcalcul",{"_index":7304,"t":{},"d":{},"k":{},"b":{"140":{"position":[[681,25],[22268,27],[22335,25]]}}}],["r_scif_uart_baudcalculate(baud_r",{"_index":7331,"t":{},"d":{},"k":{},"b":{"140":{"position":[[9498,36]]}}}],["r_scif_uart_baudset",{"_index":7300,"t":{},"d":{},"k":{},"b":{"140":{"position":[[333,19],[19257,21],[19318,19]]},"147":{"position":[[6691,21]]}}}],["r_scif_uart_baudset(&g_uart_ctrl",{"_index":7332,"t":{},"d":{},"k":{},"b":{"140":{"position":[[9628,33]]}}}],["r_scif_uart_callbackset",{"_index":7307,"t":{},"d":{},"k":{},"b":{"140":{"position":[[963,23],[24627,25],[24692,23]]},"147":{"position":[[7990,25]]}}}],["r_scif_uart_clos",{"_index":7302,"t":{},"d":{},"k":{},"b":{"140":{"position":[[522,17],[20688,19],[20747,17]]},"147":{"position":[[8529,19]]}}}],["r_scif_uart_infoget",{"_index":7301,"t":{},"d":{},"k":{},"b":{"140":{"position":[[431,19],[20030,21],[20091,19]]},"147":{"position":[[7100,21]]}}}],["r_scif_uart_open",{"_index":7297,"t":{},"d":{},"k":{},"b":{"140":{"position":[[23,16],[16439,18],[16497,16]]},"147":{"position":[[4688,18]]}}}],["r_scif_uart_open(&g_uart_ctrl",{"_index":7324,"t":{},"d":{},"k":{},"b":{"140":{"position":[[7476,30]]}}}],["r_scif_uart_read",{"_index":7298,"t":{},"d":{},"k":{},"b":{"140":{"position":[[115,16],[17423,18],[17481,16]]},"147":{"position":[[5459,18]]}}}],["r_scif_uart_read(&g_uart_ctrl",{"_index":7325,"t":{},"d":{},"k":{},"b":{"140":{"position":[[7553,30]]}}}],["r_scif_uart_readstop",{"_index":7306,"t":{},"d":{},"k":{},"b":{"140":{"position":[[871,20],[23666,22],[23728,20]]},"147":{"position":[[8881,22]]}}}],["r_scif_uart_writ",{"_index":7299,"t":{},"d":{},"k":{},"b":{"140":{"position":[[221,17],[18339,19],[18398,17]]},"147":{"position":[[6177,19]]}}}],["r_scif_uart_write(&g_uart_ctrl",{"_index":7326,"t":{},"d":{},"k":{},"b":{"140":{"position":[[7641,31]]}}}],["r_spi_b",{"_index":212,"t":{"51":{"position":[[45,7]]},"142":{"position":[[49,9]]}},"d":{},"k":{},"b":{"112":{"position":[[2724,9]]},"141":{"position":[[201,9]]},"142":{"position":[[1838,7],[2597,9],[2685,10]]}}}],["r_spi_b)driv",{"_index":8364,"t":{},"d":{},"k":{},"b":{"152":{"position":[[3646,15]]}}}],["r_spi_b0_typ",{"_index":7517,"t":{},"d":{},"k":{},"b":{"142":{"position":[[14878,13]]}}}],["r_spi_b_calculatebitr",{"_index":7478,"t":{},"d":{},"k":{},"b":{"142":{"position":[[568,24],[23443,26],[23509,24]]}}}],["r_spi_b_calculatebitrate(bitr",{"_index":7501,"t":{},"d":{},"k":{},"b":{"142":{"position":[[12353,33]]}}}],["r_spi_b_callbackset",{"_index":7425,"t":{},"d":{},"k":{},"b":{"141":{"position":[[6436,21]]},"142":{"position":[[690,19],[24439,21],[24500,19]]}}}],["r_spi_b_clos",{"_index":7426,"t":{},"d":{},"k":{},"b":{"141":{"position":[[7029,15]]},"142":{"position":[[511,13],[22776,15],[22831,13]]}}}],["r_spi_b_open",{"_index":7418,"t":{},"d":{},"k":{},"b":{"141":{"position":[[3559,14]]},"142":{"position":[[23,12],[18377,14],[18431,12]]}}}],["r_spi_b_open(&g_spi_ctrl",{"_index":7496,"t":{},"d":{},"k":{},"b":{"142":{"position":[[9569,25],[10673,25],[12526,25]]}}}],["r_spi_b_read",{"_index":7419,"t":{},"d":{},"k":{},"b":{"141":{"position":[[3971,14]]},"142":{"position":[[103,12],[19583,14],[19637,12]]}}}],["r_spi_b_writ",{"_index":7423,"t":{},"d":{},"k":{},"b":{"141":{"position":[[4700,15]]},"142":{"position":[[229,13],[20587,15],[20642,13]]}}}],["r_spi_b_writeread",{"_index":7424,"t":{},"d":{},"k":{},"b":{"141":{"position":[[5425,19]]},"142":{"position":[[361,17],[21647,19],[21706,17]]}}}],["r_spi_b_writeread(&g_spi_ctrl",{"_index":7497,"t":{},"d":{},"k":{},"b":{"142":{"position":[[9758,30],[11004,30],[11669,30]]}}}],["r_spi_callback",{"_index":7498,"t":{},"d":{},"k":{},"b":{"142":{"position":[[10013,14]]}}}],["r_transfer_t::open",{"_index":3020,"t":{},"d":{},"k":{},"b":{"79":{"position":[[9179,18]]}}}],["r_tsu_b",{"_index":217,"t":{"56":{"position":[[45,7]]},"146":{"position":[[69,9]]}},"d":{},"k":{},"b":{"67":{"position":[[544,9]]},"110":{"position":[[345,9]]},"146":{"position":[[1714,7],[2022,7],[2112,8]]}}}],["r_tsu_b)driv",{"_index":8345,"t":{},"d":{},"k":{},"b":{"152":{"position":[[923,15]]}}}],["r_tsu_b_calculatetemperatur",{"_index":7839,"t":{},"d":{},"k":{},"b":{"146":{"position":[[1118,28],[4077,29],[24420,30],[24490,28]]}}}],["r_tsu_b_calculatetemperature(&g_tsu0_ctrl",{"_index":7879,"t":{},"d":{},"k":{},"b":{"146":{"position":[[7084,42],[8573,42],[14089,42]]}}}],["r_tsu_b_calibr",{"_index":460,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8961,19]]},"146":{"position":[[758,17],[22547,19],[22606,17]]}}}],["r_tsu_b_callbackset",{"_index":473,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10076,21]]},"146":{"position":[[938,19],[23492,21],[23553,19]]}}}],["r_tsu_b_clos",{"_index":485,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10719,15]]},"146":{"position":[[638,13],[21643,15],[21698,13]]}}}],["r_tsu_b_infoget",{"_index":496,"t":{},"d":{},"k":{},"b":{"67":{"position":[[11268,17]]},"146":{"position":[[685,15],[22050,17],[22107,15]]}}}],["r_tsu_b_infoget(&g_tsu0_ctrl",{"_index":7871,"t":{},"d":{},"k":{},"b":{"146":{"position":[[5888,29],[9055,29],[12276,29]]}}}],["r_tsu_b_offsetset",{"_index":466,"t":{},"d":{},"k":{},"b":{"67":{"position":[[9477,19]]},"146":{"position":[[837,17],[22978,19],[23037,17]]}}}],["r_tsu_b_open",{"_index":397,"t":{},"d":{},"k":{},"b":{"67":{"position":[[5271,14]]},"146":{"position":[[23,12],[16560,14],[16614,12],[18002,12],[19417,12]]}}}],["r_tsu_b_open(&g_tsu0_ctrl",{"_index":7869,"t":{},"d":{},"k":{},"b":{"146":{"position":[[5653,26],[8820,26],[12041,26]]}}}],["r_tsu_b_read",{"_index":437,"t":{},"d":{},"k":{},"b":{"67":{"position":[[7856,14]]},"146":{"position":[[440,12],[20504,14],[20558,12]]}}}],["r_tsu_b_read(&g_tsu0_ctrl",{"_index":7878,"t":{},"d":{},"k":{},"b":{"146":{"position":[[6939,26],[8450,26],[13936,26]]}}}],["r_tsu_b_read32",{"_index":449,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8333,16]]},"146":{"position":[[538,14],[21135,16],[21191,14]]}}}],["r_tsu_b_scancfg",{"_index":411,"t":{},"d":{},"k":{},"b":{"67":{"position":[[5927,17]]},"146":{"position":[[99,15],[17293,17],[17350,15]]}}}],["r_tsu_b_scangroupstart",{"_index":422,"t":{},"d":{},"k":{},"b":{"67":{"position":[[6728,24],[7141,24]]},"146":{"position":[[232,22],[18668,24],[18732,22]]}}}],["r_tsu_b_scanstart",{"_index":418,"t":{},"d":{},"k":{},"b":{"67":{"position":[[6326,19]]},"146":{"position":[[181,17],[6566,20],[6645,20],[9733,20],[9812,20],[13602,20],[17723,19],[17782,17]]}}}],["r_tsu_b_scanstart(&g_tsu0_ctrl",{"_index":7876,"t":{},"d":{},"k":{},"b":{"146":{"position":[[6678,32],[9845,32],[13639,32]]}}}],["r_tsu_b_scanstop",{"_index":7838,"t":{},"d":{},"k":{},"b":{"146":{"position":[[315,16],[19113,18],[19171,16]]}}}],["r_tsu_b_statusget",{"_index":431,"t":{},"d":{},"k":{},"b":{"67":{"position":[[7470,19]]},"146":{"position":[[365,17],[19846,19],[19905,17]]}}}],["r_wdt",{"_index":220,"t":{"59":{"position":[[45,5]]},"148":{"position":[[54,7]]}},"d":{},"k":{},"b":{"117":{"position":[[164,7]]},"148":{"position":[[1539,5],[1842,7],[1931,8]]},"149":{"position":[[283,7]]}}}],["r_wdt)driver",{"_index":8372,"t":{},"d":{},"k":{},"b":{"152":{"position":[[4445,13]]}}}],["r_wdt_callbackset",{"_index":7988,"t":{},"d":{},"k":{},"b":{"148":{"position":[[501,17],[14110,19],[14169,17]]},"149":{"position":[[5448,19]]}}}],["r_wdt_counterget",{"_index":7983,"t":{},"d":{},"k":{},"b":{"148":{"position":[[325,16],[12792,18],[12850,16]]},"149":{"position":[[4573,18]]}}}],["r_wdt_counterget(&g_wdt0_ctrl",{"_index":8055,"t":{},"d":{},"k":{},"b":{"148":{"position":[[8913,30],[13238,30]]}}}],["r_wdt_open",{"_index":7978,"t":{},"d":{},"k":{},"b":{"148":{"position":[[76,10],[9481,12],[10363,12],[10415,10]]},"149":{"position":[[3292,12]]}}}],["r_wdt_open(&g_wdt0_ctrl",{"_index":8015,"t":{},"d":{},"k":{},"b":{"148":{"position":[[5295,24],[8071,24],[11032,24]]}}}],["r_wdt_refresh",{"_index":7976,"t":{},"d":{},"k":{},"b":{"148":{"position":[[23,13],[4545,15],[5498,14],[6672,15],[8293,15],[8369,15],[9690,15],[9745,13]]},"149":{"position":[[3590,15]]}}}],["r_wdt_refresh(&g_wdt0_ctrl",{"_index":8017,"t":{},"d":{},"k":{},"b":{"148":{"position":[[5525,28],[5731,28],[6747,28],[8478,28],[9140,28],[10123,28]]}}}],["r_wdt_statusclear",{"_index":7980,"t":{},"d":{},"k":{},"b":{"148":{"position":[[156,17],[11317,19],[11376,17]]},"149":{"position":[[4238,19]]}}}],["r_wdt_statusclear(&g_wdt0_ctrl",{"_index":8026,"t":{},"d":{},"k":{},"b":{"148":{"position":[[6589,31],[11747,31]]}}}],["r_wdt_statusget",{"_index":7982,"t":{},"d":{},"k":{},"b":{"148":{"position":[[240,15],[12014,17],[12071,15]]},"149":{"position":[[3871,17]]}}}],["r_wdt_statusget(&g_wdt0_ctrl",{"_index":8025,"t":{},"d":{},"k":{},"b":{"148":{"position":[[6395,29],[12530,29]]}}}],["r_wdt_timeoutget",{"_index":7985,"t":{},"d":{},"k":{},"b":{"148":{"position":[[406,16],[13528,18],[13586,16]]},"149":{"position":[[4948,18]]}}}],["r_xspi_qspi",{"_index":185,"t":{"20":{"position":[[45,11]]},"150":{"position":[[94,13]]}},"d":{},"k":{},"b":{"120":{"position":[[100,13]]},"143":{"position":[[255,13]]},"150":{"position":[[2070,11],[2394,11],[2490,12]]}}}],["r_xspi_qspi)driv",{"_index":8380,"t":{},"d":{},"k":{},"b":{"152":{"position":[[5175,19]]}}}],["r_xspi_qspi_autocalibr",{"_index":7635,"t":{},"d":{},"k":{},"b":{"143":{"position":[[9768,27]]},"150":{"position":[[1208,25],[26880,27],[26947,25]]}}}],["r_xspi_qspi_bankset",{"_index":7632,"t":{},"d":{},"k":{},"b":{"143":{"position":[[9397,21]]},"150":{"position":[[978,19],[25392,21],[25453,19]]}}}],["r_xspi_qspi_clos",{"_index":7637,"t":{},"d":{},"k":{},"b":{"143":{"position":[[10033,19]]},"150":{"position":[[115,17],[19691,19],[19750,17]]}}}],["r_xspi_qspi_directread",{"_index":7611,"t":{},"d":{},"k":{},"b":{"143":{"position":[[6154,24]]},"150":{"position":[[314,22],[20724,24],[20788,22]]}}}],["r_xspi_qspi_directtransf",{"_index":7613,"t":{},"d":{},"k":{},"b":{"143":{"position":[[6618,28]]},"150":{"position":[[1052,26],[3123,29],[10909,28],[10966,26],[11877,28],[11934,26],[25818,28],[25886,26]]}}}],["r_xspi_qspi_directtransfer(&g_qspi0_ctrl",{"_index":8208,"t":{},"d":{},"k":{},"b":{"150":{"position":[[9464,41],[10008,41],[10669,41],[11634,41],[12896,41],[13912,41],[14702,41],[26458,41]]}}}],["r_xspi_qspi_directwrit",{"_index":7606,"t":{},"d":{},"k":{},"b":{"143":{"position":[[5393,25]]},"150":{"position":[[172,23],[20088,25],[20153,23],[26807,23]]}}}],["r_xspi_qspi_eras",{"_index":7623,"t":{},"d":{},"k":{},"b":{"143":{"position":[[8017,19]]},"150":{"position":[[770,17],[23691,19],[23750,17]]}}}],["r_xspi_qspi_erase(&g_qspi0_ctrl",{"_index":8188,"t":{},"d":{},"k":{},"b":{"150":{"position":[[8108,32]]}}}],["r_xspi_qspi_open",{"_index":7604,"t":{},"d":{},"k":{},"b":{"143":{"position":[[4997,18]]},"150":{"position":[[23,16],[6543,18],[7715,18],[7902,18],[8209,18],[18762,18],[18820,16]]}}}],["r_xspi_qspi_open(&g_qspi0_ctrl",{"_index":8184,"t":{},"d":{},"k":{},"b":{"150":{"position":[[7542,31],[11522,31],[19304,31]]}}}],["r_xspi_qspi_spiprotocolset",{"_index":7615,"t":{},"d":{},"k":{},"b":{"143":{"position":[[7108,28]]},"150":{"position":[[421,26],[2944,29],[21262,28],[21330,26]]}}}],["r_xspi_qspi_spiprotocolset(&g_qspi0_ctrl",{"_index":8217,"t":{},"d":{},"k":{},"b":{"150":{"position":[[10804,41]]}}}],["r_xspi_qspi_statusget",{"_index":7626,"t":{},"d":{},"k":{},"b":{"143":{"position":[[8533,23]]},"150":{"position":[[881,21],[24733,23],[24796,21]]}}}],["r_xspi_qspi_statusget(&g_qspi0_ctrl",{"_index":8215,"t":{},"d":{},"k":{},"b":{"150":{"position":[[10225,36]]}}}],["r_xspi_qspi_writ",{"_index":7618,"t":{},"d":{},"k":{},"b":{"143":{"position":[[7490,19]]},"150":{"position":[[641,17],[22735,19],[22794,17]]}}}],["r_xspi_qspi_write(&g_qspi0_ctrl",{"_index":8190,"t":{},"d":{},"k":{},"b":{"150":{"position":[[8430,32]]}}}],["r_xspi_qspi_xipent",{"_index":7628,"t":{},"d":{},"k":{},"b":{"143":{"position":[[8851,22]]},"150":{"position":[[522,20],[21891,22],[21953,20]]}}}],["r_xspi_qspi_xipexit",{"_index":7630,"t":{},"d":{},"k":{},"b":{"143":{"position":[[9095,21]]},"150":{"position":[[582,19],[22315,21],[22376,19]]}}}],["ra",{"_index":2827,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1889,2]]},"136":{"position":[[4540,2]]},"138":{"position":[[2940,2]]},"139":{"position":[[2654,2]]},"142":{"position":[[2801,2]]},"151":{"position":[[292,2],[620,2],[1385,2],[2847,2],[3206,2]]}}}],["ra2e2",{"_index":4119,"t":{},"d":{},"k":{},"b":{"88":{"position":[[20304,5],[21783,5],[22230,5],[48202,5]]}}}],["ra6m3",{"_index":6242,"t":{},"d":{},"k":{},"b":{"128":{"position":[[15140,5]]}}}],["ram",{"_index":2045,"t":{},"d":{},"k":{},"b":{"71":{"position":[[41389,3]]},"75":{"position":[[2268,3],[2416,3],[17702,3],[24792,3]]},"95":{"position":[[766,3],[1067,4],[1160,4]]},"96":{"position":[[916,4]]},"98":{"position":[[708,3],[1008,4],[1101,4]]},"99":{"position":[[745,3],[1044,4],[1137,4]]},"100":{"position":[[895,4]]},"104":{"position":[[687,3],[985,4],[1078,4]]},"113":{"position":[[1268,3]]},"128":{"position":[[3898,3],[8100,3],[18254,3],[18725,4],[21825,3],[21950,3],[25061,3],[25377,3],[25523,3],[25734,3]]},"143":{"position":[[2554,4],[9741,3]]}}}],["rang",{"_index":1648,"t":{},"d":{},"k":{},"b":{"70":{"position":[[13349,5],[13421,5],[13489,5],[13559,5],[13630,5]]},"76":{"position":[[17688,5],[23578,5]]},"83":{"position":[[58478,5]]},"84":{"position":[[3122,6],[3370,6],[11305,5],[16140,5]]},"88":{"position":[[11956,5],[12105,5],[12261,5],[13122,5],[13254,5],[13421,5]]},"105":{"position":[[32141,5],[33158,5]]},"106":{"position":[[15860,6]]},"124":{"position":[[3331,5]]},"134":{"position":[[2456,6]]},"135":{"position":[[22681,6]]},"145":{"position":[[2255,5]]},"146":{"position":[[2652,5],[2692,5],[14277,5],[14808,6]]}}}],["raq",{"_index":6735,"t":{},"d":{},"k":{},"b":{"134":{"position":[[3377,3],[3453,3],[3471,3],[3500,3],[11102,3]]}}}],["raqdatacalcul",{"_index":6743,"t":{},"d":{},"k":{},"b":{"134":{"position":[[5696,16],[10851,16]]}}}],["rate",{"_index":728,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5737,4]]},"71":{"position":[[7842,5],[45432,5]]},"74":{"position":[[1395,4],[1466,4]]},"75":{"position":[[12041,4],[12178,4],[20908,4],[32058,4],[35235,4]]},"85":{"position":[[1360,4],[1389,4]]},"86":{"position":[[1168,4],[1197,4]]},"88":{"position":[[1663,5],[12403,4],[12471,5],[12536,4],[12603,5],[20638,4],[43660,5],[43675,4],[43799,5],[50179,4],[50355,4],[50421,4],[50490,4],[50559,4],[50628,4]]},"92":{"position":[[2087,4],[21842,4],[21902,4],[24239,4],[24299,4]]},"113":{"position":[[2932,4],[5984,4],[6007,5]]},"124":{"position":[[1465,5],[1524,5],[1579,5],[1637,5],[2907,4],[2979,5],[3309,5],[4997,4],[5079,5],[5163,4],[6260,4],[6332,4],[6378,5],[6410,4],[6473,5],[6553,4],[7407,5],[10132,5],[14715,4],[15032,4]]},"125":{"position":[[777,5],[836,5],[891,5],[949,5],[2500,4],[2572,5],[3805,4],[3887,5],[3971,4],[7470,4],[7542,4],[7588,5],[7620,4],[7683,5],[8419,5],[9018,5],[14996,4]]},"128":{"position":[[2925,4],[3295,4],[3590,4],[30040,4],[30106,4]]},"131":{"position":[[2722,6]]},"134":{"position":[[2449,6]]},"136":{"position":[[662,5],[8693,4],[15576,4],[15678,4],[15871,4],[16023,4],[18204,4]]},"137":{"position":[[4387,5],[7434,5],[7478,4]]},"138":{"position":[[1463,5],[1522,5],[1577,5],[3314,4],[3370,5],[3403,4],[3476,4],[3534,4],[3585,4],[3885,4],[3944,4],[4003,4],[4062,4],[4121,4],[4186,4],[4266,4],[4418,5],[5040,4],[5149,4],[5253,4],[5975,4],[6050,4],[6096,4],[6142,4],[6205,5],[6662,4],[11835,4],[11905,4],[13178,4],[13493,4]]},"139":{"position":[[1495,4],[1523,4],[3220,5],[3249,4],[3361,4],[3472,4],[3531,4],[3592,4],[3632,5],[5594,4],[5624,4],[5698,4],[5757,4],[7312,4],[7729,4],[13211,4],[14292,4],[14343,4],[14593,5],[15398,5],[15458,5],[21726,4],[21951,4],[24984,4],[25076,4],[25135,4],[25280,4],[25530,4],[25624,4],[25662,4],[25734,4]]},"140":{"position":[[1516,4],[1544,4],[2968,5],[2988,4],[3047,4],[3108,4],[3148,5],[3992,4],[4053,4],[4093,5],[4613,4],[4672,4],[6222,4],[6623,4],[6715,5],[10454,4],[10565,4],[11317,4],[11487,5],[12197,5],[12256,5],[19585,4],[19809,4],[22879,4],[22971,4],[23084,4],[23450,4],[23544,4],[23627,4]]},"143":{"position":[[12062,6]]},"147":{"position":[[313,4],[6540,5],[6885,5],[7232,4]]}}}],["rate.in",{"_index":7179,"t":{},"d":{},"k":{},"b":{"139":{"position":[[7821,7]]}}}],["ratevalu",{"_index":7158,"t":{},"d":{},"k":{},"b":{"139":{"position":[[3147,9]]},"140":{"position":[[2895,9]]}}}],["ratio",{"_index":2058,"t":{},"d":{},"k":{},"b":{"71":{"position":[[42988,6]]},"106":{"position":[[14870,5],[15910,6],[17514,5]]},"124":{"position":[[3249,5],[3345,5]]},"134":{"position":[[2193,5],[3490,5]]},"148":{"position":[[4142,5]]},"149":{"position":[[7003,6]]}}}],["ratiomcu",{"_index":7997,"t":{},"d":{},"k":{},"b":{"148":{"position":[[2215,8]]}}}],["raw",{"_index":2622,"t":{},"d":{},"k":{},"b":{"76":{"position":[[2728,3],[2808,3],[6257,3],[6326,3]]},"83":{"position":[[6374,3],[6851,3],[13494,4],[13729,4],[13961,4],[14175,4],[15875,4]]},"84":{"position":[[3136,4],[3441,3],[4544,4],[4918,3],[4987,3]]},"130":{"position":[[881,3],[3706,3],[4145,3]]},"132":{"position":[[1121,3],[4252,3],[4691,3]]},"133":{"position":[[9786,3]]},"134":{"position":[[1080,3],[7639,3],[8121,3],[8654,3],[9161,3],[9700,3],[10233,3],[10766,3],[11268,3]]},"143":{"position":[[5351,3],[5501,3],[6058,3],[6268,3],[6576,3]]},"144":{"position":[[1783,3],[2360,3]]},"150":{"position":[[20579,3],[21116,3],[26268,3]]}}}],["raw_data",{"_index":6642,"t":{},"d":{},"k":{},"b":{"133":{"position":[[11346,9],[14536,11],[14990,10],[15480,9],[18702,11],[19156,10],[19784,9],[23597,11],[24051,10],[24687,9],[28853,11],[30265,10],[30954,9],[34141,11],[34590,10],[35062,9],[38288,11],[38743,10],[39371,9],[42593,11],[43047,10],[43512,9],[47555,11],[48768,10]]}}}],["rbar",{"_index":8404,"t":{},"d":{},"k":{},"b":{"287":{"position":[[291,4]]}}}],["rcda",{"_index":6712,"t":{},"d":{},"k":{},"b":{"134":{"position":[[1302,4]]}}}],["rcv",{"_index":4319,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47886,3]]}}}],["rcv_irq",{"_index":4306,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47398,7]]}}}],["rcv_statu",{"_index":4074,"t":{},"d":{},"k":{},"b":{"88":{"position":[[13620,11]]}}}],["re",{"_index":1668,"t":{},"d":{},"k":{},"b":{"70":{"position":[[14731,2],[15068,2]]},"75":{"position":[[3343,3]]},"92":{"position":[[30942,2],[33930,2],[34643,2],[35912,2],[39355,2],[40568,2]]},"135":{"position":[[8033,2]]},"142":{"position":[[8915,2]]}}}],["reach",{"_index":1709,"t":{},"d":{},"k":{},"b":{"71":{"position":[[1144,8]]},"79":{"position":[[6331,7],[6648,7]]},"84":{"position":[[5185,7]]},"111":{"position":[[206,8]]},"145":{"position":[[11006,7],[11166,7],[11918,7]]},"152":{"position":[[285,8]]}}}],["read",{"_index":304,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1859,7],[1935,5],[2456,7],[4245,4],[7623,4],[7783,4],[7967,4],[8237,4],[8446,4],[9593,4],[11069,4],[11103,4],[14102,4]]},"68":{"position":[[7788,7],[8831,4],[10595,4],[12347,4],[15214,4],[24799,4],[24816,4],[27492,5],[27587,4],[28143,5],[28268,4]]},"69":{"position":[[1948,7],[2786,4],[2898,5],[14459,4],[14676,7],[14832,4],[15765,4],[19195,5],[22720,4],[22788,4],[22838,4],[31226,4],[31243,4],[34892,5],[34987,4],[35543,5],[35668,4]]},"70":{"position":[[1821,4],[13862,4]]},"74":{"position":[[1275,8],[3412,4],[4853,4],[5013,4],[5179,4]]},"75":{"position":[[16925,4],[17546,4],[27195,4],[38004,4]]},"76":{"position":[[8491,4],[21631,4]]},"77":{"position":[[2479,5],[2578,4],[4692,4],[8153,5]]},"78":{"position":[[310,4],[5647,5]]},"83":{"position":[[21824,4]]},"84":{"position":[[7169,4]]},"85":{"position":[[3298,4],[4516,4],[4714,4],[4948,4],[4992,5],[5070,8]]},"86":{"position":[[2942,4],[3814,4],[3990,4],[4202,4],[4246,5],[7359,4],[7504,4],[7558,4],[7643,4]]},"87":{"position":[[3066,7],[3746,4],[6191,4],[11653,4],[11839,4],[11952,4],[11981,4],[12089,4],[12191,4],[12392,4],[13066,4],[13312,4],[13575,4],[15432,4],[16661,4],[16752,4],[17574,5],[17647,4],[17831,4],[18335,4],[19832,4]]},"88":{"position":[[5305,4],[10174,4],[12067,4],[12144,4],[12526,4],[12593,4],[12910,4],[12986,4],[13081,4],[13147,4],[17093,4],[17145,4],[17203,4],[17263,4],[17511,4],[17632,4],[17710,4],[17807,4],[17862,5],[19304,4],[19465,5],[19746,4],[19786,4],[19911,4],[20675,4],[25062,4],[25254,4],[26125,4],[26990,4],[27651,4],[27827,4],[28574,4],[28611,4],[28766,4],[28814,4],[29178,4],[32426,4],[32612,4],[33021,4],[33311,7],[33515,4],[34285,4],[34336,4],[34955,5],[37110,4],[37759,4],[38429,4],[38513,4],[38530,5],[39109,4],[41311,4],[43387,4],[43789,4],[43963,4],[43972,4],[44032,4],[44713,4],[45619,4],[45834,4],[45848,4],[45937,4],[57244,4],[58904,4],[60846,4]]},"92":{"position":[[2465,5],[5618,7],[7051,7],[10714,5],[11082,7],[13453,4],[14895,4],[16053,4],[16151,4],[31715,5],[31926,5],[32017,4],[32080,4],[33714,5],[33810,4],[36354,5],[36484,5],[36732,5],[36823,4],[36887,4],[38916,5],[39009,5],[39235,4]]},"93":{"position":[[4101,5],[4360,4],[4511,5],[5155,4],[5248,5],[6444,4],[6566,5],[7382,4],[7500,5]]},"105":{"position":[[13427,4],[34313,4]]},"106":{"position":[[23240,5],[23373,5],[23446,4],[23504,6],[23573,4]]},"107":{"position":[[3119,4],[4990,4],[5140,4]]},"109":{"position":[[8159,4]]},"113":{"position":[[4635,4],[5530,4]]},"124":{"position":[[1656,4],[7248,4],[8995,4],[9611,4],[10995,4],[15620,4]]},"125":{"position":[[957,5],[1014,4],[4793,4],[5568,4],[6707,4],[7323,4],[7912,5],[7938,4],[8064,4],[8255,4],[9902,4],[12106,4],[12597,4],[13047,4],[15499,4],[15656,4],[16937,4]]},"126":{"position":[[1710,4],[2590,4],[2753,4],[2908,4],[2953,5],[3574,5]]},"127":{"position":[[493,4],[908,4],[1372,7],[1439,5],[8619,4],[9853,4]]},"128":{"position":[[14314,4]]},"129":{"position":[[750,5],[4291,4],[9250,4],[13201,5]]},"130":{"position":[[2118,4],[3397,4],[3557,4]]},"131":{"position":[[1449,5],[4916,4],[5611,4],[5712,4],[5959,4],[6229,4],[6372,4],[7881,4],[8439,4],[9402,4],[13146,4],[15721,4],[19308,5]]},"132":{"position":[[2742,4],[3943,4],[4103,4]]},"133":{"position":[[844,5],[1784,4],[5757,4],[9766,5],[10045,4],[10592,4],[23405,4],[28608,4],[47310,4],[53266,5],[54161,5],[55184,5],[55619,4],[55812,5],[56754,5],[57604,5],[58436,5],[59293,5],[60143,5],[60993,5],[61821,5]]},"134":{"position":[[4578,4],[7181,4],[7326,4],[7496,4]]},"135":{"position":[[1501,5],[6729,5],[18265,4]]},"136":{"position":[[1769,7],[1825,9],[1851,8]]},"138":{"position":[[1670,4],[1934,4],[7843,4],[8882,4],[9505,4],[10199,4],[14726,4]]},"139":{"position":[[8215,5],[8257,5],[9018,4],[19803,4],[23921,7],[27054,5],[27193,7]]},"140":{"position":[[6892,4],[18198,4],[21773,7],[23593,5],[24003,5],[24142,7]]},"141":{"position":[[1058,4],[2206,4],[2733,4],[3732,4],[11419,4]]},"142":{"position":[[1642,5],[7903,5],[20257,4]]},"143":{"position":[[1862,4],[2045,4],[2253,4],[2735,4],[2783,4],[3402,7],[6053,4],[6263,4],[6315,4],[10990,4],[11051,4],[11116,4],[11215,4],[11300,4],[11398,4],[11483,4],[13366,4],[14912,4]]},"146":{"position":[[1431,7],[2352,4],[2382,4],[3943,7],[6875,4],[8334,4],[8417,4],[13899,4],[16088,4],[20871,5],[20948,4]]},"147":{"position":[[1201,4],[3166,4],[3743,4],[4964,4],[5119,4],[5146,4],[5176,4],[5617,4],[8807,4],[8860,5],[9070,5]]},"148":{"position":[[8857,4],[12308,4],[12657,5],[13083,4],[13182,4],[13386,5],[13833,4]]},"149":{"position":[[3828,4],[4522,4],[4899,4]]},"150":{"position":[[1474,4],[1605,7],[1825,4],[3284,4],[3518,4],[3579,5],[7795,4],[10877,7],[11005,4],[11038,4],[11597,4],[12742,7],[12780,4],[13498,4],[13843,4],[14049,4],[14247,4],[21110,5]]},"292":{"position":[[215,4],[1114,4],[1229,4]]}}}],["read/writ",{"_index":1315,"t":{},"d":{},"k":{},"b":{"70":{"position":[[1183,10]]},"77":{"position":[[4617,10]]},"88":{"position":[[1898,10],[1930,10],[20647,11],[45738,10]]},"92":{"position":[[2256,10]]},"111":{"position":[[382,10]]},"139":{"position":[[1702,10]]},"140":{"position":[[1698,10]]},"143":{"position":[[6565,10],[6800,10]]},"150":{"position":[[26257,10]]},"152":{"position":[[470,10]]}}}],["read32",{"_index":380,"t":{},"d":{},"k":{},"b":{"67":{"position":[[4344,6],[8073,6]]}}}],["read_after_writ",{"_index":7591,"t":{},"d":{},"k":{},"b":{"143":{"position":[[3837,17],[5310,17]]},"150":{"position":[[284,17],[20485,16],[26836,16]]}}}],["read_buff",{"_index":4218,"t":{},"d":{},"k":{},"b":{"88":{"position":[[38443,11],[38587,12]]}}}],["read_buffer[example_read_buffer_s",{"_index":4217,"t":{},"d":{},"k":{},"b":{"88":{"position":[[38342,38]]}}}],["read_buffer_descriptor",{"_index":4292,"t":{},"d":{},"k":{},"b":{"88":{"position":[[45554,22]]}}}],["read_bytes_max",{"_index":7942,"t":{},"d":{},"k":{},"b":{"147":{"position":[[1149,14]]}}}],["read_command",{"_index":7581,"t":{},"d":{},"k":{},"b":{"143":{"position":[[2769,12]]}}}],["read_data",{"_index":6119,"t":{},"d":{},"k":{},"b":{"127":{"position":[[6251,11]]}}}],["read_data_r",{"_index":4267,"t":{},"d":{},"k":{},"b":{"88":{"position":[[43769,14]]}}}],["read_length",{"_index":4262,"t":{},"d":{},"k":{},"b":{"88":{"position":[[43370,11]]}}}],["read_mod",{"_index":7569,"t":{},"d":{},"k":{},"b":{"143":{"position":[[1851,9]]}}}],["read_transfer_count_fin",{"_index":4294,"t":{},"d":{},"k":{},"b":{"88":{"position":[[45781,25]]}}}],["read_turnaround_tim",{"_index":4270,"t":{},"d":{},"k":{},"b":{"88":{"position":[[44006,20]]}}}],["read_turnaround_time_en",{"_index":4269,"t":{},"d":{},"k":{},"b":{"88":{"position":[[43896,27]]}}}],["reader",{"_index":6187,"t":{},"d":{},"k":{},"b":{"128":{"position":[[8334,7]]}}}],["readi",{"_index":928,"t":{},"d":{},"k":{},"b":{"68":{"position":[[23560,5]]},"69":{"position":[[29837,5]]},"75":{"position":[[32896,5]]},"124":{"position":[[17288,5]]},"128":{"position":[[6347,5],[10117,5],[10320,5]]},"131":{"position":[[1690,6],[5772,6],[6872,5],[8491,6],[19549,6]]},"138":{"position":[[16624,5]]},"146":{"position":[[16942,5]]},"147":{"position":[[10339,5]]}}}],["reading/writ",{"_index":6803,"t":{},"d":{},"k":{},"b":{"135":{"position":[[6215,15]]},"142":{"position":[[7095,15]]}}}],["readlevel",{"_index":4501,"t":{},"d":{},"k":{},"b":{"92":{"position":[[12773,10],[13544,12]]}}}],["readout",{"_index":6673,"t":{},"d":{},"k":{},"b":{"133":{"position":[[29903,8],[48406,8]]},"134":{"position":[[13339,8]]}}}],["readref",{"_index":8127,"t":{},"d":{},"k":{},"b":{"150":{"position":[[3182,9]]}}}],["reads/writ",{"_index":2832,"t":{},"d":{},"k":{},"b":{"77":{"position":[[2742,12]]}}}],["readstop",{"_index":7952,"t":{},"d":{},"k":{},"b":{"147":{"position":[[4423,8],[8649,8]]}}}],["real",{"_index":7012,"t":{},"d":{},"k":{},"b":{"137":{"position":[[113,4],[215,4],[10043,4],[10095,4],[10149,4]]}}}],["realiz",{"_index":6594,"t":{},"d":{},"k":{},"b":{"133":{"position":[[5060,8]]}}}],["realtim",{"_index":2019,"t":{"136":{"position":[[45,8]]}},"d":{},"k":{},"b":{"71":{"position":[[35572,8]]},"115":{"position":[[1237,8]]},"122":{"position":[[677,8]]},"136":{"position":[[4320,8],[4411,8]]},"137":{"position":[[50,8],[264,8]]},"152":{"position":[[6180,8],[7593,8]]}}}],["reason",{"_index":1803,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6507,7]]},"76":{"position":[[6232,6]]},"84":{"position":[[4893,6]]},"113":{"position":[[2892,7]]},"124":{"position":[[14924,7]]},"125":{"position":[[14888,7]]},"128":{"position":[[16200,8]]},"138":{"position":[[13387,7]]}}}],["receipt",{"_index":4498,"t":{},"d":{},"k":{},"b":{"92":{"position":[[10749,7],[11807,7]]}}}],["receiv",{"_index":1038,"t":{"96":{"position":[[101,7]]},"100":{"position":[[101,7]]}},"d":{},"k":{},"b":{"69":{"position":[[11539,9]]},"70":{"position":[[13150,8]]},"74":{"position":[[1204,7],[2469,8],[3027,7],[8401,7],[8604,7]]},"75":{"position":[[1133,7],[1304,7],[1346,7],[1792,8],[3476,8],[11183,8],[13883,8],[16027,9],[16164,7],[16201,7],[17017,9],[17193,8],[17302,8],[18395,8],[19398,7],[20071,9],[20317,8],[22689,7],[23516,8],[24553,8],[25094,7],[27145,7],[27200,8],[30189,7],[32853,10],[32972,8],[34626,7],[34745,7],[34872,7]]},"79":{"position":[[6069,8]]},"80":{"position":[[2966,7]]},"81":{"position":[[2576,7]]},"85":{"position":[[1655,7],[1985,8],[9515,7]]},"86":{"position":[[1451,7],[7203,7],[7849,8]]},"87":{"position":[[3918,9],[4046,8],[12053,7],[13336,8]]},"88":{"position":[[3222,7],[3490,9],[6396,7],[6529,8],[18723,8],[27633,8],[35184,9],[38237,9],[40426,7],[47206,8],[47302,7],[47407,7],[53693,8],[60870,8]]},"92":{"position":[[10910,8],[11391,8],[11946,8]]},"94":{"position":[[1060,7],[1112,8],[1335,7],[1385,7],[5514,9],[5591,9]]},"95":{"position":[[1072,7],[4683,7]]},"96":{"position":[[828,7],[4027,7]]},"98":{"position":[[1013,7],[4606,7]]},"99":{"position":[[1049,7],[4624,7]]},"100":{"position":[[807,7],[3974,7]]},"101":{"position":[[268,7],[409,7],[494,7],[1108,7],[1370,7],[1420,7]]},"103":{"position":[[1083,7]]},"104":{"position":[[990,7],[4547,7]]},"106":{"position":[[999,8],[19886,9],[19967,9],[20048,9],[20129,9],[20211,9]]},"107":{"position":[[2242,9],[5521,7]]},"112":{"position":[[541,7],[1313,7]]},"113":{"position":[[4289,7],[4489,7],[9240,7],[9751,7],[12104,7],[12219,7]]},"124":{"position":[[1252,7],[5647,7]]},"125":{"position":[[2003,8],[4455,7],[4902,9],[7818,7],[14779,7]]},"127":{"position":[[6171,7]]},"131":{"position":[[827,8],[1228,8],[1741,8],[7938,9],[8387,9],[8542,8],[8665,8],[8725,9],[9305,9],[9459,9],[13572,8],[13736,9],[17733,8],[18558,8],[19600,8]]},"133":{"position":[[9974,8],[10104,9],[10262,9],[10405,8],[10554,9],[10651,9],[10965,8],[11036,8]]},"135":{"position":[[4417,8],[4512,8],[4850,7],[4905,7],[4939,7],[6371,7],[6491,7],[6559,7],[6711,7],[12944,8],[13615,8],[13896,7],[15979,8],[18062,8],[20445,7]]},"136":{"position":[[4794,7]]},"138":{"position":[[1254,7],[5625,7]]},"139":{"position":[[6093,7],[6232,9],[6654,7],[6727,7],[8183,7],[8969,8],[9222,8],[9260,8],[9343,8],[9415,8],[10560,8],[10674,7],[10873,7],[11395,7],[14648,7],[16021,7],[16126,8],[19315,8],[22561,8],[23059,9],[23845,8],[27117,8]]},"140":{"position":[[4894,7],[5041,9],[5163,7],[5772,7],[5854,7],[6843,8],[7930,8],[8044,7],[8243,7],[8764,7],[11541,7],[13873,7],[14086,8],[14184,8],[14282,8],[14382,8],[14483,8],[14584,8],[14685,8],[14786,8],[14887,8],[14988,8],[15089,8],[15190,8],[15293,8],[15396,8],[15499,8],[15602,8],[15705,8],[15808,8],[17801,8],[20417,8],[20913,9],[21697,8],[24066,8]]},"141":{"position":[[1268,7],[1472,7],[3910,7],[4296,8],[5343,9],[5736,8]]},"142":{"position":[[2380,9],[3036,7],[7250,7],[7370,7],[7733,7],[7885,7],[15015,8],[20054,8],[22239,7]]},"147":{"position":[[1551,8],[2163,7],[2214,7],[3056,7],[5287,8],[5327,8],[9972,7],[10077,9]]},"152":{"position":[[1533,7],[2285,7]]}}}],["received/transmit",{"_index":3785,"t":{},"d":{},"k":{},"b":{"86":{"position":[[870,20]]}}}],["recent",{"_index":7713,"t":{},"d":{},"k":{},"b":{"144":{"position":[[1336,6]]}}}],["recept",{"_index":2292,"t":{},"d":{},"k":{},"b":{"75":{"position":[[3564,9],[3665,10],[3721,9],[3827,9],[3932,9],[4027,9],[4242,9],[4449,9],[4559,9],[4658,9],[4754,9],[4969,9],[5176,9],[5286,9],[5385,9],[5481,9],[5696,9],[5903,9],[6013,9],[6112,9],[6208,9],[6423,9],[6630,9],[6740,9],[6839,9],[6935,9],[7150,9],[7357,9],[7467,9],[7566,9],[7662,9],[7877,9],[8084,9],[8194,9],[8293,9],[8389,9],[8604,9],[8811,9],[8921,9],[9020,9],[9116,9],[9331,9],[9538,9],[9648,9],[9747,9],[9896,9],[10055,9],[10214,9],[10372,9],[10530,9],[10688,9],[16712,9],[26818,9]]},"80":{"position":[[2396,10]]},"86":{"position":[[1798,9]]},"106":{"position":[[862,9],[9289,9],[9406,9],[9423,9],[9562,9],[11815,9],[11877,9],[11917,9],[12006,9],[12728,9],[12773,9],[12818,9],[16680,9],[19789,9],[21717,10],[22509,10]]},"107":{"position":[[1593,9],[1775,9],[4492,9],[9174,10]]},"124":{"position":[[2380,10],[5544,9]]},"125":{"position":[[4352,9],[5366,10],[5450,9]]},"135":{"position":[[2018,10]]},"138":{"position":[[2368,9],[2490,10],[6909,9]]},"139":{"position":[[1372,9],[6162,10],[8875,9],[9142,10],[9552,10],[14410,9],[18187,9],[18225,9],[19453,9],[23788,9],[27060,9]]},"140":{"position":[[1393,9],[6749,9],[16806,9],[16844,9],[17939,9],[21640,9],[24009,9]]},"142":{"position":[[2244,10]]},"147":{"position":[[6619,9]]}}}],["recess",{"_index":2285,"t":{},"d":{},"k":{},"b":{"75":{"position":[[3362,9],[33770,11]]}}}],["reciev",{"_index":5943,"t":{},"d":{},"k":{},"b":{"124":{"position":[[10915,7]]},"138":{"position":[[10119,7]]}}}],["recogniz",{"_index":3706,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1298,12],[2391,12]]},"86":{"position":[[1107,12],[2236,12]]},"94":{"position":[[1275,12],[1724,12]]},"101":{"position":[[1310,12],[1706,12]]},"103":{"position":[[1287,12]]}}}],["recommend",{"_index":734,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5864,12]]},"69":{"position":[[11307,11]]},"71":{"position":[[6901,11],[10446,11]]},"75":{"position":[[3737,11],[21762,11],[24488,12],[26786,11],[30503,11]]},"79":{"position":[[7652,11]]},"88":{"position":[[20343,11]]},"107":{"position":[[5451,11]]},"124":{"position":[[3319,11]]},"128":{"position":[[15568,11]]},"131":{"position":[[3251,11],[5993,11]]},"133":{"position":[[7121,11],[7626,12],[8469,11]]},"135":{"position":[[7487,11],[8097,11]]},"138":{"position":[[6309,11]]},"139":{"position":[[9173,13]]},"142":{"position":[[6860,11],[8661,11],[8979,11]]},"148":{"position":[[2547,11],[4785,11]]},"150":{"position":[[6430,11]]}}}],["reconfigur",{"_index":2612,"t":{},"d":{},"k":{},"b":{"76":{"position":[[1543,15]]},"79":{"position":[[17353,11]]},"82":{"position":[[5083,13]]},"83":{"position":[[2327,15],[2371,15]]},"84":{"position":[[1340,15]]},"85":{"position":[[6247,13]]},"87":{"position":[[13789,12]]},"89":{"position":[[5828,11]]},"90":{"position":[[5444,11]]},"91":{"position":[[6999,11]]},"93":{"position":[[3155,15]]},"105":{"position":[[2223,15],[2267,15]]},"107":{"position":[[3832,11],[6123,12]]},"124":{"position":[[18197,13]]},"127":{"position":[[6773,11]]},"136":{"position":[[3325,12]]},"138":{"position":[[17647,13]]},"139":{"position":[[18764,12]]},"140":{"position":[[17293,12]]},"144":{"position":[[9621,12]]},"145":{"position":[[3778,11],[4944,11],[5101,11],[8922,12]]}}}],["record",{"_index":7162,"t":{},"d":{},"k":{},"b":{"139":{"position":[[4155,8]]},"140":{"position":[[3671,8]]}}}],["recov",{"_index":7991,"t":{},"d":{},"k":{},"b":{"148":{"position":[[812,7],[7816,10]]}}}],["recover",{"_index":4312,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47649,11]]}}}],["recoveri",{"_index":2212,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8130,8]]},"75":{"position":[[1964,8],[33400,8]]},"88":{"position":[[7412,8],[7444,8],[7478,8],[7505,8],[39713,8],[39818,8],[39918,8],[48122,8],[48226,8]]},"113":{"position":[[11200,8]]}}}],["recurs",{"_index":6083,"t":{},"d":{},"k":{},"b":{"127":{"position":[[2288,9],[5192,9],[5226,9]]},"128":{"position":[[8490,9],[8563,9],[8627,9]]},"129":{"position":[[6817,9],[6851,9]]},"131":{"position":[[11076,9],[11110,9]]},"133":{"position":[[12518,9],[12552,9],[16652,9],[16686,9],[20956,9],[20990,9],[25970,9],[26004,9],[32123,9],[32157,9],[36238,9],[36272,9],[40543,9],[40577,9],[44795,9],[44829,9]]}}}],["recv",{"_index":4769,"t":{},"d":{},"k":{},"b":{"95":{"position":[[1869,4]]},"98":{"position":[[1807,4]]},"99":{"position":[[1840,4]]},"104":{"position":[[1778,4]]}}}],["redefin",{"_index":1781,"t":{},"d":{},"k":{},"b":{"71":{"position":[[5089,10],[7033,9],[8095,10],[44883,10]]}}}],["reduc",{"_index":1816,"t":{},"d":{},"k":{},"b":{"71":{"position":[[7376,6]]},"82":{"position":[[5101,6]]},"87":{"position":[[13810,6],[19255,7]]},"107":{"position":[[6144,6]]},"128":{"position":[[3644,8],[4157,7]]},"138":{"position":[[4335,7]]},"139":{"position":[[3547,7]]},"140":{"position":[[3063,7],[4008,7]]},"144":{"position":[[9642,6]]}}}],["redund",{"_index":2015,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35487,10]]},"78":{"position":[[43,10],[90,10]]},"115":{"position":[[348,10]]},"152":{"position":[[6762,10]]}}}],["reenabl",{"_index":1973,"t":{},"d":{},"k":{},"b":{"71":{"position":[[30614,10],[33189,10]]},"109":{"position":[[4690,8]]}}}],["reent",{"_index":6203,"t":{},"d":{},"k":{},"b":{"128":{"position":[[10540,5]]}}}],["reentrant",{"_index":4383,"t":{},"d":{},"k":{},"b":{"89":{"position":[[6003,9],[6047,9]]},"90":{"position":[[5553,9],[5597,9]]},"91":{"position":[[7174,9],[7218,9]]},"128":{"position":[[10452,9],[10505,9]]},"135":{"position":[[17575,10]]},"142":{"position":[[19565,10]]}}}],["refer",{"_index":166,"t":{"3":{"position":[[63,9]]},"4":{"position":[[68,9]]},"5":{"position":[[67,9]]},"6":{"position":[[68,9]]},"7":{"position":[[65,9]]},"8":{"position":[[66,9]]},"9":{"position":[[58,9]]},"10":{"position":[[64,9]]},"11":{"position":[[61,9]]},"12":{"position":[[58,9]]},"13":{"position":[[61,9]]},"14":{"position":[[63,9]]},"15":{"position":[[76,9]]},"16":{"position":[[64,9]]},"17":{"position":[[61,9]]},"18":{"position":[[61,9]]},"19":{"position":[[58,9]]},"20":{"position":[[67,9]]},"21":{"position":[[59,9]]},"22":{"position":[[61,9]]},"23":{"position":[[62,9]]},"24":{"position":[[59,9]]},"25":{"position":[[62,9]]},"26":{"position":[[61,9]]},"27":{"position":[[68,9]]},"28":{"position":[[58,9]]},"29":{"position":[[58,9]]},"30":{"position":[[65,9]]},"31":{"position":[[58,9]]},"32":{"position":[[67,9]]},"33":{"position":[[59,9]]},"34":{"position":[[63,9]]},"35":{"position":[[65,9]]},"36":{"position":[[64,9]]},"37":{"position":[[59,9]]},"38":{"position":[[59,9]]},"39":{"position":[[69,9]]},"40":{"position":[[66,9]]},"41":{"position":[[72,9]]},"42":{"position":[[62,9]]},"43":{"position":[[67,9]]},"44":{"position":[[58,9]]},"45":{"position":[[74,9]]},"46":{"position":[[63,9]]},"47":{"position":[[62,9]]},"48":{"position":[[58,9]]},"49":{"position":[[76,9]]},"50":{"position":[[63,9]]},"51":{"position":[[63,9]]},"52":{"position":[[62,9]]},"53":{"position":[[61,9]]},"54":{"position":[[67,9]]},"55":{"position":[[59,9]]},"56":{"position":[[63,9]]},"57":{"position":[[65,9]]},"58":{"position":[[74,9]]},"59":{"position":[[61,9]]},"60":{"position":[[62,9]]},"61":{"position":[[61,9]]},"62":{"position":[[59,9]]},"63":{"position":[[63,9]]},"64":{"position":[[66,9]]},"65":{"position":[[61,9]]},"66":{"position":[[59,9]]},"152":{"position":[[49,9]]},"287":{"position":[[72,9]]},"288":{"position":[[70,9]]},"289":{"position":[[66,9]]},"290":{"position":[[66,9]]},"291":{"position":[[70,9]]},"292":{"position":[[67,9]]}},"d":{},"k":{},"b":{"2":{"position":[[58,5]]},"67":{"position":[[2244,9],[15571,9]]},"68":{"position":[[8089,5],[8102,9]]},"69":{"position":[[6111,9],[6180,9],[16784,9],[17104,9],[20432,9],[20494,9],[20557,9],[20621,9]]},"70":{"position":[[14635,9],[14972,9]]},"71":{"position":[[3837,9],[4130,11],[4708,9]]},"75":{"position":[[16285,5],[19830,5],[22086,5]]},"88":{"position":[[46468,9],[46661,9],[46859,9]]},"113":{"position":[[5991,9],[15609,5]]},"124":{"position":[[12638,9]]},"125":{"position":[[2589,9],[2729,9],[2774,9],[13474,9]]},"128":{"position":[[9554,9],[26719,5]]},"133":{"position":[[15096,9],[19262,9],[24157,9],[30371,9],[34696,9],[38849,9],[43153,9],[48874,9]]},"138":{"position":[[7361,5]]},"146":{"position":[[15486,9],[15538,9]]},"150":{"position":[[13611,9]]},"151":{"position":[[822,9],[902,9],[1536,10]]},"152":{"position":[[35,9]]}}}],["referencemust",{"_index":993,"t":{},"d":{},"k":{},"b":{"69":{"position":[[4844,13],[4965,13],[5782,13],[5903,13]]}}}],["reflect",{"_index":2649,"t":{},"d":{},"k":{},"b":{"76":{"position":[[6274,7],[18302,9]]},"83":{"position":[[22638,9],[51378,9]]},"84":{"position":[[4935,7],[11864,9]]},"144":{"position":[[7408,9]]}}}],["refresh",{"_index":7992,"t":{},"d":{},"k":{},"b":{"148":{"position":[[889,9],[1002,7],[1038,7],[1229,9],[1264,7],[2346,7],[2441,7],[3357,7],[4018,7],[5652,7],[5945,7],[8450,7],[8767,10],[9061,7],[9847,7],[9921,10],[10044,7],[10236,10]]},"149":{"position":[[1549,7],[1623,7],[2460,7],[3433,7],[3547,7],[7452,7],[7786,7],[8126,7],[8815,7],[8839,7],[8931,7]]},"151":{"position":[[858,7]]}}}],["reg_id",{"_index":378,"t":{},"d":{},"k":{},"b":{"67":{"position":[[4298,7],[4399,7],[4577,7],[7734,7],[8188,7],[9244,7]]},"68":{"position":[[567,7],[667,7],[905,7],[27329,7],[27980,7],[29882,7]]},"69":{"position":[[567,7],[667,7],[823,7],[34729,7],[35380,7],[36479,7]]},"146":{"position":[[494,7],[594,7],[902,7],[20708,7],[21343,7],[23197,7]]}}}],["regard",{"_index":7096,"t":{},"d":{},"k":{},"b":{"138":{"position":[[6551,9]]}}}],["regardless",{"_index":1046,"t":{},"d":{},"k":{},"b":{"69":{"position":[[12734,10]]}}}],["region",{"_index":1821,"t":{},"d":{},"k":{},"b":{"71":{"position":[[7936,6],[44408,6]]},"113":{"position":[[5860,6]]},"287":{"position":[[28,7],[169,7],[304,7],[422,7]]},"289":{"position":[[399,8],[577,8]]}}}],["regist",{"_index":488,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10979,8],[15382,8],[15432,8],[15480,9]]},"68":{"position":[[7455,9],[7975,10],[8061,9],[8190,9],[8500,9],[28200,8]]},"69":{"position":[[2828,8],[12345,9],[12404,8],[12840,8],[12871,8],[12966,8],[23927,9],[29703,9],[35600,8]]},"70":{"position":[[14617,10],[14954,10],[15288,10],[15499,10]]},"71":{"position":[[1478,8],[3301,10],[7548,8],[8405,9],[11399,9],[11928,8],[36173,11],[40614,8],[42278,9],[43131,9],[46604,8],[46723,10],[46810,8]]},"74":{"position":[[998,9],[6891,8]]},"75":{"position":[[31297,8],[31380,8],[31461,8],[31553,8]]},"76":{"position":[[6166,8],[6330,8]]},"77":{"position":[[2267,8],[2520,8],[2607,8]]},"78":{"position":[[1105,8]]},"79":{"position":[[1263,8],[1292,8],[1315,8],[4375,8],[4414,8],[9347,8],[10711,8],[11971,8],[15575,8],[15696,8],[15810,8],[15837,8],[16276,8]]},"80":{"position":[[5018,8]]},"81":{"position":[[491,8]]},"83":{"position":[[32424,9],[32560,9],[32891,9],[50413,9],[50459,9],[51342,9]]},"84":{"position":[[4827,8],[4991,8],[5124,9],[5412,9],[10825,9],[10871,9]]},"87":{"position":[[1358,9],[2760,9],[3736,9],[16856,9],[16916,9],[19812,9]]},"88":{"position":[[4766,10],[4821,9],[5401,10],[5483,10],[6168,9],[6607,9],[18835,9],[25653,9],[26971,9],[44859,8]]},"92":{"position":[[3643,8],[4119,8],[5602,8],[7035,8],[7687,8],[8531,8],[9375,8],[10219,8],[10993,9],[18400,8],[18531,8],[21477,8],[21538,8],[21599,8],[21660,8],[22596,8],[22677,8],[22758,8],[22839,8],[23874,8],[23935,8],[23996,8],[24057,8],[24993,8],[25074,8],[25155,8],[25236,8],[27893,8],[28032,8],[28140,8],[29296,10],[29895,10],[29992,9],[30236,9]]},"93":{"position":[[1040,8]]},"94":{"position":[[4073,8]]},"95":{"position":[[1641,8]]},"96":{"position":[[1459,8]]},"97":{"position":[[1206,8]]},"98":{"position":[[1579,8]]},"99":{"position":[[1612,8]]},"100":{"position":[[1432,8]]},"101":{"position":[[3785,8]]},"102":{"position":[[1181,8]]},"104":{"position":[[1550,8]]},"105":{"position":[[17708,8],[17768,8],[17831,8],[19602,9],[19658,9],[19714,8],[19799,8],[26442,8],[26520,8],[32705,9],[32879,8],[32937,8]]},"109":{"position":[[4001,8]]},"113":{"position":[[5521,8],[6440,8]]},"128":{"position":[[9225,10],[9420,11],[9530,11]]},"131":{"position":[[15417,8],[15535,8]]},"133":{"position":[[5277,10],[5313,8],[5387,11],[5406,8],[5769,8],[49961,8]]},"135":{"position":[[1436,8],[1467,8],[11019,9],[12120,8],[12526,8],[12632,8],[12724,8],[12805,8],[13507,8],[17053,9],[22077,8],[22153,8],[22524,8]]},"136":{"position":[[1964,10],[2687,10],[2704,8],[6510,10]]},"138":{"position":[[11910,8],[12021,8],[12141,8]]},"139":{"position":[[4001,8],[13167,8],[14556,8],[24989,8],[25089,10]]},"140":{"position":[[3517,8],[10410,8],[10570,8],[10621,8],[11450,8],[22884,8],[22984,10]]},"142":{"position":[[1577,8],[1608,8],[1694,8],[12045,9],[13281,8],[14139,8],[14245,8],[14338,8],[14420,8],[14907,8],[18887,9],[23866,8],[24274,8]]},"144":{"position":[[9244,8]]},"145":{"position":[[1269,9],[2934,8]]},"146":{"position":[[4249,8],[4309,9]]},"148":{"position":[[1439,8],[5447,8],[8266,9],[8329,8],[10003,8],[10901,9]]},"149":{"position":[[3190,8],[3249,9]]},"150":{"position":[[9443,8],[9620,8],[10892,8],[11017,8],[11059,8],[11613,8],[11771,8],[26437,8]]}}}],["register(",{"_index":4655,"t":{},"d":{},"k":{},"b":{"92":{"position":[[29010,11]]}}}],["register_address",{"_index":6696,"t":{},"d":{},"k":{},"b":{"133":{"position":[[49943,16]]}}}],["registr",{"_index":5801,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13213,12]]}}}],["registri",{"_index":6191,"t":{},"d":{},"k":{},"b":{"128":{"position":[[8897,8],[8960,8],[9267,8],[9342,8]]}}}],["regular",{"_index":6179,"t":{},"d":{},"k":{},"b":{"128":{"position":[[6795,7]]},"131":{"position":[[6157,7],[8922,7]]}}}],["reject",{"_index":2291,"t":{},"d":{},"k":{},"b":{"75":{"position":[[3552,9],[11209,8],[19303,9],[23265,9]]},"82":{"position":[[6744,7]]},"87":{"position":[[1961,6]]},"88":{"position":[[2621,9],[10851,8],[10988,9],[11021,8],[11162,9],[11195,8],[11334,9],[53928,8]]}}}],["rel",{"_index":729,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5742,8]]},"69":{"position":[[11280,8]]},"71":{"position":[[6220,10]]},"131":{"position":[[6245,8]]}}}],["relat",{"_index":3125,"t":{},"d":{},"k":{},"b":{"80":{"position":[[2357,7],[2511,7],[4584,7],[4645,7]]},"92":{"position":[[26853,7],[26924,7]]},"128":{"position":[[8434,8]]},"139":{"position":[[25081,7]]},"140":{"position":[[22976,7]]},"151":{"position":[[1112,7]]}}}],["releas",{"_index":3763,"t":{},"d":{},"k":{},"b":{"85":{"position":[[7870,8]]},"86":{"position":[[5602,8]]},"94":{"position":[[4449,8]]},"101":{"position":[[4186,8]]},"103":{"position":[[2872,8]]},"113":{"position":[[3725,7],[8912,9]]},"125":{"position":[[7285,7]]},"131":{"position":[[1566,8],[5177,8],[7758,8],[19425,8]]},"145":{"position":[[8869,8]]}}}],["relev",{"_index":1862,"t":{},"d":{},"k":{},"b":{"71":{"position":[[10671,8]]},"75":{"position":[[24658,8]]},"80":{"position":[[3405,8]]},"87":{"position":[[18817,8]]},"92":{"position":[[12612,8]]},"128":{"position":[[19549,8]]}}}],["reli",{"_index":6141,"t":{},"d":{},"k":{},"b":{"128":{"position":[[1977,6]]},"138":{"position":[[6324,4]]}}}],["reliabl",{"_index":2423,"t":{},"d":{},"k":{},"b":{"75":{"position":[[21091,11],[21621,11]]}}}],["reload",{"_index":2997,"t":{},"d":{},"k":{},"b":{"79":{"position":[[7347,6],[7629,6]]},"145":{"position":[[4387,6],[9105,6]]}}}],["remain",{"_index":1736,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2730,9],[46192,7]]},"87":{"position":[[12175,9]]},"88":{"position":[[17679,9],[28848,9],[34370,9]]},"106":{"position":[[23436,9]]},"107":{"position":[[5145,9]]},"125":{"position":[[7343,9]]},"128":{"position":[[19837,9]]},"143":{"position":[[5652,7]]},"145":{"position":[[902,10],[1034,10],[1640,6],[14025,7],[14536,7],[14729,7]]},"147":{"position":[[8843,9],[9050,9]]}}}],["remaining_byt",{"_index":7144,"t":{},"d":{},"k":{},"b":{"139":{"position":[[1100,17],[26938,15]]},"140":{"position":[[933,17],[23887,15]]},"147":{"position":[[4470,17],[8759,17]]}}}],["rememb",{"_index":2841,"t":{},"d":{},"k":{},"b":{"77":{"position":[[3057,8]]},"128":{"position":[[14408,8]]}}}],["remot",{"_index":2241,"t":{},"d":{},"k":{},"b":{"74":{"position":[[9787,6]]},"75":{"position":[[1605,6]]}}}],["remov",{"_index":482,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10630,8]]},"68":{"position":[[29474,7]]},"69":{"position":[[36071,7]]},"71":{"position":[[7331,8]]},"88":{"position":[[19072,7]]},"113":{"position":[[11544,8]]},"128":{"position":[[12170,7],[16552,7]]},"139":{"position":[[23131,7]]},"140":{"position":[[20985,7]]},"141":{"position":[[6903,6]]},"146":{"position":[[21861,7]]}}}],["render",{"_index":5704,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9123,10],[9188,10]]}}}],["renesa",{"_index":8,"t":{"63":{"position":[[45,7]]},"135":{"position":[[45,7]]}},"d":{},"k":{},"b":{"0":{"position":[[23,7],[147,7],[218,7],[263,12],[306,7],[344,7],[445,7],[466,7],[577,8],[666,7],[823,7],[1134,7],[1276,7],[1654,7]]},"1":{"position":[[147,7]]},"71":{"position":[[34426,7],[34993,7]]},"112":{"position":[[2203,7]]},"141":{"position":[[152,7]]},"151":{"position":[[219,7],[2231,7],[3198,7]]},"152":{"position":[[3145,7]]},"153":{"position":[[62,7]]}}}],["renesas.h",{"_index":2504,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31085,10]]}}}],["reopen",{"_index":5455,"t":{},"d":{},"k":{},"b":{"108":{"position":[[5881,9]]}}}],["repeat",{"_index":666,"t":{},"d":{},"k":{},"b":{"68":{"position":[[2218,6],[2488,6],[3342,6],[5286,6],[5412,6],[5432,6],[5888,6],[6850,8],[10772,6],[10826,8],[13692,8]]},"87":{"position":[[3188,8],[11116,8],[11577,8],[11913,8],[12495,8]]},"88":{"position":[[4980,6],[58041,8],[59028,8]]},"138":{"position":[[7658,8]]},"145":{"position":[[6157,7],[6218,6],[6243,6],[11096,6],[11196,6],[11301,7],[11368,7],[11496,7],[11544,6],[12050,6],[14870,6],[15221,8],[15350,8],[16628,8]]}}}],["repeatedli",{"_index":667,"t":{},"d":{},"k":{},"b":{"68":{"position":[[2233,10]]}}}],["repli",{"_index":6468,"t":{},"d":{},"k":{},"b":{"131":{"position":[[870,7],[1271,7],[17776,7],[18601,7]]}}}],["replic",{"_index":6247,"t":{},"d":{},"k":{},"b":{"128":{"position":[[15700,10]]}}}],["report",{"_index":5895,"t":{},"d":{},"k":{},"b":{"124":{"position":[[4283,9]]},"125":{"position":[[3526,6],[10379,8]]},"147":{"position":[[5421,8],[6139,8]]}}}],["repres",{"_index":1844,"t":{},"d":{},"k":{},"b":{"71":{"position":[[9432,9]]},"83":{"position":[[33343,9]]},"88":{"position":[[44097,10]]},"109":{"position":[[6587,10]]},"128":{"position":[[14481,9]]},"143":{"position":[[1941,9]]},"150":{"position":[[12815,10]]}}}],["represent",{"_index":48,"t":{},"d":{},"k":{},"b":{"0":{"position":[[840,15]]}}}],["req",{"_index":3139,"t":{},"d":{},"k":{},"b":{"80":{"position":[[4964,3]]}}}],["request",{"_index":538,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13925,10],[14107,10]]},"68":{"position":[[13226,7],[13331,7]]},"69":{"position":[[30111,9]]},"71":{"position":[[4863,7],[30767,9],[33342,9],[35863,9],[35932,9],[36006,9],[44561,9],[45501,8],[45797,9],[45984,9]]},"75":{"position":[[39207,9]]},"79":{"position":[[1432,9],[1556,7],[1596,7],[3023,7],[3046,9],[3085,9],[3129,9],[3182,7],[5372,7],[5545,7],[6571,8],[8216,9],[10362,7],[10467,7],[10591,7],[13616,7],[13965,7],[14033,7],[14576,7],[14644,7],[15145,7],[15220,7],[15314,9],[15399,9]]},"80":{"position":[[711,8],[4999,7]]},"83":{"position":[[6584,9],[6701,9],[13101,7],[13165,7],[13231,7],[13295,7],[13360,7],[26345,7],[26539,7],[26563,7],[27116,7],[27330,7],[27413,7],[29260,7],[38769,8],[38817,7],[38974,7],[39131,7],[39288,7],[39974,7],[40052,8],[40098,7],[40190,7],[40300,7],[41026,7],[41068,7],[41134,7],[41176,7],[46721,9],[47529,9],[51253,9],[55395,7]]},"84":{"position":[[5147,7],[5317,7]]},"86":{"position":[[7738,8]]},"87":{"position":[[1972,8],[2048,8],[2100,8],[12072,10],[18964,9],[20120,7],[20224,7]]},"88":{"position":[[1981,9],[2000,9],[2283,9],[2302,10],[2635,8],[3234,8],[3540,10],[3988,9],[6659,9],[6682,8],[10704,8],[10791,8],[10869,9],[10977,7],[11041,9],[11151,7],[11214,9],[11323,7],[11486,9],[11557,8],[11642,9],[14722,9],[14925,9],[17786,10],[23575,8],[23779,8],[31320,8],[31524,8],[35931,8],[42273,9],[42377,7],[42500,7],[42621,7],[43070,9],[43128,9],[53911,8]]},"89":{"position":[[5900,9]]},"91":{"position":[[7071,9]]},"105":{"position":[[2973,7],[8741,7],[8764,7],[8907,7],[8978,7],[9001,7],[9144,7],[18598,7],[18688,7],[27341,7],[27384,7],[27451,7],[27494,7],[28773,9],[37337,7]]},"106":{"position":[[21871,7],[22663,7],[23812,9]]},"107":{"position":[[5463,10],[5566,9]]},"108":{"position":[[6321,9]]},"109":{"position":[[4409,8],[6520,7]]},"113":{"position":[[2350,9],[2716,9],[3021,9],[3829,9],[5459,7],[8058,9],[8132,9],[8211,9]]},"124":{"position":[[6463,9]]},"125":{"position":[[1319,8],[1351,7],[5554,10],[7673,9],[11672,8],[12602,8]]},"128":{"position":[[19855,9]]},"131":{"position":[[5097,9],[5285,9]]},"135":{"position":[[3235,9],[3352,9]]},"138":{"position":[[3384,9],[3515,9],[4403,9],[6195,9],[13498,9]]},"139":{"position":[[3234,9],[3617,9],[18491,9],[24260,9],[25682,9],[25706,9],[27522,9]]},"140":{"position":[[3133,9],[4078,9],[17110,9],[22112,9],[24471,9]]},"141":{"position":[[4418,9],[5858,9]]},"142":{"position":[[5295,9],[5412,9],[19240,9]]},"144":{"position":[[10793,9]]},"145":{"position":[[7104,8],[10686,7],[10765,7],[11026,8],[11420,8],[11614,7],[11938,8]]},"147":{"position":[[7622,8]]},"148":{"position":[[2756,7],[2877,7],[2977,7]]},"149":{"position":[[8187,7],[8252,7]]},"150":{"position":[[19631,9],[21866,10]]}}}],["requir",{"_index":153,"t":{},"d":{},"k":{},"b":{"1":{"position":[[960,8],[1119,7]]},"67":{"position":[[8770,7]]},"68":{"position":[[5470,8],[31324,8]]},"69":{"position":[[10708,8],[37951,8]]},"71":{"position":[[2055,8],[3541,8],[6603,8],[6850,9],[7919,8],[10576,7],[29488,8],[32063,8],[45271,8],[46054,8]]},"75":{"position":[[36167,8],[40510,8]]},"76":{"position":[[17626,8],[21102,8],[21892,8],[23513,8],[23762,8],[25658,8]]},"79":{"position":[[9875,9],[11699,9]]},"83":{"position":[[19170,7],[19287,8],[46957,8],[57384,8],[58469,8]]},"84":{"position":[[11243,8],[13952,8],[14574,8],[16075,8],[16270,8],[17171,8]]},"88":{"position":[[7226,9],[7349,9],[16951,8],[20487,8],[22183,8]]},"89":{"position":[[2912,7],[7978,8]]},"90":{"position":[[2630,7],[7528,8]]},"91":{"position":[[2990,7],[9139,8]]},"92":{"position":[[10495,7],[31243,8]]},"95":{"position":[[2369,8],[3072,8],[4322,8]]},"96":{"position":[[2069,8],[3636,8]]},"97":{"position":[[1813,8],[2410,8]]},"98":{"position":[[2304,8],[3003,8],[4248,8]]},"99":{"position":[[2334,8],[3029,8],[4269,8]]},"100":{"position":[[2036,8],[3589,8]]},"102":{"position":[[1782,8],[2371,8]]},"104":{"position":[[2269,8],[2960,8],[4195,8]]},"105":{"position":[[28583,8],[32079,8],[33096,8],[38288,8]]},"106":{"position":[[13151,8],[25808,8]]},"107":{"position":[[3750,8]]},"108":{"position":[[6034,8],[7721,8]]},"113":{"position":[[3767,8]]},"124":{"position":[[5362,8],[19919,8]]},"125":{"position":[[4169,8],[4837,8],[18430,8]]},"127":{"position":[[3196,9],[3273,9]]},"128":{"position":[[2848,8],[3385,9],[3982,8],[9187,8]]},"129":{"position":[[4889,9],[4966,9]]},"131":{"position":[[7298,9],[7375,9],[9257,9]]},"133":{"position":[[8719,9],[8928,9],[9005,9],[9509,8],[19489,8],[24384,8],[39076,8],[46375,8]]},"135":{"position":[[10355,8],[21621,8],[23424,8]]},"136":{"position":[[2372,8],[3742,8],[6439,8]]},"138":{"position":[[5457,8],[18674,8]]},"139":{"position":[[9317,8],[25333,8],[26511,8]]},"140":{"position":[[23253,8],[25363,8]]},"142":{"position":[[11373,8],[23316,8],[25163,8]]},"143":{"position":[[5537,8],[12849,8]]},"145":{"position":[[1279,8],[3181,8]]},"146":{"position":[[24216,8]]},"148":{"position":[[9650,9],[14826,8]]},"150":{"position":[[7742,8],[7929,8],[8236,8],[21747,8],[22232,8],[22652,8],[26678,8]]},"151":{"position":[[2572,12],[2895,8],[3066,8]]}}}],["res_n",{"_index":6595,"t":{},"d":{},"k":{},"b":{"133":{"position":[[5214,5],[13173,5],[17307,5],[21611,5],[26625,5],[32778,5],[36893,5],[41198,5],[45450,5]]}}}],["reserv",{"_index":14,"t":{},"d":{},"k":{},"b":{"0":{"position":[[89,9],[674,8]]},"71":{"position":[[2679,8],[2864,8],[2873,8],[2882,8],[2891,8],[2937,8]]},"87":{"position":[[1031,8],[15717,9],[15796,9],[15875,9],[15954,9]]},"88":{"position":[[21651,8]]}}}],["reset",{"_index":947,"t":{},"d":{},"k":{},"b":{"68":{"position":[[28899,6]]},"71":{"position":[[1104,5],[2779,5],[3027,5],[4814,6],[36495,6],[36785,6],[37246,6],[37536,6],[38416,6],[38983,6],[42477,5],[43328,5]]},"74":{"position":[[8844,5]]},"75":{"position":[[32546,5]]},"76":{"position":[[1608,5],[18633,6],[18735,6]]},"79":{"position":[[18224,5]]},"83":{"position":[[2452,5],[48484,6],[50278,6]]},"84":{"position":[[10705,5],[12155,6]]},"85":{"position":[[5813,5]]},"87":{"position":[[15202,5],[16432,5]]},"92":{"position":[[29282,6],[37667,5]]},"105":{"position":[[2348,5],[3096,5],[14350,6],[29895,6],[30702,6],[30989,6]]},"106":{"position":[[23315,6]]},"108":{"position":[[1117,9],[1991,6],[4520,9],[4545,5],[4672,5],[4930,6],[5874,6],[8490,6],[8567,5]]},"109":{"position":[[2630,5],[4544,5]]},"111":{"position":[[166,5]]},"124":{"position":[[17345,5]]},"128":{"position":[[18766,5]]},"133":{"position":[[1829,5],[5155,5],[5194,5],[13095,5],[17229,5],[21533,5],[23435,5],[26547,5],[28677,6],[28691,5],[29771,6],[29936,5],[32700,5],[36815,5],[41120,5],[45372,5],[47379,6],[47393,5],[48439,5],[55664,5]]},"134":{"position":[[13250,6]]},"136":{"position":[[2724,5],[3301,5]]},"139":{"position":[[23895,5],[27167,5]]},"140":{"position":[[21747,5],[24116,5]]},"144":{"position":[[3722,5],[5538,5],[5652,5]]},"145":{"position":[[3862,5],[5381,5],[5564,5],[6140,6],[11240,5]]},"148":{"position":[[1062,6],[1319,9],[2741,5],[2962,5],[4036,5],[5701,5],[6893,5],[7759,5],[7838,6],[9110,5],[10093,5]]},"149":{"position":[[173,9],[1715,5],[8246,5]]},"152":{"position":[[245,5]]}}}],["reset_control",{"_index":8044,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7509,14]]},"149":{"position":[[1686,13]]}}}],["reset_handler_",{"_index":1678,"t":{},"d":{},"k":{},"b":{"71":{"position":[[175,15],[38813,17],[38865,15]]}}}],["reset_handler_n",{"_index":1675,"t":{},"d":{},"k":{},"b":{"71":{"position":[[85,16],[38244,18],[38297,16]]}}}],["resetmcu",{"_index":8001,"t":{},"d":{},"k":{},"b":{"148":{"position":[[2681,8],[2900,8]]}}}],["resist",{"_index":5748,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10888,10]]},"134":{"position":[[1281,11],[1312,11],[1662,11],[1706,10],[1776,10],[2402,11],[2751,11],[2976,11]]}}}],["resistor",{"_index":2484,"t":{},"d":{},"k":{},"b":{"75":{"position":[[28978,8]]},"138":{"position":[[6263,9],[6360,9]]}}}],["resolut",{"_index":339,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2837,10],[2853,11],[12654,10],[12718,10],[12760,10],[12800,10],[12842,10],[12884,10],[12926,10]]},"68":{"position":[[1375,10]]},"69":{"position":[[1323,10],[2677,10],[2736,10]]},"128":{"position":[[3133,11]]},"129":{"position":[[1551,11],[1671,11],[3059,10],[4347,10],[8059,10],[8465,10],[15264,10],[15453,11]]},"130":{"position":[[2540,11],[4722,11],[4769,11],[6906,10]]},"131":{"position":[[3793,10],[3847,10],[3885,10],[3939,10],[9009,10],[15467,10]]},"132":{"position":[[995,10],[1827,10],[1918,10],[5950,10],[6104,10]]},"146":{"position":[[4913,11],[7793,11],[10905,11]]}}}],["resolution_regist",{"_index":6518,"t":{},"d":{},"k":{},"b":{"131":{"position":[[15396,19]]}}}],["resolutional",{"_index":3656,"t":{},"d":{},"k":{},"b":{"84":{"position":[[2041,13]]},"105":{"position":[[3695,13]]}}}],["resolutionchang",{"_index":6451,"t":{},"d":{},"k":{},"b":{"130":{"position":[[2421,16],[4527,16]]}}}],["resolutionth",{"_index":3307,"t":{},"d":{},"k":{},"b":{"83":{"position":[[3630,13],[3964,13]]}}}],["resolv",{"_index":5464,"t":{},"d":{},"k":{},"b":{"108":{"position":[[8605,9]]}}}],["resourc",{"_index":2113,"t":{},"d":{},"k":{},"b":{"74":{"position":[[331,8]]},"113":{"position":[[13759,8]]},"128":{"position":[[378,8]]},"144":{"position":[[1580,8]]},"147":{"position":[[334,8]]}}}],["resp",{"_index":4318,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47868,5]]}}}],["resp_irq",{"_index":4305,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47239,8]]}}}],["respect",{"_index":62,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1092,7]]},"69":{"position":[[4685,15],[4784,15],[12984,12]]},"75":{"position":[[16936,13],[17615,13]]},"80":{"position":[[9069,13]]},"88":{"position":[[17066,13]]},"124":{"position":[[5477,13]]},"125":{"position":[[4284,13]]},"128":{"position":[[18181,13],[19504,13]]},"138":{"position":[[1949,13],[4388,7],[5572,13],[6919,13]]},"139":{"position":[[3602,7]]},"140":{"position":[[3118,7],[4063,7]]}}}],["respond",{"_index":3919,"t":{},"d":{},"k":{},"b":{"87":{"position":[[10298,10],[18878,8]]},"88":{"position":[[19019,7],[19094,10]]},"113":{"position":[[11688,7],[11699,9]]},"125":{"position":[[3192,7]]},"131":{"position":[[6534,7]]},"133":{"position":[[6970,7],[8118,7]]},"136":{"position":[[1282,7]]}}}],["respons",{"_index":29,"t":{},"d":{},"k":{},"b":{"0":{"position":[[404,11]]},"68":{"position":[[5570,10]]},"69":{"position":[[11208,14]]},"71":{"position":[[1067,11]]},"87":{"position":[[10040,8],[18718,11]]},"88":{"position":[[2168,11],[4029,11],[11367,8],[11519,8],[11675,8],[11880,8],[12031,8],[12180,8],[12366,8],[12500,8],[12632,8],[12872,8],[13051,8],[13192,8],[13358,8],[13610,9],[18771,8],[19149,8],[42177,8],[42824,8],[46397,8],[47193,9],[47249,8],[54332,8]]},"89":{"position":[[5495,11]]},"90":{"position":[[5120,11]]},"91":{"position":[[6675,11]]},"92":{"position":[[31852,8],[36658,8]]},"94":{"position":[[5524,11],[5576,10]]},"95":{"position":[[794,8],[871,9],[1751,9]]},"98":{"position":[[736,8],[813,9],[1689,9]]},"99":{"position":[[773,8],[850,9],[1722,9]]},"104":{"position":[[715,8],[792,9],[1660,9]]},"111":{"position":[[129,11]]},"128":{"position":[[10726,11]]},"133":{"position":[[8284,8]]},"136":{"position":[[6414,11]]},"141":{"position":[[4334,14],[5774,14]]},"150":{"position":[[1618,10]]},"152":{"position":[[208,11]]}}}],["restart",{"_index":1007,"t":{},"d":{},"k":{},"b":{"69":{"position":[[7637,7],[7682,7],[7762,7],[7813,7],[7894,7],[7987,7],[8268,7],[23216,7],[23301,7],[23417,7],[23505,7],[23631,7],[23765,7]]},"85":{"position":[[3394,8],[3513,8],[4677,8],[5029,7],[5255,8],[5614,7]]},"87":{"position":[[3162,7],[6168,8],[6269,8],[10992,8],[11789,8]]},"88":{"position":[[1028,8],[1138,8],[37325,8],[57830,7],[58818,7]]},"113":{"position":[[7567,7]]},"124":{"position":[[242,8],[376,8],[6948,7],[7026,8],[15531,7],[16483,7]]},"127":{"position":[[1450,7]]},"133":{"position":[[7084,7],[8432,7]]},"138":{"position":[[306,8],[438,8],[7580,7],[14637,7],[15588,7]]},"144":{"position":[[12079,8]]},"148":{"position":[[4513,7]]}}}],["restor",{"_index":1837,"t":{},"d":{},"k":{},"b":{"71":{"position":[[8999,7],[30567,8],[33142,8]]},"108":{"position":[[4153,7]]},"128":{"position":[[18070,7]]}}}],["restrict",{"_index":6220,"t":{},"d":{},"k":{},"b":{"128":{"position":[[12114,11],[12183,11]]}}}],["result",{"_index":291,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1478,7],[1592,7],[7803,7],[8257,6],[11123,7]]},"68":{"position":[[2131,6],[5805,6],[7407,7],[7448,6],[7605,8],[7800,6],[7934,7],[7968,6],[8054,6],[8183,6],[8308,8],[8452,7],[8493,6],[8885,7],[24825,7],[27509,7],[28160,7],[28223,7]]},"69":{"position":[[2821,6],[2888,6],[6321,7],[10968,7],[11116,7],[12262,6],[12366,6],[14820,7],[16257,7],[31252,7],[34909,7],[35560,7],[35623,7]]},"71":{"position":[[45685,6]]},"76":{"position":[[6180,7]]},"77":{"position":[[2989,7],[3364,7],[3710,6]]},"83":{"position":[[17417,9]]},"84":{"position":[[4841,7]]},"87":{"position":[[17285,6]]},"92":{"position":[[40300,7]]},"105":{"position":[[11570,9],[32951,6]]},"109":{"position":[[7199,7],[7277,7],[7355,7],[7433,7],[7511,7],[7589,7]]},"113":{"position":[[2833,7]]},"124":{"position":[[5948,6]]},"128":{"position":[[6965,7],[10742,9],[14697,6],[16369,6]]},"129":{"position":[[1848,6],[4733,6],[8289,6],[8698,6],[15630,6]]},"131":{"position":[[1676,6],[5242,8],[5620,6],[5762,6],[5832,6],[5968,6],[6431,6],[8477,6],[19535,6]]},"133":{"position":[[7192,7],[29662,8],[29742,7],[29849,7],[29895,7],[48272,8],[48352,7],[48398,7],[54149,7],[55172,7],[55800,7],[56742,7],[57592,7],[58424,7],[59281,7],[60131,7],[60981,7],[61809,7]]},"134":{"position":[[13317,7],[13331,7]]},"135":{"position":[[6034,6]]},"138":{"position":[[5926,6]]},"142":{"position":[[6758,6],[7552,7]]},"146":{"position":[[3476,6],[3552,6],[3596,6],[3700,7],[7331,7],[15607,6],[15674,6],[20888,7]]}}}],["retain",{"_index":2737,"t":{},"d":{},"k":{},"b":{"76":{"position":[[14049,6]]},"83":{"position":[[7195,6],[7262,6],[7390,6],[7457,6],[7551,6],[7614,6],[7895,6],[7962,6],[8090,6],[8157,6],[8251,6],[8314,6]]}}}],["retri",{"_index":5816,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13915,6]]}}}],["retriev",{"_index":1032,"t":{},"d":{},"k":{},"b":{"69":{"position":[[11178,10]]},"75":{"position":[[22970,8]]},"76":{"position":[[21509,9]]},"84":{"position":[[14357,9]]},"148":{"position":[[13972,9]]}}}],["return",{"_index":487,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10959,6],[11159,6]]},"68":{"position":[[23518,6],[24247,6],[24703,7],[24914,9],[24924,6],[25353,6],[26045,6],[26325,6],[26934,6],[27550,6],[28231,6],[28995,6],[29511,6],[30076,6],[30507,6],[31237,6]]},"69":{"position":[[29795,6],[30674,6],[31130,7],[31341,9],[31385,8],[31476,6],[32339,6],[33040,6],[33682,6],[34334,6],[34950,6],[35631,6],[36108,6],[36684,6],[37126,6],[37864,6]]},"70":{"position":[[13943,6]]},"71":{"position":[[11007,6],[11057,6],[11141,6],[11167,6],[29183,6],[29394,9],[30101,8],[31758,6],[31969,9],[32676,8],[38077,6],[38115,6],[41733,6],[42295,6],[43148,6],[43777,6],[43815,6],[44281,7],[46908,6],[47176,6]]},"74":{"position":[[301,9],[6348,6]]},"75":{"position":[[35919,6],[36471,6],[37184,6],[38099,6],[39018,6],[39616,6],[40423,6]]},"76":{"position":[[11531,6],[15757,6],[17321,6],[17548,6],[18384,6],[18695,6],[19138,6],[19694,6],[20232,6],[20989,6],[21781,6],[22286,6],[23404,6],[24252,6],[24749,6],[25571,6]]},"77":{"position":[[5618,6],[5996,6],[6762,7],[6827,6],[7383,6],[7514,7],[7552,6],[8397,6],[8857,6]]},"78":{"position":[[2407,6],[2629,6]]},"79":{"position":[[16690,6],[17402,6],[18285,6],[18871,6],[19367,6],[19828,6],[20314,6],[20912,6],[21396,6],[22152,6]]},"80":{"position":[[9083,6],[9471,6],[10064,6],[10683,6],[11195,6],[11584,6],[11896,6]]},"83":{"position":[[46848,6],[47805,6],[48167,6],[48673,6],[49113,6],[49657,6],[50677,6],[51636,6],[52453,6],[53080,6],[53711,6],[54296,6],[54794,6],[55424,6],[56152,6],[57297,6],[57844,6],[58322,6]]},"84":{"position":[[10171,6],[11165,6],[11946,6],[12236,6],[12538,6],[12974,6],[13350,6],[13839,6],[14463,6],[14881,6],[15966,6],[17084,6]]},"85":{"position":[[256,6]]},"86":{"position":[[249,7]]},"87":{"position":[[10014,8]]},"88":{"position":[[51761,6],[52222,6],[52809,6],[53723,6],[54306,8],[54365,6],[55127,6],[56060,6],[56867,6],[58086,6],[59072,6],[60028,6],[60933,6],[61550,6]]},"89":{"position":[[5556,6],[6382,6],[6935,6],[7891,6],[8456,6]]},"90":{"position":[[5171,6],[5932,6],[6485,6],[7441,6],[8006,6]]},"91":{"position":[[6727,6],[7547,6],[8094,6],[9052,6],[9619,6]]},"92":{"position":[[28940,6],[29338,6],[30165,6],[30780,6],[32044,6],[33019,6],[33774,6],[34421,6],[35682,6],[36506,8],[36850,6],[38229,6],[39055,9],[39081,8],[39198,6],[40344,6]]},"93":{"position":[[4411,6],[4548,6],[5285,6],[6604,6],[7538,6]]},"95":{"position":[[2282,6],[2989,6],[3411,6],[4235,6]]},"96":{"position":[[1982,6],[2643,6],[3549,6],[4105,6]]},"97":{"position":[[1726,6],[2326,6],[2795,6]]},"98":{"position":[[2217,6],[2920,6],[3340,6],[4161,6]]},"99":{"position":[[2247,6],[2946,6],[3364,6],[4182,6]]},"100":{"position":[[1949,6],[2602,6],[3502,6],[4052,6]]},"102":{"position":[[1695,6],[2287,6],[2752,6]]},"104":{"position":[[2182,6],[2877,6],[3293,6],[4108,6]]},"105":{"position":[[28474,6],[29136,6],[29576,6],[30085,6],[31988,6],[33007,6],[33692,6],[34463,6],[35096,6],[35682,6],[36171,6],[36522,6],[36810,6],[37388,6],[38201,6],[38646,6]]},"106":{"position":[[20750,6],[21118,6],[21816,6],[22275,6],[22608,6],[22861,6],[23614,6],[23971,6],[24424,6],[24916,6],[25721,6]]},"107":{"position":[[9764,8]]},"108":{"position":[[5947,6],[6800,6],[7634,6],[8161,6],[8716,6],[9148,6]]},"113":{"position":[[15090,8],[15539,6]]},"116":{"position":[[1327,6]]},"124":{"position":[[5205,9],[6595,8],[14667,6],[15774,6],[16725,6],[17301,6],[18227,6],[18832,6],[19832,6],[20470,6]]},"125":{"position":[[4013,9],[14470,6],[15982,6],[17092,6],[17516,6],[18343,6]]},"127":{"position":[[7525,6],[8057,6],[8679,6],[9310,6],[9918,6]]},"128":{"position":[[11961,9],[19750,7],[19777,8]]},"129":{"position":[[2510,6],[11656,6],[12154,6],[12721,6],[13264,6],[14005,6],[14681,6],[15748,6],[16679,6],[17387,6],[17546,6]]},"131":{"position":[[6848,7],[16390,6],[16980,6],[17842,6],[18666,6],[19657,6],[20490,6]]},"133":{"position":[[51555,6],[52174,6],[52748,6],[53338,6],[54104,6],[55127,6],[55755,6],[56697,6],[57547,6],[58379,6],[59236,6],[60086,6],[60936,6],[61764,6],[62223,6]]},"135":{"position":[[7264,6],[7795,6],[17170,6],[17539,6],[18282,6],[19441,6],[20656,6],[21536,6],[22331,9],[22417,9],[22550,6],[23337,6]]},"136":{"position":[[6847,8],[7422,6],[11374,6],[11837,6],[12255,6],[12936,6],[13653,8],[13719,6],[14431,6],[15129,6],[15968,6],[16645,6],[17358,6],[18167,6]]},"137":{"position":[[2513,8],[8801,6]]},"138":{"position":[[5295,9],[6704,8],[13130,6],[14025,6],[14073,6],[14880,6],[16087,6],[16861,6],[16909,6],[17677,6],[18587,6],[19221,6]]},"139":{"position":[[18303,6],[18870,6],[19416,6],[19994,6],[20654,6],[21221,6],[21914,6],[22627,6],[23175,6],[24040,6],[24395,6],[25493,6],[26424,6],[27302,6],[27657,6]]},"140":{"position":[[16922,6],[17902,6],[18826,6],[19772,6],[20483,6],[21029,6],[21892,6],[22247,6],[23413,6],[24251,6],[24606,6],[25276,6]]},"142":{"position":[[8438,6],[19005,6],[19487,6],[20274,6],[21334,6],[22450,6],[23231,6],[24105,9],[24300,6],[25076,6]]},"143":{"position":[[5697,6],[5833,7]]},"144":{"position":[[11804,8]]},"145":{"position":[[14961,7],[15108,7]]},"146":{"position":[[4007,8],[16900,6],[17622,6],[18341,6],[19012,6],[19568,6],[20313,6],[20911,6],[21542,6],[21898,6],[22375,6],[22877,6],[23391,6],[24129,6],[24832,8],[24896,6]]},"147":{"position":[[280,8],[8816,6]]},"148":{"position":[[10187,6],[11071,6],[11819,6],[12601,6],[13323,6],[13916,6],[14739,6]]},"149":{"position":[[1077,6],[3990,6],[4692,6],[5070,6]]},"150":{"position":[[3949,8],[19373,6],[19922,6],[20651,6],[21189,6],[21651,6],[22137,6],[22557,6],[23272,6],[24298,6],[25130,6],[25745,6],[26583,6],[27148,6]]}}}],["returnsa",{"_index":2108,"t":{},"d":{},"k":{},"b":{"71":{"position":[[47479,8]]}}}],["returnsact",{"_index":2106,"t":{},"d":{},"k":{},"b":{"71":{"position":[[47220,13]]}}}],["returnsse",{"_index":5360,"t":{},"d":{},"k":{},"b":{"106":{"position":[[21032,10],[22203,10],[22789,10],[23885,10]]},"135":{"position":[[17453,10]]},"139":{"position":[[18784,10],[19908,10],[21135,10],[24309,10],[27571,10]]},"140":{"position":[[17386,10],[18302,10],[19220,10],[22161,10],[24520,10]]},"142":{"position":[[19401,10]]}}}],["reus",{"_index":7781,"t":{},"d":{},"k":{},"b":{"145":{"position":[[1420,5]]}}}],["review",{"_index":5866,"t":{},"d":{},"k":{},"b":{"116":{"position":[[176,6]]},"151":{"position":[[2553,8]]}}}],["rh",{"_index":6375,"t":{},"d":{},"k":{},"b":{"129":{"position":[[994,4],[13915,4]]},"131":{"position":[[2005,4],[20426,4]]}}}],["right",{"_index":13,"t":{},"d":{},"k":{},"b":{"0":{"position":[[82,6],[557,5],[687,5],[1384,6]]},"67":{"position":[[2912,5],[13107,6]]},"76":{"position":[[10888,5],[16678,5]]},"77":{"position":[[1856,5]]},"83":{"position":[[24328,5]]},"105":{"position":[[14625,5],[31264,5]]},"106":{"position":[[2718,5],[2738,5],[2758,5],[6168,5],[6188,5],[6208,5],[8285,5],[8305,5],[8325,5],[13197,5],[13256,5],[18577,5],[18619,5],[18661,5],[18944,5],[19002,5],[19060,5],[19302,5],[19344,5],[19386,5]]},"136":{"position":[[4507,5]]},"137":{"position":[[6025,5]]},"138":{"position":[[2907,5]]},"139":{"position":[[2621,5]]},"142":{"position":[[2768,5]]}}}],["riic",{"_index":3696,"t":{"124":{"position":[[59,4]]}},"d":{},"k":{},"b":{"85":{"position":[[308,4]]},"112":{"position":[[1964,4],[2001,4],[2123,4]]},"124":{"position":[[1018,4],[1124,4],[2891,4],[4255,4],[4527,4],[4579,4],[4749,4],[4794,4],[5238,4],[5534,4],[6007,4],[6059,4],[6229,4],[6248,4],[6657,4],[6957,4],[8120,4],[9819,4],[13040,4],[17267,4],[18748,4]]},"125":{"position":[[648,4],[2484,4],[2749,4],[3043,4],[3602,4],[4342,4],[6181,4],[6207,4],[7459,4],[10739,4],[10950,4]]},"131":{"position":[[2746,4]]},"152":{"position":[[2916,4],[2951,4],[3068,4]]}}}],["riic0_ri_irqn",{"_index":6008,"t":{},"d":{},"k":{},"b":{"125":{"position":[[8719,14]]}}}],["riic0_scl",{"_index":1598,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10244,10]]}}}],["riic0_sda",{"_index":1596,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10214,10]]}}}],["riic0_tei_irqn",{"_index":6010,"t":{},"d":{},"k":{},"b":{"125":{"position":[[8789,15]]}}}],["riic0_ti_irqn",{"_index":6009,"t":{},"d":{},"k":{},"b":{"125":{"position":[[8754,14]]}}}],["riic1_ri_irqn",{"_index":6017,"t":{},"d":{},"k":{},"b":{"125":{"position":[[9159,14]]}}}],["riic1_scl",{"_index":1602,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10304,10]]}}}],["riic1_sda",{"_index":1600,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10274,10]]}}}],["riic1_tei_irqn",{"_index":6019,"t":{},"d":{},"k":{},"b":{"125":{"position":[[9223,15]]}}}],["riic1_ti_irqn",{"_index":6018,"t":{},"d":{},"k":{},"b":{"125":{"position":[[9191,14]]}}}],["riic_master_extended_cfg_t",{"_index":5955,"t":{},"d":{},"k":{},"b":{"124":{"position":[[12316,26],[12933,26],[12996,26]]}}}],["riic_slave_extended_cfg_t",{"_index":6039,"t":{},"d":{},"k":{},"b":{"125":{"position":[[13243,25],[13645,25],[13707,25]]}}}],["ring",{"_index":7808,"t":{},"d":{},"k":{},"b":{"145":{"position":[[12079,4]]}}}],["rise",{"_index":702,"t":{},"d":{},"k":{},"b":{"68":{"position":[[4204,6],[21630,6]]},"76":{"position":[[3621,6],[3659,6],[3728,6],[3766,6],[13761,6]]},"79":{"position":[[14250,6],[14873,6]]},"82":{"position":[[6425,6]]},"83":{"position":[[17445,6],[17460,6],[19074,6],[33512,6],[33652,6],[33792,6],[33932,6],[34095,5],[34202,5],[34525,5],[34632,5],[35415,6],[35555,6],[35695,6],[35835,6],[35998,5],[36105,5],[36428,5],[36535,5],[46073,6]]},"88":{"position":[[9260,6],[9352,6],[9592,6],[9683,6],[9848,6],[16189,6]]},"89":{"position":[[1338,6],[2217,6],[2248,6]]},"90":{"position":[[1344,6],[2091,6],[2099,6]]},"91":{"position":[[1348,6],[2301,6],[2341,6],[6000,6]]},"92":{"position":[[2185,6],[11231,7],[12336,7],[27511,6]]},"105":{"position":[[6095,6],[6118,6],[7234,6],[7620,6],[11598,6],[11613,6],[21562,6],[21868,6]]},"106":{"position":[[1645,6],[1662,6]]},"107":{"position":[[8844,4]]},"124":{"position":[[2987,4],[3049,4]]},"138":{"position":[[6460,4]]}}}],["rlar",{"_index":8406,"t":{},"d":{},"k":{},"b":{"287":{"position":[[409,4]]}}}],["rm_comms_api_t",{"_index":6050,"t":{},"d":{},"k":{},"b":{"126":{"position":[[379,14],[1451,14],[1502,14]]}}}],["rm_comms_api_t::clos",{"_index":6063,"t":{},"d":{},"k":{},"b":{"126":{"position":[[2394,22]]},"127":{"position":[[338,22],[8033,22]]}}}],["rm_comms_api_t::open",{"_index":6061,"t":{},"d":{},"k":{},"b":{"126":{"position":[[2068,21]]},"127":{"position":[[179,21],[7427,21]]}}}],["rm_comms_api_t::read",{"_index":6065,"t":{},"d":{},"k":{},"b":{"126":{"position":[[2637,21]]},"127":{"position":[[530,21],[8656,21]]}}}],["rm_comms_api_t::writ",{"_index":6069,"t":{},"d":{},"k":{},"b":{"126":{"position":[[3021,22]]},"127":{"position":[[722,22],[9286,22]]}}}],["rm_comms_api_t::writeread",{"_index":6071,"t":{},"d":{},"k":{},"b":{"126":{"position":[[3413,26]]},"127":{"position":[[945,26],[9890,26]]}}}],["rm_comms_callback_args_t",{"_index":6048,"t":{},"d":{},"k":{},"b":{"126":{"position":[[319,24],[696,24],[757,24],[1078,26]]}}}],["rm_comms_cfg_t",{"_index":6049,"t":{},"d":{},"k":{},"b":{"126":{"position":[[354,14],[862,14],[913,14],[1608,14],[2122,14]]},"127":{"position":[[77,14],[6609,14],[7245,14]]}}}],["rm_comms_ctrl_t",{"_index":6052,"t":{},"d":{},"k":{},"b":{"126":{"position":[[450,15],[1575,17],[1663,17],[1715,17],[1813,17],[1914,17],[2090,16],[2417,16],[2659,16],[3044,16],[3440,16],[3989,15],[4047,15]]},"127":{"position":[[41,16],[241,16],[400,16],[592,16],[789,16],[7148,15],[7898,15],[8323,15],[8953,15],[9593,15]]}}}],["rm_comms_event_t",{"_index":6053,"t":{},"d":{},"k":{},"b":{"126":{"position":[[489,16],[4281,16],[4332,16]]}}}],["rm_comms_i2c",{"_index":191,"t":{"27":{"position":[[45,12]]},"127":{"position":[[70,14]]}},"d":{},"k":{},"b":{"112":{"position":[[2848,14]]},"126":{"position":[[237,14]]},"127":{"position":[[1551,12],[1876,14],[1980,15],[2446,14],[2560,15]]},"133":{"position":[[5092,12]]}}}],["rm_comms_i2c)middlewar",{"_index":8365,"t":{},"d":{},"k":{},"b":{"152":{"position":[[3765,24]]}}}],["rm_comms_i2c_basic_exampl",{"_index":6088,"t":{},"d":{},"k":{},"b":{"127":{"position":[[4020,26]]}}}],["rm_comms_i2c_bus_extended_cfg_t",{"_index":6089,"t":{},"d":{},"k":{},"b":{"127":{"position":[[4143,31],[4197,32],[6670,31]]},"129":{"position":[[5764,31],[5816,32]]},"131":{"position":[[10017,31],[10069,32]]},"133":{"position":[[11457,31],[11509,32],[15591,31],[15643,32],[19895,31],[19947,32],[24909,31],[24961,32],[31062,31],[31114,32],[35177,31],[35229,32],[39482,31],[39534,32],[43734,31],[43786,32]]}}}],["rm_comms_i2c_callback",{"_index":6076,"t":{},"d":{},"k":{},"b":{"127":{"position":[[989,21]]}}}],["rm_comms_i2c_clos",{"_index":6064,"t":{},"d":{},"k":{},"b":{"126":{"position":[[2495,20]]},"127":{"position":[[222,18],[7796,20],[7856,18]]}}}],["rm_comms_i2c_instance_ctrl_t",{"_index":6074,"t":{},"d":{},"k":{},"b":{"126":{"position":[[4212,28]]},"127":{"position":[[6374,28],[6438,28],[6503,28]]}}}],["rm_comms_i2c_open",{"_index":6062,"t":{},"d":{},"k":{},"b":{"126":{"position":[[2202,19]]},"127":{"position":[[23,17],[7048,19],[7107,17]]}}}],["rm_comms_i2c_open(&g_comms_i2c_ctrl",{"_index":6113,"t":{},"d":{},"k":{},"b":{"127":{"position":[[5772,36],[7469,36]]}}}],["rm_comms_i2c_read",{"_index":6066,"t":{},"d":{},"k":{},"b":{"126":{"position":[[2779,19]]},"127":{"position":[[382,17],[3477,19],[8223,19],[8282,17]]}}}],["rm_comms_i2c_read(&g_comms_i2c_ctrl",{"_index":6118,"t":{},"d":{},"k":{},"b":{"127":{"position":[[6214,36]]}}}],["rm_comms_i2c_writ",{"_index":6070,"t":{},"d":{},"k":{},"b":{"126":{"position":[[3164,20]]},"127":{"position":[[573,18],[3455,21],[8851,20],[8911,18]]}}}],["rm_comms_i2c_write(&g_comms_i2c_ctrl",{"_index":6116,"t":{},"d":{},"k":{},"b":{"127":{"position":[[6011,37]]}}}],["rm_comms_i2c_writeread",{"_index":6072,"t":{},"d":{},"k":{},"b":{"126":{"position":[[3626,24]]},"127":{"position":[[766,22],[3501,24],[9483,24],[9547,22]]}}}],["rm_comms_instance_t",{"_index":6051,"t":{},"d":{},"k":{},"b":{"126":{"position":[[404,19],[3776,19],[3832,19]]},"129":{"position":[[10854,19]]},"130":{"position":[[1498,19]]},"131":{"position":[[15116,19]]},"132":{"position":[[2047,19]]},"133":{"position":[[50333,19]]},"134":{"position":[[3650,19]]}}}],["rm_comms_write_read_params_t",{"_index":6047,"t":{},"d":{},"k":{},"b":{"126":{"position":[[280,28],[542,28],[607,28],[1947,28],[3472,28]]},"127":{"position":[[825,28],[9690,28]]}}}],["rm_freertos_port",{"_index":201,"t":{"41":{"position":[[45,16]]},"128":{"position":[[59,18]]}},"d":{},"k":{},"b":{"62":{"position":[[43,16]]},"118":{"position":[[62,18]]}}}],["rm_freertos_port)freerto",{"_index":8374,"t":{},"d":{},"k":{},"b":{"152":{"position":[[4571,26]]}}}],["rm_hs300x",{"_index":174,"t":{"7":{"position":[[45,9]]},"129":{"position":[[80,11]]}},"d":{},"k":{},"b":{"119":{"position":[[85,11]]},"129":{"position":[[3138,9],[3706,11],[3821,12]]},"130":{"position":[[206,11]]}}}],["rm_hs300x)middlewar",{"_index":8376,"t":{},"d":{},"k":{},"b":{"152":{"position":[[4676,21]]}}}],["rm_hs300x_api_t",{"_index":6440,"t":{},"d":{},"k":{},"b":{"130":{"position":[[400,15],[1841,15],[1893,15],[6176,15]]}}}],["rm_hs300x_api_t::clos",{"_index":6363,"t":{},"d":{},"k":{},"b":{"129":{"position":[[320,23],[12129,23]]},"130":{"position":[[5677,23]]}}}],["rm_hs300x_api_t::datacalcul",{"_index":6377,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1051,31],[13972,31]]},"130":{"position":[[3796,31]]}}}],["rm_hs300x_api_t::measurementstart",{"_index":6366,"t":{},"d":{},"k":{},"b":{"129":{"position":[[601,34],[12685,34]]},"130":{"position":[[3173,34]]}}}],["rm_hs300x_api_t::open",{"_index":6361,"t":{},"d":{},"k":{},"b":{"129":{"position":[[170,22],[11566,22]]},"130":{"position":[[2836,22]]}}}],["rm_hs300x_api_t::programmingmodeent",{"_index":6381,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1359,38],[14641,38]]},"130":{"position":[[4288,38]]}}}],["rm_hs300x_api_t::programmingmodeexit",{"_index":6395,"t":{},"d":{},"k":{},"b":{"129":{"position":[[2630,37],[17507,37]]},"130":{"position":[[5393,37]]}}}],["rm_hs300x_api_t::read",{"_index":6370,"t":{},"d":{},"k":{},"b":{"129":{"position":[[789,22],[13240,22]]},"130":{"position":[[3444,22]]}}}],["rm_hs300x_api_t::resolutionchang",{"_index":6389,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1930,34],[15712,34]]},"130":{"position":[[4586,34]]}}}],["rm_hs300x_api_t::sensoridget",{"_index":6393,"t":{},"d":{},"k":{},"b":{"129":{"position":[[2271,29],[16648,29]]},"130":{"position":[[5038,29]]}}}],["rm_hs300x_basic_exampl",{"_index":6401,"t":{},"d":{},"k":{},"b":{"129":{"position":[[5510,23]]}}}],["rm_hs300x_callback_args_t",{"_index":6438,"t":{},"d":{},"k":{},"b":{"130":{"position":[[246,25],[630,25],[692,25],[1763,27]]}}}],["rm_hs300x_cfg_programming_mod",{"_index":6409,"t":{},"d":{},"k":{},"b":{"129":{"position":[[7542,30]]}}}],["rm_hs300x_cfg_t",{"_index":6360,"t":{},"d":{},"k":{},"b":{"129":{"position":[[75,15],[10785,15],[11391,15]]},"130":{"position":[[374,15],[1377,15],[1429,15],[2003,15],[2892,15],[6083,15]]}}}],["rm_hs300x_close",{"_index":6362,"t":{},"d":{},"k":{},"b":{"129":{"position":[[214,15],[11905,17],[11962,15]]},"130":{"position":[[5780,17]]}}}],["rm_hs300x_ctrl_t",{"_index":6359,"t":{},"d":{},"k":{},"b":{"129":{"position":[[38,17],[230,17],[392,17],[672,17],[857,17],[1135,17],[1446,17],[2008,17],[2352,17],[11293,16],[12001,16],[12438,16],[12982,16],[13575,16],[14379,16],[15025,16],[16244,16],[17191,16]]},"130":{"position":[[473,16],[1969,18],[2070,18],[2123,18],[2225,18],[2373,18],[2438,18],[2578,18],[2675,18],[2729,18],[2859,17],[3208,17],[3467,17],[3828,17],[4327,17],[4621,17],[5068,17],[5431,17],[5701,17],[6001,16],[6287,16],[6346,16]]}}}],["rm_hs300x_data_t",{"_index":6372,"t":{},"d":{},"k":{},"b":{"129":{"position":[[934,16],[5629,16],[13775,16]]},"130":{"position":[[347,16],[1265,16],[1318,16],[2299,16],[3901,16]]}}}],["rm_hs300x_data_type_t",{"_index":6383,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1483,21],[15123,21]]},"130":{"position":[[540,21],[2472,21],[4654,21],[6687,21],[6743,21]]}}}],["rm_hs300x_datacalcul",{"_index":6371,"t":{},"d":{},"k":{},"b":{"129":{"position":[[833,23],[13463,25],[13528,23]]},"130":{"position":[[4029,25]]}}}],["rm_hs300x_datacalculate(&g_hs300x_ctrl",{"_index":6423,"t":{},"d":{},"k":{},"b":{"129":{"position":[[9523,39]]}}}],["rm_hs300x_event_t",{"_index":6428,"t":{},"d":{},"k":{},"b":{"129":{"position":[[10564,17]]},"130":{"position":[[513,17],[6562,17],[6614,17]]}}}],["rm_hs300x_humidity_data",{"_index":6415,"t":{},"d":{},"k":{},"b":{"129":{"position":[[8119,24]]}}}],["rm_hs300x_instance_ctrl_t",{"_index":6426,"t":{},"d":{},"k":{},"b":{"129":{"position":[[10164,25],[10614,25],[10676,25]]},"130":{"position":[[6496,25]]}}}],["rm_hs300x_instance_t",{"_index":6441,"t":{},"d":{},"k":{},"b":{"130":{"position":[[426,20],[5875,20],[5932,20]]}}}],["rm_hs300x_measurementstart",{"_index":6364,"t":{},"d":{},"k":{},"b":{"129":{"position":[[365,26],[12320,28],[12388,26]]},"130":{"position":[[3294,28]]}}}],["rm_hs300x_measurementstart(&g_hs300x_ctrl",{"_index":6420,"t":{},"d":{},"k":{},"b":{"129":{"position":[[9074,43]]}}}],["rm_hs300x_open",{"_index":6358,"t":{},"d":{},"k":{},"b":{"129":{"position":[[23,14],[11199,16],[11255,14]]},"130":{"position":[[2973,16]]}}}],["rm_hs300x_open(&g_hs300x_ctrl",{"_index":6406,"t":{},"d":{},"k":{},"b":{"129":{"position":[[7397,30],[11609,30]]}}}],["rm_hs300x_programmingmodeent",{"_index":6378,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1104,30],[1611,30],[2122,30],[2437,30],[4385,30],[4555,30],[14253,32],[14325,30],[15393,30],[16499,30],[17314,30]]},"130":{"position":[[4420,32]]}}}],["rm_hs300x_programmingmodeenter(&g_hs300x_ctrl",{"_index":6411,"t":{},"d":{},"k":{},"b":{"129":{"position":[[7705,47]]}}}],["rm_hs300x_programmingmodeexit",{"_index":6394,"t":{},"d":{},"k":{},"b":{"129":{"position":[[2322,29],[17067,31],[17138,29]]},"130":{"position":[[5523,31]]}}}],["rm_hs300x_programmingmodeexit(&g_hs300x_ctrl",{"_index":6419,"t":{},"d":{},"k":{},"b":{"129":{"position":[[8883,46]]}}}],["rm_hs300x_programmnig_mode_params_t",{"_index":6425,"t":{},"d":{},"k":{},"b":{"129":{"position":[[10118,35],[10225,35],[10297,35],[11037,35]]}}}],["rm_hs300x_raw_data_t",{"_index":6368,"t":{},"d":{},"k":{},"b":{"129":{"position":[[709,20],[894,20],[5588,20],[13080,20],[13673,20]]},"130":{"position":[[282,20],[779,20],[836,20],[2157,20],[2259,20],[3500,20],[3861,20]]}}}],["rm_hs300x_read",{"_index":6367,"t":{},"d":{},"k":{},"b":{"129":{"position":[[657,14],[12888,16],[12944,14]]},"130":{"position":[[3599,16]]}}}],["rm_hs300x_read(&g_hs300x_ctrl",{"_index":6421,"t":{},"d":{},"k":{},"b":{"129":{"position":[[9290,30]]}}}],["rm_hs300x_resolution_8bit",{"_index":6416,"t":{},"d":{},"k":{},"b":{"129":{"position":[[8144,27],[8553,27]]}}}],["rm_hs300x_resolution_t",{"_index":6385,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1522,22],[15224,22]]},"130":{"position":[[571,22],[2511,22],[4693,22],[6809,22],[6866,22]]}}}],["rm_hs300x_resolutionchang",{"_index":6382,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1419,26],[4629,26],[14907,28],[14975,26]]},"130":{"position":[[4796,28]]}}}],["rm_hs300x_resolutionchange(&g_hs300x_ctrl",{"_index":6414,"t":{},"d":{},"k":{},"b":{"129":{"position":[[8076,42],[8482,42]]}}}],["rm_hs300x_sensor_data_t",{"_index":6439,"t":{},"d":{},"k":{},"b":{"130":{"position":[[313,23],[1045,23],[1105,23]]}}}],["rm_hs300x_sensoridget",{"_index":6390,"t":{},"d":{},"k":{},"b":{"129":{"position":[[1986,21],[16136,23],[16199,21]]},"130":{"position":[[5181,23]]}}}],["rm_hs300x_sensoridget(&g_hs300x_ctrl",{"_index":6413,"t":{},"d":{},"k":{},"b":{"129":{"position":[[7967,37]]}}}],["rm_hs300x_temperature_data",{"_index":6418,"t":{},"d":{},"k":{},"b":{"129":{"position":[[8525,27]]}}}],["rm_hs400x",{"_index":193,"t":{"30":{"position":[[45,9]]},"131":{"position":[[80,11]]}},"d":{},"k":{},"b":{"119":{"position":[[246,11]]},"131":{"position":[[2813,9],[3562,11],[3677,12]]},"132":{"position":[[206,11]]}}}],["rm_hs400x)middlewar",{"_index":8377,"t":{},"d":{},"k":{},"b":{"152":{"position":[[4832,21]]}}}],["rm_hs400x_api_t",{"_index":6529,"t":{},"d":{},"k":{},"b":{"132":{"position":[[434,15],[2401,15],[2453,15],[5318,15]]}}}],["rm_hs400x_api_t::clos",{"_index":6464,"t":{},"d":{},"k":{},"b":{"131":{"position":[[324,23],[16955,23]]},"132":{"position":[[4819,23]]}}}],["rm_hs400x_api_t::datacalcul",{"_index":6478,"t":{},"d":{},"k":{},"b":{"131":{"position":[[2036,31],[20457,31]]},"132":{"position":[[4342,31]]}}}],["rm_hs400x_api_t::measurementstart",{"_index":6469,"t":{},"d":{},"k":{},"b":{"131":{"position":[[900,34],[17806,34]]},"132":{"position":[[3426,34]]}}}],["rm_hs400x_api_t::measurementstop",{"_index":6471,"t":{},"d":{},"k":{},"b":{"131":{"position":[[1301,33],[18631,33]]},"132":{"position":[[3715,33]]}}}],["rm_hs400x_api_t::open",{"_index":6462,"t":{},"d":{},"k":{},"b":{"131":{"position":[[174,22],[16300,22]]},"132":{"position":[[3089,22]]}}}],["rm_hs400x_api_t::read",{"_index":6474,"t":{},"d":{},"k":{},"b":{"131":{"position":[[1774,22],[19633,22]]},"132":{"position":[[3990,22]]}}}],["rm_hs400x_basic_exampl",{"_index":6493,"t":{},"d":{},"k":{},"b":{"131":{"position":[[9700,23]]}}}],["rm_hs400x_callback_args_t",{"_index":6524,"t":{},"d":{},"k":{},"b":{"131":{"position":[[15829,27]]},"132":{"position":[[246,25],[738,25],[800,25],[2324,27]]}}}],["rm_hs400x_cfg_measurement_typ",{"_index":6500,"t":{},"d":{},"k":{},"b":{"131":{"position":[[11806,30],[12056,30],[12306,30],[13356,30]]}}}],["rm_hs400x_cfg_t",{"_index":6461,"t":{},"d":{},"k":{},"b":{"131":{"position":[[75,15],[15047,15],[16121,15]]},"132":{"position":[[408,15],[1641,15],[1693,15],[2563,15],[3145,15],[5225,15]]}}}],["rm_hs400x_close",{"_index":6463,"t":{},"d":{},"k":{},"b":{"131":{"position":[[218,15],[16731,17],[16788,15]]},"132":{"position":[[4922,17]]}}}],["rm_hs400x_ctrl_t",{"_index":6460,"t":{},"d":{},"k":{},"b":{"131":{"position":[[38,17],[234,17],[396,17],[982,17],[1371,17],[1842,17],[16023,16],[16827,16],[17264,16],[18274,16],[19089,16],[20060,16]]},"132":{"position":[[507,16],[2529,18],[2630,18],[2694,18],[2747,18],[2849,18],[2982,18],[3112,17],[3461,17],[3749,17],[4013,17],[4374,17],[4843,17],[5143,16],[5429,16],[5488,16]]}}}],["rm_hs400x_data_t",{"_index":6476,"t":{},"d":{},"k":{},"b":{"131":{"position":[[1919,16],[9819,16],[20260,16]]},"132":{"position":[[381,16],[1529,16],[1582,16],[2923,16],[4447,16]]}}}],["rm_hs400x_datacalcul",{"_index":6475,"t":{},"d":{},"k":{},"b":{"131":{"position":[[1818,23],[7953,26],[8740,26],[9474,26],[19948,25],[20013,23]]},"132":{"position":[[4575,25]]}}}],["rm_hs400x_datacalculate(&g_hs400x_ctrl",{"_index":6513,"t":{},"d":{},"k":{},"b":{"131":{"position":[[14011,39]]}}}],["rm_hs400x_event_error",{"_index":6467,"t":{},"d":{},"k":{},"b":{"131":{"position":[[802,21],[1203,21],[17708,21],[18533,21]]}}}],["rm_hs400x_event_measurement_not_complet",{"_index":6473,"t":{},"d":{},"k":{},"b":{"131":{"position":[[1697,40],[8498,40],[13428,41],[13528,40],[19556,40]]}}}],["rm_hs400x_event_success",{"_index":6492,"t":{},"d":{},"k":{},"b":{"131":{"position":[[7911,23],[8360,23],[8638,23],[8698,23],[9278,23],[9432,23],[13709,23]]}}}],["rm_hs400x_event_t",{"_index":6516,"t":{},"d":{},"k":{},"b":{"131":{"position":[[14826,17]]},"132":{"position":[[547,17],[5704,17],[5756,17]]}}}],["rm_hs400x_humidity_resolution_t",{"_index":6532,"t":{},"d":{},"k":{},"b":{"132":{"position":[[618,31],[1859,31],[5989,31],[6055,31]]}}}],["rm_hs400x_init_process_params_t",{"_index":6514,"t":{},"d":{},"k":{},"b":{"131":{"position":[[14472,31],[14575,31],[14643,31],[15299,31]]}}}],["rm_hs400x_instance_ctrl_t",{"_index":6515,"t":{},"d":{},"k":{},"b":{"131":{"position":[[14514,25],[14876,25],[14938,25]]},"132":{"position":[[5638,25]]}}}],["rm_hs400x_instance_t",{"_index":6530,"t":{},"d":{},"k":{},"b":{"132":{"position":[[460,20],[5017,20],[5074,20]]}}}],["rm_hs400x_measurementstart",{"_index":6465,"t":{},"d":{},"k":{},"b":{"131":{"position":[[369,26],[8279,29],[9134,29],[17146,28],[17214,26]]},"132":{"position":[[3554,28]]}}}],["rm_hs400x_measurementstart(&g_hs400x_ctrl",{"_index":6501,"t":{},"d":{},"k":{},"b":{"131":{"position":[[11917,43],[12176,43]]}}}],["rm_hs400x_measurementstop",{"_index":6470,"t":{},"d":{},"k":{},"b":{"131":{"position":[[956,25],[9099,28],[18158,27],[18225,25]]},"132":{"position":[[3841,27]]}}}],["rm_hs400x_open",{"_index":6459,"t":{},"d":{},"k":{},"b":{"131":{"position":[[23,14],[7531,17],[15929,16],[15985,14]]},"132":{"position":[[3226,16]]}}}],["rm_hs400x_open(&g_hs400x_ctrl",{"_index":6498,"t":{},"d":{},"k":{},"b":{"131":{"position":[[11656,30],[16343,30]]}}}],["rm_hs400x_periodic_measurement_frequency_0p4hz",{"_index":6506,"t":{},"d":{},"k":{},"b":{"131":{"position":[[12821,47]]},"132":{"position":[[6467,46]]}}}],["rm_hs400x_periodic_measurement_frequency_1hz",{"_index":6505,"t":{},"d":{},"k":{},"b":{"131":{"position":[[12673,45]]},"132":{"position":[[6396,44]]}}}],["rm_hs400x_periodic_measurement_frequency_2hz",{"_index":6503,"t":{},"d":{},"k":{},"b":{"131":{"position":[[12518,45]]}}}],["rm_hs400x_periodic_measurement_frequency_t",{"_index":6533,"t":{},"d":{},"k":{},"b":{"132":{"position":[[659,42],[1947,42],[6140,42],[6217,42]]}}}],["rm_hs400x_raw_data_t",{"_index":6472,"t":{},"d":{},"k":{},"b":{"131":{"position":[[1408,20],[1879,20],[9778,20],[19187,20],[20158,20]]},"132":{"position":[[316,20],[1019,20],[1076,20],[2781,20],[2883,20],[4046,20],[4407,20]]}}}],["rm_hs400x_read",{"_index":6466,"t":{},"d":{},"k":{},"b":{"131":{"position":[[684,16],[1356,14],[7820,17],[8402,17],[8581,16],[9365,17],[17590,16],[18995,16],[19051,14]]},"132":{"position":[[4145,16]]}}}],["rm_hs400x_read(&g_hs400x_ctrl",{"_index":6510,"t":{},"d":{},"k":{},"b":{"131":{"position":[[13190,30]]}}}],["rm_hs400x_resolutions_t",{"_index":6527,"t":{},"d":{},"k":{},"b":{"132":{"position":[[282,23],[887,23],[947,23]]}}}],["rm_hs400x_sensor_data_t",{"_index":6528,"t":{},"d":{},"k":{},"b":{"132":{"position":[[347,23],[1309,23],[1369,23]]}}}],["rm_hs400x_temperature_resolution_t",{"_index":6531,"t":{},"d":{},"k":{},"b":{"132":{"position":[[574,34],[1762,34],[5829,34],[5898,34]]}}}],["rm_zmod4xxx",{"_index":203,"t":{"43":{"position":[[45,11]]},"133":{"position":[[65,13]]}},"d":{},"k":{},"b":{"119":{"position":[[392,13]]},"133":{"position":[[6025,11],[6347,13],[6449,14]]},"134":{"position":[[199,13]]}}}],["rm_zmod4xxx)middlewar",{"_index":8378,"t":{},"d":{},"k":{},"b":{"152":{"position":[[4973,23]]}}}],["rm_zmod4xxx_api_t",{"_index":6707,"t":{},"d":{},"k":{},"b":{"134":{"position":[[596,17],[4145,17],[4199,17],[12675,17]]}}}],["rm_zmod4xxx_api_t::clos",{"_index":6591,"t":{},"d":{},"k":{},"b":{"133":{"position":[[4693,25],[62196,25]]},"134":{"position":[[12149,25]]}}}],["rm_zmod4xxx_api_t::deviceerrorcheck",{"_index":6567,"t":{},"d":{},"k":{},"b":{"133":{"position":[[1882,36],[55717,36]]},"134":{"position":[[11858,36]]}}}],["rm_zmod4xxx_api_t::iaq1stgendatacalcul",{"_index":6571,"t":{},"d":{},"k":{},"b":{"133":{"position":[[2255,42],[56653,42]]},"134":{"position":[[7738,42]]}}}],["rm_zmod4xxx_api_t::iaq2ndgendatacalcul",{"_index":6574,"t":{},"d":{},"k":{},"b":{"133":{"position":[[2634,42],[57503,42]]},"134":{"position":[[8271,42]]}}}],["rm_zmod4xxx_api_t::measurementstart",{"_index":6549,"t":{},"d":{},"k":{},"b":{"133":{"position":[[474,36],[52136,36]]},"134":{"position":[[6514,36]]}}}],["rm_zmod4xxx_api_t::measurementstop",{"_index":6551,"t":{},"d":{},"k":{},"b":{"133":{"position":[[667,35],[52711,35]]},"134":{"position":[[6807,35]]}}}],["rm_zmod4xxx_api_t::oaq1stgendatacalcul",{"_index":6583,"t":{},"d":{},"k":{},"b":{"133":{"position":[[3764,42],[60042,42]]},"134":{"position":[[9850,42]]}}}],["rm_zmod4xxx_api_t::oaq2ndgendatacalcul",{"_index":6586,"t":{},"d":{},"k":{},"b":{"133":{"position":[[4143,42],[60892,42]]},"134":{"position":[[10383,42]]}}}],["rm_zmod4xxx_api_t::odordatacalcul",{"_index":6577,"t":{},"d":{},"k":{},"b":{"133":{"position":[[3005,37],[58340,37]]},"134":{"position":[[8799,37]]}}}],["rm_zmod4xxx_api_t::open",{"_index":6547,"t":{},"d":{},"k":{},"b":{"133":{"position":[[291,24],[51529,24]]},"134":{"position":[[6161,24]]}}}],["rm_zmod4xxx_api_t::raqdatacalcul",{"_index":6589,"t":{},"d":{},"k":{},"b":{"133":{"position":[[4512,36],[61726,36]]},"134":{"position":[[10910,36]]}}}],["rm_zmod4xxx_api_t::read",{"_index":6557,"t":{},"d":{},"k":{},"b":{"133":{"position":[[1182,24],[54078,24]]},"134":{"position":[[7373,24]]}}}],["rm_zmod4xxx_api_t::statuscheck",{"_index":6553,"t":{},"d":{},"k":{},"b":{"133":{"position":[[883,31],[53305,31]]},"134":{"position":[[7093,31]]}}}],["rm_zmod4xxx_api_t::sulfurodordatacalcul",{"_index":6580,"t":{},"d":{},"k":{},"b":{"133":{"position":[[3384,43],[59191,43]]},"134":{"position":[[9312,43]]}}}],["rm_zmod4xxx_api_t::temperatureandhumidityset",{"_index":6562,"t":{},"d":{},"k":{},"b":{"133":{"position":[[1545,45],[55080,45]]},"134":{"position":[[11421,45]]}}}],["rm_zmod4xxx_callback_args_t",{"_index":6703,"t":{},"d":{},"k":{},"b":{"133":{"position":[[50700,29],[50795,29]]},"134":{"position":[[241,27],[806,27],[870,27],[3986,29],[4081,29]]}}}],["rm_zmod4xxx_cfg_t",{"_index":6546,"t":{},"d":{},"k":{},"b":{"133":{"position":[[79,17],[50263,17],[51237,17]]},"134":{"position":[[568,17],[3517,17],[3571,17],[4319,17],[6225,17],[12580,17]]}}}],["rm_zmod4xxx_clos",{"_index":6590,"t":{},"d":{},"k":{},"b":{"133":{"position":[[4570,17],[61953,19],[62012,17]]},"134":{"position":[[12263,19]]}}}],["rm_zmod4xxx_ctrl_t",{"_index":6545,"t":{},"d":{},"k":{},"b":{"133":{"position":[[40,19],[366,19],[560,19],[748,19],[953,19],[1266,19],[1641,19],[1975,19],[2354,19],[2728,19],[3100,19],[3484,19],[3863,19],[4236,19],[4588,19],[51137,18],[51990,18],[52566,18],[53132,18],[53708,18],[54598,18],[55438,18],[56170,18],[57020,18],[57860,18],[58704,18],[59559,18],[60409,18],[61247,18],[62053,18]]},"134":{"position":[[673,18],[4279,20],[4388,20],[4458,20],[4524,20],[4583,20],[4702,20],[4872,20],[5037,20],[5205,20],[5379,20],[5549,20],[5713,20],[5882,20],[5988,20],[6048,20],[6186,19],[6551,19],[6843,19],[7125,19],[7398,19],[7781,19],[8314,19],[8837,19],[9356,19],[9893,19],[10426,19],[10947,19],[11467,19],[11895,19],[12175,19],[12496,18],[12788,18],[12849,18]]}}}],["rm_zmod4xxx_deviceerrorcheck",{"_index":6563,"t":{},"d":{},"k":{},"b":{"133":{"position":[[1612,28],[10757,31],[55316,30],[55386,28]]},"134":{"position":[[11992,30]]}}}],["rm_zmod4xxx_deviceerrorcheck(&g_zmod4xxx_ctrl",{"_index":6662,"t":{},"d":{},"k":{},"b":{"133":{"position":[[22971,47],[28174,47],[29254,47],[46973,47],[47956,47]]}}}],["rm_zmod4xxx_event_dev_err_access_conflict",{"_index":6640,"t":{},"d":{},"k":{},"b":{"133":{"position":[[10919,41],[23283,42],[28486,42],[29538,42],[29794,42],[48149,42],[48297,42]]},"134":{"position":[[13259,41]]}}}],["rm_zmod4xxx_event_dev_err_power_on_reset",{"_index":6639,"t":{},"d":{},"k":{},"b":{"133":{"position":[[10875,40],[23188,42],[28391,42],[29447,42],[29687,40],[47190,41]]}}}],["rm_zmod4xxx_event_measurement_complet",{"_index":6636,"t":{},"d":{},"k":{},"b":{"133":{"position":[[9932,38],[10512,38]]}}}],["rm_zmod4xxx_event_measurement_not_complet",{"_index":6638,"t":{},"d":{},"k":{},"b":{"133":{"position":[[10359,42]]}}}],["rm_zmod4xxx_event_success",{"_index":6637,"t":{},"d":{},"k":{},"b":{"133":{"position":[[10075,25],[10233,25],[10622,25],[11007,25]]}}}],["rm_zmod4xxx_event_t",{"_index":6694,"t":{},"d":{},"k":{},"b":{"133":{"position":[[49627,19],[50125,19]]},"134":{"position":[[715,19],[13064,19],[13118,19]]}}}],["rm_zmod4xxx_iaq1stgendatacalcul",{"_index":6568,"t":{},"d":{},"k":{},"b":{"133":{"position":[[1940,34],[56036,36],[56112,34]]},"134":{"position":[[7990,36]]}}}],["rm_zmod4xxx_iaq1stgendatacalculate(&g_zmod4xxx_ctrl",{"_index":6658,"t":{},"d":{},"k":{},"b":{"133":{"position":[[14937,52],[19103,52]]}}}],["rm_zmod4xxx_iaq2ndgendatacalcul",{"_index":6572,"t":{},"d":{},"k":{},"b":{"133":{"position":[[2319,34],[56886,36],[56962,34]]},"134":{"position":[[8523,36]]}}}],["rm_zmod4xxx_iaq2ndgendatacalculate(&g_zmod4xxx_ctrl",{"_index":6664,"t":{},"d":{},"k":{},"b":{"133":{"position":[[23998,52],[30212,52]]}}}],["rm_zmod4xxx_iaq_1st_data_t",{"_index":6569,"t":{},"d":{},"k":{},"b":{"133":{"position":[[2056,26],[11359,26],[15493,26],[56374,26]]},"134":{"position":[[312,26],[1106,26],[1169,26],[4784,26],[7862,26]]}}}],["rm_zmod4xxx_iaq_1st_gen_continuous_basic_exampl",{"_index":6641,"t":{},"d":{},"k":{},"b":{"133":{"position":[[11210,48]]}}}],["rm_zmod4xxx_iaq_1st_gen_low_power_basic_exampl",{"_index":6659,"t":{},"d":{},"k":{},"b":{"133":{"position":[[15345,47]]}}}],["rm_zmod4xxx_iaq_2nd_data_t",{"_index":6573,"t":{},"d":{},"k":{},"b":{"133":{"position":[[2435,26],[19797,26],[24700,26],[57224,26]]},"134":{"position":[[349,26],[1483,26],[1546,26],[4954,26],[8395,26]]}}}],["rm_zmod4xxx_iaq_2nd_gen_basic_exampl",{"_index":6661,"t":{},"d":{},"k":{},"b":{"133":{"position":[[19659,37]]}}}],["rm_zmod4xxx_iaq_2nd_gen_ulp_basic_exampl",{"_index":6667,"t":{},"d":{},"k":{},"b":{"133":{"position":[[24558,41]]}}}],["rm_zmod4xxx_init_process_params_t",{"_index":6689,"t":{},"d":{},"k":{},"b":{"133":{"position":[[49116,33],[49270,33],[49340,33],[50172,33]]}}}],["rm_zmod4xxx_instance_ctrl_t",{"_index":6690,"t":{},"d":{},"k":{},"b":{"133":{"position":[[49160,27],[49679,27],[49743,27]]},"134":{"position":[[12996,27]]}}}],["rm_zmod4xxx_instance_t",{"_index":6708,"t":{},"d":{},"k":{},"b":{"134":{"position":[[624,22],[12364,22],[12423,22]]}}}],["rm_zmod4xxx_lib_extended_cfg_t",{"_index":6699,"t":{},"d":{},"k":{},"b":{"133":{"position":[[50449,30]]}}}],["rm_zmod4xxx_lib_type_t",{"_index":6691,"t":{},"d":{},"k":{},"b":{"133":{"position":[[49211,22],[50890,22],[50947,22]]}}}],["rm_zmod4xxx_max_i2c_buf_s",{"_index":6695,"t":{},"d":{},"k":{},"b":{"133":{"position":[[49868,30]]}}}],["rm_zmod4xxx_measurementstart",{"_index":6548,"t":{},"d":{},"k":{},"b":{"133":{"position":[[337,28],[9660,31],[9889,31],[10190,31],[51868,30],[51938,28]]},"134":{"position":[[6640,30]]}}}],["rm_zmod4xxx_measurementstart(&g_zmod4xxx_ctrl",{"_index":6653,"t":{},"d":{},"k":{},"b":{"133":{"position":[[13910,47],[18074,47],[22378,47],[27392,47],[33515,47],[37660,47],[41965,47],[46217,47]]}}}],["rm_zmod4xxx_measurementstop",{"_index":6550,"t":{},"d":{},"k":{},"b":{"133":{"position":[[532,27],[52446,29],[52515,27]]},"134":{"position":[[6931,29]]}}}],["rm_zmod4xxx_oaq1stgendatacalcul",{"_index":6581,"t":{},"d":{},"k":{},"b":{"133":{"position":[[3449,34],[59425,36],[59501,34]]},"134":{"position":[[10102,36]]}}}],["rm_zmod4xxx_oaq1stgendatacalculate(&g_zmod4xxx_ctrl",{"_index":6685,"t":{},"d":{},"k":{},"b":{"133":{"position":[[42994,52]]}}}],["rm_zmod4xxx_oaq2ndgendatacalcul",{"_index":6584,"t":{},"d":{},"k":{},"b":{"133":{"position":[[3828,34],[60275,36],[60351,34]]},"134":{"position":[[10635,36]]}}}],["rm_zmod4xxx_oaq2ndgendatacalculate(&g_zmod4xxx_ctrl",{"_index":6688,"t":{},"d":{},"k":{},"b":{"133":{"position":[[48715,52]]}}}],["rm_zmod4xxx_oaq_1st_data_t",{"_index":6582,"t":{},"d":{},"k":{},"b":{"133":{"position":[[3565,26],[39384,26],[59763,26]]},"134":{"position":[[461,26],[2572,26],[2635,26],[5461,26],[9974,26]]}}}],["rm_zmod4xxx_oaq_1st_gen_basic_exampl",{"_index":6683,"t":{},"d":{},"k":{},"b":{"133":{"position":[[39246,37]]}}}],["rm_zmod4xxx_oaq_2nd_data_t",{"_index":6585,"t":{},"d":{},"k":{},"b":{"133":{"position":[[3944,26],[43525,26],[60613,26]]},"134":{"position":[[498,26],[2798,26],[2861,26],[5631,26],[10507,26]]}}}],["rm_zmod4xxx_oaq_2nd_gen_basic_exampl",{"_index":6686,"t":{},"d":{},"k":{},"b":{"133":{"position":[[43387,37]]}}}],["rm_zmod4xxx_odor_basic_exampl",{"_index":6679,"t":{},"d":{},"k":{},"b":{"133":{"position":[[30842,30]]}}}],["rm_zmod4xxx_odor_data_t",{"_index":6576,"t":{},"d":{},"k":{},"b":{"133":{"position":[[2809,23],[30967,23],[58064,23]]},"134":{"position":[[386,23],[1967,23],[2027,23],[5119,23],[8918,23]]}}}],["rm_zmod4xxx_odordatacalcul",{"_index":6575,"t":{},"d":{},"k":{},"b":{"133":{"position":[[2698,29],[57736,31],[57807,29]]},"134":{"position":[[9035,31]]}}}],["rm_zmod4xxx_odordatacalculate(&g_zmod4xxx_ctrl",{"_index":6680,"t":{},"d":{},"k":{},"b":{"133":{"position":[[34542,47]]}}}],["rm_zmod4xxx_open",{"_index":6544,"t":{},"d":{},"k":{},"b":{"133":{"position":[[23,16],[9465,19],[51039,18],[51097,16]]},"134":{"position":[[6308,18]]}}}],["rm_zmod4xxx_open(&g_zmod4xxx_ctrl",{"_index":6647,"t":{},"d":{},"k":{},"b":{"133":{"position":[[13650,34],[17784,34],[22088,34],[27102,34],[33255,34],[37370,34],[41675,34],[45927,34]]}}}],["rm_zmod4xxx_raq_data_t",{"_index":6588,"t":{},"d":{},"k":{},"b":{"133":{"position":[[4317,22],[61451,22]]},"134":{"position":[[535,22],[3269,22],[3328,22],[5795,22],[11028,22]]}}}],["rm_zmod4xxx_raqdatacalcul",{"_index":6587,"t":{},"d":{},"k":{},"b":{"133":{"position":[[4207,28],[61125,30],[61195,28]]},"134":{"position":[[11143,30]]}}}],["rm_zmod4xxx_raw_data_t",{"_index":6555,"t":{},"d":{},"k":{},"b":{"133":{"position":[[992,22],[2014,22],[2393,22],[2767,22],[3139,22],[3523,22],[3902,22],[4275,22],[11319,22],[15453,22],[19757,22],[24660,22],[30930,22],[35031,22],[39344,22],[43485,22],[53808,22],[56270,22],[57120,22],[57960,22],[58804,22],[59659,22],[60509,22],[61347,22]]},"134":{"position":[[279,22],[972,22],[1031,22],[4623,22],[4742,22],[4912,22],[5077,22],[5245,22],[5419,22],[5589,22],[5753,22],[7437,22],[7820,22],[8353,22],[8876,22],[9395,22],[9932,22],[10465,22],[10986,22]]}}}],["rm_zmod4xxx_read",{"_index":6554,"t":{},"d":{},"k":{},"b":{"133":{"position":[[936,16],[10006,19],[10569,18],[53610,18],[53668,16]]},"134":{"position":[[7526,18]]}}}],["rm_zmod4xxx_read(&g_zmod4xxx_ctrl",{"_index":6656,"t":{},"d":{},"k":{},"b":{"133":{"position":[[14501,34],[18667,34],[23562,34],[28818,34],[34106,34],[38253,34],[42558,34],[47520,34]]}}}],["rm_zmod4xxx_status_params_t",{"_index":6697,"t":{},"d":{},"k":{},"b":{"133":{"position":[[49993,27]]}}}],["rm_zmod4xxx_statuscheck",{"_index":6552,"t":{},"d":{},"k":{},"b":{"133":{"position":[[724,23],[10277,26],[10468,25],[53020,25],[53085,23]]},"134":{"position":[[7222,25]]}}}],["rm_zmod4xxx_statuscheck(&g_zmod4xxx_ctrl",{"_index":6655,"t":{},"d":{},"k":{},"b":{"133":{"position":[[14280,42],[18446,42],[22750,42],[27953,42],[33885,42],[38032,42],[42337,42],[46752,42]]}}}],["rm_zmod4xxx_sulfur_odor_basic_exampl",{"_index":6681,"t":{},"d":{},"k":{},"b":{"133":{"position":[[34929,37]]}}}],["rm_zmod4xxx_sulfur_odor_data_t",{"_index":6579,"t":{},"d":{},"k":{},"b":{"133":{"position":[[3181,30],[35075,30],[58908,30]]},"134":{"position":[[420,30],[2221,30],[2288,30],[5287,30],[9437,30]]}}}],["rm_zmod4xxx_sulfur_odor_t",{"_index":6709,"t":{},"d":{},"k":{},"b":{"134":{"position":[[744,25],[2496,25],[13357,25],[13417,25]]}}}],["rm_zmod4xxx_sulfurodordatacalcul",{"_index":6578,"t":{},"d":{},"k":{},"b":{"133":{"position":[[3064,35],[58568,37],[58645,35]]},"134":{"position":[[9568,37]]}}}],["rm_zmod4xxx_sulfurodordatacalculate(&g_zmod4xxx_ctrl",{"_index":6682,"t":{},"d":{},"k":{},"b":{"133":{"position":[[38689,53]]}}}],["rm_zmod4xxx_temperatureandhumidityset",{"_index":6558,"t":{},"d":{},"k":{},"b":{"133":{"position":[[1228,37],[54458,39],[54537,37]]},"134":{"position":[[11603,39]]}}}],["rm_zmod4xxx_temperatureandhumidityset(&g_zmod4xxx_ctrl",{"_index":6674,"t":{},"d":{},"k":{},"b":{"133":{"position":[[30093,55],[48596,55]]}}}],["rmii",{"_index":1630,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12265,5]]}}}],["rmox",{"_index":6710,"t":{},"d":{},"k":{},"b":{"134":{"position":[[1271,4]]}}}],["rmox[13",{"_index":6717,"t":{},"d":{},"k":{},"b":{"134":{"position":[[1648,8]]}}}],["rmox[15",{"_index":6726,"t":{},"d":{},"k":{},"b":{"134":{"position":[[2737,8]]}}}],["rmox[8",{"_index":6728,"t":{},"d":{},"k":{},"b":{"134":{"position":[[2963,7]]}}}],["rmox[9",{"_index":6722,"t":{},"d":{},"k":{},"b":{"134":{"position":[[2389,7]]}}}],["rnw",{"_index":3869,"t":{},"d":{},"k":{},"b":{"87":{"position":[[3244,3]]},"88":{"position":[[37407,3],[37437,4]]}}}],["robin",{"_index":2977,"t":{},"d":{},"k":{},"b":{"79":{"position":[[4161,5],[16103,5]]}}}],["role",{"_index":4079,"t":{},"d":{},"k":{},"b":{"88":{"position":[[14327,4],[22266,4]]}}}],["roll",{"_index":6953,"t":{},"d":{},"k":{},"b":{"136":{"position":[[6888,4]]}}}],["rom",{"_index":5543,"t":{},"d":{},"k":{},"b":{"113":{"position":[[1275,4]]}}}],["room",{"_index":5696,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8755,4]]}}}],["roughli",{"_index":2070,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44641,7],[45228,7]]}}}],["round",{"_index":2088,"t":{},"d":{},"k":{},"b":{"71":{"position":[[45552,8]]},"79":{"position":[[4155,5],[16097,5]]}}}],["rout",{"_index":1045,"t":{},"d":{},"k":{},"b":{"69":{"position":[[12663,6]]},"80":{"position":[[1266,5]]}}}],["routin",{"_index":707,"t":{},"d":{},"k":{},"b":{"68":{"position":[[4573,7]]},"69":{"position":[[8482,7]]},"75":{"position":[[14211,7]]},"76":{"position":[[4169,7],[6504,7]]},"83":{"position":[[10985,7],[16705,7]]},"84":{"position":[[3927,7],[5680,7]]},"89":{"position":[[2618,7]]},"90":{"position":[[2336,7]]},"91":{"position":[[2695,7]]},"105":{"position":[[7920,7]]},"106":{"position":[[11536,8]]},"108":{"position":[[2633,7]]},"124":{"position":[[4236,7]]},"125":{"position":[[3509,7]]},"128":{"position":[[13038,7],[13583,8]]},"135":{"position":[[4820,7]]},"136":{"position":[[2055,7],[5574,7]]},"138":{"position":[[4728,7]]},"139":{"position":[[6624,7]]},"140":{"position":[[5431,7]]},"142":{"position":[[4279,7]]},"146":{"position":[[3170,7]]}}}],["rs",{"_index":1999,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34614,3],[35230,3]]},"139":{"position":[[1617,2],[1665,2],[2342,2],[4759,2],[4841,2],[4876,2],[4984,2],[5245,2],[13408,2],[14917,2],[17024,2],[17084,2],[17127,2],[17285,2]]},"140":{"position":[[10807,2],[11802,2],[13290,2],[13348,2],[13389,2],[13543,2]]}}}],["rs232",{"_index":7151,"t":{},"d":{},"k":{},"b":{"139":{"position":[[2332,5]]},"140":{"position":[[1583,5],[3778,5],[3823,5],[3874,5],[12432,5]]}}}],["rs232c",{"_index":7314,"t":{},"d":{},"k":{},"b":{"140":{"position":[[4431,6],[4487,6]]}}}],["rs485",{"_index":7308,"t":{},"d":{},"k":{},"b":{"140":{"position":[[1644,5],[2154,5],[2233,5],[3785,5],[3804,5],[3883,6],[3907,5],[4221,5],[4329,5],[12492,5],[12564,5],[17347,5]]}}}],["rs485_set",{"_index":7243,"t":{},"d":{},"k":{},"b":{"139":{"position":[[14902,13]]},"140":{"position":[[11787,13]]}}}],["rsa",{"_index":5851,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15387,3],[15446,3]]}}}],["rspck",{"_index":6799,"t":{},"d":{},"k":{},"b":{"135":{"position":[[5681,6],[15072,5],[15095,6],[15127,5],[15150,6],[15182,5],[15205,6],[15237,5],[15260,6],[15292,5],[15315,6],[15347,5],[15370,6],[15402,5],[15425,6],[15457,5],[15480,6]]},"142":{"position":[[6378,6],[17516,5],[17539,6],[17572,5],[17595,6],[17628,5],[17651,6],[17684,5],[17707,6],[17740,5],[17763,6],[17796,5],[17819,6],[17852,5],[17875,6],[17908,5],[17931,6]]}}}],["rspck_div_setting_t",{"_index":7480,"t":{},"d":{},"k":{},"b":{"142":{"position":[[647,19],[12695,19],[13125,19],[13181,19],[14108,19],[23734,19]]}}}],["rspi",{"_index":5526,"t":{},"d":{},"k":{},"b":{"112":{"position":[[2264,4]]},"135":{"position":[[860,4],[1425,4],[2346,4],[2421,4],[3701,4],[3976,4],[4249,4],[4507,4],[4614,4],[5047,4],[5318,4],[5456,4],[6305,4],[7127,5],[8185,4],[8327,4],[8559,4],[9648,4],[11000,4],[11070,4],[11229,4],[11439,4],[12056,4],[12292,4],[12562,4]]},"152":{"position":[[3204,4]]}}}],["rspi_basic_exampl",{"_index":6807,"t":{},"d":{},"k":{},"b":{"135":{"position":[[8405,18]]}}}],["rspi_bitrate_exampl",{"_index":6821,"t":{},"d":{},"k":{},"b":{"135":{"position":[[11107,20]]}}}],["rspi_delay_count_1",{"_index":6786,"t":{},"d":{},"k":{},"b":{"135":{"position":[[3498,18],[3658,18],[3773,18],[3933,18],[4046,18],[4206,18]]}}}],["rspi_delay_count_2",{"_index":6787,"t":{},"d":{},"k":{},"b":{"135":{"position":[[3518,18],[3793,18],[4066,18],[15104,18]]}}}],["rspi_delay_count_3",{"_index":6788,"t":{},"d":{},"k":{},"b":{"135":{"position":[[3538,18],[3813,18],[4086,18],[15159,18]]}}}],["rspi_delay_count_4",{"_index":6789,"t":{},"d":{},"k":{},"b":{"135":{"position":[[3558,18],[3833,18],[4106,18],[15214,18]]}}}],["rspi_delay_count_5",{"_index":6790,"t":{},"d":{},"k":{},"b":{"135":{"position":[[3578,18],[3853,18],[4126,18],[15269,18]]}}}],["rspi_delay_count_6",{"_index":6791,"t":{},"d":{},"k":{},"b":{"135":{"position":[[3598,18],[3873,18],[4146,18],[15324,18]]}}}],["rspi_delay_count_7",{"_index":6792,"t":{},"d":{},"k":{},"b":{"135":{"position":[[3618,18],[3893,18],[4166,18],[15379,18]]}}}],["rspi_delay_count_8",{"_index":6793,"t":{},"d":{},"k":{},"b":{"135":{"position":[[3638,18],[3913,18],[4186,18],[15434,18]]}}}],["rspi_delay_count_t",{"_index":6830,"t":{},"d":{},"k":{},"b":{"135":{"position":[[11832,18],[12584,18],[12652,18],[12744,18],[14912,18],[14965,18]]}}}],["rspi_extended_cfg_t",{"_index":6785,"t":{},"d":{},"k":{},"b":{"135":{"position":[[3444,19],[11659,19],[12190,19],[12246,19],[13411,19]]}}}],["rspi_instance_ctrl_t",{"_index":6826,"t":{},"d":{},"k":{},"b":{"135":{"position":[[11689,20],[13058,20],[13115,20]]},"141":{"position":[[7786,20]]}}}],["rspi_mosi_idle_value_fixing_high",{"_index":6862,"t":{},"d":{},"k":{},"b":{"135":{"position":[[14562,32]]}}}],["rspi_mosi_idle_value_fixing_low",{"_index":6860,"t":{},"d":{},"k":{},"b":{"135":{"position":[[14492,31]]}}}],["rspi_mosi_idle_value_fixing_t",{"_index":6828,"t":{},"d":{},"k":{},"b":{"135":{"position":[[11762,29],[12402,29],[14269,29],[14333,29]]}}}],["rspi_rspck_div_setting_t",{"_index":6762,"t":{},"d":{},"k":{},"b":{"135":{"position":[[606,24],[11624,24],[11953,24],[12014,24],[12490,24],[21940,24]]}}}],["rspi_rx_trigger_16",{"_index":6874,"t":{},"d":{},"k":{},"b":{"135":{"position":[[16264,18]]}}}],["rspi_rx_trigger_2",{"_index":6871,"t":{},"d":{},"k":{},"b":{"135":{"position":[[16081,17]]}}}],["rspi_rx_trigger_24",{"_index":6875,"t":{},"d":{},"k":{},"b":{"135":{"position":[[16327,18]]}}}],["rspi_rx_trigger_32",{"_index":6876,"t":{},"d":{},"k":{},"b":{"135":{"position":[[16390,18]]}}}],["rspi_rx_trigger_4",{"_index":6872,"t":{},"d":{},"k":{},"b":{"135":{"position":[[16142,17]]}}}],["rspi_rx_trigger_5",{"_index":6877,"t":{},"d":{},"k":{},"b":{"135":{"position":[[16453,17]]}}}],["rspi_rx_trigger_8",{"_index":6873,"t":{},"d":{},"k":{},"b":{"135":{"position":[[16203,17]]}}}],["rspi_rx_trigger_level_t",{"_index":6832,"t":{},"d":{},"k":{},"b":{"135":{"position":[[11893,23],[12901,23],[15880,23],[15938,23]]}}}],["rspi_software_ssl_exampl",{"_index":6817,"t":{},"d":{},"k":{},"b":{"135":{"position":[[9291,25]]}}}],["rspi_ssl_level_keep_en",{"_index":6864,"t":{},"d":{},"k":{},"b":{"135":{"position":[[14848,26]]}}}],["rspi_ssl_level_keep_t",{"_index":6829,"t":{},"d":{},"k":{},"b":{"135":{"position":[[11801,21],[12825,21],[14641,21],[14697,21]]}}}],["rspi_ssl_polarity_t",{"_index":6827,"t":{},"d":{},"k":{},"b":{"135":{"position":[[11733,19],[12336,19],[14036,19],[14090,19]]}}}],["rspi_sslp_high",{"_index":6856,"t":{},"d":{},"k":{},"b":{"135":{"position":[[14211,14]]}}}],["rspi_tx_trigger_0",{"_index":6869,"t":{},"d":{},"k":{},"b":{"135":{"position":[[15822,17]]}}}],["rspi_tx_trigger_4",{"_index":6868,"t":{},"d":{},"k":{},"b":{"135":{"position":[[15761,17]]}}}],["rspi_tx_trigger_6",{"_index":6867,"t":{},"d":{},"k":{},"b":{"135":{"position":[[15700,17]]}}}],["rspi_tx_trigger_level_t",{"_index":6831,"t":{},"d":{},"k":{},"b":{"135":{"position":[[11860,23],[12975,23],[15496,23],[15554,23]]}}}],["rstdaa",{"_index":4028,"t":{},"d":{},"k":{},"b":{"88":{"position":[[6542,6]]}}}],["rt",{"_index":7164,"t":{},"d":{},"k":{},"b":{"139":{"position":[[4301,3],[4391,3],[4507,3],[4655,3],[7572,3],[7618,3],[7639,4],[8086,3],[8139,4],[8309,3],[8348,3],[8560,4],[15672,4],[15816,4],[15898,4]]},"140":{"position":[[5176,3],[5244,3],[6481,3],[6567,4],[11614,3],[15925,3],[15980,3],[16029,3],[16078,3],[16127,3],[16177,3],[16228,3],[16279,3],[16330,3],[16394,3]]}}}],["rtc",{"_index":1638,"t":{"137":{"position":[[45,3]]}},"d":{},"k":{},"b":{"70":{"position":[[12769,4],[17879,4]]},"115":{"position":[[1194,3]]},"122":{"position":[[716,3],[770,3]]},"136":{"position":[[1081,3],[1135,3],[1165,3],[1195,3],[1338,3],[1369,3],[1406,3],[1454,3],[1791,3],[3318,3],[3898,3],[6090,3],[6358,3],[7012,4],[7102,4],[7472,3],[7536,3],[7875,3],[8206,3],[8281,4],[8367,3],[8602,3],[8887,3],[8956,4],[9038,3],[9407,3],[9488,4],[9569,3],[9717,3],[10075,3],[10809,3],[11170,3],[11312,3],[11440,3],[11797,3],[11906,3],[12321,3],[15772,3],[17237,3],[18268,3],[18301,3]]},"137":{"position":[[80,3],[129,5],[2471,3],[2605,3],[2640,3],[2858,3],[3537,3],[3658,3],[3688,3],[4931,3],[5012,3],[5217,3],[5299,3],[5469,3],[5566,3],[5887,3],[6320,3],[6732,3],[7173,3],[7566,3],[8438,3],[8853,3],[8985,3],[9722,3],[9802,3],[10279,3],[10414,3],[10622,3],[10667,3],[10712,3]]},"152":{"position":[[6217,3],[6271,3],[7552,3]]}}}],["rtc'",{"_index":6939,"t":{},"d":{},"k":{},"b":{"136":{"position":[[3700,5]]}}}],["rtc_alarm_channel_t",{"_index":7017,"t":{},"d":{},"k":{},"b":{"137":{"position":[[597,19],[2331,19],[10188,19],[10242,19]]}}}],["rtc_alarm_irq_exampl",{"_index":6976,"t":{},"d":{},"k":{},"b":{"136":{"position":[[8966,21]]}}}],["rtc_alarm_time_t",{"_index":6907,"t":{},"d":{},"k":{},"b":{"136":{"position":[[438,16],[533,16],[14171,16],[14948,16]]},"137":{"position":[[382,16],[1636,16],[1689,16],[4169,16],[4261,16],[6541,16],[7013,16]]}}}],["rtc_api_t",{"_index":7014,"t":{},"d":{},"k":{},"b":{"137":{"position":[[450,9],[3585,9],[3631,9],[9380,9]]}}}],["rtc_api_t::calendaralarmget",{"_index":7004,"t":{},"d":{},"k":{},"b":{"136":{"position":[[15101,27]]},"137":{"position":[[6957,28]]}}}],["rtc_api_t::calendaralarmset",{"_index":7002,"t":{},"d":{},"k":{},"b":{"136":{"position":[[14324,28]]},"137":{"position":[[6485,28]]}}}],["rtc_api_t::calendartimeget",{"_index":7000,"t":{},"d":{},"k":{},"b":{"136":{"position":[[13692,26]]},"137":{"position":[[6119,27]]}}}],["rtc_api_t::calendartimeset",{"_index":6996,"t":{},"d":{},"k":{},"b":{"136":{"position":[[12908,27]]},"137":{"position":[[5656,27]]}}}],["rtc_api_t::callbackset",{"_index":7010,"t":{},"d":{},"k":{},"b":{"136":{"position":[[18144,22]]},"137":{"position":[[8090,23]]}}}],["rtc_api_t::clocksourceset",{"_index":6995,"t":{},"d":{},"k":{},"b":{"136":{"position":[[12215,26]]},"137":{"position":[[5389,26]]}}}],["rtc_api_t::clos",{"_index":6992,"t":{},"d":{},"k":{},"b":{"136":{"position":[[11820,16]]},"137":{"position":[[5145,17]]}}}],["rtc_api_t::erroradjustmentset",{"_index":7006,"t":{},"d":{},"k":{},"b":{"136":{"position":[[16615,29]]},"137":{"position":[[7700,30]]}}}],["rtc_api_t::infoget",{"_index":7007,"t":{},"d":{},"k":{},"b":{"136":{"position":[[17339,18]]},"137":{"position":[[8707,19]]}}}],["rtc_api_t::open",{"_index":6932,"t":{},"d":{},"k":{},"b":{"136":{"position":[[1983,15],[10450,15],[11200,16]]},"137":{"position":[[4831,16]]}}}],["rtc_api_t::periodicirqrateset",{"_index":7005,"t":{},"d":{},"k":{},"b":{"136":{"position":[[15725,29]]},"137":{"position":[[7344,30]]}}}],["rtc_callback_args_t",{"_index":6920,"t":{},"d":{},"k":{},"b":{"136":{"position":[[996,19],[2154,21],[17922,19]]},"137":{"position":[[315,19],[846,19],[902,19],[3375,21],[4632,19],[8212,19]]}}}],["rtc_cfg_t",{"_index":6899,"t":{},"d":{},"k":{},"b":{"136":{"position":[[61,9],[10547,9],[11035,9]]},"137":{"position":[[430,9],[2664,9],[2710,9],[3807,9],[4875,9],[9293,9]]}}}],["rtc_clock_bypass_mode_t",{"_index":6986,"t":{},"d":{},"k":{},"b":{"136":{"position":[[9924,23],[10217,23],[10710,23],[10768,23]]}}}],["rtc_clock_source_loco",{"_index":7061,"t":{},"d":{},"k":{},"b":{"137":{"position":[[10484,21]]}}}],["rtc_clock_source_t",{"_index":7018,"t":{},"d":{},"k":{},"b":{"137":{"position":[[626,18],[2550,18],[2804,18],[10304,18],[10357,18]]}}}],["rtc_ctrl_t",{"_index":6898,"t":{},"d":{},"k":{},"b":{"136":{"position":[[34,11],[115,11],[175,11],[236,11],[323,11],[411,11],[506,11],[603,11],[705,11],[811,11],[898,11],[10947,10],[11722,10],[12139,10],[12680,10],[13299,10],[14083,10],[14860,10],[15445,10],[16342,10],[17035,10],[17638,10]]},"137":{"position":[[542,10],[3779,12],[3857,12],[3914,12],[3972,12],[4056,12],[4141,12],[4233,12],[4327,12],[4426,12],[4533,12],[4700,12],[4848,11],[5163,11],[5416,11],[5684,11],[6147,11],[6514,11],[6986,11],[7375,11],[7731,11],[8114,11],[8727,11],[9217,10],[9641,10],[9694,10]]}}}],["rtc_error_adjustment_add_prescal",{"_index":7065,"t":{},"d":{},"k":{},"b":{"137":{"position":[[10942,34]]}}}],["rtc_error_adjustment_cfg_t",{"_index":6913,"t":{},"d":{},"k":{},"b":{"136":{"position":[[732,26],[16430,26]]},"137":{"position":[[345,26],[1155,26],[1218,26],[2952,26],[4454,26],[7758,26]]}}}],["rtc_error_adjustment_mode_automat",{"_index":7068,"t":{},"d":{},"k":{},"b":{"137":{"position":[[11373,35]]}}}],["rtc_error_adjustment_mode_t",{"_index":7021,"t":{},"d":{},"k":{},"b":{"137":{"position":[[708,27],[1319,27],[11149,27],[11211,27]]}}}],["rtc_error_adjustment_period_10_second",{"_index":7070,"t":{},"d":{},"k":{},"b":{"137":{"position":[[11701,37]]}}}],["rtc_error_adjustment_period_non",{"_index":7071,"t":{},"d":{},"k":{},"b":{"137":{"position":[[11787,32]]}}}],["rtc_error_adjustment_period_t",{"_index":7022,"t":{},"d":{},"k":{},"b":{"137":{"position":[[745,29],[1404,29],[11455,29],[11519,29]]}}}],["rtc_error_adjustment_subtract_prescal",{"_index":7066,"t":{},"d":{},"k":{},"b":{"137":{"position":[[11037,39]]}}}],["rtc_error_adjustment_t",{"_index":7020,"t":{},"d":{},"k":{},"b":{"137":{"position":[[676,22],[1481,22],[10745,22],[10802,22]]}}}],["rtc_erroradj_exampl",{"_index":6980,"t":{},"d":{},"k":{},"b":{"136":{"position":[[9498,20]]}}}],["rtc_event_alarm1_irq",{"_index":7058,"t":{},"d":{},"k":{},"b":{"137":{"position":[[10074,20]]}}}],["rtc_event_periodic_irq",{"_index":7059,"t":{},"d":{},"k":{},"b":{"137":{"position":[[10126,22]]}}}],["rtc_event_t",{"_index":7016,"t":{},"d":{},"k":{},"b":{"137":{"position":[[576,11],[987,11],[9892,11],[9938,11]]}}}],["rtc_exampl",{"_index":6967,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7812,11]]}}}],["rtc_extended_cfg_t",{"_index":6984,"t":{},"d":{},"k":{},"b":{"136":{"position":[[9852,18],[9984,18],[10039,18]]}}}],["rtc_info_t",{"_index":6916,"t":{},"d":{},"k":{},"b":{"136":{"position":[[838,10],[17123,10]]},"137":{"position":[[409,10],[2396,10],[2443,10],[4728,10],[8754,10]]}}}],["rtc_instance_ctrl_t",{"_index":6985,"t":{},"d":{},"k":{},"b":{"136":{"position":[[9881,19],[10288,19],[10344,19]]},"137":{"position":[[9832,19]]}}}],["rtc_instance_t",{"_index":7015,"t":{},"d":{},"k":{},"b":{"137":{"position":[[470,14],[9028,14],[9079,14]]}}}],["rtc_periodic_irq_exampl",{"_index":6973,"t":{},"d":{},"k":{},"b":{"136":{"position":[[8291,24]]}}}],["rtc_periodic_irq_select_1_div_by_128_second",{"_index":7074,"t":{},"d":{},"k":{},"b":{"137":{"position":[[12112,43]]}}}],["rtc_periodic_irq_select_1_div_by_16_second",{"_index":7077,"t":{},"d":{},"k":{},"b":{"137":{"position":[[12390,42]]}}}],["rtc_periodic_irq_select_1_div_by_2_second",{"_index":7080,"t":{},"d":{},"k":{},"b":{"137":{"position":[[12662,41]]}}}],["rtc_periodic_irq_select_1_div_by_32_second",{"_index":7076,"t":{},"d":{},"k":{},"b":{"137":{"position":[[12298,42]]}}}],["rtc_periodic_irq_select_1_div_by_4_second",{"_index":7079,"t":{},"d":{},"k":{},"b":{"137":{"position":[[12572,41]]}}}],["rtc_periodic_irq_select_1_div_by_64_second",{"_index":7075,"t":{},"d":{},"k":{},"b":{"137":{"position":[[12206,42]]}}}],["rtc_periodic_irq_select_1_div_by_8_second",{"_index":7078,"t":{},"d":{},"k":{},"b":{"137":{"position":[[12482,41]]}}}],["rtc_periodic_irq_select_1_second",{"_index":6975,"t":{},"d":{},"k":{},"b":{"136":{"position":[[8755,34],[15933,34]]},"137":{"position":[[12752,32]]}}}],["rtc_periodic_irq_select_2_second",{"_index":7081,"t":{},"d":{},"k":{},"b":{"137":{"position":[[12831,32]]}}}],["rtc_periodic_irq_select_t",{"_index":6911,"t":{},"d":{},"k":{},"b":{"136":{"position":[[630,25],[15533,25]]},"137":{"position":[[784,25],[4355,25],[7402,25],[11877,25],[11937,25]]}}}],["rtc_status_run",{"_index":7063,"t":{},"d":{},"k":{},"b":{"137":{"position":[[10693,18]]}}}],["rtc_status_t",{"_index":7019,"t":{},"d":{},"k":{},"b":{"137":{"position":[[654,12],[2618,12],[10545,12],[10592,12]]}}}],["rtc_time_t",{"_index":6903,"t":{},"d":{},"k":{},"b":{"136":{"position":[[263,10],[350,10],[7562,10],[7623,12],[12768,10],[13387,10]]},"137":{"position":[[516,10],[1767,10],[4000,10],[4084,10],[5711,10],[6174,10],[9485,10],[9543,10]]}}}],["rto",{"_index":1852,"t":{"118":{"position":[[45,4]]}},"d":{},"k":{},"b":{"71":{"position":[[10147,5]]},"116":{"position":[[1548,4],[1554,4]]},"118":{"position":[[22,4]]},"127":{"position":[[2182,5],[2213,5],[2280,5],[2312,5],[2378,5],[2688,5],[2780,5],[3117,4],[3404,4]]},"128":{"position":[[1258,4],[1309,4],[2995,4],[3196,4],[3257,4],[3336,4],[3448,4],[3567,4],[3913,4],[4942,4],[9021,4],[9314,4],[9495,4],[10045,4],[10187,4],[10249,4],[14244,4],[20531,4],[20667,4],[21791,4],[21911,4],[22238,4],[22351,4],[25343,4],[25484,4]]},"129":{"position":[[4810,4]]},"131":{"position":[[7219,4]]},"133":{"position":[[8849,4]]}}}],["rtose",{"_index":1802,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6438,6]]}}}],["rtosrto",{"_index":8373,"t":{},"d":{},"k":{},"b":{"152":{"position":[[4537,9]]}}}],["rtr",{"_index":2151,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1909,6]]},"75":{"position":[[1618,4]]}}}],["rts/ct",{"_index":7361,"t":{},"d":{},"k":{},"b":{"140":{"position":[[12862,7]]}}}],["rts_fifo_trigg",{"_index":7350,"t":{},"d":{},"k":{},"b":{"140":{"position":[[11596,16]]}}}],["rtxin",{"_index":6941,"t":{},"d":{},"k":{},"b":{"136":{"position":[[3854,5],[4900,5]]}}}],["rule",{"_index":2257,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1456,5],[1495,4],[2167,5],[9941,4],[10023,5],[10100,4],[10182,5],[10259,4],[10340,5],[10417,4],[10498,5],[10575,4],[10656,5],[10733,4],[10814,5],[11293,5],[11426,4],[14902,4],[18289,4],[18472,4],[18580,5],[23183,5],[24674,5],[25357,6],[31869,5]]}}}],["run",{"_index":1788,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6156,3],[8890,3],[11677,3],[44359,7],[44826,7],[45180,3]]},"76":{"position":[[5567,3],[7927,7],[7977,7]]},"77":{"position":[[7485,7]]},"79":{"position":[[5815,3]]},"83":{"position":[[3730,4],[3795,4],[4067,4],[4132,4],[6396,7],[16554,8],[19239,7],[21134,7],[21183,7],[49582,7],[50170,8],[50515,7],[53898,8]]},"84":{"position":[[1675,7],[2138,4],[2203,4],[4268,7],[4357,7],[5211,7],[6671,7],[6720,7],[6749,7],[9837,7],[10927,7]]},"88":{"position":[[15640,3],[19204,3],[48845,3]]},"105":{"position":[[3807,4],[3872,4],[12892,7],[12942,7],[30597,8],[35271,8]]},"106":{"position":[[12518,4]]},"128":{"position":[[308,4],[2479,7],[5814,3],[6356,4],[6671,7],[10072,3],[10275,3],[13427,4],[16894,7],[20678,7],[21565,3],[21613,3]]},"131":{"position":[[797,4],[1194,8],[8996,8],[17703,4],[18524,8]]},"133":{"position":[[29869,7],[48372,7]]},"136":{"position":[[2866,7],[3105,4],[6914,7],[9724,7],[14394,7],[17258,7]]},"137":{"position":[[2644,3],[10626,3],[10727,8]]},"138":{"position":[[7127,4]]},"139":{"position":[[1510,3]]},"140":{"position":[[1531,3]]},"144":{"position":[[190,7],[2087,8],[11922,8]]},"148":{"position":[[3684,3],[3733,7],[4637,7]]},"150":{"position":[[6161,3]]}}}],["running/busi",{"_index":5556,"t":{},"d":{},"k":{},"b":{"113":{"position":[[2442,13]]}}}],["runtim",{"_index":1077,"t":{},"d":{},"k":{},"b":{"69":{"position":[[16195,7]]},"71":{"position":[[1233,7],[1453,7],[1979,7],[4158,8],[5678,7],[5758,7],[5804,7],[6006,7],[6170,7],[11504,7],[11572,7],[29432,7],[30201,7],[32007,7],[32776,7],[36507,7],[36613,7],[36692,7],[36797,7],[36903,7],[36982,7],[37258,7],[37364,7],[37443,7],[37548,7],[37654,7],[37733,7],[39708,7],[40809,7]]},"76":{"position":[[1535,7],[10274,8]]},"80":{"position":[[2832,7]]},"83":{"position":[[2319,7],[2363,7],[23740,8],[25281,8]]},"84":{"position":[[1332,7],[7544,8]]},"88":{"position":[[45194,7]]},"93":{"position":[[3108,8],[3147,7]]},"105":{"position":[[2215,7],[2259,7],[13816,8],[15601,8]]},"111":{"position":[[295,7]]},"135":{"position":[[11093,8]]},"142":{"position":[[12118,8]]},"146":{"position":[[7269,7]]},"147":{"position":[[300,7]]},"152":{"position":[[374,7]]}}}],["rx",{"_index":2132,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1034,2],[1096,2]]},"75":{"position":[[1328,3],[1360,3],[1711,2],[2216,2],[2243,2],[2258,2],[3756,2],[3805,2],[3910,2],[4014,2],[4117,2],[4348,2],[4546,2],[4645,2],[4741,2],[4844,2],[5075,2],[5273,2],[5372,2],[5468,2],[5571,2],[5802,2],[6000,2],[6099,2],[6195,2],[6298,2],[6529,2],[6727,2],[6826,2],[6922,2],[7025,2],[7256,2],[7454,2],[7553,2],[7649,2],[7752,2],[7983,2],[8181,2],[8280,2],[8376,2],[8479,2],[8710,2],[8908,2],[9007,2],[9103,2],[9206,2],[9437,2],[9635,2],[9734,2],[16188,3],[16215,3],[16678,2],[16697,2],[16780,2],[16868,2],[16950,2],[16959,2],[17630,2],[17731,2],[17862,2],[17926,2],[17956,2],[17974,3],[19421,3],[19455,2],[21554,2],[24378,2],[24541,2],[24613,2],[24821,2],[24853,2],[25513,2],[25527,2],[26121,2],[26135,2],[26805,2],[26859,2],[31429,2],[31525,2],[31655,2],[34221,2],[34283,2],[34768,3],[34885,3]]},"88":{"position":[[13602,3],[47874,3]]},"135":{"position":[[1402,2],[6044,2],[6643,2],[16070,2],[16131,2],[16192,2],[16253,2],[16316,2],[16379,2],[16442,2],[16503,2]]},"138":{"position":[[4893,2],[4936,2]]},"139":{"position":[[1469,2]]},"140":{"position":[[1490,2]]},"142":{"position":[[1544,2],[2377,2],[6784,2],[7493,2],[7817,2]]},"147":{"position":[[11159,2],[11189,3]]}}}],["rx/tx",{"_index":7145,"t":{},"d":{},"k":{},"b":{"139":{"position":[[1437,6]]},"140":{"position":[[1458,6]]}}}],["rx_buffer",{"_index":2395,"t":{},"d":{},"k":{},"b":{"75":{"position":[[19598,10],[25931,10],[26583,10]]},"135":{"position":[[8806,10],[10037,10],[10693,10]]},"142":{"position":[[9800,10],[11046,10],[11711,10]]}}}],["rx_buffer[transfer_s",{"_index":6809,"t":{},"d":{},"k":{},"b":{"135":{"position":[[8480,25],[9373,25]]},"142":{"position":[[9466,25],[10374,25]]}}}],["rx_count",{"_index":6851,"t":{},"d":{},"k":{},"b":{"135":{"position":[[13718,8]]},"142":{"position":[[15118,8]]}}}],["rx_edge_start",{"_index":7237,"t":{},"d":{},"k":{},"b":{"139":{"position":[[14389,13]]}}}],["rx_fifo_config[8",{"_index":2509,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31410,17]]}}}],["rx_fifo_ipl",{"_index":2514,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31642,11]]}}}],["rx_fifo_statu",{"_index":2133,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1080,14]]}}}],["rx_fifo_trigg",{"_index":7239,"t":{},"d":{},"k":{},"b":{"139":{"position":[[14631,15]]},"140":{"position":[[11524,15]]}}}],["rx_ipl",{"_index":4728,"t":{},"d":{},"k":{},"b":{"94":{"position":[[1327,6]]},"101":{"position":[[1362,6]]}}}],["rx_irq",{"_index":2161,"t":{},"d":{},"k":{},"b":{"74":{"position":[[3019,6]]},"88":{"position":[[47294,6]]},"94":{"position":[[1377,6]]},"101":{"position":[[1412,6]]}}}],["rx_mb_config",{"_index":2511,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31492,12]]}}}],["rx_mb_statu",{"_index":2131,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1020,12]]}}}],["rx_trigger_level",{"_index":6843,"t":{},"d":{},"k":{},"b":{"135":{"position":[[12926,16]]}}}],["rxd",{"_index":7178,"t":{},"d":{},"k":{},"b":{"139":{"position":[[7525,3],[7862,3]]},"140":{"position":[[6434,3]]}}}],["rxdn",{"_index":7173,"t":{},"d":{},"k":{},"b":{"139":{"position":[[5994,4],[16504,4],[16587,4]]},"140":{"position":[[4794,4]]}}}],["rxfifo_trigger_byt",{"_index":6852,"t":{},"d":{},"k":{},"b":{"135":{"position":[[13874,20]]}}}],["rxi",{"_index":3711,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1609,4]]},"86":{"position":[[1650,4]]},"124":{"position":[[4441,4],[5667,6]]},"125":{"position":[[2131,4],[4473,6],[4743,4]]},"135":{"position":[[6264,3]]},"138":{"position":[[4875,3],[5645,6]]},"142":{"position":[[2282,3],[7144,3],[7593,3],[7674,3]]}}}],["rxi_ipl",{"_index":7411,"t":{},"d":{},"k":{},"b":{"141":{"position":[[1463,7]]},"147":{"position":[[2154,7]]}}}],["rxi_irq",{"_index":3715,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1646,7]]},"86":{"position":[[1442,7]]},"124":{"position":[[7678,8],[10412,8]]},"125":{"position":[[8702,8],[9145,8]]},"141":{"position":[[1259,7]]},"147":{"position":[[2205,7]]}}}],["rz",{"_index":644,"t":{},"d":{},"k":{},"b":{"68":{"position":[[1245,2]]},"69":{"position":[[1170,2],[1351,2],[10794,2]]},"71":{"position":[[2262,2],[3239,2]]},"75":{"position":[[823,2],[16653,2],[17759,2],[20879,2],[21010,2],[22011,2],[23331,2]]},"76":{"position":[[1203,2]]},"77":{"position":[[538,2]]},"79":{"position":[[994,2]]},"80":{"position":[[592,2],[5258,2]]},"83":{"position":[[1609,2],[3337,2]]},"84":{"position":[[1030,2],[1721,2]]},"88":{"position":[[1491,2]]},"89":{"position":[[655,2]]},"90":{"position":[[655,2]]},"91":{"position":[[672,2]]},"92":{"position":[[1484,2],[12919,2]]},"95":{"position":[[505,2],[1013,2],[1142,2]]},"96":{"position":[[545,2],[898,2]]},"97":{"position":[[349,2]]},"98":{"position":[[500,2],[954,2],[1083,2]]},"99":{"position":[[495,2],[990,2],[1119,2]]},"100":{"position":[[537,2],[877,2]]},"102":{"position":[[343,2]]},"104":{"position":[[490,2],[931,2],[1060,2]]},"105":{"position":[[1429,2],[3355,2]]},"106":{"position":[[742,2],[12620,2]]},"108":{"position":[[585,2]]},"110":{"position":[[122,2],[256,2],[389,2]]},"112":{"position":[[142,2],[245,2],[393,2],[607,2],[812,2],[981,2],[1165,2],[1377,2],[1580,2],[1747,2],[1895,2],[2020,2],[2142,2],[2283,2],[2399,2],[2515,2],[2664,2],[2768,2]]},"114":{"position":[[114,2],[243,2],[385,2]]},"117":{"position":[[100,2],[206,2]]},"118":{"position":[[100,2]]},"120":{"position":[[149,2]]},"121":{"position":[[114,2],[240,2]]},"122":{"position":[[116,2],[233,2],[347,2],[483,2],[621,2],[734,2]]},"123":{"position":[[130,2]]},"124":{"position":[[1037,2]]},"125":{"position":[[667,2]]},"128":{"position":[[19,2],[435,2],[13354,2]]},"135":{"position":[[879,2]]},"136":{"position":[[1099,2],[6594,2]]},"138":{"position":[[1022,2],[5997,2],[6374,2]]},"139":{"position":[[1175,2]]},"140":{"position":[[1196,2]]},"142":{"position":[[915,2],[6305,2]]},"146":{"position":[[1280,2]]},"148":{"position":[[720,2],[3627,2]]},"150":{"position":[[1319,2]]},"152":{"position":[[708,2],[837,2],[965,2],[1147,2],[1245,2],[1388,2],[1597,2],[1797,2],[1961,2],[2140,2],[2347,2],[2545,2],[2707,2],[2850,2],[2970,2],[3087,2],[3223,2],[3334,2],[3445,2],[3589,2],[3688,2],[3986,2],[4110,2],[4247,2],[4384,2],[4485,2],[4607,2],[5222,2],[5376,2],[5497,2],[5642,2],[5754,2],[5863,2],[5994,2],[6127,2],[6235,2],[6391,2]]}}}],["rz/t2m",{"_index":3058,"t":{},"d":{},"k":{},"b":{"79":{"position":[[13568,6],[13985,6],[14596,6],[15172,6]]}}}],["rz/v",{"_index":168,"t":{},"d":{},"k":{},"b":{"2":{"position":[[88,4]]}}}],["rz/v2h",{"_index":1718,"t":{},"d":{},"k":{},"b":{"71":{"position":[[1645,8],[11736,8]]},"75":{"position":[[2066,6],[2486,6],[15043,6],[15721,6],[15784,6],[15845,6]]},"79":{"position":[[7090,6]]},"83":{"position":[[3310,7]]},"95":{"position":[[717,7]]},"96":{"position":[[745,7]]},"97":{"position":[[549,7]]},"98":{"position":[[659,7]]},"124":{"position":[[4925,6]]},"125":{"position":[[3733,6]]}}}],["rz/v2hcm33",{"_index":8013,"t":{},"d":{},"k":{},"b":{"148":{"position":[[4955,10]]}}}],["rz/v2l",{"_index":671,"t":{},"d":{},"k":{},"b":{"68":{"position":[[2457,6],[4964,6],[9246,6]]},"75":{"position":[[2059,6],[2479,6],[15036,6],[15691,6],[15755,6],[15817,6]]},"92":{"position":[[14527,6]]},"99":{"position":[[696,7]]},"100":{"position":[[726,7]]},"102":{"position":[[532,7]]},"104":{"position":[[638,7]]},"105":{"position":[[1832,6],[1889,7]]},"124":{"position":[[4907,6]]},"125":{"position":[[3715,6]]}}}],["rzv",{"_index":0,"t":{"0":{"position":[[0,3]]},"1":{"position":[[0,3]]},"2":{"position":[[0,3]]},"3":{"position":[[0,3]]},"4":{"position":[[0,3]]},"5":{"position":[[0,3]]},"6":{"position":[[0,3]]},"7":{"position":[[0,3]]},"8":{"position":[[0,3]]},"9":{"position":[[0,3]]},"10":{"position":[[0,3]]},"11":{"position":[[0,3]]},"12":{"position":[[0,3]]},"13":{"position":[[0,3]]},"14":{"position":[[0,3]]},"15":{"position":[[0,3]]},"16":{"position":[[0,3]]},"17":{"position":[[0,3]]},"18":{"position":[[0,3]]},"19":{"position":[[0,3]]},"20":{"position":[[0,3]]},"21":{"position":[[0,3]]},"22":{"position":[[0,3]]},"23":{"position":[[0,3]]},"24":{"position":[[0,3]]},"25":{"position":[[0,3]]},"26":{"position":[[0,3]]},"27":{"position":[[0,3]]},"28":{"position":[[0,3]]},"29":{"position":[[0,3]]},"30":{"position":[[0,3]]},"31":{"position":[[0,3]]},"32":{"position":[[0,3]]},"33":{"position":[[0,3]]},"34":{"position":[[0,3]]},"35":{"position":[[0,3]]},"36":{"position":[[0,3]]},"37":{"position":[[0,3]]},"38":{"position":[[0,3],[45,3]]},"39":{"position":[[0,3]]},"40":{"position":[[0,3]]},"41":{"position":[[0,3]]},"42":{"position":[[0,3]]},"43":{"position":[[0,3]]},"44":{"position":[[0,3]]},"45":{"position":[[0,3]]},"46":{"position":[[0,3]]},"47":{"position":[[0,3]]},"48":{"position":[[0,3]]},"49":{"position":[[0,3]]},"50":{"position":[[0,3]]},"51":{"position":[[0,3]]},"52":{"position":[[0,3]]},"53":{"position":[[0,3]]},"54":{"position":[[0,3]]},"55":{"position":[[0,3]]},"56":{"position":[[0,3]]},"57":{"position":[[0,3]]},"58":{"position":[[0,3]]},"59":{"position":[[0,3]]},"60":{"position":[[0,3]]},"61":{"position":[[0,3]]},"62":{"position":[[0,3]]},"63":{"position":[[0,3]]},"64":{"position":[[0,3]]},"65":{"position":[[0,3]]},"66":{"position":[[0,3]]},"67":{"position":[[0,3]]},"68":{"position":[[0,3]]},"69":{"position":[[0,3]]},"70":{"position":[[0,3]]},"71":{"position":[[0,3]]},"72":{"position":[[0,3]]},"73":{"position":[[0,3]]},"74":{"position":[[0,3]]},"75":{"position":[[0,3]]},"76":{"position":[[0,3]]},"77":{"position":[[0,3]]},"78":{"position":[[0,3]]},"79":{"position":[[0,3]]},"80":{"position":[[0,3]]},"81":{"position":[[0,3]]},"82":{"position":[[0,3]]},"83":{"position":[[0,3]]},"84":{"position":[[0,3]]},"85":{"position":[[0,3]]},"86":{"position":[[0,3]]},"87":{"position":[[0,3]]},"88":{"position":[[0,3]]},"89":{"position":[[0,3]]},"90":{"position":[[0,3]]},"91":{"position":[[0,3]]},"92":{"position":[[0,3]]},"93":{"position":[[0,3]]},"94":{"position":[[0,3]]},"95":{"position":[[0,3]]},"96":{"position":[[0,3]]},"97":{"position":[[0,3]]},"98":{"position":[[0,3]]},"99":{"position":[[0,3]]},"100":{"position":[[0,3]]},"101":{"position":[[0,3]]},"102":{"position":[[0,3]]},"103":{"position":[[0,3]]},"104":{"position":[[0,3]]},"105":{"position":[[0,3]]},"106":{"position":[[0,3]]},"107":{"position":[[0,3]]},"108":{"position":[[0,3]]},"109":{"position":[[0,3]]},"110":{"position":[[0,3]]},"111":{"position":[[0,3]]},"112":{"position":[[0,3]]},"113":{"position":[[0,3]]},"114":{"position":[[0,3]]},"115":{"position":[[0,3]]},"116":{"position":[[0,3]]},"117":{"position":[[0,3]]},"118":{"position":[[0,3]]},"119":{"position":[[0,3]]},"120":{"position":[[0,3]]},"121":{"position":[[0,3]]},"122":{"position":[[0,3]]},"123":{"position":[[0,3]]},"124":{"position":[[0,3]]},"125":{"position":[[0,3]]},"126":{"position":[[0,3]]},"127":{"position":[[0,3]]},"128":{"position":[[0,3]]},"129":{"position":[[0,3]]},"130":{"position":[[0,3]]},"131":{"position":[[0,3]]},"132":{"position":[[0,3]]},"133":{"position":[[0,3]]},"134":{"position":[[0,3]]},"135":{"position":[[0,3]]},"136":{"position":[[0,3]]},"137":{"position":[[0,3]]},"138":{"position":[[0,3]]},"139":{"position":[[0,3]]},"140":{"position":[[0,3]]},"141":{"position":[[0,3]]},"142":{"position":[[0,3]]},"143":{"position":[[0,3]]},"144":{"position":[[0,3]]},"145":{"position":[[0,3]]},"146":{"position":[[0,3]]},"147":{"position":[[0,3]]},"148":{"position":[[0,3]]},"149":{"position":[[0,3]]},"150":{"position":[[0,3]]},"151":{"position":[[0,3]]},"152":{"position":[[0,3]]},"153":{"position":[[0,3]]},"287":{"position":[[0,3]]},"288":{"position":[[0,3]]},"289":{"position":[[0,3]]},"290":{"position":[[0,3]]},"291":{"position":[[0,3]]},"292":{"position":[[0,3]]}},"d":{},"k":{},"b":{"69":{"position":[[3431,3],[3580,3],[3857,3]]},"105":{"position":[[5972,3]]},"106":{"position":[[1746,3],[2551,3]]},"139":{"position":[[4528,3]]},"140":{"position":[[4933,3]]},"150":{"position":[[3199,3],[5387,3]]}}}],["rzv/fsp/lib/rm_zmod4xxx",{"_index":6633,"t":{},"d":{},"k":{},"b":{"133":{"position":[[8795,23]]}}}],["rzv2h",{"_index":214,"t":{"53":{"position":[[45,5]]},"72":{"position":[[45,5]]}},"d":{},"k":{},"b":{"71":{"position":[[11998,5]]},"83":{"position":[[3816,5]]},"152":{"position":[[415,5]]}}}],["rzv2h_fsp",{"_index":2109,"t":{},"d":{},"k":{},"b":{"72":{"position":[[52,9]]}}}],["rzv2hp1clk",{"_index":7322,"t":{},"d":{},"k":{},"b":{"140":{"position":[[6167,10]]}}}],["rzv2hp5clk",{"_index":7176,"t":{},"d":{},"k":{},"b":{"139":{"position":[[7269,10]]}}}],["rzv2l",{"_index":186,"t":{"22":{"position":[[45,5]]},"73":{"position":[[45,5]]}},"d":{},"k":{},"b":{"71":{"position":[[12007,5]]},"83":{"position":[[3483,5]]},"152":{"position":[[422,5]]}}}],["rzv2l_fsp",{"_index":2111,"t":{},"d":{},"k":{},"b":{"73":{"position":[[52,9]]}}}],["rzv2lp0clk",{"_index":6797,"t":{},"d":{},"k":{},"b":{"135":{"position":[[5620,10]]},"140":{"position":[[6179,10]]}}}],["s(0",{"_index":5204,"t":{},"d":{},"k":{},"b":{"106":{"position":[[8544,4]]}}}],["s(0)valu",{"_index":5202,"t":{},"d":{},"k":{},"b":{"106":{"position":[[8442,9]]}}}],["s/w",{"_index":5601,"t":{},"d":{},"k":{},"b":{"113":{"position":[[4352,3]]}}}],["s0",{"_index":5265,"t":{},"d":{},"k":{},"b":{"106":{"position":[[15978,2]]}}}],["safe",{"_index":5980,"t":{},"d":{},"k":{},"b":{"124":{"position":[[17213,6],[18784,6]]},"128":{"position":[[13076,4],[13127,4],[13687,4]]},"138":{"position":[[13820,6],[16656,6]]}}}],["safeti",{"_index":2034,"t":{},"d":{},"k":{},"b":{"71":{"position":[[40161,6]]}}}],["sale",{"_index":26,"t":{},"d":{},"k":{},"b":{"0":{"position":[[376,5]]}}}],["same",{"_index":1760,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3856,4],[3934,4],[4457,4]]},"75":{"position":[[1180,4],[21269,5]]},"77":{"position":[[2984,4]]},"83":{"position":[[1929,4],[38136,4],[40250,4],[40359,4]]},"85":{"position":[[1600,4]]},"88":{"position":[[17559,4],[38459,4]]},"89":{"position":[[3124,4],[6065,4]]},"90":{"position":[[2842,4],[5615,4]]},"91":{"position":[[3203,4],[7236,4]]},"105":{"position":[[1755,4]]},"108":{"position":[[911,4]]},"124":{"position":[[6733,4],[6845,4],[9761,4],[9904,4],[11494,4]]},"128":{"position":[[367,4],[2787,4],[3429,4],[3510,4],[3850,4],[5897,4],[7018,4],[15327,4]]},"138":{"position":[[7531,4],[9655,4],[9803,4],[10705,4]]},"139":{"position":[[7795,4]]},"140":{"position":[[6689,4]]},"145":{"position":[[5669,5]]},"150":{"position":[[19570,4]]}}}],["sampl",{"_index":686,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3675,8],[3712,8],[8893,6],[8974,6],[9086,6],[9202,6],[9256,6],[17400,8],[28766,6],[28914,6]]},"69":{"position":[[1893,7],[7307,7],[7322,7],[7337,7],[7353,7],[7372,7],[7391,7],[10821,8],[19147,8],[22272,6],[22402,8],[22439,8],[22474,8],[22515,8],[22560,8],[22607,8]]},"75":{"position":[[3354,7],[12300,6],[12377,6],[22231,6]]},"82":{"position":[[6694,6]]},"83":{"position":[[10479,8],[10650,8],[38014,7],[38117,7],[38403,9],[38564,9]]},"105":{"position":[[25692,9],[25788,9],[26051,9],[26213,9]]},"106":{"position":[[2480,6],[2520,8],[2617,8]]},"107":{"position":[[5373,8]]},"109":{"position":[[8191,8],[8366,6],[8449,6],[8535,6],[8623,6]]},"125":{"position":[[2856,8]]},"128":{"position":[[19353,6],[19582,6],[25884,6]]},"133":{"position":[[7515,8]]},"135":{"position":[[1106,7],[1170,7],[2515,6]]},"141":{"position":[[1762,8],[10014,8],[10126,8]]},"142":{"position":[[1190,7],[1254,7],[3655,8],[3711,8],[3767,8],[3842,6]]},"146":{"position":[[16013,6],[16131,8],[16174,8],[16219,8]]}}}],["sample_hold_mask",{"_index":1057,"t":{},"d":{},"k":{},"b":{"69":{"position":[[13615,17]]}}}],["sample_hold_st",{"_index":1058,"t":{},"d":{},"k":{},"b":{"69":{"position":[[13643,19]]}}}],["sampling_tim",{"_index":802,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11299,14],[14166,14],[17385,13]]}}}],["satisfi",{"_index":2097,"t":{},"d":{},"k":{},"b":{"71":{"position":[[45970,9]]},"124":{"position":[[3354,7]]}}}],["save",{"_index":1043,"t":{},"d":{},"k":{},"b":{"69":{"position":[[12308,5],[12376,5],[12809,5]]},"71":{"position":[[9007,5],[30378,5],[30591,5],[32953,5],[33166,5]]},"92":{"position":[[10973,5]]},"128":{"position":[[12639,4],[12841,4],[18061,4]]}}}],["saw",{"_index":7748,"t":{},"d":{},"k":{},"b":{"144":{"position":[[12199,3],[12248,3]]}}}],["sawtooth",{"_index":3351,"t":{},"d":{},"k":{},"b":{"83":{"position":[[14428,10]]}}}],["scalabl",{"_index":8312,"t":{},"d":{},"k":{},"b":{"151":{"position":[[116,11],[2337,9],[2793,11]]}}}],["scan",{"_index":234,"t":{},"d":{},"k":{},"b":{"67":{"position":[[148,6],[166,4],[181,5],[263,6],[3046,4],[3097,4],[3156,4],[3211,4],[3268,4],[3333,4],[5663,4],[5704,4],[6201,4],[6587,4],[7005,4],[7402,4],[10586,4],[12346,4],[12428,4],[12522,4],[13644,4],[13701,4],[13758,4],[13965,4],[16602,4]]},"68":{"position":[[1476,4],[1505,4],[1528,4],[1807,4],[1943,4],[2295,4],[3239,4],[3263,4],[3518,4],[5117,5],[5186,5],[5320,4],[5340,4],[5386,7],[5419,4],[5439,4],[5492,5],[5498,5],[5702,4],[5732,4],[5794,4],[7243,4],[8317,4],[8620,4],[8807,4],[10195,4],[13528,4],[16299,4],[18108,4],[22059,4],[24122,4],[25347,5],[25618,4],[29431,4]]},"69":{"position":[[1369,5],[1427,4],[1456,4],[1479,4],[1579,4],[1634,4],[1652,4],[1698,4],[1714,4],[1748,7],[1775,4],[1924,4],[2929,4],[2946,4],[2958,4],[2971,4],[3125,4],[3187,5],[3230,4],[3295,4],[6386,4],[6679,4],[6866,4],[7545,4],[7706,5],[7786,5],[7825,5],[7918,5],[8011,5],[8128,4],[8259,4],[8302,4],[8514,4],[8545,4],[8608,4],[8643,4],[8722,4],[8766,4],[8837,4],[8880,4],[8975,4],[9019,4],[9090,4],[9133,4],[9228,4],[9481,4],[9734,4],[10322,5],[10339,5],[10355,4],[10461,5],[10537,5],[10550,4],[10570,4],[10616,7],[10653,4],[10677,4],[10730,5],[10736,5],[10924,4],[11018,4],[11153,4],[11266,4],[11358,4],[11374,4],[11659,4],[11704,4],[11725,4],[11764,4],[11799,4],[11844,4],[11865,4],[11897,4],[11936,4],[11982,4],[12027,4],[12048,4],[12087,4],[12202,7],[12257,4],[12523,8],[12728,5],[12800,4],[12891,5],[14059,4],[14711,5],[14766,5],[15468,4],[15590,5],[15795,6],[16544,4],[18059,4],[18207,4],[18272,4],[21590,4],[22975,5],[23325,5],[23441,6],[23517,5],[23655,5],[23789,5],[28947,4],[29030,4],[29119,4],[29202,4],[29775,4],[30549,4],[31825,4],[31868,4],[32257,5],[32333,5],[32606,4],[33318,4],[33525,4],[33574,5],[33602,4],[33653,4],[33676,5],[34250,4],[34291,5],[36028,4]]},"75":{"position":[[16414,5],[34224,4],[34286,4]]},"105":{"position":[[2796,4]]},"113":{"position":[[10045,9],[10106,4],[12642,4]]},"146":{"position":[[1622,4],[6550,4],[9717,4],[13586,4],[17901,4],[17944,4],[18335,5],[18608,4],[19470,4],[19519,5],[19547,4],[20229,4],[20270,5],[21818,4]]}}}],["scan_complete_flag",{"_index":1069,"t":{},"d":{},"k":{},"b":{"69":{"position":[[14937,18],[15054,18],[15646,18],[15683,21]]},"146":{"position":[[5340,18],[5457,18],[6793,21],[11332,18],[11449,18],[13766,21],[13861,18]]}}}],["scan_end_b_ipl",{"_index":355,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3252,14]]}}}],["scan_end_b_irq",{"_index":349,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3081,14]]}}}],["scan_end_c_ipl",{"_index":356,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3317,14]]}}}],["scan_end_c_irq",{"_index":351,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3140,14]]}}}],["scan_end_ipl",{"_index":353,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3197,12]]},"68":{"position":[[11713,13],[14580,13]]},"146":{"position":[[5291,13],[8177,13],[11283,13]]}}}],["scan_end_irq",{"_index":346,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3032,12]]},"68":{"position":[[11660,13],[14527,13]]},"146":{"position":[[5237,13],[8124,13],[11229,13]]}}}],["scan_mask",{"_index":769,"t":{},"d":{},"k":{},"b":{"68":{"position":[[9658,10],[11799,10],[14666,10],[17670,9]]},"69":{"position":[[13443,10],[20927,9]]}}}],["scan_mask_group_b",{"_index":1053,"t":{},"d":{},"k":{},"b":{"69":{"position":[[13513,18],[20995,17]]}}}],["scan_mask_group_c",{"_index":1136,"t":{},"d":{},"k":{},"b":{"69":{"position":[[21049,17]]}}}],["scancfg",{"_index":372,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3904,7],[5507,7]]}}}],["scangroupstart",{"_index":374,"t":{},"d":{},"k":{},"b":{"67":{"position":[[4034,14],[6426,14]]}}}],["scanstart",{"_index":373,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3982,9],[6073,9]]},"68":{"position":[[26026,9]]},"69":{"position":[[33021,9]]}}}],["scanstatusget",{"_index":376,"t":{},"d":{},"k":{},"b":{"67":{"position":[[4165,13],[7246,13]]}}}],["scanstop",{"_index":375,"t":{},"d":{},"k":{},"b":{"67":{"position":[[4114,8],[6876,8]]}}}],["sce",{"_index":5820,"t":{},"d":{},"k":{},"b":{"113":{"position":[[14010,3]]}}}],["schedul",{"_index":3037,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10859,11],[15980,11]]},"128":{"position":[[1263,10],[1314,10],[3453,9],[5754,9],[6468,11],[10000,10],[10050,9],[10254,9]]}}}],["scheme",{"_index":6280,"t":{},"d":{},"k":{},"b":{"128":{"position":[[19378,7],[19408,7],[19589,7],[25909,7]]}}}],["schmitt",{"_index":4602,"t":{},"d":{},"k":{},"b":{"92":{"position":[[21348,7],[21417,7],[23745,7],[23814,7]]}}}],["sci",{"_index":2802,"t":{},"d":{},"k":{},"b":{"77":{"position":[[758,5],[4494,3],[4613,3],[4655,3],[8196,3],[8277,3]]},"78":{"position":[[343,3]]},"112":{"position":[[2497,3]]},"138":{"position":[[3164,3],[12497,3],[12747,3]]},"139":{"position":[[1157,3],[1252,3],[2895,3],[4338,3],[4424,3],[5212,3],[5473,3],[6038,3],[8776,3],[9574,3],[11701,3],[14198,3],[15154,3]]},"152":{"position":[[3427,3]]}}}],["sci_b",{"_index":2835,"t":{},"d":{},"k":{},"b":{"77":{"position":[[2891,5]]},"112":{"position":[[2379,5]]},"138":{"position":[[1002,5],[1116,5],[5328,5],[5958,5],[6751,5],[6843,5],[7450,5],[9713,5]]},"152":{"position":[[3314,5]]}}}],["sci_b_baud_setting_t",{"_index":7139,"t":{},"d":{},"k":{},"b":{"139":{"position":[[793,20],[3426,20],[4194,20],[11876,20],[12452,20],[13072,20],[13129,20],[14516,20],[21798,20],[24844,20]]}}}],["sci_b_clk_src_t",{"_index":7225,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12610,15],[14238,15],[15055,15],[15105,15]]}}}],["sci_b_i2c",{"_index":7098,"t":{},"d":{},"k":{},"b":{"138":{"position":[[7589,9]]}}}],["sci_b_i2c_clock_settings_t",{"_index":7109,"t":{},"d":{},"k":{},"b":{"138":{"position":[[11482,26],[11664,26],[11727,26],[12543,26]]}}}],["sci_b_i2c_clock_source_t",{"_index":7111,"t":{},"d":{},"k":{},"b":{"138":{"position":[[11603,24],[12159,24],[12646,24],[12705,24]]}}}],["sci_b_i2c_extended_cfg_t",{"_index":7086,"t":{},"d":{},"k":{},"b":{"138":{"position":[[3646,24],[11555,24],[12394,24],[12455,24]]}}}],["sci_b_i2c_instance_ctrl_t",{"_index":7110,"t":{},"d":{},"k":{},"b":{"138":{"position":[[11519,25],[12240,25],[12302,25]]}}}],["sci_b_uart_baudrate_19200",{"_index":7210,"t":{},"d":{},"k":{},"b":{"139":{"position":[[11735,25],[11963,26]]}}}],["sci_b_uart_baudrate_error_percent_5",{"_index":7212,"t":{},"d":{},"k":{},"b":{"139":{"position":[[11789,35],[12101,36]]}}}],["sci_b_uart_clock_ext16x",{"_index":7248,"t":{},"d":{},"k":{},"b":{"139":{"position":[[15406,23]]}}}],["sci_b_uart_clock_ext8x",{"_index":7247,"t":{},"d":{},"k":{},"b":{"139":{"position":[[15348,22]]}}}],["sci_b_uart_clock_int_with_baudrate_output",{"_index":7246,"t":{},"d":{},"k":{},"b":{"139":{"position":[[15246,41]]}}}],["sci_b_uart_extended_cfg_t",{"_index":7224,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12561,25],[14085,25],[14147,25]]}}}],["sci_b_uart_flow_control_ct",{"_index":7250,"t":{},"d":{},"k":{},"b":{"139":{"position":[[15679,27]]}}}],["sci_b_uart_flow_control_ctsrt",{"_index":7252,"t":{},"d":{},"k":{},"b":{"139":{"position":[[15823,30]]}}}],["sci_b_uart_flow_control_hardware_ctsrt",{"_index":7251,"t":{},"d":{},"k":{},"b":{"139":{"position":[[15736,39]]}}}],["sci_b_uart_flow_control_t",{"_index":7226,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12635,25],[14798,25],[15473,25],[15533,25]]}}}],["sci_b_uart_half_data_en",{"_index":7264,"t":{},"d":{},"k":{},"b":{"139":{"position":[[17730,27]]}}}],["sci_b_uart_half_data_enable_t",{"_index":7232,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12863,29],[14007,29],[17512,29],[17576,29]]}}}],["sci_b_uart_half_data_setting_t",{"_index":7223,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12520,30],[13815,30],[13882,30],[14936,30]]}}}],["sci_b_uart_instance_ctrl_t",{"_index":7221,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12415,26],[12929,26],[12992,26]]},"147":{"position":[[9776,26]]}}}],["sci_b_uart_noise_cancellation_en",{"_index":7258,"t":{},"d":{},"k":{},"b":{"139":{"position":[[16848,36]]}}}],["sci_b_uart_noise_cancellation_t",{"_index":7229,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12747,31],[14439,31],[16619,31],[16685,31]]}}}],["sci_b_uart_rs485_de_polarity_low",{"_index":7262,"t":{},"d":{},"k":{},"b":{"139":{"position":[[17411,32]]}}}],["sci_b_uart_rs485_de_polarity_t",{"_index":7231,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12823,30],[13490,30],[17152,30],[17217,30]]}}}],["sci_b_uart_rs485_en",{"_index":7260,"t":{},"d":{},"k":{},"b":{"139":{"position":[[17103,23]]}}}],["sci_b_uart_rs485_enable_t",{"_index":7230,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12788,25],[13431,25],[16921,25],[16981,25]]}}}],["sci_b_uart_rs485_setting_t",{"_index":7222,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12483,26],[13244,26],[13307,26],[14874,26]]}}}],["sci_b_uart_rx_fifo_trigger_max",{"_index":7254,"t":{},"d":{},"k":{},"b":{"139":{"position":[[16156,30]]}}}],["sci_b_uart_rx_fifo_trigger_t",{"_index":7227,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12670,28],[14601,28],[15912,28],[15975,28]]}}}],["sci_b_uart_start_bit_detect_t",{"_index":7228,"t":{},"d":{},"k":{},"b":{"139":{"position":[[12708,29],[14358,29],[16277,29],[16341,29]]}}}],["sci_b_uart_start_bit_falling_edg",{"_index":7256,"t":{},"d":{},"k":{},"b":{"139":{"position":[[16529,33]]}}}],["sci_uart",{"_index":7150,"t":{},"d":{},"k":{},"b":{"139":{"position":[[2173,8],[2259,8]]}}}],["sci_uart_rs485_de_polarity_low",{"_index":7367,"t":{},"d":{},"k":{},"b":{"140":{"position":[[13667,30]]}}}],["sci_uart_rs485_de_polarity_t",{"_index":7341,"t":{},"d":{},"k":{},"b":{"140":{"position":[[10041,28],[10887,28],[13414,28],[13477,28]]}}}],["sci_uart_rs485_en",{"_index":7365,"t":{},"d":{},"k":{},"b":{"140":{"position":[[13367,21]]}}}],["sci_uart_rs485_enable_t",{"_index":7340,"t":{},"d":{},"k":{},"b":{"140":{"position":[[10008,23],[10830,23],[13191,23],[13249,23]]}}}],["sci_uart_rs485_setting_t",{"_index":7334,"t":{},"d":{},"k":{},"b":{"140":{"position":[[9801,24],[10647,24],[10708,24],[11761,24]]}}}],["scif",{"_index":5528,"t":{"140":{"position":[[77,6]]}},"d":{},"k":{},"b":{"112":{"position":[[2603,6],[2645,4]]},"140":{"position":[[1177,4],[1273,4],[2649,4],[4838,4],[6977,4],[9070,4],[11127,4],[11955,4]]},"147":{"position":[[491,6]]},"152":{"position":[[3530,6],[3570,4]]}}}],["scif_baud_setting_t",{"_index":7305,"t":{},"d":{},"k":{},"b":{"140":{"position":[[816,19],[9771,19],[10317,19],[10373,19],[10502,19],[11411,19],[19657,19],[22740,19]]}}}],["scif_clk_src_t",{"_index":7336,"t":{},"d":{},"k":{},"b":{"140":{"position":[[9884,14],[11264,14],[11858,14],[11907,14]]}}}],["scif_uart",{"_index":7311,"t":{},"d":{},"k":{},"b":{"140":{"position":[[2134,9]]}}}],["scif_uart_baudrate_19200",{"_index":7328,"t":{},"d":{},"k":{},"b":{"140":{"position":[[9105,24],[9318,25]]}}}],["scif_uart_baudrate_error_percent_5",{"_index":7329,"t":{},"d":{},"k":{},"b":{"140":{"position":[[9158,34],[9443,35]]}}}],["scif_uart_clock_ext16x",{"_index":7355,"t":{},"d":{},"k":{},"b":{"140":{"position":[[12205,22]]}}}],["scif_uart_clock_ext8x",{"_index":7354,"t":{},"d":{},"k":{},"b":{"140":{"position":[[12148,21]]}}}],["scif_uart_clock_int_with_baudrate_output",{"_index":7353,"t":{},"d":{},"k":{},"b":{"140":{"position":[[12047,40]]}}}],["scif_uart_extended_cfg_t",{"_index":7335,"t":{},"d":{},"k":{},"b":{"140":{"position":[[9836,24],[11016,24],[11077,24]]}}}],["scif_uart_flow_control_auto",{"_index":7360,"t":{},"d":{},"k":{},"b":{"140":{"position":[[12816,27]]}}}],["scif_uart_flow_control_t",{"_index":7338,"t":{},"d":{},"k":{},"b":{"140":{"position":[[9934,24],[11701,24],[12611,24],[12670,24]]}}}],["scif_uart_instance_ctrl_t",{"_index":7333,"t":{},"d":{},"k":{},"b":{"140":{"position":[[9735,25],[10176,25],[10238,25]]},"147":{"position":[[9750,25]]}}}],["scif_uart_mode_rs485_fd",{"_index":7358,"t":{},"d":{},"k":{},"b":{"140":{"position":[[12532,23]]}}}],["scif_uart_mode_rs485_hd",{"_index":7357,"t":{},"d":{},"k":{},"b":{"140":{"position":[[12460,23]]}}}],["scif_uart_mode_t",{"_index":7337,"t":{},"d":{},"k":{},"b":{"140":{"position":[[9908,16],[11635,16],[12271,16],[12322,16]]}}}],["scif_uart_noise_cancellation_en",{"_index":7363,"t":{},"d":{},"k":{},"b":{"140":{"position":[[13119,35]]}}}],["scif_uart_noise_cancellation_t",{"_index":7339,"t":{},"d":{},"k":{},"b":{"140":{"position":[[9968,30],[11335,30],[12893,30],[12958,30]]}}}],["scif_uart_receive_trigger_1",{"_index":7374,"t":{},"d":{},"k":{},"b":{"140":{"position":[[14293,27]]}}}],["scif_uart_receive_trigger_10",{"_index":7383,"t":{},"d":{},"k":{},"b":{"140":{"position":[[15201,28]]}}}],["scif_uart_receive_trigger_11",{"_index":7384,"t":{},"d":{},"k":{},"b":{"140":{"position":[[15304,28]]}}}],["scif_uart_receive_trigger_12",{"_index":7385,"t":{},"d":{},"k":{},"b":{"140":{"position":[[15407,28]]}}}],["scif_uart_receive_trigger_13",{"_index":7386,"t":{},"d":{},"k":{},"b":{"140":{"position":[[15510,28]]}}}],["scif_uart_receive_trigger_14",{"_index":7387,"t":{},"d":{},"k":{},"b":{"140":{"position":[[15613,28]]}}}],["scif_uart_receive_trigger_15",{"_index":7388,"t":{},"d":{},"k":{},"b":{"140":{"position":[[15716,28]]}}}],["scif_uart_receive_trigger_2",{"_index":7375,"t":{},"d":{},"k":{},"b":{"140":{"position":[[14393,27]]}}}],["scif_uart_receive_trigger_3",{"_index":7376,"t":{},"d":{},"k":{},"b":{"140":{"position":[[14494,27]]}}}],["scif_uart_receive_trigger_4",{"_index":7377,"t":{},"d":{},"k":{},"b":{"140":{"position":[[14595,27]]}}}],["scif_uart_receive_trigger_5",{"_index":7378,"t":{},"d":{},"k":{},"b":{"140":{"position":[[14696,27]]}}}],["scif_uart_receive_trigger_6",{"_index":7379,"t":{},"d":{},"k":{},"b":{"140":{"position":[[14797,27]]}}}],["scif_uart_receive_trigger_7",{"_index":7380,"t":{},"d":{},"k":{},"b":{"140":{"position":[[14898,27]]}}}],["scif_uart_receive_trigger_8",{"_index":7381,"t":{},"d":{},"k":{},"b":{"140":{"position":[[14999,27]]}}}],["scif_uart_receive_trigger_9",{"_index":7382,"t":{},"d":{},"k":{},"b":{"140":{"position":[[15100,27]]}}}],["scif_uart_receive_trigger_half",{"_index":7372,"t":{},"d":{},"k":{},"b":{"140":{"position":[[14097,30]]}}}],["scif_uart_receive_trigger_max",{"_index":7373,"t":{},"d":{},"k":{},"b":{"140":{"position":[[14195,29]]}}}],["scif_uart_receive_trigger_quart",{"_index":7369,"t":{},"d":{},"k":{},"b":{"140":{"position":[[13993,33]]}}}],["scif_uart_receive_trigger_t",{"_index":7342,"t":{},"d":{},"k":{},"b":{"140":{"position":[[10079,27],[11495,27],[13766,27],[13828,27]]}}}],["scif_uart_rts_trigger_10",{"_index":7393,"t":{},"d":{},"k":{},"b":{"140":{"position":[[16152,24]]}}}],["scif_uart_rts_trigger_12",{"_index":7394,"t":{},"d":{},"k":{},"b":{"140":{"position":[[16203,24]]}}}],["scif_uart_rts_trigger_14",{"_index":7395,"t":{},"d":{},"k":{},"b":{"140":{"position":[[16254,24]]}}}],["scif_uart_rts_trigger_15",{"_index":7396,"t":{},"d":{},"k":{},"b":{"140":{"position":[[16305,24]]}}}],["scif_uart_rts_trigger_4",{"_index":7390,"t":{},"d":{},"k":{},"b":{"140":{"position":[[16005,23]]}}}],["scif_uart_rts_trigger_6",{"_index":7391,"t":{},"d":{},"k":{},"b":{"140":{"position":[[16054,23]]}}}],["scif_uart_rts_trigger_8",{"_index":7392,"t":{},"d":{},"k":{},"b":{"140":{"position":[[16103,23]]}}}],["scif_uart_rts_trigger_dis",{"_index":7397,"t":{},"d":{},"k":{},"b":{"140":{"position":[[16356,29]]}}}],["scif_uart_rts_trigger_t",{"_index":7343,"t":{},"d":{},"k":{},"b":{"140":{"position":[[10116,23],[11571,23],[15826,23],[15884,23]]}}}],["scispiclk",{"_index":7118,"t":{},"d":{},"k":{},"b":{"138":{"position":[[12221,10]]}}}],["sck",{"_index":7170,"t":{},"d":{},"k":{},"b":{"139":{"position":[[5566,3],[5783,3],[7471,3],[7748,3],[14351,4],[15341,4]]},"140":{"position":[[4698,3],[6381,3],[6642,3],[12141,4]]}}}],["scl",{"_index":3790,"t":{},"d":{},"k":{},"b":{"86":{"position":[[1787,3]]},"87":{"position":[[18393,3]]},"88":{"position":[[7842,3],[8007,3],[8224,3],[8415,3],[8596,3],[8761,3],[8978,3],[9169,3],[15035,3],[15220,4],[15597,3],[15763,3],[17035,3],[20911,3],[20971,3],[21027,3],[21424,3],[21807,3],[41762,3],[46321,4],[47054,3]]},"124":{"position":[[3287,3],[3384,3],[3953,3],[4026,3],[5446,3],[12705,3],[12758,3],[13268,3],[14198,3],[14278,3]]},"125":{"position":[[4253,3],[5125,3],[6057,3],[10656,3],[10675,3],[13540,3]]},"127":{"position":[[3072,3]]},"129":{"position":[[4066,3]]},"131":{"position":[[1526,3],[1579,3],[2612,3],[4235,3],[4930,3],[5165,3],[5213,3],[7718,3],[7771,3],[8146,3],[19385,3],[19438,3]]},"133":{"position":[[6842,3]]},"138":{"position":[[5541,3],[6281,3]]}}}],["sclk",{"_index":6769,"t":{},"d":{},"k":{},"b":{"135":{"position":[[1021,4],[1050,4],[1134,4],[1197,4]]},"142":{"position":[[1105,4],[1134,4],[1218,4],[1281,4]]}}}],["scope",{"_index":7782,"t":{},"d":{},"k":{},"b":{"145":{"position":[[1650,5]]}}}],["script",{"_index":1785,"t":{},"d":{},"k":{},"b":{"71":{"position":[[5955,6]]}}}],["sd",{"_index":1603,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10421,2],[10478,2],[10526,2],[10913,2],[10956,2],[11000,2],[16207,2]]},"92":{"position":[[2311,3]]},"113":{"position":[[11323,2],[11396,2],[11532,2]]}}}],["sd0_clk",{"_index":1530,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9208,8]]}}}],["sd0_cmd",{"_index":1532,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9234,8]]}}}],["sd0_data0",{"_index":1536,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9292,10]]}}}],["sd0_data1",{"_index":1538,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9322,10]]}}}],["sd0_data2",{"_index":1540,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9352,10]]}}}],["sd0_data3",{"_index":1542,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9382,10]]}}}],["sd0_data4",{"_index":1544,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9412,10]]}}}],["sd0_data5",{"_index":1546,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9442,10]]}}}],["sd0_data6",{"_index":1548,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9472,10]]}}}],["sd0_data7",{"_index":1550,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9502,10]]}}}],["sd0_rst_n",{"_index":1534,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9262,10]]}}}],["sd1_clk",{"_index":1552,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9530,8]]}}}],["sd1_cmd",{"_index":1554,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9556,8]]}}}],["sd1_data0",{"_index":1556,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9584,10]]}}}],["sd1_data1",{"_index":1558,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9614,10]]}}}],["sd1_data2",{"_index":1560,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9644,10]]}}}],["sd1_data3",{"_index":1562,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9674,10]]}}}],["sda",{"_index":4101,"t":{},"d":{},"k":{},"b":{"88":{"position":[[17027,3]]},"124":{"position":[[5438,3]]},"125":{"position":[[4245,3],[10617,3],[10636,3]]},"127":{"position":[[3064,3]]},"129":{"position":[[4058,3]]},"131":{"position":[[4227,3]]},"133":{"position":[[6834,3]]},"138":{"position":[[1585,3],[3594,3],[3684,3],[3806,3],[5162,3],[5533,3],[6105,3],[6289,3],[12065,3]]}}}],["sdet_ipl",{"_index":5389,"t":{},"d":{},"k":{},"b":{"107":{"position":[[1635,8]]}}}],["sdet_irq",{"_index":5393,"t":{},"d":{},"k":{},"b":{"107":{"position":[[1810,8]]}}}],["sdr",{"_index":4011,"t":{},"d":{},"k":{},"b":{"87":{"position":[[19322,3]]},"88":{"position":[[1894,3],[2217,3],[2910,3],[20956,3],[21124,3],[38488,3]]}}}],["sdram",{"_index":2993,"t":{},"d":{},"k":{},"b":{"79":{"position":[[7017,5]]}}}],["sec_match",{"_index":7027,"t":{},"d":{},"k":{},"b":{"137":{"position":[[1809,9]]}}}],["second",{"_index":973,"t":{},"d":{},"k":{},"b":{"69":{"position":[[3180,6],[5687,6],[12359,6],[12793,6],[18226,6]]},"71":{"position":[[7782,8],[7872,7],[35892,8],[45482,8]]},"75":{"position":[[12141,7],[12268,7],[22858,6]]},"76":{"position":[[2781,7]]},"83":{"position":[[6904,7]]},"84":{"position":[[3494,7]]},"128":{"position":[[5519,8],[5549,7]]},"129":{"position":[[9975,8]]},"131":{"position":[[9238,6]]},"133":{"position":[[7538,7],[30592,6],[30679,6],[30709,8]]},"136":{"position":[[1625,6],[3036,6],[5048,7],[5076,7],[6568,7],[8703,6],[15881,6]]},"137":{"position":[[1861,7],[11777,7],[12102,7],[12196,7],[12288,7],[12380,7],[12472,7],[12562,7],[12652,7],[12742,7],[12821,7],[12900,8]]},"145":{"position":[[12178,6]]},"148":{"position":[[3774,8],[4084,7],[4324,7]]}}}],["second(",{"_index":6929,"t":{},"d":{},"k":{},"b":{"136":{"position":[[1717,9]]}}}],["secondari",{"_index":4135,"t":{},"d":{},"k":{},"b":{"88":{"position":[[22242,9],[23815,9],[31560,9],[53009,9]]}}}],["seconds)must",{"_index":7088,"t":{},"d":{},"k":{},"b":{"138":{"position":[[3707,12]]}}}],["section",{"_index":749,"t":{},"d":{},"k":{},"b":{"68":{"position":[[8112,7]]},"71":{"position":[[8326,7],[8363,8],[8484,9],[8629,9],[8746,9],[8902,7]]},"75":{"position":[[22119,7],[24868,7],[25014,7]]},"83":{"position":[[4752,7],[38284,8]]},"88":{"position":[[21207,7],[21500,7]]},"116":{"position":[[250,7],[411,8]]},"128":{"position":[[13996,9],[25993,7]]},"136":{"position":[[1843,7],[3539,7],[13565,7]]},"145":{"position":[[1782,7]]},"150":{"position":[[7111,7]]},"151":{"position":[[476,7],[837,7],[1190,7],[1710,7]]},"152":{"position":[[6,7]]},"153":{"position":[[6,7]]}}}],["sector",{"_index":5586,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3718,6]]},"143":{"position":[[160,7]]},"150":{"position":[[4013,6],[4090,7],[4102,6],[4160,6],[4231,6],[4254,6],[4280,6],[7970,6],[24093,6]]}}}],["secur",{"_index":66,"t":{"94":{"position":[[64,6],[79,6]]},"95":{"position":[[75,6]]},"96":{"position":[[75,6]]},"97":{"position":[[75,6]]},"98":{"position":[[71,6]]},"99":{"position":[[75,6]]},"100":{"position":[[75,6]]},"102":{"position":[[75,6]]},"104":{"position":[[71,6]]}},"d":{},"k":{},"b":{"0":{"position":[[1185,8]]},"68":{"position":[[31459,6],[31498,6]]},"71":{"position":[[1619,6],[9771,6],[9889,6],[9940,6],[11710,6],[11811,6],[11851,6],[40546,8],[40605,8],[40627,6],[41015,6],[41110,6]]},"75":{"position":[[40645,6],[40684,6]]},"77":{"position":[[1788,6],[1933,6]]},"79":{"position":[[6862,6],[6948,8]]},"83":{"position":[[57519,6],[57558,6]]},"84":{"position":[[17306,6],[17345,6]]},"89":{"position":[[8113,6],[8152,6]]},"90":{"position":[[7663,6],[7702,6]]},"91":{"position":[[9274,6],[9313,6]]},"94":{"position":[[358,6],[414,6],[467,6],[525,6]]},"95":{"position":[[560,6],[575,6],[4457,6],[4496,6]]},"96":{"position":[[3771,6],[3810,6]]},"98":{"position":[[555,6],[570,6],[4383,6],[4422,6]]},"99":{"position":[[550,6],[565,6],[4404,6],[4443,6]]},"100":{"position":[[3724,6],[3763,6]]},"101":{"position":[[383,6],[468,6]]},"103":{"position":[[352,6],[440,6]]},"104":{"position":[[545,6],[560,6],[4330,6],[4369,6]]},"106":{"position":[[25943,6],[25982,6]]},"108":{"position":[[7856,6],[7895,6]]},"112":{"position":[[329,6],[448,6],[463,6],[515,6],[717,6],[918,6],[1036,6],[1051,6],[1103,6],[1220,6],[1235,6],[1287,6],[1487,6],[1686,6],[1802,6],[1817,6]]},"113":{"position":[[1830,6],[3897,6],[3941,6]]},"115":{"position":[[786,6],[801,6]]},"124":{"position":[[20054,6],[20093,6]]},"125":{"position":[[18565,6],[18604,6]]},"135":{"position":[[23559,6],[23598,6]]},"136":{"position":[[4439,6],[4584,6],[18458,6],[18497,6]]},"138":{"position":[[2839,6],[2984,6],[18809,6],[18848,6]]},"139":{"position":[[2553,6],[2698,6],[26646,6],[26685,6]]},"140":{"position":[[25498,6],[25537,6]]},"141":{"position":[[1031,6]]},"142":{"position":[[2700,6],[2845,6],[25298,6],[25337,6]]},"146":{"position":[[24351,6],[24390,6]]},"148":{"position":[[14961,6],[15000,6]]},"150":{"position":[[6654,6],[6846,6],[6890,6],[6938,6],[6986,6]]},"152":{"position":[[1326,6],[1443,6],[1458,6],[1507,6],[1704,6],[1900,6],[2016,6],[2031,6],[2080,6],[2195,6],[2210,6],[2259,6],[2454,6],[2648,6],[2762,6],[2777,6],[7167,6],[7182,6]]}}}],["securefault_handl",{"_index":1681,"t":{},"d":{},"k":{},"b":{"71":{"position":[[265,19],[39382,21],[39438,19],[39527,19]]}}}],["see",{"_index":408,"t":{},"d":{},"k":{},"b":{"67":{"position":[[5844,3],[7972,4],[8451,4],[8874,3],[9390,3],[9598,4]]},"75":{"position":[[23000,3],[24242,3],[24845,3]]},"79":{"position":[[1391,3],[5527,3],[13564,3],[13981,3],[14592,3],[15168,3]]},"83":{"position":[[20339,4],[38228,3]]},"84":{"position":[[3715,3]]},"87":{"position":[[819,4],[1564,4],[2441,4],[9257,3]]},"88":{"position":[[2469,4],[2808,4],[18937,4],[20696,4],[21203,3],[21496,3],[22098,4],[41962,4],[42959,4],[43204,4],[43297,4],[43399,4],[43538,4],[43689,4],[44202,4],[44347,4],[46539,4],[46737,4],[46930,4],[49719,4],[50243,4],[50793,4]]},"116":{"position":[[344,3]]},"128":{"position":[[9542,3],[17222,3],[25148,3],[25564,3],[25964,3],[26957,3],[27149,3],[27333,3],[27543,3]]},"129":{"position":[[9984,3]]},"131":{"position":[[12405,3]]},"133":{"position":[[19504,3],[24399,3],[27598,3],[30606,3],[39091,3],[46390,3]]},"136":{"position":[[3535,3]]},"138":{"position":[[7086,3]]},"143":{"position":[[9350,3]]},"144":{"position":[[6699,3],[7745,3]]},"145":{"position":[[2347,3],[16462,3]]},"148":{"position":[[2098,3]]}}}],["seed",{"_index":2847,"t":{},"d":{},"k":{},"b":{"77":{"position":[[3444,4],[8079,5]]},"78":{"position":[[3142,5]]}}}],["seem",{"_index":6236,"t":{},"d":{},"k":{},"b":{"128":{"position":[[14527,4]]},"141":{"position":[[10589,4]]}}}],["seen",{"_index":6631,"t":{},"d":{},"k":{},"b":{"133":{"position":[[8310,4]]}}}],["segment",{"_index":2144,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1539,7],[1591,7]]},"75":{"position":[[12534,7],[12579,7],[12690,7],[12735,7],[13112,7],[13157,7],[13265,7],[13309,7],[15512,7],[15552,7],[15637,7],[15652,7],[22378,7]]},"128":{"position":[[14063,9]]}}}],["sel1_irqn",{"_index":4413,"t":{},"d":{},"k":{},"b":{"91":{"position":[[4163,10]]}}}],["select",{"_index":30,"t":{},"d":{},"k":{},"b":{"0":{"position":[[424,9]]},"68":{"position":[[1416,9],[1878,6],[1997,8],[2800,8],[3190,6],[3250,6],[3273,6],[3367,6],[3464,6],[3623,9],[3650,6],[3876,6],[4179,9],[4242,6],[4358,7],[4793,6],[7046,6],[7095,9],[7227,6],[7258,6],[7320,6],[7504,6],[7634,10],[7667,6],[8385,9],[9463,9],[18256,9],[18769,6],[19026,6],[21542,6],[21802,6],[22014,6],[22100,6],[22229,6],[22436,6]]},"69":{"position":[[2265,8],[3514,6],[3663,6],[3940,6],[4298,6],[5362,6],[5564,6],[6299,6],[7204,6],[8715,6],[8960,6],[9213,6],[9466,6],[9719,6],[9999,8],[12187,8],[12321,8],[12491,8],[12584,9],[12822,8],[13254,9],[14864,8],[21857,9],[28010,9]]},"70":{"position":[[10471,6],[10519,6],[10720,6],[10780,6]]},"71":{"position":[[2084,8],[11556,6]]},"75":{"position":[[2897,8],[10917,8],[11326,8],[12563,6],[12719,6],[12875,6],[13141,6],[13293,6],[13446,6],[13603,6],[24603,6]]},"76":{"position":[[2030,8],[2476,10],[2688,8],[3068,6],[3671,6],[3778,6],[5904,8],[7994,6],[14900,6]]},"77":{"position":[[1589,8],[2120,6],[2174,6],[3649,8]]},"79":{"position":[[1950,8],[2439,6],[2569,6],[2707,6],[2795,6],[2889,6],[3038,6],[3197,7],[3627,6],[4009,6],[4895,8],[5080,8],[5309,8],[5387,8],[11105,6],[11758,6],[11847,6],[15160,7],[15559,6]]},"80":{"position":[[2231,10],[2654,10],[4035,8]]},"83":{"position":[[3319,9],[3435,9],[4394,8],[4840,8],[5553,10],[6299,8],[8818,6],[9049,6],[9241,9],[9462,9],[10494,6],[10589,6],[10665,6],[10760,6],[11229,6],[11500,6],[11725,6],[11971,6],[12246,6],[12423,6],[12611,6],[12803,6],[12974,6],[13327,6],[13606,6],[13841,6],[14073,6],[14287,6],[14482,6],[14789,6],[15006,6],[15142,6],[15797,8],[15851,8],[18491,9],[20027,8],[20084,8],[20208,8],[20305,8],[21200,6],[28426,6],[29119,6],[29231,6],[29328,6],[29555,6],[29620,6],[30003,6],[30106,6],[30936,8],[31137,8],[31983,6],[32238,9],[32327,9],[32462,9],[32598,9],[32956,9],[39936,6],[45937,6],[47359,8],[51583,6]]},"84":{"position":[[1703,9],[1819,9],[2465,8],[2882,10],[3088,8],[3152,8],[3240,8],[3698,8],[4489,8],[4527,8],[4617,8],[6737,6]]},"87":{"position":[[4573,6],[7998,8],[8557,6],[8877,8]]},"88":{"position":[[2966,6],[3064,9],[3124,8],[3162,8],[6963,8],[15628,8],[15695,9],[16924,8],[24541,6],[31933,6],[45108,8],[48417,9],[48833,8],[51956,8],[55045,6]]},"89":{"position":[[1789,8],[2255,6],[2729,6],[5950,8]]},"90":{"position":[[1737,8],[2106,6],[2447,6]]},"91":{"position":[[1790,8],[2348,6],[2806,6],[7121,8]]},"92":{"position":[[2283,6],[2331,6],[2819,8],[3598,6],[4074,6],[7642,6],[8486,6],[9330,6],[10174,6],[17571,7],[17638,7],[17987,7],[18340,7],[25454,9],[25575,9],[25636,6],[25699,6],[25762,6],[25825,6],[25888,6],[25951,6],[26014,6],[26077,6]]},"105":{"position":[[3337,9],[3470,9],[4137,8],[4253,8],[4717,10],[6048,6],[6125,6],[6209,6],[6524,6],[6632,6],[6732,6],[6828,6],[6932,6],[7317,6],[7703,6],[8159,6],[8431,6],[8657,6],[9306,6],[9472,7],[9642,6],[9808,6],[9982,6],[10116,7],[10286,6],[10451,6],[10624,6],[10749,6],[11941,8],[12019,8],[12076,8],[12959,6],[18384,7],[18488,7],[19887,7],[19937,7],[19999,7],[20843,6],[21817,6],[22083,6],[24062,6],[26365,6]]},"106":{"position":[[1269,8],[1669,6],[1831,6],[2452,6],[2603,6],[2780,6],[6230,6],[8347,6],[9115,6],[9245,6],[9363,6],[9550,6],[9707,6],[10141,6],[10757,6],[11145,6],[11749,6],[11990,6],[12233,6]]},"107":{"position":[[1357,7],[2028,6],[8799,7],[8980,10]]},"108":{"position":[[1384,8],[2111,6],[2183,8],[2420,8],[2850,6]]},"109":{"position":[[1180,6],[1259,6],[6847,6],[8206,9]]},"113":{"position":[[2181,8],[2290,8],[2923,8]]},"124":{"position":[[2200,8],[2959,6],[3720,6],[3892,6],[3989,6],[4388,6],[5061,8],[5145,8],[5335,8],[5744,8],[5807,8],[12654,7],[13147,7],[13402,10],[13890,7],[13976,7]]},"125":{"position":[[1682,8],[2073,6],[2274,6],[2552,6],[2709,6],[2894,6],[2996,6],[3268,6],[3869,8],[3953,8],[4142,8],[4548,8],[4611,8],[13490,7]]},"127":{"position":[[1761,8],[2896,6]]},"128":{"position":[[1361,9],[1440,9],[1597,9],[1955,9]]},"129":{"position":[[3342,8],[3494,6],[3594,8]]},"131":{"position":[[2341,9],[3017,8],[3181,6],[3217,6],[3430,6]]},"133":{"position":[[6233,8],[8625,9]]},"135":{"position":[[1838,8],[2335,6],[2410,6],[2490,6],[2579,6],[2755,6],[2798,6],[2851,6],[2868,6],[3036,6],[4343,6],[5009,6],[5280,6],[5418,6],[6850,9],[6956,9],[9180,6],[9421,6],[9519,6],[9826,6],[10251,6],[10482,6],[10907,6],[12371,6],[12444,6],[12477,10],[12702,6],[12864,6],[14133,6]]},"136":{"position":[[3085,9],[4226,8],[5084,6],[5210,6],[5719,6],[5891,6],[5994,6]]},"137":{"position":[[2361,6],[11999,6]]},"138":{"position":[[2278,8],[3153,6],[3287,6],[3350,6],[3860,6],[4162,6],[4808,6],[5131,8],[5180,8],[5235,8],[5430,8],[5722,8],[5785,8],[11965,6],[12089,7]]},"139":{"position":[[2042,8],[2884,6],[2958,6],[3036,6],[3101,6],[4355,6],[4452,8],[4939,6],[5645,9],[7340,8],[8581,9],[21747,8]]},"140":{"position":[[2009,8],[2638,6],[2706,6],[2784,6],[2849,6],[3829,6],[5536,6],[5669,6],[5843,6],[5980,6],[6250,8],[11688,10],[19606,8]]},"141":{"position":[[1687,6],[1969,6]]},"142":{"position":[[2038,8],[3010,6],[3107,6],[3248,6],[3385,6],[3510,6],[3604,6],[3817,6],[3918,6],[4074,6],[4378,6],[4476,6],[4526,6],[4579,6],[4596,6],[4619,6],[4636,7],[4674,6],[4840,6],[4937,6],[5024,6],[5113,6],[6091,6],[8024,9],[8130,9],[10182,6],[10422,6],[10520,6],[10835,6],[11269,6],[11500,6],[11934,6],[13528,6],[13611,6],[13700,6],[13763,6],[13867,6],[13900,10],[13937,6],[14010,6],[14316,6],[14480,6],[16036,6],[16273,6],[16319,6],[16356,6],[16393,6],[16430,6],[17000,6],[17045,6]]},"143":{"position":[[2244,8],[5645,6],[5755,6],[9323,6],[12755,9]]},"144":{"position":[[2279,6],[2883,6]]},"145":{"position":[[2452,6],[2556,6],[2641,6],[2771,6],[2847,6],[14944,8],[15091,8],[16594,6]]},"146":{"position":[[1914,8],[2474,6],[2730,6],[3395,6],[3655,6]]},"147":{"position":[[1893,6]]},"148":{"position":[[1735,8],[3151,6]]},"149":{"position":[[1701,6],[1782,6]]},"150":{"position":[[1889,6],[1945,10],[1961,6],[2284,8],[2691,6],[2704,6],[2719,6],[2734,6],[2765,6],[2880,6],[3009,6],[3063,9],[3246,6],[6324,6],[16395,6],[16456,6],[25680,7]]},"151":{"position":[[3343,9]]}}}],["select.(thi",{"_index":2971,"t":{},"d":{},"k":{},"b":{"79":{"position":[[3507,12]]}}}],["selectionmcu",{"_index":4458,"t":{},"d":{},"k":{},"b":{"92":{"position":[[3388,12],[3864,12],[5276,12],[6709,12],[7303,12],[8147,12],[8991,12],[9835,12]]},"139":{"position":[[4251,12]]}}}],["selectmcu",{"_index":2967,"t":{},"d":{},"k":{},"b":{"79":{"position":[[3295,9],[3375,9]]}}}],["selector",{"_index":1693,"t":{},"d":{},"k":{},"b":{"71":{"position":[[579,9],[41958,9],[42131,9],[42222,9],[42408,8],[42597,8]]}}}],["semant",{"_index":6245,"t":{},"d":{},"k":{},"b":{"128":{"position":[[15281,9]]}}}],["semaphor",{"_index":6082,"t":{},"d":{},"k":{},"b":{"127":{"position":[[2190,9],[2248,9],[2670,9],[3234,9],[3365,9],[4490,9],[4518,9]]},"128":{"position":[[8420,10],[8698,10],[8772,9],[8839,9],[9246,10],[9397,10],[9454,10],[9815,12],[19286,9]]},"129":{"position":[[4927,9],[5058,9],[6115,9],[6143,9]]},"131":{"position":[[7336,9],[7467,9],[10374,9],[10402,9]]},"133":{"position":[[8966,9],[9097,9],[11816,9],[11844,9],[15950,9],[15978,9],[20254,9],[20282,9],[25268,9],[25296,9],[31421,9],[31449,9],[35536,9],[35564,9],[39841,9],[39869,9],[44093,9],[44121,9]]}}}],["semaphore_timeout",{"_index":6056,"t":{},"d":{},"k":{},"b":{"126":{"position":[[1015,17]]}}}],["semr_baudrate_bits_b",{"_index":7344,"t":{},"d":{},"k":{},"b":{"140":{"position":[[10523,20]]}}}],["send",{"_index":477,"t":{},"d":{},"k":{},"b":{"67":{"position":[[10228,4]]},"74":{"position":[[6929,4]]},"75":{"position":[[1124,4],[19670,4],[20059,7],[28579,4],[28792,7],[30029,4],[37057,4]]},"78":{"position":[[252,7]]},"82":{"position":[[4731,4]]},"83":{"position":[[12631,4],[39954,4]]},"85":{"position":[[7105,4]]},"86":{"position":[[5253,4],[7601,5]]},"87":{"position":[[9212,7],[10524,4],[11089,4],[11886,4],[19524,4]]},"88":{"position":[[4589,7],[5887,5],[36770,7],[37471,4],[56768,4],[57415,7],[58014,4],[59001,4]]},"94":{"position":[[3255,4],[3483,4],[4111,4],[5492,7],[5568,7]]},"95":{"position":[[1729,4],[1807,4],[2936,4]]},"98":{"position":[[1667,4],[1745,4],[2867,4]]},"99":{"position":[[1700,4],[1778,4],[2893,4]]},"101":{"position":[[3823,4]]},"103":{"position":[[2485,4]]},"104":{"position":[[1638,4],[1716,4],[2824,4]]},"107":{"position":[[6791,4]]},"109":{"position":[[4039,4]]},"124":{"position":[[8454,4],[11464,4]]},"125":{"position":[[6551,4],[6756,4],[7051,4],[8021,4],[11230,4]]},"127":{"position":[[5973,4]]},"129":{"position":[[527,5],[1250,5],[2570,5],[12611,5],[14532,5],[17447,5]]},"131":{"position":[[498,5],[1049,5],[4706,7],[4778,7],[4865,7],[5233,4],[5487,7],[5559,7],[5676,4],[5793,4],[5823,4],[5908,4],[6334,7],[6403,4],[6677,7],[17404,5],[18379,5]]},"133":{"position":[[215,5],[51453,5]]},"137":{"position":[[8523,4]]},"138":{"position":[[8334,4],[10675,4]]},"141":{"position":[[6588,4],[11026,4],[11084,4]]},"143":{"position":[[2140,4]]},"144":{"position":[[9282,4]]},"147":{"position":[[3364,4],[8178,4]]},"149":{"position":[[5598,4]]},"150":{"position":[[1568,7],[7628,4],[9374,4],[10996,4],[13685,4],[14107,4],[26368,4]]}}}],["send/rec",{"_index":4730,"t":{},"d":{},"k":{},"b":{"94":{"position":[[1551,12]]}}}],["send_typ",{"_index":4766,"t":{},"d":{},"k":{},"b":{"95":{"position":[[1718,9]]},"98":{"position":[[1656,9]]},"99":{"position":[[1689,9]]},"104":{"position":[[1627,9]]}}}],["sensclk",{"_index":5751,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11036,7]]}}}],["sensor",{"_index":254,"t":{"119":{"position":[[45,6]]},"129":{"position":[[73,6]]},"131":{"position":[[73,6]]},"133":{"position":[[58,6]]},"146":{"position":[[57,6]]}},"d":{},"k":{},"b":{"67":{"position":[[532,6],[2188,6],[2304,6],[2522,6],[2591,6],[5217,8],[11182,6],[15528,6]]},"68":{"position":[[18629,6],[27542,7],[28193,6],[28960,6]]},"69":{"position":[[10482,6],[21809,8],[34942,7],[35593,6]]},"71":{"position":[[35290,6]]},"110":{"position":[[333,6]]},"113":{"position":[[15692,6]]},"116":{"position":[[1572,6],[1580,6]]},"119":{"position":[[22,6],[78,6],[133,6],[239,6],[294,6],[385,6],[444,6]]},"129":{"position":[[1242,7],[1664,6],[1898,6],[2172,6],[2527,6],[2736,6],[2842,6],[2967,6],[3052,6],[3082,6],[3662,6],[3699,6],[3777,6],[3814,6],[4340,6],[4374,6],[4480,7],[4783,6],[5464,6],[7951,6],[8339,6],[8748,6],[14524,7],[15446,6],[15680,6],[16549,6],[17404,6]]},"130":{"position":[[199,6],[1153,6],[2950,7],[4762,6],[5155,6],[5296,6]]},"131":{"position":[[2136,6],[2242,6],[2412,6],[3518,6],[3555,6],[3633,6],[3670,6],[4680,6],[4958,6],[5153,7],[5255,6],[5461,6],[5650,7],[6112,7],[6386,6],[7701,6],[8121,6],[8903,7],[9654,6]]},"132":{"position":[[199,6],[1417,6],[3203,7]]},"133":{"position":[[864,7],[4674,7],[4789,6],[4949,7],[4976,7],[5050,6],[5140,6],[5623,6],[5702,6],[5887,6],[6318,6],[6340,6],[6420,6],[6442,6],[7070,6],[8418,6],[9755,6],[11135,6],[13106,6],[13195,6],[17240,6],[17329,6],[21544,6],[21633,6],[23413,6],[26558,6],[26647,6],[28616,6],[32711,6],[32800,6],[36826,6],[36915,6],[41131,6],[41220,6],[45383,6],[45472,6],[47318,6],[53286,7],[62177,7]]},"134":{"position":[[192,6],[924,6],[6285,7],[7200,6],[12241,6]]},"146":{"position":[[3893,6],[3989,7],[4023,6],[20903,7],[22367,7],[24850,6]]},"152":{"position":[[911,6],[4669,6],[4722,6],[4825,6],[4878,6],[4966,6],[5023,6]]},"290":{"position":[[28,6],[144,6]]},"292":{"position":[[517,6],[738,6],[856,6],[986,6]]}}}],["sensor_id",{"_index":6410,"t":{},"d":{},"k":{},"b":{"129":{"position":[[7585,10],[8005,12]]}}}],["sensoridget",{"_index":6452,"t":{},"d":{},"k":{},"b":{"130":{"position":[[2566,11],[4984,11]]}}}],["sensorsensor",{"_index":8375,"t":{},"d":{},"k":{},"b":{"152":{"position":[[4617,13]]}}}],["sent",{"_index":2367,"t":{},"d":{},"k":{},"b":{"75":{"position":[[16579,4]]},"77":{"position":[[8299,4]]},"87":{"position":[[3983,4],[18846,4]]},"88":{"position":[[18797,4],[39253,4],[40774,5],[50205,4]]}}}],["separ",{"_index":4090,"t":{},"d":{},"k":{},"b":{"88":{"position":[[15588,8]]},"128":{"position":[[7212,8]]},"150":{"position":[[7176,10]]}}}],["sequenc",{"_index":3641,"t":{},"d":{},"k":{},"b":{"83":{"position":[[58369,8]]},"131":{"position":[[4612,8],[5393,8],[6306,9],[6749,8]]}}}],["seri",{"_index":6486,"t":{},"d":{},"k":{},"b":{"131":{"position":[[4673,6],[5146,6],[5454,6],[5643,6],[7694,6],[8114,6]]},"151":{"position":[[311,7],[3209,6]]}}}],["serial",{"_index":1987,"t":{"135":{"position":[[53,6]]},"140":{"position":[[45,6]]},"150":{"position":[[54,6]]}},"d":{},"k":{},"b":{"71":{"position":[[34336,6],[34434,6],[34559,6],[34638,6],[34903,6],[35001,6],[35175,6],[35345,6],[35438,6]]},"77":{"position":[[727,6]]},"112":{"position":[[2211,6],[2571,6]]},"120":{"position":[[60,6]]},"135":{"position":[[1568,6]]},"141":{"position":[[160,6]]},"142":{"position":[[15835,6],[15906,6]]},"143":{"position":[[215,6]]},"147":{"position":[[459,6]]},"150":{"position":[[13629,7]]},"152":{"position":[[3153,6],[3498,6],[5135,6]]}}}],["serialflash",{"_index":8309,"t":{},"d":{},"k":{},"b":{"150":{"position":[[26295,12]]}}}],["servic",{"_index":706,"t":{},"d":{},"k":{},"b":{"68":{"position":[[4565,7]]},"69":{"position":[[8474,7]]},"71":{"position":[[8608,8]]},"75":{"position":[[14203,7]]},"76":{"position":[[4161,7],[6496,7],[6567,8]]},"83":{"position":[[10977,7],[16697,7],[16768,8]]},"84":{"position":[[3919,7],[5672,7],[5743,8]]},"89":{"position":[[2610,7]]},"90":{"position":[[2328,7]]},"91":{"position":[[2687,7]]},"105":{"position":[[7912,7]]},"106":{"position":[[11528,7]]},"108":{"position":[[2625,7]]},"124":{"position":[[4228,7]]},"125":{"position":[[3501,7],[11647,7],[12578,7]]},"128":{"position":[[13030,7],[13575,7],[20573,7],[22369,7],[23891,7],[25092,7]]},"135":{"position":[[4812,7],[5905,7]]},"136":{"position":[[2047,7],[5566,7]]},"138":{"position":[[4720,7],[7234,9]]},"139":{"position":[[6616,7]]},"140":{"position":[[5423,7]]},"142":{"position":[[4271,7],[6629,7],[6907,7]]},"146":{"position":[[3162,7]]}}}],["service/daemon",{"_index":6334,"t":{},"d":{},"k":{},"b":{"128":{"position":[[27128,14],[27522,14]]}}}],["set",{"_index":359,"t":{"103":{"position":[[79,4]]}},"d":{},"k":{},"b":{"67":{"position":[[3443,3],[3643,9],[5108,3],[9291,3]]},"68":{"position":[[3704,3],[5987,3],[6409,4],[6942,9],[8912,7],[8959,7],[9106,3],[12855,3],[13038,3],[13266,3],[15722,3],[15907,3],[17790,8],[24156,8],[24169,3],[24296,8],[28757,4],[28832,3],[28971,3]]},"69":{"position":[[3754,3],[4554,4],[4889,3],[5010,3],[5827,3],[5948,3],[10074,3],[11271,8],[15741,3],[16657,3],[16780,3],[17100,3],[17869,3],[19353,8],[19569,3],[20763,8],[23937,8],[28502,8],[29551,4],[30583,8],[30596,3],[30723,8]]},"70":{"position":[[1813,3],[10967,3],[11011,3],[11194,3],[11242,3],[11425,3],[11473,3],[11521,3],[11724,3],[11780,3],[11836,3],[12014,3],[12060,3],[12258,3],[12313,3],[12492,3],[12545,3],[12762,3],[12815,3],[12870,3],[13058,3],[13128,3],[13200,3],[13427,3],[13495,3],[13565,3],[13636,3],[14289,3],[14313,3]]},"71":{"position":[[1185,4],[1727,3],[1773,8],[1808,8],[5789,7],[6540,3],[6631,7],[9446,8],[9869,3],[10052,3],[10348,3],[10594,8],[10924,3],[11757,7],[11892,7],[36722,3],[37012,3],[37473,3],[37763,3],[38445,3],[39012,3],[41045,3],[41140,3],[41293,3],[42119,3],[42259,3],[42606,7],[42967,3],[43111,3],[43456,7],[45636,7]]},"74":{"position":[[217,7],[4257,3],[4360,3],[6822,3]]},"75":{"position":[[3774,3],[4229,3],[4364,7],[4418,3],[4956,3],[5091,7],[5145,3],[5683,3],[5818,7],[5872,3],[6410,3],[6545,7],[6599,3],[7137,3],[7272,7],[7326,3],[7864,3],[7999,7],[8053,3],[8591,3],[8726,7],[8780,3],[9318,3],[9453,7],[9507,3],[11387,3],[11934,4],[13581,8],[14698,3],[19287,7],[20147,7],[20243,3],[20994,3],[21392,9],[21709,8],[21845,8],[21952,8],[22329,3],[23296,3],[23393,7],[23459,3],[23656,3],[26260,7],[31306,8],[31389,8],[31470,9],[31562,8],[32999,4],[35015,8],[35195,3],[37480,3]]},"76":{"position":[[5457,3],[6147,7],[8019,3],[11494,3],[12554,8],[12624,8],[12863,8],[12930,8],[17284,3],[18440,3]]},"77":{"position":[[3613,3],[8067,3],[8226,3]]},"79":{"position":[[1301,3],[1324,3],[3530,3],[4304,7],[4318,7],[4384,3],[4423,3],[4445,7],[4535,7],[4615,7],[4739,7],[4855,7],[4869,7],[4934,7],[5040,7],[5054,7],[5119,7],[5269,7],[5283,7],[5471,3],[5573,7],[5707,3],[6972,4],[7309,3],[7667,3],[9172,3],[9356,3],[9360,9],[10730,9],[11980,3],[11984,8],[13644,7],[14061,7],[14672,7],[15248,7],[15584,3],[15705,4],[15819,3],[15846,4],[16227,8],[20859,3],[22117,8],[22215,9]]},"80":{"position":[[1366,7],[1753,3],[2348,8],[3003,3],[3496,9],[7805,4],[8973,4],[8999,3]]},"81":{"position":[[500,9]]},"82":{"position":[[854,3],[1352,8],[1428,8],[1491,8],[3173,3],[3271,3],[3640,3],[4045,3],[5277,3],[6715,9]]},"83":{"position":[[3031,7],[5929,3],[6099,3],[6315,3],[6463,3],[6625,8],[7083,3],[7269,3],[7464,3],[7783,3],[7969,3],[8164,3],[9676,3],[9779,3],[9924,3],[12722,7],[12751,3],[12822,7],[12893,7],[12922,3],[12993,7],[15289,3],[15908,7],[16261,3],[21225,3],[24923,3],[25646,8],[26181,3],[27093,3],[27144,3],[27195,3],[28340,3],[28582,8],[29408,3],[29481,3],[31784,8],[32402,3],[32538,3],[37934,8],[40607,3],[40690,3],[40766,3],[41001,3],[41109,3],[43288,7],[45967,7],[46061,7],[46153,7],[50126,4],[51234,4],[51536,3],[51954,8],[53150,3],[53568,3],[55371,3],[56099,3],[56120,7],[56205,4],[56514,7]]},"84":{"position":[[3179,3],[3267,3],[4585,7],[4808,7],[8698,3],[9463,7],[9734,7]]},"85":{"position":[[1994,3],[4442,3],[4864,3],[5445,3],[5950,3],[6206,4],[6402,3],[8014,3]]},"86":{"position":[[3740,3],[4119,3],[4574,3],[5724,3]]},"87":{"position":[[3249,3],[6846,3],[6945,3],[7183,3],[7412,3],[7532,3],[7866,3],[8161,3],[8306,8],[8727,3],[8860,8],[9459,3],[9999,3],[10205,3],[10285,8],[10718,3],[11147,3],[11408,3],[11944,3],[12291,3],[12917,3],[13304,3],[13474,3],[13911,3],[15375,3],[15424,3],[16017,3],[16071,3],[16491,3],[16558,3],[16607,3],[16653,3],[17093,3]]},"88":{"position":[[1768,3],[5206,7],[5288,7],[5524,3],[5588,3],[5681,3],[6032,3],[7717,8],[7899,8],[8064,8],[8280,8],[8471,8],[8653,8],[8818,8],[9034,8],[9225,8],[9390,8],[9558,8],[9721,8],[9886,8],[10047,8],[10199,8],[10344,8],[10479,8],[11982,3],[12132,3],[12281,3],[12316,3],[12448,3],[12581,3],[12810,3],[13139,3],[13271,3],[13438,3],[15175,8],[15499,4],[15568,8],[15744,9],[16400,8],[16507,8],[19686,4],[20143,4],[20370,3],[21107,8],[21168,8],[23904,3],[27223,3],[27601,3],[27901,3],[29452,3],[29889,3],[31649,3],[33471,3],[35967,3],[36022,3],[37076,3],[38408,3],[39058,4],[41081,9],[41733,8],[41836,9],[41886,9],[41953,8],[42128,8],[42801,8],[42950,8],[43680,8],[45210,8],[46267,8],[47156,8],[48812,8],[48941,8],[49017,8],[49098,8],[49198,8],[49301,8],[49408,8],[49515,8],[52770,3],[54291,3],[57908,3],[58896,3],[60838,3]]},"89":{"position":[[2939,9]]},"90":{"position":[[2657,9]]},"91":{"position":[[3017,9]]},"92":{"position":[[1788,9],[2092,7],[2394,3],[2442,4],[3662,3],[4138,3],[7408,7],[7541,7],[7706,3],[7802,7],[8252,7],[8385,7],[8550,3],[8646,7],[9096,7],[9229,7],[9394,3],[9490,7],[9940,7],[10073,7],[10238,3],[10334,7],[11451,3],[11498,8],[12052,3],[12092,8],[13306,3],[15113,4],[20570,4],[20645,4],[20713,4],[20803,4],[20880,4],[20937,4],[21463,4],[21524,4],[21585,4],[21646,4],[21772,4],[21824,4],[21884,4],[22058,4],[22244,4],[22326,4],[22409,4],[22493,4],[22577,4],[22658,4],[22739,4],[22820,4],[22967,4],[23042,4],[23110,4],[23200,4],[23277,4],[23334,4],[23860,4],[23921,4],[23982,4],[24043,4],[24169,4],[24221,4],[24281,4],[24455,4],[24641,4],[24723,4],[24806,4],[24890,4],[24974,4],[25055,4],[25136,4],[25217,4],[26341,3],[26414,3],[26490,3],[26568,3],[27174,3],[27242,3],[27507,3],[27597,3],[27685,3],[27997,3],[28104,3],[30728,8],[31176,8],[31225,8],[34346,4],[35164,4],[35289,3],[35474,3],[35619,3],[37659,3],[40236,3]]},"93":{"position":[[724,7],[3998,8],[5875,3],[7106,3]]},"94":{"position":[[974,3],[3036,3],[3436,3],[3987,3],[4614,3]]},"97":{"position":[[419,5],[2254,3]]},"101":{"position":[[317,3],[996,3],[3120,3],[3699,3],[4337,3]]},"102":{"position":[[413,5],[2215,3]]},"103":{"position":[[78,4],[139,4],[243,4],[971,3],[2250,3],[2658,3],[3023,3]]},"105":{"position":[[2569,7],[5093,3],[5263,3],[6344,4],[6404,7],[6474,9],[10889,3],[12984,3],[15239,3],[15978,8],[16352,3],[26411,7],[26489,7],[27316,3],[27426,3],[30553,4],[31878,3],[32616,4],[32818,3],[32857,7],[34533,3],[34953,3],[37313,3]]},"106":{"position":[[2842,8],[6273,8],[8387,8],[9273,8],[13114,8],[14959,9],[15422,9],[15539,8],[15642,8],[15736,8],[15806,8],[16612,7],[18494,8],[18829,8],[19219,8],[19521,8],[20610,4]]},"107":{"position":[[754,3],[1557,9],[2283,3],[2473,3],[3992,3],[4091,3],[4413,3],[4929,3],[5291,3],[5884,3],[6243,3]]},"108":{"position":[[1976,3],[2038,8],[3429,3],[3497,3],[5832,7]]},"109":{"position":[[982,3],[3024,3],[3123,3],[3404,3],[3916,3],[4500,3],[4891,3],[5146,3],[8121,3]]},"111":{"position":[[247,4]]},"112":{"position":[[882,5],[1650,5]]},"113":{"position":[[2814,3],[5206,4],[5596,7],[6573,8]]},"115":{"position":[[999,4],[1061,4]]},"116":{"position":[[828,8]]},"124":{"position":[[1754,3],[3041,3],[3136,3],[3235,4],[3582,3],[3828,7],[4077,3],[4433,3],[4592,3],[4630,3],[5025,3],[5824,3],[5890,7],[6072,3],[6110,3],[6337,7],[6503,8],[12585,8],[13342,9],[14724,3],[15024,3],[18054,4],[18133,3],[18283,3]]},"125":{"position":[[2118,3],[2319,3],[3833,3],[4687,3],[7547,7],[7717,8],[13421,8],[13854,9],[14988,3]]},"127":{"position":[[2145,3],[2244,3],[2343,3],[2746,3]]},"128":{"position":[[1006,3],[1149,3],[1221,3],[1610,3],[2371,3],[3953,3],[4180,3],[7326,7],[7365,7],[7787,7],[7921,7],[8218,3],[8537,3],[8737,3],[9676,4],[9710,3],[9742,3],[9854,3],[11116,3],[11430,7],[11704,4],[11823,4],[13299,3],[13630,4],[13777,7],[14360,8],[19041,3],[20021,3],[20828,3],[21103,3],[21306,3],[21453,7],[25470,3],[26189,7],[26851,3],[27088,4],[27280,4],[27469,4]]},"131":{"position":[[3266,3],[3843,3],[3935,3],[4022,3],[6008,3],[15478,9],[15569,9]]},"133":{"position":[[5555,9],[8732,7],[30036,3],[48539,3]]},"134":{"position":[[11558,3]]},"135":{"position":[[3277,8],[6871,3],[6977,3],[7612,7],[7858,7],[11062,3],[12075,9],[12129,8],[12163,7],[12641,8],[12733,8],[12814,8],[14472,3],[15027,9],[15068,3],[15123,3],[15178,3],[15233,3],[15288,3],[15343,3],[15398,3],[15453,3],[18226,4],[19384,4],[20595,4],[22288,3],[22533,9]]},"136":{"position":[[1364,4],[1401,4],[2664,3],[3349,4],[6819,3],[8047,3],[8666,3],[12874,3],[12982,3],[14284,3],[14426,4],[14483,3],[15651,3],[15844,3],[16045,4],[16577,4],[17233,3]]},"137":{"position":[[1544,8],[1734,7],[5460,4],[5754,3],[5974,3],[6043,3],[6591,3],[6828,3],[6880,3],[7457,3],[7828,3],[10864,8],[11283,8],[11356,3],[11428,3],[11595,8],[11674,3],[11760,3]]},"138":{"position":[[1768,3],[3432,8],[4223,7],[4853,3],[5095,3],[5802,3],[5868,7],[6055,7],[11781,8],[11919,9],[11972,9],[12030,9],[12133,7],[12597,9],[13187,3],[17504,4],[17583,3],[17733,3]]},"139":{"position":[[3278,8],[4010,9],[6173,3],[6242,3],[6719,3],[6847,3],[6969,3],[7088,3],[8160,3],[8232,3],[11715,3],[13176,8],[13365,8],[13944,8],[14505,8],[14565,8],[14924,9],[15006,9],[19892,3],[21119,3],[24998,9],[25051,8],[25060,3],[25440,7],[25538,3]]},"140":{"position":[[3526,9],[4982,3],[5051,3],[9085,3],[10419,8],[10579,8],[10630,8],[10764,8],[11400,8],[11459,8],[11809,9],[18286,3],[19204,3],[22893,9],[22946,8],[22955,3],[23360,7],[23458,3]]},"141":{"position":[[2116,3],[2251,3]]},"142":{"position":[[2406,7],[5337,8],[8045,3],[8151,3],[12088,3],[13236,9],[13290,8],[13324,7],[14254,8],[14347,8],[14429,8],[16658,3],[17470,9],[17512,3],[17568,3],[17624,3],[17680,3],[17736,3],[17792,3],[17848,3],[17904,3],[19250,7],[20218,4],[21277,4],[22389,4],[24001,3],[24283,9]]},"143":{"position":[[1043,3],[8239,3],[12963,4]]},"144":{"position":[[1175,3],[2763,9],[3125,3],[4799,3],[4898,3],[5175,3],[5478,3],[5809,3],[6129,3],[6456,3],[6661,3],[7009,3],[7300,4],[7596,3],[8098,3],[8575,3],[9158,3],[9785,3],[12736,3]]},"145":{"position":[[2943,3],[2947,8],[3119,3],[3494,9],[4818,3],[4917,3],[5300,3],[5656,8],[5811,3],[5896,3],[5984,3],[6649,3],[7217,3],[7670,3],[8279,3],[8632,3],[9039,3],[9478,3],[9563,3],[9651,3]]},"146":{"position":[[1526,8],[2407,8],[2665,7],[2705,7],[2844,7],[2960,7],[4195,3],[4241,7],[4301,7],[6851,3],[13047,3],[13484,3],[13832,3],[16345,8]]},"147":{"position":[[3099,3],[3404,3],[4828,3],[4937,3],[6648,8]]},"148":{"position":[[2562,3],[3574,3],[4800,3],[7781,3],[10722,4]]},"149":{"position":[[902,3],[8740,4],[8783,4],[8834,4],[8951,4],[8992,4]]},"150":{"position":[[3375,9],[4098,3],[4250,3],[4418,3],[4568,3],[4744,3],[4904,3],[5087,3],[5206,3],[5314,3],[6051,3],[8062,8],[9670,3],[9715,3],[9759,8],[15048,3],[15401,3],[21584,4],[26853,3]]},"151":{"position":[[1022,9],[3062,3]]},"152":{"position":[[326,4],[1867,4],[2615,4],[7431,4]]},"287":{"position":[[2,8],[143,8]]},"289":{"position":[[6,8],[194,8],[553,8]]},"291":{"position":[[16,3],[118,3]]},"292":{"position":[[642,3]]}}}],["set)interfac",{"_index":8397,"t":{},"d":{},"k":{},"b":{"152":{"position":[[7371,13]]}}}],["set_tim",{"_index":6957,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7636,8],[8111,11],[8648,11]]}}}],["set_time1",{"_index":6979,"t":{},"d":{},"k":{},"b":{"136":{"position":[[9300,12]]}}}],["set_time1.tim",{"_index":6977,"t":{},"d":{},"k":{},"b":{"136":{"position":[[9242,17],[9663,17]]}}}],["setdasa",{"_index":3910,"t":{},"d":{},"k":{},"b":{"87":{"position":[[9241,7]]},"88":{"position":[[5721,10],[5762,7],[5897,7],[6062,8]]}}}],["setmrl",{"_index":4263,"t":{},"d":{},"k":{},"b":{"88":{"position":[[43404,6],[43543,6]]}}}],["setmrl/getmrl",{"_index":4056,"t":{},"d":{},"k":{},"b":{"88":{"position":[[12047,13],[12196,13]]}}}],["setmwl",{"_index":4260,"t":{},"d":{},"k":{},"b":{"88":{"position":[[43302,6]]}}}],["setmwl/getmwl",{"_index":4053,"t":{},"d":{},"k":{},"b":{"88":{"position":[[11896,13]]}}}],["settabl",{"_index":6894,"t":{},"d":{},"k":{},"b":{"135":{"position":[[22672,8]]}}}],["setting(titcr1a",{"_index":4956,"t":{},"d":{},"k":{},"b":{"105":{"position":[[18809,16],[18916,16]]}}}],["setting(titcr1b",{"_index":4960,"t":{},"d":{},"k":{},"b":{"105":{"position":[[19023,16],[19130,16]]}}}],["setting(titcr2a",{"_index":4963,"t":{},"d":{},"k":{},"b":{"105":{"position":[[19249,16]]}}}],["setting(titcr2b",{"_index":4965,"t":{},"d":{},"k":{},"b":{"105":{"position":[[19368,16]]}}}],["setup",{"_index":2473,"t":{},"d":{},"k":{},"b":{"75":{"position":[[28146,5]]},"80":{"position":[[976,5]]},"88":{"position":[[36923,5]]},"113":{"position":[[12093,5],[12163,5]]},"141":{"position":[[10543,5]]}}}],["seven",{"_index":3120,"t":{},"d":{},"k":{},"b":{"80":{"position":[[1861,5]]},"83":{"position":[[3154,5],[42562,5]]},"105":{"position":[[27106,5]]}}}],["sever",{"_index":2430,"t":{},"d":{},"k":{},"b":{"75":{"position":[[21676,8],[24970,7]]},"76":{"position":[[10665,7],[16455,7]]},"84":{"position":[[7938,7]]}}}],["sf_cryoto_err.h",{"_index":5857,"t":{},"d":{},"k":{},"b":{"113":{"position":[[15618,15]]}}}],["sfdp",{"_index":8241,"t":{},"d":{},"k":{},"b":{"150":{"position":[[13667,8]]}}}],["sfr",{"_index":4114,"t":{},"d":{},"k":{},"b":{"88":{"position":[[18845,6],[18856,3],[39270,4]]}}}],["shall",{"_index":63,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1142,5]]}}}],["share",{"_index":2163,"t":{},"d":{},"k":{},"b":{"74":{"position":[[3173,6]]},"75":{"position":[[16809,6],[17044,6]]},"83":{"position":[[19129,6],[19541,6]]},"93":{"position":[[112,6]]},"94":{"position":[[300,6]]},"95":{"position":[[759,6],[1060,6],[1153,6]]},"96":{"position":[[909,6]]},"98":{"position":[[701,6],[1001,6],[1094,6]]},"99":{"position":[[738,6],[1037,6],[1130,6]]},"100":{"position":[[888,6]]},"104":{"position":[[680,6],[978,6],[1071,6]]},"111":{"position":[[34,6]]},"113":{"position":[[38,5]]},"127":{"position":[[1865,6],[1969,6]]},"128":{"position":[[3419,5],[3468,5],[3840,5],[5887,5],[6166,5],[7006,7]]},"141":{"position":[[2600,6]]},"147":{"position":[[3601,6]]},"151":{"position":[[1992,6]]},"152":{"position":[[127,6]]}}}],["shift",{"_index":2691,"t":{},"d":{},"k":{},"b":{"76":{"position":[[10894,5],[16684,5]]},"83":{"position":[[24334,5]]},"105":{"position":[[14631,5],[31270,5]]},"106":{"position":[[2695,5],[2705,5],[2724,5],[2744,5],[2764,5],[2774,5],[2836,5],[6145,5],[6155,5],[6174,5],[6194,5],[6214,5],[6224,5],[6267,5],[8262,5],[8272,5],[8291,5],[8311,5],[8331,5],[8341,5],[8381,5],[15533,5],[15636,5],[15730,5],[18488,5],[18540,6],[18583,5],[18625,5],[18667,5],[18823,5],[18891,6],[18950,5],[19008,5],[19066,5],[19213,5],[19265,6],[19308,5],[19350,5],[19392,5]]},"135":{"position":[[1430,5]]},"142":{"position":[[1571,5],[1688,5]]}}}],["short",{"_index":5215,"t":{},"d":{},"k":{},"b":{"106":{"position":[[10018,5],[10044,5],[10148,5],[10176,5],[10202,5],[10323,5],[10382,5],[10408,5],[10516,5],[15013,5],[16978,5],[17035,5]]},"107":{"position":[[9425,5]]},"116":{"position":[[633,5]]},"124":{"position":[[3858,5],[3881,5],[13173,5],[13984,5]]},"151":{"position":[[445,5],[1778,5]]}}}],["short_circuit_count_h",{"_index":5279,"t":{},"d":{},"k":{},"b":{"106":{"position":[[16955,21]]}}}],["short_circuit_count_l",{"_index":5280,"t":{},"d":{},"k":{},"b":{"106":{"position":[[17073,21]]}}}],["short_circuit_detection_en",{"_index":5253,"t":{},"d":{},"k":{},"b":{"106":{"position":[[14981,30]]}}}],["shorter",{"_index":2391,"t":{},"d":{},"k":{},"b":{"75":{"position":[[19264,7]]},"80":{"position":[[4905,7]]},"82":{"position":[[6780,7]]},"83":{"position":[[17602,7]]},"105":{"position":[[11756,7]]},"138":{"position":[[7029,7]]}}}],["shot",{"_index":231,"t":{},"d":{},"k":{},"b":{"67":{"position":[[130,4]]},"76":{"position":[[1352,4],[2456,4],[2497,4],[2565,4],[5680,4],[6365,4],[6411,4],[6435,4],[6780,4],[6814,4],[6917,4],[16368,4],[22850,4],[22887,4],[22980,4]]},"83":{"position":[[2056,4],[5414,4],[5429,4],[5625,5],[5686,4],[5753,4],[16567,4],[16612,4],[16636,4],[16908,4],[16952,4],[17118,4],[17221,4],[32443,4],[32579,4],[32937,4],[46620,4],[46664,4],[47236,4]]},"84":{"position":[[1253,4],[2862,4],[2903,4],[2971,4],[5542,4],[5587,4],[5611,4],[11144,4],[15441,4],[15478,4],[15570,4]]},"105":{"position":[[4789,5],[4850,4],[4917,4]]},"131":{"position":[[480,4],[2355,4],[12149,4],[17386,4]]},"132":{"position":[[3521,4]]},"144":{"position":[[158,4],[12261,4]]}}}],["shouldn't",{"_index":2064,"t":{},"d":{},"k":{},"b":{"71":{"position":[[44303,9]]}}}],["show",{"_index":786,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10805,5],[13671,5]]},"69":{"position":[[16141,5]]},"76":{"position":[[10229,5]]},"83":{"position":[[23695,5],[25232,5],[26483,5]]},"84":{"position":[[7499,5]]},"89":{"position":[[3104,4]]},"90":{"position":[[2822,4]]},"91":{"position":[[3183,4]]},"105":{"position":[[13771,5],[15552,5]]},"124":{"position":[[7204,5]]},"125":{"position":[[6124,5],[8211,5]]},"128":{"position":[[6616,5]]},"133":{"position":[[7963,5]]},"138":{"position":[[7799,5]]},"139":{"position":[[4057,4]]},"140":{"position":[[3573,4]]},"146":{"position":[[7222,5],[9969,5]]},"150":{"position":[[12706,5]]}}}],["shown",{"_index":669,"t":{},"d":{},"k":{},"b":{"68":{"position":[[2442,5],[4915,5],[9231,5]]},"71":{"position":[[2765,5]]},"75":{"position":[[14987,5],[18625,5]]},"76":{"position":[[6868,5],[7097,5]]},"83":{"position":[[17172,5],[17741,5],[17972,5],[18114,5]]},"84":{"position":[[3395,5],[5949,5]]},"124":{"position":[[3443,5],[4832,5]]},"125":{"position":[[3640,5]]},"128":{"position":[[15666,6],[20184,5],[20463,5],[26565,5]]}}}],["side",{"_index":5546,"t":{},"d":{},"k":{},"b":{"113":{"position":[[1837,5]]}}}],["sign",{"_index":5103,"t":{},"d":{},"k":{},"b":{"106":{"position":[[1902,4],[1959,4],[2017,4],[2075,4],[2133,4],[2190,4],[2247,4],[2304,4],[2361,4],[13361,4],[15989,6],[16086,6],[16187,6],[16305,6],[16424,6],[16547,6],[16816,6],[16918,6],[17213,6],[17351,6]]},"107":{"position":[[7907,5],[8004,5],[8101,5],[8198,5],[8294,5],[8390,5],[8486,5],[8582,5],[8678,5]]}}}],["signal",{"_index":694,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3946,6],[8608,8]]},"69":{"position":[[9784,6],[32051,6]]},"72":{"position":[[359,7]]},"76":{"position":[[1449,6],[5685,8],[5723,6],[6819,7],[7048,7]]},"79":{"position":[[1604,6],[3340,7],[3420,7],[6435,6],[6762,6],[13973,7],[14584,7]]},"80":{"position":[[338,7],[770,7],[1300,7],[1430,6],[3062,9],[3328,7],[3527,7],[3568,7],[3616,7],[3633,7],[3675,7],[3752,7],[4769,7],[4930,7],[4968,6],[10548,6]]},"81":{"position":[[1005,7],[2382,7],[2594,7],[2627,7],[4368,7]]},"83":{"position":[[1740,8],[1808,6],[2196,6],[15567,8],[15645,8],[17123,7],[17692,7],[17829,6],[17923,7],[18065,7],[37903,6],[37968,7],[38035,6],[38220,7]]},"84":{"position":[[5900,7]]},"88":{"position":[[22065,9],[22088,9]]},"89":{"position":[[772,7],[1390,7],[2266,6]]},"90":{"position":[[772,7],[2117,6]]},"91":{"position":[[789,7],[1400,7],[2359,6]]},"92":{"position":[[15899,6]]},"105":{"position":[[1557,8],[1625,6],[2092,6],[11063,8],[11141,8],[11855,7],[11867,6]]},"108":{"position":[[3050,6]]},"109":{"position":[[8063,6]]},"113":{"position":[[4210,6]]},"131":{"position":[[5223,6]]},"133":{"position":[[5200,6],[5836,8],[7818,6]]},"134":{"position":[[2137,6],[3436,6]]},"135":{"position":[[1539,6],[12383,6],[12875,6],[14181,6],[14231,6],[14740,6]]},"136":{"position":[[3763,6],[3817,6]]},"139":{"position":[[13397,6],[13480,7],[13535,6],[13632,6],[13788,6],[17295,7],[17356,6],[17451,6]]},"140":{"position":[[10796,6],[10877,7],[10930,6],[13553,7],[13612,6],[13705,6]]},"142":{"position":[[6538,6],[13712,6],[14491,6],[16085,6],[16136,6],[18180,6]]},"144":{"position":[[10994,6],[11054,6],[11200,6],[11267,6],[11368,6],[11428,6],[11488,6]]},"146":{"position":[[18127,6]]},"148":{"position":[[3884,6]]}}}],["signifi",{"_index":1963,"t":{},"d":{},"k":{},"b":{"71":{"position":[[28976,7],[30750,7],[31551,7],[33325,7]]}}}],["significantli",{"_index":7095,"t":{},"d":{},"k":{},"b":{"138":{"position":[[6485,14]]}}}],["similar",{"_index":5873,"t":{},"d":{},"k":{},"b":{"116":{"position":[[1149,7]]},"141":{"position":[[10702,7]]}}}],["similarli",{"_index":1040,"t":{},"d":{},"k":{},"b":{"69":{"position":[[11964,10]]}}}],["simpl",{"_index":1779,"t":{},"d":{},"k":{},"b":{"71":{"position":[[5072,6]]},"116":{"position":[[1299,6]]},"138":{"position":[[1095,6]]}}}],["simple_exampl",{"_index":4375,"t":{},"d":{},"k":{},"b":{"89":{"position":[[3497,14]]},"90":{"position":[[3143,14]]},"91":{"position":[[3579,14]]}}}],["simpli",{"_index":6257,"t":{},"d":{},"k":{},"b":{"128":{"position":[[16563,6]]}}}],["simultan",{"_index":6886,"t":{},"d":{},"k":{},"b":{"135":{"position":[[20416,14]]},"141":{"position":[[5292,14]]},"142":{"position":[[22210,14]]}}}],["sinc",{"_index":5211,"t":{},"d":{},"k":{},"b":{"106":{"position":[[9183,4],[9256,4],[15789,4],[15835,4],[15887,4],[19504,4]]}}}],["sinc_filter_mod",{"_index":5261,"t":{},"d":{},"k":{},"b":{"106":{"position":[[15771,16]]}}}],["sincdec",{"_index":5263,"t":{},"d":{},"k":{},"b":{"106":{"position":[[15878,7]]}}}],["sincrng",{"_index":5262,"t":{},"d":{},"k":{},"b":{"106":{"position":[[15826,7]]}}}],["singl",{"_index":233,"t":{},"d":{},"k":{},"b":{"67":{"position":[[140,7],[12339,6]]},"68":{"position":[[1915,6],[2170,6],[3329,6],[3355,6],[5270,6],[5313,6],[5333,6],[5452,6],[7059,6],[7812,6],[27524,6],[28175,6]]},"69":{"position":[[1645,6],[1691,6],[2922,6],[2964,6],[3222,7],[10315,6],[10543,6],[10563,6],[10690,6],[12169,6],[34924,6],[35575,6]]},"79":{"position":[[5989,6],[18726,6]]},"80":{"position":[[2082,6],[10634,6]]},"81":{"position":[[2416,6]]},"83":{"position":[[5642,6],[30897,6],[31096,6],[43095,6]]},"92":{"position":[[7068,6],[7135,6],[7166,6],[7253,6],[7273,6],[7355,6],[7375,6],[7481,6],[7508,6],[7615,6],[7770,6],[7886,6],[7912,6],[7979,6],[8010,6],[8097,6],[8117,6],[8199,6],[8219,6],[8325,6],[8352,6],[8459,6],[8614,6],[8730,6],[8756,6],[8823,6],[8854,6],[8941,6],[8961,6],[9043,6],[9063,6],[9169,6],[9196,6],[9303,6],[9458,6],[9574,6],[9600,6],[9667,6],[9698,6],[9785,6],[9805,6],[9887,6],[9907,6],[10013,6],[10040,6],[10147,6],[10302,6],[10418,6],[11641,6],[11777,6],[11879,6],[11922,6],[12028,6],[12270,6],[12480,6],[12526,6],[17210,6],[17358,6],[17430,6],[17490,6],[17549,6],[19048,6],[27059,6],[27198,6],[27265,6]]},"105":{"position":[[4806,6]]},"124":{"position":[[6650,6],[9812,6]]},"125":{"position":[[2912,6],[7969,6]]},"127":{"position":[[1460,6]]},"138":{"position":[[7443,6],[9706,6]]},"143":{"position":[[2501,6]]},"145":{"position":[[15717,6],[16618,6],[16730,6]]},"146":{"position":[[1615,6]]},"291":{"position":[[4,6],[106,6]]}}}],["single_channel_multi_slav",{"_index":5941,"t":{},"d":{},"k":{},"b":{"124":{"position":[[10625,26]]},"138":{"position":[[9822,26]]}}}],["sit",{"_index":6258,"t":{},"d":{},"k":{},"b":{"128":{"position":[[17010,3],[17293,3]]}}}],["situat",{"_index":4660,"t":{},"d":{},"k":{},"b":{"92":{"position":[[30117,10]]},"128":{"position":[[7135,9]]},"138":{"position":[[14062,10],[16898,10]]},"141":{"position":[[10710,9]]}}}],["six",{"_index":3575,"t":{},"d":{},"k":{},"b":{"83":{"position":[[42512,3]]},"105":{"position":[[27055,3]]}}}],["sixteen",{"_index":1155,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22507,7]]}}}],["size",{"_index":311,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1979,4]]},"71":{"position":[[6532,4],[6669,4],[6870,4],[7388,4],[9784,4],[9877,4],[9967,4],[10060,4],[10227,4],[10361,4],[31385,5],[33960,5]]},"75":{"position":[[3897,4],[4537,4],[5264,4],[5991,4],[6718,4],[7445,4],[8172,4],[8899,4],[9626,4],[17989,4],[18073,4],[31517,4]]},"76":{"position":[[2874,4],[2903,4],[13045,5]]},"79":{"position":[[2479,4],[2592,5],[2617,4],[2735,5],[12818,4],[12837,4]]},"88":{"position":[[7276,5],[7398,5],[19548,4],[20199,4],[38965,4]]},"93":{"position":[[473,4],[8587,4]]},"106":{"position":[[13061,5],[21970,4]]},"113":{"position":[[7650,4],[7881,4],[7947,4],[8455,4],[8521,4],[14443,4],[15156,4]]},"125":{"position":[[1217,4]]},"127":{"position":[[6861,4]]},"128":{"position":[[4087,4],[4291,4],[4372,4],[4469,4],[9351,4],[11927,5],[12042,5],[16465,4],[23396,4],[24726,4]]},"138":{"position":[[15086,4],[16266,4]]},"139":{"position":[[10886,4],[19680,4],[20920,4]]},"140":{"position":[[8256,4]]},"141":{"position":[[4125,4],[4985,4],[5974,4]]},"143":{"position":[[932,5],[999,4],[1005,4],[2427,4],[2525,4],[3100,6]]},"145":{"position":[[2790,4],[2871,4],[12438,4],[12457,4]]},"147":{"position":[[5413,4],[6131,4]]},"150":{"position":[[4115,4],[4244,5],[4267,4],[4434,4],[4562,5],[4584,4],[4760,4],[4898,5],[4925,4],[8027,4],[8330,4],[8374,4],[11864,4],[11981,5],[12186,5],[12734,4],[12830,4],[12858,4],[14856,4],[15213,4],[15440,4],[15517,4],[16618,4],[16663,4],[16708,4],[16753,4],[16799,4],[16846,4],[16893,4],[24161,5],[24492,4]]},"151":{"position":[[3027,4]]}}}],["size/length",{"_index":5573,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3233,11]]}}}],["size_t",{"_index":5085,"t":{},"d":{},"k":{},"b":{"106":{"position":[[164,6],[21443,6]]},"107":{"position":[[2989,6],[4233,6]]},"128":{"position":[[12495,7]]}}}],["sizemcu",{"_index":2295,"t":{},"d":{},"k":{},"b":{"75":{"position":[[3865,7],[4486,7],[5213,7],[5940,7],[6667,7],[7394,7],[8121,7],[8848,7],[9575,7]]}}}],["sizemust",{"_index":6156,"t":{},"d":{},"k":{},"b":{"128":{"position":[[4038,8],[8906,8],[25668,8]]},"150":{"position":[[4173,8],[4491,8],[4822,8]]}}}],["sizeof(buff",{"_index":5240,"t":{},"d":{},"k":{},"b":{"106":{"position":[[13952,15]]}}}],["sizeof(can_frame_t",{"_index":2468,"t":{},"d":{},"k":{},"b":{"75":{"position":[[27270,21]]}}}],["sizeof(g_data_8bit",{"_index":2853,"t":{},"d":{},"k":{},"b":{"77":{"position":[[3924,19]]}}}],["sizeof(g_data_8bit[0",{"_index":2854,"t":{},"d":{},"k":{},"b":{"77":{"position":[[3946,23]]}}}],["sizeof(g_out_of_band_receiv",{"_index":7205,"t":{},"d":{},"k":{},"b":{"139":{"position":[[10731,31]]},"140":{"position":[[8101,31]]}}}],["sizeof(ibi_write_buff",{"_index":4204,"t":{},"d":{},"k":{},"b":{"88":{"position":[[36136,26]]}}}],["sizeof(p_ibi_read_buff",{"_index":4194,"t":{},"d":{},"k":{},"b":{"88":{"position":[[33609,27]]}}}],["sizeof(p_read_buff",{"_index":4160,"t":{},"d":{},"k":{},"b":{"88":{"position":[[25170,22],[27722,22]]}}}],["sizeof(p_read_data",{"_index":4187,"t":{},"d":{},"k":{},"b":{"88":{"position":[[32530,20]]}}}],["sizeof(p_write_buff",{"_index":4155,"t":{},"d":{},"k":{},"b":{"88":{"position":[[24881,23],[28030,23]]}}}],["sizeof(p_write_data",{"_index":4184,"t":{},"d":{},"k":{},"b":{"88":{"position":[[32247,21]]}}}],["sizeof(read_buff",{"_index":4219,"t":{},"d":{},"k":{},"b":{"88":{"position":[[38600,20]]}}}],["skip",{"_index":884,"t":{},"d":{},"k":{},"b":{"68":{"position":[[20136,8]]},"71":{"position":[[5743,4]]},"83":{"position":[[3139,8],[14368,8],[14520,9],[14544,4],[14648,7],[14675,4],[14730,8],[14751,4],[14824,5],[14859,8],[14870,4],[15055,4],[19981,8],[20008,8],[20158,4],[20221,8],[20324,8],[20379,8],[20415,5],[29746,9],[29832,4],[29915,4],[29935,8],[41313,8],[41378,4],[41452,4],[41563,9],[41573,4],[41820,9],[41830,4],[42142,4],[42208,4],[42254,4],[42303,4],[42353,4],[42405,4],[42456,4],[42507,4],[42557,4],[42704,4],[42726,8],[42782,4],[42826,4],[42872,4],[42924,4]]},"105":{"position":[[2677,8],[9422,8],[9490,8],[9553,8],[9590,4],[9606,4],[9637,4],[9683,5],[9719,8],[9756,4],[9772,4],[9803,4],[9849,5],[9885,8],[9930,4],[9946,4],[9977,4],[10031,5],[10066,8],[10134,8],[10197,8],[10234,4],[10250,4],[10281,4],[10327,5],[10362,8],[10399,4],[10415,4],[10446,4],[10492,5],[10527,8],[10572,4],[10588,4],[10619,4],[10673,5],[11973,8],[12000,8],[12150,4],[18402,8],[18506,8],[18794,8],[18901,8],[19008,8],[19115,8],[19234,8],[19353,8],[26347,8],[26678,4],[26745,4],[26792,4],[26842,4],[26893,4],[26946,4],[26998,4],[27050,4],[27101,4]]},"106":{"position":[[9059,8],[9106,8]]}}}],["slave",{"_index":2991,"t":{"86":{"position":[[49,5]]},"125":{"position":[[49,5]]}},"d":{},"k":{},"b":{"79":{"position":[[6923,5]]},"85":{"position":[[1429,5],[1455,5],[1521,5],[3657,6],[6142,6],[6226,5],[6475,5]]},"86":{"position":[[40,5],[79,5],[146,5],[292,5],[1237,5],[1263,5],[1328,5],[2821,5],[3567,5],[4015,5],[4469,5],[5166,5],[5619,5],[7388,6],[7486,6],[7587,6],[7651,6],[7724,6],[7790,6]]},"87":{"position":[[806,5],[1225,6],[2394,5],[2430,5],[2785,6],[3839,5],[8059,5],[8633,5],[9348,5],[10564,5],[10625,5],[11135,5],[11267,5],[11932,5],[13384,5],[14889,5],[14947,5],[15340,7],[16137,5],[16192,5],[17391,5],[17789,5],[18182,5],[18781,5],[18900,5]]},"88":{"position":[[1839,5],[3265,5],[6071,5],[6085,5],[6313,5],[6484,5],[6621,5],[7212,5],[7284,5],[7367,5],[11346,5],[11466,5],[11498,5],[11617,5],[11654,5],[11850,6],[11859,5],[12010,5],[12159,5],[12345,5],[12479,5],[12611,5],[12851,5],[13030,5],[13171,5],[13337,5],[14310,5],[14317,5],[14698,6],[14896,6],[17111,5],[17125,5],[18407,5],[18500,5],[18561,5],[18694,5],[18717,5],[19010,5],[20025,5],[20177,5],[20318,5],[20594,5],[26139,5],[26353,5],[26423,5],[27385,5],[29190,5],[29626,5],[33035,5],[33529,6],[35592,5],[35686,5],[35842,5],[35873,5],[37773,5],[38175,5],[38275,5],[38507,5],[40538,5],[42818,5],[42938,5],[50230,5],[53667,5],[53687,5],[53940,5],[54566,5],[55115,5],[55337,5],[56281,5],[56806,5],[57380,5],[60015,5],[60322,5]]},"112":{"position":[[2086,5],[2182,5]]},"115":{"position":[[576,5],[611,5]]},"124":{"position":[[550,6],[1174,5],[1668,5],[1704,5],[1777,5],[1922,5],[2400,5],[2489,5],[2540,5],[3612,5],[3668,5],[3731,5],[3765,5],[6712,5],[7449,6],[8471,5],[9023,5],[9740,5],[9873,5],[10178,6],[11014,5],[11481,5],[17876,6],[18094,5],[18183,5],[18274,5]]},"125":{"position":[[707,5],[1056,5],[1243,5],[1786,5],[1893,5],[2754,6],[3048,6],[3057,5],[3113,5],[3183,5],[3279,5],[3537,5],[4787,5],[4824,5],[5758,5],[6027,5],[6134,5],[6186,5],[6212,5],[6492,5],[6694,5],[7040,5],[7215,5],[7262,5],[7359,5],[7448,6],[7464,5],[8054,5],[8465,6],[9060,6],[10744,5],[11247,5],[11593,5],[12134,5],[12523,5],[14456,5],[14506,5],[15650,5],[16760,5]]},"127":{"position":[[2788,5],[2844,5]]},"129":{"position":[[537,5],[12621,5]]},"131":{"position":[[5069,6],[8220,6]]},"133":{"position":[[225,5],[51463,5]]},"135":{"position":[[981,5],[2396,5],[2792,5],[2862,5],[6012,5],[7623,5],[7869,5],[7937,6],[8166,5],[9174,5],[9242,5],[9415,5],[9513,5],[9820,5],[10245,5],[10476,5],[10901,5],[12696,5],[14127,5]]},"138":{"position":[[608,6],[1167,5],[1682,5],[1718,5],[1791,5],[2004,5],[2510,5],[2599,5],[2650,5],[3179,5],[3235,5],[7510,5],[8351,5],[8910,5],[9634,5],[9772,5],[10218,5],[10692,5],[17326,6],[17544,5],[17633,5],[17724,5]]},"141":{"position":[[1704,5],[9738,5],[9860,6],[10757,6]]},"142":{"position":[[1017,5],[3590,5],[4520,5],[4590,5],[4687,5],[6736,5],[8819,6],[9048,5],[10176,5],[10244,5],[10416,5],[10514,5],[10829,5],[11263,5],[11494,5],[11928,5],[13776,5],[14310,5],[16030,5],[16267,5]]},"143":{"position":[[5639,5],[5749,5]]},"150":{"position":[[6318,5]]},"152":{"position":[[3033,5],[3127,5],[6972,5],[7005,5]]}}}],["slave'",{"_index":4304,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47185,7]]}}}],["slave_command_response_info",{"_index":4303,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47119,27]]}}}],["slave_device_cfg",{"_index":4169,"t":{},"d":{},"k":{},"b":{"88":{"position":[[26642,16],[27318,19]]}}}],["slave_info",{"_index":3862,"t":{},"d":{},"k":{},"b":{"87":{"position":[[2730,10]]},"88":{"position":[[27020,11]]}}}],["slaveaddressset",{"_index":3728,"t":{},"d":{},"k":{},"b":{"85":{"position":[[3591,15],[6000,15]]},"124":{"position":[[6759,15]]},"138":{"position":[[7557,15]]}}}],["slavestatusset",{"_index":3890,"t":{},"d":{},"k":{},"b":{"87":{"position":[[5889,14],[9836,14]]}}}],["slave’",{"_index":4272,"t":{},"d":{},"k":{},"b":{"88":{"position":[[44112,7]]}}}],["sleep",{"_index":2229,"t":{},"d":{},"k":{},"b":{"74":{"position":[[8948,5]]},"75":{"position":[[32642,5]]},"131":{"position":[[4692,5],[5473,5],[6859,5]]},"149":{"position":[[1817,5],[8408,5],[8496,5],[8583,5]]}}}],["slew",{"_index":4451,"t":{},"d":{},"k":{},"b":{"92":{"position":[[2082,4],[21837,4],[21897,4],[24234,4],[24294,4]]}}}],["slice",{"_index":6152,"t":{},"d":{},"k":{},"b":{"128":{"position":[[3663,6],[5852,7],[5921,6],[6953,6],[7028,6],[7482,6],[9894,7],[9943,7],[10021,8],[10220,7]]}}}],["slightli",{"_index":2090,"t":{},"d":{},"k":{},"b":{"71":{"position":[[45618,8]]},"128":{"position":[[6211,8]]},"139":{"position":[[3714,8]]},"140":{"position":[[3230,8],[4175,8]]}}}],["slope",{"_index":327,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2311,5],[11205,5]]}}}],["slope_microvolt",{"_index":326,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2274,16]]}}}],["slow",{"_index":3542,"t":{},"d":{},"k":{},"b":{"83":{"position":[[38559,4]]},"88":{"position":[[21265,4],[21322,4]]},"92":{"position":[[2100,6],[21850,5],[24247,5]]},"105":{"position":[[25783,4],[26208,4]]},"136":{"position":[[2882,5],[3150,4]]},"138":{"position":[[6632,6]]}}}],["slower",{"_index":6889,"t":{},"d":{},"k":{},"b":{"135":{"position":[[22367,6]]},"138":{"position":[[7142,6]]},"142":{"position":[[24055,6]]}}}],["small",{"_index":2092,"t":{},"d":{},"k":{},"b":{"71":{"position":[[45820,5]]},"79":{"position":[[7464,6]]}}}],["smaller",{"_index":2337,"t":{},"d":{},"k":{},"b":{"75":{"position":[[14007,7]]},"150":{"position":[[8405,8]]}}}],["smallest",{"_index":4026,"t":{},"d":{},"k":{},"b":{"88":{"position":[[4797,8]]},"116":{"position":[[38,8]]},"139":{"position":[[3296,8]]},"152":{"position":[[527,8]]}}}],["smarc",{"_index":4520,"t":{},"d":{},"k":{},"b":{"92":{"position":[[14534,5]]}}}],["smell",{"_index":6624,"t":{},"d":{},"k":{},"b":{"133":{"position":[[7995,5]]}}}],["snfr_valu",{"_index":7117,"t":{},"d":{},"k":{},"b":{"138":{"position":[[12108,10]]}}}],["snippet",{"_index":2581,"t":{},"d":{},"k":{},"b":{"75":{"position":[[38060,7]]},"116":{"position":[[999,8]]}}}],["snoop",{"_index":2829,"t":{},"d":{},"k":{},"b":{"77":{"position":[[2202,5],[2288,5],[2441,5],[2455,5],[4305,5],[4349,5],[4524,5],[4549,5],[4659,5],[8049,5],[8812,9]]},"78":{"position":[[298,8],[1114,5],[3016,9],[3294,9],[5562,5],[5638,5],[5684,5]]}}}],["snoop_address",{"_index":2899,"t":{},"d":{},"k":{},"b":{"78":{"position":[[1090,13]]}}}],["snoopdis",{"_index":2904,"t":{},"d":{},"k":{},"b":{"78":{"position":[[1678,12],[3162,12]]}}}],["snoopen",{"_index":2903,"t":{},"d":{},"k":{},"b":{"78":{"position":[[1605,11],[2854,11]]}}}],["so",{"_index":5671,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7274,4],[7357,3],[7403,3],[7421,3]]}}}],["sof",{"_index":5664,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6923,3]]}}}],["sof0",{"_index":5669,"t":{},"d":{},"k":{},"b":{"113":{"position":[[7108,4],[7258,4],[7320,5]]}}}],["sof1",{"_index":5658,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6792,4]]}}}],["soff",{"_index":5659,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6800,4]]}}}],["softwar",{"_index":2,"t":{"0":{"position":[[13,8]]},"1":{"position":[[13,8]]},"2":{"position":[[13,8]]},"3":{"position":[[13,8]]},"4":{"position":[[13,8]]},"5":{"position":[[13,8]]},"6":{"position":[[13,8]]},"7":{"position":[[13,8]]},"8":{"position":[[13,8]]},"9":{"position":[[13,8]]},"10":{"position":[[13,8]]},"11":{"position":[[13,8]]},"12":{"position":[[13,8]]},"13":{"position":[[13,8]]},"14":{"position":[[13,8]]},"15":{"position":[[13,8]]},"16":{"position":[[13,8]]},"17":{"position":[[13,8]]},"18":{"position":[[13,8]]},"19":{"position":[[13,8]]},"20":{"position":[[13,8]]},"21":{"position":[[13,8]]},"22":{"position":[[13,8]]},"23":{"position":[[13,8]]},"24":{"position":[[13,8]]},"25":{"position":[[13,8]]},"26":{"position":[[13,8]]},"27":{"position":[[13,8]]},"28":{"position":[[13,8]]},"29":{"position":[[13,8]]},"30":{"position":[[13,8]]},"31":{"position":[[13,8]]},"32":{"position":[[13,8]]},"33":{"position":[[13,8]]},"34":{"position":[[13,8]]},"35":{"position":[[13,8]]},"36":{"position":[[13,8]]},"37":{"position":[[13,8]]},"38":{"position":[[13,8]]},"39":{"position":[[13,8]]},"40":{"position":[[13,8]]},"41":{"position":[[13,8]]},"42":{"position":[[13,8]]},"43":{"position":[[13,8]]},"44":{"position":[[13,8]]},"45":{"position":[[13,8]]},"46":{"position":[[13,8]]},"47":{"position":[[13,8]]},"48":{"position":[[13,8]]},"49":{"position":[[13,8]]},"50":{"position":[[13,8]]},"51":{"position":[[13,8]]},"52":{"position":[[13,8]]},"53":{"position":[[13,8]]},"54":{"position":[[13,8]]},"55":{"position":[[13,8]]},"56":{"position":[[13,8]]},"57":{"position":[[13,8]]},"58":{"position":[[13,8]]},"59":{"position":[[13,8]]},"60":{"position":[[13,8]]},"61":{"position":[[13,8]]},"62":{"position":[[13,8]]},"63":{"position":[[13,8]]},"64":{"position":[[13,8]]},"65":{"position":[[13,8]]},"66":{"position":[[13,8]]},"67":{"position":[[13,8]]},"68":{"position":[[13,8]]},"69":{"position":[[13,8]]},"70":{"position":[[13,8]]},"71":{"position":[[13,8]]},"72":{"position":[[13,8]]},"73":{"position":[[13,8]]},"74":{"position":[[13,8]]},"75":{"position":[[13,8]]},"76":{"position":[[13,8]]},"77":{"position":[[13,8]]},"78":{"position":[[13,8]]},"79":{"position":[[13,8]]},"80":{"position":[[13,8]]},"81":{"position":[[13,8]]},"82":{"position":[[13,8]]},"83":{"position":[[13,8]]},"84":{"position":[[13,8]]},"85":{"position":[[13,8]]},"86":{"position":[[13,8]]},"87":{"position":[[13,8]]},"88":{"position":[[13,8]]},"89":{"position":[[13,8]]},"90":{"position":[[13,8]]},"91":{"position":[[13,8]]},"92":{"position":[[13,8]]},"93":{"position":[[13,8]]},"94":{"position":[[13,8]]},"95":{"position":[[13,8]]},"96":{"position":[[13,8],[82,8]]},"97":{"position":[[13,8],[82,8]]},"98":{"position":[[13,8]]},"99":{"position":[[13,8]]},"100":{"position":[[13,8],[82,8]]},"101":{"position":[[13,8],[59,9]]},"102":{"position":[[13,8],[82,8]]},"103":{"position":[[13,8],[59,9]]},"104":{"position":[[13,8]]},"105":{"position":[[13,8]]},"106":{"position":[[13,8]]},"107":{"position":[[13,8]]},"108":{"position":[[13,8]]},"109":{"position":[[13,8]]},"110":{"position":[[13,8]]},"111":{"position":[[13,8]]},"112":{"position":[[13,8]]},"113":{"position":[[13,8]]},"114":{"position":[[13,8]]},"115":{"position":[[13,8]]},"116":{"position":[[13,8]]},"117":{"position":[[13,8]]},"118":{"position":[[13,8]]},"119":{"position":[[13,8]]},"120":{"position":[[13,8]]},"121":{"position":[[13,8]]},"122":{"position":[[13,8]]},"123":{"position":[[13,8]]},"124":{"position":[[13,8]]},"125":{"position":[[13,8]]},"126":{"position":[[13,8]]},"127":{"position":[[13,8]]},"128":{"position":[[13,8]]},"129":{"position":[[13,8]]},"130":{"position":[[13,8]]},"131":{"position":[[13,8]]},"132":{"position":[[13,8]]},"133":{"position":[[13,8]]},"134":{"position":[[13,8]]},"135":{"position":[[13,8]]},"136":{"position":[[13,8]]},"137":{"position":[[13,8]]},"138":{"position":[[13,8]]},"139":{"position":[[13,8]]},"140":{"position":[[13,8]]},"141":{"position":[[13,8]]},"142":{"position":[[13,8]]},"143":{"position":[[13,8]]},"144":{"position":[[13,8]]},"145":{"position":[[13,8]]},"146":{"position":[[13,8]]},"147":{"position":[[13,8]]},"148":{"position":[[13,8]]},"149":{"position":[[13,8]]},"150":{"position":[[13,8]]},"151":{"position":[[13,8]]},"152":{"position":[[13,8]]},"153":{"position":[[13,8]]},"287":{"position":[[13,8]]},"288":{"position":[[13,8]]},"289":{"position":[[13,8]]},"290":{"position":[[13,8]]},"291":{"position":[[13,8]]},"292":{"position":[[13,8]]}},"d":{},"k":{},"b":{"0":{"position":[[104,8],[591,8],[723,8],[763,8],[1107,8],[1324,8]]},"1":{"position":[[164,8]]},"2":{"position":[[102,8]]},"67":{"position":[[232,8],[6220,8],[6612,8],[7024,8],[13306,8]]},"68":{"position":[[1496,8],[3122,8],[3168,8],[6071,8],[6233,8],[6258,8],[6384,8],[10164,8],[18816,8],[25398,9],[25644,9],[26370,9]]},"69":{"position":[[1447,8],[14028,8],[31816,8],[32187,8],[32238,8],[32384,9],[32632,9],[33309,8],[33634,8],[33727,9]]},"71":{"position":[[1511,8],[7671,8],[7708,8]]},"76":{"position":[[2525,9]]},"79":{"position":[[18747,9],[19294,8]]},"80":{"position":[[1867,8],[7792,8],[9975,8]]},"81":{"position":[[2024,8],[4508,8],[4563,8],[4604,8]]},"83":{"position":[[5714,9]]},"84":{"position":[[2931,9]]},"85":{"position":[[2832,8]]},"86":{"position":[[2482,8]]},"89":{"position":[[853,8]]},"90":{"position":[[853,8]]},"91":{"position":[[871,8]]},"92":{"position":[[15100,8],[15914,8]]},"94":{"position":[[1958,8]]},"96":{"position":[[595,9]]},"97":{"position":[[399,9],[641,8]]},"100":{"position":[[587,9]]},"101":{"position":[[58,9],[119,9],[223,9],[295,8],[390,8],[475,8],[1966,8]]},"102":{"position":[[393,9],[622,8]]},"103":{"position":[[58,9],[119,9],[223,9],[277,8],[359,8],[447,8]]},"105":{"position":[[4878,9]]},"108":{"position":[[1016,8],[1907,8]]},"109":{"position":[[4400,8],[6799,8]]},"112":{"position":[[522,8],[657,9],[724,8],[862,9],[1294,8],[1427,9],[1494,8],[1630,9]]},"115":{"position":[[874,9],[936,9],[979,9],[1041,9]]},"116":{"position":[[55,8]]},"128":{"position":[[26877,8],[26927,8],[26974,8],[27113,8],[27166,8],[27303,8],[27350,8],[27507,8],[27560,8]]},"129":{"position":[[1715,8],[2215,8],[15497,8],[16592,8]]},"135":{"position":[[7529,8],[8081,9],[8131,8],[9165,8],[9276,9]]},"136":{"position":[[3266,8]]},"139":{"position":[[4498,8],[4646,8],[8077,8]]},"142":{"position":[[8703,8],[8963,9],[9013,8],[10167,8],[10278,9]]},"145":{"position":[[7465,9],[7940,9],[16651,8],[16706,8],[16776,8]]},"146":{"position":[[1583,8],[2442,8],[2465,8],[6519,8],[9686,8],[13555,8],[17892,8],[18265,8],[18316,8],[18386,9],[18634,9],[19813,8]]},"151":{"position":[[236,8],[2248,8],[2287,8],[2360,8]]},"152":{"position":[[544,8],[1514,8],[1647,9],[1711,8],[1847,9],[2266,8],[2397,9],[2461,8],[2595,9],[7250,9],[7310,9],[7351,9],[7411,9]]}}}],["software_delay_loop",{"_index":1822,"t":{},"d":{},"k":{},"b":{"71":{"position":[[7968,19],[44842,21]]}}}],["softwareeventgener",{"_index":3209,"t":{},"d":{},"k":{},"b":{"81":{"position":[[832,21],[1839,21]]}}}],["softwarestart",{"_index":7791,"t":{},"d":{},"k":{},"b":{"145":{"position":[[4087,13],[7283,13]]}}}],["softwarestop",{"_index":7792,"t":{},"d":{},"k":{},"b":{"145":{"position":[[4176,12],[7789,12]]}}}],["soi",{"_index":5655,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6718,3]]}}}],["sold",{"_index":22,"t":{},"d":{},"k":{},"b":{"0":{"position":[[327,4]]}}}],["sole",{"_index":28,"t":{},"d":{},"k":{},"b":{"0":{"position":[[397,6]]},"138":{"position":[[6329,6]]}}}],["somewhat",{"_index":2427,"t":{},"d":{},"k":{},"b":{"75":{"position":[[21342,8]]}}}],["sopi",{"_index":7651,"t":{},"d":{},"k":{},"b":{"143":{"position":[[11879,4],[11975,4]]}}}],["sot",{"_index":3468,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32753,3]]}}}],["sound",{"_index":1996,"t":{},"d":{},"k":{},"b":{"71":{"position":[[34566,5],[35182,5]]},"106":{"position":[[9150,5],[9596,5],[9614,5],[9714,5],[9734,5],[9752,5],[9846,5],[9876,5],[9894,5],[9988,5],[11566,5],[11629,5],[11670,5],[11760,5],[14926,5],[15393,5],[16711,5],[16780,5],[16882,5],[18169,5]]},"107":{"position":[[1645,5],[1834,5],[9213,5]]}}}],["sound_detection_en",{"_index":5252,"t":{},"d":{},"k":{},"b":{"106":{"position":[[14902,22]]}}}],["sound_detection_lower_limit",{"_index":5277,"t":{},"d":{},"k":{},"b":{"106":{"position":[[16751,27]]}}}],["sound_detection_upper_limit",{"_index":5278,"t":{},"d":{},"k":{},"b":{"106":{"position":[[16853,27]]}}}],["sourc",{"_index":139,"t":{"60":{"position":[[45,6]]}},"d":{},"k":{},"b":{"1":{"position":[[654,7]]},"67":{"position":[[3010,7],[5142,8],[12409,7]]},"68":{"position":[[1701,6],[4090,7],[4150,6],[4953,8],[4980,6],[5979,7],[6546,6],[6682,7],[17132,7],[17204,7],[19019,6]]},"69":{"position":[[19251,7],[28000,6],[29586,8]]},"71":{"position":[[4033,7],[42463,6],[42530,6],[42563,6],[43314,6],[43381,6],[43414,6]]},"72":{"position":[[342,7]]},"75":{"position":[[2889,7],[11522,7],[11917,6],[11991,6],[14607,7],[15025,8],[15059,6],[15202,6],[21735,6]]},"76":{"position":[[1672,6],[2955,6],[3093,7],[5870,6],[5966,6],[10623,6],[10765,6],[12681,7],[12767,7],[12990,7],[14276,6],[16413,6],[16555,6]]},"79":{"position":[[1564,7],[2467,6],[2580,6],[2842,6],[2921,7],[3031,6],[3070,6],[3153,6],[3190,6],[4545,6],[4597,6],[4944,6],[4996,6],[5380,6],[5506,7],[5677,7],[6203,6],[7151,6],[7231,6],[9407,6],[10599,7],[11775,6],[15153,6],[15338,6],[16930,6],[18239,7],[19820,7],[20306,7]]},"80":{"position":[[763,6],[2164,7],[8071,7],[8942,6]]},"83":{"position":[[2096,6],[2516,6],[2705,7],[4997,6],[9175,6],[9231,6],[9285,7],[9394,6],[9452,6],[9506,7],[9610,6],[9690,6],[9711,6],[9792,6],[9811,6],[9938,7],[9956,7],[9980,6],[10117,6],[10208,6],[10304,6],[10410,6],[14499,6],[14579,6],[15480,8],[15763,6],[18521,7],[19529,7],[19831,7],[19918,7],[20017,6],[24086,6],[29252,7],[29343,7],[29716,6],[30482,7],[30558,7],[30634,7],[30715,7],[30795,7],[30874,7],[31014,6],[31073,7],[31215,6],[33243,7],[33373,7],[33447,8],[35350,8],[46995,6],[47408,8],[47442,7],[58432,6]]},"84":{"position":[[1495,6],[3631,7],[4632,7],[4648,6],[7896,6],[8037,6],[15806,6]]},"88":{"position":[[15123,6],[41594,6]]},"92":{"position":[[3310,6],[3786,6],[5101,6],[6534,6],[7456,6],[8300,6],[9144,6],[9988,6],[15379,7]]},"105":{"position":[[2003,6],[2412,6],[6170,6],[6230,7],[12009,6],[14165,6],[14374,6],[19992,6],[24055,6],[25837,6],[30804,6],[31013,6]]},"108":{"position":[[1876,7],[2254,6],[2272,6],[2290,6],[2309,6],[2329,6],[3410,6],[3478,6],[6072,6]]},"113":{"position":[[4821,6],[5016,6],[10969,6]]},"124":{"position":[[4874,7],[4891,6],[5098,6]]},"125":{"position":[[3682,7],[3699,6],[3906,6],[7710,6]]},"128":{"position":[[15494,6],[19491,6],[25942,6]]},"135":{"position":[[19562,6],[20775,6]]},"136":{"position":[[4870,6],[6691,7],[11246,7],[12479,7],[16843,6],[17247,6]]},"137":{"position":[[2590,6],[2843,6],[5479,7],[8838,6],[10399,6]]},"138":{"position":[[3900,6],[3959,6],[4018,6],[4077,6],[4136,6],[4201,6],[12205,6],[12757,6]]},"139":{"position":[[5512,6],[5668,6],[7292,6],[7709,6],[14266,6],[15164,6],[20602,6]]},"140":{"position":[[4583,6],[6202,6],[6603,6],[11291,6],[11966,6],[18774,6],[23557,6]]},"141":{"position":[[4819,6],[5548,6]]},"142":{"position":[[5085,6],[5130,6],[14091,6],[18064,7],[21455,6],[22569,6],[24205,6]]},"144":{"position":[[2413,6],[13149,6],[13208,6],[13262,6],[13316,6],[13370,6],[13425,6],[13481,6],[13537,6],[13594,6],[13652,6],[13710,6],[13769,6]]},"145":{"position":[[1884,6],[1900,6],[2579,6],[2778,6],[5570,6],[5888,7],[5911,6],[6454,6],[6563,8],[6901,6],[7019,8],[7549,7],[8187,7],[9555,7],[9578,6],[10819,6],[10905,6],[11719,6],[14890,7],[15338,6],[16249,7],[16316,6]]},"148":{"position":[[6318,6],[6487,6],[12453,6]]}}}],["source_div",{"_index":7717,"t":{},"d":{},"k":{},"b":{"144":{"position":[[2401,10]]}}}],["sourcemcu",{"_index":698,"t":{},"d":{},"k":{},"b":{"68":{"position":[[4040,9]]},"75":{"position":[[11473,9]]},"79":{"position":[[2942,9]]},"83":{"position":[[4906,9],[9133,9],[9352,9],[9568,9],[10075,9],[10166,9],[10262,9],[10368,9]]},"84":{"position":[[3587,9]]},"92":{"position":[[3280,9],[3756,9],[5071,9],[6504,9],[7426,9],[8270,9],[9114,9],[9958,9]]},"140":{"position":[[4534,9]]}}}],["sourcesmcu",{"_index":2282,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2940,10]]}}}],["sourceth",{"_index":3309,"t":{},"d":{},"k":{},"b":{"83":{"position":[[3716,9],[4053,9]]},"84":{"position":[[2124,9]]},"105":{"position":[[3792,9]]}}}],["sp_irq",{"_index":4309,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47545,6]]}}}],["space",{"_index":3990,"t":{},"d":{},"k":{},"b":{"87":{"position":[[17630,5],[17818,5]]},"88":{"position":[[17673,5]]},"113":{"position":[[4403,5],[13636,5]]},"139":{"position":[[10701,5]]},"140":{"position":[[8071,5]]},"141":{"position":[[4387,5],[5827,5]]},"143":{"position":[[7697,5],[8160,5]]},"150":{"position":[[6678,6],[6723,7],[6772,5],[6808,5],[6853,5],[6897,5],[6945,5],[6993,5]]}}}],["spbr",{"_index":6833,"t":{},"d":{},"k":{},"b":{"135":{"position":[[12109,4],[12115,4],[22072,4],[22148,4],[22588,4]]},"142":{"position":[[13270,4],[13276,4],[23861,4],[24338,4]]}}}],["spck_delay",{"_index":6839,"t":{},"d":{},"k":{},"b":{"135":{"position":[[12604,10]]},"142":{"position":[[14217,10]]}}}],["spck_div",{"_index":6763,"t":{},"d":{},"k":{},"b":{"135":{"position":[[631,10],[12516,8],[21978,8]]},"142":{"position":[[667,10],[14129,8],[23767,8]]}}}],["spcmd",{"_index":6805,"t":{},"d":{},"k":{},"b":{"135":{"position":[[7248,6]]}}}],["spcmd0",{"_index":6835,"t":{},"d":{},"k":{},"b":{"135":{"position":[[12174,7]]},"142":{"position":[[8421,7],[13335,7]]}}}],["special",{"_index":85,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1512,8]]},"68":{"position":[[28840,7]]},"88":{"position":[[18818,7]]},"92":{"position":[[21989,7],[22074,7],[24386,7],[24471,7]]},"128":{"position":[[14270,7]]}}}],["specif",{"_index":120,"t":{},"d":{},"k":{},"b":{"1":{"position":[[347,8]]},"67":{"position":[[3634,8],[8793,8],[9090,8]]},"68":{"position":[[3565,8],[4050,8],[24147,8],[24287,8]]},"69":{"position":[[3999,8],[8574,8],[8803,8],[9056,8],[9309,8],[9562,8],[30574,8],[30714,8]]},"71":{"position":[[1583,8],[9136,8],[9246,8]]},"74":{"position":[[2009,8],[6363,8],[7715,8]]},"75":{"position":[[2042,14],[2951,8],[3063,8],[3258,8],[3442,8],[3873,8],[4074,8],[4294,8],[4494,8],[4597,8],[4801,8],[5021,8],[5221,8],[5324,8],[5528,8],[5748,8],[5948,8],[6051,8],[6255,8],[6475,8],[6675,8],[6778,8],[6982,8],[7202,8],[7402,8],[7505,8],[7709,8],[7929,8],[8129,8],[8232,8],[8436,8],[8656,8],[8856,8],[8959,8],[9163,8],[9383,8],[9583,8],[9686,8],[11007,8],[11154,8],[11483,8],[14417,8],[14554,8],[14652,8]]},"76":{"position":[[4268,8],[4493,8],[4724,8],[4956,8],[5191,8]]},"77":{"position":[[2219,8]]},"78":{"position":[[4445,8]]},"79":{"position":[[2284,8],[2952,8],[3227,8],[3305,8],[3385,8],[3462,8],[3880,8],[20870,8]]},"80":{"position":[[2339,8],[3206,8]]},"81":{"position":[[4110,8]]},"82":{"position":[[5990,8]]},"83":{"position":[[4916,8],[9143,8],[9362,8],[9578,8],[10085,8],[10176,8],[10272,8],[10378,8],[11084,8],[11365,8],[11590,8],[11822,8],[12103,8]]},"84":{"position":[[1935,9],[2787,8],[3597,8]]},"85":{"position":[[3015,8],[8694,8]]},"86":{"position":[[2664,8],[6396,8]]},"87":{"position":[[850,13],[1051,8],[14553,8],[14827,13],[20022,8]]},"88":{"position":[[14227,8],[16648,13],[20541,8],[20725,13],[20774,13],[21239,13],[21287,13],[21532,13],[22157,13],[42005,13],[42995,13],[43232,13],[43336,13],[43438,13],[43577,13],[43718,13],[44232,13],[44377,13],[46581,13],[46784,13],[46972,13],[49747,13],[50272,13],[50822,13]]},"89":{"position":[[1188,8],[2358,8],[2924,8]]},"90":{"position":[[1177,8],[2642,8]]},"91":{"position":[[1197,8],[2237,8],[2443,8],[3002,8]]},"92":{"position":[[3290,8],[3401,8],[3528,8],[3766,8],[3877,8],[4004,8],[4253,8],[4358,8],[4463,8],[4568,8],[4673,8],[4778,8],[4883,8],[4988,8],[5081,8],[5194,8],[5289,8],[5413,8],[5535,8],[5686,8],[5791,8],[5896,8],[6001,8],[6106,8],[6211,8],[6316,8],[6421,8],[6514,8],[6627,8],[6722,8],[6846,8],[6968,8],[7115,8],[7210,8],[7316,8],[7436,8],[7571,8],[7830,8],[7959,8],[8054,8],[8160,8],[8280,8],[8415,8],[8674,8],[8803,8],[8898,8],[9004,8],[9124,8],[9259,8],[9518,8],[9647,8],[9742,8],[9848,8],[9968,8],[10103,8],[10362,8],[10505,8],[31760,8]]},"93":{"position":[[8775,8]]},"94":{"position":[[5238,8]]},"101":{"position":[[5065,8]]},"103":{"position":[[3751,8]]},"105":{"position":[[2729,8],[3588,9],[8019,8],[8295,8],[8521,8]]},"106":{"position":[[11602,8],[11845,8],[12086,8],[22132,14]]},"107":{"position":[[1548,8],[7578,8]]},"108":{"position":[[1841,8],[2730,8]]},"109":{"position":[[5779,8]]},"116":{"position":[[374,8],[819,8],[932,8]]},"124":{"position":[[2281,8]]},"126":{"position":[[4131,8]]},"127":{"position":[[3664,8]]},"128":{"position":[[1516,8],[1635,8],[1773,8],[1869,8],[2012,8],[2168,12],[12949,8],[26652,8]]},"130":{"position":[[6423,8]]},"132":{"position":[[5565,8]]},"134":{"position":[[12930,8]]},"135":{"position":[[1919,8],[4878,8],[5121,8]]},"136":{"position":[[5610,8],[5778,8]]},"137":{"position":[[9762,8]]},"138":{"position":[[4909,8],[6523,14],[6538,12],[14034,8],[16870,8]]},"139":{"position":[[4264,8]]},"140":{"position":[[2090,8],[4249,8],[4356,8],[4464,8],[4544,8],[5197,8]]},"141":{"position":[[7716,8]]},"143":{"position":[[3160,8],[10753,8]]},"144":{"position":[[2754,8],[10442,8]]},"145":{"position":[[760,8],[3485,8],[8713,8],[10408,8]]},"146":{"position":[[2524,8],[3239,8],[3503,8]]},"147":{"position":[[970,8],[6843,8],[7063,8],[9679,8]]},"148":{"position":[[2049,8],[2143,8],[2224,8],[2302,8],[2397,8],[2483,8],[2690,8],[2797,8],[2909,8],[3025,8],[4903,8]]},"149":{"position":[[6384,8]]},"150":{"position":[[1583,8],[7640,8],[7758,8],[7945,8],[8252,8]]},"151":{"position":[[1344,8],[1430,8]]},"292":{"position":[[745,8],[863,8]]}}}],["specifi",{"_index":341,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2896,7],[9934,7],[10553,9],[10652,9]]},"68":{"position":[[1905,9],[2090,9],[5363,9],[6921,9],[7377,10],[7753,10],[7905,9],[8657,10]]},"69":{"position":[[2630,9],[2711,9],[2804,9],[2976,9],[6533,9],[6617,9],[6804,9],[6991,9],[7409,9],[10593,9],[11493,9],[23009,7]]},"71":{"position":[[7739,9],[9455,9],[11312,7],[42417,10],[43268,10],[44249,9],[45047,10]]},"74":{"position":[[6638,7]]},"75":{"position":[[11855,7],[12105,7],[12235,7],[12361,7],[12455,7],[13039,7],[13694,9],[16600,9],[17228,9],[18563,9],[18754,7],[19388,7],[19645,7],[20188,7],[22178,9],[25222,9]]},"76":{"position":[[2650,7],[2838,9]]},"77":{"position":[[2506,9]]},"79":{"position":[[2379,7],[4491,7],[4576,7],[4693,7],[4785,7],[4975,7],[5197,7],[7117,7],[12823,9]]},"82":{"position":[[4385,7]]},"83":{"position":[[5352,7],[6265,7],[6963,9],[8591,7],[10885,9],[20148,9]]},"84":{"position":[[3050,7],[3553,9],[5093,9],[15766,9],[15882,9]]},"85":{"position":[[6812,7]]},"86":{"position":[[4992,7]]},"87":{"position":[[19706,9]]},"88":{"position":[[4521,10],[5084,9],[20603,7]]},"89":{"position":[[2167,7],[2784,7],[5723,9],[6316,9],[6868,9]]},"90":{"position":[[2502,7],[5339,9],[5866,9],[6418,9]]},"91":{"position":[[2178,7],[2861,7],[6894,9],[7489,9],[8035,9]]},"92":{"position":[[3450,7],[3926,7],[5338,7],[6771,7],[10795,9],[11125,9],[12011,9],[12253,9],[12460,9],[17477,9],[17888,9],[18463,9],[35565,9],[37964,9],[38986,9],[39962,9]]},"93":{"position":[[4393,9],[5494,9],[7062,9],[7409,9]]},"94":{"position":[[3751,7]]},"95":{"position":[[2516,9]]},"96":{"position":[[2226,9]]},"98":{"position":[[2450,9]]},"99":{"position":[[2479,9]]},"100":{"position":[[2191,9]]},"101":{"position":[[3489,7]]},"104":{"position":[[2413,9]]},"105":{"position":[[4640,7],[7820,9],[12140,9]]},"106":{"position":[[2959,7],[3113,7],[3266,7],[3419,7],[3572,7],[3725,7],[3878,7],[4031,7],[4184,7],[4337,7],[4490,7],[4644,7],[4799,7],[4954,7],[5109,7],[5264,7],[5419,7],[5574,7],[5729,7],[5884,7],[6039,7],[6408,7],[6583,7],[6758,7],[6933,7],[7108,7],[7283,7],[7458,7],[7633,7],[7808,7],[7983,7],[8159,7],[8503,7],[8656,7],[8809,7],[8962,7],[9834,7],[9976,7],[10311,7],[10914,7],[11302,7],[12380,7],[12450,7],[20657,9]]},"107":{"position":[[6543,7]]},"108":{"position":[[1788,7],[2533,9]]},"109":{"position":[[3753,7]]},"113":{"position":[[4758,9],[6056,9],[14345,10],[14448,9],[14632,9]]},"124":{"position":[[2879,7],[3656,7]]},"125":{"position":[[2472,7],[3101,7]]},"127":{"position":[[287,9],[2832,7],[7982,9]]},"128":{"position":[[4380,9],[4721,9],[5351,11],[11845,7],[12026,9],[12233,7],[15091,9],[15174,7],[15223,7],[23543,9],[24878,9]]},"129":{"position":[[277,9],[12086,9]]},"131":{"position":[[281,9],[16912,9]]},"136":{"position":[[5323,7]]},"137":{"position":[[8275,7]]},"138":{"position":[[1617,9],[3223,7],[3794,7]]},"139":{"position":[[4582,7],[4707,7],[5182,9],[5443,9],[19329,9],[20081,9],[20567,9],[21308,9]]},"140":{"position":[[17815,9],[18739,9]]},"141":{"position":[[4130,9],[4990,9],[5979,9],[6317,7]]},"143":{"position":[[2493,7]]},"144":{"position":[[8934,7]]},"145":{"position":[[1153,9],[12443,9],[13890,9]]},"146":{"position":[[2279,9]]},"147":{"position":[[7892,7]]},"149":{"position":[[5350,7]]},"150":{"position":[[2644,7],[2743,7]]}}}],["speed",{"_index":724,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5629,6],[5642,6],[13139,6],[13152,6],[16008,6],[16021,6]]},"71":{"position":[[2002,5]]},"75":{"position":[[1233,6],[21641,5]]},"76":{"position":[[5943,6]]},"83":{"position":[[15835,6]]},"85":{"position":[[8932,5]]},"86":{"position":[[6631,5]]},"87":{"position":[[17060,6]]},"88":{"position":[[20284,5],[20461,6],[20555,5],[43870,5]]},"109":{"position":[[6236,5]]},"138":{"position":[[7149,5]]},"151":{"position":[[672,5]]}}}],["spent",{"_index":6176,"t":{},"d":{},"k":{},"b":{"128":{"position":[[6404,5]]}}}],["spi",{"_index":1716,"t":{"141":{"position":[[45,3]]},"142":{"position":[[45,3]]},"143":{"position":[[45,3]]}},"d":{},"k":{},"b":{"71":{"position":[[1558,3]]},"112":{"position":[[2319,3],[2720,3],[2750,3],[2804,3]]},"115":{"position":[[1257,3],[1286,3],[1310,3],[1364,3]]},"120":{"position":[[195,3]]},"124":{"position":[[4462,4],[5600,6]]},"125":{"position":[[2333,4],[4408,6],[4665,4]]},"135":{"position":[[915,3],[961,3],[1308,5],[2066,3],[2153,3],[8217,3],[12616,3],[12692,3],[12783,3],[15017,3],[16870,3],[17144,3],[18083,3],[18261,3],[19192,3],[19419,3],[20630,3],[21350,3],[21382,3],[21404,3],[21510,3]]},"141":{"position":[[36,3],[122,3],[197,3],[1158,3],[2058,3],[2194,3],[2479,3],[2632,3],[3506,3],[3689,3],[3930,3],[4312,3],[4658,3],[4879,3],[5326,3],[5365,3],[5608,3],[5752,3],[6503,3],[6923,3],[7676,3],[7756,3],[9807,3],[9856,3],[11200,3]]},"142":{"position":[[897,3],[951,3],[997,3],[1065,5],[1567,3],[2593,3],[2681,3],[3021,3],[3145,3],[3286,3],[3423,3],[3548,3],[3615,3],[4296,3],[4306,3],[5660,3],[5834,3],[6006,3],[6183,3],[7185,3],[8301,4],[9067,3],[9098,3],[9315,3],[9545,3],[10649,3],[12027,3],[12096,3],[12253,3],[12502,3],[13218,3],[13455,3],[13535,3],[14175,3],[14229,3],[14306,3],[14398,3],[15519,3],[17460,3],[18040,3],[18705,3],[18979,3],[20075,3],[20253,3],[21085,3],[21312,3],[22424,3],[23045,3],[23077,3],[23099,3],[23205,3]]},"143":{"position":[[55,3],[88,3],[171,3],[1748,3],[1762,3],[2803,3],[3584,3],[4957,3],[5367,3],[6076,3],[6592,3],[7005,3],[7065,3],[7223,3],[8654,3],[9669,3],[9993,3],[10707,3],[10793,3],[11634,3],[11701,3]]},"150":{"position":[[1365,3],[2797,3],[2899,3],[2913,3],[10452,3],[21593,3],[21853,3],[27080,3]]},"152":{"position":[[3259,3],[3642,3],[3670,3],[3724,3],[5268,3],[7610,3],[7637,3],[7658,3],[7710,3]]}}}],["spi_api_t",{"_index":7403,"t":{},"d":{},"k":{},"b":{"141":{"position":[[327,9],[2527,9],[2573,9],[7490,9]]}}}],["spi_api_t::callbackset",{"_index":6896,"t":{},"d":{},"k":{},"b":{"135":{"position":[[23314,22]]},"141":{"position":[[6128,23]]},"142":{"position":[[25053,22]]}}}],["spi_api_t::clos",{"_index":6888,"t":{},"d":{},"k":{},"b":{"135":{"position":[[21323,17]]},"141":{"position":[[6841,17]]},"142":{"position":[[23018,17]]}}}],["spi_api_t::open",{"_index":6845,"t":{},"d":{},"k":{},"b":{"135":{"position":[[13222,15],[16905,16]]},"141":{"position":[[3396,16]]},"142":{"position":[[14689,15],[18740,16]]}}}],["spi_api_t::read",{"_index":6881,"t":{},"d":{},"k":{},"b":{"135":{"position":[[18106,16]]},"141":{"position":[[3779,16]]},"142":{"position":[[20098,16]]}}}],["spi_api_t::writ",{"_index":6884,"t":{},"d":{},"k":{},"b":{"135":{"position":[[19263,17]]},"141":{"position":[[4502,17]]},"142":{"position":[[21156,17]]}}}],["spi_api_t::writeread",{"_index":6887,"t":{},"d":{},"k":{},"b":{"135":{"position":[[20470,21]]},"141":{"position":[[5137,21]]},"142":{"position":[[22264,21]]}}}],["spi_b",{"_index":2834,"t":{},"d":{},"k":{},"b":{"77":{"position":[[2882,5]]}}}],["spi_b_byte_swap_en",{"_index":7535,"t":{},"d":{},"k":{},"b":{"142":{"position":[[17275,22]]}}}],["spi_b_byte_swap_t",{"_index":7510,"t":{},"d":{},"k":{},"b":{"142":{"position":[[12980,17],[13980,17],[17073,17],[17125,17]]}}}],["spi_b_clock_source_scispiclk",{"_index":7502,"t":{},"d":{},"k":{},"b":{"142":{"position":[[12387,29]]}}}],["spi_b_clock_source_t",{"_index":7479,"t":{},"d":{},"k":{},"b":{"142":{"position":[[612,20],[13036,20],[14035,20],[17947,20],[18002,20],[23637,20]]}}}],["spi_b_communication_t",{"_index":7505,"t":{},"d":{},"k":{},"b":{"142":{"position":[[12827,21],[13578,21],[15627,21],[15683,21]]}}}],["spi_b_communication_transmit_onli",{"_index":7521,"t":{},"d":{},"k":{},"b":{"142":{"position":[[15859,33]]}}}],["spi_b_delay_count_2",{"_index":7537,"t":{},"d":{},"k":{},"b":{"142":{"position":[[17548,19]]}}}],["spi_b_delay_count_3",{"_index":7538,"t":{},"d":{},"k":{},"b":{"142":{"position":[[17604,19]]}}}],["spi_b_delay_count_4",{"_index":7539,"t":{},"d":{},"k":{},"b":{"142":{"position":[[17660,19]]}}}],["spi_b_delay_count_5",{"_index":7540,"t":{},"d":{},"k":{},"b":{"142":{"position":[[17716,19]]}}}],["spi_b_delay_count_6",{"_index":7541,"t":{},"d":{},"k":{},"b":{"142":{"position":[[17772,19]]}}}],["spi_b_delay_count_7",{"_index":7542,"t":{},"d":{},"k":{},"b":{"142":{"position":[[17828,19]]}}}],["spi_b_delay_count_8",{"_index":7543,"t":{},"d":{},"k":{},"b":{"142":{"position":[[17884,19]]}}}],["spi_b_delay_count_t",{"_index":7511,"t":{},"d":{},"k":{},"b":{"142":{"position":[[13007,19],[14196,19],[14265,19],[14358,19],[17353,19],[17407,19]]}}}],["spi_b_extended_cfg_t",{"_index":7503,"t":{},"d":{},"k":{},"b":{"142":{"position":[[12725,20],[13351,20],[13408,20]]}}}],["spi_b_instance_ctrl_t",{"_index":7427,"t":{},"d":{},"k":{},"b":{"141":{"position":[[7807,21]]},"142":{"position":[[12756,21],[14523,21],[14581,21]]}}}],["spi_b_mosi_idle_value_fixing_high",{"_index":7530,"t":{},"d":{},"k":{},"b":{"142":{"position":[[16749,33]]}}}],["spi_b_mosi_idle_value_fixing_low",{"_index":7529,"t":{},"d":{},"k":{},"b":{"142":{"position":[[16678,32]]}}}],["spi_b_mosi_idle_value_fixing_t",{"_index":7508,"t":{},"d":{},"k":{},"b":{"142":{"position":[[12916,30],[13824,30],[16452,30],[16517,30]]}}}],["spi_b_parity_mode_even",{"_index":7533,"t":{},"d":{},"k":{},"b":{"142":{"position":[[17022,22]]}}}],["spi_b_parity_mode_odd",{"_index":7532,"t":{},"d":{},"k":{},"b":{"142":{"position":[[16978,21]]}}}],["spi_b_parity_t",{"_index":7509,"t":{},"d":{},"k":{},"b":{"142":{"position":[[12956,14],[13913,14],[16829,14],[16878,14]]}}}],["spi_b_ssl_level_keep_en",{"_index":7545,"t":{},"d":{},"k":{},"b":{"142":{"position":[[18289,27]]}}}],["spi_b_ssl_level_keep_t",{"_index":7512,"t":{},"d":{},"k":{},"b":{"142":{"position":[[13066,22],[14440,22],[18079,22],[18136,22]]}}}],["spi_b_ssl_mode_clk_syn",{"_index":7519,"t":{},"d":{},"k":{},"b":{"142":{"position":[[15551,22]]}}}],["spi_b_ssl_mode_t",{"_index":7504,"t":{},"d":{},"k":{},"b":{"142":{"position":[[12801,16],[13498,16],[15380,16],[15431,16]]}}}],["spi_b_ssl_polarity_t",{"_index":7506,"t":{},"d":{},"k":{},"b":{"142":{"position":[[12858,20],[13664,20],[15937,20],[15992,20]]}}}],["spi_b_ssl_select_ssl1",{"_index":7525,"t":{},"d":{},"k":{},"b":{"142":{"position":[[16334,21]]}}}],["spi_b_ssl_select_ssl2",{"_index":7526,"t":{},"d":{},"k":{},"b":{"142":{"position":[[16371,21]]}}}],["spi_b_ssl_select_ssl3",{"_index":7527,"t":{},"d":{},"k":{},"b":{"142":{"position":[[16408,21]]}}}],["spi_b_ssl_select_t",{"_index":7507,"t":{},"d":{},"k":{},"b":{"142":{"position":[[12888,18],[13731,18],[16174,18],[16227,18]]}}}],["spi_b_sslp_high",{"_index":7523,"t":{},"d":{},"k":{},"b":{"142":{"position":[[16115,15]]}}}],["spi_basic_exampl",{"_index":7495,"t":{},"d":{},"k":{},"b":{"142":{"position":[[9392,17]]}}}],["spi_bit_order_lsb_first",{"_index":7468,"t":{},"d":{},"k":{},"b":{"141":{"position":[[11060,23]]}}}],["spi_bit_order_t",{"_index":7409,"t":{},"d":{},"k":{},"b":{"141":{"position":[[546,15],[1942,15],[10897,15],[10947,15]]}}}],["spi_bit_width_10_bit",{"_index":7433,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8309,21]]}}}],["spi_bit_width_11_bit",{"_index":7434,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8366,21]]}}}],["spi_bit_width_12_bit",{"_index":7435,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8423,21]]}}}],["spi_bit_width_13_bit",{"_index":7436,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8480,21]]}}}],["spi_bit_width_14_bit",{"_index":7437,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8537,21]]}}}],["spi_bit_width_15_bit",{"_index":7438,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8594,21]]}}}],["spi_bit_width_16_bit",{"_index":7439,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8651,21]]}}}],["spi_bit_width_17_bit",{"_index":7440,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8708,21]]}}}],["spi_bit_width_18_bit",{"_index":7441,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8765,21]]}}}],["spi_bit_width_19_bit",{"_index":7442,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8822,21]]}}}],["spi_bit_width_20_bit",{"_index":7443,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8879,21]]}}}],["spi_bit_width_21_bit",{"_index":7445,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8940,21]]}}}],["spi_bit_width_22_bit",{"_index":7446,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8997,21]]}}}],["spi_bit_width_23_bit",{"_index":7447,"t":{},"d":{},"k":{},"b":{"141":{"position":[[9054,21]]}}}],["spi_bit_width_24_bit",{"_index":7448,"t":{},"d":{},"k":{},"b":{"141":{"position":[[9115,21]]}}}],["spi_bit_width_25_bit",{"_index":7449,"t":{},"d":{},"k":{},"b":{"141":{"position":[[9176,21]]}}}],["spi_bit_width_26_bit",{"_index":7450,"t":{},"d":{},"k":{},"b":{"141":{"position":[[9237,21]]}}}],["spi_bit_width_27_bit",{"_index":7451,"t":{},"d":{},"k":{},"b":{"141":{"position":[[9294,21]]}}}],["spi_bit_width_28_bit",{"_index":7452,"t":{},"d":{},"k":{},"b":{"141":{"position":[[9351,21]]}}}],["spi_bit_width_29_bit",{"_index":7453,"t":{},"d":{},"k":{},"b":{"141":{"position":[[9408,21]]}}}],["spi_bit_width_30_bit",{"_index":7454,"t":{},"d":{},"k":{},"b":{"141":{"position":[[9465,21]]}}}],["spi_bit_width_31_bit",{"_index":7455,"t":{},"d":{},"k":{},"b":{"141":{"position":[[9526,21]]}}}],["spi_bit_width_32_bit",{"_index":7456,"t":{},"d":{},"k":{},"b":{"141":{"position":[[9587,21]]}}}],["spi_bit_width_5_bit",{"_index":7429,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8034,20]]}}}],["spi_bit_width_6_bit",{"_index":7430,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8089,20]]}}}],["spi_bit_width_7_bit",{"_index":7431,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8144,20]]}}}],["spi_bit_width_8_bit",{"_index":6814,"t":{},"d":{},"k":{},"b":{"135":{"position":[[8832,22],[10063,22],[10719,22]]},"141":{"position":[[8199,20]]},"142":{"position":[[9826,22],[11072,22],[11737,22]]}}}],["spi_bit_width_9_bit",{"_index":7432,"t":{},"d":{},"k":{},"b":{"141":{"position":[[8254,20]]}}}],["spi_bit_width_t",{"_index":6756,"t":{},"d":{},"k":{},"b":{"135":{"position":[[182,15],[313,15],[462,15],[13790,15],[17935,15],[19045,15],[20289,15]]},"141":{"position":[[422,15],[2803,15],[2926,15],[3067,15],[3860,15],[4589,15],[5242,15],[7869,15],[7919,15]]},"142":{"position":[[184,15],[316,15],[466,15],[15268,15],[19927,15],[20938,15],[22083,15]]}}}],["spi_bitrate_exampl",{"_index":7500,"t":{},"d":{},"k":{},"b":{"142":{"position":[[12132,19]]}}}],["spi_callback_args_t",{"_index":6766,"t":{},"d":{},"k":{},"b":{"135":{"position":[[775,19],[9026,20],[23092,19]]},"141":{"position":[[239,19],[619,19],[675,19],[2296,21],[3229,19],[6254,19]]},"142":{"position":[[812,19],[10028,20],[24831,19]]}}}],["spi_cfg_t",{"_index":6754,"t":{},"d":{},"k":{},"b":{"135":{"position":[[60,9],[13346,9],[16719,9]]},"141":{"position":[[307,9],[1085,9],[1131,9],[2689,9],[3434,9],[7403,9]]},"142":{"position":[[61,9],[14813,9],[18554,9]]}}}],["spi_clk_phase_edge_even",{"_index":7460,"t":{},"d":{},"k":{},"b":{"141":{"position":[[10066,23]]}}}],["spi_clk_phase_t",{"_index":7406,"t":{},"d":{},"k":{},"b":{"141":{"position":[[467,15],[1730,15],[9876,15],[9926,15]]}}}],["spi_clk_polarity_high",{"_index":7462,"t":{},"d":{},"k":{},"b":{"141":{"position":[[10331,21]]}}}],["spi_clk_polarity_t",{"_index":7407,"t":{},"d":{},"k":{},"b":{"141":{"position":[[492,18],[1802,18],[10157,18],[10210,18]]}}}],["spi_clksyn",{"_index":7513,"t":{},"d":{},"k":{},"b":{"142":{"position":[[13516,10]]}}}],["spi_comm",{"_index":7514,"t":{},"d":{},"k":{},"b":{"142":{"position":[[13601,8]]}}}],["spi_ctrl_t",{"_index":6753,"t":{},"d":{},"k":{},"b":{"135":{"position":[[35,11],[114,11],[240,11],[375,11],[520,11],[673,11],[16632,10],[17681,10],[18786,10],[19953,10],[21173,10],[22804,10]]},"141":{"position":[[388,10],[2667,12],[2738,12],[2856,12],[2983,12],[3126,12],[3295,12],[3413,11],[3796,11],[4520,11],[5159,11],[6152,11],[6859,11],[7327,10],[7595,10],[7648,10]]},"142":{"position":[[36,11],[116,11],[243,11],[379,11],[525,11],[710,11],[18467,10],[19673,10],[20679,10],[21747,10],[22868,10],[24543,10]]}}}],["spi_event_err_fram",{"_index":7475,"t":{},"d":{},"k":{},"b":{"141":{"position":[[11518,21]]}}}],["spi_event_err_mode_fault",{"_index":7471,"t":{},"d":{},"k":{},"b":{"141":{"position":[[11346,24]]}}}],["spi_event_err_mode_underrun",{"_index":7476,"t":{},"d":{},"k":{},"b":{"141":{"position":[[11557,27]]}}}],["spi_event_err_overrun",{"_index":7474,"t":{},"d":{},"k":{},"b":{"141":{"position":[[11479,21]]}}}],["spi_event_err_par",{"_index":7473,"t":{},"d":{},"k":{},"b":{"141":{"position":[[11442,20]]}}}],["spi_event_err_read_overflow",{"_index":7472,"t":{},"d":{},"k":{},"b":{"141":{"position":[[11391,27]]}}}],["spi_event_t",{"_index":7410,"t":{},"d":{},"k":{},"b":{"141":{"position":[[571,11],[808,11],[11125,11],[11171,11]]}}}],["spi_event_transfer_abort",{"_index":7470,"t":{},"d":{},"k":{},"b":{"141":{"position":[[11286,26]]}}}],["spi_event_transfer_complet",{"_index":6815,"t":{},"d":{},"k":{},"b":{"135":{"position":[[8892,27],[9064,28],[10123,27],[10779,27]]},"142":{"position":[[9895,27],[10066,28],[11141,27],[11806,27]]}}}],["spi_extended_cfg_t",{"_index":7492,"t":{},"d":{},"k":{},"b":{"142":{"position":[[5504,18]]}}}],["spi_flash_address_bytes_4",{"_index":7666,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12671,25]]}}}],["spi_flash_address_bytes_4_4byte_read_cod",{"_index":7668,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12875,41]]}}}],["spi_flash_address_bytes_t",{"_index":7556,"t":{},"d":{},"k":{},"b":{"143":{"position":[[600,25],[1875,25],[12480,25],[12540,25]]}}}],["spi_flash_api_t",{"_index":7551,"t":{},"d":{},"k":{},"b":{"143":{"position":[[426,15],[3499,15],[3551,15],[10503,15]]}}}],["spi_flash_api_t::autocalibr",{"_index":7634,"t":{},"d":{},"k":{},"b":{"143":{"position":[[9575,31]]},"150":{"position":[[27116,31]]}}}],["spi_flash_api_t::bankset",{"_index":7631,"t":{},"d":{},"k":{},"b":{"143":{"position":[[9238,25]]},"150":{"position":[[25719,25]]}}}],["spi_flash_api_t::clos",{"_index":7636,"t":{},"d":{},"k":{},"b":{"143":{"position":[[9915,23]]},"150":{"position":[[19898,23]]}}}],["spi_flash_api_t::directread",{"_index":7610,"t":{},"d":{},"k":{},"b":{"143":{"position":[[5935,28]]},"150":{"position":[[21160,28]]}}}],["spi_flash_api_t::directtransf",{"_index":7612,"t":{},"d":{},"k":{},"b":{"143":{"position":[[6391,32]]},"150":{"position":[[26319,32]]}}}],["spi_flash_api_t::directwrit",{"_index":7605,"t":{},"d":{},"k":{},"b":{"143":{"position":[[5192,29],[6109,29],[12815,30]]},"150":{"position":[[20621,29]]}}}],["spi_flash_api_t::eras",{"_index":7622,"t":{},"d":{},"k":{},"b":{"143":{"position":[[7834,23]]},"150":{"position":[[24274,23]]}}}],["spi_flash_api_t::open",{"_index":7603,"t":{},"d":{},"k":{},"b":{"143":{"position":[[4845,22]]},"150":{"position":[[16166,21],[19229,22]]}}}],["spi_flash_api_t::spiprotocolset",{"_index":7568,"t":{},"d":{},"k":{},"b":{"143":{"position":[[1793,32],[6882,32]]},"150":{"position":[[21618,32]]}}}],["spi_flash_api_t::statusget",{"_index":7625,"t":{},"d":{},"k":{},"b":{"143":{"position":[[8366,27]]},"150":{"position":[[25102,27]]}}}],["spi_flash_api_t::writ",{"_index":7617,"t":{},"d":{},"k":{},"b":{"143":{"position":[[7298,23]]},"150":{"position":[[23248,23]]}}}],["spi_flash_api_t::xipent",{"_index":7627,"t":{},"d":{},"k":{},"b":{"143":{"position":[[8749,26]]},"150":{"position":[[22110,26]]}}}],["spi_flash_api_t::xipexit",{"_index":7629,"t":{},"d":{},"k":{},"b":{"143":{"position":[[8995,25]]},"150":{"position":[[22531,25]]}}}],["spi_flash_cfg_t",{"_index":7549,"t":{},"d":{},"k":{},"b":{"143":{"position":[[371,15],[1549,15],[1601,15],[3686,15],[4895,15],[10410,15]]},"150":{"position":[[67,15],[18949,15],[24178,16],[24508,16]]}}}],["spi_flash_cfg_t::status_command",{"_index":7589,"t":{},"d":{},"k":{},"b":{"143":{"position":[[3457,32]]}}}],["spi_flash_cfg_t::write_status_bit",{"_index":7588,"t":{},"d":{},"k":{},"b":{"143":{"position":[[3414,33]]}}}],["spi_flash_ctrl_t",{"_index":7553,"t":{},"d":{},"k":{},"b":{"143":{"position":[[499,16],[3658,18],[3748,18],[3880,18],[3982,18],[4129,18],[4212,18],[4332,18],[4438,18],[4525,18],[4575,18],[4625,18],[4696,18],[4744,18],[4868,17],[5222,17],[5964,17],[6424,17],[6915,17],[7322,17],[7858,17],[8394,17],[8776,17],[9021,17],[9264,17],[9607,17],[9939,17],[10328,16],[10614,16],[10673,16]]},"150":{"position":[[40,17],[133,17],[196,17],[337,17],[448,17],[543,17],[602,17],[659,17],[788,17],[903,17],[998,17],[1079,17],[1234,17],[18860,16],[19791,16],[20200,16],[20834,16],[21380,16],[21997,16],[22419,16],[22835,16],[23791,16],[24841,16],[25496,16],[25936,16],[26996,16]]}}}],["spi_flash_data_lines_2",{"_index":7670,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13150,22]]}}}],["spi_flash_data_lines_4",{"_index":7671,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13188,22]]}}}],["spi_flash_data_lines_t",{"_index":7557,"t":{},"d":{},"k":{},"b":{"143":{"position":[[635,22],[2064,22],[12977,22],[13034,22]]}}}],["spi_flash_direct_transfer_dir_read",{"_index":8221,"t":{},"d":{},"k":{},"b":{"150":{"position":[[11699,36],[12966,36],[13984,36],[14774,36]]}}}],["spi_flash_direct_transfer_dir_t",{"_index":7559,"t":{},"d":{},"k":{},"b":{"143":{"position":[[701,31],[4057,31],[6498,31],[14790,31],[14856,31]]},"150":{"position":[[1153,31],[26134,31]]}}}],["spi_flash_direct_transfer_dir_writ",{"_index":8209,"t":{},"d":{},"k":{},"b":{"150":{"position":[[9529,37],[10073,37],[10734,37],[26523,37]]}}}],["spi_flash_direct_transfer_t",{"_index":7548,"t":{},"d":{},"k":{},"b":{"143":{"position":[[333,27],[1106,27],[1170,27],[4010,27],[6451,27]]},"150":{"position":[[1106,27],[9081,27],[11175,27],[12392,27],[13186,27],[26025,27]]}}}],["spi_flash_dummy_clocks_1",{"_index":7673,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13437,24]]}}}],["spi_flash_dummy_clocks_10",{"_index":7682,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13815,25]]}}}],["spi_flash_dummy_clocks_11",{"_index":7683,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13859,25]]}}}],["spi_flash_dummy_clocks_12",{"_index":7684,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13903,25]]}}}],["spi_flash_dummy_clocks_13",{"_index":7685,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13947,25]]}}}],["spi_flash_dummy_clocks_14",{"_index":7686,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13991,25]]}}}],["spi_flash_dummy_clocks_15",{"_index":7687,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14035,25]]}}}],["spi_flash_dummy_clocks_16",{"_index":7688,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14079,25]]}}}],["spi_flash_dummy_clocks_17",{"_index":7689,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14123,25]]}}}],["spi_flash_dummy_clocks_18",{"_index":7690,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14167,25]]}}}],["spi_flash_dummy_clocks_19",{"_index":7691,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14211,25]]}}}],["spi_flash_dummy_clocks_2",{"_index":7674,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13479,24]]}}}],["spi_flash_dummy_clocks_20",{"_index":7692,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14255,25]]}}}],["spi_flash_dummy_clocks_21",{"_index":7693,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14299,25]]}}}],["spi_flash_dummy_clocks_22",{"_index":7694,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14343,25]]}}}],["spi_flash_dummy_clocks_23",{"_index":7695,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14387,25]]}}}],["spi_flash_dummy_clocks_24",{"_index":7696,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14431,25]]}}}],["spi_flash_dummy_clocks_25",{"_index":7697,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14475,25]]}}}],["spi_flash_dummy_clocks_26",{"_index":7698,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14519,25]]}}}],["spi_flash_dummy_clocks_27",{"_index":7699,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14563,25]]}}}],["spi_flash_dummy_clocks_28",{"_index":7700,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14607,25]]}}}],["spi_flash_dummy_clocks_29",{"_index":7701,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14651,25]]}}}],["spi_flash_dummy_clocks_3",{"_index":7675,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13521,24]]}}}],["spi_flash_dummy_clocks_30",{"_index":7702,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14695,25]]}}}],["spi_flash_dummy_clocks_31",{"_index":7703,"t":{},"d":{},"k":{},"b":{"143":{"position":[[14739,25]]}}}],["spi_flash_dummy_clocks_4",{"_index":7676,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13563,24]]}}}],["spi_flash_dummy_clocks_5",{"_index":7677,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13605,24]]}}}],["spi_flash_dummy_clocks_6",{"_index":7678,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13647,24]]}}}],["spi_flash_dummy_clocks_7",{"_index":7679,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13689,24]]}}}],["spi_flash_dummy_clocks_8",{"_index":7680,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13731,24]]}}}],["spi_flash_dummy_clocks_9",{"_index":7681,"t":{},"d":{},"k":{},"b":{"143":{"position":[[13773,24]]}}}],["spi_flash_dummy_clocks_t",{"_index":7558,"t":{},"d":{},"k":{},"b":{"143":{"position":[[667,24],[1966,24],[13233,24],[13292,24]]}}}],["spi_flash_erase_command_t",{"_index":7547,"t":{},"d":{},"k":{},"b":{"143":{"position":[[297,25],[769,25],[831,25],[3000,25]]}}}],["spi_flash_erase_size_chip_eras",{"_index":7560,"t":{},"d":{},"k":{},"b":{"143":{"position":[[1050,31],[8246,31]]},"150":{"position":[[24230,32]]}}}],["spi_flash_instance_t",{"_index":7552,"t":{},"d":{},"k":{},"b":{"143":{"position":[[452,20],[10127,20],[10184,20]]}}}],["spi_flash_protocol_1s_1s_1",{"_index":7654,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12137,27]]}}}],["spi_flash_protocol_1s_2s_2",{"_index":7660,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12281,27]]}}}],["spi_flash_protocol_1s_4s_4",{"_index":7663,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12377,27]]}}}],["spi_flash_protocol_2s_2s_2",{"_index":7662,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12329,27]]}}}],["spi_flash_protocol_4s_4d_4d",{"_index":7655,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12185,27]]}}}],["spi_flash_protocol_4s_4s_4",{"_index":7664,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12425,27]]},"150":{"position":[[10846,30]]}}}],["spi_flash_protocol_8d_8d_8d",{"_index":7658,"t":{},"d":{},"k":{},"b":{"143":{"position":[[12233,27]]}}}],["spi_flash_protocol_dopi",{"_index":7652,"t":{},"d":{},"k":{},"b":{"143":{"position":[[11988,23]]}}}],["spi_flash_protocol_qpi",{"_index":7648,"t":{},"d":{},"k":{},"b":{"143":{"position":[[11733,22]]}}}],["spi_flash_protocol_sopi",{"_index":7650,"t":{},"d":{},"k":{},"b":{"143":{"position":[[11855,23]]}}}],["spi_flash_protocol_t",{"_index":7555,"t":{},"d":{},"k":{},"b":{"143":{"position":[[570,20],[1704,20],[4157,20],[6942,20],[11541,20],[11596,20]]},"150":{"position":[[475,20],[21469,20]]}}}],["spi_flash_read_mode_fast_read",{"_index":7640,"t":{},"d":{},"k":{},"b":{"143":{"position":[[11081,29]]}}}],["spi_flash_read_mode_fast_read_dual_io",{"_index":7643,"t":{},"d":{},"k":{},"b":{"143":{"position":[[11257,37]]}}}],["spi_flash_read_mode_fast_read_dual_output",{"_index":7641,"t":{},"d":{},"k":{},"b":{"143":{"position":[[11168,41]]}}}],["spi_flash_read_mode_fast_read_quad_io",{"_index":7646,"t":{},"d":{},"k":{},"b":{"143":{"position":[[11440,37]]}}}],["spi_flash_read_mode_fast_read_quad_output",{"_index":7644,"t":{},"d":{},"k":{},"b":{"143":{"position":[[11351,41]]}}}],["spi_flash_read_mode_t",{"_index":7554,"t":{},"d":{},"k":{},"b":{"143":{"position":[[539,21],[1828,21],[10895,21],[10951,21]]}}}],["spi_flash_status_t",{"_index":7550,"t":{},"d":{},"k":{},"b":{"143":{"position":[[397,18],[3202,18],[3257,18],[4466,18],[8421,18]]},"150":{"position":[[930,18],[10174,18],[24930,18]]}}}],["spi_instance_t",{"_index":7404,"t":{},"d":{},"k":{},"b":{"141":{"position":[[347,14],[7138,14],[7189,14]]}}}],["spi_irq",{"_index":5967,"t":{},"d":{},"k":{},"b":{"124":{"position":[[13516,7]]},"125":{"position":[[13967,7]]}}}],["spi_mode_fault_error_dis",{"_index":7466,"t":{},"d":{},"k":{},"b":{"141":{"position":[[10832,28]]}}}],["spi_mode_fault_t",{"_index":7408,"t":{},"d":{},"k":{},"b":{"141":{"position":[[520,16],[1862,16],[10398,16],[10449,16]]}}}],["spi_mode_slav",{"_index":7458,"t":{},"d":{},"k":{},"b":{"141":{"position":[[9821,14]]}}}],["spi_mode_t",{"_index":7405,"t":{},"d":{},"k":{},"b":{"141":{"position":[[447,10],[1660,10],[9655,10],[9700,10]]}}}],["spi_protocol",{"_index":7567,"t":{},"d":{},"k":{},"b":{"143":{"position":[[1726,12],[4178,13],[6963,13]]},"150":{"position":[[496,13],[21501,12]]}}}],["spi_software_ssl_exampl",{"_index":7499,"t":{},"d":{},"k":{},"b":{"142":{"position":[[10293,24]]}}}],["spi_write_read_guard_args_t",{"_index":7402,"t":{},"d":{},"k":{},"b":{"141":{"position":[[269,27],[918,27],[982,27]]}}}],["spike",{"_index":4124,"t":{},"d":{},"k":{},"b":{"88":{"position":[[20876,5],[21392,5]]}}}],["spiprotocolset",{"_index":7595,"t":{},"d":{},"k":{},"b":{"143":{"position":[[4114,14],[6825,14]]}}}],["split",{"_index":7809,"t":{},"d":{},"k":{},"b":{"145":{"position":[[12132,5]]}}}],["squar",{"_index":3318,"t":{},"d":{},"k":{},"b":{"83":{"position":[[5607,6],[17427,6]]},"105":{"position":[[4771,6],[11580,6]]},"138":{"position":[[4524,6]]}}}],["sram",{"_index":1791,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6253,4]]}}}],["src",{"_index":188,"t":{"62":{"position":[[45,3]]}},"d":{},"k":{},"b":{"24":{"position":[[26,3]]}}}],["src/cr8_start.c",{"_index":1881,"t":{},"d":{},"k":{},"b":{"71":{"position":[[11940,15],[11971,15]]}}}],["src_addr_mod",{"_index":7786,"t":{},"d":{},"k":{},"b":{"145":{"position":[[2541,13]]}}}],["src_size",{"_index":3042,"t":{},"d":{},"k":{},"b":{"79":{"position":[[11748,8]]},"145":{"position":[[2761,8]]}}}],["sscg",{"_index":5741,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10491,4]]}}}],["ssl",{"_index":6777,"t":{},"d":{},"k":{},"b":{"135":{"position":[[1529,3],[3753,3],[4302,3],[4372,3],[5692,3],[7216,3],[7340,3],[7367,3],[7390,3],[7508,3],[7541,3],[7662,3],[7722,3],[7960,3],[8057,3],[8074,3],[8114,3],[9269,3],[12871,3],[14736,3],[14825,3],[14882,3]]},"142":{"position":[[1376,3],[5703,3],[6050,3],[6120,3],[6389,3],[8389,3],[8514,3],[8541,3],[8564,3],[8682,3],[8715,3],[8842,3],[8939,3],[8956,3],[8996,3],[10271,3],[14487,3],[18176,3],[18266,3],[18324,3]]}}}],["ssl(slave",{"_index":7485,"t":{},"d":{},"k":{},"b":{"142":{"position":[[4626,9]]}}}],["ssl0",{"_index":7486,"t":{},"d":{},"k":{},"b":{"142":{"position":[[4645,4],[4669,4],[13792,5],[16326,5]]}}}],["ssl1",{"_index":7487,"t":{},"d":{},"k":{},"b":{"142":{"position":[[4651,4],[13800,5],[16363,5]]}}}],["ssl2",{"_index":7488,"t":{},"d":{},"k":{},"b":{"142":{"position":[[4657,4],[13808,5],[16400,5]]}}}],["ssl3",{"_index":7489,"t":{},"d":{},"k":{},"b":{"142":{"position":[[4663,4],[13816,5],[16437,5]]}}}],["ssl_level_keep",{"_index":6842,"t":{},"d":{},"k":{},"b":{"135":{"position":[[12848,14]]},"142":{"position":[[14464,14]]}}}],["ssl_negation_delay",{"_index":6840,"t":{},"d":{},"k":{},"b":{"135":{"position":[[12672,18]]},"142":{"position":[[14286,18]]}}}],["ssl_polar",{"_index":6836,"t":{},"d":{},"k":{},"b":{"135":{"position":[[12357,12]]},"142":{"position":[[13686,12]]}}}],["ssl_select",{"_index":7515,"t":{},"d":{},"k":{},"b":{"142":{"position":[[13751,10]]}}}],["ssla",{"_index":7463,"t":{},"d":{},"k":{},"b":{"141":{"position":[[10570,4]]}}}],["sslkp",{"_index":6804,"t":{},"d":{},"k":{},"b":{"135":{"position":[[7234,6]]},"142":{"position":[[8407,6]]}}}],["ssln",{"_index":6837,"t":{},"d":{},"k":{},"b":{"135":{"position":[[12378,4]]},"142":{"position":[[13707,4]]}}}],["sslp",{"_index":6855,"t":{},"d":{},"k":{},"b":{"135":{"position":[[14176,4],[14226,4]]},"142":{"position":[[16080,4],[16131,4]]}}}],["ssn",{"_index":7242,"t":{},"d":{},"k":{},"b":{"139":{"position":[[14863,3]]}}}],["st_irq",{"_index":4308,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47496,6]]}}}],["stabil",{"_index":1721,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2102,10]]},"113":{"position":[[4910,10],[15702,12]]},"133":{"position":[[7144,9],[8208,13],[8492,9]]},"136":{"position":[[6579,10],[6649,13]]}}}],["stabl",{"_index":6256,"t":{},"d":{},"k":{},"b":{"128":{"position":[[16514,6]]},"136":{"position":[[6471,6],[6751,6]]}}}],["stack",{"_index":676,"t":{},"d":{},"k":{},"b":{"68":{"position":[[2940,6],[2959,5]]},"69":{"position":[[2413,6],[2432,5]]},"71":{"position":[[1197,7],[1258,5],[2705,5],[9778,5],[9904,6],[9947,6],[9961,5],[10085,6],[10126,6],[10160,6],[29521,5],[31359,6],[32096,5],[33934,6],[38428,5],[38995,5]]},"75":{"position":[[11623,6],[11642,5]]},"76":{"position":[[2179,6],[2198,5]]},"77":{"position":[[1731,6],[1750,5]]},"79":{"position":[[2106,6],[2125,5]]},"80":{"position":[[4191,6],[4210,5]]},"83":{"position":[[5118,6],[5137,5]]},"84":{"position":[[2605,6],[2624,5]]},"88":{"position":[[7609,6],[7628,5]]},"89":{"position":[[1948,6],[1967,5]]},"90":{"position":[[1896,6],[1915,5]]},"91":{"position":[[1950,6],[1969,5]]},"92":{"position":[[2965,6],[2984,5]]},"105":{"position":[[4414,6],[4433,5],[6467,6]]},"106":{"position":[[1525,6],[1544,5]]},"108":{"position":[[1546,6],[1565,5]]},"111":{"position":[[259,7],[320,5]]},"116":{"position":[[200,6]]},"124":{"position":[[2659,6],[2678,5]]},"125":{"position":[[1847,6],[1866,5]]},"127":{"position":[[1923,6],[1942,5],[2493,6],[2512,5]]},"128":{"position":[[4032,5],[4099,5],[4285,5],[4366,5],[4438,5],[4463,5],[4510,5],[11786,5],[11857,5],[11921,5],[11975,5],[12036,5],[12153,5],[20930,5],[20978,5],[22980,5],[23324,6],[24299,5],[24652,6],[27417,5],[27478,5]]},"129":{"position":[[3750,6],[3769,5]]},"131":{"position":[[3606,6],[3625,5]]},"133":{"position":[[6393,6],[6412,5]]},"135":{"position":[[2111,6],[2130,5]]},"136":{"position":[[4375,6],[4394,5]]},"138":{"position":[[2767,6],[2786,5]]},"139":{"position":[[2486,6],[2505,5]]},"140":{"position":[[2399,6],[2418,5]]},"142":{"position":[[2639,6],[2658,5]]},"146":{"position":[[2062,6],[2081,5]]},"148":{"position":[[1496,6],[1882,6],[1901,5]]},"150":{"position":[[2438,6],[2457,5]]},"151":{"position":[[795,7]]},"152":{"position":[[338,7],[399,5]]}}}],["stacktype_t",{"_index":6308,"t":{},"d":{},"k":{},"b":{"128":{"position":[[22708,11],[23075,11],[23501,12],[24023,11],[24395,11],[24832,12]]}}}],["stage",{"_index":691,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3769,6],[3827,6],[3837,6],[3848,6],[3859,6],[3897,6],[22457,6],[22622,6],[22681,6],[22742,6],[22803,6]]},"75":{"position":[[4634,6],[5361,6],[6088,6],[6815,6],[7542,6],[8269,6],[8996,6],[9723,6],[17747,7],[18049,7],[24837,7]]},"92":{"position":[[22275,5],[22357,5],[22441,5],[22525,5],[24672,5],[24754,5],[24838,5],[24922,5]]},"124":{"position":[[3603,6],[13396,5]]},"125":{"position":[[2888,5],[2919,5],[2935,5],[2951,5],[2967,5],[2983,5],[3032,6],[13610,6]]},"139":{"position":[[6058,5]]},"140":{"position":[[4859,5]]}}}],["stagesvalu",{"_index":5890,"t":{},"d":{},"k":{},"b":{"124":{"position":[[3534,11]]}}}],["stale",{"_index":6365,"t":{},"d":{},"k":{},"b":{"129":{"position":[[515,5],[9780,5],[12599,5]]},"133":{"position":[[203,5],[51441,5]]}}}],["stall",{"_index":4020,"t":{},"d":{},"k":{},"b":{"88":{"position":[[2037,8],[9903,8],[9981,8],[10064,8],[10134,8],[10216,8],[10282,8],[10361,8],[10424,8],[10496,8],[10575,5],[41072,8],[41163,8],[41273,8],[41376,8],[41480,8],[41571,5],[41944,8],[41980,8]]}}}],["standard",{"_index":119,"t":{},"d":{},"k":{},"b":{"1":{"position":[[337,9],[405,8]]},"67":{"position":[[89,8]]},"71":{"position":[[5939,8],[10461,8]]},"74":{"position":[[1841,8],[9526,8]]},"75":{"position":[[1563,8],[2298,9],[25487,8]]},"77":{"position":[[787,8]]},"88":{"position":[[1775,8],[7728,8],[7853,8],[7910,8],[8018,8],[8075,8],[8235,8],[8291,8],[8426,8],[15243,8],[15541,8],[15717,8],[15882,8],[16360,8],[21151,8],[41819,8]]},"113":{"position":[[1433,8]]},"124":{"position":[[1471,8],[2913,8],[2950,8],[3456,8]]},"125":{"position":[[783,8],[2506,8],[2543,8]]},"128":{"position":[[485,8],[15339,8],[15847,8]]},"134":{"position":[[3148,8],[3236,8]]},"135":{"position":[[952,8]]},"136":{"position":[[7595,8]]},"137":{"position":[[9608,8]]},"138":{"position":[[1469,8],[3320,8],[3341,8]]},"142":{"position":[[988,8]]},"143":{"position":[[11042,8],[12718,8],[12939,8]]},"144":{"position":[[100,8]]},"150":{"position":[[13694,8],[14116,8]]},"151":{"position":[[60,8],[811,10],[1168,8]]}}}],["standbi",{"_index":1633,"t":{},"d":{},"k":{},"b":{"70":{"position":[[12427,7],[12479,7],[12499,7],[12532,7]]}}}],["start",{"_index":161,"t":{"2":{"position":[[45,8]]},"153":{"position":[[45,8]]}},"d":{},"k":{},"b":{"2":{"position":[[16,8],[75,7]]},"67":{"position":[[254,8],[1853,5],[2450,5],[6191,5],[6577,5],[6856,5]]},"68":{"position":[[1481,5],[5111,5],[5482,5],[6193,8],[6299,7],[10187,5],[13220,5],[13325,5],[25255,5],[25336,8],[25390,7]]},"69":{"position":[[1432,5],[1682,6],[3395,5],[3500,5],[3544,5],[3649,5],[3693,5],[3821,5],[3926,5],[3970,5],[10052,5],[10720,5],[11507,5],[11664,5],[11783,8],[11804,5],[11884,8],[11955,8],[11987,5],[12106,8],[14051,5],[18264,5],[19424,5],[19509,5],[19688,5],[31807,6],[32227,6],[32322,8],[32376,7],[34272,8],[34297,7]]},"71":{"position":[[1433,5],[4374,5],[4737,5],[4962,5],[5314,5],[6129,5],[6918,8],[14945,7],[28360,8],[36396,5],[37147,5],[38387,6],[38954,6],[40361,5]]},"75":{"position":[[3157,8]]},"76":{"position":[[1591,6],[3135,5],[3170,5],[3272,5],[3307,5],[7567,5],[8350,5],[10549,5],[19017,6],[19078,5],[19176,8],[19500,6],[20065,6],[23480,8]]},"77":{"position":[[2725,5]]},"79":{"position":[[2993,5],[7493,5],[17466,5],[18912,7],[19326,7]]},"80":{"position":[[1556,5],[2030,5]]},"83":{"position":[[2435,6],[2639,6],[2897,5],[9562,5],[9627,5],[9684,5],[9751,5],[9932,5],[10036,5],[13046,5],[13095,5],[13159,5],[13225,5],[13289,5],[13354,5],[18880,5],[19022,6],[19436,6],[19699,5],[19843,6],[19939,6],[20777,5],[21433,7],[21685,5],[24013,5],[25558,5],[26339,5],[26400,5],[26533,5],[26557,5],[27110,5],[27293,5],[27324,5],[27407,5],[29354,5],[30516,6],[33266,5],[38689,5],[40939,5],[41020,5],[41062,5],[41128,5],[41170,5],[46924,8],[48122,6],[48218,8],[49037,6],[49482,6],[55389,5]]},"84":{"position":[[1425,6],[4107,5],[4206,6],[6315,5],[7032,5],[7824,5],[9543,8],[9607,8],[12493,6],[12576,8],[12898,6],[13273,6],[16042,8]]},"87":{"position":[[3197,5],[9176,5],[11034,5],[11125,6],[11586,5],[11831,5],[11922,6],[12504,5],[13050,5],[18689,6],[19628,8],[19646,8]]},"88":{"position":[[4200,8],[4465,8],[4579,6],[5506,8],[11819,8],[14534,6],[17168,5],[24188,5],[24745,5],[25054,5],[32115,5],[32418,5],[33790,5],[43180,8],[47504,5],[55961,5],[57963,5],[58050,6],[58950,5],[59037,6]]},"105":{"position":[[2331,6],[2783,5],[2967,5],[8735,5],[8757,6],[8901,5],[8972,5],[8994,6],[9138,5],[11887,5],[12532,5],[13286,5],[14091,5],[15889,5],[18592,5],[18682,5],[27253,5],[27335,5],[27378,5],[27445,5],[27488,5],[28550,8],[29455,6],[29516,5],[29627,8],[37331,5]]},"106":{"position":[[21654,6],[21782,5],[23539,7]]},"107":{"position":[[2933,5],[4118,5],[4319,5]]},"113":{"position":[[15560,8]]},"124":{"position":[[5562,5],[7070,5],[13475,5]]},"125":{"position":[[2191,6],[4370,5],[13926,5],[14697,6]]},"128":{"position":[[4958,8],[6869,6]]},"129":{"position":[[466,5],[569,5],[2906,8],[4224,5],[9046,5],[12550,5],[12653,5],[12766,8],[14726,8],[15793,8],[16724,8],[17591,8]]},"130":{"position":[[3258,5]]},"131":{"position":[[470,5],[545,5],[2306,8],[4875,5],[5813,6],[7566,5],[7617,5],[7857,5],[8328,5],[9183,5],[11882,5],[12139,5],[17376,5],[17451,5],[17887,8],[18711,8]]},"132":{"position":[[3511,5]]},"133":{"position":[[154,5],[259,5],[442,5],[5725,5],[7003,5],[9582,5],[9633,5],[51392,5],[51497,5],[51600,8],[52104,5],[52219,8],[52793,8],[53383,8]]},"134":{"position":[[6607,5]]},"135":{"position":[[8724,5],[9907,5],[10563,5]]},"136":{"position":[[6378,5],[6459,7],[6765,8],[7002,5],[8592,5],[11448,8],[12329,8],[15762,5]]},"137":{"position":[[5780,5],[6008,6]]},"138":{"position":[[7667,5]]},"139":{"position":[[5143,5],[5802,5],[5861,5],[13654,5],[14404,5],[16401,5],[16516,5],[16599,5]]},"142":{"position":[[9718,5],[10916,5],[11581,5]]},"143":{"position":[[1288,8],[8169,5]]},"144":{"position":[[3623,5],[4925,5],[5039,5]]},"145":{"position":[[7447,5],[8071,7],[16612,5],[16660,6],[16715,5],[16785,5]]},"146":{"position":[[1565,5],[6542,5],[9709,5],[13290,5],[13578,5],[17883,6],[18305,6],[18378,7],[20251,8],[20276,7]]},"148":{"position":[[1381,7],[1448,5],[2284,5],[2354,5],[4620,7],[5174,5],[5194,6],[5456,5],[5468,5],[5856,5],[8276,5],[8312,5],[8344,5],[8393,5],[8688,5],[8737,5],[9982,5],[10012,5]]},"149":{"position":[[1574,5],[3199,5],[3219,5],[7484,5],[7532,5],[7576,5],[7620,5],[7665,5]]},"150":{"position":[[19172,8]]},"151":{"position":[[428,6],[510,8],[653,5],[1523,8]]},"153":{"position":[[45,7],[87,8]]}}}],["start_sourc",{"_index":3438,"t":{},"d":{},"k":{},"b":{"83":{"position":[[30462,12]]}}}],["starting_device_index",{"_index":3888,"t":{},"d":{},"k":{},"b":{"87":{"position":[[5829,22],[9113,22]]},"88":{"position":[[763,22],[55784,22]]}}}],["startup",{"_index":1720,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2015,7],[5435,8],[11491,8],[39949,7],[40184,7]]},"93":{"position":[[3071,8]]},"128":{"position":[[20267,7],[20343,7]]},"136":{"position":[[6597,7]]}}}],["stat",{"_index":6293,"t":{},"d":{},"k":{},"b":{"128":{"position":[[21047,5],[21238,5],[21250,5],[21337,5],[21548,5],[21574,5],[21622,5]]}}}],["state",{"_index":282,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1125,5],[1140,6],[16521,7]]},"68":{"position":[[8900,5],[8981,5],[9093,5],[9124,6],[9209,6],[9263,5],[28773,5],[28921,6],[29034,5]]},"69":{"position":[[28020,6]]},"71":{"position":[[1626,5],[7912,6],[11717,5],[14877,6],[15302,6],[15750,6],[16197,6],[16645,6],[17092,6],[17544,6],[17995,6],[18443,6],[18890,6],[19338,6],[19785,6],[20235,6],[20684,6],[21134,6],[21583,6],[22031,6],[22478,6],[22928,6],[23377,6],[23825,6],[24272,6],[24722,6],[25171,6],[25621,6],[26070,6],[26518,6],[26965,6],[27415,6],[27864,6],[28292,6],[28719,6],[30406,5],[30607,6],[32981,5],[33182,6],[42483,6],[43334,6]]},"74":{"position":[[5952,6],[5998,6]]},"75":{"position":[[3330,5],[20168,5],[32708,6],[32757,6],[33348,5],[33422,6],[35189,5],[39570,5]]},"76":{"position":[[21531,5]]},"80":{"position":[[4684,5]]},"83":{"position":[[38207,5],[53126,5],[56555,6]]},"84":{"position":[[14379,5]]},"87":{"position":[[15013,5],[15064,5],[15115,5],[15166,5],[16255,5],[16303,5],[16351,5],[16399,5]]},"88":{"position":[[11709,5],[11725,5],[11743,5],[11761,5],[11779,5],[11797,5],[11837,5],[43198,5],[44950,5],[49693,6]]},"89":{"position":[[2281,5]]},"90":{"position":[[2132,5]]},"91":{"position":[[2374,5]]},"92":{"position":[[1872,5],[4287,5],[4392,5],[4497,5],[4602,5],[4707,5],[4812,5],[4917,5],[5022,5],[5720,5],[5825,5],[5930,5],[6035,5],[6140,5],[6245,5],[6350,5],[6455,5],[10934,5],[11111,5],[11332,6],[11415,5],[11988,5],[12437,6],[14288,5],[32884,5],[37788,5]]},"93":{"position":[[7387,6]]},"105":{"position":[[34509,5]]},"107":{"position":[[1071,5],[1090,6]]},"108":{"position":[[6845,5]]},"109":{"position":[[747,5],[762,5],[3319,6],[3473,5],[5993,7],[6602,5]]},"113":{"position":[[3631,6],[5740,6],[13150,6],[14527,6]]},"124":{"position":[[6903,5],[17294,6]]},"125":{"position":[[6101,6]]},"128":{"position":[[10123,6],[10326,6],[18104,5],[18536,5],[23212,5],[24538,5]]},"135":{"position":[[2909,5]]},"137":{"position":[[10630,5]]},"138":{"position":[[16630,6]]},"142":{"position":[[4713,5]]},"144":{"position":[[2060,5],[2081,5],[8410,5]]}}}],["static",{"_index":1730,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2577,10]]},"75":{"position":[[18638,6]]},"80":{"position":[[5283,8]]},"87":{"position":[[1647,6],[2516,6],[16092,6],[16516,6]]},"88":{"position":[[2543,6],[2770,6],[5706,6],[5920,6],[6123,6],[6359,6],[22582,6],[22653,6],[23037,6],[23113,6],[24775,6],[25083,6],[26618,6],[26688,6],[27478,6],[27537,6],[30301,6],[30372,6],[30756,6],[30832,6],[32145,6],[32447,6],[33405,6],[36860,6],[36959,6],[38327,6]]},"92":{"position":[[14922,6]]},"113":{"position":[[1804,10]]},"128":{"position":[[21700,6],[21757,6],[21876,6],[22000,6],[22070,6],[22425,6],[22931,6],[23034,6],[23068,6],[23706,6],[24250,6],[24353,6],[24388,6],[25117,6],[25156,6],[25572,6]]},"135":{"position":[[8351,6],[8996,8]]},"142":{"position":[[9338,6],[9999,8]]},"151":{"position":[[2614,6]]}}}],["static_address",{"_index":3850,"t":{},"d":{},"k":{},"b":{"87":{"position":[[1627,14],[2496,14]]},"88":{"position":[[22731,15],[23191,15],[26766,15],[30450,15],[30910,15]]}}}],["statictask_t",{"_index":6306,"t":{},"d":{},"k":{},"b":{"128":{"position":[[22632,12],[23041,12],[23163,12],[23945,12],[24360,12],[24488,12]]}}}],["statu",{"_index":280,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1089,7],[7407,7],[7599,6]]},"68":{"position":[[10415,7],[10574,9],[26884,6],[26973,6]]},"69":{"position":[[14279,7],[14438,9],[34236,6],[34373,6]]},"74":{"position":[[914,6],[951,6],[991,6]]},"75":{"position":[[27672,6],[32492,6],[39580,6]]},"76":{"position":[[1760,6],[8580,7],[8631,10],[21720,7],[21771,9],[21821,6]]},"83":{"position":[[2604,6],[21913,7],[21963,10],[52995,6]]},"84":{"position":[[1583,6],[7258,7],[7307,10],[14503,6]]},"85":{"position":[[1068,6],[7486,6],[7702,7]]},"87":{"position":[[792,6],[3564,6],[10007,6],[10278,6],[16964,7]]},"88":{"position":[[500,7],[14119,6],[17841,6],[18452,6],[18606,6],[22497,6],[22570,8],[22936,6],[23025,8],[23967,6],[24066,8],[24110,6],[24173,8],[24276,6],[24404,8],[24623,6],[24730,8],[24829,6],[24938,8],[25120,6],[25226,8],[26533,6],[26606,8],[27275,6],[27363,8],[27403,6],[27466,8],[27672,6],[27778,8],[27978,6],[28087,8],[30216,6],[30289,8],[30655,6],[30744,8],[31712,6],[31811,8],[31855,6],[31918,8],[31998,6],[32100,8],[32197,6],[32302,8],[32482,6],[32584,8],[33552,6],[33662,8],[36048,6],[36188,8],[37505,6],[37594,8],[37738,6],[38552,6],[38654,8],[47415,6],[48640,6],[54214,6],[54299,6]]},"105":{"position":[[2500,6],[13516,7],[13567,10],[34212,6],[34402,7],[34453,9]]},"106":{"position":[[24340,6]]},"107":{"position":[[1035,7],[5757,6],[5957,6],[9750,6]]},"108":{"position":[[1132,7],[4411,7],[4461,9],[4650,6],[4817,9],[6716,6],[8497,6],[8625,6],[8697,6],[8776,6]]},"109":{"position":[[711,6],[4674,6],[4728,6]]},"113":{"position":[[5191,6],[5284,6]]},"124":{"position":[[1354,7],[4309,7],[20462,7]]},"125":{"position":[[3566,7]]},"130":{"position":[[964,7]]},"133":{"position":[[854,6],[1114,6],[2187,6],[2566,6],[2937,6],[3316,6],[3696,6],[4075,6],[4444,6],[5762,6],[9732,6],[10333,6],[23420,7],[28623,6],[47325,6],[50021,6],[50029,6],[53276,6],[54010,6],[56585,6],[57435,6],[58272,6],[59123,6],[59974,6],[60824,6],[61658,6]]},"134":{"position":[[7186,6],[13472,6]]},"136":{"position":[[17266,6]]},"137":{"position":[[2632,6],[2648,7]]},"138":{"position":[[1352,7],[19213,7]]},"143":{"position":[[2321,7],[2385,7],[2750,7],[3293,7],[8497,6],[8640,6]]},"144":{"position":[[1978,7],[8647,6],[11790,6]]},"146":{"position":[[20152,6],[20215,6],[20352,6]]},"148":{"position":[[220,7],[6356,6],[6425,9],[6621,8],[11535,6],[11626,6],[11779,8],[12321,6],[12383,6],[12491,6],[12560,9],[12637,6]]},"149":{"position":[[2651,7],[3837,6],[3997,6],[4163,7],[4198,6],[8685,6],[8727,6]]},"150":{"position":[[3716,6],[3789,6],[3855,6],[3942,6],[3973,6],[9436,6],[9613,6],[10193,7],[10262,9],[10885,6],[11010,6],[11052,6],[11606,6],[11764,6],[25070,6],[25172,6],[26430,6]]}}}],["status",{"_index":4105,"t":{},"d":{},"k":{},"b":{"88":{"position":[[18099,9]]}}}],["status.count",{"_index":2667,"t":{},"d":{},"k":{},"b":{"76":{"position":[[8543,15],[21683,15]]},"83":{"position":[[21876,15]]},"84":{"position":[[7221,15]]},"105":{"position":[[13479,15],[34365,15]]}}}],["status.st",{"_index":782,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10426,12],[10509,13]]},"69":{"position":[[14290,12],[14373,13]]},"108":{"position":[[4872,14]]}}}],["status.write_in_progress",{"_index":8216,"t":{},"d":{},"k":{},"b":{"150":{"position":[[10318,26]]}}}],["status/ev",{"_index":5996,"t":{},"d":{},"k":{},"b":{"125":{"position":[[5874,14]]}}}],["status_command",{"_index":7580,"t":{},"d":{},"k":{},"b":{"143":{"position":[[2708,14]]}}}],["statuscheck",{"_index":6736,"t":{},"d":{},"k":{},"b":{"134":{"position":[[4512,11],[7039,11]]}}}],["statusclear",{"_index":8079,"t":{},"d":{},"k":{},"b":{"149":{"position":[[2592,11],[4039,11]]}}}],["statusget",{"_index":3730,"t":{},"d":{},"k":{},"b":{"85":{"position":[[3914,9],[7310,9]]},"107":{"position":[[3208,9],[5597,9]]},"109":{"position":[[2317,9],[3150,9]]},"143":{"position":[[4428,9],[8314,9]]},"144":{"position":[[4143,9],[8216,9]]},"149":{"position":[[2510,9],[3680,9]]}}}],["stdbool.h",{"_index":127,"t":{},"d":{},"k":{},"b":{"1":{"position":[[449,12]]}}}],["stdbr",{"_index":4246,"t":{},"d":{},"k":{},"b":{"88":{"position":[[41808,5]]}}}],["stdbrh/l",{"_index":4322,"t":{},"d":{},"k":{},"b":{"88":{"position":[[48961,9],[49118,8],[49321,8]]}}}],["stdint.h",{"_index":125,"t":{},"d":{},"k":{},"b":{"1":{"position":[[428,11]]}}}],["step",{"_index":659,"t":{},"d":{},"k":{},"b":{"68":{"position":[[1786,4],[2543,4],[4337,4],[5943,4],[6768,4],[6955,4],[21878,4]]},"77":{"position":[[3424,4]]},"80":{"position":[[2862,6]]},"131":{"position":[[4647,6],[5428,6]]},"151":{"position":[[544,4],[552,4],[3309,5]]}}}],["sti",{"_index":5897,"t":{},"d":{},"k":{},"b":{"124":{"position":[[4467,4],[5578,6]]},"125":{"position":[[2338,4],[4386,6],[4660,4]]}}}],["sti_irq",{"_index":5966,"t":{},"d":{},"k":{},"b":{"124":{"position":[[13466,7]]},"125":{"position":[[13917,7]]}}}],["still",{"_index":941,"t":{},"d":{},"k":{},"b":{"68":{"position":[[25626,5]]},"69":{"position":[[12699,5],[32614,5]]},"71":{"position":[[8720,5]]},"75":{"position":[[23691,5]]},"88":{"position":[[20234,5]]},"108":{"position":[[3640,5]]},"128":{"position":[[10269,5]]},"131":{"position":[[5875,5]]},"133":{"position":[[29863,5],[48366,5]]},"139":{"position":[[8605,5],[8888,5],[19821,5],[23801,5],[27073,5]]},"140":{"position":[[6762,5],[18216,5],[21653,5],[24022,5]]},"146":{"position":[[18616,5]]}}}],["stop",{"_index":425,"t":{},"d":{},"k":{},"b":{"67":{"position":[[6992,4]]},"68":{"position":[[26304,4],[26362,7]]},"69":{"position":[[33299,5],[33495,8],[33623,8],[33719,7]]},"71":{"position":[[14872,4],[15297,4],[15370,7],[15745,4],[15818,7],[16192,4],[16265,7],[16640,4],[16713,7],[17087,4],[17160,7],[17539,4],[17612,7],[17990,4],[18063,7],[18438,4],[18511,7],[18885,4],[18958,7],[19333,4],[19406,7],[19780,4],[19853,7],[20230,4],[20303,7],[20679,4],[20752,7],[21129,4],[21202,7],[21578,4],[21651,7],[22026,4],[22099,7],[22473,4],[22546,7],[22923,4],[22996,7],[23372,4],[23445,7],[23820,4],[23893,7],[24267,4],[24340,7],[24717,4],[24790,7],[25166,4],[25239,7],[25616,4],[25689,7],[26065,4],[26138,7],[26513,4],[26586,7],[26960,4],[27033,7],[27410,4],[27483,7],[27859,4],[27932,7],[28287,4],[28714,4],[28787,8],[29422,4],[31997,4]]},"76":{"position":[[1598,5],[6460,8],[8427,4],[15635,5],[19507,5],[20072,5],[22154,5],[22228,4],[22324,8],[23005,7]]},"79":{"position":[[19289,4],[19408,7]]},"80":{"position":[[4679,4],[4760,8]]},"83":{"position":[[2442,5],[2646,5],[3076,8],[7580,4],[7670,8],[8280,4],[8370,8],[8761,4],[8874,8],[8992,4],[9105,8],[9787,4],[9868,4],[10070,4],[10134,4],[16661,8],[17578,4],[17637,4],[19016,5],[19430,5],[19850,5],[19946,5],[21761,4],[28435,4],[30592,5],[33283,4],[46693,7],[47762,5],[47856,8],[49044,5],[49489,5],[49629,8],[50255,8],[53702,8],[53907,4],[57743,5]]},"84":{"position":[[1432,4],[5636,8],[7107,4],[10049,5],[11093,4],[12905,5],[13280,5],[14834,5],[14919,8],[15595,7]]},"87":{"position":[[11096,4],[11317,4],[11893,4]]},"88":{"position":[[14516,4],[18381,4],[18535,4],[37299,4],[47553,4],[58021,4],[59008,4]]},"105":{"position":[[2338,5],[2614,8],[11732,4],[11791,4],[13363,4],[29008,5],[29078,4],[29187,8],[30679,8],[35087,8],[35280,4],[38545,5]]},"106":{"position":[[21866,4],[22447,5],[22575,4],[22658,4]]},"107":{"position":[[3072,4],[4659,4],[4767,4],[4804,7],[5534,4],[9869,8]]},"109":{"position":[[6357,5],[7123,5]]},"113":{"position":[[4855,8],[5088,4],[5115,4],[5176,4],[5272,4]]},"124":{"position":[[5585,4],[7053,4],[13525,4]]},"125":{"position":[[2198,5],[4393,4],[13976,4],[14704,5]]},"128":{"position":[[16209,8],[17077,8]]},"131":{"position":[[1020,4],[1070,8],[6590,4],[6637,4],[6761,4],[6830,8],[9064,4],[15633,4],[18350,4],[18400,8]]},"132":{"position":[[3799,4]]},"133":{"position":[[636,4],[52680,4]]},"134":{"position":[[6899,4]]},"135":{"position":[[6527,8]]},"137":{"position":[[10682,8]]},"139":{"position":[[3072,4],[3122,4]]},"140":{"position":[[2820,4],[2870,4]]},"142":{"position":[[7701,8]]},"144":{"position":[[2099,8],[3673,4],[5235,4],[5347,4],[11881,8],[12138,5]]},"145":{"position":[[7923,4],[7968,4]]},"146":{"position":[[19440,8]]},"147":{"position":[[2117,4],[8794,4],[10915,4],[10965,4],[11000,4]]},"148":{"position":[[4450,4],[4673,7]]},"149":{"position":[[8472,4],[8559,4]]},"150":{"position":[[5714,4],[5769,4]]}}}],["stop/restart",{"_index":5994,"t":{},"d":{},"k":{},"b":{"125":{"position":[[5002,12]]}}}],["stop_bit",{"_index":7948,"t":{},"d":{},"k":{},"b":{"147":{"position":[[2106,9]]}}}],["stop_control",{"_index":8046,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7557,13]]},"149":{"position":[[1768,12]]}}}],["stop_level",{"_index":3421,"t":{},"d":{},"k":{},"b":{"83":{"position":[[28414,10]]}}}],["stop_sourc",{"_index":3439,"t":{},"d":{},"k":{},"b":{"83":{"position":[[30539,11]]}}}],["storag",{"_index":2276,"t":{"120":{"position":[[45,7]]}},"d":{},"k":{},"b":{"75":{"position":[[2508,7],[2554,7]]},"116":{"position":[[1600,7],[1609,7]]},"120":{"position":[[22,7]]},"128":{"position":[[11649,7],[11759,7]]},"141":{"position":[[3633,7]]},"150":{"position":[[2369,7],[2465,7]]}}}],["storagestorag",{"_index":8379,"t":{},"d":{},"k":{},"b":{"152":{"position":[[5100,15]]}}}],["store",{"_index":433,"t":{},"d":{},"k":{},"b":{"67":{"position":[[7585,5]]},"68":{"position":[[2104,7],[7419,6],[7578,7],[7946,6],[8464,6],[24968,6],[26895,5],[26980,6]]},"69":{"position":[[31520,6],[34380,6]]},"71":{"position":[[8795,5],[38167,7],[43867,7]]},"74":{"position":[[5217,5]]},"75":{"position":[[19432,5],[25438,5],[26077,5]]},"76":{"position":[[20724,5],[21060,6],[21555,6]]},"83":{"position":[[52383,5],[53006,5]]},"84":{"position":[[13769,5],[13910,6],[14403,6]]},"85":{"position":[[4942,5],[7688,5]]},"86":{"position":[[4196,5]]},"87":{"position":[[11968,7],[12376,5],[13328,7],[13559,5]]},"88":{"position":[[2408,7],[27620,7],[33490,7],[37093,7],[39095,6],[60862,7]]},"92":{"position":[[14864,6],[31986,6],[32896,6],[36792,6],[37800,6]]},"95":{"position":[[885,6],[1050,6],[1119,6]]},"96":{"position":[[875,6]]},"98":{"position":[[827,6],[991,6],[1060,6]]},"99":{"position":[[864,6],[1027,6],[1096,6]]},"100":{"position":[[854,6]]},"104":{"position":[[806,6],[968,6],[1037,6]]},"105":{"position":[[33622,5],[34223,5]]},"106":{"position":[[23425,6],[24351,6],[24468,6]]},"107":{"position":[[5363,5],[5768,5]]},"108":{"position":[[6727,5],[6851,6]]},"124":{"position":[[20509,6]]},"126":{"position":[[2902,5]]},"128":{"position":[[12392,5],[12519,6],[12718,6],[23226,7],[24552,7]]},"135":{"position":[[22510,5]]},"136":{"position":[[17288,5]]},"138":{"position":[[19260,6]]},"139":{"position":[[22671,6],[25460,6]]},"140":{"position":[[20527,6],[23380,6]]},"142":{"position":[[24260,5]]},"143":{"position":[[8671,6]]},"144":{"position":[[1542,5],[7937,6],[8420,5]]},"145":{"position":[[6176,6]]},"146":{"position":[[20163,5],[20359,6],[22419,6]]},"147":{"position":[[9044,5]]},"150":{"position":[[13857,6]]},"289":{"position":[[18,6],[206,6]]}}}],["stream",{"_index":2801,"t":{},"d":{},"k":{},"b":{"77":{"position":[[705,6]]}}}],["strength",{"_index":4450,"t":{},"d":{},"k":{},"b":{"92":{"position":[[1935,8],[31126,8]]}}}],["stretch",{"_index":5988,"t":{},"d":{},"k":{},"b":{"125":{"position":[[1111,10],[3307,10],[3363,11],[4863,10],[5105,10],[5188,11],[5956,10],[7776,11]]},"135":{"position":[[6691,9]]},"142":{"position":[[7865,9]]}}}],["string",{"_index":6354,"t":{},"d":{},"k":{},"b":{"128":{"position":[[29787,6]]}}}],["strong",{"_index":1759,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3830,6],[4122,7],[4699,8]]}}}],["struct",{"_index":258,"t":{"287":{"position":[[65,6]]},"288":{"position":[[63,6]]},"289":{"position":[[59,6]]},"290":{"position":[[59,6]]},"291":{"position":[[63,6]]},"292":{"position":[[60,6]]}},"d":{},"k":{},"b":{"67":{"position":[[573,6],[596,6],[626,6],[647,6],[667,6],[687,6],[1048,6],[1204,6],[1716,6],[2664,6],[3702,6],[11470,6]]},"68":{"position":[[16446,6],[16477,6],[16507,6],[16921,6],[17572,6],[17858,6]]},"69":{"position":[[18511,6],[18542,6],[18571,6],[18601,6],[18998,6],[20096,6],[20829,6],[21340,6]]},"74":{"position":[[456,6],[477,6],[508,6],[530,6],[560,6],[580,6],[600,6],[875,6],[1342,6],[1727,6],[2135,6],[2537,6],[3139,6],[7181,6]]},"75":{"position":[[30578,6],[30606,6],[30635,6],[30999,6],[31151,6],[31741,6]]},"76":{"position":[[11776,6],[11807,6],[12103,6],[12302,6]]},"77":{"position":[[4781,6],[4810,6],[4921,6],[5052,6]]},"78":{"position":[[405,6],[427,6],[447,6],[467,6],[700,6],[807,6],[1248,6],[3911,6]]},"79":{"position":[[8322,6],[8355,6],[8395,6],[8428,6],[8460,6],[8986,6],[9293,6],[9557,6],[9772,6],[11583,6]]},"80":{"position":[[5171,6],[8211,6],[8323,6]]},"81":{"position":[[82,6],[102,6],[122,6],[327,6],[557,6],[3576,6]]},"82":{"position":[[352,6],[391,6],[420,6],[449,6],[700,6],[1053,6],[2124,6],[5393,6]]},"83":{"position":[[27502,6],[27529,6],[27559,6],[27589,6],[27622,6],[28230,6],[28525,6],[28694,6],[28895,6],[30218,6]]},"84":{"position":[[8833,6],[8863,6],[9040,6],[9237,6]]},"85":{"position":[[374,6],[411,6],[441,6],[468,6],[495,6],[762,6],[1020,6],[1191,6],[3094,6],[8118,6]]},"86":{"position":[[333,6],[369,6],[395,6],[421,6],[682,6],[1001,6],[2742,6],[5826,6]]},"87":{"position":[[178,6],[208,6],[235,6],[268,6],[295,6],[330,6],[360,6],[380,6],[400,6],[736,6],[1123,6],[1428,6],[2325,6],[2866,6],[3353,6],[4161,6],[5114,6],[14019,6]]},"88":{"position":[[39443,6],[39476,6],[39511,6],[39541,6],[39587,6],[39619,6],[41019,6],[41676,6],[42084,6],[42719,6],[44458,6],[46119,6]]},"89":{"position":[[4308,6],[4430,6]]},"90":{"position":[[3940,6],[4062,6]]},"91":{"position":[[4579,6],[4615,6],[4831,6],[5456,6]]},"92":{"position":[[16312,6],[16345,6],[16377,6],[16415,6],[16452,6],[16960,6],[17164,6],[17711,6],[18059,6],[18612,6]]},"93":{"position":[[321,6],[348,6],[371,6],[394,6],[651,6],[944,6],[1350,6],[8062,6]]},"94":{"position":[[574,6],[604,6],[624,6],[644,6],[828,6],[1174,6],[2200,6],[4704,6]]},"95":{"position":[[1185,6],[1307,6]]},"96":{"position":[[941,6],[1083,6]]},"97":{"position":[[689,6],[831,6]]},"98":{"position":[[1126,6],[1246,6]]},"99":{"position":[[1162,6],[1280,6]]},"100":{"position":[[920,6],[1058,6]]},"101":{"position":[[545,6],[588,6],[621,6],[654,6],[837,6],[1196,6],[2236,6],[4453,6]]},"102":{"position":[[670,6],[808,6]]},"103":{"position":[[520,6],[563,6],[596,6],[629,6],[812,6],[1171,6],[1512,6],[3139,6]]},"104":{"position":[[1103,6],[1219,6]]},"105":{"position":[[16503,6],[16531,6],[16562,6],[16596,6],[17153,6],[17414,6],[18228,6],[19442,6]]},"106":{"position":[[14108,6],[14138,6],[14505,6],[14709,6]]},"107":{"position":[[238,6],[268,6],[291,6],[311,6],[331,6],[609,6],[994,6],[1144,6],[2731,6],[7044,6]]},"108":{"position":[[5145,6],[5259,6]]},"109":{"position":[[302,6],[326,6],[357,6],[378,6],[399,6],[668,6],[835,6],[1049,6],[2062,6],[5238,6]]},"111":{"position":[[463,6],[890,6],[1045,6]]},"113":{"position":[[112,6],[492,6],[615,6]]},"124":{"position":[[12233,6],[12271,6],[12308,6],[12523,6],[12833,6],[12989,6]]},"125":{"position":[[13198,6],[13235,6],[13360,6],[13700,6]]},"126":{"position":[[272,6],[311,6],[346,6],[371,6],[396,6],[600,6],[653,6],[750,6],[906,6],[1495,6],[3592,6],[3825,6]]},"127":{"position":[[6366,6],[6496,6]]},"129":{"position":[[10110,6],[10156,6],[10290,6],[10669,6]]},"130":{"position":[[238,6],[274,6],[305,6],[339,6],[366,6],[392,6],[418,6],[685,6],[829,6],[1098,6],[1311,6],[1422,6],[1886,6],[5925,6]]},"131":{"position":[[14464,6],[14506,6],[14636,6],[14931,6]]},"132":{"position":[[238,6],[274,6],[308,6],[339,6],[373,6],[400,6],[426,6],[452,6],[793,6],[940,6],[1069,6],[1362,6],[1575,6],[1686,6],[2446,6],[5067,6]]},"133":{"position":[[49108,6],[49152,6],[49333,6],[49736,6]]},"134":{"position":[[233,6],[271,6],[304,6],[341,6],[378,6],[412,6],[453,6],[490,6],[527,6],[560,6],[588,6],[616,6],[863,6],[1024,6],[1162,6],[1539,6],[2020,6],[2281,6],[2628,6],[2854,6],[3321,6],[3564,6],[4192,6],[12416,6]]},"135":{"position":[[11616,6],[11651,6],[11681,6],[12007,6],[12239,6],[13108,6]]},"136":{"position":[[7611,6],[9844,6],[9873,6],[10032,6],[10337,6]]},"137":{"position":[[307,6],[337,6],[374,6],[401,6],[422,6],[442,6],[462,6],[506,6],[895,6],[1211,6],[1682,6],[2436,6],[2703,6],[3624,6],[9072,6],[9533,6]]},"138":{"position":[[11474,6],[11511,6],[11547,6],[11720,6],[12295,6],[12448,6]]},"139":{"position":[[12407,6],[12444,6],[12475,6],[12512,6],[12553,6],[12985,6],[13122,6],[13300,6],[13875,6],[14140,6]]},"140":{"position":[[9727,6],[9763,6],[9793,6],[9828,6],[10231,6],[10366,6],[10495,6],[10701,6],[11070,6]]},"141":{"position":[[231,6],[261,6],[299,6],[319,6],[339,6],[668,6],[975,6],[1124,6],[2566,6],[7182,6]]},"142":{"position":[[12687,6],[12717,6],[12748,6],[13174,6],[13401,6],[14574,6]]},"143":{"position":[[289,6],[325,6],[363,6],[389,6],[418,6],[444,6],[824,6],[1163,6],[1594,6],[3250,6],[3544,6],[10177,6]]},"144":{"position":[[591,6],[623,6],[646,6],[671,6],[693,6],[715,6],[1028,6],[1474,6],[1925,6],[2157,6],[3389,6],[9894,6]]},"145":{"position":[[230,6],[262,6],[288,6],[313,6],[338,6],[707,6],[1098,6],[3059,6],[3556,6],[9839,6]]},"146":{"position":[[15009,6],[15040,6],[15224,6],[15752,6]]},"147":{"position":[[557,6],[579,6],[610,6],[631,6],[652,6],[922,6],[1333,6],[1807,6],[3566,6],[9138,6]]},"148":{"position":[[9227,6],[9257,6],[9368,6],[9560,6]]},"149":{"position":[[311,6],[341,6],[372,6],[392,6],[412,6],[757,6],[1006,6],[1338,6],[2258,6],[5850,6]]},"150":{"position":[[15679,6],[16046,6]]},"287":{"position":[[461,6]]},"288":{"position":[[181,6]]},"289":{"position":[[617,6]]},"290":{"position":[[201,6]]},"291":{"position":[[173,6]]},"292":{"position":[[1821,6]]}}}],["structur",{"_index":257,"t":{},"d":{},"k":{},"b":{"67":{"position":[[562,10],[979,9],[1767,9],[5434,9],[5483,9],[6001,9],[6402,9],[6809,9],[7222,9],[7546,9],[7927,9],[8406,9],[9037,9],[9553,9],[10321,9],[10791,9],[11342,9],[11399,9],[11514,9],[11660,9],[11747,9],[11845,9],[11922,9],[12120,9]]},"68":{"position":[[11947,9],[14814,9],[16435,10],[16844,9],[16989,9],[23673,9],[31192,10]]},"69":{"position":[[18500,10],[18921,9],[19066,9],[29950,9],[37819,10]]},"71":{"position":[[47521,9],[47981,9],[48174,9]]},"74":{"position":[[445,10],[808,9],[4310,10],[4342,9],[7022,9],[7225,9],[7371,9],[7458,9],[7535,9]]},"75":{"position":[[30567,10],[30925,9],[40377,10]]},"76":{"position":[[11765,10],[12026,9],[12375,10],[15883,9],[17805,9],[18821,9],[19265,9],[21170,9],[21960,9],[22414,9],[25523,10]]},"77":{"position":[[4770,10],[4846,9],[4985,10],[5120,10],[5607,10]]},"78":{"position":[[394,10],[632,9],[736,9],[860,10],[1293,10],[2148,10],[3760,9],[3955,9],[4101,9],[4188,9],[4265,9]]},"79":{"position":[[3797,9],[8311,10],[8907,9],[9659,9],[17001,9]]},"80":{"position":[[4361,9],[7843,10],[8200,10],[8247,9],[8874,9]]},"81":{"position":[[71,10],[261,9],[380,9],[602,10],[1485,10],[1535,10],[1814,10],[2163,10],[2515,10],[2899,10],[3233,10],[3504,10],[3620,9],[3766,9],[3853,9],[3930,9]]},"82":{"position":[[341,10],[615,9],[1115,10],[2193,10],[3222,10],[3253,9],[4824,9],[5446,9],[5601,9],[5697,9],[5783,9]]},"83":{"position":[[6815,10],[27491,10],[28157,9],[52543,9],[57249,10]]},"84":{"position":[[8822,10],[8964,9],[9308,10],[10297,9],[11369,9],[12665,9],[14020,9],[14642,9],[15009,9],[17036,10]]},"85":{"position":[[363,10],[679,9],[4491,10],[7198,9],[8169,9],[8322,9],[8416,9],[8500,9]]},"86":{"position":[[322,10],[600,9],[3789,10],[5346,9],[5876,9],[6028,9],[6121,9],[6204,9]]},"87":{"position":[[167,10],[660,9],[1475,9],[2366,9],[4214,10],[6895,10],[6927,9],[14063,9],[14209,9],[14296,9],[14373,9]]},"88":{"position":[[39432,10],[40940,9],[46027,9]]},"89":{"position":[[4297,10],[4349,9],[7836,10]]},"90":{"position":[[3929,10],[3981,9],[7386,10]]},"91":{"position":[[4568,10],[4749,9],[8997,10]]},"92":{"position":[[3234,9],[15151,10],[16301,10],[16881,9]]},"93":{"position":[[310,10],[578,9],[1401,10],[3517,10],[8109,9],[8258,9],[8348,9],[8428,9]]},"94":{"position":[[563,10],[752,9],[3085,10],[4205,9],[4748,9],[4894,9],[4981,9],[5058,9]]},"95":{"position":[[1174,10],[1226,9],[3141,9],[3540,9],[4189,10]]},"96":{"position":[[930,10],[992,9],[2782,9],[3490,10]]},"97":{"position":[[678,10],[740,9],[2479,9],[2934,9]]},"98":{"position":[[1115,10],[1166,9],[3072,9],[3468,9],[4115,10]]},"99":{"position":[[1151,10],[1201,9],[3098,9],[3491,9],[4136,10]]},"100":{"position":[[909,10],[969,9],[2739,9],[3443,10]]},"101":{"position":[[534,10],[748,9],[3169,10],[3916,9],[4510,9],[4669,9],[4769,9],[4859,9]]},"102":{"position":[[659,10],[719,9],[2440,9],[2889,9]]},"103":{"position":[[509,10],[723,9],[2299,10],[3196,9],[3355,9],[3455,9],[3545,9]]},"104":{"position":[[1092,10],[1141,9],[3029,9],[3419,9],[4062,10]]},"105":{"position":[[16492,10],[17079,9],[33758,9],[38153,10]]},"106":{"position":[[14097,10],[14429,9],[25676,10]]},"107":{"position":[[227,10],[533,9],[1197,10],[4041,10],[4073,9],[6885,9],[7088,9],[7234,9],[7321,9],[7398,9]]},"108":{"position":[[5134,10],[5182,9],[7587,10]]},"109":{"position":[[94,10],[291,10],[598,9],[1103,10],[2135,10],[3073,10],[3105,9],[4132,9],[5283,9],[5430,9],[5518,9],[5596,9]]},"111":{"position":[[424,10],[695,9],[829,9]]},"113":{"position":[[78,10],[309,9],[431,9]]},"116":{"position":[[1072,9],[1120,11]]},"124":{"position":[[12222,10],[12439,9],[12896,10],[18339,9],[19780,10]]},"125":{"position":[[13187,10],[13277,9],[18292,10]]},"126":{"position":[[261,10],[515,9],[1275,10],[2271,10],[2321,10],[2565,10],[2848,10],[3234,10],[3700,10],[3748,10],[3874,9]]},"127":{"position":[[6355,10],[6411,9],[6583,10]]},"128":{"position":[[10546,9],[21152,9],[23176,9],[24501,9]]},"129":{"position":[[10099,10],[10198,9],[10955,10]]},"130":{"position":[[227,10],[603,9],[3039,10],[3089,10],[3372,10],[3665,10],[3715,10],[4104,10],[4200,10],[4502,10],[4874,10],[5254,10],[5604,10],[5847,10],[6052,9],[6145,9],[6228,9]]},"131":{"position":[[14453,10],[14548,9],[15217,10]]},"132":{"position":[[227,10],[711,9],[3292,10],[3342,10],[3632,10],[3918,10],[4211,10],[4261,10],[4650,10],[4746,10],[4989,10],[5194,9],[5287,9],[5370,9]]},"133":{"position":[[49097,10],[49243,9],[50434,10]]},"134":{"position":[[222,10],[779,9],[1089,9],[1239,9],[1616,9],[2082,9],[2357,9],[2705,9],[2931,9],[3381,9],[6380,10],[6430,10],[6724,10],[7014,10],[7301,10],[7598,10],[7648,10],[8080,10],[8181,10],[8613,10],[8714,10],[9120,10],[9221,10],[9659,10],[9760,10],[10192,10],[10293,10],[10725,10],[10826,10],[11227,10],[11328,10],[11696,10],[12076,10],[12336,10],[12549,9],[12644,9],[12729,9]]},"135":{"position":[[3464,10],[11605,10],[11926,9],[17117,9],[17368,10],[21475,9],[23292,10]]},"136":{"position":[[2144,9],[9833,10],[9957,9],[18122,10]]},"137":{"position":[[296,10],[819,9],[1742,9],[1790,10],[2487,9],[2756,10],[3669,10],[5073,9],[5938,9],[6372,9],[6786,9],[7228,9],[7953,9],[8616,9],[8944,9],[9001,9],[9116,9],[9262,9],[9349,9],[9426,9],[9585,9]]},"138":{"position":[[3671,10],[11463,10],[11637,9],[12357,10],[18535,10]]},"139":{"position":[[3447,10],[4215,10],[12396,10],[12902,9],[18433,9],[21819,10],[26378,10]]},"140":{"position":[[3725,10],[9716,10],[10149,9],[17052,9],[19677,10],[25230,10]]},"141":{"position":[[220,10],[592,9],[3707,10],[6681,9],[7226,9],[7372,9],[7459,9],[7536,9]]},"142":{"position":[[5523,10],[12676,10],[13098,9],[18952,9],[19203,10],[23170,9],[25031,10]]},"143":{"position":[[278,10],[742,9],[874,9],[1215,9],[1653,9],[5114,9],[10227,9],[10379,9],[10472,9],[10555,9]]},"144":{"position":[[580,10],[950,9],[1529,9],[2212,10],[3435,10],[4848,10],[4880,9],[9375,9],[9940,9],[10088,9],[10177,9],[10256,9]]},"145":{"position":[[219,10],[629,9],[1143,9],[1223,9],[1431,9],[1547,9],[1625,9],[1757,9],[4867,10],[4899,9],[5356,10],[9888,9],[10039,9],[10131,9],[10213,9]]},"146":{"position":[[14998,10],[15147,9],[15292,9],[17055,9],[24084,10]]},"147":{"position":[[546,10],[854,9],[4887,10],[4919,9],[8271,9],[9183,9],[9330,9],[9418,9],[9496,9]]},"148":{"position":[[9216,10],[9292,9],[14694,10]]},"149":{"position":[[300,10],[681,9],[3354,10],[3408,10],[3655,10],[3938,10],[4307,10],[4641,10],[5016,10],[5057,9],[5691,9],[5894,9],[6040,9],[6127,9],[6204,9]]},"150":{"position":[[8555,9],[15668,10],[15964,9]]},"151":{"position":[[1845,11],[1892,9],[1938,9]]},"290":{"position":[[2,9],[118,9]]},"292":{"position":[[9,9],[366,9]]}}}],["stub",{"_index":6206,"t":{},"d":{},"k":{},"b":{"128":{"position":[[10866,6]]}}}],["stuck",{"_index":4001,"t":{},"d":{},"k":{},"b":{"87":{"position":[[18400,5]]},"88":{"position":[[15042,5],[47061,5]]}}}],["stuctur",{"_index":2886,"t":{},"d":{},"k":{},"b":{"77":{"position":[[8501,8]]}}}],["studio",{"_index":8314,"t":{},"d":{},"k":{},"b":{"151":{"position":[[157,6],[580,6],[3099,6],[3239,6]]},"153":{"position":[[73,6]]}}}],["stuff",{"_index":2545,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33598,5]]}}}],["sub",{"_index":745,"t":{},"d":{},"k":{},"b":{"68":{"position":[[7309,3]]},"95":{"position":[[4701,3]]},"96":{"position":[[4045,3]]},"98":{"position":[[4624,3]]},"99":{"position":[[4642,3]]},"100":{"position":[[3992,3]]},"104":{"position":[[4565,3]]},"136":{"position":[[5367,3],[16857,3]]},"137":{"position":[[10460,3]]}}}],["subscrib",{"_index":5693,"t":{},"d":{},"k":{},"b":{"113":{"position":[[8636,10],[8841,10]]}}}],["subsequ",{"_index":4023,"t":{},"d":{},"k":{},"b":{"88":{"position":[[3078,10]]},"133":{"position":[[9798,12]]},"145":{"position":[[7084,10],[16095,10],[16152,10]]},"148":{"position":[[10942,10]]}}}],["subset",{"_index":3117,"t":{},"d":{},"k":{},"b":{"80":{"position":[[1313,6]]}}}],["subtract",{"_index":6944,"t":{},"d":{},"k":{},"b":{"136":{"position":[[5192,11]]},"137":{"position":[[11108,11]]},"150":{"position":[[15168,9]]}}}],["succe",{"_index":6287,"t":{},"d":{},"k":{},"b":{"128":{"position":[[19879,8]]}}}],["succeed",{"_index":2575,"t":{},"d":{},"k":{},"b":{"75":{"position":[[37226,10],[38141,10],[39060,10],[39658,10]]}}}],["success",{"_index":2783,"t":{},"d":{},"k":{},"b":{"76":{"position":[[23455,10]]},"77":{"position":[[5668,11],[6046,11],[6871,11],[7611,11]]},"78":{"position":[[2457,11]]},"80":{"position":[[9134,10],[10115,10],[10734,10]]},"83":{"position":[[46899,10]]},"84":{"position":[[16017,10]]},"88":{"position":[[18035,7],[51798,11],[52259,11],[52846,11],[53760,11],[54402,11],[55164,11],[56097,11],[56904,11],[58123,11],[59109,11],[60065,11],[60970,11],[61587,11]]},"89":{"position":[[5593,11]]},"90":{"position":[[5208,11]]},"91":{"position":[[6764,11]]},"95":{"position":[[2333,11]]},"96":{"position":[[2033,11]]},"97":{"position":[[1777,11]]},"98":{"position":[[2268,11]]},"99":{"position":[[2298,11]]},"100":{"position":[[2000,11]]},"102":{"position":[[1746,11]]},"104":{"position":[[2233,11]]},"105":{"position":[[28525,10]]},"108":{"position":[[5998,11]]},"125":{"position":[[9755,10]]},"136":{"position":[[11425,10],[11891,10],[12306,10],[13000,11],[13783,11],[14501,11],[15199,11],[16699,11],[17406,11]]},"139":{"position":[[25475,10]]},"140":{"position":[[23395,10]]},"150":{"position":[[19423,11],[19972,11]]}}}],["successfulli",{"_index":956,"t":{},"d":{},"k":{},"b":{"68":{"position":[[31286,13]]},"69":{"position":[[37913,13]]},"71":{"position":[[42642,13],[43492,13]]},"75":{"position":[[35966,13],[36518,13],[40472,13]]},"76":{"position":[[19742,12],[20280,12],[25620,13]]},"77":{"position":[[8446,13]]},"79":{"position":[[18928,13],[19424,13],[19882,13],[20368,13]]},"80":{"position":[[9515,12]]},"83":{"position":[[47843,12],[48205,12],[48727,13],[49161,12],[49705,12],[50730,13],[51687,13],[52553,13],[53154,13],[57346,13],[58388,13]]},"84":{"position":[[17133,13]]},"85":{"position":[[9547,13],[9627,13]]},"86":{"position":[[7235,13],[7314,13]]},"87":{"position":[[17556,12],[17964,13]]},"88":{"position":[[5348,12],[44806,12]]},"89":{"position":[[6432,13],[6986,13],[7940,13]]},"90":{"position":[[5982,13],[6536,13],[7490,13]]},"91":{"position":[[7597,13],[8145,13],[9101,13]]},"92":{"position":[[29385,12]]},"95":{"position":[[1524,12],[3034,13],[4284,13]]},"96":{"position":[[1323,12],[3598,13]]},"97":{"position":[[1072,12],[2372,13]]},"98":{"position":[[1462,12],[2965,13],[4210,13]]},"99":{"position":[[1495,12],[2991,13],[4231,13]]},"100":{"position":[[1296,12],[3551,13]]},"102":{"position":[[1047,12],[2333,13]]},"104":{"position":[[1433,12],[2922,13],[4157,13]]},"105":{"position":[[29174,12],[29614,12],[30139,13],[32041,13],[33058,13],[33768,13],[34537,13],[38250,13]]},"106":{"position":[[23661,13],[24475,13],[24962,13],[25770,13]]},"108":{"position":[[6858,13],[7683,13],[8209,12]]},"124":{"position":[[15707,14],[16658,14],[17351,13],[19881,13]]},"125":{"position":[[14526,13],[17562,13],[18392,13]]},"127":{"position":[[7586,12]]},"129":{"position":[[11695,12]]},"131":{"position":[[16429,12]]},"135":{"position":[[13321,12],[17222,13],[18329,12],[19489,12],[20704,12],[21576,12],[23386,13]]},"136":{"position":[[6986,12],[16032,12],[18213,12]]},"138":{"position":[[14813,14],[18636,13]]},"139":{"position":[[18350,13],[19463,12],[20713,13],[21960,12],[23215,12],[24097,13],[25542,12],[26473,13],[27359,13]]},"140":{"position":[[16969,13],[17949,12],[18885,13],[19818,12],[21069,12],[21949,13],[23462,12],[24308,13],[25325,13]]},"142":{"position":[[14788,12],[19057,13],[20321,12],[21382,12],[22498,12],[23271,12],[25125,13]]},"146":{"position":[[24178,13]]},"148":{"position":[[10223,12],[11107,12],[11863,12],[12644,12],[13373,12],[13982,13],[14788,13]]},"150":{"position":[[6572,13],[22194,13],[22614,13],[23329,13],[24374,13],[26640,13]]}}}],["such",{"_index":96,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1701,4]]},"92":{"position":[[30128,4]]},"124":{"position":[[5122,4]]},"125":{"position":[[3930,4],[7987,4]]},"128":{"position":[[16108,4]]},"135":{"position":[[6875,4],[6981,4]]},"138":{"position":[[5212,4],[6418,4],[6444,4]]},"142":{"position":[[8049,4],[8155,4]]},"148":{"position":[[4767,4]]},"151":{"position":[[778,4]]}}}],["suclk",{"_index":5753,"t":{},"d":{},"k":{},"b":{"113":{"position":[[11111,5],[11188,5]]}}}],["suitabl",{"_index":8194,"t":{},"d":{},"k":{},"b":{"150":{"position":[[8725,8]]}}}],["sulfur",{"_index":6621,"t":{},"d":{},"k":{},"b":{"133":{"position":[[7856,6],[7902,8],[7911,7],[34910,8]]},"134":{"position":[[2345,6],[2483,6],[9519,6],[13460,6]]}}}],["sulfur_odor",{"_index":6724,"t":{},"d":{},"k":{},"b":{"134":{"position":[[2529,11]]}}}],["sulfurodordatacalcul",{"_index":6740,"t":{},"d":{},"k":{},"b":{"134":{"position":[[5181,23],[9246,23]]}}}],["sum",{"_index":6675,"t":{},"d":{},"k":{},"b":{"133":{"position":[[30658,3]]}}}],["summari",{"_index":228,"t":{},"d":{},"k":{},"b":{"67":{"position":[[54,7]]},"74":{"position":[[54,7]]},"78":{"position":[[66,7]]},"82":{"position":[[69,7]]},"85":{"position":[[64,7]]},"86":{"position":[[63,7]]},"87":{"position":[[43,7]]},"93":{"position":[[93,7]]},"94":{"position":[[61,7]]},"101":{"position":[[85,7]]},"103":{"position":[[85,7]]},"107":{"position":[[63,7]]},"109":{"position":[[159,7]]},"116":{"position":[[715,7],[1288,8]]},"126":{"position":[[75,7]]},"130":{"position":[[67,7]]},"132":{"position":[[67,7]]},"134":{"position":[[69,7]]},"137":{"position":[[68,7]]},"141":{"position":[[58,7]]},"143":{"position":[[76,7]]},"144":{"position":[[55,7]]},"145":{"position":[[63,7]]},"147":{"position":[[59,7]]},"149":{"position":[[65,7]]},"151":{"position":[[1800,7]]}}}],["superset",{"_index":1327,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2307,8],[3864,8],[10409,8],[10646,8],[10901,8],[11122,8],[11353,8],[11640,8],[11945,8],[12173,8],[12415,8],[12673,8],[12980,8],[13327,8]]},"92":{"position":[[19211,8],[28307,8],[28485,8]]}}}],["supoprt",{"_index":4355,"t":{},"d":{},"k":{},"b":{"88":{"position":[[60433,7]]}}}],["suppli",{"_index":15,"t":{},"d":{},"k":{},"b":{"0":{"position":[[135,8]]},"71":{"position":[[10616,8],[42546,9],[42583,9],[43397,9],[43434,9]]},"75":{"position":[[13912,9]]},"92":{"position":[[29970,8],[30011,8]]},"113":{"position":[[3140,9],[3192,9],[3245,8]]},"128":{"position":[[15037,6],[25050,6]]},"139":{"position":[[7455,8]]},"140":{"position":[[6365,8]]}}}],["support",{"_index":407,"t":{"71":{"position":[[55,7]]}},"d":{},"k":{},"b":{"67":{"position":[[5809,9],[8839,9],[9355,9]]},"68":{"position":[[1334,8],[1407,8],[26011,10],[26098,9],[30065,10],[30129,9],[30496,10],[30563,9]]},"69":{"position":[[1269,8],[1853,8],[1939,8],[1986,7],[2011,7],[10283,8],[31465,10],[32994,9],[33093,9],[36662,9],[36737,9],[37104,9],[37179,9]]},"71":{"position":[[3175,9],[3246,8],[4184,9],[7443,7],[7588,9],[7644,9],[8415,7],[9103,9],[36243,9],[46637,9],[46970,9],[47453,9]]},"74":{"position":[[136,8],[288,7]]},"75":{"position":[[1255,8],[15698,8],[15728,8],[15762,8],[15791,8],[15824,8],[15852,8],[15896,7],[20034,8],[37598,9]]},"76":{"position":[[1321,8],[1363,8],[1526,8],[6399,7],[18451,10],[22838,7]]},"77":{"position":[[831,8],[1010,8],[8612,10],[9037,10]]},"79":{"position":[[1189,8],[1255,7],[1277,8],[1466,8],[5923,8],[6833,8],[6987,9],[18333,10]]},"80":{"position":[[11632,10],[11944,10]]},"83":{"position":[[1843,8],[2028,8],[2081,8],[2156,8],[2310,8],[2354,8],[2630,8],[2762,8],[2821,8],[2863,8],[2912,8],[3022,8],[3085,8],[3130,8],[3215,8],[3246,8],[3301,8],[4470,7],[4556,7],[4658,7],[16600,7],[46608,7],[47310,9],[47385,7],[56362,7],[56606,9],[58541,10]]},"84":{"position":[[1225,8],[1323,8],[1367,8],[1609,8],[1959,9],[5575,7],[12298,9],[13036,9],[13412,9],[15429,7]]},"85":{"position":[[165,9],[238,7],[2631,7]]},"86":{"position":[[162,9],[235,7]]},"88":{"position":[[7045,7],[7098,7],[7168,7],[7251,7],[7290,7],[7373,7],[19273,7],[19281,7],[19422,7],[20440,7],[20623,9],[21716,10],[22288,10],[23839,10],[31584,10],[39699,7],[39804,7],[39904,7],[48108,7],[49674,9],[51980,9],[53036,7],[53946,7],[54608,7],[55380,7],[56408,7],[57333,7],[57386,7],[61301,7]]},"89":{"position":[[1219,8],[1400,8]]},"90":{"position":[[1208,8],[1359,8]]},"91":{"position":[[1228,8],[1408,8]]},"92":{"position":[[32273,9],[32311,7],[33265,9],[33303,7],[37078,9],[37116,7],[38468,9],[38506,7]]},"94":{"position":[[184,9]]},"95":{"position":[[937,8]]},"96":{"position":[[794,8]]},"97":{"position":[[598,8]]},"98":{"position":[[878,8]]},"99":{"position":[[914,8]]},"100":{"position":[[773,8]]},"101":{"position":[[258,9]]},"102":{"position":[[579,8]]},"103":{"position":[[258,9]]},"104":{"position":[[855,8]]},"105":{"position":[[1660,8],[1871,9],[1951,8],[1988,8],[2043,8],[2206,8],[2250,8],[2526,8],[2560,8],[2623,8],[2668,8],[2747,8],[2774,8],[3034,10],[3612,9],[4213,7],[28715,10],[36511,10],[36573,9],[36799,10],[36862,9]]},"106":{"position":[[829,8],[1339,7],[1402,7]]},"108":{"position":[[784,8],[852,8],[978,8],[1030,8],[1108,8],[1934,10]]},"109":{"position":[[6826,9]]},"111":{"position":[[101,7]]},"113":{"position":[[2308,9],[5393,9]]},"124":{"position":[[1140,8],[1434,8],[1485,7],[1540,7],[1600,7],[1903,7],[2474,7],[6795,7],[15083,7]]},"125":{"position":[[746,8],[797,7],[852,7],[912,7],[1125,9],[5091,7],[15047,7]]},"128":{"position":[[452,8],[961,7],[1098,7],[10609,7],[21692,7],[21749,7],[21868,7],[21992,7],[22062,7],[22417,7],[23698,7],[25109,7],[25241,7],[25300,7],[25440,7],[25802,7]]},"129":{"position":[[14882,10],[16111,10],[17042,10],[17817,10]]},"131":{"position":[[580,8],[1125,8],[2520,10],[2542,9],[4314,8],[4443,7],[4521,8],[17486,8],[18455,8]]},"133":{"position":[[4957,9]]},"135":{"position":[[1342,8],[3210,9],[7207,8],[7713,8],[7901,7],[18627,9],[19786,9],[21014,9]]},"136":{"position":[[1469,8],[3677,8],[6221,7],[7164,10],[12524,9]]},"137":{"position":[[11842,9]]},"138":{"position":[[1133,8],[1432,8],[1483,7],[1538,7],[1922,7],[1985,7],[2584,7],[6776,7]]},"139":{"position":[[1268,8],[1643,7],[1729,7],[1740,9],[1759,7],[2112,7],[2157,7],[2197,7],[2243,7],[2291,7],[2362,7],[9117,7]]},"140":{"position":[[1290,8],[1725,7],[1736,9],[2118,7],[2189,7],[2268,7]]},"142":{"position":[[1408,9],[1441,8],[1489,7],[1502,7],[2110,7],[2510,9],[5270,9],[7645,9],[8380,8],[8783,7]]},"144":{"position":[[304,8]]},"145":{"position":[[94,8],[7566,9],[8023,9],[12068,8]]},"146":{"position":[[1377,8],[1648,8],[3934,8],[17611,10],[17675,9],[19001,10],[19065,9],[21531,10],[21595,9],[22866,10],[22930,9],[23380,10],[23444,9]]},"147":{"position":[[148,8],[402,7]]},"150":{"position":[[1633,8],[1714,8],[4300,10],[4616,10],[4962,10],[12140,7],[12281,9],[20699,10],[21237,10],[25793,10],[27196,10]]},"151":{"position":[[1090,7],[2725,9]]},"152":{"position":[[182,7]]}}}],["supportmcu",{"_index":5879,"t":{},"d":{},"k":{},"b":{"124":{"position":[[2270,10]]},"135":{"position":[[1908,10]]},"140":{"position":[[2079,10]]}}}],["suppress",{"_index":2449,"t":{},"d":{},"k":{},"b":{"75":{"position":[[25201,10]]},"83":{"position":[[15027,8],[20178,11],[20248,10]]},"105":{"position":[[12170,11]]},"113":{"position":[[1111,8]]}}}],["sure",{"_index":2336,"t":{},"d":{},"k":{},"b":{"75":{"position":[[13975,4],[20826,4],[21408,4]]},"77":{"position":[[3566,4]]}}}],["sustain",{"_index":4329,"t":{},"d":{},"k":{},"b":{"88":{"position":[[50164,9],[50406,9],[50475,9],[50544,9],[50613,9]]}}}],["svcall",{"_index":1741,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2900,6]]}}}],["sw",{"_index":3140,"t":{},"d":{},"k":{},"b":{"80":{"position":[[4991,2]]}}}],["swap",{"_index":6775,"t":{},"d":{},"k":{},"b":{"135":{"position":[[1268,4]]},"142":{"position":[[1343,4],[4989,8],[5040,4],[9159,4],[14022,4],[17165,8],[17239,8],[17310,8]]}}}],["switch",{"_index":2402,"t":{},"d":{},"k":{},"b":{"75":{"position":[[20101,9],[20449,9],[20813,9],[24036,6],[24909,9],[27076,6],[28827,9],[29292,6],[29523,9],[32077,9],[35240,9],[38774,6],[38842,6]]},"78":{"position":[[1000,9],[1062,9],[4686,9],[5298,9],[5582,6]]},"88":{"position":[[25529,6],[28293,6],[32778,6],[33963,6],[34794,6],[36402,6],[37876,6],[38844,6]]},"113":{"position":[[11905,9]]},"127":{"position":[[3732,9]]},"128":{"position":[[3527,9],[6776,6],[10139,6],[10346,6]]},"129":{"position":[[5227,9]]},"131":{"position":[[7049,9],[12461,6]]},"133":{"position":[[9270,9]]},"139":{"position":[[10522,6]]},"140":{"position":[[7892,6]]},"145":{"position":[[15685,6]]}}}],["symbol",{"_index":105,"t":{},"d":{},"k":{},"b":{"1":{"position":[[65,7],[668,7],[681,7]]},"71":{"position":[[1418,7],[3395,7],[3738,6],[3774,6],[4172,7],[40002,6]]},"75":{"position":[[14913,6]]}}}],["symbolcanfd0_callback",{"_index":2339,"t":{},"d":{},"k":{},"b":{"75":{"position":[[14084,21]]}}}],["symbolcomms_i2c_callback",{"_index":6087,"t":{},"d":{},"k":{},"b":{"127":{"position":[[2958,24]]}}}],["symbolg_adc0",{"_index":680,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3071,12]]},"69":{"position":[[2552,12]]}}}],["symbolg_bsp_pin_cfg",{"_index":4456,"t":{},"d":{},"k":{},"b":{"92":{"position":[[3187,19]]}}}],["symbolg_canfd0",{"_index":2314,"t":{},"d":{},"k":{},"b":{"75":{"position":[[11770,14]]}}}],["symbolg_crc0",{"_index":2828,"t":{},"d":{},"k":{},"b":{"77":{"position":[[2025,12]]}}}],["symbolg_external_irq0",{"_index":4361,"t":{},"d":{},"k":{},"b":{"89":{"position":[[2088,21]]},"90":{"position":[[2036,21]]},"91":{"position":[[2091,21]]}}}],["symbolg_i2c0",{"_index":7083,"t":{},"d":{},"k":{},"b":{"138":{"position":[[3076,12]]}}}],["symbolg_i2c_master0",{"_index":5881,"t":{},"d":{},"k":{},"b":{"124":{"position":[[2799,19]]}}}],["symbolg_i2c_slave0",{"_index":5992,"t":{},"d":{},"k":{},"b":{"125":{"position":[[2393,18]]}}}],["symbolg_i3c0",{"_index":4076,"t":{},"d":{},"k":{},"b":{"88":{"position":[[13912,12]]}}}],["symbolg_i3c0_callback",{"_index":4077,"t":{},"d":{},"k":{},"b":{"88":{"position":[[13971,21]]}}}],["symbolg_ioport",{"_index":4455,"t":{},"d":{},"k":{},"b":{"92":{"position":[[3102,14]]}}}],["symbolg_pdm0",{"_index":5221,"t":{},"d":{},"k":{},"b":{"106":{"position":[[12309,12]]}}}],["symbolg_poeg0",{"_index":5441,"t":{},"d":{},"k":{},"b":{"108":{"position":[[1699,13]]}}}],["symbolg_qspi0",{"_index":8126,"t":{},"d":{},"k":{},"b":{"150":{"position":[[2583,13]]}}}],["symbolg_rtc0",{"_index":6943,"t":{},"d":{},"k":{},"b":{"136":{"position":[[4676,12]]}}}],["symbolg_spi0",{"_index":6780,"t":{},"d":{},"k":{},"b":{"135":{"position":[[2247,12]]},"142":{"position":[[2937,12]]}}}],["symbolg_timer0",{"_index":2614,"t":{},"d":{},"k":{},"b":{"76":{"position":[[2319,14]]},"83":{"position":[[5262,14]]},"84":{"position":[[2736,14]]},"105":{"position":[[4554,14]]}}}],["symbolg_transfer0",{"_index":2963,"t":{},"d":{},"k":{},"b":{"79":{"position":[[2243,17]]}}}],["symbolg_tsu0",{"_index":7843,"t":{},"d":{},"k":{},"b":{"146":{"position":[[2201,12]]}}}],["symbolg_uart0",{"_index":7152,"t":{},"d":{},"k":{},"b":{"139":{"position":[[2800,13]]},"140":{"position":[[2549,13]]}}}],["symbolg_wdt0",{"_index":7994,"t":{},"d":{},"k":{},"b":{"148":{"position":[[2010,12]]}}}],["symbolhs300x_callback",{"_index":6398,"t":{},"d":{},"k":{},"b":{"129":{"position":[[3956,21]]}}}],["symbolhs400x_comms_i2c_callback",{"_index":6485,"t":{},"d":{},"k":{},"b":{"131":{"position":[[4105,31]]}}}],["symbolnul",{"_index":705,"t":{},"d":{},"k":{},"b":{"68":{"position":[[4436,10]]},"69":{"position":[[8366,10]]},"76":{"position":[[4053,10]]},"79":{"position":[[3678,10]]},"83":{"position":[[10842,10]]},"84":{"position":[[3811,10]]},"88":{"position":[[14180,10]]},"89":{"position":[[2481,10]]},"90":{"position":[[2199,10]]},"91":{"position":[[2558,10]]},"105":{"position":[[7777,10]]},"106":{"position":[[11393,10]]},"108":{"position":[[2490,10]]},"124":{"position":[[4135,10]]},"125":{"position":[[3408,10]]},"135":{"position":[[4683,10]]},"136":{"position":[[5437,10]]},"139":{"position":[[6487,10]]},"140":{"position":[[5294,10]]},"146":{"position":[[3033,10]]},"148":{"position":[[3229,10]]},"150":{"position":[[5850,10],[5942,10]]}}}],["symbolp_canfd0_afl",{"_index":2346,"t":{},"d":{},"k":{},"b":{"75":{"position":[[14854,18]]}}}],["symbolsci_b_i2c_master_callback",{"_index":7090,"t":{},"d":{},"k":{},"b":{"138":{"position":[[4570,31]]}}}],["symbolspi_callback",{"_index":7484,"t":{},"d":{},"k":{},"b":{"142":{"position":[[4134,18]]}}}],["symbolzmod4xxx_comms_i2c_callback",{"_index":6607,"t":{},"d":{},"k":{},"b":{"133":{"position":[[6598,33]]}}}],["symbolzmod4xxx_irq_callback",{"_index":6608,"t":{},"d":{},"k":{},"b":{"133":{"position":[[6721,27]]}}}],["symmetr",{"_index":3296,"t":{},"d":{},"k":{},"b":{"83":{"position":[[2771,9],[5455,9],[5836,9],[5861,9],[18255,9]]},"105":{"position":[[5000,9],[5025,9]]},"144":{"position":[[12360,9]]}}}],["sync",{"_index":2329,"t":{},"d":{},"k":{},"b":{"75":{"position":[[12841,4],[13412,4],[15585,4],[22135,4],[22155,4]]},"142":{"position":[[4395,4]]}}}],["synchron",{"_index":526,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13368,11]]},"68":{"position":[[1595,11],[6557,11]]},"74":{"position":[[1650,15]]},"75":{"position":[[12886,15],[13457,15]]},"83":{"position":[[4950,11]]},"105":{"position":[[3102,12],[3149,11]]},"142":{"position":[[1042,12],[4327,11],[4356,11],[13548,11],[15580,11],[15823,11]]}}}],["synchronization_jump_width",{"_index":2146,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1622,26]]}}}],["sys_cm33_cfg2",{"_index":2039,"t":{},"d":{},"k":{},"b":{"71":{"position":[[41052,13],[41300,13]]}}}],["sys_cm33_cfg3",{"_index":2041,"t":{},"d":{},"k":{},"b":{"71":{"position":[[41147,13],[41318,13]]}}}],["sys_mstaccctl2",{"_index":1880,"t":{},"d":{},"k":{},"b":{"71":{"position":[[11913,14]]}}}],["syscal",{"_index":6224,"t":{},"d":{},"k":{},"b":{"128":{"position":[[12919,7]]}}}],["system",{"_index":723,"t":{"121":{"position":[[45,6]]}},"d":{},"k":{},"b":{"68":{"position":[[5581,7],[5616,6],[13126,6],[15995,6]]},"69":{"position":[[11072,6],[11201,6]]},"71":{"position":[[1317,6],[1709,6],[2215,6],[2241,6],[2536,6],[2555,6],[2743,6],[6489,7],[7829,6],[30811,7],[33386,7],[35601,6],[41602,6],[45419,6],[47654,6],[47790,6]]},"80":{"position":[[4120,6],[4218,6]]},"89":{"position":[[6613,7],[7167,7]]},"90":{"position":[[6163,7],[6717,7]]},"91":{"position":[[7778,7],[8326,7]]},"92":{"position":[[2904,6],[2992,6],[14826,6],[31948,6],[32863,6],[36754,6],[37766,6]]},"113":{"position":[[4771,6],[6069,6]]},"116":{"position":[[1630,6],[1638,6]]},"121":{"position":[[22,6]]},"128":{"position":[[10821,6],[10952,6],[14765,6],[14810,6],[30016,6]]},"136":{"position":[[6335,6]]},"148":{"position":[[2674,6],[2734,6],[6886,6],[7752,6],[7800,6]]},"151":{"position":[[2382,6],[2498,8]]}}}],["system.c",{"_index":1769,"t":{},"d":{},"k":{},"b":{"71":{"position":[[4297,9],[5153,8],[5567,9]]}}}],["system_reset_en",{"_index":8031,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7053,20]]}}}],["systemcoreclock",{"_index":1722,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2146,15],[14366,15],[14393,15],[46024,15],[47561,15],[47621,15],[47697,15],[47757,15]]}}}],["systeminit",{"_index":1682,"t":{},"d":{},"k":{},"b":{"71":{"position":[[299,10],[39554,12],[39601,10],[46143,12]]}}}],["systeminit_",{"_index":1686,"t":{},"d":{},"k":{},"b":{"71":{"position":[[411,12],[40651,14],[40700,12]]}}}],["systemsystem",{"_index":8381,"t":{},"d":{},"k":{},"b":{"152":{"position":[[5290,13]]}}}],["systick",{"_index":1744,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2961,7]]}}}],["t",{"_index":3925,"t":{},"d":{},"k":{},"b":{"87":{"position":[[11281,3]]},"88":{"position":[[18439,3],[18593,3],[40587,3]]}}}],["t0",{"_index":6180,"t":{},"d":{},"k":{},"b":{"128":{"position":[[6819,3]]}}}],["t1",{"_index":6181,"t":{},"d":{},"k":{},"b":{"128":{"position":[[6823,3]]}}}],["t6",{"_index":6182,"t":{},"d":{},"k":{},"b":{"128":{"position":[[6832,3]]}}}],["tab",{"_index":677,"t":{},"d":{},"k":{},"b":{"68":{"position":[[2947,3]]},"69":{"position":[[2420,3]]},"71":{"position":[[1912,4],[3352,3],[5853,3],[6730,3]]},"75":{"position":[[11630,3]]},"76":{"position":[[2186,3],[5498,3]]},"77":{"position":[[1738,3]]},"79":{"position":[[2113,3],[5731,3]]},"80":{"position":[[2750,3],[4198,3]]},"83":{"position":[[5125,3],[15341,3]]},"84":{"position":[[2612,3]]},"88":{"position":[[7616,3]]},"89":{"position":[[1955,3]]},"90":{"position":[[1903,3]]},"91":{"position":[[1957,3]]},"92":{"position":[[2972,3]]},"105":{"position":[[4421,3],[10933,3]]},"106":{"position":[[1532,3],[12609,3]]},"108":{"position":[[1553,3]]},"124":{"position":[[2666,3]]},"125":{"position":[[1854,3]]},"127":{"position":[[1930,3],[2500,3]]},"129":{"position":[[3757,3]]},"131":{"position":[[3333,4],[3613,3],[6075,4]]},"133":{"position":[[6400,3]]},"135":{"position":[[2118,3]]},"136":{"position":[[4382,3]]},"138":{"position":[[2774,3]]},"139":{"position":[[2493,3]]},"140":{"position":[[2406,3]]},"142":{"position":[[2646,3],[6294,3]]},"146":{"position":[[2069,3]]},"148":{"position":[[1503,4],[1889,3],[3616,3]]},"150":{"position":[[2445,3],[6092,3]]}}}],["tabl",{"_index":100,"t":{},"d":{},"k":{},"b":{"1":{"position":[[1,5]]},"68":{"position":[[4928,5],[8120,6]]},"71":{"position":[[2623,5],[3326,5],[3475,5],[4061,5]]},"75":{"position":[[15000,5]]},"76":{"position":[[23816,6]]},"79":{"position":[[1395,6],[5581,6],[13591,5],[13652,6],[14008,5],[14069,6],[14619,5],[14680,6],[15195,5],[15256,6]]},"84":{"position":[[16324,6]]},"87":{"position":[[1524,5],[7936,6],[8251,6],[8300,5],[8350,6],[8817,6]]},"88":{"position":[[2385,5],[2524,5],[2672,5],[2860,5],[3004,5],[3702,5],[3740,5],[3943,5],[4271,5],[4503,5],[4928,6],[5265,5],[5869,6],[5963,5],[22103,5],[23954,6],[31699,6],[48470,6],[53546,6]]},"124":{"position":[[4855,5]]},"125":{"position":[[3663,5],[6112,5]]},"129":{"position":[[9988,5]]},"131":{"position":[[12409,5]]},"133":{"position":[[19508,5],[24403,5],[27602,5],[30610,5],[39095,5],[46394,5]]},"150":{"position":[[13517,5],[13598,6]]},"151":{"position":[[1,5]]}}}],["take",{"_index":736,"t":{},"d":{},"k":{},"b":{"68":{"position":[[6017,5]]},"71":{"position":[[5225,5],[8018,4],[44635,5],[45222,5]]},"79":{"position":[[7726,6]]},"88":{"position":[[14361,4]]},"113":{"position":[[1253,4]]},"128":{"position":[[16003,4],[17180,4]]},"129":{"position":[[4518,5],[7862,5]]},"136":{"position":[[6563,4]]},"148":{"position":[[8653,5]]},"150":{"position":[[9642,4]]}}}],["taken",{"_index":2099,"t":{},"d":{},"k":{},"b":{"71":{"position":[[46171,5]]}}}],["target",{"_index":1764,"t":{},"d":{},"k":{},"b":{"71":{"position":[[4202,7],[4229,7]]},"92":{"position":[[3624,6],[4100,6],[7668,6],[8512,6],[9356,6],[10200,6]]},"106":{"position":[[2513,6],[2610,6]]},"113":{"position":[[5353,6]]},"151":{"position":[[3184,9]]}}}],["task",{"_index":3112,"t":{},"d":{},"k":{},"b":{"80":{"position":[[1063,5]]},"128":{"position":[[1356,4],[1459,4],[1592,4],[1950,4],[3410,4],[3497,5],[3549,5],[3684,5],[3809,6],[3830,5],[4122,5],[4557,4],[4676,4],[4690,4],[5459,4],[5685,5],[5803,5],[5876,5],[5943,5],[5998,4],[6160,5],[6277,4],[6318,4],[6422,4],[6444,5],[6652,5],[6701,5],[6734,6],[6741,4],[6760,5],[6850,4],[6862,4],[6902,4],[6976,4],[6987,4],[7051,5],[7121,4],[7221,5],[7274,5],[7421,4],[7505,5],[7597,5],[7718,5],[7740,4],[7799,4],[7852,4],[7933,4],[7987,4],[8064,4],[8119,4],[10097,4],[10154,5],[10300,4],[10361,5],[10591,5],[18382,5],[19271,5],[20262,4],[20338,4],[20543,4],[20581,5],[22248,5],[22377,5],[22587,5],[22865,4],[23899,5],[24184,4],[25100,5],[27036,4],[27143,5],[27412,4],[27537,5],[29905,4]]},"135":{"position":[[16959,6],[18159,6],[19317,6],[20528,6],[21306,5]]},"142":{"position":[[18794,6],[20151,6],[21210,6],[22322,6],[23001,5]]},"289":{"position":[[349,4],[394,4],[572,4]]}}}],["task'",{"_index":6214,"t":{},"d":{},"k":{},"b":{"128":{"position":[[11739,6],[23204,6],[23317,6],[24531,6],[24645,6]]}}}],["taskdisable_interrupt",{"_index":6260,"t":{},"d":{},"k":{},"b":{"128":{"position":[[17360,25]]}}}],["tcb",{"_index":8410,"t":{},"d":{},"k":{},"b":{"289":{"position":[[32,4],[220,4]]}}}],["tciv3",{"_index":4905,"t":{},"d":{},"k":{},"b":{"105":{"position":[[9740,5],[9829,5]]}}}],["tciv4",{"_index":4904,"t":{},"d":{},"k":{},"b":{"105":{"position":[[9574,5],[9663,5],[18778,5]]}}}],["tciv7",{"_index":4908,"t":{},"d":{},"k":{},"b":{"105":{"position":[[10218,5],[10307,5],[18992,5]]}}}],["tclk",{"_index":4086,"t":{},"d":{},"k":{},"b":{"88":{"position":[[15238,4],[16731,4]]},"142":{"position":[[14098,7]]}}}],["tcnt",{"_index":5027,"t":{},"d":{},"k":{},"b":{"105":{"position":[[24105,4],[24152,4],[24225,4]]}}}],["tdig_h",{"_index":4131,"t":{},"d":{},"k":{},"b":{"88":{"position":[[21823,8]]}}}],["tdig_h_mixed(max",{"_index":4128,"t":{},"d":{},"k":{},"b":{"88":{"position":[[21009,17]]}}}],["tdig_h_mixed(min",{"_index":4127,"t":{},"d":{},"k":{},"b":{"88":{"position":[[20988,17]]}}}],["tdig_high_mix",{"_index":4133,"t":{},"d":{},"k":{},"b":{"88":{"position":[[21952,15]]}}}],["tdig_l(max",{"_index":4129,"t":{},"d":{},"k":{},"b":{"88":{"position":[[21049,11]]}}}],["tdo",{"_index":1524,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9122,4]]}}}],["techniqu",{"_index":6274,"t":{},"d":{},"k":{},"b":{"128":{"position":[[18879,9]]}}}],["tei",{"_index":3713,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1619,3]]},"124":{"position":[[4451,4],[5719,5]]},"125":{"position":[[2140,3],[4523,5],[4756,4]]},"138":{"position":[[4866,4],[5697,5]]}}}],["tei_ipl",{"_index":7413,"t":{},"d":{},"k":{},"b":{"141":{"position":[[1562,7]]},"147":{"position":[[2360,7]]}}}],["tei_irq",{"_index":3717,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1733,7]]},"86":{"position":[[1529,7]]},"124":{"position":[[7770,8],[10504,8]]},"125":{"position":[[8772,8],[9209,8]]},"141":{"position":[[1371,7]]},"147":{"position":[[2416,7]]}}}],["temperatuer",{"_index":6422,"t":{},"d":{},"k":{},"b":{"129":{"position":[[9469,12]]}}}],["temperatur",{"_index":253,"t":{"146":{"position":[[45,11]]}},"d":{},"k":{},"b":{"67":{"position":[[520,11],[2176,11],[2292,11],[2510,11],[2579,11],[11170,11],[15516,11]]},"68":{"position":[[18616,12],[28936,11]]},"110":{"position":[[321,11]]},"129":{"position":[[1003,11],[2999,11],[3436,11],[3482,11],[3545,12],[4183,11],[8453,11],[13924,11]]},"130":{"position":[[3980,11]]},"131":{"position":[[1970,11],[2444,11],[3369,11],[3382,11],[3418,11],[3445,11],[3483,12],[3781,11],[3861,12],[4461,11],[4558,11],[6265,11],[8009,11],[8796,11],[9530,11],[13958,11],[15430,11],[20391,11]]},"132":{"position":[[1842,12],[4526,11],[5970,11]]},"133":{"position":[[1311,12],[1472,11],[24751,11],[30052,11],[30149,12],[43576,11],[48555,11],[48652,12],[54715,12],[55007,11]]},"134":{"position":[[5928,12],[11512,12],[11562,11]]},"146":{"position":[[1414,11],[1448,11],[3881,11],[3977,11],[4163,11],[6158,11],[7037,12],[7062,12],[7146,14],[8398,12],[8548,12],[8635,14],[9325,11],[9936,11],[9990,11],[10049,12],[12546,11],[13096,11],[14060,12]]},"152":{"position":[[899,11]]}}}],["temperature/humid",{"_index":5876,"t":{"129":{"position":[[52,20]]},"131":{"position":[[52,20]]}},"d":{},"k":{},"b":{"119":{"position":[[57,20],[218,20]]},"129":{"position":[[3678,20],[3793,20]]},"130":{"position":[[178,20]]},"131":{"position":[[3534,20],[3649,20]]},"132":{"position":[[178,20]]},"152":{"position":[[4648,20],[4804,20]]}}}],["temperature[0",{"_index":7918,"t":{},"d":{},"k":{},"b":{"146":{"position":[[14875,16],[14945,17]]}}}],["temperature[2",{"_index":6444,"t":{},"d":{},"k":{},"b":{"130":{"position":[[983,14]]},"132":{"position":[[1216,14]]}}}],["temperature[conversion_count",{"_index":7915,"t":{},"d":{},"k":{},"b":{"146":{"position":[[14169,32],[14451,30],[14563,30]]}}}],["temperature[tsu_b_example_conversion_count",{"_index":7909,"t":{},"d":{},"k":{},"b":{"146":{"position":[[11922,44]]}}}],["temperature_cod",{"_index":7840,"t":{},"d":{},"k":{},"b":{"146":{"position":[[1177,17],[24645,17]]}}}],["temperature_resolut",{"_index":6536,"t":{},"d":{},"k":{},"b":{"132":{"position":[[1803,22]]}}}],["temperature_sum",{"_index":7906,"t":{},"d":{},"k":{},"b":{"146":{"position":[[11799,15],[14544,15],[14695,15]]}}}],["temperatureandhumidityset",{"_index":6744,"t":{},"d":{},"k":{},"b":{"134":{"position":[[5856,25],[11353,25]]}}}],["templat",{"_index":2380,"t":{},"d":{},"k":{},"b":{"75":{"position":[[18598,8]]}}}],["temporari",{"_index":3471,"t":{},"d":{},"k":{},"b":{"83":{"position":[[32904,9]]},"145":{"position":[[1584,9]]}}}],["temporarili",{"_index":1971,"t":{},"d":{},"k":{},"b":{"71":{"position":[[30366,11],[32941,11]]}}}],["ten",{"_index":2882,"t":{},"d":{},"k":{},"b":{"77":{"position":[[8192,3]]},"137":{"position":[[11773,3]]}}}],["tend",{"_index":2968,"t":{},"d":{},"k":{},"b":{"79":{"position":[[3359,4],[3408,4],[10278,4]]}}}],["tend_output_pin",{"_index":3029,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10261,15]]}}}],["ter",{"_index":3787,"t":{},"d":{},"k":{},"b":{"86":{"position":[[1663,3]]}}}],["term",{"_index":24,"t":{},"d":{},"k":{},"b":{"0":{"position":[[352,5]]},"150":{"position":[[5468,5]]}}}],["termin",{"_index":2972,"t":{},"d":{},"k":{},"b":{"79":{"position":[[3579,9]]},"88":{"position":[[37269,9]]},"124":{"position":[[18791,9]]},"128":{"position":[[4778,11]]},"138":{"position":[[13827,9],[16663,9]]},"139":{"position":[[21873,10]]},"140":{"position":[[19731,10]]}}}],["termref",{"_index":8150,"t":{},"d":{},"k":{},"b":{"150":{"position":[[5370,9]]}}}],["terr_irq",{"_index":4314,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47700,8]]}}}],["test",{"_index":2194,"t":{},"d":{},"k":{},"b":{"74":{"position":[[5993,4],[9066,4],[9116,4],[9163,4],[9219,4],[9286,4],[9381,4]]},"75":{"position":[[23887,4],[23940,4],[24048,4],[24101,4],[30299,4],[38815,4]]},"87":{"position":[[15477,4]]},"92":{"position":[[30156,8]]},"128":{"position":[[3327,4],[17130,4]]},"151":{"position":[[2591,8]]}}}],["test_mod",{"_index":2169,"t":{},"d":{},"k":{},"b":{"74":{"position":[[3659,10],[5707,10]]},"75":{"position":[[488,10],[38694,9]]}}}],["textual",{"_index":6193,"t":{},"d":{},"k":{},"b":{"128":{"position":[[9062,7]]}}}],["tf",{"_index":5885,"t":{},"d":{},"k":{},"b":{"124":{"position":[[3154,4]]}}}],["tgia3",{"_index":4958,"t":{},"d":{},"k":{},"b":{"105":{"position":[[18885,5]]}}}],["tgia6",{"_index":4909,"t":{},"d":{},"k":{},"b":{"105":{"position":[[10383,5],[10472,5],[19099,5]]}}}],["tgra",{"_index":827,"t":{},"d":{},"k":{},"b":{"68":{"position":[[16103,4]]},"105":{"position":[[2892,4],[6188,4],[7324,4],[9237,4],[9359,4],[24168,4],[27722,4],[27829,4]]}}}],["tgra(output",{"_index":4879,"t":{},"d":{},"k":{},"b":{"105":{"position":[[5349,11]]}}}],["tgra_val",{"_index":4967,"t":{},"d":{},"k":{},"b":{"105":{"position":[[19568,8]]}}}],["tgrb",{"_index":4888,"t":{},"d":{},"k":{},"b":{"105":{"position":[[6194,4],[7710,4],[24241,4]]}}}],["tgrb(output",{"_index":4883,"t":{},"d":{},"k":{},"b":{"105":{"position":[[5498,11]]}}}],["tgrb_val",{"_index":4968,"t":{},"d":{},"k":{},"b":{"105":{"position":[[19624,8]]}}}],["tgrc(output",{"_index":4884,"t":{},"d":{},"k":{},"b":{"105":{"position":[[5647,11]]}}}],["tgrc_val",{"_index":4969,"t":{},"d":{},"k":{},"b":{"105":{"position":[[19680,8]]}}}],["tgrd(output",{"_index":4885,"t":{},"d":{},"k":{},"b":{"105":{"position":[[5796,11]]}}}],["tgrd_val",{"_index":4971,"t":{},"d":{},"k":{},"b":{"105":{"position":[[19765,8]]}}}],["tgrx",{"_index":5072,"t":{},"d":{},"k":{},"b":{"105":{"position":[[32700,4]]}}}],["themselv",{"_index":6189,"t":{},"d":{},"k":{},"b":{"128":{"position":[[8361,10],[10698,11]]}}}],["theoret",{"_index":2083,"t":{},"d":{},"k":{},"b":{"71":{"position":[[45320,13]]},"83":{"position":[[6732,11]]},"135":{"position":[[3383,11]]},"138":{"position":[[3553,11]]},"139":{"position":[[3333,11]]},"142":{"position":[[5443,11]]}}}],["therefor",{"_index":735,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5877,10]]},"71":{"position":[[5444,9],[45261,9],[46044,9]]},"75":{"position":[[2427,9]]},"76":{"position":[[22903,9]]},"79":{"position":[[7099,10]]},"84":{"position":[[15494,9]]},"128":{"position":[[3060,9],[3610,9],[5393,10],[7065,9],[14210,9],[14778,9],[18320,9]]},"136":{"position":[[3865,9]]}}}],["thermal",{"_index":2006,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35282,7]]}}}],["thigh",{"_index":4087,"t":{},"d":{},"k":{},"b":{"88":{"position":[[15280,7],[15331,7],[15398,7],[15449,7],[16602,5]]}}}],["thing",{"_index":5542,"t":{},"d":{},"k":{},"b":{"113":{"position":[[1195,5]]}}}],["third",{"_index":8231,"t":{},"d":{},"k":{},"b":{"150":{"position":[[12798,5]]}}}],["those",{"_index":6197,"t":{},"d":{},"k":{},"b":{"128":{"position":[[9437,5]]}}}],["though",{"_index":2479,"t":{},"d":{},"k":{},"b":{"75":{"position":[[28930,6]]},"88":{"position":[[3653,6],[19965,6]]}}}],["thread",{"_index":1667,"t":{},"d":{},"k":{},"b":{"70":{"position":[[14713,7],[15050,7]]},"71":{"position":[[10153,6],[10212,7]]},"128":{"position":[[11636,6],[11746,6]]}}}],["three",{"_index":1026,"t":{},"d":{},"k":{},"b":{"69":{"position":[[10292,5],[22433,5]]},"71":{"position":[[4831,5]]},"75":{"position":[[16105,5],[23928,5]]},"83":{"position":[[42358,5]]},"105":{"position":[[3306,5],[26898,5]]},"106":{"position":[[11512,5]]},"128":{"position":[[19576,5]]},"131":{"position":[[4323,5]]},"136":{"position":[[1478,5]]}}}],["threshold",{"_index":2299,"t":{},"d":{},"k":{},"b":{"75":{"position":[[4128,9],[4213,9],[4328,9],[4429,9],[4855,9],[4940,9],[5055,9],[5156,9],[5582,9],[5667,9],[5782,9],[5883,9],[6309,9],[6394,9],[6509,9],[6610,9],[7036,9],[7121,9],[7236,9],[7337,9],[7763,9],[7848,9],[7963,9],[8064,9],[8490,9],[8575,9],[8690,9],[8791,9],[9217,9],[9302,9],[9417,9],[9518,9],[17486,9]]},"106":{"position":[[9443,9],[9582,10],[16700,10],[16727,10],[19809,10]]}}}],["thresholdmcu",{"_index":2302,"t":{},"d":{},"k":{},"b":{"75":{"position":[[4281,12],[5008,12],[5735,12],[6462,12],[7189,12],[7916,12],[8643,12],[9370,12]]}}}],["thresor",{"_index":6400,"t":{},"d":{},"k":{},"b":{"129":{"position":[[4531,9]]}}}],["through",{"_index":149,"t":{},"d":{},"k":{},"b":{"1":{"position":[[871,7]]},"69":{"position":[[16265,7]]},"71":{"position":[[3631,7],[44597,7],[45184,7]]},"75":{"position":[[20998,7],[21999,7]]},"79":{"position":[[3814,7]]},"80":{"position":[[1437,8]]},"92":{"position":[[11602,7],[12196,7],[15906,7]]},"109":{"position":[[8078,7]]},"125":{"position":[[10388,7]]},"139":{"position":[[9352,7]]},"146":{"position":[[7339,7]]},"149":{"position":[[4016,8]]}}}],["throughout",{"_index":138,"t":{},"d":{},"k":{},"b":{"1":{"position":[[635,10]]},"128":{"position":[[15470,10]]}}}],["thrown",{"_index":972,"t":{},"d":{},"k":{},"b":{"69":{"position":[[3164,6],[12239,7],[12705,6]]},"75":{"position":[[23607,6]]}}}],["tic0",{"_index":2632,"t":{},"d":{},"k":{},"b":{"76":{"position":[[3599,4],[3813,4],[3885,4],[5753,4],[12713,5]]}}}],["tic1",{"_index":2633,"t":{},"d":{},"k":{},"b":{"76":{"position":[[3706,4],[3915,4],[3987,4],[5761,4],[12799,5]]}}}],["tick",{"_index":4245,"t":{},"d":{},"k":{},"b":{"88":{"position":[[41607,6],[46484,5],[46677,5],[46875,5]]},"128":{"position":[[2464,4],[2731,4],[2920,4],[3000,4],[3020,4],[3079,4],[3161,4],[3290,4],[3572,5],[3585,4],[4861,7],[4904,4],[4971,4],[5384,8],[5415,4],[10192,4],[10400,4],[20789,4],[20865,4],[20899,4],[30101,4]]},"149":{"position":[[1284,6]]}}}],["tickless",{"_index":6143,"t":{},"d":{},"k":{},"b":{"128":{"position":[[2328,8],[2379,8],[2425,8],[2511,8]]}}}],["ticksdisableddis",{"_index":6163,"t":{},"d":{},"k":{},"b":{"128":{"position":[[4819,21]]}}}],["ticktype_t",{"_index":6164,"t":{},"d":{},"k":{},"b":{"128":{"position":[[5012,11],[5068,10],[5177,10]]}}}],["time",{"_index":672,"t":{},"d":{},"k":{},"b":{"68":{"position":[[2576,4],[2628,4],[5673,5],[6182,6],[6996,4],[7169,6],[7878,5],[13183,5],[16052,5]]},"69":{"position":[[2041,4],[2093,4],[8501,4],[10830,4],[10891,5],[11005,4],[11141,4]]},"71":{"position":[[4091,4],[9615,4],[9670,4],[38014,4],[43714,4],[44351,5],[44367,4],[44577,5],[44592,4],[44699,4],[44834,4],[45644,5]]},"72":{"position":[[28,4],[82,4]]},"73":{"position":[[28,4],[82,4]]},"74":{"position":[[1534,4],[1586,4],[2684,7]]},"75":{"position":[[2612,4],[2664,4],[4176,4],[4903,4],[5630,4],[6357,4],[7084,4],[7811,4],[8538,4],[9265,4],[12529,4],[12574,4],[12685,4],[12730,4],[13107,4],[13152,4],[13260,4],[13304,4],[13926,6],[14230,4],[15507,4],[15547,4],[15632,4],[15647,4],[16762,5],[22210,4],[22373,4],[37365,5]]},"76":{"position":[[1808,4],[1859,4],[4188,4],[5571,5],[5920,5],[6980,4]]},"77":{"position":[[1369,4],[1419,4]]},"79":{"position":[[1724,4],[1777,4],[5819,5],[6024,4],[7795,5]]},"80":{"position":[[3815,4],[3865,4]]},"83":{"position":[[2857,5],[3210,4],[3260,4],[4174,4],[4224,4],[11004,4],[12072,4],[12131,4],[12173,4],[12285,4],[12540,4],[13935,4],[13947,4],[14089,4],[14147,4],[14159,4],[14303,4],[15813,5],[17283,4],[17566,4],[17619,4],[20075,4],[27364,4],[29419,4],[29492,4],[31470,4],[31632,4],[40131,4],[40255,5],[40364,5]]},"84":{"position":[[2245,4],[2295,4],[3946,4],[4505,5]]},"87":{"position":[[16030,6],[17106,6],[17165,6]]},"88":{"position":[[2140,5],[6739,4],[6791,4],[9240,6],[9267,4],[9283,4],[9359,4],[9405,6],[9433,4],[9450,4],[9527,4],[9573,6],[9599,4],[9615,4],[9690,4],[9736,6],[9763,4],[9780,4],[9855,4],[10507,4],[10567,4],[12683,4],[12843,5],[12926,4],[13002,4],[13163,5],[14415,4],[14577,4],[14763,4],[15210,6],[15644,4],[17564,4],[19208,4],[20691,4],[22123,6],[41563,4],[43988,5],[44048,5],[46456,4],[46649,4],[46847,4],[48849,4],[50788,4],[50907,4],[50992,4],[51078,4],[51165,4],[51252,4],[51343,4]]},"89":{"position":[[1559,4],[1614,4],[2637,4]]},"90":{"position":[[1507,4],[1562,4],[2355,4]]},"91":{"position":[[1558,4],[1614,4],[2714,4]]},"92":{"position":[[2593,4],[2646,4],[14916,5],[32038,5],[36844,5]]},"105":{"position":[[3192,4],[3915,4],[3966,4],[5945,4],[6055,4],[7939,4],[11436,4],[11720,4],[11773,4],[12067,4],[19872,4],[22068,4]]},"106":{"position":[[1049,4],[1099,4],[16620,5]]},"108":{"position":[[1162,4],[1213,4]]},"109":{"position":[[8178,5]]},"113":{"position":[[5544,5],[6124,6],[6429,6]]},"124":{"position":[[1867,4],[1897,5],[1964,4],[2022,4],[2992,4],[3054,4],[3087,4],[3149,4],[13142,4],[13885,4],[13971,4]]},"125":{"position":[[1448,4],[1505,4]]},"127":{"position":[[1527,4],[1584,4]]},"128":{"position":[[540,4],[588,4],[2494,6],[3054,5],[3100,4],[3226,4],[3484,4],[3657,5],[4841,4],[4894,5],[5363,4],[5452,4],[5847,4],[5916,4],[6071,4],[6396,4],[6813,5],[6948,4],[7023,4],[7095,4],[7451,4],[7477,4],[7576,4],[7685,4],[9889,4],[9938,4],[10016,4],[10215,4],[10896,4],[16484,5],[19264,4],[20610,5],[21569,4],[21617,4],[29896,4]]},"129":{"position":[[1838,5],[2936,4],[3114,4],[3168,4],[4723,5],[8279,5],[8688,5],[15620,5]]},"131":{"position":[[2336,4],[2789,4],[2843,4]]},"133":{"position":[[5752,4],[6001,4],[6057,4],[7305,5],[8167,4],[8330,4],[9541,4],[10449,4],[19498,5],[24393,5],[39085,5],[46384,5]]},"135":{"position":[[1616,4],[1667,4],[10350,4]]},"136":{"position":[[1342,4],[1373,4],[1777,4],[1820,4],[1878,5],[2284,4],[2353,4],[2771,5],[2808,4],[2895,4],[3190,4],[3313,4],[3341,4],[3547,5],[4006,4],[4056,4],[6842,4],[7439,4],[8064,4],[8146,4],[11598,4],[12891,5],[12977,4],[13155,4],[13510,5],[13648,4],[13760,4],[14307,5],[14478,4],[14550,4],[15084,5],[15176,4],[16582,4]]},"137":{"position":[[118,4],[220,4],[1262,4],[1522,4],[1729,4],[1779,4],[1785,4],[5771,4],[5933,4],[5966,4],[6234,5],[6367,4],[6400,4],[6614,4],[6820,4],[7086,5],[7264,4],[7832,4],[9580,4],[10048,4],[10100,4],[10154,4],[10842,4],[11256,4],[11566,4]]},"138":{"position":[[1881,4],[1911,5],[1979,5],[2046,4],[2102,4],[6465,4]]},"139":{"position":[[1514,4],[1808,4],[1865,4],[5098,4],[5174,4],[5358,4],[5435,4],[6305,5],[7393,5],[7423,5],[13582,4],[13712,4],[16230,5],[18219,5],[22590,5]]},"140":{"position":[[1535,4],[1777,4],[1833,4],[5114,5],[6303,5],[6333,5],[16838,5],[20446,5]]},"142":{"position":[[1814,4],[1866,4],[11368,4]]},"144":{"position":[[6669,4],[6747,7],[11306,4]]},"145":{"position":[[11342,6],[11404,6]]},"146":{"position":[[1690,4],[1742,4],[10011,5]]},"147":{"position":[[1075,5],[1213,5],[3203,5],[3510,5]]},"148":{"position":[[1515,4],[1565,4],[3462,4],[3688,5],[3999,4],[4247,4],[8664,4]]},"149":{"position":[[6597,4]]},"150":{"position":[[2046,4],[2102,4],[5345,6],[5480,6],[5596,6],[6165,5],[23678,5]]},"151":{"position":[[134,4],[2926,4],[2974,4]]}}}],["time.(unit:adivclk",{"_index":689,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3721,18]]}}}],["time.h",{"_index":6955,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7604,6]]},"137":{"position":[[9625,8]]}}}],["time_segment_1",{"_index":2143,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1518,14]]},"75":{"position":[[15320,16]]}}}],["time_segment_2",{"_index":2145,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1570,14]]},"75":{"position":[[15339,14]]}}}],["timemanu",{"_index":687,"t":{},"d":{},"k":{},"b":{"68":{"position":[[3684,10]]}}}],["timemust",{"_index":7168,"t":{},"d":{},"k":{},"b":{"139":{"position":[[5010,8],[5270,8]]}}}],["timeout",{"_index":4021,"t":{},"d":{},"k":{},"b":{"88":{"position":[[2046,7],[13862,7],[14937,7],[47602,7]]},"113":{"position":[[3075,7]]},"124":{"position":[[3844,7],[3903,7],[3938,7],[4003,7],[4088,7],[5631,7],[13124,7],[13245,8],[13626,7],[13792,7],[13867,7],[13953,7],[14173,7],[14253,7]]},"125":{"position":[[2204,8],[4439,7],[7098,8],[7221,7],[7249,8],[7273,7],[7365,7],[7393,8],[7418,7],[14077,7],[14710,8]]},"126":{"position":[[1034,7]]},"127":{"position":[[2149,7],[2680,7],[2750,7]]},"129":{"position":[[16054,8],[16985,8]]},"131":{"position":[[16662,8],[18032,8],[18856,8],[19838,8]]},"133":{"position":[[51799,8],[52377,8],[52951,8],[53541,8],[54316,8],[55967,8]]},"148":{"position":[[2179,7],[3706,7],[4163,7],[4281,7],[7326,8],[10754,7],[13838,7],[13952,7]]},"149":{"position":[[1055,7],[1111,7],[1242,7],[1431,7],[1440,7],[4917,7],[5077,7]]}}}],["timeout_clock",{"_index":8077,"t":{},"d":{},"k":{},"b":{"149":{"position":[[1226,14]]}}}],["timeout_detection_en",{"_index":4302,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47002,24]]}}}],["timeout_m",{"_index":5920,"t":{},"d":{},"k":{},"b":{"124":{"position":[[8058,10],[8798,11],[8884,10],[9087,10],[9403,11],[9489,10],[10691,10],[11267,11],[11353,10],[11799,10],[12024,11],[12110,10]]},"125":{"position":[[10485,10],[11835,11],[11921,10],[12263,10],[12765,11],[12851,10]]},"138":{"position":[[7928,10],[8685,11],[8771,10],[8974,10],[9297,11],[9383,10],[9888,10],[10478,11],[10564,10],[11033,10],[11265,11],[11351,10]]}}}],["timeout_mod",{"_index":5961,"t":{},"d":{},"k":{},"b":{"124":{"position":[[13110,12]]}}}],["timeout_scl_low",{"_index":5962,"t":{},"d":{},"k":{},"b":{"124":{"position":[[13221,15]]}}}],["timeoutget",{"_index":8081,"t":{},"d":{},"k":{},"b":{"149":{"position":[[2751,10],[4740,10]]}}}],["timeoutmcu",{"_index":7996,"t":{},"d":{},"k":{},"b":{"148":{"position":[[2132,10]]}}}],["timeoutvalu",{"_index":6080,"t":{},"d":{},"k":{},"b":{"127":{"position":[[2091,12]]}}}],["timer",{"_index":651,"t":{"76":{"position":[[59,5]]},"83":{"position":[[57,5]]},"84":{"position":[[53,5]]},"105":{"position":[[60,5]]},"122":{"position":[[45,6]]},"144":{"position":[[45,5]]}},"d":{},"k":{},"b":{"68":{"position":[[1640,5],[1671,5],[5993,5],[6602,5],[6652,5],[12992,5],[13104,5],[15861,5],[15973,5]]},"69":{"position":[[1525,5],[3317,5]]},"71":{"position":[[34174,6],[34206,6],[34700,5],[34741,6],[34773,6],[35325,6],[35406,5]]},"76":{"position":[[1239,5],[1512,5],[1754,5],[2115,6],[2124,5],[2206,6],[2215,5],[2662,5],[2915,5],[4197,5],[5772,5],[6384,5],[6473,5],[6587,5],[6619,5],[6747,5],[6989,5],[7577,6],[7674,5],[7722,5],[8360,6],[8436,6],[10559,6],[13031,5],[16326,5],[18261,5],[19024,6],[19088,6],[20702,5],[22164,6],[22237,6],[22954,5],[22985,6],[22996,5],[23028,5],[23085,5],[23470,5]]},"80":{"position":[[1011,5],[1987,5]]},"83":{"position":[[1645,5],[1883,7],[1902,6],[2259,5],[2598,5],[3067,5],[3331,5],[3354,5],[3389,5],[3417,5],[3624,5],[3648,6],[3682,6],[3700,7],[3958,5],[3982,6],[4019,6],[4037,7],[5050,6],[5059,6],[5145,6],[5154,6],[6277,5],[6404,5],[8603,5],[8865,5],[9096,5],[9255,5],[9476,5],[9637,6],[10143,6],[10235,6],[11013,5],[15945,6],[15976,5],[16072,5],[16231,5],[16585,5],[16674,5],[16788,5],[16820,5],[17292,5],[17503,6],[18989,5],[19403,5],[19677,5],[20277,5],[20787,6],[20882,5],[20930,5],[21271,6],[21695,6],[21770,6],[24023,6],[25568,6],[27303,6],[30507,5],[30583,5],[30659,5],[31002,5],[31203,5],[33276,6],[33292,6],[46515,5],[46679,5],[46789,5],[46914,5],[47768,6],[48129,6],[49567,5],[50161,5],[50246,5],[50506,5],[52361,5],[52989,5],[53120,5],[53889,5],[53916,5]]},"84":{"position":[[1066,5],[1191,5],[1266,5],[1309,5],[1577,5],[1659,5],[1715,5],[1738,5],[1773,5],[1801,5],[2035,5],[2090,6],[2108,7],[2550,6],[2559,5],[2632,6],[2641,5],[3062,5],[3955,5],[4054,5],[4251,5],[4302,5],[4338,5],[4386,5],[4736,6],[5031,5],[5060,5],[5560,5],[5649,5],[5763,5],[5795,5],[6325,6],[6419,5],[6467,5],[7042,6],[7116,6],[7834,6],[9537,5],[9601,5],[9723,5],[9791,5],[10918,5],[11102,5],[11823,5],[12500,6],[13747,5],[14844,6],[15544,5],[15575,6],[15586,5],[15618,5],[15674,5],[15800,5],[16032,5]]},"101":{"position":[[3738,6]]},"105":{"position":[[1475,5],[1701,5],[1718,6],[1733,5],[1810,5],[1823,5],[2155,5],[2494,5],[2605,5],[3349,5],[3372,5],[3410,5],[3452,5],[3689,5],[3758,6],[3776,7],[4350,6],[4359,5],[4441,6],[4450,5],[7948,5],[8881,5],[9118,5],[11445,5],[11657,6],[12542,6],[12639,5],[12687,5],[13026,6],[13296,6],[13372,6],[14101,6],[15899,6],[18572,5],[18662,5],[28208,5],[28318,5],[28540,5],[29014,6],[29087,6],[29462,6],[29526,6],[30588,5],[30670,5],[33600,5],[34206,5],[34503,5],[35262,5],[35289,5]]},"106":{"position":[[20699,5],[24871,5]]},"108":{"position":[[955,5],[1469,6],[1573,6]]},"109":{"position":[[3954,6]]},"115":{"position":[[1387,5],[1418,5],[1596,5]]},"116":{"position":[[1658,6],[1666,6]]},"122":{"position":[[22,6],[64,5],[152,5],[185,5],[269,5],[298,5],[383,5],[419,5],[529,5]]},"128":{"position":[[372,5],[2889,5],[20316,6],[20567,5],[22266,6],[23732,6],[23885,5],[24178,5],[24524,5],[24639,5],[25086,5],[26803,6],[26816,6],[26886,5],[26936,5],[26983,6],[27021,6],[27030,5],[27122,5],[27175,6],[27213,6],[27222,5],[27312,5],[27359,6],[27397,6],[27406,5],[27516,5],[27569,6],[30034,5]]},"133":{"position":[[9500,5]]},"136":{"position":[[4311,6],[4402,6]]},"144":{"position":[[36,5],[75,5],[109,5],[198,5],[221,5],[463,5],[492,5],[514,5],[543,5],[1511,5],[1574,5],[1672,6],[1731,5],[1787,5],[1972,5],[2075,5],[2364,5],[3107,5],[3425,5],[3454,5],[5214,6],[5517,6],[5848,6],[6168,6],[6495,6],[6684,5],[6924,5],[7048,6],[7083,5],[7363,5],[7433,5],[7635,6],[7944,5],[8137,6],[8195,6],[8404,5],[8614,6],[8662,6],[9197,6],[9824,6],[10400,5],[10482,5],[10803,5],[10830,5],[10876,5],[11085,5],[11590,5],[11651,5],[11687,5],[11872,5],[11913,5],[12017,5],[12073,5],[12132,5],[12183,5],[12344,5],[12438,5],[12539,5],[12935,5],[12980,5],[13022,5],[13196,5],[13250,5],[13304,5],[13358,5],[13413,5],[13469,5],[13525,5],[13582,5],[13640,5],[13698,5],[13757,5]]},"146":{"position":[[13300,6]]},"148":{"position":[[795,5],[875,5],[1113,5],[1483,5],[3335,5],[3860,5],[9868,6],[13875,6]]},"149":{"position":[[46,5],[108,5],[235,5],[3568,6]]},"152":{"position":[[5592,5],[5678,5],[5708,5],[5790,5],[5816,5],[5899,5],[5932,5],[6040,5],[7730,5],[7759,5],[7922,5]]}}}],["timer.th",{"_index":3312,"t":{},"d":{},"k":{},"b":{"83":{"position":[[4005,9]]},"84":{"position":[[2076,9]]},"105":{"position":[[3744,9]]}}}],["timer_api_t",{"_index":7706,"t":{},"d":{},"k":{},"b":{"144":{"position":[[701,11],[3348,11],[3396,11],[10208,11]]}}}],["timer_api_t::callbackset",{"_index":2788,"t":{},"d":{},"k":{},"b":{"76":{"position":[[25545,25]]},"83":{"position":[[57271,25]]},"84":{"position":[[17058,25]]},"105":{"position":[[38175,25]]},"144":{"position":[[8737,25]]}}}],["timer_api_t::clos",{"_index":2759,"t":{},"d":{},"k":{},"b":{"76":{"position":[[15737,19]]},"83":{"position":[[57824,19]]},"84":{"position":[[10151,19]]},"105":{"position":[[38626,19]]},"144":{"position":[[9535,19]]}}}],["timer_api_t::dis",{"_index":2776,"t":{},"d":{},"k":{},"b":{"76":{"position":[[20120,21]]},"83":{"position":[[49537,21]]},"84":{"position":[[13328,21]]},"105":{"position":[[36771,20]]},"144":{"position":[[6239,21]]}}}],["timer_api_t::dutycycleset",{"_index":2769,"t":{},"d":{},"k":{},"b":{"76":{"position":[[18357,26]]},"83":{"position":[[51279,26]]},"84":{"position":[[11919,26]]},"105":{"position":[[32644,26]]},"144":{"position":[[7173,26]]}}}],["timer_api_t::en",{"_index":2774,"t":{},"d":{},"k":{},"b":{"76":{"position":[[19555,20]]},"83":{"position":[[49092,20]]},"84":{"position":[[12953,20]]},"105":{"position":[[36484,19]]},"144":{"position":[[5918,20]]}}}],["timer_api_t::infoget",{"_index":2777,"t":{},"d":{},"k":{},"b":{"76":{"position":[[20772,21]]},"83":{"position":[[52431,21]]},"84":{"position":[[13817,21]]},"105":{"position":[[33670,21]]},"144":{"position":[[7841,21]]}}}],["timer_api_t::open",{"_index":2709,"t":{},"d":{},"k":{},"b":{"76":{"position":[[12217,17],[22792,18]]},"83":{"position":[[28807,17],[46567,18]]},"84":{"position":[[9153,17],[15384,18]]},"101":{"position":[[3706,17]]},"105":{"position":[[17528,17],[28260,18]]},"144":{"position":[[1182,17],[4519,18],[5182,17],[5485,17],[5816,17],[6136,17],[6463,17],[6947,18],[7016,17],[7603,17],[8105,17],[8582,17],[9165,17],[9792,17]]}}}],["timer_api_t::periodset",{"_index":2762,"t":{},"d":{},"k":{},"b":{"76":{"position":[[16286,23]]},"83":{"position":[[50332,23]]},"84":{"position":[[10744,23]]},"105":{"position":[[30756,23]]},"144":{"position":[[6568,23]]}}}],["timer_api_t::reset",{"_index":2771,"t":{},"d":{},"k":{},"b":{"76":{"position":[[18675,19]]},"83":{"position":[[48526,19]]},"84":{"position":[[12216,19]]},"105":{"position":[[29937,19]]},"144":{"position":[[5586,19]]}}}],["timer_api_t::start",{"_index":2773,"t":{},"d":{},"k":{},"b":{"76":{"position":[[19042,19]]},"83":{"position":[[48147,19]]},"84":{"position":[[12518,19]]},"105":{"position":[[29480,19]]},"144":{"position":[[4973,19]]}}}],["timer_api_t::statusget",{"_index":2778,"t":{},"d":{},"k":{},"b":{"76":{"position":[[21591,23]]},"83":{"position":[[53056,23]]},"84":{"position":[[14439,23]]},"105":{"position":[[34273,23]]},"144":{"position":[[8268,23],[11816,23]]}}}],["timer_api_t::stop",{"_index":2780,"t":{},"d":{},"k":{},"b":{"76":{"position":[[22182,18]]},"83":{"position":[[47786,18]]},"84":{"position":[[14862,18]]},"105":{"position":[[29032,18]]},"144":{"position":[[5282,18]]}}}],["timer_callback",{"_index":2662,"t":{},"d":{},"k":{},"b":{"76":{"position":[[7744,14]]},"83":{"position":[[20952,14]]},"84":{"position":[[6489,14]]},"105":{"position":[[12709,14]]}}}],["timer_callback_args_t",{"_index":2610,"t":{},"d":{},"k":{},"b":{"76":{"position":[[1097,21],[7759,22],[8907,22],[25309,21]]},"83":{"position":[[1405,21],[20967,22],[22237,22],[57035,21]]},"84":{"position":[[924,21],[6504,22],[16822,21]]},"101":{"position":[[2151,22]]},"103":{"position":[[1428,22]]},"105":{"position":[[1268,21],[12724,22],[17938,23],[17991,21],[37939,21]]},"144":{"position":[[599,21],[977,21],[1035,21],[2635,23],[3033,22],[3315,22],[4348,21],[8869,21]]},"146":{"position":[[11536,22]]}}}],["timer_capture_callback",{"_index":2673,"t":{},"d":{},"k":{},"b":{"76":{"position":[[8884,22]]},"83":{"position":[[22214,22]]}}}],["timer_cfg_t",{"_index":2604,"t":{},"d":{},"k":{},"b":{"76":{"position":[[767,11],[22631,11]]},"83":{"position":[[63,11],[6803,11],[46387,11]]},"84":{"position":[[756,11],[15224,11]]},"105":{"position":[[64,11],[17629,11],[28080,11]]},"144":{"position":[[679,11],[1212,12],[2116,11],[2164,11],[3577,11],[4567,11],[10119,11]]}}}],["timer_cfg_t::channel",{"_index":7720,"t":{},"d":{},"k":{},"b":{"144":{"position":[[2845,20]]}}}],["timer_cfg_t::p_callback",{"_index":3623,"t":{},"d":{},"k":{},"b":{"83":{"position":[[47144,23]]},"144":{"position":[[3008,24]]}}}],["timer_cfg_t::p_context",{"_index":7721,"t":{},"d":{},"k":{},"b":{"144":{"position":[[3217,22]]}}}],["timer_cfg_t::period_count",{"_index":3359,"t":{},"d":{},"k":{},"b":{"83":{"position":[[16186,27],[16265,26]]}}}],["timer_cfg_t::source_div",{"_index":2692,"t":{},"d":{},"k":{},"b":{"76":{"position":[[10912,24],[16702,24]]},"83":{"position":[[24352,24]]},"105":{"position":[[14424,23],[31063,23]]}}}],["timer_ctrl_t",{"_index":2589,"t":{},"d":{},"k":{},"b":{"76":{"position":[[36,13],[94,13],[185,13],[293,13],[347,13],[402,13],[458,13],[514,13],[600,13],[685,13],[738,13],[831,13],[912,13],[991,13],[15568,12],[16020,12],[17948,12],[18566,12],[18950,12],[19396,12],[19960,12],[20499,12],[21307,12],[22087,12],[22541,12],[24027,12],[24523,12],[25017,12]]},"83":{"position":[[34,13],[118,13],[171,13],[224,13],[278,13],[333,13],[390,13],[480,13],[589,13],[674,13],[764,13],[842,13],[921,13],[1000,13],[1140,13],[1299,13],[1477,13],[46297,12],[47695,12],[48055,12],[48417,12],[48933,12],[49377,12],[49926,12],[50948,12],[52159,12],[52775,12],[53380,12],[54068,12],[54565,12],[55064,12],[55705,12],[56743,12],[57676,12]]},"84":{"position":[[35,13],[92,13],[182,13],[289,13],[342,13],[396,13],[451,13],[506,13],[591,13],[675,13],[727,13],[818,13],[9982,12],[10432,12],[11510,12],[12088,12],[12426,12],[12794,12],[13168,12],[13544,12],[14155,12],[14767,12],[15134,12],[16530,12]]},"105":{"position":[[35,13],[120,13],[174,13],[228,13],[286,13],[377,13],[487,13],[573,13],[664,13],[743,13],[834,13],[908,13],[964,13],[1026,13],[1162,13],[1341,13],[27990,12],[28941,12],[29388,12],[29828,12],[30353,12],[32330,12],[33398,12],[33992,12],[34765,12],[35443,12],[35941,12],[36417,12],[36704,12],[37005,12],[37647,12],[38478,12]]},"144":{"position":[[766,12],[3547,14],[3629,14],[3678,14],[3728,14],[3779,14],[3831,14],[3885,14],[3965,14],[4071,14],[4153,14],[4241,14],[4416,14],[4538,13],[4993,13],[5301,13],[5606,13],[5939,13],[6261,13],[6592,13],[7200,13],[7863,13],[8292,13],[8763,13],[9555,13],[10041,12],[10315,12],[10370,12]]}}}],["timer_direction_t",{"_index":7711,"t":{},"d":{},"k":{},"b":{"144":{"position":[[895,17],[1604,17],[12835,17],[12887,17]]}}}],["timer_direction_up",{"_index":7756,"t":{},"d":{},"k":{},"b":{"144":{"position":[[13003,18]]}}}],["timer_event_capture_a",{"_index":2674,"t":{},"d":{},"k":{},"b":{"76":{"position":[[8947,22]]},"83":{"position":[[22277,23]]},"144":{"position":[[1375,21],[10946,21]]}}}],["timer_event_capture_b",{"_index":3375,"t":{},"d":{},"k":{},"b":{"83":{"position":[[22322,22]]},"144":{"position":[[1400,22],[11006,21]]}}}],["timer_event_capture_u",{"_index":7737,"t":{},"d":{},"k":{},"b":{"144":{"position":[[11320,21]]}}}],["timer_event_capture_v",{"_index":7739,"t":{},"d":{},"k":{},"b":{"144":{"position":[[11380,21]]}}}],["timer_event_capture_w",{"_index":7741,"t":{},"d":{},"k":{},"b":{"144":{"position":[[11440,21]]}}}],["timer_event_crest",{"_index":7732,"t":{},"d":{},"k":{},"b":{"144":{"position":[[10858,17]]}}}],["timer_event_cycle_end",{"_index":2663,"t":{},"d":{},"k":{},"b":{"76":{"position":[[7799,22],[9370,22]]},"83":{"position":[[21007,22],[22901,22]]},"84":{"position":[[6544,22]]},"105":{"position":[[12764,22]]}}}],["timer_event_dead_tim",{"_index":7736,"t":{},"d":{},"k":{},"b":{"144":{"position":[[11279,21]]}}}],["timer_event_output_compare_0",{"_index":7734,"t":{},"d":{},"k":{},"b":{"144":{"position":[[11145,28]]}}}],["timer_event_output_compare_1",{"_index":7735,"t":{},"d":{},"k":{},"b":{"144":{"position":[[11212,28]]}}}],["timer_event_t",{"_index":7708,"t":{},"d":{},"k":{},"b":{"144":{"position":[[802,13],[1228,13],[10636,13],[10684,13]]}}}],["timer_event_trough",{"_index":7733,"t":{},"d":{},"k":{},"b":{"144":{"position":[[11066,18]]}}}],["timer_freq_hz",{"_index":2694,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11028,13],[11408,13],[16818,13],[17198,13]]},"84":{"position":[[8262,13],[8614,13]]}}}],["timer_info_t",{"_index":2599,"t":{},"d":{},"k":{},"b":{"76":{"position":[[543,12],[9061,12],[20589,12],[20872,12]]},"83":{"position":[[618,12],[22437,12],[25661,12],[52249,12]]},"84":{"position":[[535,12],[13634,12]]},"105":{"position":[[516,12],[15993,12],[33488,12]]},"144":{"position":[[631,12],[1432,12],[1481,12],[4101,12],[7892,12]]}}}],["timer_info_t::period_count",{"_index":3377,"t":{},"d":{},"k":{},"b":{"83":{"position":[[22666,28]]}}}],["timer_instance_t",{"_index":7707,"t":{},"d":{},"k":{},"b":{"144":{"position":[[723,16],[9848,16],[9901,16]]}}}],["timer_mode_one_shot",{"_index":3622,"t":{},"d":{},"k":{},"b":{"83":{"position":[[47121,19]]},"144":{"position":[[12112,19]]}}}],["timer_mode_one_shot_puls",{"_index":7749,"t":{},"d":{},"k":{},"b":{"144":{"position":[[12222,25]]}}}],["timer_mode_pwm",{"_index":7747,"t":{},"d":{},"k":{},"b":{"144":{"position":[[12168,14]]}}}],["timer_mode_t",{"_index":7710,"t":{},"d":{},"k":{},"b":{"144":{"position":[[873,12],[2260,12],[2308,13],[11940,12],[11987,12]]}}}],["timer_mode_triangle_wave_asymmetric_pwm",{"_index":7751,"t":{},"d":{},"k":{},"b":{"144":{"position":[[12398,39]]}}}],["timer_mode_triangle_wave_asymmetric_pwm_mode3",{"_index":7752,"t":{},"d":{},"k":{},"b":{"144":{"position":[[12493,45]]}}}],["timer_mode_triangle_wave_symmetric_pwm",{"_index":7750,"t":{},"d":{},"k":{},"b":{"144":{"position":[[12305,38]]}}}],["timer_on__cfg_t",{"_index":7704,"t":{},"d":{},"k":{},"b":{"144":{"position":[[380,25]]}}}],["timer_overflow_flag",{"_index":7902,"t":{},"d":{},"k":{},"b":{"146":{"position":[[11490,19],[11608,19],[13417,22],[13513,19]]}}}],["timer_source_div_1024",{"_index":7767,"t":{},"d":{},"k":{},"b":{"144":{"position":[[13735,21]]}}}],["timer_source_div_128",{"_index":7764,"t":{},"d":{},"k":{},"b":{"144":{"position":[[13561,20]]}}}],["timer_source_div_16",{"_index":7761,"t":{},"d":{},"k":{},"b":{"144":{"position":[[13393,19]]}}}],["timer_source_div_2",{"_index":7758,"t":{},"d":{},"k":{},"b":{"144":{"position":[[13231,18]]}}}],["timer_source_div_256",{"_index":7765,"t":{},"d":{},"k":{},"b":{"144":{"position":[[13619,20]]}}}],["timer_source_div_32",{"_index":7762,"t":{},"d":{},"k":{},"b":{"144":{"position":[[13449,19]]}}}],["timer_source_div_4",{"_index":7759,"t":{},"d":{},"k":{},"b":{"144":{"position":[[13285,18]]}}}],["timer_source_div_512",{"_index":7766,"t":{},"d":{},"k":{},"b":{"144":{"position":[[13677,20]]}}}],["timer_source_div_64",{"_index":7763,"t":{},"d":{},"k":{},"b":{"144":{"position":[[13505,19]]}}}],["timer_source_div_8",{"_index":7760,"t":{},"d":{},"k":{},"b":{"144":{"position":[[13339,18]]}}}],["timer_source_div_t",{"_index":7712,"t":{},"d":{},"k":{},"b":{"144":{"position":[[922,18],[2382,18],[13054,18],[13107,18]]}}}],["timer_state_count",{"_index":7745,"t":{},"d":{},"k":{},"b":{"144":{"position":[[11892,20]]}}}],["timer_state_t",{"_index":7709,"t":{},"d":{},"k":{},"b":{"144":{"position":[[850,13],[2045,13],[11702,13],[11750,13]]}}}],["timer_status_t",{"_index":2601,"t":{},"d":{},"k":{},"b":{"76":{"position":[[629,14],[8565,14],[21397,14],[21705,14]]},"83":{"position":[[703,14],[21898,14],[52865,14]]},"84":{"position":[[620,14],[7243,14],[14245,14]]},"105":{"position":[[602,14],[13501,14],[34082,14],[34387,14]]},"144":{"position":[[654,14],[1881,14],[1932,14],[4183,14],[8321,14]]}}}],["timer_variant_16_bit",{"_index":7743,"t":{},"d":{},"k":{},"b":{"144":{"position":[[11659,20]]}}}],["timer_variant_t",{"_index":2721,"t":{},"d":{},"k":{},"b":{"76":{"position":[[13000,15]]},"144":{"position":[[825,15],[11507,15],[11557,15]]}}}],["timers.th",{"_index":3308,"t":{},"d":{},"k":{},"b":{"83":{"position":[[3667,10]]}}}],["timerstim",{"_index":8384,"t":{},"d":{},"k":{},"b":{"152":{"position":[[5554,13]]}}}],["timestamp",{"_index":3124,"t":{},"d":{},"k":{},"b":{"80":{"position":[[2127,9]]}}}],["timevalu",{"_index":4067,"t":{},"d":{},"k":{},"b":{"88":{"position":[[13097,9]]}}}],["tint",{"_index":4397,"t":{},"d":{},"k":{},"b":{"91":{"position":[[1025,4],[1264,5],[1502,4],[2212,4],[2267,4],[2410,4],[2470,4],[3125,4],[3208,4],[5638,4],[5939,4],[6555,4],[6703,4]]},"92":{"position":[[2051,4]]}}}],["tint_trigg",{"_index":4411,"t":{},"d":{},"k":{},"b":{"91":{"position":[[3725,13],[5624,12]]}}}],["titcr1a",{"_index":5054,"t":{},"d":{},"k":{},"b":{"105":{"position":[[26423,7]]}}}],["titcr1b",{"_index":5055,"t":{},"d":{},"k":{},"b":{"105":{"position":[[26434,7]]}}}],["titcr2a",{"_index":5057,"t":{},"d":{},"k":{},"b":{"105":{"position":[[26501,7]]}}}],["titcr2b",{"_index":5058,"t":{},"d":{},"k":{},"b":{"105":{"position":[[26512,7]]}}}],["tj",{"_index":7907,"t":{},"d":{},"k":{},"b":{"146":{"position":[[11837,3],[14690,2],[14784,2],[14869,3],[14939,3]]}}}],["tm",{"_index":6956,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7618,4]]},"137":{"position":[[513,2],[9540,2]]}}}],["tm_hour",{"_index":6960,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7687,8]]}}}],["tm_mday",{"_index":6961,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7705,8]]}}}],["tm_min",{"_index":6959,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7669,7]]}}}],["tm_mon",{"_index":6963,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7739,7]]}}}],["tm_sec",{"_index":6958,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7651,7]]}}}],["tm_wday",{"_index":6962,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7722,8]]}}}],["tm_year",{"_index":6964,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7757,8]]}}}],["tmo",{"_index":5971,"t":{},"d":{},"k":{},"b":{"124":{"position":[[13911,4],[13998,4]]}}}],["tmo_irq",{"_index":4310,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47593,7]]}}}],["tmoi",{"_index":5899,"t":{},"d":{},"k":{},"b":{"124":{"position":[[4480,4],[5639,7]]},"125":{"position":[[2348,4],[4447,7],[4675,4]]}}}],["tmoi_irq",{"_index":5969,"t":{},"d":{},"k":{},"b":{"124":{"position":[[13616,8]]},"125":{"position":[[14067,8]]}}}],["tms_swdio",{"_index":1522,"t":{},"d":{},"k":{},"b":{"70":{"position":[[9098,10]]}}}],["toc0",{"_index":2629,"t":{},"d":{},"k":{},"b":{"76":{"position":[[3112,4],[3225,4],[3386,4],[3462,4],[5620,4],[6950,4],[12420,4],[12436,4],[14936,5],[14995,4],[24234,4],[24731,4]]}}}],["toc0_control",{"_index":2710,"t":{},"d":{},"k":{},"b":{"76":{"position":[[12518,12]]}}}],["toc1",{"_index":2631,"t":{},"d":{},"k":{},"b":{"76":{"position":[[3249,4],[3362,4],[3493,4],[3569,4],[5629,4],[6958,4],[12467,4],[12483,4],[14961,5],[15004,5],[24246,5],[24743,5]]}}}],["toc1_control",{"_index":2712,"t":{},"d":{},"k":{},"b":{"76":{"position":[[12588,12]]}}}],["togeth",{"_index":2399,"t":{},"d":{},"k":{},"b":{"75":{"position":[[19724,9],[24167,8]]},"83":{"position":[[33393,9]]}}}],["toggl",{"_index":2630,"t":{},"d":{},"k":{},"b":{"76":{"position":[[3155,6],[3191,6],[3292,6],[3328,6],[6967,7]]},"83":{"position":[[7244,6],[7439,6],[7944,6],[8139,6],[17264,7]]},"92":{"position":[[2148,7],[3605,6],[4081,6],[7649,6],[8493,6],[9337,6],[10181,6],[11466,6],[12069,6],[13637,6],[26494,6]]},"105":{"position":[[7089,6],[7195,6],[7475,6],[7581,6],[11417,7],[21173,6],[21475,6]]},"135":{"position":[[7401,7],[7651,6]]},"142":{"position":[[8575,7]]}}}],["toler",{"_index":2426,"t":{},"d":{},"k":{},"b":{"75":{"position":[[21291,9],[21882,9]]}}}],["tool",{"_index":135,"t":{},"d":{},"k":{},"b":{"1":{"position":[[587,4]]},"69":{"position":[[3449,4],[3598,4],[3875,4]]},"77":{"position":[[1906,4],[3690,5]]},"92":{"position":[[12935,4]]},"105":{"position":[[5990,4]]},"106":{"position":[[1764,4],[2569,4]]},"116":{"position":[[868,4]]},"124":{"position":[[5036,7],[6611,5]]},"125":{"position":[[3844,7]]},"136":{"position":[[4557,4]]},"138":{"position":[[2957,4],[5106,7],[6720,5]]},"139":{"position":[[2671,4],[4078,4],[4546,4]]},"140":{"position":[[3594,4],[4951,4]]},"142":{"position":[[2818,4]]},"150":{"position":[[3217,4],[5405,4]]},"151":{"position":[[3154,5]]}}}],["top",{"_index":1732,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2603,5]]},"128":{"position":[[15680,3]]}}}],["topolog",{"_index":4095,"t":{},"d":{},"k":{},"b":{"88":{"position":[[16282,8],[21742,8]]}}}],["total",{"_index":307,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1906,5],[11041,5]]},"68":{"position":[[24771,5]]},"69":{"position":[[31198,5]]},"71":{"position":[[35803,5]]},"75":{"position":[[16774,5],[17920,5]]},"79":{"position":[[4625,5],[4705,5],[5129,5],[5209,5],[7427,5]]},"88":{"position":[[19695,5],[45812,5],[45915,5]]},"128":{"position":[[7668,5],[25657,5],[25718,5]]},"145":{"position":[[2379,5],[2709,5],[12491,5]]}}}],["touch",{"_index":5743,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10555,5]]}}}],["tough/crest",{"_index":7753,"t":{},"d":{},"k":{},"b":{"144":{"position":[[12658,11]]}}}],["tq",{"_index":2359,"t":{},"d":{},"k":{},"b":{"75":{"position":[[15524,2],[15531,2],[15564,2],[15570,2],[15603,2],[15620,2],[15780,3],[15809,3],[15841,3],[15870,3]]}}}],["tq)manual",{"_index":2326,"t":{},"d":{},"k":{},"b":{"75":{"position":[[12544,10],[12700,10],[12857,10],[13122,10],[13275,10],[13428,10]]}}}],["tq*2",{"_index":2360,"t":{},"d":{},"k":{},"b":{"75":{"position":[[15540,4]]}}}],["tq*3",{"_index":2361,"t":{},"d":{},"k":{},"b":{"75":{"position":[[15578,4]]}}}],["tr",{"_index":5884,"t":{},"d":{},"k":{},"b":{"124":{"position":[[3059,4]]}}}],["trace",{"_index":6294,"t":{},"d":{},"k":{},"b":{"128":{"position":[[21059,5],[21227,8],[21314,5]]}}}],["track",{"_index":4284,"t":{},"d":{},"k":{},"b":{"88":{"position":[[44932,5],[45492,5],[45608,5],[45722,5]]}}}],["tranceiv",{"_index":2429,"t":{},"d":{},"k":{},"b":{"75":{"position":[[21557,10]]}}}],["tranciev",{"_index":2480,"t":{},"d":{},"k":{},"b":{"75":{"position":[[28946,10]]}}}],["transact",{"_index":2114,"t":{},"d":{},"k":{},"b":{"74":{"position":[[357,11]]},"124":{"position":[[1149,12],[1342,11],[1512,11],[1567,11],[1625,11],[1740,13],[4260,11],[4297,11],[7003,11]]},"125":{"position":[[824,11],[879,11],[937,11],[1205,11],[3543,11],[4959,11],[5058,11],[5862,11],[9743,11]]},"138":{"position":[[1142,12],[1340,11],[1510,11],[1565,11],[1754,13],[6988,13],[7037,13],[7210,12],[7633,11],[17872,11]]},"139":{"position":[[24077,11],[27339,11]]},"140":{"position":[[21929,11],[24288,11]]},"147":{"position":[[360,11],[11104,11]]},"150":{"position":[[1830,11]]}}}],["transceiv",{"_index":2335,"t":{},"d":{},"k":{},"b":{"75":{"position":[[13834,11],[32130,11]]},"139":{"position":[[1672,11]]}}}],["transfer",{"_index":300,"t":{"123":{"position":[[45,8]]},"145":{"position":[[45,8]]}},"d":{},"k":{},"b":{"67":{"position":[[1781,8],[1922,9],[1992,9]]},"75":{"position":[[18529,11]]},"79":{"position":[[1030,8],[1104,9],[1207,8],[1229,8],[1244,8],[1423,8],[1536,8],[1649,8],[2035,8],[2046,8],[2133,8],[2144,8],[2450,8],[2984,8],[3061,8],[3100,8],[3144,8],[3738,9],[3847,8],[3907,8],[3933,8],[4020,8],[4055,8],[4110,8],[4243,8],[4270,8],[4290,8],[4345,8],[4388,8],[4427,8],[4503,8],[4588,8],[4641,8],[4721,8],[4797,8],[4841,8],[4907,8],[4987,8],[5026,8],[5092,8],[5145,8],[5225,8],[5255,8],[5321,8],[5497,8],[5536,8],[5892,8],[6304,9],[6393,8],[6451,9],[6529,10],[6589,9],[6611,8],[6659,9],[6778,9],[6846,8],[6887,8],[7001,8],[7222,8],[7392,8],[7449,11],[7480,8],[7583,8],[7697,11],[7944,8],[8207,8],[9482,8],[9823,8],[10776,8],[11141,9],[11305,8],[11635,8],[11791,8],[11885,8],[12182,9],[12358,9],[12607,8],[12693,9],[12809,8],[12861,9],[12916,8],[12925,9],[12985,8],[12994,9],[13055,8],[13064,9],[13125,8],[13134,9],[13196,8],[13205,9],[13268,8],[13277,9],[13340,8],[13349,9],[13413,8],[13422,9],[13607,8],[14024,8],[14635,8],[15211,8],[15329,8],[15414,8],[15661,8],[15759,9],[17369,8],[17387,8],[18230,8],[18274,10],[18733,8],[18819,9],[18846,9],[19303,9],[19780,9],[20241,9],[21325,8],[22108,8],[22142,9],[22206,8]]},"85":{"position":[[9460,8]]},"86":{"position":[[7149,8]]},"87":{"position":[[2945,10],[3022,9],[3213,8],[3647,12],[7977,9],[8588,9],[11048,9],[11067,8],[11215,11],[11242,8],[11534,9],[11602,8],[11844,9],[11863,8],[11997,9],[12207,9],[12408,9],[12452,9],[12520,8],[13082,9],[13126,9],[13591,9],[13635,9],[18283,8],[18340,8],[18452,9],[19106,12],[19188,9],[19299,9]]},"88":{"position":[[1654,8],[1909,9],[1941,9],[2206,10],[2221,10],[2899,10],[2914,10],[7878,10],[8043,10],[8259,10],[8450,10],[8632,10],[8797,10],[9013,10],[9204,10],[10179,9],[10324,9],[10459,9],[16452,9],[16525,10],[17176,9],[17277,8],[17334,8],[17465,8],[17648,9],[18422,8],[18576,8],[19976,8],[20960,10],[21128,10],[21185,10],[24759,9],[24972,8],[25067,9],[25259,8],[27656,9],[27832,9],[27962,9],[28142,9],[28885,8],[29460,8],[29490,9],[29897,8],[29927,9],[30103,9],[32129,9],[32336,8],[32431,9],[32617,8],[33698,8],[34407,8],[36225,8],[37283,8],[38518,8],[38956,8],[40059,8],[40362,8],[40560,8],[40656,8],[41316,10],[41423,10],[45051,12],[45239,9],[45509,9],[45624,9],[45749,9],[45853,9],[45956,9],[47710,8],[47761,8],[48597,8],[55076,9],[57937,9],[57973,9],[57992,8],[58924,9],[58960,9],[58979,8]]},"106":{"position":[[939,8],[1393,8],[20709,8],[21744,8],[22537,8],[23326,8],[23342,8],[24881,8]]},"107":{"position":[[2259,8]]},"113":{"position":[[4550,8],[11634,8]]},"115":{"position":[[1439,8],[1478,8]]},"116":{"position":[[1686,8],[1696,8]]},"123":{"position":[[22,8],[166,8]]},"124":{"position":[[1368,11],[2970,8],[4507,8],[4655,8],[4988,8],[5070,8],[5987,8],[6135,8],[6369,8],[15945,8],[16888,8],[17243,8],[17577,8],[18385,8],[18821,10],[19105,8]]},"125":{"position":[[2563,8],[3796,8],[3878,8],[3962,8],[5895,11],[7579,8],[15595,8],[16132,8],[16705,8],[17235,8]]},"127":{"position":[[6869,8],[6926,8]]},"135":{"position":[[1384,8],[1575,8],[4397,9],[5913,9],[6102,8],[8743,8],[9926,8],[10372,10],[10582,8],[13672,8],[13753,8],[13974,8],[18428,8],[18548,8],[19583,8],[19707,8],[20811,8],[20935,8]]},"138":{"position":[[1366,11],[3394,8],[3467,8],[3525,8],[3576,8],[5031,8],[5140,8],[6087,8],[6767,8],[13857,8],[13888,8],[15126,9],[15765,8],[16306,9],[16578,8],[16693,8],[16724,8]]},"139":{"position":[[5160,9],[5390,8],[8614,11],[10005,8],[13673,9],[13761,8],[17384,8],[17478,8],[19553,9],[19600,8],[20798,9],[20845,8],[23027,10],[23105,8],[23710,9],[23883,8],[27155,8]]},"140":{"position":[[7408,8],[13640,8],[13732,8],[18039,9],[18086,8],[18970,9],[19017,8],[20881,10],[20959,8],[21562,9],[21735,8],[24104,8]]},"141":{"position":[[1380,8],[1571,8],[2076,9],[2211,9],[4107,11],[4198,12],[4967,11],[5058,12],[5956,11],[6047,12],[11260,8],[11322,8]]},"142":{"position":[[1398,9],[1526,8],[3304,8],[6145,9],[6637,9],[6915,9],[6982,8],[9737,8],[10935,8],[11390,10],[11600,8],[15072,8],[15153,8],[15231,8],[17262,10],[17333,10],[20420,8],[20540,8],[21476,8],[21600,8],[22605,8],[22729,8]]},"143":{"position":[[1244,9],[1351,8]]},"145":{"position":[[41,8],[75,8],[119,8],[964,10],[1024,9],[1185,9],[1463,10],[1479,8],[1666,8],[2039,8],[2245,9],[2395,8],[2506,9],[2605,9],[2725,8],[2798,8],[2879,8],[3268,8],[3315,8],[3381,9],[3595,8],[5117,9],[5138,8],[5342,8],[5686,8],[5853,9],[6407,9],[6417,9],[6691,9],[6847,9],[6857,9],[7037,8],[7095,8],[7128,9],[7259,9],[7453,8],[7712,9],[7928,8],[7954,8],[8005,9],[8061,9],[8321,9],[8544,9],[8674,9],[8907,8],[9081,9],[9305,8],[9354,9],[9378,8],[9520,9],[10363,8],[10448,8],[10629,8],[10677,8],[10756,8],[10782,8],[10866,8],[10990,8],[11017,8],[11062,10],[11150,8],[11216,8],[11292,8],[11359,8],[11411,8],[11456,10],[11487,8],[11551,11],[11605,8],[11653,9],[11705,9],[11814,8],[11929,8],[11974,10],[12429,8],[12481,9],[12497,8],[12589,8],[12598,9],[12651,8],[12660,9],[12714,8],[12723,9],[12777,8],[12786,9],[12839,8],[12848,9],[12902,8],[12911,9],[12965,8],[12974,9],[13029,8],[13038,9],[13094,8],[13103,9],[13159,8],[13168,9],[13225,8],[13234,9],[13290,8],[13299,9],[13352,8],[13361,9],[13415,8],[13424,9],[13478,8],[13487,9],[13542,8],[13551,9],[13607,8],[13616,9],[13672,8],[13681,9],[13738,8],[13747,9],[13962,9],[14050,9],[14138,9],[14253,9],[14368,9],[14483,9],[14561,9],[14676,9],[14754,9],[15021,10],[15149,9],[15547,8],[15700,8],[15724,8],[15806,8],[15871,9],[16052,9],[16070,8],[16106,9],[16344,8],[16414,9],[16637,8],[16737,9],[16791,8],[16816,8]]},"147":{"position":[[3030,8],[3338,8],[5201,8],[5314,8],[5404,8],[6122,8],[7446,9]]},"152":{"position":[[6427,8],[7777,8],[7814,8]]}}}],["transfer(",{"_index":7832,"t":{},"d":{},"k":{},"b":{"145":{"position":[[16171,11]]}}}],["transfer_addr_mode_decr",{"_index":7823,"t":{},"d":{},"k":{},"b":{"145":{"position":[[14265,30]]}}}],["transfer_addr_mode_fix",{"_index":7824,"t":{},"d":{},"k":{},"b":{"145":{"position":[[14495,24],[14688,24]]}}}],["transfer_addr_mode_incr",{"_index":7822,"t":{},"d":{},"k":{},"b":{"145":{"position":[[14150,30],[14380,30],[14573,30]]}}}],["transfer_addr_mode_offset",{"_index":7821,"t":{},"d":{},"k":{},"b":{"145":{"position":[[14062,25]]}}}],["transfer_addr_mode_t",{"_index":7771,"t":{},"d":{},"k":{},"b":{"145":{"position":[[481,20],[2414,20],[2519,20],[10958,21],[11776,21],[13784,20],[13839,20]]}}}],["transfer_api_t",{"_index":7769,"t":{},"d":{},"k":{},"b":{"145":{"position":[[321,14],[3512,14],[3563,14],[10162,14]]}}}],["transfer_api_t::clos",{"_index":3092,"t":{},"d":{},"k":{},"b":{"79":{"position":[[21373,22]]},"145":{"position":[[8797,22]]}}}],["transfer_api_t::dis",{"_index":7279,"t":{},"d":{},"k":{},"b":{"139":{"position":[[24430,23],[27692,23]]},"145":{"position":[[6765,24]]}}}],["transfer_api_t::en",{"_index":7798,"t":{},"d":{},"k":{},"b":{"145":{"position":[[6327,23]]}}}],["transfer_api_t::infoget",{"_index":7803,"t":{},"d":{},"k":{},"b":{"145":{"position":[[8395,24]]}}}],["transfer_api_t::open",{"_index":3021,"t":{},"d":{},"k":{},"b":{"79":{"position":[[9692,21]]},"106":{"position":[[21153,20]]},"139":{"position":[[18905,20]]},"142":{"position":[[19522,20]]},"145":{"position":[[3126,21],[4563,21],[5818,20],[6656,20],[7224,20],[7677,20],[8286,20],[8639,20],[8941,21],[9046,20],[9485,20]]}}}],["transfer_api_t::reconfigur",{"_index":7794,"t":{},"d":{},"k":{},"b":{"145":{"position":[[4998,28]]}}}],["transfer_api_t::reload",{"_index":7805,"t":{},"d":{},"k":{},"b":{"145":{"position":[[9154,23]]}}}],["transfer_api_t::reset",{"_index":5370,"t":{},"d":{},"k":{},"b":{"106":{"position":[[24006,21]]},"139":{"position":[[20029,21],[21256,21]]},"145":{"position":[[5429,22]]}}}],["transfer_api_t::softwarestart",{"_index":7799,"t":{},"d":{},"k":{},"b":{"145":{"position":[[6476,29],[6923,29],[7339,30]]}}}],["transfer_api_t::softwarestop",{"_index":7802,"t":{},"d":{},"k":{},"b":{"145":{"position":[[7844,29]]}}}],["transfer_cfg_t",{"_index":2937,"t":{},"d":{},"k":{},"b":{"79":{"position":[[73,14],[9210,15],[16549,14]]},"145":{"position":[[296,14],[3015,14],[3066,14],[3729,14],[4617,14],[10070,14]]}}}],["transfer_chain_mode_each",{"_index":7829,"t":{},"d":{},"k":{},"b":{"145":{"position":[[15660,24]]}}}],["transfer_chain_mode_end",{"_index":7830,"t":{},"d":{},"k":{},"b":{"145":{"position":[[15762,23]]}}}],["transfer_chain_mode_t",{"_index":7773,"t":{},"d":{},"k":{},"b":{"145":{"position":[[543,21],[15446,21],[15502,21]]}}}],["transfer_ctrl_t",{"_index":2936,"t":{},"d":{},"k":{},"b":{"79":{"position":[[37,16],[141,16],[229,16],[381,16],[479,16],[543,16],[608,16],[673,16],[773,16],[837,16],[16452,15],[17150,15],[17842,15],[18468,15],[19215,15],[19699,15],[20159,15],[20645,15],[21243,15],[21707,15]]},"145":{"position":[[392,15],[3696,17],[3790,17],[3868,17],[3985,17],[4040,17],[4101,17],[4189,17],[4244,17],[4340,17],[4394,17],[4585,16],[5027,16],[5452,16],[6351,16],[6790,16],[7370,16],[7874,16],[8420,16],[8820,16],[9178,16],[9989,15],[10272,15],[10330,15]]}}}],["transfer_data_byt",{"_index":6121,"t":{},"d":{},"k":{},"b":{"127":{"position":[[6840,19]]}}}],["transfer_info_t",{"_index":2939,"t":{},"d":{},"k":{},"b":{"79":{"position":[[177,15],[17247,15]]},"145":{"position":[[270,15],[1053,15],[1105,15],[1507,16],[1822,15],[3230,15],[3823,15],[5059,15],[15743,16],[15831,15]]}}}],["transfer_info_t::length",{"_index":7807,"t":{},"d":{},"k":{},"b":{"145":{"position":[[11629,23],[14997,23]]}}}],["transfer_info_t::num_block",{"_index":7797,"t":{},"d":{},"k":{},"b":{"145":{"position":[[6186,28],[11314,27],[11376,27],[11836,27],[11890,27]]}}}],["transfer_instance_t",{"_index":3719,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1811,19],[1920,19],[2496,19]]},"107":{"position":[[1368,19],[2158,19]]},"141":{"position":[[2007,19],[2143,19]]},"145":{"position":[[346,19],[9790,19],[9846,19]]},"147":{"position":[[2561,19],[2606,19],[2951,19],[3259,19]]}}}],["transfer_interv",{"_index":3035,"t":{},"d":{},"k":{},"b":{"79":{"position":[[10753,17]]}}}],["transfer_irq_each",{"_index":7836,"t":{},"d":{},"k":{},"b":{"145":{"position":[[16368,17]]}}}],["transfer_irq_end",{"_index":7835,"t":{},"d":{},"k":{},"b":{"145":{"position":[[16266,16]]}}}],["transfer_irq_t",{"_index":7774,"t":{},"d":{},"k":{},"b":{"145":{"position":[[574,14],[15890,14],[15939,14]]}}}],["transfer_is_pend",{"_index":6853,"t":{},"d":{},"k":{},"b":{"135":{"position":[[13953,19]]}}}],["transfer_length",{"_index":7196,"t":{},"d":{},"k":{},"b":{"139":{"position":[[9912,16],[10202,17],[10301,17]]},"140":{"position":[[7315,16],[7592,17],[7680,17]]}}}],["transfer_length_max",{"_index":7777,"t":{},"d":{},"k":{},"b":{"145":{"position":[[925,19]]}}}],["transfer_length_remain",{"_index":7778,"t":{},"d":{},"k":{},"b":{"145":{"position":[[987,25]]}}}],["transfer_length_t",{"_index":7810,"t":{},"d":{},"k":{},"b":{"145":{"position":[[12533,17]]}}}],["transfer_mode_block",{"_index":3046,"t":{},"d":{},"k":{},"b":{"79":{"position":[[12381,19]]},"145":{"position":[[2059,19],[2273,20],[11565,19],[12235,19],[12305,19],[15035,19],[15257,19],[15386,19]]}}}],["transfer_mode_norm",{"_index":3045,"t":{},"d":{},"k":{},"b":{"79":{"position":[[12195,21]]},"145":{"position":[[12199,20],[12269,20]]}}}],["transfer_mode_repeat",{"_index":7783,"t":{},"d":{},"k":{},"b":{"145":{"position":[[2101,20],[2294,21],[11075,20],[14918,21],[15233,20],[15362,20]]}}}],["transfer_mode_repeat_block",{"_index":7784,"t":{},"d":{},"k":{},"b":{"145":{"position":[[2137,26],[2320,26],[11987,26],[15059,27],[15280,27],[15409,27]]}}}],["transfer_mode_t",{"_index":7770,"t":{},"d":{},"k":{},"b":{"145":{"position":[[431,15],[2618,15],[2658,16],[10546,15],[10596,15]]}}}],["transfer_properties_t",{"_index":2950,"t":{},"d":{},"k":{},"b":{"79":{"position":[[709,21],[20742,21]]},"145":{"position":[[238,21],[656,21],[714,21],[4277,21],[8452,21]]}}}],["transfer_repeat_area_sourc",{"_index":7826,"t":{},"d":{},"k":{},"b":{"145":{"position":[[15310,27]]}}}],["transfer_repeat_area_t",{"_index":7772,"t":{},"d":{},"k":{},"b":{"145":{"position":[[511,22],[14773,22],[14830,22]]}}}],["transfer_s",{"_index":310,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1960,13]]},"87":{"position":[[3616,13]]},"88":{"position":[[34710,14]]},"135":{"position":[[8817,14],[10048,14],[10704,14]]},"142":{"position":[[9811,14],[11057,14],[11722,14]]}}}],["transfer_size_128_byt",{"_index":7819,"t":{},"d":{},"k":{},"b":{"145":{"position":[[13197,22],[13710,22]]}}}],["transfer_size_16_byt",{"_index":7816,"t":{},"d":{},"k":{},"b":{"145":{"position":[[13002,21],[13515,21]]}}}],["transfer_size_1_byt",{"_index":7814,"t":{},"d":{},"k":{},"b":{"145":{"position":[[12751,20],[13264,20]]}}}],["transfer_size_2_byt",{"_index":7812,"t":{},"d":{},"k":{},"b":{"145":{"position":[[12625,20],[12813,20],[13326,20]]}}}],["transfer_size_32_byt",{"_index":7817,"t":{},"d":{},"k":{},"b":{"145":{"position":[[13067,21],[13580,21]]}}}],["transfer_size_4_byt",{"_index":7813,"t":{},"d":{},"k":{},"b":{"145":{"position":[[12688,20],[12876,20],[13389,20]]}}}],["transfer_size_64_byt",{"_index":7818,"t":{},"d":{},"k":{},"b":{"145":{"position":[[13132,21],[13645,21]]}}}],["transfer_size_8_byt",{"_index":7815,"t":{},"d":{},"k":{},"b":{"145":{"position":[[12939,20],[13452,20]]}}}],["transfer_size_t",{"_index":309,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1943,15]]},"145":{"position":[[456,15],[2744,15],[2819,15],[10794,15],[11666,16],[12346,15],[12396,15],[12515,15],[14226,15],[14341,15],[14456,15],[14649,15]]}}}],["transfer_start_mode_repeat",{"_index":3090,"t":{},"d":{},"k":{},"b":{"79":{"position":[[18772,26],[19339,27]]},"145":{"position":[[8084,27],[16749,26]]}}}],["transfer_start_mode_singl",{"_index":3089,"t":{},"d":{},"k":{},"b":{"79":{"position":[[18688,26]]}}}],["transfer_start_mode_t",{"_index":2945,"t":{},"d":{},"k":{},"b":{"79":{"position":[[417,21],[18565,21]]},"145":{"position":[[598,21],[4134,21],[7402,21],[7752,22],[16499,21],[16555,21]]}}}],["transfertransf",{"_index":8391,"t":{},"d":{},"k":{},"b":{"152":{"position":[[6287,17]]}}}],["transit",{"_index":2189,"t":{},"d":{},"k":{},"b":{"74":{"position":[[5740,10]]},"88":{"position":[[10075,10],[10154,10],[10628,10],[41293,10]]},"142":{"position":[[15893,7]]}}}],["transition_phase_en",{"_index":4240,"t":{},"d":{},"k":{},"b":{"88":{"position":[[41232,24]]}}}],["transmiss",{"_index":2264,"t":{},"d":{},"k":{},"b":{"75":{"position":[[2008,12],[10982,12],[11069,13],[14498,12],[16266,12],[16527,12],[16617,12]]},"88":{"position":[[43932,12]]},"113":{"position":[[4412,12],[12480,12],[12916,12]]},"124":{"position":[[1452,12],[2363,12]]},"125":{"position":[[764,12],[5350,12],[5434,12]]},"135":{"position":[[2001,12]]},"138":{"position":[[1238,12],[1450,12],[2351,12],[2473,12],[6892,12]]},"139":{"position":[[1355,12],[20691,12],[21039,12],[21900,13],[23720,12]]},"140":{"position":[[1376,12],[18863,12],[19125,12],[19758,13],[21572,12]]},"141":{"position":[[11044,13],[11102,13]]},"142":{"position":[[2227,12]]},"147":{"position":[[6593,12]]}}}],["transmission/recept",{"_index":5713,"t":{},"d":{},"k":{},"b":{"113":{"position":[[9415,22]]},"125":{"position":[[1182,22],[1296,22],[1328,22],[1374,22]]}}}],["transmit",{"_index":2136,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1150,8],[3069,8],[8355,8],[8449,8],[8550,8]]},"75":{"position":[[1377,8],[13867,11],[14394,8],[14702,8],[14758,8],[16045,11],[16129,8],[20230,12],[27390,8],[28464,8],[28723,8],[29893,8],[30173,8],[32803,13],[34494,8]]},"77":{"position":[[8244,9]]},"85":{"position":[[1698,8],[1742,8],[9594,8]]},"86":{"position":[[1494,8],[1538,8],[7281,8]]},"88":{"position":[[13015,12],[27935,11],[40451,8],[47353,8]]},"113":{"position":[[9497,8],[12030,8],[12174,8],[12301,8]]},"124":{"position":[[1240,8],[5674,8],[5706,8],[8331,8]]},"125":{"position":[[1993,9],[2016,8],[4480,8],[4510,8],[11100,8],[14769,9],[14791,8]]},"131":{"position":[[5272,8]]},"135":{"position":[[5079,8],[5148,8],[5196,8],[6250,8],[6333,8],[6451,8],[13573,9],[19172,9],[20431,9]]},"138":{"position":[[5652,8],[5684,8],[8207,8]]},"139":{"position":[[6770,8],[6855,8],[6899,8],[6977,8],[11532,8],[20552,9],[22573,11],[23775,12]]},"140":{"position":[[5897,8],[5991,8],[8901,8],[18724,9],[20429,11],[21627,12]]},"141":{"position":[[1323,8],[1521,8],[1979,8],[4639,8],[4862,11],[5307,8],[5591,11]]},"142":{"position":[[1465,8],[1707,13],[2264,12],[2484,8],[3163,8],[4416,8],[4449,8],[4498,8],[7130,8],[7212,8],[7330,8],[7597,8],[7619,8],[7660,8],[13633,8],[14973,9],[15722,8],[21065,9],[22225,9]]},"147":{"position":[[2265,8],[2317,8],[2369,8],[2425,8],[6029,11],[10021,8],[10325,13]]}}}],["transmit.set",{"_index":3722,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1876,12],[2594,12]]}}}],["transmit/rec",{"_index":2112,"t":{},"d":{},"k":{},"b":{"74":{"position":[[242,16]]},"77":{"position":[[2851,16]]},"85":{"position":[[192,16]]},"86":{"position":[[189,16]]},"147":{"position":[[229,16]]}}}],["transmitt",{"_index":6794,"t":{},"d":{},"k":{},"b":{"135":{"position":[[4537,11],[4619,11],[13018,11],[15595,11]]},"139":{"position":[[23073,12]]},"140":{"position":[[20927,12]]}}}],["treat",{"_index":3292,"t":{},"d":{},"k":{},"b":{"83":{"position":[[1917,7]]},"105":{"position":[[1743,7]]}}}],["trg4an/trg4bn",{"_index":4906,"t":{},"d":{},"k":{},"b":{"105":{"position":[[9906,13],[10003,13],[19210,13]]}}}],["trg7an/trg7bn",{"_index":4910,"t":{},"d":{},"k":{},"b":{"105":{"position":[[10548,13],[10645,13],[19329,13]]}}}],["tri",{"_index":6487,"t":{},"d":{},"k":{},"b":{"131":{"position":[[5952,3]]}}}],["triangl",{"_index":3316,"t":{},"d":{},"k":{},"b":{"83":{"position":[[4670,8],[5441,8],[5470,8],[5500,8],[5822,8],[5990,8],[11301,8],[12026,9],[14446,10],[14465,10],[18024,8],[18420,8],[20391,8],[32210,8],[32299,8]]},"105":{"position":[[4986,8],[5154,8],[8231,8]]},"144":{"position":[[1809,8],[10920,8],[11119,8],[12370,8],[12465,8],[12566,8]]}}}],["trig",{"_index":3350,"t":{},"d":{},"k":{},"b":{"83":{"position":[[13662,4],[13897,4]]}}}],["trigger",{"_index":240,"t":{},"d":{},"k":{},"b":{"67":{"position":[[241,8],[312,10],[2973,7],[3002,7],[5134,7],[5709,8],[6229,9],[6262,8],[6621,9],[6654,8],[7033,9],[7067,8],[12401,7],[12420,7],[13248,7],[13315,8],[13380,7],[13448,8]]},"68":{"position":[[1487,8],[1510,8],[1533,8],[1555,7],[1607,7],[1720,7],[1748,7],[1812,8],[2526,7],[3108,7],[3131,7],[3154,7],[3177,7],[3197,7],[3795,7],[3923,7],[4008,7],[4032,7],[4082,7],[4109,7],[4142,7],[4271,8],[4291,7],[4306,7],[4370,7],[5140,8],[5163,8],[5403,8],[5459,7],[5926,7],[5971,7],[6057,7],[6080,7],[6106,7],[6140,7],[6167,7],[6242,7],[6267,7],[6360,7],[6393,7],[6423,7],[6450,8],[6471,7],[6498,7],[6569,7],[6702,7],[6730,7],[6809,7],[7012,7],[7141,7],[10173,7],[10270,8],[17059,7],[17124,7],[17196,7],[17246,7],[17495,7],[18756,7],[18825,7],[18878,7],[19011,7],[19084,7],[21534,7],[21783,7],[22483,7],[25408,8],[25429,8],[25654,9],[26380,8],[26401,8]]},"69":{"position":[[1438,8],[1461,8],[1484,8],[1493,8],[1584,8],[1674,7],[1978,7],[3045,7],[3209,7],[3241,8],[3401,7],[3506,7],[3550,7],[3655,7],[3699,7],[3827,7],[3932,7],[3976,7],[7653,7],[8165,8],[8211,8],[10023,7],[10091,7],[10633,8],[10697,7],[11513,7],[12122,10],[12145,10],[12287,10],[12442,10],[12568,7],[12615,10],[12752,10],[14037,7],[14134,8],[14634,7],[14703,7],[15352,7],[15473,10],[15604,9],[19243,7],[19340,7],[19430,7],[19515,7],[19694,7],[23232,8],[23958,8],[24027,8],[27951,8],[27992,7],[28144,7],[28218,10],[28277,10],[28344,10],[29578,7],[31854,7],[31894,8],[32001,11],[32043,7],[32140,7],[32196,11],[32247,9],[32394,8],[32415,8],[32642,9],[33355,9],[33381,7],[33429,7],[33515,9],[33643,9],[33737,8],[33758,8],[34324,9]]},"75":{"position":[[2994,7],[14472,7]]},"76":{"position":[[3612,7],[3682,7],[3719,7],[3789,7],[12694,7],[12780,7],[13659,7],[13750,7],[13815,7],[13878,7],[19486,8],[20051,8]]},"79":{"position":[[1353,9],[6380,8],[6687,9],[11129,7],[12536,7],[17477,7],[18808,10],[20278,9]]},"80":{"position":[[1000,8],[1029,8],[1565,9],[2137,7]]},"82":{"position":[[149,7],[1335,7],[1344,7],[1857,7],[3461,7],[3863,7],[6302,7],[6389,8],[6437,8],[6487,8],[6536,8],[6752,7]]},"83":{"position":[[2903,8],[9725,7],[10010,7],[10321,7],[10427,7],[12526,7],[12654,7],[13036,7],[13058,7],[13067,7],[13131,7],[13197,7],[13261,7],[13464,7],[13699,7],[19638,10],[19687,7],[29244,7],[29335,7],[30495,7],[30571,7],[30647,7],[30728,7],[30808,7],[30887,7],[31086,7],[38670,7],[39943,7],[40920,7],[49023,8],[49468,8]]},"84":{"position":[[12884,8],[13259,8]]},"89":{"position":[[972,7],[1327,7],[2199,7],[2292,8],[2651,8],[3637,8]]},"90":{"position":[[971,7],[1316,7],[2073,7],[2143,8],[2369,8],[3275,8],[5504,8]]},"91":{"position":[[990,7],[1337,7],[2292,7],[2385,8],[2728,8],[3863,8],[5643,8],[5944,7],[6012,8],[6062,8],[6113,8],[6162,8]]},"92":{"position":[[2167,7],[3272,7],[3327,7],[3748,7],[3803,7],[5063,7],[5118,7],[5461,7],[6496,7],[6551,7],[6894,7],[7418,7],[7473,7],[7878,7],[8262,7],[8317,7],[8722,7],[9106,7],[9161,7],[9566,7],[9950,7],[10005,7],[10410,7],[11207,7],[11541,9],[12135,9],[12312,7],[21356,7],[21425,7],[23753,7],[23822,7],[31866,7],[36672,7]]},"105":{"position":[[8725,7],[8962,7],[9199,7],[27234,7]]},"107":{"position":[[9091,7]]},"108":{"position":[[1868,7],[2198,8],[2435,8],[3402,7],[3470,7],[3679,7],[5908,7],[8594,7]]},"109":{"position":[[1171,7],[1199,8],[6721,8],[6878,8]]},"124":{"position":[[8719,10],[9324,10]]},"125":{"position":[[11574,8],[12504,8]]},"128":{"position":[[15382,9],[15789,10],[16335,9]]},"135":{"position":[[4431,7],[4490,7],[4554,7],[4597,7],[12958,7],[13035,7],[13916,10],[15612,7],[15657,7],[15718,7],[15779,7],[15840,7],[15993,7],[16038,7],[16099,7],[16160,7],[16221,7],[16283,7],[16346,7],[16409,7],[16471,7]]},"136":{"position":[[10658,10]]},"137":{"position":[[9983,7]]},"138":{"position":[[8606,10],[9218,10]]},"139":{"position":[[6106,7],[9513,9],[14661,7],[16034,7]]},"140":{"position":[[4907,7],[5180,7],[11554,7],[11618,7],[13886,7],[15929,7],[15984,7],[16033,7],[16082,7],[16131,7],[16181,7],[16232,7],[16283,7],[16334,7],[16398,8]]},"144":{"position":[[278,10],[10731,7]]},"145":{"position":[[16208,8],[16721,8]]},"146":{"position":[[1571,7],[1606,8],[2428,7],[2456,7],[2485,7],[2558,7],[5041,8],[6528,7],[6625,8],[7921,8],[9695,7],[9792,8],[11033,8],[13564,7],[17930,7],[17970,8],[18077,11],[18119,7],[18218,7],[18274,11],[18325,9],[18396,8],[18417,8],[18644,9],[19300,9],[19326,7],[19374,7],[19460,9],[19609,8],[19822,9],[20303,9]]},"148":{"position":[[3480,9]]}}}],["trigger_edg",{"_index":794,"t":{},"d":{},"k":{},"b":{"68":{"position":[[11050,13],[13917,13],[17164,12]]}}}],["trigger_group_b",{"_index":1124,"t":{},"d":{},"k":{},"b":{"69":{"position":[[19218,15]]}}}],["trigger_mod",{"_index":790,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10917,13],[13785,13],[17045,12]]}}}],["trigger_sourc",{"_index":792,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10983,15],[13851,15],[17099,14]]}}}],["triggermcu",{"_index":5442,"t":{},"d":{},"k":{},"b":{"108":{"position":[[1830,10]]}}}],["trignometr",{"_index":1714,"t":{},"d":{},"k":{},"b":{"71":{"position":[[1528,12]]}}}],["trough",{"_index":3320,"t":{},"d":{},"k":{},"b":{"83":{"position":[[5982,7],[12009,6],[14458,6],[18244,6],[29019,6],[29071,6],[41602,6],[41696,6],[41788,6],[41859,6],[41986,6]]},"105":{"position":[[5146,7]]},"144":{"position":[[11091,6],[12694,6]]}}}],["trough/crest",{"_index":3321,"t":{},"d":{},"k":{},"b":{"83":{"position":[[6159,13],[18346,12]]},"105":{"position":[[5323,13]]}}}],["trough/underflow",{"_index":3353,"t":{},"d":{},"k":{},"b":{"83":{"position":[[14616,16]]}}}],["trough_ipl",{"_index":3424,"t":{},"d":{},"k":{},"b":{"83":{"position":[[29007,10]]}}}],["trough_irq",{"_index":3425,"t":{},"d":{},"k":{},"b":{"83":{"position":[[29059,10]]}}}],["true",{"_index":980,"t":{},"d":{},"k":{},"b":{"69":{"position":[[3761,4],[19576,4]]},"83":{"position":[[8686,4],[8917,4],[28347,4]]},"85":{"position":[[1113,4]]},"87":{"position":[[3174,5],[3256,4],[11563,5],[12481,5]]},"88":{"position":[[37421,5],[37453,5]]},"127":{"position":[[5932,6]]},"129":{"position":[[9005,6]]},"131":{"position":[[12036,6],[13791,5],[14160,5]]},"135":{"position":[[9145,5]]},"142":{"position":[[10147,5]]},"143":{"position":[[5629,5]]},"148":{"position":[[5594,6],[7040,5],[7083,5],[8547,6]]},"150":{"position":[[5740,4],[10309,5],[26860,5]]}}}],["true;#endif",{"_index":6512,"t":{},"d":{},"k":{},"b":{"131":{"position":[[13857,11]]}}}],["true;}void",{"_index":1073,"t":{},"d":{},"k":{},"b":{"69":{"position":[[15075,10]]},"146":{"position":[[5478,10],[11630,10]]}}}],["true;}volatil",{"_index":7901,"t":{},"d":{},"k":{},"b":{"146":{"position":[[11470,14]]}}}],["truncat",{"_index":2290,"t":{},"d":{},"k":{},"b":{"75":{"position":[[3539,9],[23409,9],[23663,10]]}}}],["trustzon",{"_index":2036,"t":{},"d":{},"k":{},"b":{"71":{"position":[[40568,10]]},"128":{"position":[[1038,9],[1088,9]]}}}],["tsu",{"_index":3121,"t":{},"d":{},"k":{},"b":{"80":{"position":[[2015,3]]},"110":{"position":[[371,3]]},"146":{"position":[[1262,3],[1366,3],[3909,3]]},"152":{"position":[[947,3]]}}}],["tsu0_s12tsuadcmpi_irqn",{"_index":7882,"t":{},"d":{},"k":{},"b":{"146":{"position":[[7607,23]]}}}],["tsu0_s12tsuadi_irqn",{"_index":7866,"t":{},"d":{},"k":{},"b":{"146":{"position":[[5265,20],[11257,20]]}}}],["tsu_b",{"_index":7844,"t":{},"d":{},"k":{},"b":{"146":{"position":[[2293,5],[3736,5],[3917,5],[4463,5],[15414,5],[15798,5],[16002,5],[16328,5],[16859,5],[17248,5],[18148,5],[20146,5]]}}}],["tsu_b_average_eight",{"_index":7880,"t":{},"d":{},"k":{},"b":{"146":{"position":[[7436,20],[10555,20],[16185,19]]}}}],["tsu_b_average_four",{"_index":7924,"t":{},"d":{},"k":{},"b":{"146":{"position":[[16142,18]]}}}],["tsu_b_average_off",{"_index":7855,"t":{},"d":{},"k":{},"b":{"146":{"position":[[4565,18]]}}}],["tsu_b_average_t",{"_index":7920,"t":{},"d":{},"k":{},"b":{"146":{"position":[[15093,15],[15326,15],[15919,15],[15969,15]]}}}],["tsu_b_average_two",{"_index":7923,"t":{},"d":{},"k":{},"b":{"146":{"position":[[16101,17]]}}}],["tsu_b_basic_exampl",{"_index":7868,"t":{},"d":{},"k":{},"b":{"146":{"position":[[5489,19]]}}}],["tsu_b_callback",{"_index":7865,"t":{},"d":{},"k":{},"b":{"146":{"position":[[5124,15],[5372,14],[11116,15],[11364,14]]}}}],["tsu_b_compare_callback",{"_index":7884,"t":{},"d":{},"k":{},"b":{"146":{"position":[[8004,23],[8245,22]]}}}],["tsu_b_compare_cfg_dis",{"_index":7857,"t":{},"d":{},"k":{},"b":{"146":{"position":[[4613,26],[10605,26]]}}}],["tsu_b_compare_cfg_insid",{"_index":7881,"t":{},"d":{},"k":{},"b":{"146":{"position":[[7486,25],[16478,24]]}}}],["tsu_b_compare_cfg_outsid",{"_index":7927,"t":{},"d":{},"k":{},"b":{"146":{"position":[[16424,25]]}}}],["tsu_b_compare_cfg_t",{"_index":7921,"t":{},"d":{},"k":{},"b":{"146":{"position":[[15118,19],[15376,19],[16237,19],[16291,19]]}}}],["tsu_b_compare_exampl",{"_index":7888,"t":{},"d":{},"k":{},"b":{"146":{"position":[[8686,21]]}}}],["tsu_b_example_calibration_data_lower_limit",{"_index":7874,"t":{},"d":{},"k":{},"b":{"146":{"position":[[6233,43],[6369,43],[9400,43],[9536,43],[10248,42],[12621,43],[12757,43]]}}}],["tsu_b_example_calibration_data_upper_limit",{"_index":7875,"t":{},"d":{},"k":{},"b":{"146":{"position":[[6301,43],[6437,44],[9468,43],[9604,44],[10308,42],[12689,43],[12825,44]]}}}],["tsu_b_example_conversion_count",{"_index":7889,"t":{},"d":{},"k":{},"b":{"146":{"position":[[10070,30],[12926,31],[14713,31]]}}}],["tsu_b_example_temperature_lower_limit",{"_index":7891,"t":{},"d":{},"k":{},"b":{"146":{"position":[[10128,37],[14409,38]]}}}],["tsu_b_example_temperature_negative_error",{"_index":7899,"t":{},"d":{},"k":{},"b":{"146":{"position":[[10427,40],[14895,41]]}}}],["tsu_b_example_temperature_positive_error",{"_index":7897,"t":{},"d":{},"k":{},"b":{"146":{"position":[[10369,40],[14824,42]]}}}],["tsu_b_example_temperature_upper_limit",{"_index":7893,"t":{},"d":{},"k":{},"b":{"146":{"position":[[10188,37],[14484,39]]}}}],["tsu_b_extended_cfg_t",{"_index":7852,"t":{},"d":{},"k":{},"b":{"146":{"position":[[4494,20],[7365,20],[10484,20],[15017,20],[15174,20],[15231,20]]}}}],["tsu_b_get_temperature_exampl",{"_index":7904,"t":{},"d":{},"k":{},"b":{"146":{"position":[[11641,29]]}}}],["tsu_b_instance_ctrl_t",{"_index":7919,"t":{},"d":{},"k":{},"b":{"146":{"position":[[15048,21],[15701,21],[15759,21]]}}}],["tsu_info",{"_index":7870,"t":{},"d":{},"k":{},"b":{"146":{"position":[[5869,9],[5918,11],[9036,9],[9085,11],[12257,9],[12306,11]]}}}],["tsu_info.calibration_data1",{"_index":7872,"t":{},"d":{},"k":{},"b":{"146":{"position":[[5984,27],[9151,27],[12372,27]]}}}],["tsu_info.calibration_data2",{"_index":7873,"t":{},"d":{},"k":{},"b":{"146":{"position":[[6035,27],[9202,27],[12423,27]]}}}],["tthe",{"_index":5993,"t":{},"d":{},"k":{},"b":{"125":{"position":[[4337,4]]}}}],["tune",{"_index":5729,"t":{},"d":{},"k":{},"b":{"113":{"position":[[10176,7]]}}}],["turn",{"_index":1149,"t":{},"d":{},"k":{},"b":{"69":{"position":[[22345,6]]},"71":{"position":[[10846,6]]},"113":{"position":[[4936,6],[5026,6]]}}}],["turnaround",{"_index":4066,"t":{},"d":{},"k":{},"b":{"88":{"position":[[12672,10],[12832,10],[12915,10],[12991,10],[13086,10],[13152,10],[20680,10],[43876,11],[43977,10],[44037,10],[50777,10],[50896,10],[50981,10],[51067,10],[51154,10],[51241,10],[51332,10]]}}}],["tutori",{"_index":8398,"t":{},"d":{},"k":{},"b":{"153":{"position":[[23,9]]}}}],["tvoc",{"_index":6609,"t":{},"d":{},"k":{},"b":{"133":{"position":[[6981,4],[7593,5],[7719,5]]},"134":{"position":[[1358,4],[1364,4],[1842,4],[1848,4]]}}}],["twice",{"_index":1041,"t":{},"d":{},"k":{},"b":{"69":{"position":[[12210,5]]},"83":{"position":[[17272,5]]},"105":{"position":[[11425,5]]}}}],["two",{"_index":507,"t":{},"d":{},"k":{},"b":{"67":{"position":[[12397,3],[12437,3]]},"68":{"position":[[6127,3],[6446,3],[7206,3]]},"69":{"position":[[3303,3],[11438,3],[12724,3],[14762,3],[15586,3],[22398,3],[22556,3]]},"75":{"position":[[16013,3],[21103,3],[22490,3],[25353,3],[30246,3]]},"79":{"position":[[5932,3]]},"80":{"position":[[1795,3],[1834,3]]},"83":{"position":[[3350,3],[42308,3]]},"84":{"position":[[1618,3],[1734,3]]},"88":{"position":[[15584,3],[17016,3],[48172,3]]},"105":{"position":[[3368,3],[26847,3]]},"124":{"position":[[5427,3]]},"125":{"position":[[4234,3]]},"128":{"position":[[1425,3],[8973,3],[16196,3],[22145,3]]},"130":{"position":[[1237,3]]},"132":{"position":[[1501,3]]},"133":{"position":[[8051,3]]},"138":{"position":[[5522,3],[6869,3]]},"139":{"position":[[6054,3],[10846,3]]},"140":{"position":[[4855,3],[8216,3]]},"146":{"position":[[16127,3]]},"150":{"position":[[9647,3]]}}}],["tx",{"_index":2254,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1402,3],[1819,2],[2183,2],[14446,2],[14628,2],[14737,2],[16154,3],[16227,2],[16246,2],[16355,2],[16420,2],[16513,2],[21548,2],[31919,2],[34087,2],[34153,2],[34518,3]]},"88":{"position":[[13606,3],[47878,3]]},"135":{"position":[[15689,2],[15750,2],[15811,2],[15853,2],[19213,2]]},"139":{"position":[[1454,2]]},"140":{"position":[[1475,2]]},"142":{"position":[[1648,2],[6768,2],[7535,2],[21106,2]]},"147":{"position":[[11166,3],[11212,3]]}}}],["tx/rx",{"_index":2535,"t":{},"d":{},"k":{},"b":{"75":{"position":[[33200,6],[33274,6]]},"139":{"position":[[7967,5]]}}}],["tx_buffer",{"_index":6813,"t":{},"d":{},"k":{},"b":{"135":{"position":[[8795,10],[10026,10],[10682,10]]},"142":{"position":[[9789,10],[11035,10],[11700,10]]}}}],["tx_buffer[transfer_s",{"_index":6808,"t":{},"d":{},"k":{},"b":{"135":{"position":[[8443,25],[9336,25]]},"142":{"position":[[9429,25],[10337,25]]}}}],["tx_count",{"_index":6850,"t":{},"d":{},"k":{},"b":{"135":{"position":[[13637,8]]},"142":{"position":[[15037,8]]}}}],["tx_inherit",{"_index":6110,"t":{},"d":{},"k":{},"b":{"127":{"position":[[5524,12]]},"129":{"position":[[7149,12]]},"131":{"position":[[11408,12]]},"133":{"position":[[12850,12],[16984,12],[21288,12],[26302,12],[32455,12],[36570,12],[40875,12],[45127,12]]}}}],["tx_irq",{"_index":2162,"t":{},"d":{},"k":{},"b":{"74":{"position":[[3061,6]]},"88":{"position":[[47345,6]]}}}],["tx_mutex_create(p_extend",{"_index":6107,"t":{},"d":{},"k":{},"b":{"127":{"position":[[5366,24]]},"129":{"position":[[6991,24]]},"131":{"position":[[11250,24]]},"133":{"position":[[12692,24],[16826,24],[21130,24],[26144,24],[32297,24],[36412,24],[40717,24],[44969,24]]}}}],["tx_semaphore_create(p_extend",{"_index":6097,"t":{},"d":{},"k":{},"b":{"127":{"position":[[4651,28]]},"129":{"position":[[6276,28]]},"131":{"position":[[10535,28]]},"133":{"position":[[11977,28],[16111,28],[20415,28],[25429,28],[31582,28],[35697,28],[40002,28],[44254,28]]}}}],["tx_trigger_level",{"_index":6844,"t":{},"d":{},"k":{},"b":{"135":{"position":[[13000,16]]}}}],["txd",{"_index":7177,"t":{},"d":{},"k":{},"b":{"139":{"position":[[7517,3],[7854,3]]},"140":{"position":[[6426,3]]}}}],["txi",{"_index":3712,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1614,4]]},"86":{"position":[[1655,3]]},"124":{"position":[[4446,4],[5696,5]]},"125":{"position":[[2126,4],[4500,5],[4748,3]]},"138":{"position":[[4861,4],[5674,5]]}}}],["txi_ipl",{"_index":7412,"t":{},"d":{},"k":{},"b":{"141":{"position":[[1512,7]]},"147":{"position":[[2256,7]]}}}],["txi_irq",{"_index":3716,"t":{},"d":{},"k":{},"b":{"85":{"position":[[1689,7]]},"86":{"position":[[1485,7]]},"124":{"position":[[7724,8],[10458,8]]},"125":{"position":[[8737,8],[9177,8]]},"141":{"position":[[1314,7]]},"147":{"position":[[2308,7]]}}}],["txmb",{"_index":2522,"t":{},"d":{},"k":{},"b":{"75":{"position":[[32328,4],[35430,4]]}}}],["txmb_merge_mode_en",{"_index":2521,"t":{},"d":{},"k":{},"b":{"75":{"position":[[32304,22]]}}}],["txmb_txi_en",{"_index":2516,"t":{},"d":{},"k":{},"b":{"75":{"position":[[31893,15]]}}}],["type",{"_index":124,"t":{},"d":{},"k":{},"b":{"1":{"position":[[422,5]]},"43":{"position":[[42,5]]},"67":{"position":[[12180,4]]},"68":{"position":[[6131,5],[18001,4]]},"69":{"position":[[21483,4],[33421,4]]},"70":{"position":[[1691,4]]},"71":{"position":[[5253,4],[5301,4],[34033,4]]},"72":{"position":[[245,4]]},"74":{"position":[[1892,4],[1904,4],[4824,4],[5255,5],[7845,4],[9713,5]]},"75":{"position":[[16111,5],[18773,4],[18788,4],[22494,5],[32383,4]]},"76":{"position":[[13548,4]]},"78":{"position":[[4553,4]]},"79":{"position":[[12417,4]]},"81":{"position":[[4218,4]]},"82":{"position":[[6163,4]]},"83":{"position":[[31857,4]]},"84":{"position":[[9335,4]]},"85":{"position":[[8809,4]]},"86":{"position":[[6510,4]]},"87":{"position":[[3276,4],[3505,4],[3892,4],[4753,4],[12985,4],[14661,4],[18617,4],[19948,4]]},"88":{"position":[[14291,4],[18750,4],[23368,4],[31065,4],[48689,4]]},"89":{"position":[[2418,4]]},"91":{"position":[[2495,4],[5826,4]]},"92":{"position":[[19098,4]]},"93":{"position":[[8617,4],[8889,4]]},"94":{"position":[[5346,4]]},"95":{"position":[[1734,5]]},"98":{"position":[[1672,5]]},"99":{"position":[[1705,5]]},"104":{"position":[[1643,5]]},"105":{"position":[[20720,4]]},"106":{"position":[[13146,4],[17393,4]]},"107":{"position":[[7686,4]]},"109":{"position":[[5889,4]]},"113":{"position":[[1859,4]]},"124":{"position":[[13663,4]]},"125":{"position":[[4798,4]]},"126":{"position":[[4259,4]]},"128":{"position":[[5007,4],[5127,5],[5236,5],[5258,4],[11165,5],[11832,4],[12067,4],[12165,4],[12245,4],[12357,4],[12384,4],[12451,4],[12618,4],[12819,4],[23496,4],[24827,4]]},"129":{"position":[[3412,4]]},"130":{"position":[[4908,4],[4954,4],[6540,4],[6787,4],[6917,4]]},"131":{"position":[[3094,4],[3200,5],[3345,4],[4341,4]]},"132":{"position":[[5682,4],[5961,4],[6115,4]]},"133":{"position":[[50868,4],[51004,4]]},"134":{"position":[[13042,4]]},"135":{"position":[[14014,4]]},"136":{"position":[[1504,6],[2245,4],[5157,4],[5238,4],[10688,4]]},"137":{"position":[[9870,4]]},"138":{"position":[[12624,4]]},"139":{"position":[[15033,4]]},"140":{"position":[[11836,4]]},"141":{"position":[[7847,4]]},"142":{"position":[[15358,4]]},"143":{"position":[[10873,4]]},"144":{"position":[[10614,4],[11604,6]]},"145":{"position":[[10524,4]]},"146":{"position":[[15897,4],[19366,4]]},"147":{"position":[[2058,4],[9821,4]]},"149":{"position":[[6492,4]]},"150":{"position":[[8599,5],[16214,4]]}}}],["typedef",{"_index":265,"t":{},"d":{},"k":{},"b":{"67":{"position":[[714,8],[723,7],[11956,7],[12021,7]]},"74":{"position":[[627,8],[636,7],[7569,7],[7634,7]]},"78":{"position":[[494,8],[503,7],[4299,7],[4364,7]]},"81":{"position":[[149,8],[158,7],[3964,7],[4029,7]]},"82":{"position":[[485,8],[494,7],[5817,7],[5891,7]]},"85":{"position":[[529,8],[538,7],[8534,7],[8606,7]]},"86":{"position":[[454,8],[463,7],[6238,7],[6309,7]]},"87":{"position":[[427,8],[436,7],[14407,7],[14472,7]]},"91":{"position":[[4652,8],[4661,7],[5657,7],[5731,7]]},"93":{"position":[[424,8],[433,7],[505,7],[8462,7],[8530,7],[8688,7]]},"94":{"position":[[671,8],[680,7],[5092,7],[5157,7]]},"101":{"position":[[694,8],[703,7],[4893,7],[4971,7]]},"103":{"position":[[669,8],[678,7],[3579,7],[3657,7]]},"107":{"position":[[358,8],[367,7],[7432,7],[7497,7]]},"109":{"position":[[427,8],[436,7],[5630,7],[5696,7]]},"126":{"position":[[428,8],[437,7],[3964,7],[4034,7]]},"130":{"position":[[451,8],[460,7],[6262,7],[6333,7]]},"132":{"position":[[485,8],[494,7],[5404,7],[5475,7]]},"134":{"position":[[651,8],[660,7],[12763,7],[12836,7]]},"137":{"position":[[489,8],[498,7],[529,7],[9460,7],[9525,7],[9681,7]]},"141":{"position":[[366,8],[375,7],[7570,7],[7635,7]]},"143":{"position":[[477,8],[486,7],[10589,7],[10660,7]]},"144":{"position":[[744,8],[753,7],[10290,7],[10357,7]]},"145":{"position":[[370,8],[379,7],[10247,7],[10317,7]]},"147":{"position":[[680,8],[689,7],[9530,7],[9596,7]]},"149":{"position":[[439,8],[448,7],[6238,7],[6303,7]]},"151":{"position":[[2044,9],[2084,8]]}}}],["typedef'",{"_index":6166,"t":{},"d":{},"k":{},"b":{"128":{"position":[[5093,12],[5202,12]]}}}],["typemanu",{"_index":6215,"t":{},"d":{},"k":{},"b":{"128":{"position":[[11798,10],[12292,10]]}}}],["typemcu",{"_index":4362,"t":{},"d":{},"k":{},"b":{"89":{"position":[[2350,7]]},"91":{"position":[[2435,7]]}}}],["typic",{"_index":3129,"t":{},"d":{},"k":{},"b":{"80":{"position":[[3107,10]]},"116":{"position":[[496,9]]},"128":{"position":[[2043,10],[2233,9]]},"133":{"position":[[8129,7]]},"135":{"position":[[6167,7]]},"136":{"position":[[3732,9]]},"142":{"position":[[7047,7]]},"143":{"position":[[2681,9]]}}}],["u",{"_index":7738,"t":{},"d":{},"k":{},"b":{"144":{"position":[[11375,2]]}}}],["uart",{"_index":5527,"t":{"139":{"position":[[45,4]]},"140":{"position":[[84,4]]},"147":{"position":[[45,4]]}},"d":{},"k":{},"b":{"112":{"position":[[2461,4],[2551,4],[2610,4],[2700,4]]},"115":{"position":[[1502,4],[1532,4]]},"139":{"position":[[1211,4],[1256,4],[1314,4],[2434,4],[2528,4],[9207,4],[9578,4],[10505,4],[11705,4],[13036,4],[14190,4],[14772,4],[15576,4],[18137,4],[18397,4],[19515,4],[20760,4],[21034,4],[22015,4],[22049,4],[22731,4],[23269,4],[24144,4],[27406,4]]},"140":{"position":[[1232,4],[1278,4],[1335,4],[2340,4],[2441,4],[3753,4],[3840,4],[6982,4],[7875,4],[9075,4],[10281,4],[10984,4],[11119,4],[11664,4],[12356,4],[12712,4],[16756,4],[17016,4],[18001,4],[18932,4],[19120,4],[19873,4],[19907,4],[20587,4],[21123,4],[21996,4],[23042,4],[24355,4]]},"147":{"position":[[36,4],[71,4],[111,4],[133,4],[193,4],[498,4],[517,4],[958,4],[1378,4],[1842,4],[2842,4],[3633,4],[4660,4],[4776,4],[4868,4],[5129,4],[5543,4],[5850,4],[6263,4],[6781,4],[7190,4],[7557,4],[8092,4],[8501,4],[8615,4],[8973,4],[9638,4],[9719,4],[9920,4],[10454,4],[10692,4],[10910,4],[11099,4]]},"152":{"position":[[3393,4],[3481,4],[3537,4],[3625,4],[7835,4],[7863,4]]}}}],["uart_api_t",{"_index":7934,"t":{},"d":{},"k":{},"b":{"147":{"position":[[639,10],[3526,10],[3573,10],[9449,10]]}}}],["uart_api_t::baudset",{"_index":7274,"t":{},"d":{},"k":{},"b":{"139":{"position":[[21841,19]]},"140":{"position":[[19699,19]]},"147":{"position":[[6427,20]]}}}],["uart_api_t::callbackset",{"_index":7295,"t":{},"d":{},"k":{},"b":{"139":{"position":[[26400,23]]},"140":{"position":[[25252,23]]},"147":{"position":[[7699,24]]}}}],["uart_api_t::clos",{"_index":7277,"t":{},"d":{},"k":{},"b":{"139":{"position":[[23157,17]]},"140":{"position":[[21011,17]]},"147":{"position":[[8431,18]]}}}],["uart_api_t::communicationabort",{"_index":7184,"t":{},"d":{},"k":{},"b":{"139":{"position":[[8908,30],[24009,30]]},"140":{"position":[[6782,30],[21861,30]]},"147":{"position":[[7320,31]]}}}],["uart_api_t::infoget",{"_index":7276,"t":{},"d":{},"k":{},"b":{"139":{"position":[[22607,19]]},"140":{"position":[[20463,19]]},"147":{"position":[[6955,20]]}}}],["uart_api_t::open",{"_index":7265,"t":{},"d":{},"k":{},"b":{"139":{"position":[[18286,16]]},"140":{"position":[[16905,16]]},"147":{"position":[[4561,17]]}}}],["uart_api_t::read",{"_index":7268,"t":{},"d":{},"k":{},"b":{"139":{"position":[[19399,16]]},"140":{"position":[[17885,16]]},"147":{"position":[[5011,17]]}}}],["uart_api_t::readstop",{"_index":7296,"t":{},"d":{},"k":{},"b":{"139":{"position":[[27281,20]]},"140":{"position":[[24230,20]]},"147":{"position":[[8700,21]]}}}],["uart_api_t::writ",{"_index":7271,"t":{},"d":{},"k":{},"b":{"139":{"position":[[20636,17]]},"140":{"position":[[18808,17]]},"147":{"position":[[5727,18]]}}}],["uart_callback_args_t",{"_index":7142,"t":{},"d":{},"k":{},"b":{"139":{"position":[[978,20],[10455,21],[26177,20]]},"140":{"position":[[1091,20],[7825,21],[25029,20]]},"147":{"position":[[587,20],[1283,20],[1340,20],[2670,22],[4313,20],[7828,20]]}}}],["uart_cfg_t",{"_index":7126,"t":{},"d":{},"k":{},"b":{"139":{"position":[[73,10],[18011,10]]},"140":{"position":[[72,10],[16630,10]]},"147":{"position":[[618,10],[1767,10],[1814,10],[3698,10],[4607,10],[9361,10]]}}}],["uart_cfg_t::p_transfer_rx",{"_index":7943,"t":{},"d":{},"k":{},"b":{"147":{"position":[[1235,25],[2978,25]]}}}],["uart_cfg_t::p_transfer_tx",{"_index":7941,"t":{},"d":{},"k":{},"b":{"147":{"position":[[1097,25],[3286,25]]}}}],["uart_ctrl_t",{"_index":7125,"t":{},"d":{},"k":{},"b":{"139":{"position":[[41,12],[134,12],[242,12],[357,12],[456,12],[546,12],[609,12],[874,12],[1059,12],[17918,11],[19035,11],[20267,11],[21502,11],[22278,11],[22934,11],[23472,11],[25887,11],[26823,11]]},"140":{"position":[[40,12],[132,12],[239,12],[353,12],[451,12],[540,12],[602,12],[707,12],[892,12],[987,12],[16537,11],[17521,11],[18439,11],[19361,11],[20134,11],[20788,11],[21324,11],[22384,11],[23772,11],[24739,11]]},"147":{"position":[[702,11],[3669,13],[3748,13],[3842,13],[3943,13],[4029,13],[4118,13],[4208,13],[4380,13],[4432,13],[4579,12],[5029,12],[5746,12],[6448,12],[6976,12],[7352,12],[7724,12],[8450,12],[8722,12],[9284,11],[9555,11],[9609,11]]}}}],["uart_data_bits_7",{"_index":7967,"t":{},"d":{},"k":{},"b":{"147":{"position":[[10570,16]]}}}],["uart_data_bits_8",{"_index":7206,"t":{},"d":{},"k":{},"b":{"139":{"position":[[10912,17]]},"140":{"position":[[8282,17]]},"147":{"position":[[10534,16]]}}}],["uart_data_bits_t",{"_index":7937,"t":{},"d":{},"k":{},"b":{"147":{"position":[[759,16],[1967,16],[10369,16],[10420,16]]}}}],["uart_dir_rx",{"_index":7974,"t":{},"d":{},"k":{},"b":{"147":{"position":[[11172,11]]}}}],["uart_dir_t",{"_index":7135,"t":{},"d":{},"k":{},"b":{"139":{"position":[[641,10],[23565,10]]},"140":{"position":[[634,10],[21417,10]]},"147":{"position":[[834,10],[4147,10],[7380,10],[11026,10],[11071,10]]}}}],["uart_dir_tx",{"_index":7975,"t":{},"d":{},"k":{},"b":{"147":{"position":[[11195,11]]}}}],["uart_event_break_detect",{"_index":7964,"t":{},"d":{},"k":{},"b":{"147":{"position":[[10235,23]]}}}],["uart_event_err_fram",{"_index":7945,"t":{},"d":{},"k":{},"b":{"147":{"position":[[1618,23],[10133,22]]}}}],["uart_event_err_overflow",{"_index":7946,"t":{},"d":{},"k":{},"b":{"147":{"position":[[1645,24],[10182,23]]}}}],["uart_event_err_par",{"_index":7944,"t":{},"d":{},"k":{},"b":{"147":{"position":[[1595,22],[10089,21]]}}}],["uart_event_rx_char",{"_index":7185,"t":{},"d":{},"k":{},"b":{"139":{"position":[[9072,19],[9438,20],[9475,18],[10596,19],[23978,19],[27250,19]]},"140":{"position":[[6946,19],[7966,19],[21830,19],[24199,19]]},"147":{"position":[[1575,19],[5372,19],[10048,18]]}}}],["uart_event_rx_complet",{"_index":7187,"t":{},"d":{},"k":{},"b":{"139":{"position":[[9380,24],[11427,23]]},"140":{"position":[[8796,23]]},"147":{"position":[[5257,23]]}}}],["uart_event_t",{"_index":7936,"t":{},"d":{},"k":{},"b":{"147":{"position":[[737,12],[1472,12],[9843,12],[9890,12]]}}}],["uart_event_tx_complet",{"_index":7209,"t":{},"d":{},"k":{},"b":{"139":{"position":[[11565,23]]},"140":{"position":[[8934,23]]},"147":{"position":[[6086,23],[9998,22]]}}}],["uart_event_tx_data_empti",{"_index":7965,"t":{},"d":{},"k":{},"b":{"147":{"position":[[10287,24]]}}}],["uart_info_t",{"_index":7132,"t":{},"d":{},"k":{},"b":{"139":{"position":[[488,11],[22371,11]]},"140":{"position":[[483,11],[20227,11]]},"147":{"position":[[565,11],[881,11],[929,11],[4058,11],[7004,11]]}}}],["uart_instance_t",{"_index":7935,"t":{},"d":{},"k":{},"b":{"147":{"position":[[660,15],[9093,15],[9145,15]]}}}],["uart_mod",{"_index":7351,"t":{},"d":{},"k":{},"b":{"140":{"position":[[11653,9]]}}}],["uart_parity_even",{"_index":7969,"t":{},"d":{},"k":{},"b":{"147":{"position":[[10756,16]]}}}],["uart_parity_odd",{"_index":7970,"t":{},"d":{},"k":{},"b":{"147":{"position":[[10788,15]]}}}],["uart_parity_t",{"_index":7938,"t":{},"d":{},"k":{},"b":{"147":{"position":[[785,13],[2029,13],[10613,13],[10661,13]]}}}],["uart_stop_bits_2",{"_index":7972,"t":{},"d":{},"k":{},"b":{"147":{"position":[[10983,16]]}}}],["uart_stop_bits_t",{"_index":7939,"t":{},"d":{},"k":{},"b":{"147":{"position":[[808,16],[2089,16],[10825,16],[10876,16]]}}}],["uba",{"_index":6614,"t":{},"d":{},"k":{},"b":{"133":{"position":[[7380,3],[7480,3]]}}}],["ubasetype_t",{"_index":6103,"t":{},"d":{},"k":{},"b":{"127":{"position":[[5053,13]]},"128":{"position":[[12072,12]]},"129":{"position":[[6678,13]]},"131":{"position":[[10937,13]]},"133":{"position":[[12379,13],[16513,13],[20817,13],[25831,13],[31984,13],[36099,13],[40404,13],[44656,13]]}}}],["ucheap",{"_index":6330,"t":{},"d":{},"k":{},"b":{"128":{"position":[[26768,7]]}}}],["uint16_max",{"_index":2699,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11627,10],[17417,10]]},"105":{"position":[[15011,10],[31650,10]]}}}],["uint16_t",{"_index":286,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1298,8],[2739,8],[4306,8],[7742,8]]},"68":{"position":[[575,8],[760,8],[10622,8],[12304,8],[15171,8],[17375,8],[27388,8],[28656,8]]},"69":{"position":[[575,8],[14486,8],[15808,8],[15850,8],[20390,8],[20451,8],[20513,8],[20576,8],[34788,8]]},"79":{"position":[[316,8],[10744,8],[18114,8]]},"86":{"position":[[1228,8]]},"88":{"position":[[41518,8],[43256,8],[43360,8]]},"92":{"position":[[17445,8]]},"93":{"position":[[441,8],[1083,8],[8538,8]]},"105":{"position":[[1101,8],[18541,8],[18631,8],[37203,8]]},"106":{"position":[[15919,8],[16016,8],[16113,8],[16214,8],[16332,8],[16451,8],[16945,8],[17063,8]]},"128":{"position":[[12827,8]]},"134":{"position":[[3065,8],[3174,8]]},"138":{"position":[[15077,8],[16257,8]]},"139":{"position":[[11137,8],[11157,9],[11258,10]]},"140":{"position":[[8506,8],[8526,9],[8627,10]]},"143":{"position":[[953,8],[1332,8]]},"145":{"position":[[1997,8],[2212,8],[3934,8],[5517,8]]},"146":{"position":[[502,8],[1168,8],[6902,8],[8361,8],[11844,8],[20767,8],[24625,8]]},"292":{"position":[[123,8],[141,8],[159,8],[689,8],[807,8],[922,8]]}}}],["uint32_max",{"_index":2697,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11274,10],[17064,10]]},"83":{"position":[[22752,10],[24705,10],[25903,10]]},"84":{"position":[[8480,10]]}}}],["uint32_t",{"_index":305,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1884,8],[2148,8],[2481,8],[2550,8],[4407,8],[8196,8]]},"68":{"position":[[675,8],[17660,8],[28039,8]]},"69":{"position":[[675,8],[20187,8],[20252,8],[20917,8],[20985,8],[21039,8],[21093,8],[35439,8]]},"70":{"position":[[29,8],[13754,8]]},"71":{"position":[[460,8],[589,8],[678,8],[781,9],[14357,8],[14384,8],[41476,8],[42019,8],[42867,8],[44043,8],[47612,8],[47748,8]]},"74":{"position":[[941,8],[1010,8],[1070,8],[1227,8],[1430,8],[1508,8],[1560,8],[1612,8],[1793,8],[1975,8],[2228,8],[2306,8],[2604,8],[3346,8],[3445,8],[4480,8],[4944,8]]},"75":{"position":[[211,8],[318,8],[28489,9],[29918,9],[31236,8],[31317,8],[31400,8],[31482,8],[31952,8],[36821,8],[37817,8]]},"76":{"position":[[123,8],[214,8],[248,8],[9140,8],[11019,8],[11352,8],[11384,10],[16110,8],[16809,8],[17142,8],[17174,10],[18038,8],[18134,8],[20951,8]]},"77":{"position":[[229,8],[320,8],[404,8],[3859,8],[3879,8],[6435,8],[7275,8],[7936,8]]},"78":{"position":[[1080,8],[1569,8],[1645,8],[1803,8],[2590,8],[2959,8],[3547,8]]},"79":{"position":[[906,8],[9464,8],[21979,8]]},"82":{"position":[[921,8]]},"83":{"position":[[419,8],[509,8],[543,8],[793,8],[1074,8],[1249,8],[24458,8],[24783,8],[24815,10],[25731,8],[26004,8],[26040,10],[29378,8],[29449,8],[29524,8],[29589,8],[50016,8],[51038,8],[51134,8],[53470,8],[55261,8],[55999,8]]},"84":{"position":[[121,8],[211,8],[245,8],[8253,8],[8558,8],[8590,10],[10522,8],[11600,8],[11696,8]]},"85":{"position":[[1420,8],[3361,8],[3480,8],[3642,8],[4644,8],[5222,8],[6127,8]]},"86":{"position":[[843,8],[3004,8],[3102,8],[3940,8],[4393,8]]},"87":{"position":[[3093,8],[3540,8],[3606,8],[4261,8],[4528,8],[5513,8],[5647,8],[5670,8],[5820,8],[5852,8],[6146,8],[6247,8],[6383,8],[6473,8],[7770,8],[8478,8],[8501,8],[9104,8],[9136,8],[10970,8],[11767,8],[12724,8],[13270,8]]},"88":{"position":[[335,8],[572,8],[595,8],[754,8],[786,8],[1006,8],[1116,8],[1261,8],[1360,8],[41106,8],[41222,8],[41329,8],[41436,8],[41798,8],[41848,8],[42210,8],[42285,8],[42404,8],[42527,8],[43996,8],[44749,8],[44899,8],[45068,8],[45253,8],[45325,8],[45772,8],[45876,8],[46417,8],[46605,8],[46808,8],[53285,8],[54841,8],[54926,8],[55764,8],[55858,8],[57735,8],[58723,8],[59855,8],[60741,8]]},"89":{"position":[[4606,8]]},"90":{"position":[[4238,8]]},"91":{"position":[[5010,8]]},"92":{"position":[[318,8],[30619,8]]},"93":{"position":[[759,8],[1775,8],[3957,8]]},"94":{"position":[[1023,8],[1090,8],[1246,8],[1667,8],[2402,8],[3207,8]]},"95":{"position":[[148,8],[432,9],[1467,8],[1672,8],[1765,8],[1827,8],[2836,8],[4621,8]]},"96":{"position":[[472,9],[1266,8],[1490,8],[3955,8]]},"97":{"position":[[1014,8],[1235,8]]},"98":{"position":[[146,8],[427,9],[1405,8],[1610,8],[1703,8],[1765,8],[2767,8],[4545,8]]},"99":{"position":[[144,8],[422,9],[1438,8],[1643,8],[1736,8],[1798,8],[2793,8],[4564,8]]},"100":{"position":[[464,9],[1239,8],[1463,8],[3904,8]]},"101":{"position":[[1071,8],[1281,8],[1636,8]]},"102":{"position":[[989,8],[1210,8]]},"103":{"position":[[1046,8],[1257,8]]},"104":{"position":[[142,8],[417,9],[1376,8],[1581,8],[1674,8],[1736,8],[2724,8],[4488,8]]},"105":{"position":[[315,8],[406,8],[440,8],[693,8],[14765,8],[15089,8],[15121,10],[16064,8],[16191,8],[17572,8],[17876,8],[19558,8],[19614,8],[19670,8],[19755,8],[30443,8],[31404,8],[31728,8],[31760,10],[32420,8],[32516,8],[34855,8]]},"106":{"position":[[190,8],[353,8],[16574,8],[16741,8],[16843,8],[17126,8],[17264,8],[21531,8],[23138,8]]},"107":{"position":[[1244,8],[1986,8],[3015,8],[3172,8],[4259,8],[5101,8]]},"109":{"position":[[1461,8]]},"111":{"position":[[854,8]]},"113":{"position":[[456,8]]},"124":{"position":[[209,8],[343,8],[535,8],[8032,8],[8048,8],[10681,8],[15425,8],[16377,8],[17850,8]]},"125":{"position":[[204,8],[316,8],[10461,8],[10476,8],[15386,8],[16497,8]]},"126":{"position":[[1006,8],[1771,8],[1868,8],[2714,8],[3098,8]]},"127":{"position":[[459,8],[650,8],[6801,8],[6831,8],[8505,8],[9134,8]]},"128":{"position":[[22785,8],[24102,8]]},"129":{"position":[[2045,8],[7576,8],[10755,8],[16342,8]]},"130":{"position":[[2612,8],[5101,8]]},"131":{"position":[[15017,8]]},"133":{"position":[[49453,8],[49826,8]]},"135":{"position":[[159,8],[290,8],[439,8],[587,9],[13264,8],[13628,8],[13709,8],[13865,8],[17850,8],[18960,8],[20204,8],[21860,8]]},"136":{"position":[[10491,8]]},"137":{"position":[[1555,8],[2873,8]]},"138":{"position":[[273,8],[405,8],[593,8],[7918,8],[9878,8],[14531,8],[15482,8],[17300,8]]},"139":{"position":[[189,8],[302,8],[715,9],[760,8],[1091,8],[9891,9],[11914,8],[12052,8],[19213,8],[20450,8],[24581,8],[24749,8],[26916,8]]},"140":{"position":[[187,8],[299,8],[739,8],[783,8],[924,8],[7294,9],[9275,8],[9400,8],[17699,8],[18622,8],[22477,8],[22645,8],[23865,8]]},"141":{"position":[[764,8],[2780,8],[2903,8],[3044,8],[3837,8],[4566,8],[5219,8]]},"142":{"position":[[161,8],[293,8],[443,8],[593,9],[14731,8],[15028,8],[15109,8],[15190,8],[19842,8],[20853,8],[21998,8],[23557,8]]},"143":{"position":[[989,8],[1269,8],[1308,8],[2395,8],[3804,8],[3931,8],[4291,8],[4393,8],[4653,8],[5277,8],[6014,8],[7400,8],[7918,8],[9291,8]]},"144":{"position":[[1312,8],[1681,8],[1748,8],[2001,8],[2326,8],[2439,8],[3915,8],[3995,8],[4029,8],[6621,8],[7229,8],[7263,8]]},"145":{"position":[[797,8],[852,8],[915,8],[977,8],[2687,8],[2983,8],[4460,8],[9243,8]]},"146":{"position":[[602,8],[5520,8],[5551,8],[8719,8],[8750,8],[11682,8],[11716,8],[21402,8]]},"147":{"position":[[1006,8],[1139,8],[1428,8],[1507,8],[3800,8],[3899,8],[4461,8],[5080,8],[5802,8],[8750,8]]},"148":{"position":[[369,8],[8797,8],[12978,8]]},"149":{"position":[[1141,8],[1216,8],[2712,8],[4480,8]]},"150":{"position":[[251,8],[387,8],[737,8],[848,8],[1025,8],[12307,8],[14891,8],[20379,8],[21008,8],[23099,8],[23975,8],[25585,8]]},"287":{"position":[[85,8],[103,8],[237,8],[355,8]]},"289":{"position":[[86,8],[286,8]]}}}],["uint64_t",{"_index":295,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1540,8]]},"75":{"position":[[31883,8]]},"76":{"position":[[8809,10],[9265,11],[11312,8],[11395,12],[17102,8],[17185,12]]},"83":{"position":[[22139,10],[22515,8],[24743,8],[24826,12],[25964,8],[26051,12]]},"84":{"position":[[8518,8],[8601,12]]},"105":{"position":[[15049,8],[15132,12],[31688,8],[31771,12]]}}}],["uint8_calculated_valu",{"_index":2852,"t":{},"d":{},"k":{},"b":{"77":{"position":[[3888,23],[4278,26]]}}}],["uint8_t",{"_index":352,"t":{},"d":{},"k":{},"b":{"67":{"position":[[3189,7],[3244,7],[3309,7]]},"69":{"position":[[19908,7],[19975,7]]},"74":{"position":[[1119,7],[1174,7],[1918,7],[2029,7],[2906,7]]},"75":{"position":[[28555,9],[30005,9],[31573,7],[31633,7],[32098,7]]},"76":{"position":[[13053,7],[13116,7],[13291,7],[13355,7]]},"78":{"position":[[908,7]]},"79":{"position":[[9900,7],[9931,7],[10019,7]]},"82":{"position":[[1163,7],[1207,7]]},"83":{"position":[[28998,7],[31329,7],[31385,7],[31441,7]]},"85":{"position":[[1270,7],[1561,7],[2328,7],[3338,7],[3458,7],[4621,7],[5200,7]]},"86":{"position":[[1079,7],[1608,7],[1683,7],[2174,7],[2981,7],[3080,7],[3917,7],[4371,7]]},"87":{"position":[[886,7],[1007,7],[1247,7],[1321,7],[1618,7],[1695,7],[2487,7],[2564,7],[2971,7],[3034,7],[3768,7],[3930,7],[3999,7],[6117,7],[6224,7],[6354,7],[6450,7],[10941,7],[11744,7],[12695,7],[13247,7]]},"88":{"position":[[977,7],[1093,7],[1232,7],[1337,7],[24782,7],[25090,7],[27485,7],[27544,7],[28925,7],[32152,7],[32454,7],[33412,7],[34447,7],[35750,7],[36867,7],[38334,7],[43462,7],[44056,7],[44256,7],[44975,7],[47831,7],[47898,7],[57644,7],[58638,7],[59764,7],[60656,7]]},"89":{"position":[[4721,7]]},"90":{"position":[[4353,7]]},"91":{"position":[[4669,7],[5120,7],[5739,7]]},"92":{"position":[[17855,7],[18430,7],[18496,7]]},"94":{"position":[[1319,7]]},"101":{"position":[[1354,7]]},"105":{"position":[[20359,7],[20429,7]]},"106":{"position":[[14893,7],[14972,7],[15047,7],[15143,7],[15239,7],[15817,7],[15869,7]]},"107":{"position":[[1571,7],[1627,7],[1685,7]]},"109":{"position":[[1604,7]]},"111":{"position":[[1161,7],[1206,7],[1251,7],[1296,7]]},"113":{"position":[[704,7],[755,7],[806,7],[855,7]]},"124":{"position":[[186,7],[321,7],[8430,9],[12609,7],[12664,7],[12718,7],[13354,7],[15340,7],[16293,7]]},"125":{"position":[[181,7],[294,7],[11206,9],[13445,7],[13500,7],[13553,7],[15301,7],[16413,7]]},"126":{"position":[[1748,7],[1846,7],[2691,7],[3076,7]]},"127":{"position":[[436,7],[628,7],[6888,7],[8420,7],[9050,7]]},"128":{"position":[[12626,7],[26514,7],[26760,7]]},"129":{"position":[[5666,7],[11118,7]]},"130":{"position":[[905,7],[974,7]]},"131":{"position":[[15388,7],[15492,7],[15754,7]]},"132":{"position":[[1145,7],[1207,7],[1272,7]]},"133":{"position":[[49856,7],[49935,7]]},"135":{"position":[[8435,7],[8472,7],[9328,7],[9365,7],[12100,7],[12140,7]]},"136":{"position":[[10115,7]]},"137":{"position":[[3051,7],[3149,7],[3259,7]]},"138":{"position":[[250,7],[383,7],[8310,9],[10892,9],[10948,9],[11881,7],[11931,7],[11984,7],[12042,7],[12099,7],[14446,7],[15398,7]]},"139":{"position":[[166,7],[274,7],[9591,7],[9957,9],[11040,9],[13554,7],[13685,7],[19128,7],[20360,7]]},"140":{"position":[[164,7],[271,7],[6995,7],[7360,9],[8409,9],[10547,7],[10590,7],[11168,7],[17614,7],[18532,7]]},"141":{"position":[[1201,7],[1455,7],[1504,7],[1554,7],[1613,7]]},"142":{"position":[[9421,7],[9458,7],[10329,7],[10366,7],[13261,7],[13301,7]]},"143":{"position":[[1371,7],[1420,7],[1463,7],[1506,7],[2267,7],[2331,7],[2561,7],[2616,7],[2699,7],[2760,7],[2820,7],[2877,7],[2932,7],[3776,7],[3908,7],[4240,7],[4268,7],[4360,7],[5249,7],[5991,7],[7349,7],[7377,7],[7885,7]]},"144":{"position":[[2492,7],[2511,7],[2837,7]]},"146":{"position":[[11750,7],[15628,7]]},"147":{"position":[[1876,7],[2146,7],[2248,7],[2352,7],[2464,7],[3777,7],[3871,7],[5057,7],[5774,7]]},"150":{"position":[[223,7],[364,7],[686,7],[714,7],[815,7],[7405,8],[20289,7],[20923,7],[22924,7],[23014,7],[23880,7]]},"292":{"position":[[83,7],[102,7],[174,7],[448,7],[567,7],[1039,8]]}}}],["ulim[11:0",{"_index":7851,"t":{},"d":{},"k":{},"b":{"146":{"position":[[4266,10]]}}}],["ulmair0",{"_index":8411,"t":{},"d":{},"k":{},"b":{"289":{"position":[[95,7],[249,7]]}}}],["ulong",{"_index":6100,"t":{},"d":{},"k":{},"b":{"127":{"position":[[4827,7]]},"129":{"position":[[6452,7]]},"131":{"position":[[10711,7]]},"133":{"position":[[12153,7],[16287,7],[20591,7],[25605,7],[31758,7],[35873,7],[40178,7],[44430,7]]}}}],["ulp",{"_index":6666,"t":{},"d":{},"k":{},"b":{"133":{"position":[[24549,3]]},"134":{"position":[[1803,4]]}}}],["ulrbar",{"_index":8401,"t":{},"d":{},"k":{},"b":{"287":{"position":[[94,6],[201,6]]}}}],["ulrlar",{"_index":8402,"t":{},"d":{},"k":{},"b":{"287":{"position":[[112,6],[319,6]]}}}],["ultim",{"_index":2021,"t":{},"d":{},"k":{},"b":{"71":{"position":[[35772,10]]}}}],["ultra",{"_index":6618,"t":{},"d":{},"k":{},"b":{"133":{"position":[[7677,5],[8651,5]]}}}],["unabl",{"_index":5629,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5656,6]]}}}],["unaffect",{"_index":975,"t":{},"d":{},"k":{},"b":{"69":{"position":[[3371,11]]}}}],["unalign",{"_index":4030,"t":{},"d":{},"k":{},"b":{"88":{"position":[[7028,9],[7081,9],[19256,9],[19333,9],[19405,9]]}}}],["unchang",{"_index":2442,"t":{},"d":{},"k":{},"b":{"75":{"position":[[23785,9]]},"92":{"position":[[31185,10]]}}}],["uncheck",{"_index":988,"t":{},"d":{},"k":{},"b":{"69":{"position":[[4709,9]]}}}],["undefin",{"_index":6302,"t":{},"d":{},"k":{},"b":{"128":{"position":[[22026,9]]}}}],["under",{"_index":40,"t":{},"d":{},"k":{},"b":{"0":{"position":[[613,5],[909,5]]},"108":{"position":[[2192,5],[2429,5]]},"128":{"position":[[16911,5],[30085,5]]}}}],["underflow",{"_index":2768,"t":{},"d":{},"k":{},"b":{"76":{"position":[[18335,10]]},"83":{"position":[[14418,9],[41470,9]]},"84":{"position":[[3992,9],[4796,11],[5495,9],[10946,9],[11054,9],[11897,10]]},"88":{"position":[[40465,9]]},"113":{"position":[[2682,10]]},"144":{"position":[[246,11]]},"148":{"position":[[989,9],[1212,10],[2995,9],[3056,9],[3079,9],[3162,9],[3341,10],[3874,9],[5679,10],[5932,9],[9088,10],[10071,10]]},"149":{"position":[[1734,10],[8112,9],[8208,11],[8273,11],[8768,9],[8917,9]]}}}],["underflow/trough",{"_index":3345,"t":{},"d":{},"k":{},"b":{"83":{"position":[[11785,16],[11849,16],[11892,16]]}}}],["underflow_ipl",{"_index":8034,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7184,14]]}}}],["underflow_irq",{"_index":8035,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7224,14]]}}}],["underli",{"_index":6949,"t":{},"d":{},"k":{},"b":{"136":{"position":[[6146,10]]}}}],["underrun",{"_index":7477,"t":{},"d":{},"k":{},"b":{"141":{"position":[[11585,8]]},"142":{"position":[[1651,8],[6771,8]]}}}],["understand",{"_index":5872,"t":{},"d":{},"k":{},"b":{"116":{"position":[[1034,10]]}}}],["undesir",{"_index":6177,"t":{},"d":{},"k":{},"b":{"128":{"position":[[6512,11]]}}}],["unexpect",{"_index":6565,"t":{},"d":{},"k":{},"b":{"133":{"position":[[1818,10],[28666,10],[29760,10],[47368,10],[55653,10]]},"134":{"position":[[13239,10]]},"148":{"position":[[825,10]]}}}],["uniform",{"_index":8331,"t":{},"d":{},"k":{},"b":{"151":{"position":[[2657,7]]}}}],["uniniti",{"_index":4657,"t":{},"d":{},"k":{},"b":{"92":{"position":[[29398,13]]}}}],["unintent",{"_index":8000,"t":{},"d":{},"k":{},"b":{"148":{"position":[[2604,13],[4722,13]]}}}],["union",{"_index":2155,"t":{},"d":{},"k":{},"b":{"74":{"position":[[2337,5]]},"87":{"position":[[1282,5]]},"111":{"position":[[435,5],[770,5]]},"113":{"position":[[89,5],[379,5]]},"145":{"position":[[1816,5]]}}}],["uniqu",{"_index":2107,"t":{},"d":{},"k":{},"b":{"71":{"position":[[47436,6],[47503,6]]},"105":{"position":[[19519,6]]},"111":{"position":[[2116,6]]},"145":{"position":[[1500,6]]}}}],["unit",{"_index":255,"t":{"95":{"position":[[62,4]]},"96":{"position":[[62,4]]},"97":{"position":[[62,4]]},"98":{"position":[[62,4]]},"99":{"position":[[62,4]]},"100":{"position":[[62,4]]},"102":{"position":[[62,4]]},"104":{"position":[[62,4]]},"105":{"position":[[72,4]]},"146":{"position":[[64,4]]}},"d":{},"k":{},"b":{"67":{"position":[[539,4],[1308,4],[2748,4],[2758,4],[5089,5],[5737,4],[10567,4],[10666,5]]},"68":{"position":[[1652,4],[6614,4]]},"69":{"position":[[2648,4],[2756,5],[3009,4],[4444,5],[5257,5],[6585,5],[7109,5],[7493,5],[30121,4],[31952,4],[32076,5],[32163,4],[33339,4],[33441,4]]},"71":{"position":[[816,6],[34493,5],[34712,4],[35060,5],[35297,5],[35520,6],[35729,5],[44150,5],[44271,5],[44970,7],[45041,5]]},"76":{"position":[[2697,5],[2722,4],[2819,4],[5926,6]]},"79":{"position":[[1513,5],[2321,5],[6001,4],[6108,4],[6523,5],[9908,4],[9914,4]]},"80":{"position":[[898,4],[4803,5]]},"83":{"position":[[6293,5],[6845,4],[6944,4],[15819,5],[15867,4],[38849,4],[39006,4],[39163,4],[39320,4]]},"84":{"position":[[3097,5],[3172,6],[3260,6],[3435,4],[3534,4],[4511,6],[4536,4]]},"94":{"position":[[53,5],[90,4],[169,4],[349,4],[401,4],[458,4],[512,4]]},"101":{"position":[[53,4],[114,4],[218,4],[370,4],[455,4]]},"103":{"position":[[53,4],[114,4],[218,4],[339,4],[427,4]]},"105":{"position":[[3422,4]]},"106":{"position":[[12396,5]]},"107":{"position":[[1253,4],[1952,4]]},"110":{"position":[[340,4]]},"112":{"position":[[316,4],[502,4],[704,4],[909,4],[1090,4],[1274,4],[1474,4],[1677,4]]},"113":{"position":[[8142,4]]},"115":{"position":[[850,5],[931,4],[1036,4]]},"116":{"position":[[47,4]]},"122":{"position":[[431,4]]},"125":{"position":[[7981,5]]},"139":{"position":[[13600,5],[13730,5]]},"141":{"position":[[4087,5],[4119,5],[4947,5],[4979,5],[5936,5],[5968,5]]},"144":{"position":[[555,4]]},"146":{"position":[[2299,4],[2586,5],[3788,4],[4822,5],[7702,5],[10814,5],[18028,4],[18154,5],[18241,4],[19284,4],[19386,4]]},"149":{"position":[[1260,5]]},"150":{"position":[[2661,4]]},"152":{"position":[[536,4],[918,4],[1313,4],[1494,4],[1691,4],[1891,4],[2067,4],[2246,4],[2441,4],[2639,4],[5944,4],[7229,4],[7305,4],[7406,4]]}}}],["unit/channel",{"_index":5396,"t":{},"d":{},"k":{},"b":{"107":{"position":[[2037,12],[2071,12]]}}}],["unitmcu",{"_index":2964,"t":{},"d":{},"k":{},"b":{"79":{"position":[[2276,7]]}}}],["unitunit",{"_index":968,"t":{},"d":{},"k":{},"b":{"69":{"position":[[2589,8]]},"146":{"position":[[2238,8]]},"150":{"position":[[2622,8]]}}}],["unitvalu",{"_index":5222,"t":{},"d":{},"k":{},"b":{"106":{"position":[[12337,9]]}}}],["unknown",{"_index":625,"t":{},"d":{},"k":{},"b":{"67":{"position":[[16086,7]]},"113":{"position":[[14132,7]]}}}],["unless",{"_index":1836,"t":{},"d":{},"k":{},"b":{"71":{"position":[[8910,6]]},"128":{"position":[[9291,6]]},"136":{"position":[[6663,6]]},"148":{"position":[[8404,6]]}}}],["unlimit",{"_index":4059,"t":{},"d":{},"k":{},"b":{"88":{"position":[[12332,10]]}}}],["unlock",{"_index":1874,"t":{},"d":{},"k":{},"b":{"71":{"position":[[11475,8]]}}}],["unprovid",{"_index":5661,"t":{},"d":{},"k":{},"b":{"113":{"position":[[6855,10]]}}}],["unrecover",{"_index":1975,"t":{},"d":{},"k":{},"b":{"71":{"position":[[31023,13],[33598,13]]}}}],["unregist",{"_index":2102,"t":{},"d":{},"k":{},"b":{"71":{"position":[[46748,13]]}}}],["unsign",{"_index":6167,"t":{},"d":{},"k":{},"b":{"128":{"position":[[5112,8],[5221,8]]}}}],["unsupport",{"_index":323,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2227,12]]},"113":{"position":[[2237,11]]},"131":{"position":[[18131,12],[18968,12]]},"136":{"position":[[12242,12]]},"139":{"position":[[24289,12],[27551,12]]},"140":{"position":[[22141,12],[24500,12]]}}}],["until",{"_index":720,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5513,5]]},"69":{"position":[[10751,5]]},"75":{"position":[[17380,5],[25212,5]]},"79":{"position":[[6599,5],[18829,5]]},"83":{"position":[[18801,5],[50622,5]]},"84":{"position":[[11036,5]]},"88":{"position":[[3140,5],[5074,5],[5137,5],[6520,5]]},"113":{"position":[[6735,5],[7438,5]]},"124":{"position":[[8704,5],[9309,5]]},"125":{"position":[[11559,5],[12489,5]]},"128":{"position":[[7456,5]]},"131":{"position":[[7905,5],[8354,5],[8692,5],[9272,5],[9426,5]]},"133":{"position":[[5787,5],[9926,5],[10069,5],[10227,5],[10506,5],[10616,5]]},"135":{"position":[[6701,5]]},"138":{"position":[[8591,5],[9203,5]]},"142":{"position":[[7875,5]]},"144":{"position":[[6674,5],[7077,5],[7673,5]]},"145":{"position":[[1656,5],[16334,5],[16810,5]]},"147":{"position":[[5166,5],[5888,5],[5952,5],[6629,5]]}}}],["unus",{"_index":2619,"t":{},"d":{},"k":{},"b":{"76":{"position":[[2590,7]]},"83":{"position":[[5778,7]]},"84":{"position":[[2996,7]]},"85":{"position":[[1900,7],[2009,7],[2618,7]]},"105":{"position":[[4942,7]]},"107":{"position":[[2298,7]]},"111":{"position":[[1872,8]]},"127":{"position":[[2226,5],[2238,5],[2325,5],[2337,5]]},"139":{"position":[[6135,6],[14676,6]]},"141":{"position":[[2131,7],[2266,7]]},"145":{"position":[[2177,6]]},"147":{"position":[[1680,7],[3114,7],[3419,7]]},"150":{"position":[[4128,7],[4447,7],[4773,7],[5118,7]]}}}],["unvalid",{"_index":6566,"t":{},"d":{},"k":{},"b":{"133":{"position":[[1853,7],[29730,7],[29837,7],[48340,7],[55688,7]]}}}],["up",{"_index":819,"t":{},"d":{},"k":{},"b":{"68":{"position":[[13243,2]]},"71":{"position":[[1190,2],[1731,2],[2008,2],[4794,2],[36726,3],[37016,3],[37477,3],[37767,3],[38449,2],[39016,2],[40016,2],[40367,2]]},"75":{"position":[[1201,2],[1240,2],[1435,2],[15707,2],[15737,2],[15771,2],[15800,2],[15833,2],[15861,2],[17116,2],[17139,2],[19954,2],[23723,2],[24964,2]]},"77":{"position":[[3378,2]]},"79":{"position":[[21344,2]]},"83":{"position":[[2665,3],[3148,2],[3776,2],[4113,2],[6467,2],[9130,2],[9228,2],[13118,2],[13248,2],[13958,2],[14110,2],[18501,2],[19042,3],[19456,3],[20137,3],[29443,3],[30904,2],[33305,3],[38859,2],[39173,2]]},"84":{"position":[[2184,2],[5268,2]]},"87":{"position":[[20251,2]]},"88":{"position":[[21043,2],[44185,2],[44335,2],[47814,2]]},"92":{"position":[[1914,3],[21034,2],[21111,3],[23431,2],[23508,3]]},"105":{"position":[[3853,2],[12129,3]]},"111":{"position":[[252,2]]},"113":{"position":[[9824,3]]},"124":{"position":[[1498,2],[1553,2],[1613,2]]},"125":{"position":[[810,2],[865,2],[925,2]]},"131":{"position":[[4659,2],[5440,2]]},"133":{"position":[[7009,3],[8164,2]]},"135":{"position":[[18231,2],[19389,2],[20600,2]]},"137":{"position":[[7246,2]]},"138":{"position":[[1496,2],[1551,2],[6260,2],[6357,2]]},"142":{"position":[[20223,2],[21282,2],[22394,2]]},"144":{"position":[[12997,3]]},"150":{"position":[[23658,2]]},"151":{"position":[[666,2]]},"152":{"position":[[331,2]]}}}],["up/down",{"_index":4448,"t":{},"d":{},"k":{},"b":{"92":{"position":[[1883,7],[1900,8]]}}}],["updat",{"_index":950,"t":{},"d":{},"k":{},"b":{"68":{"position":[[29046,8],[31118,7],[31278,7]]},"69":{"position":[[37745,7],[37905,7]]},"71":{"position":[[1568,6],[9076,6]]},"75":{"position":[[40291,7],[40464,7]]},"76":{"position":[[10060,6],[10094,8],[16220,7],[16254,7],[17593,8],[18234,7],[25437,7],[25612,7]]},"83":{"position":[[5962,7],[6139,7],[16298,8],[16359,7],[16473,6],[18219,7],[18321,7],[23528,6],[23562,8],[25048,6],[25082,8],[32010,6],[48569,7],[50198,7],[50301,7],[50427,7],[51320,7],[51356,7],[51679,7],[53673,7],[53757,8],[55470,8],[56532,7],[57163,7],[57338,7]]},"84":{"position":[[5422,8],[5452,7],[7329,6],[7366,8],[10632,7],[10666,7],[10839,7],[11210,8],[11796,7],[16950,7],[17125,7]]},"87":{"position":[[2235,7],[2675,7]]},"88":{"position":[[3840,8],[5236,7],[17425,6],[23662,7],[26861,7],[31407,7]]},"89":{"position":[[7762,7],[7932,7]]},"90":{"position":[[7312,7],[7482,7]]},"91":{"position":[[8923,7],[9093,7]]},"92":{"position":[[14480,6],[35729,7],[40248,8],[40335,8]]},"95":{"position":[[4103,7],[4276,7]]},"96":{"position":[[3404,7],[3590,7]]},"98":{"position":[[4029,7],[4202,7]]},"99":{"position":[[4050,7],[4223,7]]},"100":{"position":[[3357,7],[3543,7]]},"104":{"position":[[3976,7],[4149,7]]},"105":{"position":[[2830,8],[5126,7],[5303,7],[11163,8],[11208,7],[11305,7],[13590,6],[13624,8],[15366,6],[15400,8],[29980,7],[30625,7],[30725,7],[32685,7],[33050,7],[35058,7],[35142,8],[37434,8],[38067,7],[38242,7]]},"106":{"position":[[25602,7],[25762,7]]},"108":{"position":[[5010,6],[7501,7],[7675,7]]},"113":{"position":[[6449,7]]},"124":{"position":[[19706,7],[19873,7]]},"125":{"position":[[18218,7],[18384,7]]},"128":{"position":[[11305,6]]},"135":{"position":[[21460,6],[23218,7],[23378,7]]},"136":{"position":[[2524,7],[18048,7]]},"138":{"position":[[18461,7],[18628,7]]},"139":{"position":[[21709,7],[26304,7],[26465,7]]},"140":{"position":[[19568,7],[25156,7],[25317,7]]},"142":{"position":[[23155,6],[24957,7],[25117,7]]},"144":{"position":[[6740,6],[7386,7],[7737,7],[12642,7],[12765,7]]},"145":{"position":[[9293,6],[10937,7],[11755,7]]},"146":{"position":[[24010,7],[24170,7]]},"148":{"position":[[14620,7],[14780,7]]},"150":{"position":[[10160,7],[21696,7]]}}}],["upgrad",{"_index":5797,"t":{},"d":{},"k":{},"b":{"113":{"position":[[13036,7]]}}}],["upon",{"_index":2781,"t":{},"d":{},"k":{},"b":{"76":{"position":[[23013,4]]},"84":{"position":[[15603,4]]},"124":{"position":[[4250,4]]},"133":{"position":[[6998,4]]}}}],["upper",{"_index":996,"t":{},"d":{},"k":{},"b":{"69":{"position":[[4959,5],[5018,5],[5897,5],[5956,5],[6174,5],[20488,5],[20615,5]]},"106":{"position":[[9910,5],[10004,5],[11008,5],[11174,5],[11236,5],[11336,5],[15217,5],[16898,5],[17331,5]]},"107":{"position":[[9566,5]]},"130":{"position":[[927,5]]},"132":{"position":[[1167,5],[1232,5]]},"146":{"position":[[1504,5],[2895,5],[2948,5],[4289,5],[15532,5]]}}}],["uptod",{"_index":5795,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12980,9]]}}}],["us",{"_index":18,"t":{},"d":{},"k":{},"b":{"0":{"position":[[196,4],[285,4],[438,3]]},"1":{"position":[[48,3],[211,3],[269,3],[281,4],[392,4],[592,4],[693,4],[732,4],[879,3],[928,4]]},"67":{"position":[[1328,4],[2769,5],[2949,5],[5724,4],[11565,3],[12090,5],[16690,4]]},"68":{"position":[[1563,5],[1615,5],[4888,4],[5069,4],[5103,4],[5176,5],[5694,5],[6506,5],[6577,5],[7555,4],[8764,4],[8852,4],[9340,3],[10850,5],[11960,3],[13716,5],[14827,3],[18157,3],[20162,4],[23570,4],[26022,3],[28848,3],[28869,3]]},"69":{"position":[[2659,5],[3017,4],[6205,4],[10217,4],[12274,5],[12453,4],[13127,3],[14727,4],[14854,5],[21746,3],[23001,4],[29847,4],[33017,3]]},"70":{"position":[[10463,4],[10511,4],[10712,4],[10772,4],[14628,4],[14965,4]]},"71":{"position":[[3643,3],[3963,4],[4150,4],[4242,5],[4722,4],[5580,3],[5911,6],[5971,4],[6083,3],[6324,3],[6765,5],[7234,4],[8230,4],[10138,5],[10498,5],[11083,3],[11615,5],[11634,3],[14973,3],[15398,3],[15846,3],[16293,3],[16741,3],[17188,3],[17640,3],[18091,3],[18539,3],[18986,3],[19434,3],[19881,3],[20331,3],[20780,3],[21230,3],[21679,3],[22127,3],[22574,3],[23024,3],[23473,3],[23921,3],[24368,3],[24818,3],[25267,3],[25717,3],[26166,3],[26614,3],[27061,3],[27511,3],[27960,3],[28394,3],[28821,3],[28968,4],[29761,4],[29788,3],[30110,5],[30184,4],[30742,4],[31543,4],[32336,4],[32363,3],[32685,5],[32759,4],[33317,4],[35783,4],[40116,4],[40204,3],[41398,5],[44316,4],[46019,4],[47991,4],[48184,4]]},"74":{"position":[[959,6],[7276,3],[9550,5],[9603,5]]},"75":{"position":[[909,4],[959,5],[3752,3],[11882,4],[13570,3],[13679,3],[14971,4],[15951,4],[16257,4],[16876,3],[17476,5],[17854,4],[17938,4],[18026,4],[18218,4],[20799,5],[21034,5],[21313,5],[23881,5],[24006,3],[24364,5],[24437,3],[24501,3],[24573,3],[26733,3],[26801,3],[28905,5],[30454,3],[32090,5],[36067,4]]},"76":{"position":[[5481,5],[5540,5],[5612,3],[7223,3],[7954,3],[8691,5],[10706,3],[10833,5],[10962,4],[11324,4],[14892,4],[16383,5],[16496,3],[16623,5],[16752,4],[17114,4]]},"77":{"position":[[772,5],[2410,3],[2787,4],[2923,5],[3185,4],[3481,4],[3794,3]]},"78":{"position":[[139,5],[278,5],[871,4],[4006,3]]},"79":{"position":[[1163,5],[5654,4],[5714,5],[5791,5],[5865,3],[7619,5],[7860,3],[9618,4],[14397,5],[14742,5],[15680,5]]},"80":{"position":[[696,4],[2982,3],[3162,3],[4517,5],[4951,5],[5123,3],[9031,3]]},"81":{"position":[[3671,3]]},"82":{"position":[[1126,4],[1197,5],[5497,3],[6870,5],[6931,5],[6993,5],[7056,5]]},"83":{"position":[[1695,4],[6529,3],[6722,5],[8634,4],[15324,5],[15408,3],[15505,3],[15592,3],[18165,5],[19930,4],[20494,3],[21161,3],[21383,4],[21444,3],[22022,5],[24163,3],[24272,5],[24402,4],[24755,4],[25976,4],[26383,5],[28591,4],[31793,4],[31975,4],[32178,4],[32267,4],[32372,4],[32508,4],[32741,4],[32829,4],[33258,4],[46654,5],[47228,3],[50385,5]]},"84":{"position":[[1116,4],[6025,3],[6698,3],[7979,3],[8111,5],[8196,4],[8530,4],[9778,3],[9828,3],[10797,5],[11159,5],[15792,4],[15927,4]]},"85":{"position":[[8220,3],[9223,3],[9279,3]]},"86":{"position":[[5927,3],[6916,3],[6971,3]]},"87":{"position":[[1874,4],[2183,5],[4225,4],[7969,4],[8051,4],[8625,4],[9340,4],[9553,3],[9649,4],[9775,4],[10100,4],[10617,4],[12818,4],[13376,4],[14114,3],[19203,3],[19314,3]]},"88":{"position":[[2399,4],[3010,5],[3171,5],[4277,5],[6056,5],[6178,5],[6349,5],[6691,5],[13786,4],[15188,4],[15649,5],[15797,5],[16430,3],[16468,3],[16850,4],[17286,5],[19213,5],[20499,3],[21143,3],[21626,5],[22370,3],[23273,4],[23698,5],[24244,5],[26408,3],[26908,5],[30085,3],[30992,4],[31222,4],[31443,5],[44924,4],[45117,5],[45222,3],[48854,5],[48926,3],[49002,3],[49083,3],[49183,3],[49286,3],[49393,3],[49500,3],[55107,4],[60007,4],[60911,4]]},"89":{"position":[[1053,4],[3136,4],[3231,3],[4621,4],[4670,4],[5394,3]]},"90":{"position":[[1042,4],[2854,4],[2949,3],[4253,4],[4302,4],[5019,3]]},"91":{"position":[[1062,4],[3216,4],[3311,3],[5025,4],[5074,4],[6574,3]]},"92":{"position":[[1969,4],[2040,4],[10575,4],[11280,4],[12385,4],[12695,3],[13608,4],[14782,5],[31283,5],[31932,5],[32847,5],[36738,5],[37750,5]]},"93":{"position":[[802,3],[3117,3],[8160,3],[8622,4]]},"94":{"position":[[4799,3]]},"101":{"position":[[4561,3]]},"103":{"position":[[3247,3]]},"105":{"position":[[1526,4],[10916,5],[11001,3],[11088,3],[12246,3],[12919,3],[14457,3],[14570,5],[14709,4],[15061,4],[31096,3],[31209,5],[31348,4],[31700,4],[32994,5]]},"106":{"position":[[12672,4],[13544,3],[21763,5],[22556,5],[23364,5],[24910,5]]},"107":{"position":[[840,4],[1208,4],[2230,3],[7139,3],[7846,5],[7942,5],[8039,5],[8136,5],[8233,5],[8329,5],[8425,5],[8521,5],[8617,5],[9837,4]]},"108":{"position":[[671,4],[2996,3],[3198,4],[3237,4],[3279,4],[3381,5],[3561,5],[3794,3],[4126,5],[6260,3],[8632,5]]},"109":{"position":[[1114,4],[5334,3],[6571,5],[6891,5]]},"113":{"position":[[1103,4],[1166,4],[1207,5],[1408,5],[1447,4],[1714,4],[14510,4]]},"115":{"position":[[140,3],[174,5]]},"116":{"position":[[685,4],[1049,3],[1166,4],[1306,3]]},"124":{"position":[[1832,3],[3817,3],[4519,4],[4817,4],[5261,4],[5761,4],[5999,4],[6530,5],[6678,4],[6749,5],[7147,3],[7233,4],[9838,4],[18125,4]]},"125":{"position":[[2793,4],[3625,4],[4068,4],[4565,4],[5985,3],[7744,5],[8155,3],[8240,4]]},"126":{"position":[[1152,4],[1160,5],[3925,3]]},"127":{"position":[[1475,4],[2176,5],[2233,3],[2274,5],[2332,3],[2372,5],[2774,5],[3059,4],[3125,5],[3391,5],[3412,4],[3955,3],[6715,5],[6765,4]]},"128":{"position":[[359,3],[792,4],[910,3],[1034,3],[1178,3],[1239,3],[1289,3],[1337,3],[1563,4],[1573,3],[1678,4],[1921,4],[1931,3],[2124,4],[2324,3],[2375,3],[2407,3],[2710,4],[3038,4],[3213,3],[3284,3],[3319,4],[4105,4],[4269,6],[4808,3],[5243,5],[5507,4],[5562,5],[5773,5],[5843,3],[7181,5],[7736,3],[7795,3],[7929,3],[8177,3],[8486,3],[8685,3],[9306,5],[9487,5],[9666,3],[9885,3],[9934,3],[9972,4],[10211,3],[10441,3],[10494,3],[10665,4],[11171,4],[11236,4],[11614,5],[11837,4],[11937,4],[12048,5],[12253,4],[12340,3],[13008,4],[13407,4],[14441,3],[15539,5],[17546,4],[18110,5],[18457,5],[18904,3],[18999,3],[19071,3],[19133,3],[19196,4],[19518,3],[19606,5],[19892,3],[19995,3],[20251,3],[20312,3],[20327,3],[20785,3],[20858,3],[21022,3],[21055,3],[21246,3],[21310,3],[21333,3],[21647,3],[21819,5],[21944,5],[22227,3],[22262,3],[22340,3],[22570,4],[23300,4],[23728,3],[23873,4],[24627,4],[25065,4],[25371,5],[25517,5],[25794,4],[25866,3],[26422,5],[26596,4],[26712,4],[26812,3],[29986,4],[30155,3]]},"129":{"position":[[4054,3],[4818,5],[5084,5],[5450,3]]},"131":{"position":[[4223,3],[7227,5],[7493,5],[9640,3]]},"133":{"position":[[835,5],[1165,5],[2238,5],[2617,5],[2988,5],[3367,5],[3747,5],[4126,5],[4495,5],[6829,4],[7567,5],[7693,5],[8857,5],[9123,5],[11119,3],[53257,5],[54061,5],[56636,5],[57486,5],[58323,5],[59174,5],[60025,5],[60875,5],[61709,5]]},"135":{"position":[[3373,5],[5664,4],[6175,3],[6809,4],[7117,5],[7601,3],[7847,3],[7944,5],[8316,3],[17131,3],[19203,5]]},"136":{"position":[[1274,4],[1748,4],[2574,5],[2842,4],[6308,3],[7092,5],[7213,4],[7373,4],[7525,3],[18326,3]]},"137":{"position":[[1024,4],[2767,4],[9167,3]]},"138":{"position":[[1846,3],[3543,5],[5356,4],[5739,4],[7476,4],[7547,5],[7744,3],[7828,4],[9737,4],[15112,4],[16292,4],[17575,4]]},"139":{"position":[[2370,5],[3323,5],[3907,4],[3969,5],[4834,3],[5681,4],[5743,4],[6153,4],[7512,4],[7763,4],[8016,3],[8130,4],[8339,4],[8386,4],[14727,5],[15204,3],[15288,3],[15371,3],[15430,3],[15650,3],[15707,3],[15776,3],[15854,3],[18710,4],[19618,4],[20863,4],[21731,5],[22075,3],[23125,5]]},"140":{"position":[[2276,5],[3423,4],[3485,5],[4596,4],[4658,4],[6421,4],[6558,4],[6657,4],[12005,3],[12088,3],[12170,3],[12228,3],[17239,4],[18104,4],[19035,4],[19590,5],[19933,3],[20979,5]]},"141":{"position":[[112,5],[1239,5],[2054,3],[2190,3],[7277,3]]},"142":{"position":[[2122,5],[2465,5],[4696,4],[5433,5],[6198,4],[6361,4],[6925,5],[7055,3],[7453,5],[7489,3],[7983,4],[8291,5],[8826,5],[9304,3],[13785,4],[18966,3],[21096,5],[24218,4]]},"143":{"position":[[1663,4],[1933,4],[2032,3],[2132,4],[2232,4],[2485,4],[9709,4],[10278,3],[12809,5],[12933,5],[13095,5]]},"144":{"position":[[1267,4],[2223,4],[9991,3]]},"145":{"position":[[1207,5],[1402,5],[1531,5],[1681,4],[1711,5],[2053,5],[3303,5],[6235,4],[8935,5],[9939,3],[11282,5],[11477,5],[15652,5]]},"146":{"position":[[2310,5],[2572,4],[3844,3],[3871,5],[4452,3],[16952,4]]},"147":{"position":[[3048,4],[3356,4],[5161,4],[5883,4],[9234,3]]},"148":{"position":[[804,4],[1433,5],[3599,5],[3657,5],[3811,4],[4406,5],[5063,3],[5848,5],[6700,5],[9974,4]]},"149":{"position":[[1069,4],[5945,3]]},"150":{"position":[[2780,4],[3117,5],[6075,5],[6134,5],[7061,3],[7101,5],[8629,4],[10960,5],[11928,5]]},"151":{"position":[[28,5],[112,3],[211,3],[320,5],[504,5],[573,3],[731,6],[1902,4],[2093,4],[2173,4],[2332,4],[2476,3],[2640,3],[2824,4],[3006,4]]},"152":{"position":[[6577,3],[6611,5]]}}}],["us)must",{"_index":4048,"t":{},"d":{},"k":{},"b":{"88":{"position":[[10512,8],[14582,8],[14768,8]]}}}],["usabl",{"_index":748,"t":{},"d":{},"k":{},"b":{"68":{"position":[[7777,6],[8253,6],[8559,6]]}}}],["usag",{"_index":717,"t":{},"d":{},"k":{},"b":{"68":{"position":[[5237,5]]},"69":{"position":[[10237,5],[13046,5]]},"71":{"position":[[2844,5]]},"75":{"position":[[12609,5],[12765,5],[12933,5],[13187,5],[13339,5],[13504,5],[16058,5]]},"76":{"position":[[6349,5]]},"77":{"position":[[2425,5]]},"79":{"position":[[5880,5]]},"80":{"position":[[2491,5],[4431,5]]},"83":{"position":[[15655,5]]},"84":{"position":[[5010,5]]},"88":{"position":[[17081,5]]},"89":{"position":[[3160,5]]},"90":{"position":[[2878,5]]},"91":{"position":[[3240,5]]},"92":{"position":[[10602,5]]},"105":{"position":[[11151,5]]},"106":{"position":[[12963,5]]},"108":{"position":[[3086,5]]},"116":{"position":[[912,5]]},"124":{"position":[[5492,5]]},"125":{"position":[[4299,5]]},"127":{"position":[[3099,5]]},"128":{"position":[[222,5]]},"129":{"position":[[4093,5]]},"131":{"position":[[4262,5]]},"133":{"position":[[6867,5]]},"135":{"position":[[5833,5]]},"136":{"position":[[6323,5]]},"138":{"position":[[5587,5]]},"139":{"position":[[8027,5]]},"140":{"position":[[6723,5]]},"142":{"position":[[6557,5]]},"146":{"position":[[3859,5]]},"148":{"position":[[3901,5]]},"150":{"position":[[6493,5]]},"151":{"position":[[1032,5],[1410,5],[1547,5]]}}}],["usb",{"_index":5625,"t":{},"d":{},"k":{},"b":{"113":{"position":[[5439,3],[5472,3]]}}}],["use)must",{"_index":2317,"t":{},"d":{},"k":{},"b":{"75":{"position":[[11949,8]]}}}],["user",{"_index":144,"t":{},"d":{},"k":{},"b":{"1":{"position":[[783,4]]},"67":{"position":[[1419,4],[3510,4],[3535,4]]},"68":{"position":[[4449,4],[9997,5],[12691,5],[12863,4],[15558,5],[15730,4],[31130,4]]},"69":{"position":[[8379,4],[13879,5],[15301,5],[29759,4],[37757,4]]},"71":{"position":[[3493,4],[3909,4],[4104,4],[4581,4],[4617,4],[4854,4],[5512,4],[5735,4],[6073,4],[9472,4],[11681,4],[29471,4],[31125,4],[31148,4],[32046,4],[33700,4],[33723,4],[40074,4]]},"74":{"position":[[2425,4],[2805,4],[4245,5],[4367,5]]},"75":{"position":[[14108,4],[17443,4],[21915,4],[28100,5],[29246,5],[40303,4]]},"76":{"position":[[4066,4],[6243,4],[7472,5],[8313,5],[9770,5],[10512,5],[23315,5],[25449,4]]},"78":{"position":[[841,4]]},"79":{"position":[[3691,4],[8126,5],[9161,4],[11453,4],[11478,4]]},"80":{"position":[[7967,5]]},"82":{"position":[[843,4],[1096,4],[1994,4],[2019,4],[3161,5],[3278,5]]},"83":{"position":[[10855,4],[20740,5],[21648,5],[23299,5],[23976,5],[25521,5],[26818,5],[57175,4]]},"84":{"position":[[3824,4],[4904,4],[6269,5],[6986,5],[7778,5],[16962,4]]},"85":{"position":[[899,4],[2159,4],[4423,5]]},"86":{"position":[[818,4],[2005,4],[3721,5]]},"87":{"position":[[3430,4],[4092,4],[4195,4],[4416,4],[4921,4],[6831,5],[6952,5]]},"88":{"position":[[13995,4],[17296,4],[17694,4],[28560,4],[28597,4],[34073,4],[34113,4]]},"89":{"position":[[1423,4],[2494,4],[4920,4],[4945,4],[7774,4]]},"90":{"position":[[1382,4],[2212,4],[4552,4],[4577,4],[7324,4]]},"91":{"position":[[1431,4],[2571,4],[5320,4],[5345,4],[8935,4]]},"92":{"position":[[2554,4],[10853,5],[11525,5],[11907,5],[12119,5],[13080,5],[13917,5],[15275,5]]},"94":{"position":[[963,4],[2088,4],[2113,4],[3017,5]]},"95":{"position":[[4115,4]]},"96":{"position":[[3416,4]]},"98":{"position":[[4041,4]]},"99":{"position":[[4062,4]]},"100":{"position":[[3369,4]]},"101":{"position":[[985,4],[2109,4],[2134,4],[3101,5]]},"103":{"position":[[960,4],[1386,4],[1411,4],[2231,5]]},"104":{"position":[[3988,4]]},"105":{"position":[[7790,4],[12495,5],[13249,5],[14054,5],[15843,5],[38079,4]]},"106":{"position":[[11406,4],[13870,5],[14050,5],[25614,4]]},"107":{"position":[[743,4],[1178,4],[2619,4],[2644,4],[3977,5],[4098,5]]},"108":{"position":[[2503,4],[3326,4],[4039,5],[7513,4]]},"109":{"position":[[971,4],[1084,4],[1948,4],[1973,4],[3009,5],[3130,5]]},"113":{"position":[[7860,4]]},"116":{"position":[[458,6],[1022,4]]},"124":{"position":[[1401,4],[4148,4],[8271,5],[10868,5],[19718,4]]},"125":{"position":[[3421,4],[5928,4],[6167,4],[10889,5],[18230,4]]},"126":{"position":[[1418,4]]},"127":{"position":[[2985,4],[3818,4],[5892,5],[6992,4]]},"128":{"position":[[100,5],[10770,4],[14300,6],[18372,4]]},"129":{"position":[[3980,4],[5313,4],[7508,5],[11010,4]]},"130":{"position":[[1630,4]]},"131":{"position":[[4139,4],[6183,4],[6220,4],[7135,4],[8564,4],[8948,4],[11767,5],[15272,4]]},"132":{"position":[[2185,4]]},"133":{"position":[[5431,5],[5474,5],[6634,4],[6751,4],[9356,4],[10427,4],[13767,5],[17901,5],[22205,5],[27219,5],[33372,5],[37487,5],[41792,5],[46044,5],[50649,4]]},"134":{"position":[[3847,4]]},"135":{"position":[[4696,4],[8687,5],[9776,5],[11567,5],[23230,4]]},"136":{"position":[[1926,4],[2189,4],[5450,4],[8001,5],[8492,5],[9163,5],[18060,4]]},"137":{"position":[[1136,4],[2737,4],[3457,4]]},"138":{"position":[[1399,4],[4604,4],[8138,5],[10063,5],[13913,4],[15884,5],[16749,4],[18473,4]]},"139":{"position":[[1395,4],[2378,4],[6500,4],[19324,4],[20562,4],[26316,4]]},"140":{"position":[[1416,4],[2284,4],[5307,4],[17810,4],[18734,4],[25168,4]]},"141":{"position":[[888,4],[2339,4],[2392,4],[3619,4]]},"142":{"position":[[4155,4],[9672,5],[10776,5],[12629,5],[24969,4]]},"143":{"position":[[1634,4]]},"144":{"position":[[1164,4],[2193,4],[3273,4],[3298,4],[4784,5],[4905,5]]},"145":{"position":[[4803,5],[4924,5],[5285,5]]},"146":{"position":[[3046,4],[5758,5],[8925,5],[12146,5],[13155,6],[24022,4]]},"147":{"position":[[1737,4],[2762,4],[4816,5],[4944,5]]},"148":{"position":[[2658,4],[3242,4],[4657,4],[5398,5],[8176,5],[14632,4]]},"149":{"position":[[891,4],[1998,4],[2146,4],[2171,4]]},"150":{"position":[[7156,4]]},"151":{"position":[[1198,4],[1514,4],[1718,4],[2749,4]]}}}],["user'",{"_index":750,"t":{},"d":{},"k":{},"b":{"68":{"position":[[8225,6]]},"71":{"position":[[1117,6],[1157,6]]},"75":{"position":[[25045,6],[30545,6]]},"79":{"position":[[1449,6],[5591,6]]},"80":{"position":[[2285,6],[2547,6],[3778,6]]},"111":{"position":[[179,6],[219,6]]},"116":{"position":[[352,6]]},"136":{"position":[[1891,6],[3594,6]]},"148":{"position":[[2071,6]]},"150":{"position":[[1994,6]]},"152":{"position":[[258,6],[298,6]]}}}],["usual",{"_index":2845,"t":{},"d":{},"k":{},"b":{"77":{"position":[[3310,7]]},"141":{"position":[[10631,7]]}}}],["util",{"_index":5999,"t":{},"d":{},"k":{},"b":{"125":{"position":[[7845,7]]}}}],["uxidletaskstack",{"_index":6312,"t":{},"d":{},"k":{},"b":{"128":{"position":[[23087,16],[23361,16]]}}}],["uxtaskgetstackhighwatermark",{"_index":6346,"t":{},"d":{},"k":{},"b":{"128":{"position":[[28740,29],[28816,29]]}}}],["uxtaskpriorityget",{"_index":6338,"t":{},"d":{},"k":{},"b":{"128":{"position":[[27752,19],[27817,19]]}}}],["uxtimertaskstack",{"_index":6321,"t":{},"d":{},"k":{},"b":{"128":{"position":[[24407,17],[24690,17]]}}}],["v",{"_index":7740,"t":{},"d":{},"k":{},"b":{"144":{"position":[[11435,2]]}}}],["v1.0",{"_index":3840,"t":{},"d":{},"k":{},"b":{"87":{"position":[[864,6]]},"88":{"position":[[16662,4],[20739,6],[20788,4],[21253,5],[21301,4],[21546,5],[42019,6],[43009,6],[43246,6],[43350,6],[43452,6],[43591,6],[43732,6],[46595,6],[46798,6],[46986,6],[49761,6],[50286,6],[50836,6]]}}}],["v1.1",{"_index":3940,"t":{},"d":{},"k":{},"b":{"87":{"position":[[14841,5]]},"88":{"position":[[22171,6],[44246,6],[44391,6]]}}}],["valid",{"_index":292,"t":{},"d":{},"k":{},"b":{"67":{"position":[[1491,5],[1605,5],[10392,5]]},"68":{"position":[[2503,5],[3063,5],[4124,5],[4253,5],[4428,5],[5903,5],[9196,5],[17178,5],[21516,5]]},"69":{"position":[[2544,5],[7524,6],[8358,5],[19259,5],[21014,5],[21068,5],[21113,5],[21258,5]]},"71":{"position":[[45058,5]]},"74":{"position":[[1482,5],[7093,5]]},"75":{"position":[[11762,5],[11963,5],[12061,5],[12198,5],[12326,5],[14076,5],[14846,5]]},"76":{"position":[[2311,5],[4045,5],[17682,5],[23572,5]]},"77":{"position":[[2017,5]]},"79":{"position":[[2235,5],[2346,5],[3670,5],[17629,6]]},"82":{"position":[[4895,5]]},"83":{"position":[[5254,5],[10834,5],[13516,5],[13751,5],[13983,5],[14197,5]]},"84":{"position":[[2728,5],[3104,5],[3364,5],[3803,5],[11299,5],[16134,5]]},"85":{"position":[[7269,5]]},"86":{"position":[[5417,5]]},"88":{"position":[[13904,5],[13963,5],[14172,5],[22078,5]]},"89":{"position":[[2080,5],[2473,5]]},"90":{"position":[[2028,5],[2191,5]]},"91":{"position":[[2083,5],[2550,5]]},"92":{"position":[[3094,5],[3179,5],[32213,5],[33128,5],[34522,5],[35791,5],[36932,5],[38331,5],[40446,5]]},"94":{"position":[[4276,5]]},"101":{"position":[[3987,5]]},"105":{"position":[[4546,5],[7769,5],[8800,5],[9037,5],[32135,5],[33152,5]]},"106":{"position":[[11385,5],[12301,5],[15854,5]]},"107":{"position":[[6956,5]]},"108":{"position":[[1691,5],[2482,5]]},"109":{"position":[[4203,5]]},"113":{"position":[[3610,5],[13617,5],[14521,5]]},"124":{"position":[[2791,5],[4127,5],[6541,5]]},"125":{"position":[[2385,5],[3400,5]]},"127":{"position":[[2950,5]]},"128":{"position":[[11561,10]]},"129":{"position":[[3948,5],[4148,5]]},"131":{"position":[[4097,5],[6892,5]]},"133":{"position":[[1358,5],[1698,5],[6590,5],[6713,5],[29645,9],[48255,9],[54893,5],[55533,5]]},"135":{"position":[[2239,5],[4675,5]]},"136":{"position":[[2289,10],[2358,10],[4668,5],[5429,5],[13953,5],[14730,5],[16208,5]]},"138":{"position":[[3068,5],[3725,5],[4562,5],[6650,5]]},"139":{"position":[[2792,5],[3775,5],[5024,5],[5284,5],[6479,5],[19692,5],[20932,5]]},"140":{"position":[[2541,5],[3291,5],[5286,5]]},"141":{"position":[[6752,5]]},"142":{"position":[[2929,5],[4126,5]]},"144":{"position":[[1357,5],[9446,5]]},"145":{"position":[[5160,6],[5728,6]]},"146":{"position":[[2193,5],[3025,5],[19803,5]]},"147":{"position":[[8342,5]]},"148":{"position":[[1032,5],[2002,5],[3221,5]]},"149":{"position":[[5762,5]]},"150":{"position":[[2575,5],[5842,5],[5934,5]]}}}],["valu",{"_index":442,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8047,5],[8526,5]]},"68":{"position":[[13288,5],[23525,6],[24254,6],[24931,6],[25360,6],[26052,6],[26332,6],[26941,6],[27557,6],[28238,6],[28885,6],[29002,6],[29518,6],[30083,6],[30514,6],[31244,6]]},"69":{"position":[[3337,7],[4914,6],[5035,6],[5852,6],[5973,6],[6067,6],[6190,6],[14886,5],[16549,6],[20442,6],[20504,6],[20567,6],[20631,6],[29802,6],[30681,6],[31483,6],[32346,6],[33047,6],[33689,6],[34341,6],[34957,6],[35638,6],[36115,6],[36691,6],[37133,6],[37871,6]]},"70":{"position":[[13950,6]]},"71":{"position":[[6650,5],[11900,5],[14918,5],[15343,5],[15791,5],[16238,5],[16686,5],[17133,5],[17585,5],[18036,5],[18484,5],[18931,5],[19379,5],[19826,5],[20276,5],[20725,5],[21175,5],[21624,5],[22072,5],[22519,5],[22969,5],[23418,5],[23866,5],[24313,5],[24763,5],[25212,5],[25662,5],[26111,5],[26559,5],[27006,5],[27456,5],[27905,5],[28333,5],[28760,5],[38122,6],[41276,6],[41740,6],[42302,6],[43155,6],[43822,6],[44661,5],[45064,6],[46915,6],[47214,5],[47258,5]]},"74":{"position":[[1488,7],[4251,5]]},"75":{"position":[[1670,5],[2420,6],[3783,5],[4223,5],[4338,5],[4439,7],[4950,5],[5065,5],[5166,7],[5677,5],[5792,5],[5893,7],[6404,5],[6519,5],[6620,7],[7131,5],[7246,5],[7347,7],[7858,5],[7973,5],[8074,7],[8585,5],[8700,5],[8801,7],[9312,5],[9427,5],[9528,7],[11254,5],[11398,5],[12589,6],[12647,6],[12745,6],[12803,6],[12913,6],[12971,6],[13167,6],[13225,6],[13319,6],[13377,6],[13484,6],[13542,6],[13687,6],[13933,6],[15395,6],[18991,6],[20282,6],[21455,6],[21797,6],[21992,6],[22338,5],[22388,5],[23165,5],[23239,5],[23431,5],[23776,5],[23830,5],[35926,6],[36478,6],[37191,6],[38106,6],[39025,6],[39623,6],[40430,6]]},"76":{"position":[[1779,6],[5860,5],[6267,6],[6339,8],[8516,6],[8531,5],[9891,6],[10265,5],[11653,5],[14063,6],[15764,6],[17443,5],[17555,6],[17587,5],[18391,6],[18652,5],[18702,6],[19145,6],[19618,6],[19701,6],[20239,6],[20996,6],[21549,5],[21656,6],[21671,5],[21788,6],[21840,5],[22293,6],[23411,6],[24259,6],[24756,6],[25578,6]]},"77":{"position":[[664,6],[3449,5],[4701,5],[5625,6],[6003,6],[6751,6],[6821,5],[6834,6],[6997,5],[7413,6],[7493,6],[7545,6],[7559,6],[7605,5],[8336,5],[8404,6],[8864,6]]},"78":{"position":[[2414,6],[2659,6],[2803,5],[3820,5]]},"79":{"position":[[12943,6],[13013,6],[13083,6],[13153,6],[13225,6],[13297,6],[13369,6],[13443,6],[16697,6],[17409,6],[18292,6],[18878,6],[19374,6],[19835,6],[19868,5],[20321,6],[20354,5],[20919,6],[21403,6],[22159,6]]},"80":{"position":[[9090,6],[9478,6],[10071,6],[10690,6],[11202,6],[11591,6],[11903,6]]},"82":{"position":[[3167,5]]},"83":{"position":[[2623,6],[3051,5],[13571,5],[13631,5],[13806,5],[13866,5],[14038,5],[14252,5],[15753,5],[16104,5],[16176,5],[17663,7],[21849,6],[21864,5],[23362,6],[23731,5],[25272,5],[26460,6],[26587,6],[27225,6],[27435,6],[29424,5],[29497,5],[29580,6],[29645,6],[38090,7],[41034,5],[41142,5],[46855,6],[47812,6],[48174,6],[48503,5],[48680,6],[48713,5],[49120,6],[49664,6],[50138,5],[50684,6],[50716,5],[51643,6],[52460,6],[53087,6],[53144,5],[53580,6],[53655,5],[53718,6],[53751,5],[54303,6],[54801,6],[55417,6],[55431,6],[55464,5],[56159,6],[57304,6],[57851,6],[58329,6]]},"84":{"position":[[1602,6],[3116,5],[3187,5],[3275,5],[3346,5],[4470,5],[4928,6],[5000,8],[5087,5],[5352,5],[5385,5],[7194,6],[7209,5],[7535,5],[10178,6],[10726,6],[11172,6],[11204,5],[11953,6],[12174,5],[12243,6],[12545,6],[12981,6],[13357,6],[13846,6],[14397,5],[14470,6],[14522,5],[14888,6],[15973,6],[17091,6]]},"87":{"position":[[2256,5]]},"88":{"position":[[4806,5],[5470,5],[16256,6],[19619,5],[51768,6],[52229,6],[52816,6],[53730,6],[54372,6],[55134,6],[56067,6],[56874,6],[58093,6],[59079,6],[60035,6],[60940,6],[61557,6]]},"89":{"position":[[5563,6],[6389,6],[6942,6],[7898,6],[8463,6]]},"90":{"position":[[5178,6],[5939,6],[6492,6],[7448,6],[8013,6]]},"91":{"position":[[6734,6],[7554,6],[8101,6],[9059,6],[9626,6]]},"92":{"position":[[1394,6],[4238,5],[4343,5],[4448,5],[4553,5],[4658,5],[4763,5],[4868,5],[4973,5],[5671,5],[5776,5],[5881,5],[5986,5],[6091,5],[6196,5],[6301,5],[6406,5],[11483,5],[18548,6],[21486,5],[21547,5],[21608,5],[21669,5],[22605,5],[22686,5],[22767,5],[22848,5],[23883,5],[23944,5],[24005,5],[24066,5],[25002,5],[25083,5],[25164,5],[25245,5],[26579,5],[27876,5],[28016,5],[28124,5],[28947,6],[29345,6],[30020,7],[30172,6],[30787,6],[31725,5],[32051,6],[32785,5],[33026,6],[33118,5],[33781,6],[34428,6],[35592,7],[35689,6],[36364,5],[36515,5],[36857,6],[37935,5],[38046,5],[38236,6],[38926,5],[39090,5],[39205,6],[39694,6],[39933,5],[39994,5],[40230,5],[40270,5],[40351,6]]},"93":{"position":[[738,5],[2799,6],[7153,5],[7554,6],[7716,6]]},"95":{"position":[[2289,6],[2996,6],[3418,6],[4242,6]]},"96":{"position":[[1989,6],[2650,6],[3556,6],[4112,6]]},"97":{"position":[[1733,6],[2333,6],[2802,6]]},"98":{"position":[[2224,6],[2927,6],[3347,6],[4168,6]]},"99":{"position":[[2254,6],[2953,6],[3371,6],[4189,6]]},"100":{"position":[[1956,6],[2609,6],[3509,6],[4059,6]]},"102":{"position":[[1702,6],[2294,6],[2759,6]]},"104":{"position":[[2189,6],[2884,6],[3300,6],[4115,6]]},"105":{"position":[[2519,6],[2589,5],[2820,5],[2857,6],[5479,6],[5628,6],[5777,6],[5926,6],[8855,5],[9092,5],[11817,7],[13452,6],[13467,5],[13807,5],[15592,5],[27349,5],[27459,5],[28481,6],[29143,6],[29583,6],[29914,5],[30092,6],[30125,5],[30565,5],[31995,6],[32027,5],[32907,5],[33014,6],[33699,6],[34338,6],[34353,5],[34470,6],[34527,5],[34965,6],[35040,5],[35103,6],[35136,5],[35689,6],[36178,6],[36529,6],[36817,6],[37359,6],[37395,6],[37428,5],[38208,6],[38653,6]]},"106":{"position":[[20757,6],[21823,6],[22615,6],[23621,6],[24431,6],[24923,6],[25728,6]]},"107":{"position":[[9757,6]]},"108":{"position":[[5954,6],[6807,6],[7641,6],[8168,6],[8723,6],[9155,6]]},"113":{"position":[[2818,5],[2859,5],[10567,5],[10899,5],[10976,5]]},"116":{"position":[[1334,6]]},"124":{"position":[[3188,8],[3374,5],[4642,5],[4736,5],[6122,5],[6216,5],[14674,6],[15781,6],[16732,6],[17308,6],[18234,6],[18839,6],[19839,6],[20477,6]]},"125":{"position":[[14477,6],[15989,6],[17099,6],[17523,6],[18350,6]]},"127":{"position":[[7532,6],[8064,6],[8686,6],[9317,6],[9925,6]]},"128":{"position":[[2839,5],[3933,5],[4174,5],[13249,7],[13317,5],[14678,6],[16742,5],[18818,6],[25775,5]]},"129":{"position":[[3011,5],[9482,6],[11663,6],[12161,6],[12728,6],[13271,6],[14012,6],[14688,6],[15755,6],[16686,6],[17553,6]]},"130":{"position":[[3992,6]]},"131":{"position":[[2456,5],[13970,6],[16397,6],[16987,6],[17849,6],[18673,6],[19664,6],[20497,6]]},"132":{"position":[[4538,6]]},"133":{"position":[[5941,6],[9842,6],[51562,6],[52181,6],[52755,6],[53345,6],[54111,6],[55134,6],[55762,6],[56704,6],[57554,6],[58386,6],[59243,6],[60093,6],[60943,6],[61771,6],[62230,6]]},"134":{"position":[[7953,6],[8486,6],[8998,6],[9531,6],[10065,6],[10598,6],[11106,6]]},"135":{"position":[[2926,5],[2958,5],[2986,5],[3015,5],[3204,5],[3312,5],[12467,5],[12535,6],[17177,6],[18289,6],[19448,6],[20663,6],[21543,6],[22086,5],[22162,5],[22557,6],[22602,6],[23344,6]]},"136":{"position":[[2741,6],[5346,5],[11381,6],[11844,6],[12262,6],[12943,6],[13726,6],[14438,6],[15136,6],[15975,6],[16652,6],[16922,6],[17365,6],[18174,6]]},"137":{"position":[[1284,5],[1583,5],[2932,5]]},"138":{"position":[[3193,5],[3778,5],[6242,5],[12150,6],[13137,6],[14080,6],[14887,6],[16094,6],[16916,6],[17684,6],[18594,6],[19228,6]]},"139":{"position":[[3830,5],[18310,6],[19423,6],[20661,6],[21921,6],[22634,6],[23182,6],[24047,6],[25500,6],[26431,6],[27309,6]]},"140":{"position":[[3346,5],[16929,6],[17909,6],[18833,6],[19779,6],[20490,6],[21036,6],[21899,6],[23420,6],[24258,6],[25283,6]]},"142":{"position":[[4730,5],[4762,5],[4790,5],[4819,5],[5264,5],[5372,5],[13890,5],[14148,6],[19012,6],[20281,6],[21341,6],[22457,6],[23238,6],[23875,5],[24307,6],[24352,6],[25083,6]]},"143":{"position":[[6756,6]]},"144":{"position":[[1865,6],[2036,6],[2297,5],[5685,6],[8394,5],[11797,6],[12722,6]]},"145":{"position":[[11263,7],[12616,6],[12679,6],[12742,6],[12804,6],[12867,6],[12930,6],[12993,6],[13058,6],[13123,6],[13188,6],[13255,6],[13317,6],[13380,6],[13443,6],[13506,6],[13571,6],[13636,6],[13701,6],[13768,6],[14985,5],[15132,5]]},"146":{"position":[[2673,6],[2713,6],[4001,5],[4188,6],[4326,5],[6147,6],[9314,6],[12535,6],[13078,5],[14356,6],[14774,5],[15496,6],[15548,6],[16907,6],[17238,6],[17629,6],[18348,6],[19019,6],[19575,6],[20320,6],[20918,6],[21549,6],[21905,6],[22382,6],[22884,6],[23398,6],[24136,6],[24826,5],[24903,6]]},"147":{"position":[[4822,5]]},"148":{"position":[[8886,6],[10194,6],[10768,6],[11078,6],[11826,6],[12608,6],[13106,5],[13211,6],[13330,6],[13923,6],[14746,6]]},"149":{"position":[[4551,6],[4719,6],[4925,7],[5085,7]]},"150":{"position":[[9651,6],[9659,6],[19380,6],[19929,6],[20658,6],[21196,6],[21658,6],[22144,6],[22564,6],[23279,6],[24305,6],[25137,6],[25752,6],[26590,6],[27155,6]]}}}],["value)valu",{"_index":4880,"t":{},"d":{},"k":{},"b":{"105":{"position":[[5386,11],[5535,11],[5684,11],[5833,11]]}}}],["value0x00",{"_index":7085,"t":{},"d":{},"k":{},"b":{"138":{"position":[[3213,9]]}}}],["value=valu",{"_index":6858,"t":{},"d":{},"k":{},"b":{"135":{"position":[[14460,11]]},"142":{"position":[[16646,11]]}}}],["valuevalu",{"_index":6945,"t":{},"d":{},"k":{},"b":{"136":{"position":[[5262,10]]},"146":{"position":[[2791,10],[2907,10]]}}}],["vapplicationdaemontaskstartuphook",{"_index":6292,"t":{},"d":{},"k":{},"b":{"128":{"position":[[20732,34]]}}}],["vapplicationgetidletaskmemori",{"_index":6303,"t":{},"d":{},"k":{},"b":{"128":{"position":[[22169,31],[22508,31],[22601,30]]}}}],["vapplicationgettimertaskmemori",{"_index":6304,"t":{},"d":{},"k":{},"b":{"128":{"position":[[22285,32],[23810,32],[23913,31]]}}}],["vapplicationmallocfailedhook",{"_index":6289,"t":{},"d":{},"k":{},"b":{"128":{"position":[[20203,29]]}}}],["vari",{"_index":984,"t":{},"d":{},"k":{},"b":{"69":{"position":[[4426,6],[5239,6],[7091,6]]},"84":{"position":[[4593,6]]}}}],["variabl",{"_index":440,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8030,8],[8509,8]]},"71":{"position":[[2162,8],[14347,9],[46104,8],[47535,8]]},"128":{"position":[[4995,8],[12054,9],[12344,9]]},"149":{"position":[[3978,8],[4680,8]]},"150":{"position":[[11806,8]]},"288":{"position":[[2,9],[108,9]]}}}],["variant",{"_index":1806,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6797,9]]},"144":{"position":[[11596,7]]}}}],["variat",{"_index":2890,"t":{},"d":{},"k":{},"b":{"78":{"position":[[208,11]]},"136":{"position":[[2910,9]]},"141":{"position":[[10041,9],[10098,9]]},"142":{"position":[[3682,9],[3739,9],[3794,9]]}}}],["varieti",{"_index":2245,"t":{},"d":{},"k":{},"b":{"75":{"position":[[1020,7]]},"80":{"position":[[1279,7],[1909,7]]},"151":{"position":[[366,7]]}}}],["variou",{"_index":2032,"t":{},"d":{},"k":{},"b":{"71":{"position":[[39923,7]]},"80":{"position":[[733,7]]},"128":{"position":[[11900,7]]},"144":{"position":[[1548,7]]}}}],["vassertcal",{"_index":6248,"t":{},"d":{},"k":{},"b":{"128":{"position":[[15724,16],[15926,15],[16670,15],[16855,14]]}}}],["vcc",{"_index":1857,"t":{},"d":{},"k":{},"b":{"71":{"position":[[10510,3],[10643,3]]}}}],["vector",{"_index":1727,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2330,8],[2616,6],[2640,6],[2664,6],[3319,6],[4054,6],[30781,6],[33356,6],[41022,6],[41117,6],[41261,6],[47200,6],[47244,6]]},"76":{"position":[[23809,6]]},"84":{"position":[[16317,6]]},"136":{"position":[[10207,7]]},"137":{"position":[[3137,7],[3247,7],[3345,7]]}}}],["vendor",{"_index":3844,"t":{},"d":{},"k":{},"b":{"87":{"position":[[1044,6]]},"88":{"position":[[21669,6]]},"128":{"position":[[14979,7]]}}}],["vendor_statu",{"_index":3843,"t":{},"d":{},"k":{},"b":{"87":{"position":[[1016,13]]}}}],["veri",{"_index":1794,"t":{},"d":{},"k":{},"b":{"71":{"position":[[6336,4],[45514,4]]}}}],["verif",{"_index":5584,"t":{},"d":{},"k":{},"b":{"113":{"position":[[3665,12]]}}}],["verifi",{"_index":5465,"t":{},"d":{},"k":{},"b":{"108":{"position":[[8686,6]]},"113":{"position":[[13955,6]]},"124":{"position":[[9600,6]]},"125":{"position":[[13036,6]]},"138":{"position":[[9494,6]]},"148":{"position":[[8702,6]]}}}],["version",{"_index":2027,"t":{},"d":{},"k":{},"b":{"71":{"position":[[37989,7],[38084,7],[40091,8],[43689,7],[43784,7],[47968,7],[48161,7]]},"79":{"position":[[7079,7]]},"88":{"position":[[39741,7],[39846,7],[39946,7],[39960,7],[48150,7],[48186,8],[48267,8]]},"111":{"position":[[821,7],[876,7],[935,7],[1105,7],[1183,7],[1228,7],[1273,7],[1318,7],[1483,8],[1604,8],[1725,8],[1840,7],[1991,7],[2127,7]]},"113":{"position":[[423,7],[478,7],[532,7],[670,7],[744,8],[795,8],[844,8],[893,8]]},"128":{"position":[[11179,8],[11209,7],[11253,7],[11316,7],[11376,7],[11400,7],[11584,7],[12005,8]]},"139":{"position":[[7841,8]]},"288":{"position":[[38,8],[144,8]]}}}],["version_id",{"_index":5521,"t":{},"d":{},"k":{},"b":{"111":{"position":[[864,10]]},"113":{"position":[[466,10]]}}}],["via",{"_index":527,"t":{},"d":{},"k":{},"b":{"67":{"position":[[13388,3]]},"68":{"position":[[2951,3]]},"69":{"position":[[2424,3],[14837,3],[33530,3]]},"70":{"position":[[14700,3],[15037,3]]},"71":{"position":[[11280,3]]},"75":{"position":[[11634,3],[17453,3]]},"76":{"position":[[2190,3]]},"77":{"position":[[1742,3]]},"79":{"position":[[2117,3]]},"80":{"position":[[1947,3],[3389,3],[4202,3]]},"83":{"position":[[5129,3]]},"84":{"position":[[2616,3]]},"87":{"position":[[11273,3]]},"88":{"position":[[7620,3],[18431,3],[18585,3],[40579,3]]},"89":{"position":[[1959,3]]},"90":{"position":[[1907,3]]},"91":{"position":[[1961,3]]},"92":{"position":[[2976,3]]},"94":{"position":[[296,3]]},"95":{"position":[[2949,3]]},"97":{"position":[[660,3],[2268,3]]},"98":{"position":[[2880,3]]},"99":{"position":[[2906,3]]},"102":{"position":[[641,3],[2229,3]]},"103":{"position":[[296,3]]},"104":{"position":[[2837,3]]},"105":{"position":[[4425,3]]},"106":{"position":[[1536,3]]},"108":{"position":[[1557,3]]},"124":{"position":[[2670,3]]},"125":{"position":[[1158,3],[1281,3],[1858,3],[15893,3],[15968,3],[17003,3],[17078,3]]},"127":{"position":[[1934,3],[2504,3]]},"129":{"position":[[3761,3]]},"131":{"position":[[3617,3]]},"133":{"position":[[6404,3],[9983,3]]},"135":{"position":[[2122,3]]},"136":{"position":[[3846,3],[4386,3],[6254,3]]},"138":{"position":[[2778,3],[13935,3],[16771,3]]},"139":{"position":[[2497,3],[9035,3],[23941,3],[27213,3]]},"140":{"position":[[2410,3],[6909,3],[21793,3],[24162,3]]},"142":{"position":[[2650,3],[6279,3]]},"146":{"position":[[2073,3],[19475,3]]},"148":{"position":[[1893,3]]},"150":{"position":[[2449,3]]}}}],["view",{"_index":3128,"t":{},"d":{},"k":{},"b":{"80":{"position":[[2695,4]]},"128":{"position":[[9482,4]]}}}],["visualis",{"_index":6297,"t":{},"d":{},"k":{},"b":{"128":{"position":[[21209,13]]}}}],["voic",{"_index":5096,"t":{},"d":{},"k":{},"b":{"106":{"position":[[877,5]]}}}],["void",{"_index":266,"t":{},"d":{},"k":{},"b":{"67":{"position":[[731,4],[1377,4],[1819,4],[2416,4],[3374,6],[3469,4],[3577,4],[3940,4],[4483,4],[4707,4],[5604,4],[8653,4],[9842,4],[11778,4],[12029,4]]},"68":{"position":[[136,4],[986,4],[1113,4],[9810,7],[10317,6],[10535,6],[12284,6],[12504,7],[15151,6],[15371,7],[23988,4],[30365,4],[30901,4]]},"69":{"position":[[136,4],[904,4],[1031,4],[13692,7],[14181,6],[14399,6],[15115,7],[15507,6],[17677,6],[17713,7],[30417,4],[36973,4],[37528,4]]},"70":{"position":[[94,4],[178,4],[205,6],[230,4],[258,6],[283,4],[310,6],[335,4],[363,6],[388,4],[492,4],[591,4],[668,4],[745,4],[862,4],[954,4],[1094,4],[1125,6],[14059,4],[14496,4],[14546,4],[14831,4],[14882,4],[15167,4],[15217,4],[15376,4],[15427,4],[15586,4],[15951,4],[16311,4],[16548,4],[16789,4],[17168,4],[17504,4],[17992,4],[18046,4]]},"71":{"position":[[80,4],[102,6],[111,4],[132,6],[141,4],[161,6],[170,4],[191,6],[200,4],[223,6],[232,4],[251,6],[260,4],[285,6],[294,4],[310,6],[319,4],[373,4],[397,6],[406,4],[424,6],[756,4],[961,6],[38292,4],[38337,4],[38515,4],[38559,4],[38685,4],[38728,4],[38860,4],[38904,4],[39084,4],[39130,4],[39255,4],[39297,4],[39433,4],[39481,4],[39596,4],[39635,4],[39783,4],[40442,4],[40489,4],[40695,4],[40736,4],[43995,4],[47130,4]]},"74":{"position":[[644,4],[2379,4],[2696,6],[2780,4],[2840,4],[3846,4],[6546,4],[7642,4]]},"75":{"position":[[689,4],[27894,6],[27921,7],[29102,7],[40074,4]]},"76":{"position":[[1068,4],[7258,4],[7282,7],[7590,6],[7737,6],[8097,4],[8123,7],[8373,6],[8449,6],[8591,6],[9087,6],[9552,6],[9580,7],[9929,6],[10008,6],[10283,6],[10322,7],[10572,6],[19101,6],[19656,6],[20193,6],[20898,6],[21731,6],[22250,6],[25218,4]]},"77":{"position":[[3835,4],[4366,4]]},"78":{"position":[[511,4],[1138,4],[4372,4]]},"79":{"position":[[265,4],[293,4],[873,4],[892,4],[7895,4],[7921,7],[9119,4],[9385,4],[9425,4],[10874,6],[10929,4],[11198,6],[11375,4],[17939,4],[18029,4],[21804,4],[21894,4]]},"80":{"position":[[7730,7]]},"81":{"position":[[166,4],[4037,4]]},"82":{"position":[[502,4],[801,4],[1503,6],[1563,4],[1590,4],[1728,6],[1919,4],[2626,4],[4232,5],[4284,4],[5899,4]]},"83":{"position":[[1376,4],[20528,4],[20551,7],[20800,6],[20945,6],[21278,4],[21303,7],[21708,6],[21783,6],[21924,6],[22463,6],[23083,6],[23110,7],[23400,6],[23478,6],[23749,6],[23787,7],[24036,6],[25290,6],[25332,7],[25581,6],[25683,6],[26594,6],[26631,7],[26970,6],[27448,6],[56944,4]]},"84":{"position":[[895,4],[6059,4],[6082,7],[6338,6],[6482,6],[6774,4],[6799,7],[7055,6],[7129,6],[7269,6],[7553,6],[7591,7],[7847,6],[16731,4]]},"85":{"position":[[546,4],[862,4],[2020,6],[2119,4],[2185,4],[2686,6],[2895,4],[3818,4],[6713,4],[8614,4]]},"86":{"position":[[471,4],[781,4],[1867,6],[1965,4],[2031,4],[2338,6],[2545,4],[3236,4],[4894,4],[6317,4]]},"87":{"position":[[444,4],[4066,4],[4312,6],[4376,4],[4442,4],[4816,6],[4981,4],[14480,4]]},"88":{"position":[[22411,4],[22443,7],[25439,6],[26448,4],[26479,7],[30132,4],[30162,7],[33358,4],[33394,7],[35698,4],[35739,7],[36819,4],[36849,7],[37787,7],[38287,4],[38316,7]]},"89":{"position":[[429,4],[3372,6],[3445,6],[4750,4],[4839,4],[7536,4]]},"90":{"position":[[429,4],[3018,6],[3091,6],[4382,4],[4471,4],[7086,4]]},"91":{"position":[[433,4],[3454,6],[3527,6],[5149,4],[5238,4],[8697,4]]},"92":{"position":[[12732,4]]},"93":{"position":[[513,4],[1240,4],[8696,4]]},"94":{"position":[[688,4],[921,4],[1410,6],[1502,4],[1580,4],[1826,6],[2022,4],[2522,4],[3659,4],[5165,4]]},"95":{"position":[[332,4],[409,4],[3886,4],[4575,4]]},"96":{"position":[[349,4],[439,4],[3174,4],[3899,4]]},"98":{"position":[[328,4],[405,4],[3812,4],[4500,4]]},"99":{"position":[[324,4],[401,4],[3833,4],[4520,4]]},"100":{"position":[[343,4],[433,4],[3127,4],[3850,4]]},"101":{"position":[[711,4],[943,4],[1445,6],[1549,4],[1808,6],[2030,4],[2553,4],[3384,4],[4979,4]]},"103":{"position":[[686,4],[918,4],[1344,4],[3665,4]]},"104":{"position":[[320,4],[397,4],[3759,4],[4445,4]]},"105":{"position":[[1239,4],[12281,4],[12305,7],[12555,6],[12702,6],[13033,4],[13059,7],[13309,6],[13385,6],[13527,6],[13825,6],[13864,7],[14114,6],[15610,6],[15653,7],[15912,6],[16015,6],[17689,4],[17809,4],[17920,6],[18084,4],[29100,6],[29539,6],[34413,6],[37848,4]]},"106":{"position":[[142,4],[333,4],[610,4],[13688,7],[21359,4],[23056,4],[25385,4]]},"107":{"position":[[375,4],[701,4],[1413,6],[1464,4],[1491,4],[2353,6],[2553,4],[2967,4],[3152,4],[3420,4],[4211,4],[5081,4],[6451,4],[7505,4]]},"108":{"position":[[284,4],[3829,4],[3853,7],[4246,6],[4422,6],[4595,6],[4778,6],[7283,4]]},"109":{"position":[[444,4],[929,4],[1382,6],[1434,4],[1709,6],[1881,4],[2483,4],[3660,4],[5704,4]]},"124":{"position":[[792,4],[8003,7],[10652,7],[19482,4]]},"125":{"position":[[528,4],[10429,6],[10450,7],[17995,4]]},"126":{"position":[[445,4],[1060,6],[1198,4],[1290,4],[1378,4],[4042,4]]},"127":{"position":[[984,4],[4015,4],[4047,7],[6739,4],[6952,4]]},"128":{"position":[[18484,4],[20198,4],[20233,4],[20722,4],[20727,4],[20767,4],[22596,4],[23908,4]]},"129":{"position":[[5505,4],[5534,7],[10970,4]]},"130":{"position":[[468,4],[1590,4],[1657,4],[1745,6],[6341,4]]},"131":{"position":[[9695,4],[9724,7],[15232,4],[15805,6]]},"132":{"position":[[502,4],[2145,4],[2212,4],[2300,6],[5483,4]]},"133":{"position":[[11205,4],[11259,7],[15340,4],[15393,7],[19654,4],[19697,7],[24553,4],[24600,7],[30837,4],[30873,7],[34924,4],[34967,7],[39241,4],[39284,7],[43382,4],[43425,7],[50550,4],[50609,4],[50676,6],[50773,6]]},"134":{"position":[[668,4],[3748,4],[3807,4],[3874,4],[3962,6],[4059,6],[12844,4]]},"135":{"position":[[145,4],[271,4],[406,4],[425,4],[746,4],[8424,7],[9005,4],[9286,4],[9317,7],[11102,4],[11128,7],[13538,4],[13587,4],[17773,4],[18878,4],[20045,4],[20127,4],[23001,4]]},"136":{"position":[[967,4],[8286,4],[8961,4],[9493,4],[17831,4]]},"137":{"position":[[537,4],[1094,4],[3357,6],[3432,4],[3513,4],[4603,4],[8183,4],[9689,4]]},"138":{"position":[[778,4],[7870,4],[7889,7],[9817,4],[9849,7],[18237,4]]},"139":{"position":[[389,4],[949,4],[9836,7],[10431,6],[11865,7],[12333,5],[21595,4],[26086,4]]},"140":{"position":[[385,4],[1062,4],[7239,7],[7801,6],[9232,7],[9662,5],[19454,4],[24938,4]]},"141":{"position":[[383,4],[842,4],[2278,6],[2367,4],[2446,4],[2766,4],[2884,4],[3011,4],[3030,4],[3200,4],[3823,4],[4547,4],[5186,4],[5205,4],[6225,4],[7643,4]]},"142":{"position":[[147,4],[274,4],[410,4],[429,4],[783,4],[9410,7],[10008,4],[10288,4],[10318,7],[12127,4],[12152,7],[14938,4],[14987,4],[19765,4],[20771,4],[21839,4],[21921,4],[24740,4]]},"143":{"position":[[494,4],[3109,4],[10668,4]]},"144":{"position":[[761,4],[1122,4],[2617,6],[2670,4],[2697,4],[3000,6],[3205,4],[4319,4],[8840,4],[10365,4]]},"145":{"position":[[387,4],[1854,4],[1919,4],[2900,4],[2959,4],[3427,4],[3901,4],[3920,4],[4427,4],[4446,4],[5484,4],[5503,4],[9210,4],[9229,4],[10325,4]]},"146":{"position":[[136,4],[803,4],[1031,4],[5509,7],[8311,6],[8708,7],[11671,7],[17472,4],[22735,4],[23793,4]]},"147":{"position":[[697,4],[1691,4],[2652,6],[2737,4],[2818,4],[3972,4],[4284,4],[6476,4],[7799,4],[9604,4]]},"148":{"position":[[588,4],[5097,4],[5120,7],[6168,6],[6833,7],[14403,4]]},"149":{"position":[[456,4],[849,4],[1833,6],[1931,4],[1958,4],[2080,4],[2929,4],[5258,4],[6311,4]]},"150":{"position":[[7474,7],[9027,4],[9052,7],[10797,6],[11164,7],[12108,7]]}}}],["void(*)(adc_callback_args_t",{"_index":954,"t":{},"d":{},"k":{},"b":{"68":{"position":[[30796,27]]},"69":{"position":[[37423,27]]},"146":{"position":[[23688,27]]}}}],["void(*)(bsp_grp_irq_t",{"_index":2101,"t":{},"d":{},"k":{},"b":{"71":{"position":[[46485,21]]}}}],["void(*)(can_callback_args_t",{"_index":2587,"t":{},"d":{},"k":{},"b":{"75":{"position":[[39969,27]]}}}],["void(*)(external_irq_callback_args_t",{"_index":4386,"t":{},"d":{},"k":{},"b":{"89":{"position":[[7422,36]]},"90":{"position":[[6972,36]]},"91":{"position":[[8583,36]]}}}],["void(*)(i2c_master_callback_args_t",{"_index":5985,"t":{},"d":{},"k":{},"b":{"124":{"position":[[19370,34]]},"138":{"position":[[18125,34]]}}}],["void(*)(i2c_slave_callback_args_t",{"_index":6046,"t":{},"d":{},"k":{},"b":{"125":{"position":[[17884,33]]}}}],["void(*)(mhu_callback_args_t",{"_index":4774,"t":{},"d":{},"k":{},"b":{"95":{"position":[[3781,27]]},"98":{"position":[[3707,27]]},"99":{"position":[[3728,27]]},"104":{"position":[[3654,27]]}}}],["void(*)(mhu_ns_swint_get_callback_args_t",{"_index":4793,"t":{},"d":{},"k":{},"b":{"96":{"position":[[3056,40]]},"100":{"position":[[3009,40]]}}}],["void(*)(pdm_callback_args_t",{"_index":5374,"t":{},"d":{},"k":{},"b":{"106":{"position":[[25280,27]]}}}],["void(*)(poeg_callback_args_t",{"_index":5458,"t":{},"d":{},"k":{},"b":{"108":{"position":[[7177,28]]}}}],["void(*)(rtc_callback_args_t",{"_index":7009,"t":{},"d":{},"k":{},"b":{"136":{"position":[[17726,27]]}}}],["void(*)(spi_callback_args_t",{"_index":6895,"t":{},"d":{},"k":{},"b":{"135":{"position":[[22896,27]]},"142":{"position":[[24635,27]]}}}],["void(*)(timer_callback_args_t",{"_index":2787,"t":{},"d":{},"k":{},"b":{"76":{"position":[[25111,29]]},"83":{"position":[[56837,29]]},"84":{"position":[[16624,29]]},"105":{"position":[[37741,29]]}}}],["void(*)(uart_callback_args_t",{"_index":7294,"t":{},"d":{},"k":{},"b":{"139":{"position":[[25980,28]]},"140":{"position":[[24832,28]]}}}],["void(*)(wdt_callback_args_t",{"_index":8066,"t":{},"d":{},"k":{},"b":{"148":{"position":[[14298,27]]}}}],["void(*p_callback)(adc_callback_args_t",{"_index":386,"t":{},"d":{},"k":{},"b":{"67":{"position":[[4665,37],[9800,37]]},"68":{"position":[[1071,37]]},"69":{"position":[[989,37]]},"146":{"position":[[989,37]]}}}],["void(*p_callback)(bsp_grp_irq_t",{"_index":1705,"t":{},"d":{},"k":{},"b":{"71":{"position":[[875,31]]}}}],["void(*p_callback)(can_callback_args_t",{"_index":2171,"t":{},"d":{},"k":{},"b":{"74":{"position":[[3804,37],[6504,37]]},"75":{"position":[[647,37]]}}}],["void(*p_callback)(external_irq_callback_args_t",{"_index":3232,"t":{},"d":{},"k":{},"b":{"82":{"position":[[2575,46]]},"89":{"position":[[378,46]]},"90":{"position":[[378,46]]},"91":{"position":[[382,46]]}}}],["void(*p_callback)(i2c_master_callback_args_t",{"_index":3729,"t":{},"d":{},"k":{},"b":{"85":{"position":[[3769,44],[6664,44]]},"124":{"position":[[743,44]]},"138":{"position":[[729,44]]}}}],["void(*p_callback)(i2c_slave_callback_args_t",{"_index":3796,"t":{},"d":{},"k":{},"b":{"86":{"position":[[3188,43],[4846,43]]},"125":{"position":[[480,43]]}}}],["void(*p_callback)(mhu_callback_args_t",{"_index":4735,"t":{},"d":{},"k":{},"b":{"94":{"position":[[2480,37],[3617,37]]},"95":{"position":[[290,37]]},"98":{"position":[[286,37]]},"99":{"position":[[282,37]]},"104":{"position":[[278,37]]}}}],["void(*p_callback)(mhu_ns_swint_get_callback_args_t",{"_index":4783,"t":{},"d":{},"k":{},"b":{"96":{"position":[[294,50]]},"100":{"position":[[288,50]]},"101":{"position":[[2498,50],[3329,50]]}}}],["void(*p_callback)(pdm_callback_args_t",{"_index":5094,"t":{},"d":{},"k":{},"b":{"106":{"position":[[568,37]]},"107":{"position":[[3378,37],[6409,37]]}}}],["void(*p_callback)(poeg_callback_args_t",{"_index":5435,"t":{},"d":{},"k":{},"b":{"108":{"position":[[241,38]]},"109":{"position":[[2440,38],[3617,38]]}}}],["void(*p_callback)(rtc_callback_args_t",{"_index":6919,"t":{},"d":{},"k":{},"b":{"136":{"position":[[925,37]]},"137":{"position":[[4561,37],[8141,37]]}}}],["void(*p_callback)(spi_callback_args_t",{"_index":6765,"t":{},"d":{},"k":{},"b":{"135":{"position":[[704,37]]},"141":{"position":[[3158,37],[6183,37]]},"142":{"position":[[741,37]]}}}],["void(*p_callback)(timer_callback_args_t",{"_index":2609,"t":{},"d":{},"k":{},"b":{"76":{"position":[[1024,39]]},"83":{"position":[[1332,39]]},"84":{"position":[[851,39]]},"105":{"position":[[1195,39]]},"144":{"position":[[4275,39],[8796,39]]}}}],["void(*p_callback)(uart_callback_args_t",{"_index":7141,"t":{},"d":{},"k":{},"b":{"139":{"position":[[906,38]]},"140":{"position":[[1019,38]]},"147":{"position":[[4241,38],[7756,38]]}}}],["void(*p_callback)(wdt_callback_args_t",{"_index":7989,"t":{},"d":{},"k":{},"b":{"148":{"position":[[546,37]]},"149":{"position":[[2887,37],[5216,37]]}}}],["volatil",{"_index":332,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2401,8],[10290,8]]},"69":{"position":[[14923,8]]},"74":{"position":[[6991,8]]},"76":{"position":[[7512,8],[7543,8],[9810,8],[9841,8],[23355,8],[23386,8]]},"79":{"position":[[276,9],[298,9],[17950,9],[18034,9],[21815,9],[21899,9]]},"82":{"position":[[4793,8]]},"85":{"position":[[7167,8]]},"86":{"position":[[5315,8]]},"88":{"position":[[44890,8],[45763,8],[45867,8]]},"94":{"position":[[4174,8]]},"101":{"position":[[3885,8]]},"107":{"position":[[6854,8]]},"109":{"position":[[4101,8]]},"129":{"position":[[10403,8],[10439,8],[10481,8],[10555,8]]},"131":{"position":[[14743,8],[14817,8],[15583,8],[15667,8]]},"133":{"position":[[49444,8],[49495,8],[49569,8],[49618,8],[50051,8],[50116,8]]},"135":{"position":[[8358,8],[13939,8]]},"136":{"position":[[10605,8]]},"137":{"position":[[8585,8]]},"141":{"position":[[6650,8]]},"142":{"position":[[9345,8]]},"144":{"position":[[9344,8]]},"145":{"position":[[1866,9],[1924,9],[1988,8],[2203,8],[2678,8]]},"147":{"position":[[8240,8]]},"149":{"position":[[5660,8]]}}}],["voltag",{"_index":324,"t":{},"d":{},"k":{},"b":{"67":{"position":[[2254,8],[15581,8]]},"68":{"position":[[28952,7]]},"69":{"position":[[10474,7],[16794,7],[17114,7]]},"70":{"position":[[564,8],[641,8],[718,8],[835,8],[906,8],[10916,9],[10959,7],[11003,7],[11139,9],[11186,7],[11234,7],[11370,9],[11417,7],[11465,7],[11513,7],[11661,9],[11716,7],[11772,7],[11828,7],[11961,9],[12006,7],[12052,7],[16118,7],[16218,7],[16394,8],[16455,7],[16631,8],[16692,7],[16974,7],[17080,7],[17245,8]]},"71":{"position":[[10625,8]]},"92":{"position":[[2300,7]]},"113":{"position":[[5621,7],[10307,7],[10640,7],[10707,7]]}}}],["vqueueaddtoregistri",{"_index":6198,"t":{},"d":{},"k":{},"b":{"128":{"position":[[9582,21]]}}}],["vqueueunregisterqueu",{"_index":6199,"t":{},"d":{},"k":{},"b":{"128":{"position":[[9608,23]]}}}],["vs",{"_index":6325,"t":{},"d":{},"k":{},"b":{"128":{"position":[[25163,2],[25579,2]]}}}],["vtaskdelay",{"_index":6343,"t":{},"d":{},"k":{},"b":{"128":{"position":[[28350,12],[28408,12]]}}}],["vtaskdelayuntil",{"_index":6342,"t":{},"d":{},"k":{},"b":{"128":{"position":[[28228,17],[28291,17]]}}}],["vtaskdelet",{"_index":6339,"t":{},"d":{},"k":{},"b":{"128":{"position":[[27878,13],[27937,13]]}}}],["vtaskgetruntimest",{"_index":6300,"t":{},"d":{},"k":{},"b":{"128":{"position":[[21506,23]]}}}],["vtaskgetruntimestat",{"_index":6299,"t":{},"d":{},"k":{},"b":{"128":{"position":[[21406,22]]}}}],["vtasklist",{"_index":6298,"t":{},"d":{},"k":{},"b":{"128":{"position":[[21390,11],[21490,11]]}}}],["vtaskpriorityset",{"_index":6337,"t":{},"d":{},"k":{},"b":{"128":{"position":[[27628,18],[27692,18]]}}}],["vtasksuspend",{"_index":6340,"t":{},"d":{},"k":{},"b":{"128":{"position":[[27992,14],[28052,14]]}}}],["vulner",{"_index":67,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1194,13]]}}}],["w",{"_index":2010,"t":{"76":{"position":[[65,1]]}},"d":{},"k":{},"b":{"71":{"position":[[35412,2]]},"122":{"position":[[70,1]]},"144":{"position":[[469,1],[11495,2]]},"152":{"position":[[5598,1]]}}}],["w/truncat",{"_index":2312,"t":{},"d":{},"k":{},"b":{"75":{"position":[[11311,11],[23312,11]]}}}],["wait",{"_index":781,"t":{},"d":{},"k":{},"b":{"68":{"position":[[10363,4]]},"69":{"position":[[14227,4],[14735,4],[15553,4],[15720,4]]},"71":{"position":[[7907,4]]},"75":{"position":[[28712,4],[30162,4]]},"88":{"position":[[6218,5],[24419,4],[24953,4],[25241,4],[27793,4],[28102,4],[32317,4],[32599,4],[33677,4],[33764,4],[36203,4],[37609,4],[38669,4]]},"89":{"position":[[4262,4]]},"90":{"position":[[3894,4]]},"91":{"position":[[4533,4]]},"108":{"position":[[4637,4]]},"113":{"position":[[4127,4]]},"125":{"position":[[6096,4]]},"127":{"position":[[6116,4],[6317,4]]},"129":{"position":[[1336,4],[1801,7],[4603,4],[4679,6],[7791,4],[8210,4],[8619,4],[8968,4],[9168,4],[9402,4],[9968,4],[14618,4],[15583,7]]},"131":{"position":[[5199,5],[7900,4],[8349,4],[8687,4],[9267,4],[9315,4],[9421,4],[11999,4],[12270,4],[12371,4],[13314,4]]},"133":{"position":[[5782,4],[9533,7],[9921,4],[10064,4],[10222,4],[10439,4],[10501,4],[10611,4]]},"135":{"position":[[8883,4],[10114,4],[10333,4],[10770,4]]},"136":{"position":[[6619,4],[8796,4],[8859,4],[9319,4],[9379,4]]},"142":{"position":[[9886,4],[11132,4],[11351,4],[11797,4]]},"146":{"position":[[6748,4],[6830,4],[13463,4],[13717,4],[13811,4]]},"150":{"position":[[10139,4]]}}}],["wake",{"_index":4317,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47809,4]]},"131":{"position":[[4654,4],[5435,4]]},"148":{"position":[[4575,5]]}}}],["want",{"_index":1878,"t":{},"d":{},"k":{},"b":{"71":{"position":[[11833,4]]},"128":{"position":[[9474,4]]}}}],["warm",{"_index":1713,"t":{},"d":{},"k":{},"b":{"71":{"position":[[1428,4],[4369,4],[4732,4],[4957,4],[5309,4],[6124,4],[36391,4],[37142,4]]},"133":{"position":[[8159,4]]}}}],["warmreset",{"_index":2040,"t":{},"d":{},"k":{},"b":{"71":{"position":[[41073,9],[41168,9]]}}}],["warmup",{"_index":6632,"t":{},"d":{},"k":{},"b":{"133":{"position":[[8323,6]]}}}],["warn",{"_index":2207,"t":{},"d":{},"k":{},"b":{"74":{"position":[[7998,7]]},"75":{"position":[[1920,7],[17798,7],[33192,7]]},"128":{"position":[[10876,6]]}}}],["warning\"dma",{"_index":2987,"t":{},"d":{},"k":{},"b":{"79":{"position":[[5349,11]]}}}],["warningcal",{"_index":7959,"t":{},"d":{},"k":{},"b":{"147":{"position":[[6546,14]]}}}],["warningdo",{"_index":6998,"t":{},"d":{},"k":{},"b":{"136":{"position":[[13516,9]]}}}],["warningdtc",{"_index":7833,"t":{},"d":{},"k":{},"b":{"145":{"position":[[16197,10]]}}}],["warningif",{"_index":3626,"t":{},"d":{},"k":{},"b":{"83":{"position":[[50356,9]]},"84":{"position":[[10768,9]]}}}],["warningonli",{"_index":7800,"t":{},"d":{},"k":{},"b":{"145":{"position":[[7475,11],[8113,11]]}}}],["warningstop",{"_index":2763,"t":{},"d":{},"k":{},"b":{"76":{"position":[[16310,11]]}}}],["warningth",{"_index":6950,"t":{},"d":{},"k":{},"b":{"136":{"position":[[6522,10]]}}}],["warningthi",{"_index":7275,"t":{},"d":{},"k":{},"b":{"139":{"position":[[21861,11]]},"140":{"position":[[19719,11]]}}}],["warningwhen",{"_index":7779,"t":{},"d":{},"k":{},"b":{"145":{"position":[[1195,11]]}}}],["warranti",{"_index":49,"t":{},"d":{},"k":{},"b":{"0":{"position":[[859,11],[945,11],[1001,10]]}}}],["wasdetect",{"_index":4232,"t":{},"d":{},"k":{},"b":{"88":{"position":[[40308,12]]}}}],["watch",{"_index":5862,"t":{},"d":{},"k":{},"b":{"115":{"position":[[1586,5]]},"149":{"position":[[36,5]]},"152":{"position":[[7912,5]]}}}],["watchdog",{"_index":2008,"t":{"148":{"position":[[45,8]]}},"d":{},"k":{},"b":{"71":{"position":[[35316,8]]},"117":{"position":[[155,8]]},"148":{"position":[[786,8],[866,8],[1104,8],[1474,8],[1833,8],[1922,8],[2170,8],[2251,8],[2337,8],[2432,8],[3471,8],[3851,8],[4525,8],[5478,8],[6147,8],[6710,8],[9859,8],[9936,8],[13866,8]]},"149":{"position":[[99,8],[140,8],[226,8],[274,8],[1184,8],[1269,8],[3559,8],[4908,8]]},"152":{"position":[[4436,8]]}}}],["water",{"_index":6217,"t":{},"d":{},"k":{},"b":{"128":{"position":[[11986,5]]}}}],["wave",{"_index":3317,"t":{},"d":{},"k":{},"b":{"83":{"position":[[4679,4],[5450,4],[5479,4],[5509,4],[5614,6],[5670,5],[5831,4],[5999,4],[11310,4],[12036,4],[17359,4],[17434,4],[18033,4],[18429,4],[20400,4],[32219,4],[32308,4],[47293,4]]},"105":{"position":[[4778,6],[4834,5],[4995,4],[5163,4],[8240,4],[11512,4],[11587,4]]},"138":{"position":[[4531,5]]},"144":{"position":[[1818,4],[10929,4],[11128,4],[12203,4],[12252,4],[12379,4],[12474,4],[12575,4]]}}}],["waveform",{"_index":3298,"t":{},"d":{},"k":{},"b":{"83":{"position":[[2800,8],[4583,9],[5811,10],[5875,9],[6045,9],[6997,8],[7142,8],[7333,8],[7532,8],[7697,8],[7842,8],[8033,8],[8232,8],[8397,8],[8415,8],[8474,8],[16936,8]]},"105":{"position":[[2539,8],[4284,8],[4975,10],[5039,9],[5209,9]]}}}],["way",{"_index":2688,"t":{},"d":{},"k":{},"b":{"76":{"position":[[10673,4],[16463,4]]},"83":{"position":[[24130,4]]},"84":{"position":[[7946,4]]},"88":{"position":[[38464,3]]},"105":{"position":[[14209,4],[30848,4]]},"128":{"position":[[15114,5],[16115,3]]},"142":{"position":[[6949,3]]},"150":{"position":[[12162,3]]}}}],["wdt",{"_index":5861,"t":{"149":{"position":[[45,3]]}},"d":{},"k":{},"b":{"115":{"position":[[1557,3]]},"117":{"position":[[188,3],[242,3]]},"148":{"position":[[702,3],[756,3],[1058,3],[1152,3],[1208,3],[1370,3],[2467,3],[2527,3],[2566,4],[2618,3],[2767,4],[2888,4],[2988,4],[3052,3],[3194,3],[3289,3],[3518,3],[3807,3],[3936,3],[4193,3],[4416,4],[4429,3],[4607,3],[4736,3],[4804,4],[4850,3],[4864,3],[4931,3],[5010,3],[5074,3],[5190,3],[5801,3],[6906,4],[7774,3],[7834,3],[8322,3],[8713,3],[8782,4],[8874,3],[9412,3],[9603,3],[10662,3],[10883,3],[11622,3],[12317,3],[13119,4],[13199,3]]},"149":{"position":[[77,3],[114,5],[1051,3],[1097,3],[1372,3],[1908,3],[2292,3],[3183,3],[3851,4],[4218,4],[4539,3],[4707,3],[5513,3],[6344,3],[6424,3],[6593,3],[6984,3],[7448,3],[7782,3],[8100,3],[8383,3],[8681,3]]},"152":{"position":[[4467,3],[4521,3],[7885,3]]}}}],["wdt_advanced_exampl",{"_index":8027,"t":{},"d":{},"k":{},"b":{"148":{"position":[[6812,20]]}}}],["wdt_api_t",{"_index":8068,"t":{},"d":{},"k":{},"b":{"149":{"position":[[400,9],[2219,9],[2265,9],[6158,9]]}}}],["wdt_api_t::callbackset",{"_index":8067,"t":{},"d":{},"k":{},"b":{"148":{"position":[[14716,22]]},"149":{"position":[[5161,23]]}}}],["wdt_api_t::counterget",{"_index":8064,"t":{},"d":{},"k":{},"b":{"148":{"position":[[13135,22]]},"149":{"position":[[4430,22]]}}}],["wdt_api_t::open",{"_index":8060,"t":{},"d":{},"k":{},"b":{"148":{"position":[[10822,16]]},"149":{"position":[[909,15],[3077,16]]}}}],["wdt_api_t::refresh",{"_index":8057,"t":{},"d":{},"k":{},"b":{"148":{"position":[[9886,19]]},"149":{"position":[[3483,19]]}}}],["wdt_api_t::statusclear",{"_index":8061,"t":{},"d":{},"k":{},"b":{"148":{"position":[[11661,23]]},"149":{"position":[[4093,23]]}}}],["wdt_api_t::statusget",{"_index":8063,"t":{},"d":{},"k":{},"b":{"148":{"position":[[12346,21]]},"149":{"position":[[3732,21]]}}}],["wdt_api_t::timeoutget",{"_index":8065,"t":{},"d":{},"k":{},"b":{"148":{"position":[[13893,22]]},"149":{"position":[[4793,22]]}}}],["wdt_basic_exampl",{"_index":8014,"t":{},"d":{},"k":{},"b":{"148":{"position":[[5102,17]]}}}],["wdt_callback",{"_index":8023,"t":{},"d":{},"k":{},"b":{"148":{"position":[[6175,12]]}}}],["wdt_callback_args_t",{"_index":7990,"t":{},"d":{},"k":{},"b":{"148":{"position":[[617,19],[6188,20],[14494,19]]},"149":{"position":[[319,19],[708,19],[764,19],[1851,21],[2188,20],[2958,19],[5287,19]]}}}],["wdt_cfg_t",{"_index":7979,"t":{},"d":{},"k":{},"b":{"148":{"position":[[114,9],[7289,9],[10537,9]]},"149":{"position":[[380,9],[937,10],[1299,9],[1345,9],[2416,9],[3121,9],[6071,9]]}}}],["wdt_cfg_t::p_context",{"_index":8078,"t":{},"d":{},"k":{},"b":{"149":{"position":[[2092,20]]}}}],["wdt_clock_division_128",{"_index":8099,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7178,22]]}}}],["wdt_clock_division_16",{"_index":8096,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7082,21]]}}}],["wdt_clock_division_2048",{"_index":8104,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7280,23]]}}}],["wdt_clock_division_256",{"_index":8039,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7388,23]]},"149":{"position":[[7212,22]]}}}],["wdt_clock_division_32",{"_index":8097,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7114,21]]}}}],["wdt_clock_division_4",{"_index":8095,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7052,20]]}}}],["wdt_clock_division_512",{"_index":8102,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7246,22]]}}}],["wdt_clock_division_64",{"_index":8098,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7146,21]]}}}],["wdt_clock_division_8192",{"_index":8106,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7316,23]]}}}],["wdt_clock_division_t",{"_index":8071,"t":{},"d":{},"k":{},"b":{"149":{"position":[[518,20],[1460,20],[6891,20],[6946,20]]}}}],["wdt_counter",{"_index":8054,"t":{},"d":{},"k":{},"b":{"148":{"position":[[8806,11],[8944,14],[9013,12],[13269,14]]}}}],["wdt_counting_en",{"_index":8030,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7010,20]]}}}],["wdt_ctrl_t",{"_index":7977,"t":{},"d":{},"k":{},"b":{"148":{"position":[[37,11],[87,11],[174,11],[256,11],[342,11],[423,11],[519,11],[9782,10],[10449,10],[11417,10],[12110,10],[12890,10],[13626,10],[14210,10]]},"149":{"position":[[461,10],[2388,12],[2468,12],[2520,12],[2604,12],[2684,12],[2762,12],[2855,12],[3094,11],[3503,11],[3754,11],[4117,11],[4453,11],[4816,11],[5185,11],[5995,10],[6263,10],[6316,10]]}}}],["wdt_extended_cfg_t",{"_index":8028,"t":{},"d":{},"k":{},"b":{"148":{"position":[[6917,18],[9265,18],[9512,18],[9567,18]]}}}],["wdt_instance_ctrl_t",{"_index":8056,"t":{},"d":{},"k":{},"b":{"148":{"position":[[9235,19],[9319,19],[9375,19]]},"149":{"position":[[6454,19]]}}}],["wdt_instance_t",{"_index":8069,"t":{},"d":{},"k":{},"b":{"149":{"position":[[420,14],[5806,14],[5857,14]]}}}],["wdt_max_count",{"_index":8020,"t":{},"d":{},"k":{},"b":{"148":{"position":[[6007,15],[6086,17]]}}}],["wdt_reset_control_nmi",{"_index":8045,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7527,22]]}}}],["wdt_reset_control_reset",{"_index":8116,"t":{},"d":{},"k":{},"b":{"149":{"position":[[8222,23]]}}}],["wdt_reset_control_t",{"_index":8074,"t":{},"d":{},"k":{},"b":{"149":{"position":[[602,19],[1666,19],[8009,19],[8063,19]]}}}],["wdt_start_window_75",{"_index":8022,"t":{},"d":{},"k":{},"b":{"148":{"position":[[6063,19],[9029,21]]}}}],["wdt_status_no_error",{"_index":8024,"t":{},"d":{},"k":{},"b":{"148":{"position":[[6365,20],[12500,20]]}}}],["wdt_status_overflow",{"_index":8123,"t":{},"d":{},"k":{},"b":{"149":{"position":[[8958,19]]}}}],["wdt_status_refresh_error",{"_index":8121,"t":{},"d":{},"k":{},"b":{"149":{"position":[[8790,24]]}}}],["wdt_status_t",{"_index":7981,"t":{},"d":{},"k":{},"b":{"148":{"position":[[207,12],[283,12],[6343,12],[11511,12],[12198,12],[12478,12]]},"149":{"position":[[659,12],[2548,12],[2638,12],[3781,12],[4150,12],[8604,12],[8651,12]]}}}],["wdt_status_underflow",{"_index":8120,"t":{},"d":{},"k":{},"b":{"149":{"position":[[8747,20]]}}}],["wdt_status_underflow_and_refresh_error",{"_index":8122,"t":{},"d":{},"k":{},"b":{"149":{"position":[[8878,38]]}}}],["wdt_stop_control_dis",{"_index":8047,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7575,25]]}}}],["wdt_stop_control_en",{"_index":8118,"t":{},"d":{},"k":{},"b":{"149":{"position":[[8510,23]]}}}],["wdt_stop_control_t",{"_index":8075,"t":{},"d":{},"k":{},"b":{"149":{"position":[[631,18],[1749,18],[8294,18],[8347,18]]}}}],["wdt_timeout_1024",{"_index":8088,"t":{},"d":{},"k":{},"b":{"149":{"position":[[6697,16]]}}}],["wdt_timeout_16384",{"_index":8037,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7344,18]]},"149":{"position":[[6845,17]]}}}],["wdt_timeout_2048",{"_index":8089,"t":{},"d":{},"k":{},"b":{"149":{"position":[[6734,16]]}}}],["wdt_timeout_4096",{"_index":8091,"t":{},"d":{},"k":{},"b":{"149":{"position":[[6771,16]]}}}],["wdt_timeout_512",{"_index":8087,"t":{},"d":{},"k":{},"b":{"149":{"position":[[6662,15]]}}}],["wdt_timeout_8192",{"_index":8092,"t":{},"d":{},"k":{},"b":{"149":{"position":[[6808,16]]}}}],["wdt_timeout_count",{"_index":8018,"t":{},"d":{},"k":{},"b":{"148":{"position":[[5968,18],[6030,19]]}}}],["wdt_timeout_t",{"_index":8070,"t":{},"d":{},"k":{},"b":{"149":{"position":[[495,13],[1417,13],[6514,13],[6562,13]]}}}],["wdt_timeout_values_t",{"_index":7986,"t":{},"d":{},"k":{},"b":{"148":{"position":[[450,20],[13714,20]]},"149":{"position":[[349,20],[956,20],[1013,20],[2790,20],[4843,20]]}}}],["wdt_window_end_0",{"_index":8043,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7484,17]]},"149":{"position":[[7964,16]]}}}],["wdt_window_end_25",{"_index":8114,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7924,17]]}}}],["wdt_window_end_50",{"_index":8113,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7884,17]]}}}],["wdt_window_end_t",{"_index":8073,"t":{},"d":{},"k":{},"b":{"149":{"position":[[576,16],[1594,16],[7697,16],[7748,16]]}}}],["wdt_window_start_100",{"_index":8041,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7437,21]]},"149":{"position":[[7644,20]]}}}],["wdt_window_start_50",{"_index":8109,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7556,19]]}}}],["wdt_window_start_75",{"_index":8110,"t":{},"d":{},"k":{},"b":{"149":{"position":[[7600,19]]}}}],["wdt_window_start_t",{"_index":8072,"t":{},"d":{},"k":{},"b":{"149":{"position":[[548,18],[1516,18],[7359,18],[7412,18]]}}}],["wdtovf_perrout_n",{"_index":1594,"t":{},"d":{},"k":{},"b":{"70":{"position":[[10177,17]]}}}],["wdtudf_perrout",{"_index":8008,"t":{},"d":{},"k":{},"b":{"148":{"position":[[3835,15]]}}}],["wdtudfout",{"_index":8002,"t":{},"d":{},"k":{},"b":{"148":{"position":[[2774,9],[2858,9]]}}}],["wdtudfout_assertion_en",{"_index":8032,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7096,27]]}}}],["weak",{"_index":104,"t":{},"d":{},"k":{},"b":{"1":{"position":[[60,4],[663,4],[676,4]]},"71":{"position":[[1413,4],[3390,4],[3654,6],[3676,4],[3733,4],[3769,4],[3903,5],[4044,5],[4167,4],[4323,4],[4474,4],[39997,4]]}}}],["weakli",{"_index":1778,"t":{},"d":{},"k":{},"b":{"71":{"position":[[5024,6]]}}}],["websit",{"_index":6228,"t":{},"d":{},"k":{},"b":{"128":{"position":[[13337,8]]}}}],["week",{"_index":6926,"t":{},"d":{},"k":{},"b":{"136":{"position":[[1603,5],[2480,5]]}}}],["well",{"_index":1068,"t":{},"d":{},"k":{},"b":{"69":{"position":[[14895,4],[16206,4]]},"71":{"position":[[10982,5]]},"80":{"position":[[2532,4]]},"88":{"position":[[1672,4],[2713,4]]},"124":{"position":[[9994,5]]},"146":{"position":[[7280,4]]},"151":{"position":[[2693,4]]}}}],["whatev",{"_index":6251,"t":{},"d":{},"k":{},"b":{"128":{"position":[[16008,8]]}}}],["whatsoev",{"_index":80,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1442,11]]}}}],["whenev",{"_index":1272,"t":{},"d":{},"k":{},"b":{"69":{"position":[[29764,8]]}}}],["wherev",{"_index":6327,"t":{},"d":{},"k":{},"b":{"128":{"position":[[26355,8]]}}}],["whether",{"_index":54,"t":{},"d":{},"k":{},"b":{"0":{"position":[[957,7]]},"69":{"position":[[4642,7],[8101,7],[8174,7]]},"75":{"position":[[3281,7],[3468,7],[13610,7]]},"83":{"position":[[15149,7]]},"88":{"position":[[11454,7],[11605,7],[12970,7],[44774,7]]},"92":{"position":[[1944,7],[2015,7],[5555,7],[6988,7]]},"95":{"position":[[1492,7]]},"96":{"position":[[1291,7]]},"97":{"position":[[1040,7]]},"98":{"position":[[1430,7]]},"99":{"position":[[1463,7]]},"100":{"position":[[1264,7]]},"102":{"position":[[1015,7]]},"104":{"position":[[1401,7]]},"105":{"position":[[6739,7],[9313,7],[10756,7],[17587,7]]},"135":{"position":[[4350,7],[13289,7]]},"136":{"position":[[10506,7]]},"139":{"position":[[3942,7]]},"140":{"position":[[3458,7]]},"142":{"position":[[6098,7],[14756,7]]},"143":{"position":[[3341,7]]},"145":{"position":[[13900,7],[16601,7]]},"149":{"position":[[1789,7]]}}}],["which_compare_match",{"_index":3282,"t":{},"d":{},"k":{},"b":{"83":{"position":[[1053,20],[55189,20]]},"105":{"position":[[1080,20],[37131,20]]}}}],["whichev",{"_index":8189,"t":{},"d":{},"k":{},"b":{"150":{"position":[[8392,9]]}}}],["while(conversion_count",{"_index":7910,"t":{},"d":{},"k":{},"b":{"146":{"position":[[12901,22]]}}}],["whole",{"_index":1270,"t":{},"d":{},"k":{},"b":{"69":{"position":[[29658,6]]}}}],["whose",{"_index":1864,"t":{},"d":{},"k":{},"b":{"71":{"position":[[10882,5]]}}}],["wide",{"_index":2700,"t":{},"d":{},"k":{},"b":{"76":{"position":[[11669,5],[17459,5]]},"80":{"position":[[1274,4]]},"128":{"position":[[10828,4],[10959,4]]},"135":{"position":[[6133,4]]},"142":{"position":[[7013,4]]},"151":{"position":[[361,4]]}}}],["width",{"_index":2148,"t":{},"d":{},"k":{},"b":{"74":{"position":[[1671,6]]},"75":{"position":[[12851,5],[12907,5],[13422,5],[13478,5],[15595,5],[22145,5],[22165,5]]},"76":{"position":[[8723,5]]},"83":{"position":[[9657,5],[22053,5]]},"107":{"position":[[1303,6],[7801,5]]},"138":{"position":[[6575,5],[6596,6]]},"141":{"position":[[4186,5],[5046,5],[6035,5],[7961,5],[8009,5],[8064,5],[8119,5],[8174,5],[8229,5],[8284,5],[8340,5],[8397,5],[8454,5],[8511,5],[8568,5],[8625,5],[8682,5],[8739,5],[8796,5],[8853,5],[8910,5],[8971,5],[9028,5],[9085,5],[9146,5],[9207,5],[9268,5],[9325,5],[9382,5],[9439,5],[9496,5],[9557,5],[9618,5]]}}}],["wifi",{"_index":5780,"t":{},"d":{},"k":{},"b":{"113":{"position":[[12353,4],[12414,4],[12595,4],[12637,4],[12694,4]]}}}],["win",{"_index":4027,"t":{},"d":{},"k":{},"b":{"88":{"position":[[4836,3]]}}}],["window",{"_index":550,"t":{},"d":{},"k":{},"b":{"67":{"position":[[14197,6],[14261,6]]},"69":{"position":[[4043,6],[4060,6],[4141,6],[4161,6],[4178,6],[4332,6],[4352,6],[4369,6],[4622,6],[4650,6],[4777,6],[4810,6],[4827,6],[4931,6],[4948,6],[5052,6],[5069,6],[5150,6],[5170,6],[5187,6],[5397,6],[5417,6],[5434,6],[5483,6],[5514,6],[5595,6],[5655,6],[5714,6],[5748,6],[5765,6],[5869,6],[5886,6],[5990,6],[6007,6],[6233,7],[6251,6],[9272,6],[9343,6],[9386,6],[9525,6],[9596,6],[9639,6],[16105,6],[16168,6],[16338,6],[16351,6],[16368,6],[16698,6],[16813,6],[16927,6],[16965,7],[17133,6],[17615,6],[17877,6],[18006,6],[19806,6],[19877,6],[19944,6],[20011,6],[20143,6],[20240,6],[20312,6],[20358,6],[20417,6],[20479,6],[20542,6],[20606,6],[20685,6],[20744,6],[21194,6],[28623,6],[28746,6]]},"148":{"position":[[935,6],[1272,7],[2277,6],[2374,6],[5862,6],[8458,7],[8694,7],[8743,6]]},"149":{"position":[[1567,6],[1641,6],[7477,6],[7811,6],[8868,7]]}}}],["window_a_ipl",{"_index":1133,"t":{},"d":{},"k":{},"b":{"69":{"position":[[19917,12]]}}}],["window_a_irq",{"_index":1131,"t":{},"d":{},"k":{},"b":{"69":{"position":[[19777,12]]}}}],["window_b_ipl",{"_index":1134,"t":{},"d":{},"k":{},"b":{"69":{"position":[[19984,12]]}}}],["window_b_irq",{"_index":1132,"t":{},"d":{},"k":{},"b":{"69":{"position":[[19848,12]]}}}],["window_end",{"_index":8042,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7466,11]]},"149":{"position":[[1611,10]]}}}],["window_start",{"_index":8040,"t":{},"d":{},"k":{},"b":{"148":{"position":[[7419,13]]},"149":{"position":[[1535,12]]}}}],["wire",{"_index":6776,"t":{},"d":{},"k":{},"b":{"135":{"position":[[1303,4],[7183,4],[7311,4]]},"142":{"position":[[1030,4],[1060,4],[8356,4],[8485,4],[15467,4],[15477,4],[15536,4],[15605,4]]},"147":{"position":[[6048,6]]}}}],["wish",{"_index":6239,"t":{},"d":{},"k":{},"b":{"128":{"position":[[14580,4],[19063,4],[20850,4],[21125,4]]}}}],["within",{"_index":5870,"t":{},"d":{},"k":{},"b":{"116":{"position":[[432,6]]},"128":{"position":[[3902,6],[9135,6],[13555,6]]},"129":{"position":[[1202,6],[4440,6],[7665,6],[14484,6]]},"145":{"position":[[12113,6]]},"146":{"position":[[2681,6],[14266,6],[14791,6]]}}}],["without",{"_index":81,"t":{},"d":{},"k":{},"b":{"0":{"position":[[1465,7]]},"71":{"position":[[3481,7],[14999,7],[15424,7],[15872,7],[16319,7],[16767,7],[17214,7],[17666,7],[18117,7],[18565,7],[19012,7],[19460,7],[19907,7],[20357,7],[20806,7],[21256,7],[21705,7],[22153,7],[22600,7],[23050,7],[23499,7],[23947,7],[24394,7],[24844,7],[25293,7],[25743,7],[26192,7],[26640,7],[27087,7],[27537,7],[27986,7],[28415,7],[28842,7],[29196,7],[31771,7]]},"75":{"position":[[30515,7]]},"79":{"position":[[1155,7]]},"80":{"position":[[871,7],[1100,7]]},"85":{"position":[[6239,7]]},"113":{"position":[[4847,7]]},"124":{"position":[[15824,7],[16775,7],[18189,7],[18878,7]]},"125":{"position":[[16032,7],[17142,7]]},"128":{"position":[[11408,7],[14032,7]]},"131":{"position":[[701,7],[6175,7],[8940,7],[17607,7]]},"135":{"position":[[7332,7],[7359,7]]},"138":{"position":[[14119,7],[14930,7],[16137,7],[16965,7],[17639,7]]},"139":{"position":[[16135,7]]},"142":{"position":[[7510,7],[8506,7],[8533,7]]},"145":{"position":[[9326,7]]},"147":{"position":[[3079,7],[3384,7]]}}}],["wonder",{"_index":1748,"t":{},"d":{},"k":{},"b":{"71":{"position":[[3413,6]]}}}],["word",{"_index":446,"t":{},"d":{},"k":{},"b":{"67":{"position":[[8278,5]]},"77":{"position":[[3197,6]]},"88":{"position":[[19812,4],[45282,4],[45358,4]]},"128":{"position":[[4393,6],[23556,6],[24891,6]]},"139":{"position":[[2988,5]]},"140":{"position":[[2736,5]]},"141":{"position":[[8300,6],[8357,6],[8414,6],[8471,6],[8528,6],[8585,6],[8642,6],[8699,6],[8756,6],[8813,6],[8870,6],[8988,6],[9045,6],[9285,6],[9342,6],[9399,6],[9456,6]]}}}],["work",{"_index":470,"t":{},"d":{},"k":{},"b":{"67":{"position":[[9993,7]]},"71":{"position":[[41216,5]]},"74":{"position":[[6697,7]]},"82":{"position":[[4444,7]]},"85":{"position":[[6871,7]]},"86":{"position":[[5051,7]]},"94":{"position":[[3810,7]]},"101":{"position":[[3548,7]]},"107":{"position":[[6602,7]]},"109":{"position":[[3812,7]]},"113":{"position":[[8443,4]]},"135":{"position":[[21500,4]]},"137":{"position":[[8334,7]]},"141":{"position":[[6376,7]]},"142":{"position":[[23195,4]]},"144":{"position":[[8993,7]]},"145":{"position":[[7487,5],[8125,5]]},"147":{"position":[[7951,7]]},"148":{"position":[[5628,4],[8581,4]]},"149":{"position":[[5409,7]]}}}],["wrap",{"_index":7730,"t":{},"d":{},"k":{},"b":{"144":{"position":[[10840,7]]}}}],["wren",{"_index":8207,"t":{},"d":{},"k":{},"b":{"150":{"position":[[9396,6],[26390,6]]}}}],["write",{"_index":2164,"t":{},"d":{},"k":{},"b":{"74":{"position":[[3312,5],[4387,5],[4549,5],[4749,5],[4832,6]]},"75":{"position":[[16495,5],[20421,5],[28161,5],[28441,5],[29495,5],[29870,5],[37008,5],[37346,5]]},"77":{"position":[[2494,6],[8163,6]]},"78":{"position":[[318,5],[5693,6]]},"83":{"position":[[4787,5],[4849,5]]},"85":{"position":[[3417,5],[5093,5],[5292,5],[5526,5],[5576,6],[5655,8]]},"86":{"position":[[3040,5],[4266,5],[4443,5],[4654,5],[4704,6],[7406,5],[7456,5],[7694,5],[7882,5]]},"87":{"position":[[3077,7],[6083,5],[10848,5],[11042,5],[11155,5],[11493,6],[12774,5],[15383,5],[16615,5],[16706,5],[17417,7],[18277,5]]},"88":{"position":[[3335,5],[4727,5],[5361,6],[10318,5],[11916,5],[11994,5],[12392,5],[12460,5],[17102,5],[17153,5],[17211,5],[17271,5],[17520,5],[17642,5],[17855,6],[19313,5],[19480,6],[19754,5],[19794,5],[19920,5],[20188,6],[20228,5],[24753,5],[24966,5],[27909,5],[27956,5],[28136,5],[32123,5],[32330,5],[35652,7],[35944,5],[35999,5],[36531,5],[38499,5],[40554,5],[41417,5],[43284,5],[43649,5],[45503,5],[57916,5],[59968,5]]},"92":{"position":[[10723,6],[11742,6],[32756,6],[37648,6],[39852,6]]},"93":{"position":[[4778,5],[5488,5],[6859,5],[7760,5],[8994,7],[9067,5],[9118,5]]},"113":{"position":[[3292,5],[5538,5],[11593,5],[15235,5]]},"124":{"position":[[1693,5],[7257,5],[8308,5],[16572,5]]},"125":{"position":[[994,5],[4781,5],[5576,5],[6503,5],[8264,5],[10186,5],[11077,5],[11666,5],[15826,5],[16610,5],[16766,5]]},"126":{"position":[[1807,5],[2973,5],[3137,5],[3290,5],[3340,6],[3537,5]]},"127":{"position":[[684,5],[891,5],[1391,7],[1415,6],[9248,5],[9355,7],[9836,5]]},"128":{"position":[[10904,8]]},"131":{"position":[[4737,5],[5518,5],[6708,5],[15794,6]]},"135":{"position":[[19423,5]]},"138":{"position":[[1707,5],[1943,5],[7852,5],[8184,5],[15677,5],[15820,5],[15924,6],[15946,5]]},"139":{"position":[[5154,5],[5384,5],[10817,5],[13667,5],[13755,5],[17378,5],[17472,5]]},"140":{"position":[[8187,5],[13634,5],[13726,5]]},"141":{"position":[[1052,5],[2070,5],[2850,5],[4454,5]]},"142":{"position":[[21316,5]]},"143":{"position":[[141,7],[2315,5],[2379,5],[2519,5],[2665,5],[2744,5],[3358,5],[4206,5],[5345,5],[5513,6],[5595,5],[7250,5],[7615,5],[7706,5],[7766,5],[8482,5],[14921,5]]},"147":{"position":[[3471,5],[3836,5],[5679,5],[5841,5],[5867,5],[5894,5],[5930,5],[5962,5],[5990,5],[6315,5]]},"150":{"position":[[1751,5],[3609,5],[3685,6],[3801,5],[3849,5],[3924,5],[3967,5],[8289,5],[8324,5],[9383,5],[9421,7],[9607,5],[20572,6],[25055,5],[25166,5],[26377,5],[26415,7]]},"151":{"position":[[263,7]]},"292":{"position":[[241,5],[1241,5],[1358,5]]}}}],["write/read",{"_index":2931,"t":{},"d":{},"k":{},"b":{"78":{"position":[[5571,10]]},"135":{"position":[[8732,10],[9915,10],[10571,10]]},"142":{"position":[[9726,10],[10924,10],[11589,10]]}}}],["write_buf",{"_index":6522,"t":{},"d":{},"k":{},"b":{"131":{"position":[[15762,9]]}}}],["write_buffer_descriptor",{"_index":4290,"t":{},"d":{},"k":{},"b":{"88":{"position":[[45437,23]]}}}],["write_bytes_max",{"_index":7940,"t":{},"d":{},"k":{},"b":{"147":{"position":[[1016,15]]}}}],["write_data",{"_index":6117,"t":{},"d":{},"k":{},"b":{"127":{"position":[[6049,12]]}}}],["write_data_r",{"_index":4266,"t":{},"d":{},"k":{},"b":{"88":{"position":[[43628,15]]}}}],["write_enable_bit",{"_index":7574,"t":{},"d":{},"k":{},"b":{"143":{"position":[[2340,16]]}}}],["write_enable_command",{"_index":7578,"t":{},"d":{},"k":{},"b":{"143":{"position":[[2625,20]]}}}],["write_in_progress",{"_index":7587,"t":{},"d":{},"k":{},"b":{"143":{"position":[[3322,17]]}}}],["write_length",{"_index":4259,"t":{},"d":{},"k":{},"b":{"88":{"position":[[43266,12]]}}}],["write_read_param",{"_index":6060,"t":{},"d":{},"k":{},"b":{"126":{"position":[[1976,18],[3501,18]]},"127":{"position":[[860,18],[9736,17]]}}}],["write_status_bit",{"_index":7573,"t":{},"d":{},"k":{},"b":{"143":{"position":[[2276,16]]}}}],["writer",{"_index":6252,"t":{},"d":{},"k":{},"b":{"128":{"position":[[16040,6],[17652,6],[17774,6],[18308,7],[21857,7],[22120,6],[25555,7],[26293,7],[26330,6],[26492,6]]}}}],["writeread",{"_index":6055,"t":{},"d":{},"k":{},"b":{"126":{"position":[[679,9],[1904,9],[3361,9]]},"135":{"position":[[20634,9]]},"141":{"position":[[2973,9],[5085,9]]},"142":{"position":[[22428,9]]}}}],["written",{"_index":2831,"t":{},"d":{},"k":{},"b":{"77":{"position":[[2592,7],[8265,7],[8357,7]]},"79":{"position":[[18920,7],[19416,7],[19874,7],[20360,7],[20965,7]]},"83":{"position":[[48719,7],[50722,7],[52523,7]]},"86":{"position":[[7779,7]]},"87":{"position":[[17956,7]]},"88":{"position":[[29611,7],[43520,7],[45300,7],[45376,7]]},"92":{"position":[[28995,7],[30220,7],[31275,7],[33066,7],[34457,7],[37949,7],[38277,7],[39947,7],[40381,7]]},"93":{"position":[[4898,7],[4940,7],[5593,7],[5631,7],[6995,7],[7037,7],[7180,7],[7870,7],[7908,7],[7986,7]]},"105":{"position":[[30131,7],[32033,7]]},"125":{"position":[[968,7]]},"128":{"position":[[1722,7],[2181,8]]},"136":{"position":[[2672,7]]},"147":{"position":[[1059,7]]},"148":{"position":[[10923,7]]},"150":{"position":[[23650,7]]}}}],["wrong",{"_index":5369,"t":{},"d":{},"k":{},"b":{"106":{"position":[[23715,5]]}}}],["wu_irq",{"_index":4316,"t":{},"d":{},"k":{},"b":{"88":{"position":[[47801,6]]}}}],["x",{"_index":922,"t":{},"d":{},"k":{},"b":{"68":{"position":[[22618,1],[22677,1],[22737,1],[22798,1]]},"71":{"position":[[30973,2],[33548,2]]},"78":{"position":[[4761,1],[5023,1]]},"88":{"position":[[49330,1],[49437,1],[49544,1]]},"128":{"position":[[16832,1],[16844,1],[17335,1],[17347,1]]},"139":{"position":[[25326,1]]},"140":{"position":[[23246,1]]},"148":{"position":[[4301,1]]}}}],["x^10",{"_index":2920,"t":{},"d":{},"k":{},"b":{"78":{"position":[[4986,4],[5162,4]]}}}],["x^11",{"_index":2919,"t":{},"d":{},"k":{},"b":{"78":{"position":[[4979,4],[5155,4]]}}}],["x^12",{"_index":2916,"t":{},"d":{},"k":{},"b":{"78":{"position":[[4882,4],[4972,4]]}}}],["x^13",{"_index":2926,"t":{},"d":{},"k":{},"b":{"78":{"position":[[5148,4]]}}}],["x^14",{"_index":2925,"t":{},"d":{},"k":{},"b":{"78":{"position":[[5141,4]]}}}],["x^15",{"_index":2914,"t":{},"d":{},"k":{},"b":{"78":{"position":[[4814,4]]}}}],["x^16",{"_index":2913,"t":{},"d":{},"k":{},"b":{"78":{"position":[[4806,5],[4874,5],[4965,4]]}}}],["x^16+x^12+x^5+1",{"_index":2808,"t":{},"d":{},"k":{},"b":{"77":{"position":[[969,15]]}}}],["x^16+x^15+x^2+1",{"_index":2807,"t":{},"d":{},"k":{},"b":{"77":{"position":[[944,15]]}}}],["x^18",{"_index":2924,"t":{},"d":{},"k":{},"b":{"78":{"position":[[5134,4]]}}}],["x^18+x^14+x^13+x^11+x^10+x^9+x^8+x^6+1",{"_index":2820,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1226,38]]}}}],["x^19",{"_index":2819,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1220,5]]},"78":{"position":[[5127,4]]}}}],["x^2",{"_index":2911,"t":{},"d":{},"k":{},"b":{"78":{"position":[[4755,3],[4821,3],[5017,3]]}}}],["x^20",{"_index":2818,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1214,5]]},"78":{"position":[[5120,4]]}}}],["x^22",{"_index":2817,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1208,5]]},"78":{"position":[[4958,4],[5113,4]]}}}],["x^23",{"_index":2816,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1202,5]]},"78":{"position":[[4951,4],[5106,4]]}}}],["x^25",{"_index":2815,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1196,5]]},"78":{"position":[[5099,4]]}}}],["x^26",{"_index":2814,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1190,5]]},"78":{"position":[[4944,4],[5092,4]]}}}],["x^27",{"_index":2813,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1184,5]]},"78":{"position":[[5085,4]]}}}],["x^28",{"_index":2812,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1178,5]]},"78":{"position":[[5078,4]]}}}],["x^32",{"_index":2811,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1172,5]]},"78":{"position":[[4936,5],[5070,5]]}}}],["x^32+x^26+x^23+x^22+x^16+x^12+x^11+x^10+x^8+x^7+x^5+x^4+x^2+x",{"_index":2810,"t":{},"d":{},"k":{},"b":{"77":{"position":[[1098,62]]}}}],["x^4",{"_index":2922,"t":{},"d":{},"k":{},"b":{"78":{"position":[[5011,3]]}}}],["x^5",{"_index":2917,"t":{},"d":{},"k":{},"b":{"78":{"position":[[4889,3],[5005,3]]}}}],["x^6",{"_index":2928,"t":{},"d":{},"k":{},"b":{"78":{"position":[[5181,3]]}}}],["x^7",{"_index":2921,"t":{},"d":{},"k":{},"b":{"78":{"position":[[4999,3]]}}}],["x^8",{"_index":2910,"t":{},"d":{},"k":{},"b":{"78":{"position":[[4748,4],[4993,3],[5175,3]]}}}],["x^8+x^2+x+1",{"_index":2806,"t":{},"d":{},"k":{},"b":{"77":{"position":[[924,11]]}}}],["x^9",{"_index":2927,"t":{},"d":{},"k":{},"b":{"78":{"position":[[5169,3]]}}}],["xeventgroupsetbitfromisr",{"_index":6349,"t":{},"d":{},"k":{},"b":{"128":{"position":[[29143,26],[29215,26]]}}}],["xidletasktcb",{"_index":6311,"t":{},"d":{},"k":{},"b":{"128":{"position":[[23054,13]]}}}],["xip",{"_index":7583,"t":{},"d":{},"k":{},"b":{"143":{"position":[[2865,3],[2920,3],[8826,3],[9070,3]]},"150":{"position":[[1682,3],[5150,3],[5225,3],[5259,3],[5329,3],[22070,3],[22491,3],[23549,3],[24541,3],[24654,3],[25357,3]]}}}],["xip_enter_command",{"_index":7582,"t":{},"d":{},"k":{},"b":{"143":{"position":[[2829,17]]}}}],["xip_exit_command",{"_index":7584,"t":{},"d":{},"k":{},"b":{"143":{"position":[[2886,16]]}}}],["xipent",{"_index":7598,"t":{},"d":{},"k":{},"b":{"143":{"position":[[4516,8],[8698,8]]}}}],["xipexit",{"_index":7599,"t":{},"d":{},"k":{},"b":{"143":{"position":[[4567,7],[8945,7]]}}}],["xmpu_set",{"_index":8409,"t":{"289":{"position":[[45,13]]}},"d":{},"k":{},"b":{}}],["xmpu_settings::ulmair0",{"_index":8414,"t":{},"d":{},"k":{},"b":{"289":{"position":[[295,22]]}}}],["xmpu_settings::xregionssettings[porttotal_num_region",{"_index":8416,"t":{},"d":{},"k":{},"b":{"289":{"position":[[481,54]]}}}],["xor",{"_index":999,"t":{},"d":{},"k":{},"b":{"69":{"position":[[6286,3]]},"77":{"position":[[3696,3]]}}}],["xregionsset",{"_index":8412,"t":{},"d":{},"k":{},"b":{"289":{"position":[[125,16],[415,16]]}}}],["xresumefromisr",{"_index":6341,"t":{},"d":{},"k":{},"b":{"128":{"position":[[28108,16],[28170,16]]}}}],["xrunningprivileg",{"_index":6271,"t":{},"d":{},"k":{},"b":{"128":{"position":[[18623,18],[18850,18]]}}}],["xsemaphorecreatecountingstatic((ubasetype_t",{"_index":6102,"t":{},"d":{},"k":{},"b":{"127":{"position":[[4963,44]]},"129":{"position":[[6588,44]]},"131":{"position":[[10847,44]]},"133":{"position":[[12289,44],[16423,44],[20727,44],[25741,44],[31894,44],[36009,44],[40314,44],[44566,44]]}}}],["xsemaphorecreaterecursivemutexstatic(p_extend",{"_index":6111,"t":{},"d":{},"k":{},"b":{"127":{"position":[[5658,45]]},"129":{"position":[[7283,45]]},"131":{"position":[[11542,45]]},"133":{"position":[[12984,45],[17118,45],[21422,45],[26436,45],[32589,45],[36704,45],[41009,45],[45261,45]]}}}],["xspi",{"_index":1616,"t":{"150":{"position":[[82,6]]}},"d":{},"k":{},"b":{"70":{"position":[[11365,4],[11412,4],[11460,4],[11508,4],[16679,4],[18103,4]]},"120":{"position":[[88,6],[130,4]]},"143":{"position":[[243,6]]},"150":{"position":[[1300,4],[1411,4],[1647,4],[2656,4],[2755,4],[6778,4]]},"152":{"position":[[5163,6],[5203,4]]}}}],["xspi_clkn",{"_index":8153,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6032,10]]}}}],["xspi_qspi",{"_index":8161,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6506,9]]}}}],["xspi_qspi_chip_select_1",{"_index":8267,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16407,23]]}}}],["xspi_qspi_chip_select_t",{"_index":8260,"t":{},"d":{},"k":{},"b":{"150":{"position":[[15736,23],[16236,23],[16294,23]]}}}],["xspi_qspi_command_interval_clocks_10",{"_index":8291,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17551,36]]}}}],["xspi_qspi_command_interval_clocks_11",{"_index":8292,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17609,36]]}}}],["xspi_qspi_command_interval_clocks_12",{"_index":8293,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17667,36]]}}}],["xspi_qspi_command_interval_clocks_13",{"_index":8294,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17725,36]]}}}],["xspi_qspi_command_interval_clocks_14",{"_index":8295,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17783,36]]}}}],["xspi_qspi_command_interval_clocks_15",{"_index":8296,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17841,36]]}}}],["xspi_qspi_command_interval_clocks_16",{"_index":8297,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17899,36]]}}}],["xspi_qspi_command_interval_clocks_2",{"_index":8283,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17103,35]]}}}],["xspi_qspi_command_interval_clocks_3",{"_index":8284,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17159,35]]}}}],["xspi_qspi_command_interval_clocks_4",{"_index":8285,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17215,35]]}}}],["xspi_qspi_command_interval_clocks_5",{"_index":8286,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17271,35]]}}}],["xspi_qspi_command_interval_clocks_6",{"_index":8287,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17327,35]]}}}],["xspi_qspi_command_interval_clocks_7",{"_index":8288,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17383,35]]}}}],["xspi_qspi_command_interval_clocks_8",{"_index":8289,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17439,35]]}}}],["xspi_qspi_command_interval_clocks_9",{"_index":8290,"t":{},"d":{},"k":{},"b":{"150":{"position":[[17495,35]]}}}],["xspi_qspi_command_interval_clocks_t",{"_index":8262,"t":{},"d":{},"k":{},"b":{"150":{"position":[[15802,35],[16913,35],[16983,35]]}}}],["xspi_qspi_cs_pulldown_clocks_1",{"_index":8301,"t":{},"d":{},"k":{},"b":{"150":{"position":[[18414,30]]}}}],["xspi_qspi_cs_pulldown_clocks_t",{"_index":8264,"t":{},"d":{},"k":{},"b":{"150":{"position":[[15885,30],[18220,30],[18285,30]]}}}],["xspi_qspi_cs_pullup_clocks_1",{"_index":8299,"t":{},"d":{},"k":{},"b":{"150":{"position":[[18153,28]]}}}],["xspi_qspi_cs_pullup_clocks_t",{"_index":8263,"t":{},"d":{},"k":{},"b":{"150":{"position":[[15847,28],[17964,28],[18027,28]]}}}],["xspi_qspi_instance_ctrl_t",{"_index":7638,"t":{},"d":{},"k":{},"b":{"143":{"position":[[10829,25]]},"150":{"position":[[15687,25],[15991,25],[16053,25]]}}}],["xspi_qspi_memory_size_16mb",{"_index":8276,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16765,26]]}}}],["xspi_qspi_memory_size_2mb",{"_index":8270,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16630,25]]}}}],["xspi_qspi_memory_size_32mb",{"_index":8278,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16812,26]]}}}],["xspi_qspi_memory_size_4mb",{"_index":8272,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16675,25]]}}}],["xspi_qspi_memory_size_64mb",{"_index":8280,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16859,26]]}}}],["xspi_qspi_memory_size_8mb",{"_index":8274,"t":{},"d":{},"k":{},"b":{"150":{"position":[[16720,25]]}}}],["xspi_qspi_memory_size_t",{"_index":8261,"t":{},"d":{},"k":{},"b":{"150":{"position":[[15769,23],[16475,23],[16533,23]]}}}],["xspi_qspi_prefetch_function_en",{"_index":8303,"t":{},"d":{},"k":{},"b":{"150":{"position":[[18669,34]]}}}],["xspi_qspi_prefetch_function_t",{"_index":8265,"t":{},"d":{},"k":{},"b":{"150":{"position":[[15925,29],[18482,29],[18546,29]]}}}],["xspin_ckp",{"_index":8154,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6262,10]]}}}],["xspin_cs0",{"_index":8155,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6291,10]]}}}],["xspin_cs1",{"_index":8156,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6302,10]]}}}],["xspin_io0",{"_index":8157,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6331,10]]}}}],["xspin_io1",{"_index":8158,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6353,10]]}}}],["xspin_io2",{"_index":8159,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6375,10]]}}}],["xspin_io3",{"_index":8160,"t":{},"d":{},"k":{},"b":{"150":{"position":[[6397,10]]}}}],["xtaskabortdelay",{"_index":6351,"t":{},"d":{},"k":{},"b":{"128":{"position":[[29420,17],[29484,17]]}}}],["xtaskcreat",{"_index":6158,"t":{},"d":{},"k":{},"b":{"128":{"position":[[4313,13],[11881,14]]}}}],["xtaskcreatestat",{"_index":6159,"t":{},"d":{},"k":{},"b":{"128":{"position":[[4331,19]]}}}],["xtaskgetcurrenttaskhandl",{"_index":6345,"t":{},"d":{},"k":{},"b":{"128":{"position":[[28598,27],[28671,27]]}}}],["xtaskgethandl",{"_index":6352,"t":{},"d":{},"k":{},"b":{"128":{"position":[[29543,16],[29606,16]]}}}],["xtaskgetidletaskhandl",{"_index":6347,"t":{},"d":{},"k":{},"b":{"128":{"position":[[28887,24],[28958,24]]}}}],["xtaskgetschedulerst",{"_index":6344,"t":{},"d":{},"k":{},"b":{"128":{"position":[[28462,24],[28532,24]]}}}],["xtaskresumefromisr",{"_index":6353,"t":{},"d":{},"k":{},"b":{"128":{"position":[[29664,20],[29730,20]]}}}],["xtimerpendfunctioncal",{"_index":6350,"t":{},"d":{},"k":{},"b":{"128":{"position":[[29283,24],[29354,24]]}}}],["xtimertasktcb",{"_index":6320,"t":{},"d":{},"k":{},"b":{"128":{"position":[[24373,14]]}}}],["ye",{"_index":2332,"t":{},"d":{},"k":{},"b":{"75":{"position":[[13591,3]]}}}],["year",{"_index":6923,"t":{},"d":{},"k":{},"b":{"136":{"position":[[1574,5]]},"137":{"position":[[2233,5]]}}}],["year_match",{"_index":7032,"t":{},"d":{},"k":{},"b":{"137":{"position":[[2180,10]]}}}],["years_since_1900,};rtc_time_t",{"_index":6965,"t":{},"d":{},"k":{},"b":{"136":{"position":[[7768,29]]}}}],["yield",{"_index":6172,"t":{},"d":{},"k":{},"b":{"128":{"position":[[5610,5],[6246,5],[6287,5],[6855,6],[7346,5],[7385,5],[7431,8]]}}}],["z",{"_index":1323,"t":{},"d":{},"k":{},"b":{"70":{"position":[[2069,2]]},"83":{"position":[[12758,1],[12929,1]]},"92":{"position":[[1816,2],[20599,1],[22996,1],[35560,1]]},"93":{"position":[[6160,3]]}}}],["zero",{"_index":1734,"t":{},"d":{},"k":{},"b":{"71":{"position":[[2671,4],[45709,5]]},"83":{"position":[[14695,5],[15073,5]]},"128":{"position":[[2070,5],[15439,5],[16799,5]]},"135":{"position":[[18447,5],[19602,5],[20830,5]]},"142":{"position":[[20439,5],[21495,5],[22624,5]]}}}],["zmod",{"_index":6645,"t":{},"d":{},"k":{},"b":{"133":{"position":[[13101,4],[13190,4],[17235,4],[17324,4],[21539,4],[21628,4],[26553,4],[26642,4],[32706,4],[32795,4],[36821,4],[36910,4],[41126,4],[41215,4],[45378,4],[45467,4]]}}}],["zmod4410",{"_index":6592,"t":{},"d":{},"k":{},"b":{"133":{"position":[[4995,8],[6879,8],[6914,8],[6956,8],[19523,8],[24418,8],[27617,8],[30625,8],[39110,8]]}}}],["zmod4410_data",{"_index":6643,"t":{},"d":{},"k":{},"b":{"133":{"position":[[11386,14],[15001,16],[15109,13],[15520,14],[19167,16],[19275,13],[19824,14],[24062,16],[24170,13],[24727,14],[30276,16],[30384,13],[30991,14],[34601,16],[34709,13],[35106,14],[38754,16],[38862,13]]}}}],["zmod4510",{"_index":6593,"t":{},"d":{},"k":{},"b":{"133":{"position":[[5004,8],[8003,8],[8038,8],[8079,8],[46409,8]]}}}],["zmod4510_data",{"_index":6684,"t":{},"d":{},"k":{},"b":{"133":{"position":[[39411,14],[43058,16],[43166,13],[43552,14],[48779,16],[48887,13]]}}}],["zmod4xxx",{"_index":206,"t":{"133":{"position":[[45,8]]},"134":{"position":[[45,8]]}},"d":{},"k":{},"b":{"43":{"position":[[33,8]]},"115":{"position":[[1860,8],[1905,8]]},"119":{"position":[[372,8],[435,8],[489,8]]},"133":{"position":[[246,8],[4780,8],[4834,8],[4940,8],[4967,8],[5041,8],[5131,8],[5614,8],[6327,8],[6429,8],[9153,8],[9227,8],[9746,8],[11126,8],[49391,8],[49788,8],[50509,8],[50987,8],[51484,8]]},"134":{"position":[[36,8],[81,8],[109,8],[137,8],[179,8],[915,8],[1071,8],[1213,8],[1590,8],[2068,8],[2336,8],[2679,8],[2905,8],[3368,8],[3606,8],[4234,8],[12463,8],[12885,8]]},"152":{"position":[[4953,8],[5014,8],[5068,8],[8168,8],[8211,8]]},"292":{"position":[[19,9],[376,9]]}}}],["zmod4xxx_conf",{"_index":8417,"t":{"290":{"position":[[45,13]]}},"d":{},"k":{},"b":{"292":{"position":[[281,13],[309,13],[1553,14],[1691,14]]}}}],["zmod4xxx_conf_str",{"_index":8418,"t":{"291":{"position":[[45,17]]}},"d":{},"k":{},"b":{}}],["zmod4xxx_default_humidity_50f",{"_index":6669,"t":{},"d":{},"k":{},"b":{"133":{"position":[[24822,30],[43647,30]]}}}],["zmod4xxx_default_temperature_20f",{"_index":6668,"t":{},"d":{},"k":{},"b":{"133":{"position":[[24765,33],[43590,33]]}}}],["zmod4xxx_delay_ptr_p",{"_index":8425,"t":{},"d":{},"k":{},"b":{"292":{"position":[[249,20],[1409,20]]}}}],["zmod4xxx_dev_t",{"_index":8419,"t":{"292":{"position":[[45,14]]}},"d":{},"k":{},"b":{}}],["zmod4xxx_dev_t::config[6",{"_index":8429,"t":{},"d":{},"k":{},"b":{"292":{"position":[[575,25]]}}}],["zmod4xxx_dev_t::delay_m",{"_index":8436,"t":{},"d":{},"k":{},"b":{"292":{"position":[[1430,24]]}}}],["zmod4xxx_dev_t::i2c_addr",{"_index":8428,"t":{},"d":{},"k":{},"b":{"292":{"position":[[456,24]]}}}],["zmod4xxx_dev_t::init_conf",{"_index":8437,"t":{},"d":{},"k":{},"b":{"292":{"position":[[1568,25]]}}}],["zmod4xxx_dev_t::meas_conf",{"_index":8438,"t":{},"d":{},"k":{},"b":{"292":{"position":[[1706,25]]}}}],["zmod4xxx_dev_t::mox_",{"_index":8430,"t":{},"d":{},"k":{},"b":{"292":{"position":[[698,22]]}}}],["zmod4xxx_dev_t::mox_lr",{"_index":8431,"t":{},"d":{},"k":{},"b":{"292":{"position":[[816,22]]}}}],["zmod4xxx_dev_t::pid",{"_index":8432,"t":{},"d":{},"k":{},"b":{"292":{"position":[[931,19]]}}}],["zmod4xxx_dev_t::prod_data",{"_index":8433,"t":{},"d":{},"k":{},"b":{"292":{"position":[[1048,25]]}}}],["zmod4xxx_dev_t::read",{"_index":8434,"t":{},"d":{},"k":{},"b":{"292":{"position":[[1167,20]]}}}],["zmod4xxx_dev_t::writ",{"_index":8435,"t":{},"d":{},"k":{},"b":{"292":{"position":[[1295,21]]}}}],["zmod4xxx_i2c_ptr_t",{"_index":8424,"t":{},"d":{},"k":{},"b":{"292":{"position":[[196,18],[222,18],[1148,18],[1276,18]]}}}],["zmod4xxx_irq_en",{"_index":6649,"t":{},"d":{},"k":{},"b":{"133":{"position":[[13801,19],[14113,19],[17953,19],[18279,19],[22257,19],[22583,19],[27271,19],[27786,19],[33406,19],[33718,19],[37539,19],[37865,19],[41844,19],[42170,19],[46096,19],[46585,19]]}}}],["zmod4xxx_types.h",{"_index":205,"t":{},"d":{},"k":{},"b":{"43":{"position":[[15,16]]},"288":{"position":[[68,18],[227,16]]},"290":{"position":[[78,18],[247,16]]},"291":{"position":[[64,18],[219,16]]},"292":{"position":[[50,18],[1867,16]]}}}],["zmod4xxx_wait_1010_m",{"_index":6678,"t":{},"d":{},"k":{},"b":{"133":{"position":[[30773,22]]}}}],["zmod4xxxx",{"_index":6747,"t":{},"d":{},"k":{},"b":{"134":{"position":[[8166,9],[8699,9],[9206,9],[9745,9],[10278,9],[10811,9],[11313,9]]}}}]],"pipeline":["stemmer"]}; +const PREVIEW_LOOKUP = {"0":{"t":"RZV Flexible Software Package Documentation: Copyright","p":"\nCopyright [2020-2023] Renesas Electronics Corporation and/or its affiliates. All Rights Reserved.\nThis software and documentation are supplied by Renesas Electronics America Inc. and may only be used with products of Renesas Electronics Corp. and its affiliates (\"Renesas\"). ...","l":"_c_o_p_y_r_i_g_h_t.html"},"1":{"t":"RZV Flexible Software Package Documentation: FSP Architecture","p":"\nTable of Contents\nFSP Architecture OverviewC99 Use\nDoxygen\nWeak Symbols\nMemory Allocation\n\n\n\n\n\nFSP Architecture Overview\nThis guide describes the Renesas Flexible Software Package (FSP) architecture and how to use the FSP Application Programming Interface (API).\n\nC99 Use\nTh ...","l":"_f_s_p__a_r_c_h_i_t_e_c_t_u_r_e.html"},"2":{"t":"RZV Flexible Software Package Documentation: Starting Development","p":"\nFor details on Starting Development Introduction, please refer to Getting Started with RZ/V Flexible Software Package. \n","l":"_s_t_a_r_t__d_e_v.html"},"3":{"t":"RZV Flexible Software Package Documentation: r_adc_e Directory Reference","p":"\n","l":"dir_01f24db1d7d4ea241747e1b911bb4dd3.html"},"4":{"t":"RZV Flexible Software Package Documentation: r_sci_b_uart Directory Reference","p":"\n","l":"dir_03abf86de595688a96ebcecf32269b5f.html"},"5":{"t":"RZV Flexible Software Package Documentation: r_scif_uart Directory Reference","p":"\n","l":"dir_06ac2fea5addf50fea2bb5e0e4a58a75.html"},"6":{"t":"RZV Flexible Software Package Documentation: r_riic_slave Directory Reference","p":"\n","l":"dir_0bca81d02a8d413d81c3bba6f6d5b729.html"},"7":{"t":"RZV Flexible Software Package Documentation: rm_hs300x Directory Reference","p":"\n","l":"dir_19049811589ddbe445201d9ddb319c45.html"},"8":{"t":"RZV Flexible Software Package Documentation: r_mhu_b_ns Directory Reference","p":"\n","l":"dir_1a53df904a3eb9c132546606de19ec73.html"},"9":{"t":"RZV Flexible Software Package Documentation: cr Directory Reference","p":"\n","l":"dir_1eee8f71abc824ae97ebae32f445d596.html"},"10":{"t":"RZV Flexible Software Package Documentation: r_ioport Directory Reference","p":"\n","l":"dir_2200382642ddd0cbc664f82c3840b7ff.html"},"11":{"t":"RZV Flexible Software Package Documentation: r_crc Directory Reference","p":"\n","l":"dir_23ac1d8469413529e7df8fcb3e481aa8.html"},"12":{"t":"RZV Flexible Software Package Documentation: cr Directory Reference","p":"\n","l":"dir_2892cb52525ef56515225730a2933cd3.html"},"13":{"t":"RZV Flexible Software Package Documentation: r_pdm Directory Reference","p":"\n","l":"dir_29a94bdcf0005ac32417a5f44c112273.html"},"14":{"t":"RZV Flexible Software Package Documentation: r_mhu_s Directory Reference","p":"\n","l":"dir_2e22a597bc0833eaa06a97be427cd48e.html"},"15":{"t":"RZV Flexible Software Package Documentation: r_mhu_b_ns_swint_get Directory Reference","p":"\n","l":"dir_337da3cf9568b3b9339f7ed6fa9fbdb0.html"},"16":{"t":"RZV Flexible Software Package Documentation: r_dmac_b Directory Reference","p":"\n","l":"dir_3c95c913ded53f65bc2ec8aaf733bc76.html"},"17":{"t":"RZV Flexible Software Package Documentation: cmsis Directory Reference","p":"\n","l":"dir_3f794d2e5bd3201a5f002e4d86c28183.html"},"18":{"t":"RZV Flexible Software Package Documentation: r_rtc Directory Reference","p":"\n","l":"dir_3fac1e106d8f109b52f03b7d8e4175eb.html"},"19":{"t":"RZV Flexible Software Package Documentation: cr Directory Reference","p":"\n","l":"dir_406a9318124dcf58ba3000884a6a076c.html"},"20":{"t":"RZV Flexible Software Package Documentation: r_xspi_qspi Directory Reference","p":"\n","l":"dir_469e4aa5561df8213e758630b89e443b.html"},"21":{"t":"RZV Flexible Software Package Documentation: api Directory Reference","p":"\n","l":"dir_483823e5dc78d78f7ac10fcc376d9b6f.html"},"22":{"t":"RZV Flexible Software Package Documentation: rzv2l Directory Reference","p":"\n","l":"dir_4a05fc25b811b75a627e4aa898b00050.html"},"23":{"t":"RZV Flexible Software Package Documentation: r_mtu3 Directory Reference","p":"\n","l":"dir_4dd5fb48473fba94003c71622260a76d.html"},"24":{"t":"RZV Flexible Software Package Documentation: fsp Directory Reference","p":"\n\n\nDirectories\ndirectory  src\n \n\n","l":"dir_4eb7b9faae1fa744374d303083a1b876.html"},"25":{"t":"RZV Flexible Software Package Documentation: r_rspi Directory Reference","p":"\n","l":"dir_4f423975143c22c943a603082e569636.html"},"26":{"t":"RZV Flexible Software Package Documentation: r_gpt Directory Reference","p":"\n","l":"dir_506fc0d6bfe4d6909e6b9a4fa515ad12.html"},"27":{"t":"RZV Flexible Software Package Documentation: rm_comms_i2c Directory Reference","p":"\n","l":"dir_56317b3b133800f8abbbf2dd41b9e9e4.html"},"28":{"t":"RZV Flexible Software Package Documentation: cm Directory Reference","p":"\n","l":"dir_5b18513a00f80aa7a4d41cc9fe6bec47.html"},"29":{"t":"RZV Flexible Software Package Documentation: cr Directory Reference","p":"\n","l":"dir_65abee7086f32fb43e2ed8c426b0f62d.html"},"30":{"t":"RZV Flexible Software Package Documentation: rm_hs400x Directory Reference","p":"\n","l":"dir_65b7de0ad4dfa8da03c34cade352fcba.html"},"31":{"t":"RZV Flexible Software Package Documentation: cm Directory Reference","p":"\n","l":"dir_769816f170e40fca4c582b9234ebee59.html"},"32":{"t":"RZV Flexible Software Package Documentation: r_sci_b_i2c Directory Reference","p":"\n","l":"dir_7aaf60cd61d7f13d58ecdf6a2deb5113.html"},"33":{"t":"RZV Flexible Software Package Documentation: all Directory Reference","p":"\n\n\nDirectories\n\n","l":"dir_813a46afb0fa3ee9aed6d48fde336c3d.html"},"34":{"t":"RZV Flexible Software Package Documentation: r_canfd Directory Reference","p":"\n","l":"dir_81e84f1cd58835c6789b6cb4fcf92d34.html"},"35":{"t":"RZV Flexible Software Package Documentation: r_mhu_b_s Directory Reference","p":"\n","l":"dir_8434d18d4de492725cdeb19e512e6e83.html"},"36":{"t":"RZV Flexible Software Package Documentation: r_mhu_ns Directory Reference","p":"\n","l":"dir_84590a0e0fd6b102517f2d219ec84a25.html"},"37":{"t":"RZV Flexible Software Package Documentation: mcu Directory Reference","p":"\n\n\nDirectories\n\n","l":"dir_84c7fb9f0dcc21548e48474f264aea02.html"},"38":{"t":"RZV Flexible Software Package Documentation: rzv Directory Reference","p":"\n","l":"dir_95eeafea5658a8126e4bc90eb700647f.html"},"39":{"t":"RZV Flexible Software Package Documentation: r_riic_master Directory Reference","p":"\n","l":"dir_9cbdcb69bcc54f3441d7a76e98f4e6ec.html"},"40":{"t":"RZV Flexible Software Package Documentation: r_intc_irq Directory Reference","p":"\n","l":"dir_9d0f4eda9809e1b4226dcabb06a7c394.html"},"41":{"t":"RZV Flexible Software Package Documentation: rm_freertos_port Directory Reference","p":"\n\n\nDirectories\n\n","l":"dir_9d98a930a89b8b1d2a23c7a61715f686.html"},"42":{"t":"RZV Flexible Software Package Documentation: Device Directory Reference","p":"\n","l":"dir_a08e3dca3559ee45a5c2783e6ada2cb6.html"},"43":{"t":"RZV Flexible Software Package Documentation: rm_zmod4xxx Directory Reference","p":"\n\n\nFiles\nfile  zmod4xxx_types.h\n zmod4xxx types \n \n\n","l":"dir_a1c548b6b7f27ec431e466dd72ac2e4a.html"},"44":{"t":"RZV Flexible Software Package Documentation: cm Directory Reference","p":"\n","l":"dir_a9dcbc47691334a943a8b36097e212ff.html"},"45":{"t":"RZV Flexible Software Package Documentation: r_mhu_ns_swint_get Directory Reference","p":"\n","l":"dir_b0f4fc8947372f83a507030e303b9b5d.html"},"46":{"t":"RZV Flexible Software Package Documentation: r_i3c_b Directory Reference","p":"\n","l":"dir_b175141b3157e4e76d1d8c13e5f81d54.html"},"47":{"t":"RZV Flexible Software Package Documentation: r_cmtw Directory Reference","p":"\n","l":"dir_b32d02788e476b2047e9f26cb7f54c6f.html"},"48":{"t":"RZV Flexible Software Package Documentation: cm Directory Reference","p":"\n","l":"dir_b3a5220b68a679d0c6e1bce5d2ea348d.html"},"49":{"t":"RZV Flexible Software Package Documentation: r_mhu_b_ns_swint_set Directory Reference","p":"\n","l":"dir_c02315add6d91c831f3d7736ea2baca2.html"},"50":{"t":"RZV Flexible Software Package Documentation: r_adc_c Directory Reference","p":"\n","l":"dir_c92f5981e4081ab670b7cf44e26cd071.html"},"51":{"t":"RZV Flexible Software Package Documentation: r_spi_b Directory Reference","p":"\n","l":"dir_cf7d9df530ee616b052384318f58ac5c.html"},"52":{"t":"RZV Flexible Software Package Documentation: r_poeg Directory Reference","p":"\n","l":"dir_cfc262de757c4fafb59972058df00cca.html"},"53":{"t":"RZV Flexible Software Package Documentation: rzv2h Directory Reference","p":"\n\n\nDirectories\n\n","l":"dir_d137f863f3aa52a94b0bb7ac2444b202.html"},"54":{"t":"RZV Flexible Software Package Documentation: r_intc_tint Directory Reference","p":"\n","l":"dir_d4306888134857e945f05609158a0847.html"},"55":{"t":"RZV Flexible Software Package Documentation: bsp Directory Reference","p":"\n","l":"dir_d561306dc9ffd9cb02c45da37d4ad0c8.html"},"56":{"t":"RZV Flexible Software Package Documentation: r_tsu_b Directory Reference","p":"\n","l":"dir_db5a5c24fd005ae605b89cd757b18e53.html"},"57":{"t":"RZV Flexible Software Package Documentation: instances Directory Reference","p":"\n","l":"dir_e0a869f431b6ce5473c65d6d660a25bf.html"},"58":{"t":"RZV Flexible Software Package Documentation: r_mhu_ns_swint_set Directory Reference","p":"\n","l":"dir_e5ca85ea1ccd07fa77fb7d7e0afba852.html"},"59":{"t":"RZV Flexible Software Package Documentation: r_wdt Directory Reference","p":"\n","l":"dir_e78364d727f48d053dd661e77157bdd2.html"},"60":{"t":"RZV Flexible Software Package Documentation: Source Directory Reference","p":"\n\n\nDirectories\n\n","l":"dir_e97f6630d2e378a043db5877972b5388.html"},"61":{"t":"RZV Flexible Software Package Documentation: r_gtm Directory Reference","p":"\n","l":"dir_eaee7091e5d22fe78f0323925da6e7d1.html"},"62":{"t":"RZV Flexible Software Package Documentation: src Directory Reference","p":"\n\n\nDirectories\ndirectory  bsp\n \ndirectory  rm_freertos_port\n \n\n","l":"dir_eb65a6deadbac0d81f62867562dbf7fc.html"},"63":{"t":"RZV Flexible Software Package Documentation: RENESAS Directory Reference","p":"\n","l":"dir_ee0097b7fe886da56342dc3e35d00ea9.html"},"64":{"t":"RZV Flexible Software Package Documentation: r_intc_nmi Directory Reference","p":"\n","l":"dir_ef127bf948e71f51410c3749fe1f2ea1.html"},"65":{"t":"RZV Flexible Software Package Documentation: r_elc Directory Reference","p":"\n","l":"dir_f2f0e3675ce1e9a82b93eda44a42fb28.html"},"66":{"t":"RZV Flexible Software Package Documentation: inc Directory Reference","p":"\n\n\nDirectories\n\n","l":"dir_f5e136908169532a193d9a3b7213f49a.html"},"67":{"t":"RZV Flexible Software Package Documentation: ADC Interface","p":"\nDetailed Description\nInterface for A/D Converters. \n\nSummary\nThe ADC interface provides standard ADC functionality including one-shot mode (single scan), continuous scan and group scan. It also allows configuration of hardware and software triggers for starting scans. After ...","l":"group___a_d_c___a_p_i.html"},"68":{"t":"RZV Flexible Software Package Documentation: Analog to Digital Converter (r_adc_c)","p":"\n\n\nFunctions\nfsp_err_t R_ADC_C_Open (adc_ctrl_t *p_ctrl, adc_cfg_t const *const p_cfg)\n \nfsp_err_t R_ADC_C_ScanCfg (adc_ctrl_t *p_ctrl, void const *const p_channel_cfg)\n \nfsp_err_t R_ADC_C_InfoGet (adc_ctrl_t *p_ctrl, adc_info_t *p_adc_info)\n \nfsp_err_t R_ADC_C_ScanStart (ad ...","l":"group___a_d_c___c.html"},"69":{"t":"RZV Flexible Software Package Documentation: Analog to Digital Converter (r_adc_e)","p":"\n\n\nFunctions\nfsp_err_t R_ADC_E_Open (adc_ctrl_t *p_ctrl, adc_cfg_t const *const p_cfg)\n \nfsp_err_t R_ADC_E_ScanCfg (adc_ctrl_t *p_ctrl, void const *const p_channel_cfg)\n \nfsp_err_t R_ADC_E_InfoGet (adc_ctrl_t *p_ctrl, adc_info_t *p_adc_info)\n \nfsp_err_t R_ADC_E_ScanStart (ad ...","l":"group___a_d_c___e.html"},"70":{"t":"RZV Flexible Software Package Documentation: BSP I/O access","p":"\n\n\nFunctions\n__STATIC_INLINE uint32_t R_BSP_PinRead (bsp_io_port_pin_t pin)\n \n__STATIC_INLINE void R_BSP_PinWrite (bsp_io_port_pin_t pin, bsp_io_level_t level)\n \n__STATIC_INLINE void R_BSP_PinAccessEnable (void)\n \n__STATIC_INLINE void R_BSP_PinAccessDisable (void)\n \n__STATIC ...","l":"group___b_s_p___i_o.html"},"71":{"t":"RZV Flexible Software Package Documentation: MPU Board Support Package","p":"\n\n\nFunctions\nfsp_err_t R_FSP_VersionGet (fsp_pack_version_t *const p_version)\n \nvoid Reset_Handler_NS (void)\n \nvoid Default_Handler (void)\n \nvoid NMI_Handler_NS (void)\n \nvoid Reset_Handler_S (void)\n \nvoid Default_Handler_S (void)\n \nvoid NMI_Handler_S (void)\n \nvoid SecureFaul ...","l":"group___b_s_p___m_c_u.html"},"72":{"t":"RZV Flexible Software Package Documentation: RZV2H","p":"\nDetailed Description\nBuild Time Configurations for rzv2h_fsp\nThe following build time configurations are defined in fsp_cfg/bsp/bsp_mcu_family_cfg.h:\n\n\nConfigurationOptionsDefaultDescription \n\n \n\n\nEnumerations\nenum  elc_event_t \n \n\nEnumeration Type Documentation\n\n◆ elc_even ...","l":"group___b_s_p___m_c_u___r_z_v2_h.html"},"73":{"t":"RZV Flexible Software Package Documentation: RZV2L","p":"\nDetailed Description\nBuild Time Configurations for rzv2l_fsp\nThe following build time configurations are defined in fsp_cfg/bsp/bsp_mcu_family_cfg.h:\n\n\nConfigurationOptionsDefaultDescription \n\n \n","l":"group___b_s_p___m_c_u___r_z_v2_l.html"},"74":{"t":"RZV Flexible Software Package Documentation: CAN Interface","p":"\nDetailed Description\nInterface for CAN peripheral. \n\nSummary\nThe CAN interface provides common APIs for CAN HAL drivers. CAN interface supports following features.\nFull-duplex CAN communication\nGeneric CAN parameter setting\nInterrupt driven transmit/receive processing\nCallb ...","l":"group___c_a_n___a_p_i.html"},"75":{"t":"RZV Flexible Software Package Documentation: Controller Area Network - Flexible Data (r_canfd)","p":"\n\n\nFunctions\nfsp_err_t R_CANFD_Open (can_ctrl_t *const p_api_ctrl, can_cfg_t const *const p_cfg)\n \nfsp_err_t R_CANFD_Close (can_ctrl_t *const p_api_ctrl)\n \nfsp_err_t R_CANFD_Write (can_ctrl_t *const p_api_ctrl, uint32_t const buffer, can_frame_t *const p_frame)\n \nfsp_err_t R ...","l":"group___c_a_n_f_d.html"},"76":{"t":"RZV Flexible Software Package Documentation: Compare Match Timer W (r_cmtw)","p":"\n\n\nFunctions\nfsp_err_t R_CMTW_Close (timer_ctrl_t *const p_ctrl)\n \nfsp_err_t R_CMTW_PeriodSet (timer_ctrl_t *const p_ctrl, uint32_t const period_counts)\n \nfsp_err_t R_CMTW_DutyCycleSet (timer_ctrl_t *const p_ctrl, uint32_t const duty_cycle_counts, uint32_t const pin)\n \nfsp_e ...","l":"group___c_m_t_w.html"},"77":{"t":"RZV Flexible Software Package Documentation: CRC (r_crc)","p":"\n\n\nFunctions\nfsp_err_t R_CRC_Open (crc_ctrl_t *const p_ctrl, crc_cfg_t const *const p_cfg)\n \nfsp_err_t R_CRC_Close (crc_ctrl_t *const p_ctrl)\n \nfsp_err_t R_CRC_Calculate (crc_ctrl_t *const p_ctrl, crc_input_t *const p_crc_input, uint32_t *calculatedValue)\n \nfsp_err_t R_CRC_C ...","l":"group___c_r_c.html"},"78":{"t":"RZV Flexible Software Package Documentation: CRC Interface","p":"\nDetailed Description\nInterface for cyclic redundancy checking. \n\nSummary\nThe CRC (Cyclic Redundancy Check) calculator generates CRC codes using five different polynomials including 8 bit, 16 bit, and 32 bit variations. Calculation can be performed by sending data to the blo ...","l":"group___c_r_c___a_p_i.html"},"79":{"t":"RZV Flexible Software Package Documentation: Direct Memory Access Controller (r_dmac_b)","p":"\n\n\nFunctions\nfsp_err_t R_DMAC_B_Open (transfer_ctrl_t *const p_api_ctrl, transfer_cfg_t const *const p_cfg)\n \nfsp_err_t R_DMAC_B_Reconfigure (transfer_ctrl_t *const p_api_ctrl, transfer_info_t *p_info)\n \nfsp_err_t R_DMAC_B_Reset (transfer_ctrl_t *const p_api_ctrl, void const ...","l":"group___d_m_a_c___b.html"},"80":{"t":"RZV Flexible Software Package Documentation: Event Link Controller (r_elc)","p":"\n\n\nFunctions\nfsp_err_t R_ELC_Open (elc_ctrl_t *const p_ctrl, elc_cfg_t const *const p_cfg)\n \nfsp_err_t R_ELC_Close (elc_ctrl_t *const p_ctrl)\n \nfsp_err_t R_ELC_SoftwareEventGenerate (elc_ctrl_t *const p_ctrl, elc_software_event_t event_number)\n \nfsp_err_t R_ELC_LinkSet (elc_ ...","l":"group___e_l_c.html"},"81":{"t":"RZV Flexible Software Package Documentation: ELC Interface","p":"\nDetailed Description\nInterface for the Event Link Controller. \n\n\nData Structures\nstruct  elc_cfg_t\n \nstruct  elc_api_t\n \nstruct  elc_instance_t\n \n\n\nTypedefs\ntypedef void elc_ctrl_t\n \n\n\nEnumerations\nenum  elc_peripheral_t \n \nenum  elc_software_event_t \n \n\nData Structure Docu ...","l":"group___e_l_c___a_p_i.html"},"82":{"t":"RZV Flexible Software Package Documentation: External IRQ Interface","p":"\nDetailed Description\nInterface for detecting external interrupts. \n\nSummary\nThe External IRQ Interface is for configuring interrupts to fire when a trigger condition is detected on an external IRQ pin.\nThe External IRQ Interface can be implemented by:\nExternal IRQ (r_intc_n ...","l":"group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html"},"83":{"t":"RZV Flexible Software Package Documentation: General PWM Timer (r_gpt)","p":"\n\n\nFunctions\nfsp_err_t R_GPT_Open (timer_ctrl_t *const p_ctrl, timer_cfg_t const *const p_cfg)\n \nfsp_err_t R_GPT_Stop (timer_ctrl_t *const p_ctrl)\n \nfsp_err_t R_GPT_Start (timer_ctrl_t *const p_ctrl)\n \nfsp_err_t R_GPT_Reset (timer_ctrl_t *const p_ctrl)\n \nfsp_err_t R_GPT_Enab ...","l":"group___g_p_t.html"},"84":{"t":"RZV Flexible Software Package Documentation: General Timer (r_gtm)","p":"\n\n\nFunctions\nfsp_err_t R_GTM_Close (timer_ctrl_t *const p_ctrl)\n \nfsp_err_t R_GTM_PeriodSet (timer_ctrl_t *const p_ctrl, uint32_t const period_counts)\n \nfsp_err_t R_GTM_DutyCycleSet (timer_ctrl_t *const p_ctrl, uint32_t const duty_cycle_counts, uint32_t const pin)\n \nfsp_err_ ...","l":"group___g_t_m.html"},"85":{"t":"RZV Flexible Software Package Documentation: I2C Master Interface","p":"\nDetailed Description\nInterface for I2C master communication. \n\nSummary\nThe I2C master interface provides a common API for I2C HAL drivers. The I2C master interface supports:\nInterrupt driven transmit/receive processing\nCallback function support which can return an event cod ...","l":"group___i2_c___m_a_s_t_e_r___a_p_i.html"},"86":{"t":"RZV Flexible Software Package Documentation: I2C Slave Interface","p":"\nDetailed Description\nInterface for I2C slave communication. \n\nSummary\nThe I2C slave interface provides a common API for I2C HAL drivers. The I2C slave interface supports:\nInterrupt driven transmit/receive processing\nCallback function support which returns a event codes\n\nImp ...","l":"group___i2_c___s_l_a_v_e___a_p_i.html"},"87":{"t":"RZV Flexible Software Package Documentation: I3C Interface","p":"\nDetailed Description\nInterface for I3C. \n\nSummary\nThe I3C interface provides APIs and definitions for I3C communication.\n\nKnown Implementations\nI3C (r_i3c_b) \n\n\nData Structures\nstruct  i3c_device_status_t\n \nstruct  i3c_slave_info_t\n \nstruct  i3c_device_table_cfg_t\n \nstruct ...","l":"group___i3_c___a_p_i.html"},"88":{"t":"RZV Flexible Software Package Documentation: I3C (r_i3c_b)","p":"\n\n\nFunctions\nfsp_err_t R_I3C_B_Open (i3c_ctrl_t *const p_api_ctrl, i3c_cfg_t const *const p_cfg)\n \nfsp_err_t R_I3C_B_Enable (i3c_ctrl_t *const p_api_ctrl)\n \nfsp_err_t R_I3C_B_DeviceCfgSet (i3c_ctrl_t *const p_api_ctrl, i3c_device_cfg_t const *const p_device_cfg)\n \nfsp_err_t  ...","l":"group___i3_c___b.html"},"89":{"t":"RZV Flexible Software Package Documentation: External IRQ (r_intc_irq)","p":"\n\n\nFunctions\nfsp_err_t R_INTC_IRQ_ExternalIrqOpen (external_irq_ctrl_t *const p_api_ctrl, external_irq_cfg_t const *const p_cfg)\n \nfsp_err_t R_INTC_IRQ_ExternalIrqEnable (external_irq_ctrl_t *const p_api_ctrl)\n \nfsp_err_t R_INTC_IRQ_ExternalIrqDisable (external_irq_ctrl_t *c ...","l":"group___i_n_t_c___i_r_q.html"},"90":{"t":"RZV Flexible Software Package Documentation: External IRQ (r_intc_nmi)","p":"\n\n\nFunctions\nfsp_err_t R_INTC_NMI_ExternalIrqOpen (external_irq_ctrl_t *const p_api_ctrl, external_irq_cfg_t const *const p_cfg)\n \nfsp_err_t R_INTC_NMI_ExternalIrqEnable (external_irq_ctrl_t *const p_api_ctrl)\n \nfsp_err_t R_INTC_NMI_ExternalIrqDisable (external_irq_ctrl_t *c ...","l":"group___i_n_t_c___n_m_i.html"},"91":{"t":"RZV Flexible Software Package Documentation: External IRQ (r_intc_tint)","p":"\n\n\nFunctions\nfsp_err_t R_INTC_TINT_ExternalIrqOpen (external_irq_ctrl_t *const p_api_ctrl, external_irq_cfg_t const *const p_cfg)\n \nfsp_err_t R_INTC_TINT_ExternalIrqEnable (external_irq_ctrl_t *const p_api_ctrl)\n \nfsp_err_t R_INTC_TINT_ExternalIrqDisable (external_irq_ctrl_t ...","l":"group___i_n_t_c___t_i_n_t.html"},"92":{"t":"RZV Flexible Software Package Documentation: I/O Ports (r_ioport)","p":"\n\n\nFunctions\nfsp_err_t R_IOPORT_Open (ioport_ctrl_t *const p_ctrl, const ioport_cfg_t *p_cfg)\n \nfsp_err_t R_IOPORT_Close (ioport_ctrl_t *const p_ctrl)\n \nfsp_err_t R_IOPORT_PinsCfg (ioport_ctrl_t *const p_ctrl, const ioport_cfg_t *p_cfg)\n \nfsp_err_t R_IOPORT_PinCfg (ioport_ct ...","l":"group___i_o_p_o_r_t.html"},"93":{"t":"RZV Flexible Software Package Documentation: I/O Port Interface","p":"\nDetailed Description\nInterface for accessing I/O ports and configuring I/O functionality. \n\nSummary\nThe IOPort shared interface provides the ability to access the IOPorts of a device at both bit and port level. Port and pin direction can be changed.\nIOPORT Interface descrip ...","l":"group___i_o_p_o_r_t___a_p_i.html"},"94":{"t":"RZV Flexible Software Package Documentation: MHU Interface (for secure and non secure channels)","p":"\nDetailed Description\nInterface for Message Handling Unit. \n\nSummary\nThe Message Handling Unit interface provides a common API for MHU HAL drivers. The Message Handling Unit interface supports:\nMessage communication between Cortex-A55 and Cortex-M33.\n32-bit data can be commu ...","l":"group___m_h_u___a_p_i.html"},"95":{"t":"RZV Flexible Software Package Documentation: Message Handling Unit for non secure channels (r_mhu_b_ns)","p":"\n\n\nFunctions\nfsp_err_t R_MHU_B_NS_Open (mhu_ctrl_t *p_ctrl, mhu_cfg_t const *const p_cfg)\n \nfsp_err_t R_MHU_B_NS_MsgSend (mhu_ctrl_t *const p_ctrl, uint32_t const msg)\n \nfsp_err_t R_MHU_B_NS_Close (mhu_ctrl_t *const p_ctrl)\n \nfsp_err_t R_MHU_B_NS_CallbackSet (mhu_ctrl_t *con ...","l":"group___m_h_u___b___n_s.html"},"96":{"t":"RZV Flexible Software Package Documentation: Message Handling Unit for non-secure software interrupt receive (r_mhu_b_ns_swint_get)","p":"\n\n\nFunctions\nfsp_err_t R_MHU_B_NS_SWINT_GET_Open (mhu_ns_swint_get_ctrl_t *p_ctrl, mhu_ns_swint_get_cfg_t const *const p_cfg)\n \nfsp_err_t R_MHU_B_NS_SWINT_GET_Close (mhu_ns_swint_get_ctrl_t *const p_ctrl)\n \nfsp_err_t R_MHU_B_NS_SWINT_GET_CallbackSet (mhu_ns_swint_get_ctrl_t ...","l":"group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html"},"97":{"t":"RZV Flexible Software Package Documentation: Message Handling Unit for non-secure software interrupt generation (r_mhu_b_ns_swint_set)","p":"\n\n\nFunctions\nfsp_err_t R_MHU_B_NS_SWINT_SET_Open (mhu_ns_swint_set_ctrl_t *p_ctrl, mhu_ns_swint_set_cfg_t const *const p_cfg)\n \nfsp_err_t R_MHU_B_NS_SWINT_SET_InterruptSet (mhu_ns_swint_set_ctrl_t *const p_ctrl)\n \nfsp_err_t R_MHU_B_NS_SWINT_SET_Close (mhu_ns_swint_set_ctrl_t ...","l":"group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html"},"98":{"t":"RZV Flexible Software Package Documentation: Message Handling Unit for secure channels (r_mhu_b_s)","p":"\n\n\nFunctions\nfsp_err_t R_MHU_B_S_Open (mhu_ctrl_t *p_ctrl, mhu_cfg_t const *const p_cfg)\n \nfsp_err_t R_MHU_B_S_MsgSend (mhu_ctrl_t *const p_ctrl, uint32_t const msg)\n \nfsp_err_t R_MHU_B_S_Close (mhu_ctrl_t *const p_ctrl)\n \nfsp_err_t R_MHU_B_S_CallbackSet (mhu_ctrl_t *const p ...","l":"group___m_h_u___b___s.html"},"99":{"t":"RZV Flexible Software Package Documentation: Message Handling Unit for non secure channels (r_mhu_ns)","p":"\n\n\nFunctions\nfsp_err_t R_MHU_NS_Open (mhu_ctrl_t *p_ctrl, mhu_cfg_t const *const p_cfg)\n \nfsp_err_t R_MHU_NS_MsgSend (mhu_ctrl_t *const p_ctrl, uint32_t const msg)\n \nfsp_err_t R_MHU_NS_Close (mhu_ctrl_t *const p_ctrl)\n \nfsp_err_t R_MHU_NS_CallbackSet (mhu_ctrl_t *const p_api ...","l":"group___m_h_u___n_s.html"},"100":{"t":"RZV Flexible Software Package Documentation: Message Handling Unit for non-secure software interrupt receive (r_mhu_ns_swint_get)","p":"\n\n\nFunctions\nfsp_err_t R_MHU_NS_SWINT_GET_Open (mhu_ns_swint_get_ctrl_t *p_ctrl, mhu_ns_swint_get_cfg_t const *const p_cfg)\n \nfsp_err_t R_MHU_NS_SWINT_GET_Close (mhu_ns_swint_get_ctrl_t *const p_ctrl)\n \nfsp_err_t R_MHU_NS_SWINT_GET_CallbackSet (mhu_ns_swint_get_ctrl_t *const ...","l":"group___m_h_u___n_s___s_w_i_n_t___g_e_t.html"},"101":{"t":"RZV Flexible Software Package Documentation: MHU Interface (Software Interrupt Get)","p":"\nDetailed Description\nInterface for Message Handling Unit (Software Interrupt Get) \n\nSummary\nThe Message Handling Unit (Software Interrupt Get) interface provides a common API for MHU HAL drivers. The Message Handling Unit (Software Interrupt Get) interface supports:\nReceive ...","l":"group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html"},"102":{"t":"RZV Flexible Software Package Documentation: Message Handling Unit for non-secure software interrupt generation (r_mhu_ns_swint_set)","p":"\n\n\nFunctions\nfsp_err_t R_MHU_NS_SWINT_SET_Open (mhu_ns_swint_set_ctrl_t *p_ctrl, mhu_ns_swint_set_cfg_t const *const p_cfg)\n \nfsp_err_t R_MHU_NS_SWINT_SET_InterruptSet (mhu_ns_swint_set_ctrl_t *const p_ctrl)\n \nfsp_err_t R_MHU_NS_SWINT_SET_Close (mhu_ns_swint_set_ctrl_t *cons ...","l":"group___m_h_u___n_s___s_w_i_n_t___s_e_t.html"},"103":{"t":"RZV Flexible Software Package Documentation: MHU Interface (Software Interrupt Set)","p":"\nDetailed Description\nInterface for Message Handling Unit (Software Interrupt Set) \n\nSummary\nThe Message Handling Unit (Software Interrupt Set) interface provides a common API for MHU HAL drivers. The Message Handling Unit (Software Interrupt Set) interface supports:\nGenerat ...","l":"group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html"},"104":{"t":"RZV Flexible Software Package Documentation: Message Handling Unit for secure channels (r_mhu_s)","p":"\n\n\nFunctions\nfsp_err_t R_MHU_S_Open (mhu_ctrl_t *p_ctrl, mhu_cfg_t const *const p_cfg)\n \nfsp_err_t R_MHU_S_MsgSend (mhu_ctrl_t *const p_ctrl, uint32_t const msg)\n \nfsp_err_t R_MHU_S_Close (mhu_ctrl_t *const p_ctrl)\n \nfsp_err_t R_MHU_S_CallbackSet (mhu_ctrl_t *const p_api_ctr ...","l":"group___m_h_u___s.html"},"105":{"t":"RZV Flexible Software Package Documentation: Multi-Function Timer Pulse Unit 3 (r_mtu3)","p":"\n\n\nFunctions\nfsp_err_t R_MTU3_Open (timer_ctrl_t *const p_ctrl, timer_cfg_t const *const p_cfg)\n \nfsp_err_t R_MTU3_Stop (timer_ctrl_t *const p_ctrl)\n \nfsp_err_t R_MTU3_Start (timer_ctrl_t *const p_ctrl)\n \nfsp_err_t R_MTU3_Reset (timer_ctrl_t *const p_ctrl)\n \nfsp_err_t R_MTU3 ...","l":"group___m_t_u3.html"},"106":{"t":"RZV Flexible Software Package Documentation: PDM Interface (r_pdm)","p":"\n\n\nFunctions\nfsp_err_t R_PDM_Open (pdm_ctrl_t *const p_ctrl, pdm_cfg_t const *const p_cfg)\n \nfsp_err_t R_PDM_Start (pdm_ctrl_t *const p_ctrl, void *const p_buffer, size_t const buffer_size, uint32_t const number_of_data_to_callback)\n \nfsp_err_t R_PDM_Stop (pdm_ctrl_t *const ...","l":"group___p_d_m.html"},"107":{"t":"RZV Flexible Software Package Documentation: PDM Interface","p":"\nDetailed Description\nInterface for PDM audio communication. \n\nSummary\nThe pulse-density modulation(PDM) interface provides APIs and definitions for PDM audio communication.\n\nKnown Implementations\nPDM Interface (r_pdm) \n\n\nData Structures\nstruct  pdm_callback_args_t\n \nstruct ...","l":"group___p_d_m___a_p_i.html"},"108":{"t":"RZV Flexible Software Package Documentation: Port Output Enable for GPT (r_poeg)","p":"\n\n\nFunctions\nfsp_err_t R_POEG_Open (poeg_ctrl_t *const p_ctrl, poeg_cfg_t const *const p_cfg)\n \nfsp_err_t R_POEG_StatusGet (poeg_ctrl_t *const p_ctrl, poeg_status_t *const p_status)\n \nfsp_err_t R_POEG_CallbackSet (poeg_ctrl_t *const p_ctrl, void(*p_callback)(poeg_callback_ar ...","l":"group___p_o_e_g.html"},"109":{"t":"RZV Flexible Software Package Documentation: POEG Interface","p":"\nDetailed Description\nInterface for the Port Output Enable for GPT. \nDefines the API and data structures for the Port Output Enable for GPT (POEG) interface.\n\nSummary\nThe POEG disables GPT output pins based on configurable events.\nImplemented by: Port Output Enable for GPT ( ...","l":"group___p_o_e_g___a_p_i.html"},"110":{"t":"RZV Flexible Software Package Documentation: Analog","p":"\nDetailed Description\nAnalog Modules. \n\n\nModules\n Analog to Digital Converter (r_adc_c)\n Driver for the ADC peripheral on RZ MPUs. This module implements the ADC Interface. \n \n Analog to Digital Converter (r_adc_e)\n Driver for the and ADC12 peripherals on RZ microprocessor. ...","l":"group___r_e_n_e_s_a_s___a_n_a_l_o_g___m_o_d_u_l_e_s.html"},"111":{"t":"RZV Flexible Software Package Documentation: BSP","p":"\nDetailed Description\nCommon code shared by FSP drivers. \n\n\nModules\n Common Error Codes\n \n MPU Board Support Package\n The BSP is responsible for getting the MCU from reset to the user's application. Before reaching the user's application, the BSP sets up the stacks, heap, cl ...","l":"group___r_e_n_e_s_a_s___c_o_m_m_o_n.html"},"112":{"t":"RZV Flexible Software Package Documentation: Connectivity","p":"\nDetailed Description\nConnectivity Modules. \n\n\nModules\n Controller Area Network - Flexible Data (r_canfd)\n Driver for the CANFD peripheral on RZ MPUs. This module implements the CAN Interface. \n \n I3C (r_i3c_b)\n Driver for the I3C peripheral on RZ MPU. This module implements ...","l":"group___r_e_n_e_s_a_s___c_o_n_n_e_c_t_i_v_i_t_y___m_o_d_u_l_e_s.html"},"113":{"t":"RZV Flexible Software Package Documentation: Common Error Codes","p":"\nDetailed Description\nAll FSP modules share these common error codes. \n\n\nData Structures\nunion  fsp_version_t\n \nstruct  fsp_version_t.__unnamed__\n \n\n\nMacros\n#define FSP_PARAMETER_NOT_USED(p)\n \n#define FSP_CPP_HEADER\n \n#define FSP_HEADER\n \n#define FSP_SECURE_ARGUMENT\n \n\n\nEnum ...","l":"group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html"},"114":{"t":"RZV Flexible Software Package Documentation: Input","p":"\nDetailed Description\nInput Modules. \n\n\nModules\n External IRQ (r_intc_irq)\n Driver for the INTC_IRQ peripheral on RZ MPUs. This module implements the External IRQ Interface. \n \n External IRQ (r_intc_nmi)\n Driver for the INTC_NMI peripheral on RZ MPUs. This module implements ...","l":"group___r_e_n_e_s_a_s___i_n_p_u_t___m_o_d_u_l_e_s.html"},"115":{"t":"RZV Flexible Software Package Documentation: Interfaces","p":"\nDetailed Description\nThe FSP interfaces provide APIs for common functionality. They can be implemented by one or more modules. Modules can use other modules as dependencies using this interface layer. \n\n\nModules\n ADC Interface\n Interface for A/D Converters. \n \n CAN Interfac ...","l":"group___r_e_n_e_s_a_s___i_n_t_e_r_f_a_c_e_s.html"},"116":{"t":"RZV Flexible Software Package Documentation: Modules","p":"\nDetailed Description\nModules are the smallest unit of software available in the FSP. Each module implements one interface. \nFor more information on FSP Modules and Interfaces review fsp-modules, fsp-stacks and fsp-interfaces in the FSP Architecutre section of this manual.\nN ...","l":"group___r_e_n_e_s_a_s___m_o_d_u_l_e_s.html"},"117":{"t":"RZV Flexible Software Package Documentation: Monitoring","p":"\nDetailed Description\nMonitoring Modules. \n\n\nModules\n CRC (r_crc)\n Driver for the CRC peripheral on RZ MPUs. This module implements the CRC Interface. \n \n Watchdog (r_wdt)\n Driver for the WDT peripheral on RZ MPUs. This module implements the WDT Interface. \n \n\n","l":"group___r_e_n_e_s_a_s___m_o_n_i_t_o_r_i_n_g___m_o_d_u_l_e_s.html"},"118":{"t":"RZV Flexible Software Package Documentation: RTOS","p":"\nDetailed Description\nRTOS Modules. \n\n\nModules\n FreeRTOS Port (rm_freertos_port)\n FreeRTOS port for RZ MPUs. \n \n\n","l":"group___r_e_n_e_s_a_s___r_t_o_s___m_o_d_u_l_e_s.html"},"119":{"t":"RZV Flexible Software Package Documentation: Sensor","p":"\nDetailed Description\nSensor Modules. \n\n\nModules\n HS300X Temperature/Humidity Sensor (rm_hs300x)\n Middleware to implement the HS300X sensor interface. This module implements the HS300X Middleware Interface. \n \n HS400X Temperature/Humidity Sensor (rm_hs400x)\n Middleware to im ...","l":"group___r_e_n_e_s_a_s___s_e_n_s_o_r___m_o_d_u_l_e_s.html"},"120":{"t":"RZV Flexible Software Package Documentation: Storage","p":"\nDetailed Description\nStorage Modules. \n\n\nModules\n Expanded Serial Peripheral Interface (xSPI) QSPI (r_xspi_qspi)\n Driver for the xSPI peripheral on RZ microprocessor. This module implements the SPI Flash Interface. \n \n\n","l":"group___r_e_n_e_s_a_s___s_t_o_r_a_g_e___m_o_d_u_l_e_s.html"},"121":{"t":"RZV Flexible Software Package Documentation: System","p":"\nDetailed Description\nSystem Modules. \n\n\nModules\n Event Link Controller (r_elc)\n Driver for the ELC peripheral on RZ microprocessor. This module implements the ELC Interface. \n \n I/O Ports (r_ioport)\n Driver for the I/O Ports peripheral on RZ MPUs. This module implements the ...","l":"group___r_e_n_e_s_a_s___s_y_s_t_e_m___m_o_d_u_l_e_s.html"},"122":{"t":"RZV Flexible Software Package Documentation: Timers","p":"\nDetailed Description\nTimers Modules. \n\n\nModules\n Compare Match Timer W (r_cmtw)\n Driver for the CMTW peripheral on RZ MPUs. This module implements the Timer Interface. \n \n General PWM Timer (r_gpt)\n Driver for the GPT peripheral on RZ MPUs. This module implements the Timer ...","l":"group___r_e_n_e_s_a_s___t_i_m_e_r_s___m_o_d_u_l_e_s.html"},"123":{"t":"RZV Flexible Software Package Documentation: Transfer","p":"\nDetailed Description\nTransfer Modules. \n\n\nModules\n Direct Memory Access Controller (r_dmac_b)\n Driver for the DMAC peripheral on RZ MPUs. This module implements the Transfer Interface. \n \n\n","l":"group___r_e_n_e_s_a_s___t_r_a_n_s_f_e_r___m_o_d_u_l_e_s.html"},"124":{"t":"RZV Flexible Software Package Documentation: I2C Master on RIIC (r_riic_master)","p":"\n\n\nFunctions\nfsp_err_t R_RIIC_MASTER_Open (i2c_master_ctrl_t *const p_api_ctrl, i2c_master_cfg_t const *const p_cfg)\n \nfsp_err_t R_RIIC_MASTER_Read (i2c_master_ctrl_t *const p_api_ctrl, uint8_t *const p_dest, uint32_t const bytes, bool const restart)\n \nfsp_err_t R_RIIC_MASTE ...","l":"group___r_i_i_c___m_a_s_t_e_r.html"},"125":{"t":"RZV Flexible Software Package Documentation: I2C Slave (r_riic_slave)","p":"\n\n\nFunctions\nfsp_err_t R_RIIC_SLAVE_Open (i2c_slave_ctrl_t *const p_api_ctrl, i2c_slave_cfg_t const *const p_cfg)\n \nfsp_err_t R_RIIC_SLAVE_Read (i2c_slave_ctrl_t *const p_api_ctrl, uint8_t *const p_dest, uint32_t const bytes)\n \nfsp_err_t R_RIIC_SLAVE_Write (i2c_slave_ctrl_t ...","l":"group___r_i_i_c___s_l_a_v_e.html"},"126":{"t":"RZV Flexible Software Package Documentation: Communicatons Middleware Interface","p":"\nDetailed Description\nInterface for Communications Middleware functions. \n\nSummary\nThe Communications interface provides multiple communications functionality.\nThe Communications interface can be implemented by:\nI2C Communication Device (rm_comms_i2c) \n\n\n\nData Structures\nstr ...","l":"group___r_m___c_o_m_m_s___a_p_i.html"},"127":{"t":"RZV Flexible Software Package Documentation: I2C Communication Device (rm_comms_i2c)","p":"\n\n\nFunctions\nfsp_err_t RM_COMMS_I2C_Open (rm_comms_ctrl_t *const p_api_ctrl, rm_comms_cfg_t const *const p_cfg)\n Opens and configures the Communications Middle module. Implements rm_comms_api_t::open. More...\n \nfsp_err_t RM_COMMS_I2C_Close (rm_comms_ctrl_t *const p_api_ctrl ...","l":"group___r_m___c_o_m_m_s___i2_c.html"},"128":{"t":"RZV Flexible Software Package Documentation: FreeRTOS Port (rm_freertos_port)","p":"\nFreeRTOS port for RZ MPUs. \n\nOverview\nNoteThe FreeRTOS Port does not provide any interfaces to the user. Consult the FreeRTOS documentation at https://www.freertos.org/Documentation for further information.\n\nThere are no usage notes and examples in this documentation.\n\nWhen ...","l":"group___r_m___f_r_e_e_r_t_o_s___p_o_r_t.html"},"129":{"t":"RZV Flexible Software Package Documentation: HS300X Temperature/Humidity Sensor (rm_hs300x)","p":"\n\n\nFunctions\nfsp_err_t RM_HS300X_Open (rm_hs300x_ctrl_t *const p_api_ctrl, rm_hs300x_cfg_t const *const p_cfg)\n Opens and configures the HS300X Middle module. Implements rm_hs300x_api_t::open. More...\n \nfsp_err_t RM_HS300X_Close (rm_hs300x_ctrl_t *const p_api_ctrl)\n Disable ...","l":"group___r_m___h_s300_x.html"},"130":{"t":"RZV Flexible Software Package Documentation: HS300X Middleware Interface","p":"\nDetailed Description\nInterface for HS300X Middleware functions. \n\nSummary\nThe HS300X interface provides HS300X functionality.\nThe HS300X interface can be implemented by:\nHS300X Temperature/Humidity Sensor (rm_hs300x) \n\n\n\nData Structures\nstruct  rm_hs300x_callback_args_t\n \ns ...","l":"group___r_m___h_s300_x___a_p_i.html"},"131":{"t":"RZV Flexible Software Package Documentation: HS400X Temperature/Humidity Sensor (rm_hs400x)","p":"\n\n\nFunctions\nfsp_err_t RM_HS400X_Open (rm_hs400x_ctrl_t *const p_api_ctrl, rm_hs400x_cfg_t const *const p_cfg)\n Opens and configures the HS400X middleware module. Implements rm_hs400x_api_t::open. More...\n \nfsp_err_t RM_HS400X_Close (rm_hs400x_ctrl_t *const p_api_ctrl)\n Dis ...","l":"group___r_m___h_s400_x.html"},"132":{"t":"RZV Flexible Software Package Documentation: HS400X Middleware Interface","p":"\nDetailed Description\nInterface for HS400X Middleware functions. \n\nSummary\nThe HS400X interface provides HS400X functionality.\nThe HS400X interface can be implemented by:\nHS400X Temperature/Humidity Sensor (rm_hs400x) \n\n\n\nData Structures\nstruct  rm_hs400x_callback_args_t\n \ns ...","l":"group___r_m___h_s400_x___a_p_i.html"},"133":{"t":"RZV Flexible Software Package Documentation: ZMOD4XXX Gas Sensor (rm_zmod4xxx)","p":"\n\n\nFunctions\nfsp_err_t RM_ZMOD4XXX_Open (rm_zmod4xxx_ctrl_t *const p_api_ctrl, rm_zmod4xxx_cfg_t const *const p_cfg)\n This function should be called when start a measurement and when measurement data is stale data. Sends the slave address to the zmod4xxx and start a measurem ...","l":"group___r_m___z_m_o_d4_x_x_x.html"},"134":{"t":"RZV Flexible Software Package Documentation: ZMOD4XXX Middleware Interface","p":"\nDetailed Description\nInterface for ZMOD4XXX Middleware functions. \n\nSummary\nThe ZMOD4XXX interface provides ZMOD4XXX functionality.\nThe ZMOD4XXX interface can be implemented by:\nZMOD4XXX Gas Sensor (rm_zmod4xxx) \n\n\n\nData Structures\nstruct  rm_zmod4xxx_callback_args_t\n \nstru ...","l":"group___r_m___z_m_o_d4_x_x_x___a_p_i.html"},"135":{"t":"RZV Flexible Software Package Documentation: Renesas Serial Peripheral Interface (r_rspi)","p":"\n\n\nFunctions\nfsp_err_t R_RSPI_Open (spi_ctrl_t *p_api_ctrl, spi_cfg_t const *const p_cfg)\n \nfsp_err_t R_RSPI_Read (spi_ctrl_t *const p_api_ctrl, void *p_dest, uint32_t const length, spi_bit_width_t const bit_width)\n \nfsp_err_t R_RSPI_Write (spi_ctrl_t *const p_api_ctrl, void ...","l":"group___r_s_p_i.html"},"136":{"t":"RZV Flexible Software Package Documentation: Realtime Clock (r_rtc)","p":"\n\n\nFunctions\nfsp_err_t R_RTC_Open (rtc_ctrl_t *const p_ctrl, rtc_cfg_t const *const p_cfg)\n \nfsp_err_t R_RTC_Close (rtc_ctrl_t *const p_ctrl)\n \nfsp_err_t R_RTC_ClockSourceSet (rtc_ctrl_t *const p_ctrl)\n \nfsp_err_t R_RTC_CalendarTimeSet (rtc_ctrl_t *const p_ctrl, rtc_time_t * ...","l":"group___r_t_c.html"},"137":{"t":"RZV Flexible Software Package Documentation: RTC Interface","p":"\nDetailed Description\nInterface for accessing the Realtime Clock. \n\nSummary\nThe RTC Interface is for configuring Real Time Clock (RTC) functionality including alarm, periodic notiification and error adjustment.\nThe Real Time Clock Interface can be implemented by:\nRealtime Cl ...","l":"group___r_t_c___a_p_i.html"},"138":{"t":"RZV Flexible Software Package Documentation: I2C Master (r_sci_b_i2c)","p":"\n\n\nFunctions\nfsp_err_t R_SCI_B_I2C_Open (i2c_master_ctrl_t *const p_api_ctrl, i2c_master_cfg_t const *const p_cfg)\n \nfsp_err_t R_SCI_B_I2C_Close (i2c_master_ctrl_t *const p_api_ctrl)\n \nfsp_err_t R_SCI_B_I2C_Read (i2c_master_ctrl_t *const p_api_ctrl, uint8_t *const p_dest, ui ...","l":"group___s_c_i___b___i2_c.html"},"139":{"t":"RZV Flexible Software Package Documentation: UART (r_sci_b_uart)","p":"\n\n\nFunctions\nfsp_err_t R_SCI_B_UART_Open (uart_ctrl_t *const p_api_ctrl, uart_cfg_t const *const p_cfg)\n \nfsp_err_t R_SCI_B_UART_Read (uart_ctrl_t *const p_api_ctrl, uint8_t *const p_dest, uint32_t const bytes)\n \nfsp_err_t R_SCI_B_UART_Write (uart_ctrl_t *const p_api_ctrl, u ...","l":"group___s_c_i___b___u_a_r_t.html"},"140":{"t":"RZV Flexible Software Package Documentation: Serial Communications Interface (SCIF) UART (r_scif_uart)","p":"\n\n\nFunctions\nfsp_err_t R_SCIF_UART_Open (uart_ctrl_t *const p_api_ctrl, uart_cfg_t const *const p_cfg)\n \nfsp_err_t R_SCIF_UART_Read (uart_ctrl_t *const p_api_ctrl, uint8_t *const p_dest, uint32_t const bytes)\n \nfsp_err_t R_SCIF_UART_Write (uart_ctrl_t *const p_api_ctrl, uint ...","l":"group___s_c_i_f___u_a_r_t.html"},"141":{"t":"RZV Flexible Software Package Documentation: SPI Interface","p":"\nDetailed Description\nInterface for SPI communications. \n\nSummary\nProvides a common interface for communication using the SPI Protocol.\nImplemented by:\nRenesas Serial Peripheral Interface (r_rspi)\nSPI (r_spi_b) \n\n\n\nData Structures\nstruct  spi_callback_args_t\n \nstruct  spi_wr ...","l":"group___s_p_i___a_p_i.html"},"142":{"t":"RZV Flexible Software Package Documentation: SPI (r_spi_b)","p":"\n\n\nFunctions\nfsp_err_t R_SPI_B_Open (spi_ctrl_t *p_api_ctrl, spi_cfg_t const *const p_cfg)\n \nfsp_err_t R_SPI_B_Read (spi_ctrl_t *const p_api_ctrl, void *p_dest, uint32_t const length, spi_bit_width_t const bit_width)\n \nfsp_err_t R_SPI_B_Write (spi_ctrl_t *const p_api_ctrl, v ...","l":"group___s_p_i___b.html"},"143":{"t":"RZV Flexible Software Package Documentation: SPI Flash Interface","p":"\nDetailed Description\nInterface for accessing external SPI flash devices. \n\nSummary\nThe SPI flash API provides an interface that configures, writes, and erases sectors in SPI flash devices.\nImplemented by:\nExpanded Serial Peripheral Interface (xSPI) QSPI (r_xspi_qspi) \n\n\n\nDa ...","l":"group___s_p_i___f_l_a_s_h___a_p_i.html"},"144":{"t":"RZV Flexible Software Package Documentation: Timer Interface","p":"\nDetailed Description\nInterface for timer functions. \n\nSummary\nThe general timer interface provides standard timer functionality including periodic mode, one-shot mode, PWM output, and free-running timer mode. After each timer cycle (overflow or underflow), an interrupt can ...","l":"group___t_i_m_e_r___a_p_i.html"},"145":{"t":"RZV Flexible Software Package Documentation: Transfer Interface","p":"\nDetailed Description\nInterface for data transfer functions. \n\nSummary\nThe transfer interface supports background data transfer (no CPU intervention).\nImplemented by:\nDirect Memory Access Controller (r_dmac_b) \n\n\n\nData Structures\nstruct  transfer_properties_t\n \nstruct  trans ...","l":"group___t_r_a_n_s_f_e_r___a_p_i.html"},"146":{"t":"RZV Flexible Software Package Documentation: Temperature Sensor Unit (r_tsu_b)","p":"\n\n\nFunctions\nfsp_err_t R_TSU_B_Open (adc_ctrl_t *p_ctrl, adc_cfg_t const *const p_cfg)\n \nfsp_err_t R_TSU_B_ScanCfg (adc_ctrl_t *p_ctrl, void const *const p_channel_cfg)\n \nfsp_err_t R_TSU_B_ScanStart (adc_ctrl_t *p_ctrl)\n \nfsp_err_t R_TSU_B_ScanGroupStart (adc_ctrl_t *p_ctrl, ...","l":"group___t_s_u___b.html"},"147":{"t":"RZV Flexible Software Package Documentation: UART Interface","p":"\nDetailed Description\nInterface for UART communications. \n\nSummary\nThe UART interface provides common APIs for UART HAL drivers. The UART interface supports the following features:\nFull-duplex UART communication\nInterrupt driven transmit/receive processing\nCallback function ...","l":"group___u_a_r_t___a_p_i.html"},"148":{"t":"RZV Flexible Software Package Documentation: Watchdog (r_wdt)","p":"\n\n\nFunctions\nfsp_err_t R_WDT_Refresh (wdt_ctrl_t *const p_ctrl)\n \nfsp_err_t R_WDT_Open (wdt_ctrl_t *const p_ctrl, wdt_cfg_t const *const p_cfg)\n \nfsp_err_t R_WDT_StatusClear (wdt_ctrl_t *const p_ctrl, const wdt_status_t status)\n \nfsp_err_t R_WDT_StatusGet (wdt_ctrl_t *const ...","l":"group___w_d_t.html"},"149":{"t":"RZV Flexible Software Package Documentation: WDT Interface","p":"\nDetailed Description\nInterface for watch dog timer functions. \n\nSummary\nThe WDT interface for the Watchdog Timer (WDT) peripheral provides watchdog functionality including resetting the device or generating an interrupt.\nThe watchdog timer interface can be implemented by:\nW ...","l":"group___w_d_t___a_p_i.html"},"150":{"t":"RZV Flexible Software Package Documentation: Expanded Serial Peripheral Interface (xSPI) QSPI (r_xspi_qspi)","p":"\n\n\nFunctions\nfsp_err_t R_XSPI_QSPI_Open (spi_flash_ctrl_t *p_ctrl, spi_flash_cfg_t const *const p_cfg)\n \nfsp_err_t R_XSPI_QSPI_Close (spi_flash_ctrl_t *p_ctrl)\n \nfsp_err_t R_XSPI_QSPI_DirectWrite (spi_flash_ctrl_t *p_ctrl, uint8_t const *const p_src, uint32_t const bytes, bo ...","l":"group___x_s_p_i___q_s_p_i.html"},"151":{"t":"RZV Flexible Software Package Documentation: Introduction","p":"\nTable of Contents\nOverview\nUsing this Manual\nDocumentation Standard\nIntroduction to FSPPurpose\nQuality\nEase of Use\nScalability\nBuild Time Configurations\ne2 studio IDE\n\n\n\n\n\nOverview\nThis manual describes how to use the Renesas Flexible Software Package (FSP) for writing appl ...","l":"index.html"},"152":{"t":"RZV Flexible Software Package Documentation: API Reference","p":"\nThis section includes the FSP API Reference for the Module and Interface level functions.\n[detail level 123]\n ▼BSPCommon code shared by FSP drivers \n Common Error Codes\n ▼MPU Board Support PackageThe BSP is responsible for getting the MCU from reset to the user's applicatio ...","l":"modules.html"},"153":{"t":"RZV Flexible Software Package Documentation: Starting Development","p":"\nThis section includes tutorials to help get started with the Renesas e2 studio IDE.\n\n Starting Development\n FSP Architecture\n Copyright\n\n\n","l":"pages.html"},"154":{"t":"","p":"","l":"search/all_0.html"},"155":{"t":"","p":"","l":"search/all_1.html"},"156":{"t":"","p":"","l":"search/all_10.html"},"157":{"t":"","p":"","l":"search/all_11.html"},"158":{"t":"","p":"","l":"search/all_12.html"},"159":{"t":"","p":"","l":"search/all_13.html"},"160":{"t":"","p":"","l":"search/all_14.html"},"161":{"t":"","p":"","l":"search/all_15.html"},"162":{"t":"","p":"","l":"search/all_16.html"},"163":{"t":"","p":"","l":"search/all_17.html"},"164":{"t":"","p":"","l":"search/all_2.html"},"165":{"t":"","p":"","l":"search/all_3.html"},"166":{"t":"","p":"","l":"search/all_4.html"},"167":{"t":"","p":"","l":"search/all_5.html"},"168":{"t":"","p":"","l":"search/all_6.html"},"169":{"t":"","p":"","l":"search/all_7.html"},"170":{"t":"","p":"","l":"search/all_8.html"},"171":{"t":"","p":"","l":"search/all_9.html"},"172":{"t":"","p":"","l":"search/all_a.html"},"173":{"t":"","p":"","l":"search/all_b.html"},"174":{"t":"","p":"","l":"search/all_c.html"},"175":{"t":"","p":"","l":"search/all_d.html"},"176":{"t":"","p":"","l":"search/all_e.html"},"177":{"t":"","p":"","l":"search/all_f.html"},"178":{"t":"","p":"","l":"search/classes_0.html"},"179":{"t":"","p":"","l":"search/classes_1.html"},"180":{"t":"","p":"","l":"search/classes_2.html"},"181":{"t":"","p":"","l":"search/classes_3.html"},"182":{"t":"","p":"","l":"search/classes_4.html"},"183":{"t":"","p":"","l":"search/classes_5.html"},"184":{"t":"","p":"","l":"search/classes_6.html"},"185":{"t":"","p":"","l":"search/classes_7.html"},"186":{"t":"","p":"","l":"search/classes_8.html"},"187":{"t":"","p":"","l":"search/classes_9.html"},"188":{"t":"","p":"","l":"search/classes_a.html"},"189":{"t":"","p":"","l":"search/classes_b.html"},"190":{"t":"","p":"","l":"search/classes_c.html"},"191":{"t":"","p":"","l":"search/classes_d.html"},"192":{"t":"","p":"","l":"search/classes_e.html"},"193":{"t":"","p":"","l":"search/classes_f.html"},"194":{"t":"","p":"","l":"search/enums_0.html"},"195":{"t":"","p":"","l":"search/enums_1.html"},"196":{"t":"","p":"","l":"search/enums_2.html"},"197":{"t":"","p":"","l":"search/enums_3.html"},"198":{"t":"","p":"","l":"search/enums_4.html"},"199":{"t":"","p":"","l":"search/enums_5.html"},"200":{"t":"","p":"","l":"search/enums_6.html"},"201":{"t":"","p":"","l":"search/enums_7.html"},"202":{"t":"","p":"","l":"search/enums_8.html"},"203":{"t":"","p":"","l":"search/enums_9.html"},"204":{"t":"","p":"","l":"search/enums_a.html"},"205":{"t":"","p":"","l":"search/enums_b.html"},"206":{"t":"","p":"","l":"search/enums_c.html"},"207":{"t":"","p":"","l":"search/enums_d.html"},"208":{"t":"","p":"","l":"search/enums_e.html"},"209":{"t":"","p":"","l":"search/enums_f.html"},"210":{"t":"","p":"","l":"search/enumvalues_0.html"},"211":{"t":"","p":"","l":"search/enumvalues_1.html"},"212":{"t":"","p":"","l":"search/enumvalues_2.html"},"213":{"t":"","p":"","l":"search/enumvalues_3.html"},"214":{"t":"","p":"","l":"search/enumvalues_4.html"},"215":{"t":"","p":"","l":"search/enumvalues_5.html"},"216":{"t":"","p":"","l":"search/enumvalues_6.html"},"217":{"t":"","p":"","l":"search/enumvalues_7.html"},"218":{"t":"","p":"","l":"search/enumvalues_8.html"},"219":{"t":"","p":"","l":"search/enumvalues_9.html"},"220":{"t":"","p":"","l":"search/enumvalues_a.html"},"221":{"t":"","p":"","l":"search/enumvalues_b.html"},"222":{"t":"","p":"","l":"search/enumvalues_c.html"},"223":{"t":"","p":"","l":"search/enumvalues_d.html"},"224":{"t":"","p":"","l":"search/enumvalues_e.html"},"225":{"t":"","p":"","l":"search/enumvalues_f.html"},"226":{"t":"","p":"","l":"search/functions_0.html"},"227":{"t":"","p":"","l":"search/functions_1.html"},"228":{"t":"","p":"","l":"search/functions_2.html"},"229":{"t":"","p":"","l":"search/functions_3.html"},"230":{"t":"","p":"","l":"search/functions_4.html"},"231":{"t":"","p":"","l":"search/functions_5.html"},"232":{"t":"","p":"","l":"search/groups_0.html"},"233":{"t":"","p":"","l":"search/groups_1.html"},"234":{"t":"","p":"","l":"search/groups_10.html"},"235":{"t":"","p":"","l":"search/groups_2.html"},"236":{"t":"","p":"","l":"search/groups_3.html"},"237":{"t":"","p":"","l":"search/groups_4.html"},"238":{"t":"","p":"","l":"search/groups_5.html"},"239":{"t":"","p":"","l":"search/groups_6.html"},"240":{"t":"","p":"","l":"search/groups_7.html"},"241":{"t":"","p":"","l":"search/groups_8.html"},"242":{"t":"","p":"","l":"search/groups_9.html"},"243":{"t":"","p":"","l":"search/groups_a.html"},"244":{"t":"","p":"","l":"search/groups_b.html"},"245":{"t":"","p":"","l":"search/groups_c.html"},"246":{"t":"","p":"","l":"search/groups_d.html"},"247":{"t":"","p":"","l":"search/groups_e.html"},"248":{"t":"","p":"","l":"search/groups_f.html"},"249":{"t":"","p":"","l":"search/nomatches.html"},"250":{"t":"","p":"","l":"search/pages_0.html"},"251":{"t":"","p":"","l":"search/pages_1.html"},"252":{"t":"","p":"","l":"search/pages_2.html"},"253":{"t":"","p":"","l":"search/pages_3.html"},"254":{"t":"","p":"","l":"search/typedefs_0.html"},"255":{"t":"","p":"","l":"search/typedefs_1.html"},"256":{"t":"","p":"","l":"search/typedefs_2.html"},"257":{"t":"","p":"","l":"search/typedefs_3.html"},"258":{"t":"","p":"","l":"search/typedefs_4.html"},"259":{"t":"","p":"","l":"search/typedefs_5.html"},"260":{"t":"","p":"","l":"search/typedefs_6.html"},"261":{"t":"","p":"","l":"search/typedefs_7.html"},"262":{"t":"","p":"","l":"search/typedefs_8.html"},"263":{"t":"","p":"","l":"search/typedefs_9.html"},"264":{"t":"","p":"","l":"search/typedefs_a.html"},"265":{"t":"","p":"","l":"search/variables_0.html"},"266":{"t":"","p":"","l":"search/variables_1.html"},"267":{"t":"","p":"","l":"search/variables_10.html"},"268":{"t":"","p":"","l":"search/variables_11.html"},"269":{"t":"","p":"","l":"search/variables_12.html"},"270":{"t":"","p":"","l":"search/variables_13.html"},"271":{"t":"","p":"","l":"search/variables_14.html"},"272":{"t":"","p":"","l":"search/variables_15.html"},"273":{"t":"","p":"","l":"search/variables_2.html"},"274":{"t":"","p":"","l":"search/variables_3.html"},"275":{"t":"","p":"","l":"search/variables_4.html"},"276":{"t":"","p":"","l":"search/variables_5.html"},"277":{"t":"","p":"","l":"search/variables_6.html"},"278":{"t":"","p":"","l":"search/variables_7.html"},"279":{"t":"","p":"","l":"search/variables_8.html"},"280":{"t":"","p":"","l":"search/variables_9.html"},"281":{"t":"","p":"","l":"search/variables_a.html"},"282":{"t":"","p":"","l":"search/variables_b.html"},"283":{"t":"","p":"","l":"search/variables_c.html"},"284":{"t":"","p":"","l":"search/variables_d.html"},"285":{"t":"","p":"","l":"search/variables_e.html"},"286":{"t":"","p":"","l":"search/variables_f.html"},"287":{"t":"RZV Flexible Software Package Documentation: MPURegionSettings_t Struct Reference","p":"\n\nSettings to define an MPU region. \n More...\n\n#include \n\n\nData Fields\nuint32_t ulRBAR\n \nuint32_t ulRLAR\n \n\nDetailed Description\nSettings to define an MPU region. \nField Documentation\n\n◆ ulRBAR\n\n\n\n \n \n uint32_t MPURegionSettings_t::ulRBAR\n ...","l":"struct_m_p_u_region_settings__t.html"},"288":{"t":"RZV Flexible Software Package Documentation: algorithm_version Struct Reference","p":"\n\nVariables that describe the library version. \n More...\n\n#include \nDetailed Description\nVariables that describe the library version. \nThe documentation for this struct was generated from the following file:\nzmod4xxx_types.h\n\n","l":"structalgorithm__version.html"},"289":{"t":"RZV Flexible Software Package Documentation: xMPU_SETTINGS Struct Reference","p":"\n\nMPU settings as stored in the TCB. \n More...\n\n#include \n\n\nData Fields\nuint32_t ulMAIR0\n \nMPURegionSettings_t xRegionsSettings [portTOTAL_NUM_REGIONS]\n \n\nDetailed Description\nMPU settings as stored in the TCB. \nField Documentation\n\n◆ ulMAIR0\n\n\n\n \n ...","l":"structx_m_p_u___s_e_t_t_i_n_g_s.html"},"290":{"t":"RZV Flexible Software Package Documentation: zmod4xxx_conf Struct Reference","p":"\n\nStructure to hold the gas sensor module configuration. \n More...\n\n#include \nDetailed Description\nStructure to hold the gas sensor module configuration. \nThe documentation for this struct was generated from the following file:\nzmod4xxx_types.h\n\n","l":"structzmod4xxx__conf.html"},"291":{"t":"RZV Flexible Software Package Documentation: zmod4xxx_conf_str Struct Reference","p":"\n\nA single data set for the configuration. \n More...\n\n#include \nDetailed Description\nA single data set for the configuration. \nThe documentation for this struct was generated from the following file:\nzmod4xxx_types.h\n\n","l":"structzmod4xxx__conf__str.html"},"292":{"t":"RZV Flexible Software Package Documentation: zmod4xxx_dev_t Struct Reference","p":"\n\nDevice structure ZMOD4xxx. \n More...\n\n#include \n\n\nData Fields\nuint8_t i2c_addr\n \nuint8_t config [6]\n \nuint16_t mox_er\n \nuint16_t mox_lr\n \nuint16_t pid\n \nuint8_t * prod_data\n \nzmod4xxx_i2c_ptr_t read\n \nzmod4xxx_i2c_ptr_t write\n \nzmod4xxx_delay_ptr_p delay ...","l":"structzmod4xxx__dev__t.html"}}; \ No newline at end of file diff --git a/search/lunr_search.js b/search/lunr_search.js new file mode 100644 index 0000000..6ebf134 --- /dev/null +++ b/search/lunr_search.js @@ -0,0 +1,791 @@ +function convertToId(search) +{ + var result = ''; + for (i=0;i do a search + { + this.Search(); + } + } + + this.OnSearchSelectKey = function(evt) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 && this.searchIndex0) // Up + { + this.searchIndex--; + this.OnSelectItem(this.searchIndex); + } + else if (e.keyCode==13 || e.keyCode==27) + { + this.OnSelectItem(this.searchIndex); + this.CloseSelectionWindow(); + this.DOMSearchField().focus(); + } + return false; + } + + // --------- Actions + + // Closes the results window. + this.CloseResultsWindow = function() + { + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.Activate(false); + } + + this.CloseSelectionWindow = function() + { + this.DOMSearchSelectWindow().style.display = 'none'; + } + + // Performs a search. + this.Search = function() + { + this.keyTimeout = 0; + + // strip leading whitespace + var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); + + var code = searchValue.toLowerCase().charCodeAt(0); + var idxChar = searchValue.substr(0, 1).toLowerCase(); + if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair + { + idxChar = searchValue.substr(0, 2); + } + + var resultsPage; + var resultsPageWithSearch; + var hasResultsPage; + + var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); + if (idx!=-1) + { + var hexCode=idx.toString(16); + resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; + resultsPageWithSearch = resultsPage+'?'+escape(searchValue); + hasResultsPage = true; + } + else // nothing available for this search term + { + resultsPage = this.resultsPath + '/nomatches.html'; + resultsPageWithSearch = resultsPage; + hasResultsPage = false; + } + + window.frames.MSearchResults.location = resultsPageWithSearch; + var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); + + if (domPopupSearchResultsWindow.style.display!='block') + { + var domSearchBox = this.DOMSearchBox(); + this.DOMSearchClose().style.display = 'inline'; + if (this.insideFrame) + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + domPopupSearchResultsWindow.style.position = 'relative'; + domPopupSearchResultsWindow.style.display = 'block'; + var width = document.body.clientWidth - 8; // the -8 is for IE :-( + domPopupSearchResultsWindow.style.width = width + 'px'; + domPopupSearchResults.style.width = width + 'px'; + } + else + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; + var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; + domPopupSearchResultsWindow.style.display = 'block'; + left -= domPopupSearchResults.offsetWidth; + domPopupSearchResultsWindow.style.top = top + 'px'; + domPopupSearchResultsWindow.style.left = left + 'px'; + } + } + + this.lastSearchValue = searchValue; + this.lastResultsPage = resultsPage; + } + + // -------- Activation Functions + + // Activates or deactivates the search panel, resetting things to + // their default values if necessary. + this.Activate = function(isActive) + { + if (isActive || // open it + this.DOMPopupSearchResultsWindow().style.display == 'block' + ) + { + this.DOMSearchBox().className = 'MSearchBoxActive'; + + var searchField = this.DOMSearchField(); + + if (searchField.value == this.searchLabel) // clear "Search" term upon entry + { + searchField.value = ''; + this.searchActive = true; + } + } + else if (!isActive) // directly remove the panel + { + this.DOMSearchBox().className = 'MSearchBoxInactive'; + this.DOMSearchField().value = this.searchLabel; + this.searchActive = false; + this.lastSearchValue = '' + this.lastResultsPage = ''; + } + } +} + +// ----------------------------------------------------------------------- + +// The class that handles everything on the search results page. +function SearchResults(name) +{ + // The number of matches from the last run of . + this.lastMatchCount = 0; + this.lastKey = 0; + this.repeatOn = false; + + // Toggles the visibility of the passed element ID. + this.FindChildElement = function(id) + { + var parentElement = document.getElementById(id); + var element = parentElement.firstChild; + + while (element && element!=parentElement) + { + if (element.nodeName == 'DIV' && element.className == 'SRChildren') + { + return element; + } + + if (element.nodeName == 'DIV' && element.hasChildNodes()) + { + element = element.firstChild; + } + else if (element.nextSibling) + { + element = element.nextSibling; + } + else + { + do + { + element = element.parentNode; + } + while (element && element!=parentElement && !element.nextSibling); + + if (element && element!=parentElement) + { + element = element.nextSibling; + } + } + } + } + + this.Toggle = function(id) + { + var element = this.FindChildElement(id); + if (element) + { + if (element.style.display == 'block') + { + element.style.display = 'none'; + } + else + { + element.style.display = 'block'; + } + } + } + + // Searches for the passed string. If there is no parameter, + // it takes it from the URL query. + // + // Always returns true, since other documents may try to call it + // and that may or may not be possible. + this.Search = function(search) + { + if (!search) // get search word from URL + { + search = window.location.search; + search = search.substring(1); // Remove the leading '?' + search = unescape(search); + } + + search = search.replace(/^ +/, ""); // strip leading spaces + search = search.replace(/ +$/, ""); // strip trailing spaces + search = search.toLowerCase(); + search = convertToId(search); + + var resultRows = document.getElementsByTagName("div"); + var matches = 0; + + var i = 0; + while (i < resultRows.length) + { + var row = resultRows.item(i); + if (row.className == "SRResult") + { + var rowMatchName = row.id.toLowerCase(); + rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' + + if (search.length<=rowMatchName.length && + rowMatchName.substr(0, search.length)==search) + { + row.style.display = 'block'; + matches++; + } + else + { + row.style.display = 'none'; + } + } + i++; + } + document.getElementById("Searching").style.display='none'; + if (matches == 0) // no results + { + document.getElementById("NoMatches").style.display='block'; + } + else // at least one result + { + document.getElementById("NoMatches").style.display='none'; + } + this.lastMatchCount = matches; + return true; + } + + // return the first item with index index or higher that is visible + this.NavNext = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index++; + } + return focusItem; + } + + this.NavPrev = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index--; + } + return focusItem; + } + + this.ProcessKeys = function(e) + { + if (e.type == "keydown") + { + this.repeatOn = false; + this.lastKey = e.keyCode; + } + else if (e.type == "keypress") + { + if (!this.repeatOn) + { + if (this.lastKey) this.repeatOn = true; + return false; // ignore first keypress after keydown + } + } + else if (e.type == "keyup") + { + this.lastKey = 0; + this.repeatOn = false; + } + return this.lastKey!=0; + } + + this.Nav = function(evt,itemIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + var newIndex = itemIndex-1; + var focusItem = this.NavPrev(newIndex); + if (focusItem) + { + var child = this.FindChildElement(focusItem.parentNode.parentNode.id); + if (child && child.style.display == 'block') // children visible + { + var n=0; + var tmpElem; + while (1) // search for last child + { + tmpElem = document.getElementById('Item'+newIndex+'_c'+n); + if (tmpElem) + { + focusItem = tmpElem; + } + else // found it! + { + break; + } + n++; + } + } + } + if (focusItem) + { + focusItem.focus(); + } + else // return focus to search field + { + parent.document.getElementById("MSearchField").focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = itemIndex+1; + var focusItem; + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem && elem.style.display == 'block') // children visible + { + focusItem = document.getElementById('Item'+itemIndex+'_c0'); + } + if (!focusItem) focusItem = this.NavNext(newIndex); + if (focusItem) focusItem.focus(); + } + else if (this.lastKey==39) // Right + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'block'; + } + else if (this.lastKey==37) // Left + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'none'; + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } + + this.NavChild = function(evt,itemIndex,childIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + if (childIndex>0) + { + var newIndex = childIndex-1; + document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); + } + else // already at first child, jump to parent + { + document.getElementById('Item'+itemIndex).focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = childIndex+1; + var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); + if (!elem) // last child, jump to parent next parent + { + elem = this.NavNext(itemIndex+1); + } + if (elem) + { + elem.focus(); + } + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } +} + +function setKeyActions(elem,action) +{ + elem.setAttribute('onkeydown',action); + elem.setAttribute('onkeypress',action); + elem.setAttribute('onkeyup',action); +} + +function setClassAttr(elem,attr) +{ + elem.setAttribute('class',attr); + elem.setAttribute('className',attr); +} + +function createResults() +{ + var results = document.getElementById("SRResults"); + for (var e=0; e' + + title + '
    ' + + preview + '' + '

    '); // TJ Added "pos" + if (pos.length != 0) { + html.push(result); + } + } + if (html.length) { + return html.join(""); + } + else { + return "

    Your search returned no results.

    "; + } +} + + +function escapeHtml(unsafe) { + return unsafe + .replace(/&/g, "&") + .replace(//g, ">") + .replace(/"/g, """) + .replace(/'/g, "'"); +} + +function countResults(results) { + var count = 0; + for (var i = 0; i < results.length; i++) { + var term = results[i]["matchData"]["metadata"]; + for (var k in term) { + if ("b" in term[k]) { + count = count+1; + } + } + } + return count; +} + +function showResultCount(query, total, domElementId) { + if (total == 0) { + return; + } + + var s = ""; + if (total > 1) { + s = "s"; + } + var found = "

    Found result on " + total + " page" + s; + if (query != "" && query != null) { + query = escapeHtml(query); + var forQuery = ' for ' + query + ''; + } + else { + var forQuery = ""; + } + var element = document.getElementById(domElementId); + element.innerHTML = found + forQuery + "

    "; +} + + +function searchLunr(query) { + var idx = lunr.Index.load(LUNR_DATA); + // Write results to page + var results = idx.search(query); + // console.log(results); + var resultHtml = parseLunrResults(results); + var elementId = LUNR_CONFIG["resultsElementId"]; + document.getElementById(elementId).innerHTML = resultHtml; + +// var count = results.length; + var count = countResults(results); + showResultCount(query, count, LUNR_CONFIG["countElementId"]); + document.getElementById("lunrResultBox").style.display = "block"; +} + +function closeLunrResults() { + document.getElementById("lunrResultBox").style.display = "none"; +} + +// When the window loads, read query parameters and perform search +window.onload = function() { + var query = getParameterByName("q"); + if (query != "" && query != null) { + document.forms.lunrSearchForm.q.value = query; + searchLunr(query); + } +}; \ No newline at end of file diff --git a/search/lunrsearch.css b/search/lunrsearch.css new file mode 100644 index 0000000..ed81262 --- /dev/null +++ b/search/lunrsearch.css @@ -0,0 +1,55 @@ +.loading { + display: none; + width: 100px; + height: 100px; + + position: absolute; + top:0; + bottom: 0; + left: 0; + right: 0; + + margin: auto; +} + +.result-title a { + font-size: 1.2em; + text-decoration: none; +} + +.result-title a:hover { + text-decoration: underline; +} + +.result-preview { + color: #808080; +} + +.search-input { + width: 150px; +} + +.resultCount { + color: #808080; +} + +.result-query { + font-weight: bold; +} + +.pagination { + text-align: center; + margin: 16px 8px 16px 8px; +} +.pagination a { + color: black; + padding: 8px 16px; + text-decoration: none; +} +.pagination a.active { + background-color: #4CAF50; + color: white; +} +.pagination a:hover:not(.active) { + background-color: #ddd; +} \ No newline at end of file diff --git a/search/mark.min.js b/search/mark.min.js new file mode 100644 index 0000000..dfe0180 --- /dev/null +++ b/search/mark.min.js @@ -0,0 +1,7 @@ +/*!*************************************************** +* mark.js v8.11.1 +* https://markjs.io/ +* Copyright (c) 2014–2018, Julian Kühnel +* Released under the MIT license https://git.io/vwTVl +*****************************************************/ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Mark=t()}(this,function(){"use strict";var e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},n=function(){function e(e,t){for(var n=0;n1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:5e3;t(this,e),this.ctx=n,this.iframes=r,this.exclude=i,this.iframesTimeout=o}return n(e,[{key:"getContexts",value:function(){var e=[];return(void 0!==this.ctx&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:"string"==typeof this.ctx?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[]).forEach(function(t){var n=e.filter(function(e){return e.contains(t)}).length>0;-1!==e.indexOf(t)||n||e.push(t)}),e}},{key:"getIframeContents",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},r=void 0;try{var i=e.contentWindow;if(r=i.document,!i||!r)throw new Error("iframe inaccessible")}catch(e){n()}r&&t(r)}},{key:"isIframeBlank",value:function(e){var t=e.getAttribute("src").trim();return"about:blank"===e.contentWindow.location.href&&"about:blank"!==t&&t}},{key:"observeIframeLoad",value:function(e,t,n){var r=this,i=!1,o=null,a=function a(){if(!i){i=!0,clearTimeout(o);try{r.isIframeBlank(e)||(e.removeEventListener("load",a),r.getIframeContents(e,t,n))}catch(e){n()}}};e.addEventListener("load",a),o=setTimeout(a,this.iframesTimeout)}},{key:"onIframeReady",value:function(e,t,n){try{"complete"===e.contentWindow.document.readyState?this.isIframeBlank(e)?this.observeIframeLoad(e,t,n):this.getIframeContents(e,t,n):this.observeIframeLoad(e,t,n)}catch(e){n()}}},{key:"waitForIframes",value:function(e,t){var n=this,r=0;this.forEachIframe(e,function(){return!0},function(e){r++,n.waitForIframes(e.querySelector("html"),function(){--r||t()})},function(e){e||t()})}},{key:"forEachIframe",value:function(t,n,r){var i=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},a=t.querySelectorAll("iframe"),s=a.length,c=0;a=Array.prototype.slice.call(a);var u=function(){--s<=0&&o(c)};s||u(),a.forEach(function(t){e.matches(t,i.exclude)?u():i.onIframeReady(t,function(e){n(t)&&(c++,r(e)),u()},u)})}},{key:"createIterator",value:function(e,t,n){return document.createNodeIterator(e,t,n,!1)}},{key:"createInstanceOnIframe",value:function(t){return new e(t.querySelector("html"),this.iframes)}},{key:"compareNodeIframe",value:function(e,t,n){if(e.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_PRECEDING){if(null===t)return!0;if(t.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_FOLLOWING)return!0}return!1}},{key:"getIteratorNode",value:function(e){var t=e.previousNode();return{prevNode:t,node:null===t?e.nextNode():e.nextNode()&&e.nextNode()}}},{key:"checkIframeFilter",value:function(e,t,n,r){var i=!1,o=!1;return r.forEach(function(e,t){e.val===n&&(i=t,o=e.handled)}),this.compareNodeIframe(e,t,n)?(!1!==i||o?!1===i||o||(r[i].handled=!0):r.push({val:n,handled:!0}),!0):(!1===i&&r.push({val:n,handled:!1}),!1)}},{key:"handleOpenIframes",value:function(e,t,n,r){var i=this;e.forEach(function(e){e.handled||i.getIframeContents(e.val,function(e){i.createInstanceOnIframe(e).forEachNode(t,n,r)})})}},{key:"iterateThroughNodes",value:function(e,t,n,r,i){for(var o,a=this,s=this.createIterator(t,e,r),c=[],u=[],l=void 0,h=void 0;void 0,o=a.getIteratorNode(s),h=o.prevNode,l=o.node;)this.iframes&&this.forEachIframe(t,function(e){return a.checkIframeFilter(l,h,e,c)},function(t){a.createInstanceOnIframe(t).forEachNode(e,function(e){return u.push(e)},r)}),u.push(l);u.forEach(function(e){n(e)}),this.iframes&&this.handleOpenIframes(c,e,n,r),i()}},{key:"forEachNode",value:function(e,t,n){var r=this,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},o=this.getContexts(),a=o.length;a||i(),o.forEach(function(o){var s=function(){r.iterateThroughNodes(e,o,t,n,function(){--a<=0&&i()})};r.iframes?r.waitForIframes(o,s):s()})}}],[{key:"matches",value:function(e,t){var n="string"==typeof t?[t]:t,r=e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;if(r){var i=!1;return n.every(function(t){return!r.call(e,t)||(i=!0,!1)}),i}return!1}}]),e}(),o=function(){function o(e){t(this,o),this.ctx=e,this.ie=!1;var n=window.navigator.userAgent;(n.indexOf("MSIE")>-1||n.indexOf("Trident")>-1)&&(this.ie=!0)}return n(o,[{key:"log",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"debug",r=this.opt.log;this.opt.debug&&"object"===(void 0===r?"undefined":e(r))&&"function"==typeof r[n]&&r[n]("mark.js: "+t)}},{key:"escapeStr",value:function(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}},{key:"createRegExp",value:function(e){return"disabled"!==this.opt.wildcards&&(e=this.setupWildcardsRegExp(e)),e=this.escapeStr(e),Object.keys(this.opt.synonyms).length&&(e=this.createSynonymsRegExp(e)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),this.opt.diacritics&&(e=this.createDiacriticsRegExp(e)),e=this.createMergedBlanksRegExp(e),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.createJoinersRegExp(e)),"disabled"!==this.opt.wildcards&&(e=this.createWildcardsRegExp(e)),e=this.createAccuracyRegExp(e)}},{key:"createSynonymsRegExp",value:function(e){var t=this.opt.synonyms,n=this.opt.caseSensitive?"":"i",r=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(var i in t)if(t.hasOwnProperty(i)){var o=t[i],a="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(i):this.escapeStr(i),s="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(o):this.escapeStr(o);""!==a&&""!==s&&(e=e.replace(new RegExp("("+this.escapeStr(a)+"|"+this.escapeStr(s)+")","gm"+n),r+"("+this.processSynomyms(a)+"|"+this.processSynomyms(s)+")"+r))}return e}},{key:"processSynomyms",value:function(e){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),e}},{key:"setupWildcardsRegExp",value:function(e){return(e=e.replace(/(?:\\)*\?/g,function(e){return"\\"===e.charAt(0)?"?":""})).replace(/(?:\\)*\*/g,function(e){return"\\"===e.charAt(0)?"*":""})}},{key:"createWildcardsRegExp",value:function(e){var t="withSpaces"===this.opt.wildcards;return e.replace(/\u0001/g,t?"[\\S\\s]?":"\\S?").replace(/\u0002/g,t?"[\\S\\s]*?":"\\S*")}},{key:"setupIgnoreJoinersRegExp",value:function(e){return e.replace(/[^(|)\\]/g,function(e,t,n){var r=n.charAt(t+1);return/[(|)\\]/.test(r)||""===r?e:e+"\0"})}},{key:"createJoinersRegExp",value:function(e){var t=[],n=this.opt.ignorePunctuation;return Array.isArray(n)&&n.length&&t.push(this.escapeStr(n.join(""))),this.opt.ignoreJoiners&&t.push("\\u00ad\\u200b\\u200c\\u200d"),t.length?e.split(/\u0000+/).join("["+t.join("")+"]*"):e}},{key:"createDiacriticsRegExp",value:function(e){var t=this.opt.caseSensitive?"":"i",n=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"],r=[];return e.split("").forEach(function(i){n.every(function(n){if(-1!==n.indexOf(i)){if(r.indexOf(n)>-1)return!1;e=e.replace(new RegExp("["+n+"]","gm"+t),"["+n+"]"),r.push(n)}return!0})}),e}},{key:"createMergedBlanksRegExp",value:function(e){return e.replace(/[\s]+/gim,"[\\s]+")}},{key:"createAccuracyRegExp",value:function(e){var t=this,n=this.opt.accuracy,r="string"==typeof n?n:n.value,i="";switch(("string"==typeof n?[]:n.limiters).forEach(function(e){i+="|"+t.escapeStr(e)}),r){case"partially":default:return"()("+e+")";case"complementary":return"()([^"+(i="\\s"+(i||this.escapeStr("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿")))+"]*"+e+"[^"+i+"]*)";case"exactly":return"(^|\\s"+i+")("+e+")(?=$|\\s"+i+")"}}},{key:"getSeparatedKeywords",value:function(e){var t=this,n=[];return e.forEach(function(e){t.opt.separateWordSearch?e.split(" ").forEach(function(e){e.trim()&&-1===n.indexOf(e)&&n.push(e)}):e.trim()&&-1===n.indexOf(e)&&n.push(e)}),{keywords:n.sort(function(e,t){return t.length-e.length}),length:n.length}}},{key:"isNumeric",value:function(e){return Number(parseFloat(e))==e}},{key:"checkRanges",value:function(e){var t=this;if(!Array.isArray(e)||"[object Object]"!==Object.prototype.toString.call(e[0]))return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(e),[];var n=[],r=0;return e.sort(function(e,t){return e.start-t.start}).forEach(function(e){var i=t.callNoMatchOnInvalidRanges(e,r),o=i.start,a=i.end;i.valid&&(e.start=o,e.length=a-o,n.push(e),r=a)}),n}},{key:"callNoMatchOnInvalidRanges",value:function(e,t){var n=void 0,r=void 0,i=!1;return e&&void 0!==e.start?(r=(n=parseInt(e.start,10))+parseInt(e.length,10),this.isNumeric(e.start)&&this.isNumeric(e.length)&&r-t>0&&r-n>0?i=!0:(this.log("Ignoring invalid or overlapping range: "+JSON.stringify(e)),this.opt.noMatch(e))):(this.log("Ignoring invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:n,end:r,valid:i}}},{key:"checkWhitespaceRanges",value:function(e,t,n){var r=void 0,i=!0,o=n.length,a=t-o,s=parseInt(e.start,10)-a;return(r=(s=s>o?o:s)+parseInt(e.length,10))>o&&(r=o,this.log("End range automatically set to the max value of "+o)),s<0||r-s<0||s>o||r>o?(i=!1,this.log("Invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)):""===n.substring(s,r).replace(/\s+/g,"")&&(i=!1,this.log("Skipping whitespace only range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:s,end:r,valid:i}}},{key:"getTextNodes",value:function(e){var t=this,n="",r=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,function(e){r.push({start:n.length,end:(n+=e.textContent).length,node:e})},function(e){return t.matchesExclude(e.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT},function(){e({value:n,nodes:r})})}},{key:"matchesExclude",value:function(e){return i.matches(e,this.opt.exclude.concat(["script","style","title","head","html"]))}},{key:"wrapRangeInTextNode",value:function(e,t,n){var r=this.opt.element?this.opt.element:"mark",i=e.splitText(t),o=i.splitText(n-t),a=document.createElement(r);return a.setAttribute("data-markjs","true"),this.opt.className&&a.setAttribute("class",this.opt.className),a.textContent=i.textContent,i.parentNode.replaceChild(a,i),o}},{key:"wrapRangeInMappedTextNode",value:function(e,t,n,r,i){var o=this;e.nodes.every(function(a,s){var c=e.nodes[s+1];if(void 0===c||c.start>t){if(!r(a.node))return!1;var u=t-a.start,l=(n>a.end?a.end:n)-a.start,h=e.value.substr(0,a.start),f=e.value.substr(l+a.start);if(a.node=o.wrapRangeInTextNode(a.node,u,l),e.value=h+f,e.nodes.forEach(function(t,n){n>=s&&(e.nodes[n].start>0&&n!==s&&(e.nodes[n].start-=l),e.nodes[n].end-=l)}),n-=l,i(a.node.previousSibling,a.start),!(n>a.end))return!1;t=a.end}return!0})}},{key:"wrapMatches",value:function(e,t,n,r,i){var o=this,a=0===t?0:t+1;this.getTextNodes(function(t){t.nodes.forEach(function(t){t=t.node;for(var i=void 0;null!==(i=e.exec(t.textContent))&&""!==i[a];)if(n(i[a],t)){var s=i.index;if(0!==a)for(var c=1;c + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/typedefs_9.js b/search/typedefs_9.js new file mode 100644 index 0000000..c127264 --- /dev/null +++ b/search/typedefs_9.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['uart_5fctrl_5ft',['uart_ctrl_t',['../group___u_a_r_t___a_p_i.html#gad04bd656a84140eaef1e8aa0f86564a8',1,'r_uart_api.h']]] +]; diff --git a/search/typedefs_a.html b/search/typedefs_a.html new file mode 100644 index 0000000..b897e1c --- /dev/null +++ b/search/typedefs_a.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/typedefs_a.js b/search/typedefs_a.js new file mode 100644 index 0000000..999cd20 --- /dev/null +++ b/search/typedefs_a.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['wdt_5fctrl_5ft',['wdt_ctrl_t',['../group___w_d_t___a_p_i.html#gacb273fc13cd5efef455f45486b436efe',1,'r_wdt_api.h']]] +]; diff --git a/search/variables_0.js b/search/variables_0.js index decfe4f..a37c499 100644 --- a/search/variables_0.js +++ b/search/variables_0.js @@ -1,11 +1,40 @@ var searchData= [ ['abort',['abort',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a0a0800aaa24f36b2eac8b315a0c5437e',1,'i2c_master_api_t']]], - ['adc_5fa_5fcompare_5fmatch',['adc_a_compare_match',['../group___g_p_t.html#abc2a1fdb7655945b5ef571c60bf7b4b0',1,'gpt_extended_pwm_cfg_t']]], - ['adc_5fb_5fcompare_5fmatch',['adc_b_compare_match',['../group___g_p_t.html#a078a97f54349c6895fbebc67857c479a',1,'gpt_extended_pwm_cfg_t']]], - ['adc_5fdata',['adc_data',['../group___r_m___o_b1203___a_p_i.html#ad08d19d7beac8dd1f6a672ab4006eb71',1,'rm_ob1203_raw_data_t']]], + ['abort_5firq',['abort_irq',['../group___i3_c___b.html#a2e4966e32402d1d0a865f1a29ea2b980',1,'i3c_b_extended_cfg_t']]], + ['ack_5fmode',['ack_mode',['../group___d_m_a_c___b.html#a7d92e1d7d0c259a61117cfae07481967',1,'dmac_b_extended_cfg_t']]], + ['ack_5foutput_5fpin',['ack_output_pin',['../group___d_m_a_c___b.html#ae5d6ef616f8c71b5511e8f0d21399585',1,'dmac_b_extended_cfg_t']]], + ['ack_5fphase_5fenable',['ack_phase_enable',['../group___i3_c___b.html#a111fd70be18b905f2dcd177090e28e95',1,'i3c_b_clock_stalling_t']]], + ['activation_5frequest_5fsource_5fselect',['activation_request_source_select',['../group___d_m_a_c___b.html#a6f25480c361b6c3dd254878c06d4171c',1,'dmac_b_extended_cfg_t']]], + ['activation_5fsource',['activation_source',['../group___d_m_a_c___b.html#a14515bc1b8a66a78c2fdc035fde0e2fa',1,'dmac_b_extended_cfg_t']]], + ['activity_5fstate',['activity_state',['../group___i3_c___b.html#a667ea08c6f9f2e5f4e3b3354d4fae122',1,'i3c_b_slave_command_response_info_t']]], + ['adc_5fa_5fcompare_5fmatch',['adc_a_compare_match',['../group___g_p_t.html#abc2a1fdb7655945b5ef571c60bf7b4b0',1,'gpt_extended_pwm_cfg_t::adc_a_compare_match()'],['../group___m_t_u3.html#a810012402bce96404cd96fd456c5754b',1,'mtu3_extended_pwm_cfg_t::adc_a_compare_match()']]], + ['adc_5fb_5fcompare_5fmatch',['adc_b_compare_match',['../group___g_p_t.html#a078a97f54349c6895fbebc67857c479a',1,'gpt_extended_pwm_cfg_t::adc_b_compare_match()'],['../group___m_t_u3.html#a46541e7560d30dbc680639d6ef4f5804',1,'mtu3_extended_pwm_cfg_t::adc_b_compare_match()']]], + ['adc_5felc_5fctrl',['adc_elc_ctrl',['../group___a_d_c___e.html#a2001b0e3ee79d759d058d8ed20435133',1,'adc_e_extended_cfg_t']]], + ['adc_5fstart_5ftrigger_5fa',['adc_start_trigger_a',['../group___a_d_c___e.html#a642af1b42820cb4369fe31638fda33ce',1,'adc_e_extended_cfg_t']]], + ['adc_5fstart_5ftrigger_5fb',['adc_start_trigger_b',['../group___a_d_c___e.html#a84260f8c568691040fbb5c0a31e3b1f3',1,'adc_e_extended_cfg_t']]], + ['adc_5fstart_5ftrigger_5fc',['adc_start_trigger_c',['../group___a_d_c___e.html#a3b26e887178253580e298519f7f520e9',1,'adc_e_extended_cfg_t']]], + ['adc_5fstart_5ftrigger_5fc_5fenabled',['adc_start_trigger_c_enabled',['../group___a_d_c___e.html#a85b7d0f9f9a95aeaaca2550b57dbf352',1,'adc_e_extended_cfg_t']]], ['adc_5ftrigger',['adc_trigger',['../group___g_p_t.html#aa39314cc7482a5855e27b0c2daa111ea',1,'gpt_extended_pwm_cfg_t']]], - ['addr_5fmode',['addr_mode',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#af4efbe8e4cb1c08ab54d9818ced03d75',1,'i2c_master_cfg_t']]], + ['add_5faverage_5fcount',['add_average_count',['../group___a_d_c___e.html#a4736acec261319aba40517a3be0c5182',1,'adc_e_extended_cfg_t']]], + ['add_5fmask',['add_mask',['../group___a_d_c___e.html#a7f0c336facf23a64f292eda3c287b402',1,'adc_e_channel_cfg_t']]], + ['addr_5fmode',['addr_mode',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#af4efbe8e4cb1c08ab54d9818ced03d75',1,'i2c_master_cfg_t::addr_mode()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a459e8abd8d66a321b5c56f12590e8354',1,'i2c_slave_cfg_t::addr_mode()']]], + ['address',['address',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a5120cdb55dcd4ce8da04eb8baa69254d',1,'spi_flash_direct_transfer_t']]], + ['address_5fbytes',['address_bytes',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ac9e56afeabf97f6a1642b7468a67cf25',1,'spi_flash_cfg_t']]], + ['address_5flength',['address_length',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a63de64208374fd3c6ea1db4ffb07111f',1,'spi_flash_direct_transfer_t']]], + ['adjustment_5fmode',['adjustment_mode',['../group___r_t_c___a_p_i.html#a16c0bd22c4022b133fc1eee5333086a9',1,'rtc_error_adjustment_cfg_t']]], + ['adjustment_5fperiod',['adjustment_period',['../group___r_t_c___a_p_i.html#af0318e2dbaf3a320504823c4cb1f2ce5',1,'rtc_error_adjustment_cfg_t']]], + ['adjustment_5ftype',['adjustment_type',['../group___r_t_c___a_p_i.html#a322799f85ff64bfe8d6dd4fd611e1ed7',1,'rtc_error_adjustment_cfg_t']]], + ['adjustment_5fvalue',['adjustment_value',['../group___r_t_c___a_p_i.html#a3953fbf4c2ae68580302f22001c8f89e',1,'rtc_error_adjustment_cfg_t']]], ['aiq',['aiq',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abcdbe1de7b8f7c882f5f7bdbb60a2274',1,'rm_zmod4xxx_oaq_1st_data_t']]], - ['ali_5firq',['ali_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a2c8ba3ce75de64703a61dd700ae6bcb6',1,'riic_master_extended_cfg_t']]] + ['alarm1_5fipl',['alarm1_ipl',['../group___r_t_c.html#ac36b179a4311fe95bde1820384dd35cc',1,'rtc_extended_cfg_t']]], + ['alarm1_5firq',['alarm1_irq',['../group___r_t_c.html#ae7f72a6fbe27e9a3ef60c99022798c9b',1,'rtc_extended_cfg_t']]], + ['alarm_5fipl',['alarm_ipl',['../group___r_t_c___a_p_i.html#a6a99d08314611e1fe129bef873c56ac2',1,'rtc_cfg_t']]], + ['alarm_5firq',['alarm_irq',['../group___r_t_c___a_p_i.html#aabad6d91d22b402ad2cbee664bd5c502',1,'rtc_cfg_t']]], + ['ali_5firq',['ali_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a2c8ba3ce75de64703a61dd700ae6bcb6',1,'riic_master_extended_cfg_t::ali_irq()'],['../group___r_i_i_c___s_l_a_v_e.html#a55c817a372e45b76fca43326c627c33f',1,'riic_slave_extended_cfg_t::ali_irq()']]], + ['alignment',['alignment',['../group___a_d_c___a_p_i.html#aa36a14783685f411c4c0a7904a3de8eb',1,'adc_cfg_t']]], + ['assertion_5ftime',['assertion_time',['../group___s_c_i___b___u_a_r_t.html#ae2e7a853b139015cb777e556e9add242',1,'sci_b_uart_rs485_setting_t']]], + ['assigned_5faddress_5fphase_5fenable',['assigned_address_phase_enable',['../group___i3_c___b.html#a130da5bdcc977cc2ac80d2958ee0ed2c',1,'i3c_b_clock_stalling_t']]], + ['autocalibrate',['autoCalibrate',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ad04434e2c049da61d3389355d5961f31',1,'spi_flash_api_t']]], + ['average_5fcount',['average_count',['../group___t_s_u___b.html#a525f475e04de0b02bf01105495f9f474',1,'tsu_b_extended_cfg_t']]] ]; diff --git a/search/variables_1.js b/search/variables_1.js index cd017b9..5a19833 100644 --- a/search/variables_1.js +++ b/search/variables_1.js @@ -1,18 +1,29 @@ var searchData= [ + ['bankset',['bankSet',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a14581133205383b71df54a65439c0dcf',1,'spi_flash_api_t']]], ['baud_5frate_5fprescaler',['baud_rate_prescaler',['../group___c_a_n___a_p_i.html#a33ae62d869abaf989823b7bb1563de41',1,'can_bit_timing_cfg_t']]], ['baudset',['baudSet',['../group___u_a_r_t___a_p_i.html#a8b0f901bcc26bd6836fe620235585f98',1,'uart_api_t']]], - ['bit_5forder',['bit_order',['../group___s_p_i___a_p_i.html#a91d7ce46956168e975b7c9f5fc738724',1,'spi_cfg_t']]], - ['bit_5fwidth',['bit_width',['../group___r_s_p_i.html#a4ed0f4d1ff28b7be854d963b057035d7',1,'rspi_instance_ctrl_t']]], + ['bit_5forder',['bit_order',['../group___c_r_c___a_p_i.html#a1647f8768f919a79d36f7dba45ff0bb4',1,'crc_cfg_t::bit_order()'],['../group___s_p_i___a_p_i.html#a91d7ce46956168e975b7c9f5fc738724',1,'spi_cfg_t::bit_order()']]], + ['bit_5fwidth',['bit_width',['../group___r_s_p_i.html#a4ed0f4d1ff28b7be854d963b057035d7',1,'rspi_instance_ctrl_t::bit_width()'],['../group___s_p_i___b.html#a2ce9db0edb9ad0167232b35d5bc714dc',1,'spi_b_instance_ctrl_t::bit_width()']]], + ['bitrate_5fmodulation',['bitrate_modulation',['../group___s_c_i___b___i2_c.html#ac94d1da59cc2217ab818bd222134d3d5',1,'sci_b_i2c_clock_settings_t']]], + ['bitrate_5fsettings',['bitrate_settings',['../group___i3_c___b.html#a814f21227402c572e9e0f31769a2f7b1',1,'i3c_b_extended_cfg_t']]], ['block_5fcount_5fmax',['block_count_max',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ab480a287279e160d73f60173605485ca',1,'transfer_properties_t']]], ['block_5fcount_5fremaining',['block_count_remaining',['../group___t_r_a_n_s_f_e_r___a_p_i.html#aaa2d7970aa8501e9d3929c7bdf05d357',1,'transfer_properties_t']]], ['blocking',['blocking',['../group___r_m___h_s300_x.html#a77ac61db4e87b179e4c59aa1f152ce02',1,'rm_hs300x_programmnig_mode_params_t']]], - ['blue_5fdata',['blue_data',['../group___r_m___o_b1203___a_p_i.html#aed354d575a3add4a27f6fd3770b029f9',1,'rm_ob1203_light_data_t']]], - ['brdv',['brdv',['../group___r_s_p_i.html#a2f8227792623b013057699e8e4edec1e',1,'rspi_rspck_div_setting_t']]], + ['brdv',['brdv',['../group___r_s_p_i.html#a2f8227792623b013057699e8e4edec1e',1,'rspi_rspck_div_setting_t::brdv()'],['../group___s_p_i___b.html#a6bc3a03629a2f20e5b468f6ca7f54697',1,'rspck_div_setting_t::brdv()']]], ['brh_5fvalue',['brh_value',['../group___r_i_i_c___m_a_s_t_e_r.html#a020f8656c45afc7d90378c7ef26a6955',1,'iic_master_clock_settings_t']]], ['bri_5fipl',['bri_ipl',['../group___s_c_i_f___u_a_r_t.html#a3fa97958f621b33bee457ec6bc136bed',1,'scif_uart_extended_cfg_t']]], ['bri_5firq',['bri_irq',['../group___s_c_i_f___u_a_r_t.html#a172e0b3047c07502b68ff88471e787ee',1,'scif_uart_extended_cfg_t']]], - ['brl_5fvalue',['brl_value',['../group___r_i_i_c___m_a_s_t_e_r.html#a505dbb8fdf8f4ffac481adab9c08b3fc',1,'iic_master_clock_settings_t']]], + ['brl_5fvalue',['brl_value',['../group___r_i_i_c___m_a_s_t_e_r.html#a505dbb8fdf8f4ffac481adab9c08b3fc',1,'iic_master_clock_settings_t::brl_value()'],['../group___r_i_i_c___s_l_a_v_e.html#a41382084c8a91226db001a7321176112',1,'iic_slave_clock_settings_t::brl_value()']]], ['brr',['brr',['../group___s_c_i_f___u_a_r_t.html#acc601128ecd5e04fcc306b249a2bb7bf',1,'scif_baud_setting_t']]], - ['buf',['buf',['../group___r_m___h_s300_x.html#a486df3e0ed2af6c8c038e1357572da53',1,'rm_hs300x_instance_ctrl_t::buf()'],['../group___r_m___o_b1203.html#a8315472488bcdc83146c0e0c873d8037',1,'rm_ob1203_instance_ctrl_t::buf()'],['../group___r_m___z_m_o_d4_x_x_x.html#a0a1702cc41dc3a4c35e5c81f95b55295',1,'rm_zmod4xxx_instance_ctrl_t::buf()']]] + ['brr_5fvalue',['brr_value',['../group___s_c_i___b___i2_c.html#a68f4a0d78c3d47e252f292aa0025b3a9',1,'sci_b_i2c_clock_settings_t']]], + ['buf',['buf',['../group___r_m___h_s300_x.html#a486df3e0ed2af6c8c038e1357572da53',1,'rm_hs300x_instance_ctrl_t::buf()'],['../group___r_m___z_m_o_d4_x_x_x.html#a0a1702cc41dc3a4c35e5c81f95b55295',1,'rm_zmod4xxx_instance_ctrl_t::buf()']]], + ['buffer_5finit_5fvalue',['buffer_init_value',['../group___i_o_p_o_r_t.html#a8cacbb5efbafad8505bd0140ece21b08',1,'ioport_event_group_input_t']]], + ['buffer_5fmode',['buffer_mode',['../group___a_d_c___c.html#a8ccf8c0714c173bc9e9d536df5df56f9',1,'adc_c_extended_cfg_t']]], + ['buffer_5foverwrite_5fdetection_5fenable',['buffer_overwrite_detection_enable',['../group___p_d_m.html#a9cbd930664bb8b7902a78d5dc07ff1b0',1,'pdm_extended_cfg_t']]], + ['bus_5favailable_5fdetection_5ftime',['bus_available_detection_time',['../group___i3_c___b.html#af62dc925b22147aff968321a8ba10fef',1,'i3c_b_extended_cfg_t']]], + ['bus_5ffree_5fdetection_5ftime',['bus_free_detection_time',['../group___i3_c___b.html#a8ed749153af0e8311373e3d2d446ee5d',1,'i3c_b_extended_cfg_t']]], + ['bus_5fidle_5fdetection_5ftime',['bus_idle_detection_time',['../group___i3_c___b.html#a7e9d0d85bd1aefa8de414728f18b32de',1,'i3c_b_extended_cfg_t']]], + ['byte_5fswap',['byte_swap',['../group___s_p_i___b.html#af621a3a18d5499079a962d880cded254',1,'spi_b_extended_cfg_t']]], + ['bytes',['bytes',['../group___i2_c___s_l_a_v_e___a_p_i.html#a43903d76b59b527cef993d5cdbe9a2b9',1,'i2c_slave_callback_args_t']]] ]; diff --git a/search/variables_10.js b/search/variables_10.js index b06fe2b..54d7859 100644 --- a/search/variables_10.js +++ b/search/variables_10.js @@ -1,27 +1,53 @@ var searchData= [ ['tei_5fipl',['tei_ipl',['../group___s_p_i___a_p_i.html#a493a388c1b9907a10e54ab57021f5ea4',1,'spi_cfg_t::tei_ipl()'],['../group___u_a_r_t___a_p_i.html#aceec311122c92321f879530c32fc0e00',1,'uart_cfg_t::tei_ipl()']]], - ['tei_5firq',['tei_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ac2de0a7db69741ace3fd1e6995bddb57',1,'i2c_master_cfg_t::tei_irq()'],['../group___s_p_i___a_p_i.html#a65879b76a785f6afaf3e295120de9bf2',1,'spi_cfg_t::tei_irq()'],['../group___u_a_r_t___a_p_i.html#a52fad103c0d9a1cc38510e74f7f1c198',1,'uart_cfg_t::tei_irq()']]], + ['tei_5firq',['tei_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ac2de0a7db69741ace3fd1e6995bddb57',1,'i2c_master_cfg_t::tei_irq()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ad1cc54031228e56ffcbf398278e39e98',1,'i2c_slave_cfg_t::tei_irq()'],['../group___s_p_i___a_p_i.html#a65879b76a785f6afaf3e295120de9bf2',1,'spi_cfg_t::tei_irq()'],['../group___u_a_r_t___a_p_i.html#a52fad103c0d9a1cc38510e74f7f1c198',1,'uart_cfg_t::tei_irq()']]], ['temperature',['temperature',['../group___r_m___h_s300_x___a_p_i.html#a9e58f685584c3b52c8a504f8e8cee696',1,'rm_hs300x_raw_data_t::temperature()'],['../group___r_m___h_s400_x___a_p_i.html#a631d9b338b2183a1ae2ce36b9adb844b',1,'rm_hs400x_raw_data_t::temperature()']]], ['temperature_5fresolution',['temperature_resolution',['../group___r_m___h_s400_x___a_p_i.html#a2345337ea54f3db1a45733a57dd3a358',1,'rm_hs400x_cfg_t']]], ['temperatureandhumidityset',['temperatureAndHumiditySet',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a504a4e2266dc1ae46f27b752ade032e9',1,'rm_zmod4xxx_api_t']]], + ['tend_5foutput_5fpin',['tend_output_pin',['../group___d_m_a_c___b.html#a4948302219c9409176bcc0ca3a2484d8',1,'dmac_b_extended_cfg_t']]], + ['terr_5firq',['terr_irq',['../group___i3_c___b.html#a5b9ea9a0c7e528e57c66d5b3cc85e674',1,'i3c_b_extended_cfg_t']]], + ['tgra_5fval',['tgra_val',['../group___m_t_u3.html#af508e14be5476f219620a30f14531871',1,'mtu3_extended_cfg_t']]], + ['tgrb_5fval',['tgrb_val',['../group___m_t_u3.html#af66a345b2403fb4b16c0c69babd6f96e',1,'mtu3_extended_cfg_t']]], + ['tgrc_5fval',['tgrc_val',['../group___m_t_u3.html#af23edbc49f7268ad12e61a783bbbf951',1,'mtu3_extended_cfg_t']]], + ['tgrd_5fval',['tgrd_val',['../group___m_t_u3.html#ac5bc8f09109ce78912076db7b22ed9f5',1,'mtu3_extended_cfg_t']]], + ['time',['time',['../group___r_t_c___a_p_i.html#a07468cd075199669905fb25eecddcf9b',1,'rtc_alarm_time_t']]], ['time_5fsegment_5f1',['time_segment_1',['../group___c_a_n___a_p_i.html#aafe4728b44b6abbb0f5d540e16d0be40',1,'can_bit_timing_cfg_t']]], ['time_5fsegment_5f2',['time_segment_2',['../group___c_a_n___a_p_i.html#a4157f4d2f2bd13acd53ebc43c557c4f8',1,'can_bit_timing_cfg_t']]], + ['timeout',['timeout',['../group___w_d_t___a_p_i.html#a32ddaf9b3fd7bab2b654e660588ac680',1,'wdt_cfg_t']]], + ['timeout_5fclocks',['timeout_clocks',['../group___w_d_t___a_p_i.html#a3f910dce98e58fc8a05152a21f404f74',1,'wdt_timeout_values_t']]], + ['timeout_5fdetection_5fenable',['timeout_detection_enable',['../group___i3_c___b.html#a7609c913ab9040ddb3884007abe4d661',1,'i3c_b_extended_cfg_t']]], ['timeout_5fmode',['timeout_mode',['../group___r_i_i_c___m_a_s_t_e_r.html#ac4f06d6bc304b3105524646725c0e736',1,'riic_master_extended_cfg_t']]], - ['tmoi_5firq',['tmoi_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a96e7311f8d945a850954b4f6d4db1dba',1,'riic_master_extended_cfg_t']]], + ['timeout_5fscl_5flow',['timeout_scl_low',['../group___r_i_i_c___m_a_s_t_e_r.html#a248dede6dc400b36d660ee00bf2b814b',1,'riic_master_extended_cfg_t']]], + ['timeoutget',['timeoutGet',['../group___w_d_t___a_p_i.html#ac2b6d848e8be0ff1a0a1be43289ad925',1,'wdt_api_t']]], + ['tint_5ftrigger',['tint_trigger',['../group___i_n_t_c___t_i_n_t.html#a15e2ce2189f72bd6ac8d5789cf535a45',1,'intc_tint_extended_cfg_t']]], + ['tmo_5firq',['tmo_irq',['../group___i3_c___b.html#a1ea9841cd4b6b18cd9acc7d7f53fa64d',1,'i3c_b_extended_cfg_t']]], + ['tmoi_5firq',['tmoi_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a96e7311f8d945a850954b4f6d4db1dba',1,'riic_master_extended_cfg_t::tmoi_irq()'],['../group___r_i_i_c___s_l_a_v_e.html#a17643f2f26d82852032bd200631567ad',1,'riic_slave_extended_cfg_t::tmoi_irq()']]], + ['toc0',['toc0',['../group___c_m_t_w.html#af9073998c0c28e05a8f12da3eddf30ed',1,'cmtw_extended_cfg_t']]], + ['toc0_5fcontrol',['toc0_control',['../group___c_m_t_w.html#a1734ae8129ed557f34e735fc4a0488b6',1,'cmtw_extended_cfg_t']]], + ['toc1',['toc1',['../group___c_m_t_w.html#ac2924a866fbfae428b2d6feb8edde25f',1,'cmtw_extended_cfg_t']]], + ['toc1_5fcontrol',['toc1_control',['../group___c_m_t_w.html#a77d38169188404361f4dbb3f6c792655',1,'cmtw_extended_cfg_t']]], ['transfer_5fdata_5fbytes',['transfer_data_bytes',['../group___r_m___c_o_m_m_s___i2_c.html#a4323a08a846785496c0fdea5f1219f1e',1,'rm_comms_i2c_instance_ctrl_t']]], + ['transfer_5finterval',['transfer_interval',['../group___d_m_a_c___b.html#ad212e04a4018fe8852fa8eb5ee9cd557',1,'dmac_b_extended_cfg_t']]], ['transfer_5fis_5fpending',['transfer_is_pending',['../group___r_s_p_i.html#a84b7d73e4143987055afde28fe246f05',1,'rspi_instance_ctrl_t']]], ['transfer_5flength_5fmax',['transfer_length_max',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ae8ae839a9fa2fea09d9390e11b2edd9c',1,'transfer_properties_t']]], ['transfer_5flength_5fremaining',['transfer_length_remaining',['../group___t_r_a_n_s_f_e_r___a_p_i.html#afd44a3b34e332d28d7573865c58b00df',1,'transfer_properties_t']]], - ['trigger',['trigger',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ac9c027f165cdd6273959c0338cfb212d',1,'external_irq_cfg_t::trigger()'],['../group___p_o_e_g___a_p_i.html#ace17b160cb26724e59f6aa82e39ed80b',1,'poeg_cfg_t::trigger()']]], + ['transfer_5fsize',['transfer_size',['../group___a_d_c___a_p_i.html#a85b0300314b3d3c1b37db311b92ade6b',1,'adc_info_t::transfer_size()'],['../group___i3_c___a_p_i.html#aafe9264685a5693c48c24cbcc470d6d7',1,'i3c_callback_args_t::transfer_size()']]], + ['transition_5fphase_5fenable',['transition_phase_enable',['../group___i3_c___b.html#aa24d69aa4e272b08ea25115bdd653871',1,'i3c_b_clock_stalling_t']]], + ['trigger',['trigger',['../group___a_d_c___a_p_i.html#aa1ffab52d024ec83ada3d3b5763ed2b3',1,'adc_cfg_t::trigger()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ac9c027f165cdd6273959c0338cfb212d',1,'external_irq_cfg_t::trigger()'],['../group___p_o_e_g___a_p_i.html#ace17b160cb26724e59f6aa82e39ed80b',1,'poeg_cfg_t::trigger()']]], + ['trigger_5fedge',['trigger_edge',['../group___a_d_c___c.html#a7eb4fc71a82fcf1ecd7574070c4243e3',1,'adc_c_extended_cfg_t']]], + ['trigger_5fgroup_5fb',['trigger_group_b',['../group___a_d_c___e.html#aef801f1c817a80fe191ccaf67f425ebe',1,'adc_e_extended_cfg_t']]], + ['trigger_5fmode',['trigger_mode',['../group___a_d_c___c.html#a8b7c376994f8e824a958c1d1d0f8b302',1,'adc_c_extended_cfg_t']]], + ['trigger_5fsource',['trigger_source',['../group___a_d_c___c.html#a46131143e44246e03f3a6ca768512a05',1,'adc_c_extended_cfg_t']]], ['trough_5fipl',['trough_ipl',['../group___g_p_t.html#ad908895a31952a884009f3a63fdac8d0',1,'gpt_extended_pwm_cfg_t']]], ['trough_5firq',['trough_irq',['../group___g_p_t.html#af69392faec97dd6cf86b0634e6b79b44',1,'gpt_extended_pwm_cfg_t']]], ['tvoc',['tvoc',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aa97465cfe97ce3dcf9b872b0425687a9',1,'rm_zmod4xxx_iaq_1st_data_t::tvoc()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6dc721959ed25ffaade04a78ba4c1ba6',1,'rm_zmod4xxx_iaq_2nd_data_t::tvoc()']]], - ['tx_5fcount',['tx_count',['../group___r_s_p_i.html#a5a46d5fbf91bb380c5a211c33e2c5b54',1,'rspi_instance_ctrl_t']]], + ['tx_5fcount',['tx_count',['../group___r_s_p_i.html#a5a46d5fbf91bb380c5a211c33e2c5b54',1,'rspi_instance_ctrl_t::tx_count()'],['../group___s_p_i___b.html#a01bfd62b304e044b1cecefb0310c7823',1,'spi_b_instance_ctrl_t::tx_count()']]], + ['tx_5firq',['tx_irq',['../group___c_a_n___a_p_i.html#ac495ac44fdee552f013eea5ba0e86b06',1,'can_cfg_t::tx_irq()'],['../group___i3_c___b.html#ae1e8bc40fc3143b2dbb0321efbd677ee',1,'i3c_b_extended_cfg_t::tx_irq()']]], ['tx_5ftrigger_5flevel',['tx_trigger_level',['../group___r_s_p_i.html#ac9029124a35943dc5f347657d28d3c16',1,'rspi_extended_cfg_t']]], ['txi_5fipl',['txi_ipl',['../group___s_p_i___a_p_i.html#a370e9869ca57c5a81ab7957e90a69f13',1,'spi_cfg_t::txi_ipl()'],['../group___u_a_r_t___a_p_i.html#ab93490806d8ebfbe84a8d2e9def3a138',1,'uart_cfg_t::txi_ipl()']]], - ['txi_5firq',['txi_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a5d0a5cd0ccc684addfc096545cd3ebc6',1,'i2c_master_cfg_t::txi_irq()'],['../group___s_p_i___a_p_i.html#a38e81bf48ececd7cc34ecf215b923c42',1,'spi_cfg_t::txi_irq()'],['../group___u_a_r_t___a_p_i.html#a79df568ef30629847da05d9b073f1602',1,'uart_cfg_t::txi_irq()']]], + ['txi_5firq',['txi_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a5d0a5cd0ccc684addfc096545cd3ebc6',1,'i2c_master_cfg_t::txi_irq()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ac88cda39460d4a3d029e5c6e93bf7204',1,'i2c_slave_cfg_t::txi_irq()'],['../group___s_p_i___a_p_i.html#a38e81bf48ececd7cc34ecf215b923c42',1,'spi_cfg_t::txi_irq()'],['../group___u_a_r_t___a_p_i.html#a79df568ef30629847da05d9b073f1602',1,'uart_cfg_t::txi_irq()']]], ['txmb_5fmerge_5fmode_5fenable',['txmb_merge_mode_enable',['../group___c_a_n_f_d.html#aaaef4497ea35ba92d6d85cc5cc4a380a',1,'canfd_extended_cfg_t']]], - ['txmb_5ftxi_5fenable',['txmb_txi_enable',['../group___c_a_n_f_d.html#a1a95c697fe49bba12e5ddb7e21b04572',1,'canfd_extended_cfg_t']]], + ['txmb_5ftxi_5fenable',['txmb_txi_enable',['../group___c_a_n_f_d.html#ab3421077c295a40773c6cad2fb638176',1,'canfd_extended_cfg_t']]], ['type',['type',['../group___c_a_n___a_p_i.html#a79046fddb934fd7ea0d0cc70b8d7f26d',1,'can_frame_t']]] ]; diff --git a/search/variables_11.js b/search/variables_11.js index ffc903e..b29663b 100644 --- a/search/variables_11.js +++ b/search/variables_11.js @@ -4,5 +4,5 @@ var searchData= ['ulmair0',['ulMAIR0',['../structx_m_p_u___s_e_t_t_i_n_g_s.html#adbd29d7744b3526d1b0348789486343f',1,'xMPU_SETTINGS']]], ['ulrbar',['ulRBAR',['../struct_m_p_u_region_settings__t.html#a787743138d34bbae232204699cee75a9',1,'MPURegionSettings_t']]], ['ulrlar',['ulRLAR',['../struct_m_p_u_region_settings__t.html#a85dfb09938fe2cbecfd54fdc04645280',1,'MPURegionSettings_t']]], - ['unread_5fsamples',['unread_samples',['../group___r_m___o_b1203___a_p_i.html#a1ae36e22e66dbb0319f3f42931dfd9f7',1,'rm_ob1203_fifo_info_t']]] + ['unit',['unit',['../group___a_d_c___a_p_i.html#a3756c0cebdc1c304d48db67a5bcd16a6',1,'adc_callback_args_t::unit()'],['../group___a_d_c___a_p_i.html#a5da30f972881cd9d64f3a7add1ccd522',1,'adc_cfg_t::unit()'],['../group___p_d_m___a_p_i.html#a336b1d202eafdf805edd3cc274ef89e3',1,'pdm_cfg_t::unit()'],['../group___d_m_a_c___b.html#a3043a2a8f1838e56d4fcd50b5492e06f',1,'dmac_b_extended_cfg_t::unit()']]] ]; diff --git a/search/variables_12.js b/search/variables_12.js index 6540c6c..9f2906d 100644 --- a/search/variables_12.js +++ b/search/variables_12.js @@ -1,5 +1,5 @@ var searchData= [ - ['version_5fid',['version_id',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#a30a9a2b73548d20c22d0ba1f8aa42e27',1,'fsp_version_t::version_id()'],['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#a3d5dd6d84edfe02a1eb1f1f1ac2f3054',1,'fsp_pack_version_t::version_id()']]], - ['versionget',['versionGet',['../group___c_a_n___a_p_i.html#aa3a9393d2130549479111743b1750b41',1,'can_api_t']]] + ['vendor_5fstatus',['vendor_status',['../group___i3_c___a_p_i.html#a0148d668a40c53ea6aeba6b14050593e',1,'i3c_device_status_t']]], + ['version_5fid',['version_id',['../group___r_e_n_e_s_a_s___e_r_r_o_r___c_o_d_e_s.html#a30a9a2b73548d20c22d0ba1f8aa42e27',1,'fsp_version_t::version_id()'],['../group___r_e_n_e_s_a_s___c_o_m_m_o_n.html#a3d5dd6d84edfe02a1eb1f1f1ac2f3054',1,'fsp_pack_version_t::version_id()']]] ]; diff --git a/search/variables_13.js b/search/variables_13.js index dd31fa2..8902ba7 100644 --- a/search/variables_13.js +++ b/search/variables_13.js @@ -1,8 +1,21 @@ var searchData= [ - ['write',['write',['../group___c_a_n___a_p_i.html#a0dcc61e0202ace6d5b91665464415adc',1,'can_api_t::write()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ab2ca2f7ee7e55628bcdd9e3492d7dfd2',1,'i2c_master_api_t::write()'],['../group___s_p_i___a_p_i.html#af053cb19a14773a51d1e060c5a624555',1,'spi_api_t::write()'],['../group___u_a_r_t___a_p_i.html#a9a87e8764518ac3268cf1c9df3b6aad3',1,'uart_api_t::write()'],['../group___r_m___c_o_m_m_s___a_p_i.html#af5486a540964c7c37f3115739be3e6cb',1,'rm_comms_api_t::write()'],['../structzmod4xxx__dev__t.html#a407e0713aab2f2d04392bd7a21b3f4fa',1,'zmod4xxx_dev_t::write()']]], + ['window_5fa_5fipl',['window_a_ipl',['../group___a_d_c___e.html#a51c9f7b4d98b8fe863268a2af3da0d59',1,'adc_e_extended_cfg_t']]], + ['window_5fa_5firq',['window_a_irq',['../group___a_d_c___e.html#a1dc98d81c9cfb1b1eb10db8ef7c638fe',1,'adc_e_extended_cfg_t']]], + ['window_5fb_5fipl',['window_b_ipl',['../group___a_d_c___e.html#a3c4857e589eda67d890287c4cbf8cbe6',1,'adc_e_extended_cfg_t']]], + ['window_5fb_5firq',['window_b_irq',['../group___a_d_c___e.html#a0b20ef241f551191d580f929c32c8c7a',1,'adc_e_extended_cfg_t']]], + ['window_5fend',['window_end',['../group___w_d_t___a_p_i.html#a5f9d35ace3a2cca8b1b8ae834aae70cb',1,'wdt_cfg_t']]], + ['window_5fstart',['window_start',['../group___w_d_t___a_p_i.html#a9616c365a4d3f1d374fb5a7125cef0e5',1,'wdt_cfg_t']]], + ['write',['write',['../group___c_a_n___a_p_i.html#a0dcc61e0202ace6d5b91665464415adc',1,'can_api_t::write()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ab2ca2f7ee7e55628bcdd9e3492d7dfd2',1,'i2c_master_api_t::write()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a8a7c8ec91840338adbabcea5b5400f19',1,'i2c_slave_api_t::write()'],['../group___i3_c___a_p_i.html#a0b27ccf4720531545b0c2e118032539b',1,'i3c_api_t::write()'],['../group___s_p_i___a_p_i.html#af053cb19a14773a51d1e060c5a624555',1,'spi_api_t::write()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#a61e667a9ae9af76c5f8fd9f1973c6838',1,'spi_flash_api_t::write()'],['../group___u_a_r_t___a_p_i.html#a9a87e8764518ac3268cf1c9df3b6aad3',1,'uart_api_t::write()'],['../group___r_m___c_o_m_m_s___a_p_i.html#af5486a540964c7c37f3115739be3e6cb',1,'rm_comms_api_t::write()'],['../structzmod4xxx__dev__t.html#a407e0713aab2f2d04392bd7a21b3f4fa',1,'zmod4xxx_dev_t::write()']]], ['write_5fbuf',['write_buf',['../group___r_m___h_s400_x.html#a5ad7e2630eddb4d77b167363ae3e6cfe',1,'rm_hs400x_instance_ctrl_t']]], + ['write_5fbuffer_5fdescriptor',['write_buffer_descriptor',['../group___i3_c___b.html#a2144b0ec9924455ca87e11f869af3da6',1,'i3c_b_instance_ctrl_t']]], ['write_5fbytes_5fmax',['write_bytes_max',['../group___u_a_r_t___a_p_i.html#a0f61af63801e663a8401a9af9c890522',1,'uart_info_t']]], - ['write_5findex',['write_index',['../group___r_m___o_b1203___a_p_i.html#ab55258f8d19ebb8ccc07a2524ddaaa63',1,'rm_ob1203_fifo_info_t']]], - ['writeread',['writeRead',['../group___s_p_i___a_p_i.html#a6ed153d8e5e54e417fda95b044ac2fd6',1,'spi_api_t::writeRead()'],['../group___r_m___c_o_m_m_s___a_p_i.html#a468f1e4f571140989fa274d8f40a5bb1',1,'rm_comms_api_t::writeRead()']]] + ['write_5fdata_5frate',['write_data_rate',['../group___i3_c___b.html#a6e5ccf943f0f06851167cfe40fe7b7a1',1,'i3c_b_slave_command_response_info_t']]], + ['write_5fenable_5fbit',['write_enable_bit',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a6db8c831a8c3ef08a0f511c7229a503e',1,'spi_flash_cfg_t']]], + ['write_5fenable_5fcommand',['write_enable_command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ae5c4c2c2b0cebe9a54e530cbc2554b6e',1,'spi_flash_cfg_t']]], + ['write_5fin_5fprogress',['write_in_progress',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ae20d4bed523ca4e802f5da6fdec4ca43',1,'spi_flash_status_t']]], + ['write_5flength',['write_length',['../group___i3_c___b.html#a118058cb130acafed14c05752db449be',1,'i3c_b_slave_command_response_info_t']]], + ['write_5fstatus_5fbit',['write_status_bit',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a72bf5b8dca157ef7a4a2c66b12c945e9',1,'spi_flash_cfg_t']]], + ['writeread',['writeRead',['../group___s_p_i___a_p_i.html#a6ed153d8e5e54e417fda95b044ac2fd6',1,'spi_api_t::writeRead()'],['../group___r_m___c_o_m_m_s___a_p_i.html#a468f1e4f571140989fa274d8f40a5bb1',1,'rm_comms_api_t::writeRead()']]], + ['wu_5firq',['wu_irq',['../group___i3_c___b.html#afc989f369398b733654a708929df5f04',1,'i3c_b_extended_cfg_t']]] ]; diff --git a/search/variables_14.js b/search/variables_14.js index 31d1877..90947d4 100644 --- a/search/variables_14.js +++ b/search/variables_14.js @@ -1,4 +1,8 @@ var searchData= [ + ['xip_5fenter_5fcommand',['xip_enter_command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#accd8433fbfc03e8a8bdb209c583c6ce9',1,'spi_flash_cfg_t']]], + ['xip_5fexit_5fcommand',['xip_exit_command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a315a0b4fc25c20262fdbf762c389c109',1,'spi_flash_cfg_t']]], + ['xipenter',['xipEnter',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ab5c6cc5c82e73038ddcef82a906b966f',1,'spi_flash_api_t']]], + ['xipexit',['xipExit',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a3a7c2aae058a733f879ae294c63ce2c6',1,'spi_flash_api_t']]], ['xregionssettings',['xRegionsSettings',['../structx_m_p_u___s_e_t_t_i_n_g_s.html#abe271f8ea47271a114bc8a0bebc285c4',1,'xMPU_SETTINGS']]] ]; diff --git a/search/variables_15.html b/search/variables_15.html new file mode 100644 index 0000000..7432fd7 --- /dev/null +++ b/search/variables_15.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/search/variables_15.js b/search/variables_15.js new file mode 100644 index 0000000..002778c --- /dev/null +++ b/search/variables_15.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['year_5fmatch',['year_match',['../group___r_t_c___a_p_i.html#ab20077ad52e2ef1a05a206d3cf216662',1,'rtc_alarm_time_t']]] +]; diff --git a/search/variables_2.js b/search/variables_2.js index a2e54ad..90fc341 100644 --- a/search/variables_2.js +++ b/search/variables_2.js @@ -1,33 +1,94 @@ var searchData= [ - ['callbackset',['callbackSet',['../group___c_a_n___a_p_i.html#a0eeb3995e651ce4b77e8860ab50597a9',1,'can_api_t::callbackSet()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a4a407b8899a042692026e65d98535f6e',1,'external_irq_api_t::callbackSet()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a1a0c2ac15d2c2eb6a50baed682498620',1,'i2c_master_api_t::callbackSet()'],['../group___m_h_u___a_p_i.html#a71110c354941eb9204f6af5969ce7132',1,'mhu_api_t::callbackSet()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#afca2a6032121c770e1bd8a07db1c062a',1,'mhu_ns_swint_get_api_t::callbackSet()'],['../group___p_o_e_g___a_p_i.html#a7d01f09a832b9940b264b0cf10a3863c',1,'poeg_api_t::callbackSet()'],['../group___s_p_i___a_p_i.html#a01c7aacdcdf219dcfa88c2b40e7d25b1',1,'spi_api_t::callbackSet()'],['../group___t_i_m_e_r___a_p_i.html#a1b2c51a519145c2482ca2fb6b4b3d749',1,'timer_api_t::callbackSet()'],['../group___u_a_r_t___a_p_i.html#a51b74df27fb26e85700d9524cdfc7c01',1,'uart_api_t::callbackSet()']]], + ['calculate',['calculate',['../group___c_r_c___a_p_i.html#ababb93aa2ede5ba3d5750bd3203ce7e3',1,'crc_api_t']]], + ['calendaralarmget',['calendarAlarmGet',['../group___r_t_c___a_p_i.html#aaad6019c8b72db02966fc040676810b4',1,'rtc_api_t']]], + ['calendaralarmset',['calendarAlarmSet',['../group___r_t_c___a_p_i.html#a5bda4cf6957658e03d59db0cf11933e5',1,'rtc_api_t']]], + ['calendartimeget',['calendarTimeGet',['../group___r_t_c___a_p_i.html#aef7d57fb6eb6e5e781743071793de36e',1,'rtc_api_t']]], + ['calendartimeset',['calendarTimeSet',['../group___r_t_c___a_p_i.html#a9a389b61ac0714083083fd04d9223479',1,'rtc_api_t']]], + ['calibrate',['calibrate',['../group___a_d_c___a_p_i.html#a1020d90e58d3bf86cee2f46a62e62fc4',1,'adc_api_t']]], + ['calibration_5fdata',['calibration_data',['../group___a_d_c___a_p_i.html#a5869042d58165926402aa499eefb68f2',1,'adc_info_t']]], + ['calibration_5fdata1',['calibration_data1',['../group___a_d_c___a_p_i.html#a366d981b2bfa6c2ade3a3f8f8c00ff70',1,'adc_info_t']]], + ['calibration_5fdata2',['calibration_data2',['../group___a_d_c___a_p_i.html#afec4154b488a160a33ceebca6affc94e',1,'adc_info_t']]], + ['calibration_5fongoing',['calibration_ongoing',['../group___a_d_c___a_p_i.html#a0ffb4b8f70b79eef55805cedcbde013b',1,'adc_info_t']]], + ['callbackset',['callbackSet',['../group___a_d_c___a_p_i.html#a8d081aba32f84d62e7d48389b1d10b3e',1,'adc_api_t::callbackSet()'],['../group___c_a_n___a_p_i.html#a0eeb3995e651ce4b77e8860ab50597a9',1,'can_api_t::callbackSet()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a4a407b8899a042692026e65d98535f6e',1,'external_irq_api_t::callbackSet()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a1a0c2ac15d2c2eb6a50baed682498620',1,'i2c_master_api_t::callbackSet()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a527fc26638e91d2daf652c2b30b5ab5a',1,'i2c_slave_api_t::callbackSet()'],['../group___m_h_u___a_p_i.html#a71110c354941eb9204f6af5969ce7132',1,'mhu_api_t::callbackSet()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#afca2a6032121c770e1bd8a07db1c062a',1,'mhu_ns_swint_get_api_t::callbackSet()'],['../group___p_d_m___a_p_i.html#a3a08bbd100782b9a8771628cc2637edb',1,'pdm_api_t::callbackSet()'],['../group___p_o_e_g___a_p_i.html#a7d01f09a832b9940b264b0cf10a3863c',1,'poeg_api_t::callbackSet()'],['../group___r_t_c___a_p_i.html#a63a958dd039662f8d13d38a64da9b61e',1,'rtc_api_t::callbackSet()'],['../group___s_p_i___a_p_i.html#a01c7aacdcdf219dcfa88c2b40e7d25b1',1,'spi_api_t::callbackSet()'],['../group___t_i_m_e_r___a_p_i.html#a1b2c51a519145c2482ca2fb6b4b3d749',1,'timer_api_t::callbackSet()'],['../group___u_a_r_t___a_p_i.html#a51b74df27fb26e85700d9524cdfc7c01',1,'uart_api_t::callbackSet()'],['../group___w_d_t___a_p_i.html#a28dc9b161653da57c10267f775bda125',1,'wdt_api_t::callbackSet()']]], ['capture',['capture',['../group___t_i_m_e_r___a_p_i.html#a8abd12cdf1a993cf8054be6ba9d96a6f',1,'timer_callback_args_t']]], - ['capture_5fa_5fipl',['capture_a_ipl',['../group___g_p_t.html#a7e5402bac34e2c3d3006b68ee0b8ab2a',1,'gpt_extended_cfg_t']]], - ['capture_5fa_5firq',['capture_a_irq',['../group___g_p_t.html#a630c77adb426ddddb5eac8b974fd7c85',1,'gpt_extended_cfg_t']]], + ['capture_5fa_5fipl',['capture_a_ipl',['../group___g_p_t.html#a7e5402bac34e2c3d3006b68ee0b8ab2a',1,'gpt_extended_cfg_t::capture_a_ipl()'],['../group___m_t_u3.html#ae357d03fb305808acc1a5f971e9ae205',1,'mtu3_extended_cfg_t::capture_a_ipl()']]], + ['capture_5fa_5firq',['capture_a_irq',['../group___g_p_t.html#a630c77adb426ddddb5eac8b974fd7c85',1,'gpt_extended_cfg_t::capture_a_irq()'],['../group___m_t_u3.html#a566d52f760c761f105831fae2c2f5125',1,'mtu3_extended_cfg_t::capture_a_irq()']]], ['capture_5fa_5fsource',['capture_a_source',['../group___g_p_t.html#aad7e19c30d43b6d0f88943c27e9afa4c',1,'gpt_extended_cfg_t']]], - ['capture_5fb_5fipl',['capture_b_ipl',['../group___g_p_t.html#aae4ebebdd346531add1c9ce3bee52106',1,'gpt_extended_cfg_t']]], - ['capture_5fb_5firq',['capture_b_irq',['../group___g_p_t.html#a22eb63abdf43064c9c83d81287c67c88',1,'gpt_extended_cfg_t']]], + ['capture_5fb_5fipl',['capture_b_ipl',['../group___g_p_t.html#aae4ebebdd346531add1c9ce3bee52106',1,'gpt_extended_cfg_t::capture_b_ipl()'],['../group___m_t_u3.html#aedd3dc71ec5728ef54295740297f16f7',1,'mtu3_extended_cfg_t::capture_b_ipl()']]], + ['capture_5fb_5firq',['capture_b_irq',['../group___g_p_t.html#a22eb63abdf43064c9c83d81287c67c88',1,'gpt_extended_cfg_t::capture_b_irq()'],['../group___m_t_u3.html#a88e05f92f9226183d8fe7bcdc5f777c6',1,'mtu3_extended_cfg_t::capture_b_irq()']]], ['capture_5fb_5fsource',['capture_b_source',['../group___g_p_t.html#aca22811f5aebe0ee236214b53f9f6bbd',1,'gpt_extended_cfg_t']]], - ['channel',['channel',['../group___c_a_n___a_p_i.html#a08080bddad2f04a8074b995da354f259',1,'can_callback_args_t::channel()'],['../group___c_a_n___a_p_i.html#a12f266c39b851a037b4d30ae5661e46b',1,'can_cfg_t::channel()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#acd4a73f25f8415f6ca33f31392d92fd9',1,'external_irq_callback_args_t::channel()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a1b7ba67ea2063df052d7cff54d642455',1,'external_irq_cfg_t::channel()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ab51668940cafabfefc502f06fddc9ae4',1,'i2c_master_cfg_t::channel()'],['../group___m_h_u___a_p_i.html#adf5e843397d8bc69ace33912995215f6',1,'mhu_callback_args_t::channel()'],['../group___m_h_u___a_p_i.html#a699f2d0b2fc8919da61e4dfae837890f',1,'mhu_cfg_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a9613c5884f49c02ae6aa41b09a999bc0',1,'mhu_ns_swint_get_callback_args_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a28544f4e5e43a96c4bb2cb7fe4879fcd',1,'mhu_ns_swint_get_cfg_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a8f8ecb7c58b29ead3b75fc071a965175',1,'mhu_ns_swint_set_callback_args_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a911cd4a50f86d1e71e566889625bc77d',1,'mhu_ns_swint_set_cfg_t::channel()'],['../group___p_o_e_g___a_p_i.html#a540e9ef986cf2ad028ef51ba52454aab',1,'poeg_cfg_t::channel()'],['../group___s_p_i___a_p_i.html#a1fdddcdf63a3270438eac756a7f4d6a4',1,'spi_callback_args_t::channel()'],['../group___s_p_i___a_p_i.html#a330c7d1944ff925e619c40ee4f796b86',1,'spi_cfg_t::channel()'],['../group___t_i_m_e_r___a_p_i.html#aa98df70bd7724ce80c42c0f4c263ef59',1,'timer_cfg_t::channel()'],['../group___u_a_r_t___a_p_i.html#acf60bc172eb7d382b406364f64b928f6',1,'uart_callback_args_t::channel()'],['../group___u_a_r_t___a_p_i.html#a8f5b1d9fc38fbb83007d904b814bf66b',1,'uart_cfg_t::channel()'],['../group___i_n_t_c___i_r_q.html#ac51a182b3e008a22c06576a5d7e83ce3',1,'intc_irq_instance_ctrl_t::channel()'],['../group___m_h_u___n_s.html#ad5bfc684776aa1244294eae3b1363f93',1,'mhu_ns_instance_ctrl_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ace404a079830f35bbd0c8338b94da292',1,'mhu_ns_swint_get_instance_ctrl_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#ad84054d463ebb6b159ff2ce6c70bd908',1,'mhu_ns_swint_set_instance_ctrl_t::channel()'],['../group___m_h_u___s.html#a3d2e07d0382637914e5a1ff73d8135ca',1,'mhu_s_instance_ctrl_t::channel()']]], + ['capture_5fic0_5fipl',['capture_ic0_ipl',['../group___c_m_t_w.html#a933229c6416b5aad6494477e36d38b47',1,'cmtw_extended_cfg_t']]], + ['capture_5fic0_5firq',['capture_ic0_irq',['../group___c_m_t_w.html#a894b3a66e1ef230347ba974268d67354',1,'cmtw_extended_cfg_t']]], + ['capture_5fic0_5fsource',['capture_ic0_source',['../group___c_m_t_w.html#a1844763704e5a3427c31651cdd536751',1,'cmtw_extended_cfg_t']]], + ['capture_5fic1_5fipl',['capture_ic1_ipl',['../group___c_m_t_w.html#aa87d2050e778f2be4cec1eedf08cad19',1,'cmtw_extended_cfg_t']]], + ['capture_5fic1_5firq',['capture_ic1_irq',['../group___c_m_t_w.html#a3a0c098d3426a1478a29e44aeca8a882',1,'cmtw_extended_cfg_t']]], + ['capture_5fic1_5fsource',['capture_ic1_source',['../group___c_m_t_w.html#ae4c3df19de12bbe9ba4c36f78dd6be78',1,'cmtw_extended_cfg_t']]], + ['carry_5fipl',['carry_ipl',['../group___r_t_c___a_p_i.html#a4d9b154cadb980b95d1153a8f1b6c7e2',1,'rtc_cfg_t']]], + ['carry_5firq',['carry_irq',['../group___r_t_c___a_p_i.html#add77caaa41f0376590df0a6312a16053',1,'rtc_cfg_t']]], + ['carry_5fisr_5ftriggered',['carry_isr_triggered',['../group___r_t_c.html#ad1e0ef1397b14d5d1571f960d536c50d',1,'rtc_instance_ctrl_t']]], + ['channel',['channel',['../group___a_d_c___a_p_i.html#a1e9351a3cb3ab91b4953b29cac73f5cc',1,'adc_callback_args_t::channel()'],['../group___c_a_n___a_p_i.html#a08080bddad2f04a8074b995da354f259',1,'can_callback_args_t::channel()'],['../group___c_a_n___a_p_i.html#a12f266c39b851a037b4d30ae5661e46b',1,'can_cfg_t::channel()'],['../group___c_r_c___a_p_i.html#a93f724f6e008179d16750067ce740f91',1,'crc_cfg_t::channel()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#acd4a73f25f8415f6ca33f31392d92fd9',1,'external_irq_callback_args_t::channel()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a1b7ba67ea2063df052d7cff54d642455',1,'external_irq_cfg_t::channel()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ab51668940cafabfefc502f06fddc9ae4',1,'i2c_master_cfg_t::channel()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a2708ed5dc2491d0551dd4a8688d919cb',1,'i2c_slave_cfg_t::channel()'],['../group___i3_c___a_p_i.html#a8065fa3e9d1d82e9ebaa60e1731d7ecc',1,'i3c_cfg_t::channel()'],['../group___m_h_u___a_p_i.html#adf5e843397d8bc69ace33912995215f6',1,'mhu_callback_args_t::channel()'],['../group___m_h_u___a_p_i.html#a699f2d0b2fc8919da61e4dfae837890f',1,'mhu_cfg_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a9613c5884f49c02ae6aa41b09a999bc0',1,'mhu_ns_swint_get_callback_args_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a28544f4e5e43a96c4bb2cb7fe4879fcd',1,'mhu_ns_swint_get_cfg_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a8f8ecb7c58b29ead3b75fc071a965175',1,'mhu_ns_swint_set_callback_args_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a911cd4a50f86d1e71e566889625bc77d',1,'mhu_ns_swint_set_cfg_t::channel()'],['../group___p_o_e_g___a_p_i.html#a540e9ef986cf2ad028ef51ba52454aab',1,'poeg_cfg_t::channel()'],['../group___r_t_c___a_p_i.html#ae9bd30168ad8a2932e542beaed85b2e1',1,'rtc_alarm_time_t::channel()'],['../group___s_p_i___a_p_i.html#a1fdddcdf63a3270438eac756a7f4d6a4',1,'spi_callback_args_t::channel()'],['../group___s_p_i___a_p_i.html#a330c7d1944ff925e619c40ee4f796b86',1,'spi_cfg_t::channel()'],['../group___t_i_m_e_r___a_p_i.html#aa98df70bd7724ce80c42c0f4c263ef59',1,'timer_cfg_t::channel()'],['../group___u_a_r_t___a_p_i.html#acf60bc172eb7d382b406364f64b928f6',1,'uart_callback_args_t::channel()'],['../group___u_a_r_t___a_p_i.html#a8f5b1d9fc38fbb83007d904b814bf66b',1,'uart_cfg_t::channel()'],['../group___d_m_a_c___b.html#a8266dbee310dbc0398cdb9d6bb1273a9',1,'dmac_b_extended_cfg_t::channel()'],['../group___i_n_t_c___i_r_q.html#ac51a182b3e008a22c06576a5d7e83ce3',1,'intc_irq_instance_ctrl_t::channel()'],['../group___i_n_t_c___n_m_i.html#affbe014faf25330d8d3f2d8692dc7ef6',1,'intc_nmi_instance_ctrl_t::channel()'],['../group___i_n_t_c___t_i_n_t.html#a443068029bc0fbf20147fd24df48f9e9',1,'intc_tint_instance_ctrl_t::channel()'],['../group___m_h_u___b___n_s.html#a32ff5d194f38c43784c59191c7883e76',1,'mhu_b_ns_instance_ctrl_t::channel()'],['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#a03917ba43d92ba64f3ceff9d2a5ed8f6',1,'mhu_b_ns_swint_get_instance_ctrl_t::channel()'],['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#ac237427a57125c109907a6f027aa7bb2',1,'mhu_b_ns_swint_set_instance_ctrl_t::channel()'],['../group___m_h_u___b___s.html#a9b896e827be8d101095eb1d8c67afc89',1,'mhu_b_s_instance_ctrl_t::channel()'],['../group___m_h_u___n_s.html#ad5bfc684776aa1244294eae3b1363f93',1,'mhu_ns_instance_ctrl_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ace404a079830f35bbd0c8338b94da292',1,'mhu_ns_swint_get_instance_ctrl_t::channel()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#ad84054d463ebb6b159ff2ce6c70bd908',1,'mhu_ns_swint_set_instance_ctrl_t::channel()'],['../group___m_h_u___s.html#a3d2e07d0382637914e5a1ff73d8135ca',1,'mhu_s_instance_ctrl_t::channel()']]], + ['channel_5fmask',['channel_mask',['../group___a_d_c___a_p_i.html#a50ca40e036fb0058265aca9e500911c0',1,'adc_callback_args_t::channel_mask()'],['../group___m_t_u3.html#a5810e1f6e5c5f08974d4c0e119bc6d6f',1,'mtu3_instance_ctrl_t::channel_mask()']]], + ['channel_5fscheduling',['channel_scheduling',['../group___d_m_a_c___b.html#a33a766bacb611723bb0bdfec3758e1f4',1,'dmac_b_extended_cfg_t']]], ['checksum',['checksum',['../group___r_m___h_s400_x___a_p_i.html#ae818086f1405c4519041c442fa5a0489',1,'rm_hs400x_raw_data_t']]], - ['cks_5fvalue',['cks_value',['../group___r_i_i_c___m_a_s_t_e_r.html#a213bb6cc78cf57022dbc0b0b2087c0b4',1,'iic_master_clock_settings_t']]], - ['clear_5fdata',['clear_data',['../group___r_m___o_b1203___a_p_i.html#a08e4bed45dd5f045f149e7429e2bb8b5',1,'rm_ob1203_light_data_t']]], - ['clear_5fsource',['clear_source',['../group___g_p_t.html#ad5614740946c3c06e1633d369d08f5c3',1,'gpt_extended_cfg_t']]], + ['cks_5fvalue',['cks_value',['../group___r_i_i_c___m_a_s_t_e_r.html#a213bb6cc78cf57022dbc0b0b2087c0b4',1,'iic_master_clock_settings_t::cks_value()'],['../group___r_i_i_c___s_l_a_v_e.html#ae84939949fde82ff8600981d24e69d0f',1,'iic_slave_clock_settings_t::cks_value()']]], + ['clear_5fsource',['clear_source',['../group___c_m_t_w.html#a54ef905d95c6fb3e06eb0eb04e8856d3',1,'cmtw_extended_cfg_t::clear_source()'],['../group___g_p_t.html#ad5614740946c3c06e1633d369d08f5c3',1,'gpt_extended_cfg_t::clear_source()']]], + ['clearing',['clearing',['../group___a_d_c___e.html#aec17abb4a74dbf2f86694f27b5b96cd9',1,'adc_e_extended_cfg_t']]], + ['clk_5fdivisor_5fvalue',['clk_divisor_value',['../group___s_c_i___b___i2_c.html#a3d3a9e1e75d107d851de3e84c4179161',1,'sci_b_i2c_clock_settings_t']]], + ['clk_5fedge',['clk_edge',['../group___m_t_u3.html#a032a2421eaa21dbc376ce103e7757068',1,'mtu3_extended_cfg_t']]], ['clk_5fphase',['clk_phase',['../group___s_p_i___a_p_i.html#ae716333870904cc1af1425fae1a8c1e4',1,'spi_cfg_t']]], ['clk_5fpolarity',['clk_polarity',['../group___s_p_i___a_p_i.html#ac13df7ba09c4fdff952d8ead0d1b7645',1,'spi_cfg_t']]], - ['clock',['clock',['../group___s_c_i_f___u_a_r_t.html#aa593c3c46c8e09dc0d1167b4a52797ee',1,'scif_uart_extended_cfg_t']]], + ['clock',['clock',['../group___s_c_i___b___u_a_r_t.html#a498f325e7dd1865b3e14c1af392ef4c8',1,'sci_b_uart_extended_cfg_t::clock()'],['../group___s_c_i_f___u_a_r_t.html#aa593c3c46c8e09dc0d1167b4a52797ee',1,'scif_uart_extended_cfg_t::clock()']]], + ['clock_5fbypass_5fmode',['clock_bypass_mode',['../group___r_t_c.html#af6b87d21311028e2eb25ce5f2b90f73e',1,'rtc_extended_cfg_t']]], + ['clock_5fdata_5fturnaround',['clock_data_turnaround',['../group___i3_c___b.html#ae51118e339ff8e535dee69acbd4c2c04',1,'i3c_b_slave_command_response_info_t']]], + ['clock_5fdiv',['clock_div',['../group___p_d_m.html#a73d4ca013e3c3d061bc3c0c693e12ffa',1,'pdm_extended_cfg_t']]], + ['clock_5fdivision',['clock_division',['../group___w_d_t___a_p_i.html#aa7829044aff936488b3e21bbd127ab76',1,'wdt_cfg_t']]], ['clock_5ffrequency',['clock_frequency',['../group___t_i_m_e_r___a_p_i.html#a85205f345201aaf1d25b5ee1257f8345',1,'timer_info_t']]], - ['clock_5fsettings',['clock_settings',['../group___r_i_i_c___m_a_s_t_e_r.html#aa0e87db942a63d7eb72077bf75f34d87',1,'riic_master_extended_cfg_t']]], - ['close',['close',['../group___c_a_n___a_p_i.html#a32ec8d31d80a709bae881f2e28d36d6c',1,'can_api_t::close()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ad0c4d6063af093a3a19a63924aae61ac',1,'external_irq_api_t::close()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a7d093cf28da6a99e56dbeb7b82ad3f5f',1,'i2c_master_api_t::close()'],['../group___i_o_p_o_r_t___a_p_i.html#a81b125b5439058c024dbac0f57405f69',1,'ioport_api_t::close()'],['../group___m_h_u___a_p_i.html#a435b9195d22768cde4eda0f37246a84f',1,'mhu_api_t::close()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#af92e9fdbc56bd0c806ef58a4b69e86db',1,'mhu_ns_swint_get_api_t::close()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a572d5e4e24cf7fffbcf39a137f4fd176',1,'mhu_ns_swint_set_api_t::close()'],['../group___p_o_e_g___a_p_i.html#a1576cf3362e4341bf14ec8ba9592abc4',1,'poeg_api_t::close()'],['../group___s_p_i___a_p_i.html#aa23ca0243886b64c90aa17744d72aee5',1,'spi_api_t::close()'],['../group___t_i_m_e_r___a_p_i.html#a9e8b8140010a28082aedd758390fac97',1,'timer_api_t::close()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ade5973e7a8e994f9146e0db84bee8bf4',1,'transfer_api_t::close()'],['../group___u_a_r_t___a_p_i.html#a4e7e47514702ff0e3515280590dd9659',1,'uart_api_t::close()'],['../group___r_m___c_o_m_m_s___a_p_i.html#abd464feb634b589687a0b8f55d0a078a',1,'rm_comms_api_t::close()'],['../group___r_m___h_s300_x___a_p_i.html#a6b1439ba4f4605e2194d7c4dfc0ce1f8',1,'rm_hs300x_api_t::close()'],['../group___r_m___h_s400_x___a_p_i.html#a2928df5b91141ebb9aff254547966843',1,'rm_hs400x_api_t::close()'],['../group___r_m___o_b1203___a_p_i.html#afb392158117d2cc57e8c0ec5042b1361',1,'rm_ob1203_api_t::close()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a37597974b2ae3e5ba15c57fce44b2c83',1,'rm_zmod4xxx_api_t::close()']]], - ['communication_5ffinished',['communication_finished',['../group___r_m___h_s300_x.html#a74a8a836f1fe14defcd836a93734b887',1,'rm_hs300x_programmnig_mode_params_t::communication_finished()'],['../group___r_m___h_s400_x.html#a54d7d67e8c118457e17bdd80acb565c6',1,'rm_hs400x_init_process_params_t::communication_finished()'],['../group___r_m___o_b1203.html#aea4edefdaa00495d377261f39c36b33f',1,'rm_ob1203_init_process_params_t::communication_finished()'],['../group___r_m___z_m_o_d4_x_x_x.html#ae7072ae56668c282a2a667ad097a5667',1,'rm_zmod4xxx_init_process_params_t::communication_finished()']]], + ['clock_5ffrequency_5fhz',['clock_frequency_hz',['../group___w_d_t___a_p_i.html#a4afd304a6d5116ff17d004a9db0b68de',1,'wdt_timeout_values_t']]], + ['clock_5fsettings',['clock_settings',['../group___r_i_i_c___m_a_s_t_e_r.html#aa0e87db942a63d7eb72077bf75f34d87',1,'riic_master_extended_cfg_t::clock_settings()'],['../group___r_i_i_c___s_l_a_v_e.html#aaf746e05cd94560cf30860aa9df619cf',1,'riic_slave_extended_cfg_t::clock_settings()'],['../group___s_c_i___b___i2_c.html#a076a2fea614be4cba22bc7e9a9e8f2bc',1,'sci_b_i2c_extended_cfg_t::clock_settings()']]], + ['clock_5fsource',['clock_source',['../group___r_t_c___a_p_i.html#aba0edee87eb628db01fb1fa070a0c144',1,'rtc_info_t::clock_source()'],['../group___r_t_c___a_p_i.html#a4d6b36efa20644739ef4a2697a745660',1,'rtc_cfg_t::clock_source()'],['../group___s_c_i___b___i2_c.html#abb1e023e83c78d6f4b07b07e172acfe2',1,'sci_b_i2c_clock_settings_t::clock_source()'],['../group___s_p_i___b.html#af6ddf830c6529dbf66c75a231242faa1',1,'spi_b_extended_cfg_t::clock_source()']]], + ['clock_5fstalling',['clock_stalling',['../group___i3_c___b.html#a7e9faafe29396be004f769cd35b81563',1,'i3c_b_bitrate_settings_t']]], + ['clock_5fstalling_5ftime',['clock_stalling_time',['../group___i3_c___b.html#a7a0a2568821deca8dde989c04e3bf3c3',1,'i3c_b_clock_stalling_t']]], + ['clock_5fstretching_5fenable',['clock_stretching_enable',['../group___i2_c___s_l_a_v_e___a_p_i.html#aaf45b7d102061452a09f5db26bdd1148',1,'i2c_slave_cfg_t']]], + ['clocksourceset',['clockSourceSet',['../group___r_t_c___a_p_i.html#a5119270ac476dc4c0aa6869df0627de9',1,'rtc_api_t']]], + ['close',['close',['../group___a_d_c___a_p_i.html#a83cce8ff1af572c11ef31442f2679124',1,'adc_api_t::close()'],['../group___c_a_n___a_p_i.html#a32ec8d31d80a709bae881f2e28d36d6c',1,'can_api_t::close()'],['../group___c_r_c___a_p_i.html#a7783105d71a3cf701d7928cba9585e6d',1,'crc_api_t::close()'],['../group___e_l_c___a_p_i.html#a4ca08e8e0db93700e8e4f651f4492977',1,'elc_api_t::close()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ad0c4d6063af093a3a19a63924aae61ac',1,'external_irq_api_t::close()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a7d093cf28da6a99e56dbeb7b82ad3f5f',1,'i2c_master_api_t::close()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a23919938fff411b2275548e6c0dc0c7a',1,'i2c_slave_api_t::close()'],['../group___i3_c___a_p_i.html#aee21d22f092a6c93976b94635642e33f',1,'i3c_api_t::close()'],['../group___i_o_p_o_r_t___a_p_i.html#a81b125b5439058c024dbac0f57405f69',1,'ioport_api_t::close()'],['../group___m_h_u___a_p_i.html#a435b9195d22768cde4eda0f37246a84f',1,'mhu_api_t::close()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#af92e9fdbc56bd0c806ef58a4b69e86db',1,'mhu_ns_swint_get_api_t::close()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a572d5e4e24cf7fffbcf39a137f4fd176',1,'mhu_ns_swint_set_api_t::close()'],['../group___p_d_m___a_p_i.html#a37bb473e04c42ef4dc01e03f6c52ce75',1,'pdm_api_t::close()'],['../group___p_o_e_g___a_p_i.html#a1576cf3362e4341bf14ec8ba9592abc4',1,'poeg_api_t::close()'],['../group___r_t_c___a_p_i.html#af5b8ce71ff3d65a0f9a556151e6d3b5c',1,'rtc_api_t::close()'],['../group___s_p_i___a_p_i.html#aa23ca0243886b64c90aa17744d72aee5',1,'spi_api_t::close()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#a16810f14e3fff6ed04f36eca44353785',1,'spi_flash_api_t::close()'],['../group___t_i_m_e_r___a_p_i.html#a9e8b8140010a28082aedd758390fac97',1,'timer_api_t::close()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ade5973e7a8e994f9146e0db84bee8bf4',1,'transfer_api_t::close()'],['../group___u_a_r_t___a_p_i.html#a4e7e47514702ff0e3515280590dd9659',1,'uart_api_t::close()'],['../group___r_m___c_o_m_m_s___a_p_i.html#abd464feb634b589687a0b8f55d0a078a',1,'rm_comms_api_t::close()'],['../group___r_m___h_s300_x___a_p_i.html#a6b1439ba4f4605e2194d7c4dfc0ce1f8',1,'rm_hs300x_api_t::close()'],['../group___r_m___h_s400_x___a_p_i.html#a2928df5b91141ebb9aff254547966843',1,'rm_hs400x_api_t::close()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a37597974b2ae3e5ba15c57fce44b2c83',1,'rm_zmod4xxx_api_t::close()']]], + ['command',['command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a27f37ac5d1f031fd33f3b2ff5b914751',1,'spi_flash_erase_command_t::command()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#ab20fca5fa35e25becd87abc7539a4246',1,'spi_flash_direct_transfer_t::command()']]], + ['command_5fcode',['command_code',['../group___i3_c___a_p_i.html#a1319595692f1d7d2035df8f8fd63445a',1,'i3c_command_descriptor_t::command_code()'],['../group___i3_c___a_p_i.html#aa4990a726981eee5fc979850314eeb04',1,'i3c_callback_args_t::command_code()']]], + ['command_5flength',['command_length',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a521505cf1d98e638aef0e72ca5eb6463',1,'spi_flash_direct_transfer_t']]], + ['commandsend',['commandSend',['../group___i3_c___a_p_i.html#a840484cae7a68cf6161ec707c33c0a5c',1,'i3c_api_t']]], + ['communication_5ffinished',['communication_finished',['../group___r_m___h_s300_x.html#a74a8a836f1fe14defcd836a93734b887',1,'rm_hs300x_programmnig_mode_params_t::communication_finished()'],['../group___r_m___h_s400_x.html#a54d7d67e8c118457e17bdd80acb565c6',1,'rm_hs400x_init_process_params_t::communication_finished()'],['../group___r_m___z_m_o_d4_x_x_x.html#ae7072ae56668c282a2a667ad097a5667',1,'rm_zmod4xxx_init_process_params_t::communication_finished()']]], ['communicationabort',['communicationAbort',['../group___u_a_r_t___a_p_i.html#af4aeab25d6aa83e0d47307043c053d11',1,'uart_api_t']]], - ['comp_5fdata',['comp_data',['../group___r_m___o_b1203___a_p_i.html#a0596b99630a0a42868fd6832e2123f60',1,'rm_ob1203_light_data_t']]], + ['compare_5fb_5fchannel',['compare_b_channel',['../group___a_d_c___e.html#aa55fa691b0ddcda47c101f93e1ef7a91',1,'adc_e_window_cfg_t']]], + ['compare_5fb_5fmode',['compare_b_mode',['../group___a_d_c___e.html#aa3bddc5993e3dda400ba4204565e30c9',1,'adc_e_window_cfg_t']]], + ['compare_5fb_5fref_5fhigh',['compare_b_ref_high',['../group___a_d_c___e.html#a042144a8278f131dc71decdf379d953f',1,'adc_e_window_cfg_t']]], + ['compare_5fb_5fref_5flow',['compare_b_ref_low',['../group___a_d_c___e.html#ae8ee1fc70ecc64d4dafcc3498e0c5458',1,'adc_e_window_cfg_t']]], + ['compare_5fcfg',['compare_cfg',['../group___a_d_c___e.html#a25be89b9a53299121d6cc6e6c1572a01',1,'adc_e_window_cfg_t']]], + ['compare_5fipl',['compare_ipl',['../group___t_s_u___b.html#a06b6e82fcee558ee4548f37d8620a1f4',1,'tsu_b_extended_cfg_t']]], + ['compare_5firq',['compare_irq',['../group___t_s_u___b.html#a3fc59fe6297b3d440cb73510eaf7f21b',1,'tsu_b_extended_cfg_t']]], + ['compare_5fmask',['compare_mask',['../group___a_d_c___e.html#ad1de0a6834ea185e7db99c38886c4fc6',1,'adc_e_window_cfg_t']]], + ['compare_5fmode_5fmask',['compare_mode_mask',['../group___a_d_c___e.html#a4356be4b57def3aafa8b6fe95866dd1d',1,'adc_e_window_cfg_t']]], + ['compare_5foc0_5fipl',['compare_oc0_ipl',['../group___c_m_t_w.html#a33d09d1a1606e992bc2c088911604059',1,'cmtw_extended_cfg_t']]], + ['compare_5foc0_5firq',['compare_oc0_irq',['../group___c_m_t_w.html#a79ee13b79b31f931ffe1f9d73aa6eb0e',1,'cmtw_extended_cfg_t']]], + ['compare_5foc1_5fipl',['compare_oc1_ipl',['../group___c_m_t_w.html#a320a41da7945c9c63d38b84e665c276a',1,'cmtw_extended_cfg_t']]], + ['compare_5foc1_5firq',['compare_oc1_irq',['../group___c_m_t_w.html#aab0750f8c5088df9c26d7e827d08db67',1,'cmtw_extended_cfg_t']]], + ['compare_5fref_5fhigh',['compare_ref_high',['../group___a_d_c___e.html#af918f90028f93af577340c7310bb17b1',1,'adc_e_window_cfg_t::compare_ref_high()'],['../group___t_s_u___b.html#a22491b611c1958bb5405b05b2a7a3feb',1,'tsu_b_extended_cfg_t::compare_ref_high()']]], + ['compare_5fref_5flow',['compare_ref_low',['../group___a_d_c___e.html#a97b0e510305931084fd702330874f861',1,'adc_e_window_cfg_t::compare_ref_low()'],['../group___t_s_u___b.html#a1fce1fbc4e5f916220040a4146e27c49',1,'tsu_b_extended_cfg_t::compare_ref_low()']]], + ['comparison_5fmode',['comparison_mode',['../group___t_s_u___b.html#a3906e15e289a42557f63f5514c81f8d1',1,'tsu_b_extended_cfg_t']]], + ['compensation_5ffilter_5fcoefficient_5fh',['compensation_filter_coefficient_h',['../group___p_d_m.html#aecb431688082d1f39d7790e087fa4cdc',1,'pdm_extended_cfg_t']]], + ['compensation_5ffilter_5fshift',['compensation_filter_shift',['../group___p_d_m.html#adf0d5ca09d9fc77bca06739dc943d9a2',1,'pdm_extended_cfg_t']]], ['config',['config',['../structzmod4xxx__dev__t.html#ada348193f23257b4e20759717426a7b4',1,'zmod4xxx_dev_t']]], + ['continuous_5fsetting',['continuous_setting',['../group___d_m_a_c___b.html#aa811f82a3883a3b8ea7af93d5964cc4e',1,'dmac_b_extended_cfg_t']]], ['control_5fsignal',['control_signal',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aa95d3545e0fcfe3070532d2b1e4923b0',1,'rm_zmod4xxx_odor_data_t::control_signal()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abe7c7a383889bcc45958fb2f24afe497',1,'rm_zmod4xxx_raq_data_t::control_signal()']]], + ['count',['count',['../group___s_p_i___b.html#a992f7cfe75bd98e8fe2c9120d0c7b26b',1,'spi_b_instance_ctrl_t']]], ['count_5fdirection',['count_direction',['../group___t_i_m_e_r___a_p_i.html#af333f19bba6c3962a91fe3beb90482a8',1,'timer_info_t']]], ['count_5fdown_5fsource',['count_down_source',['../group___g_p_t.html#a2ecf880963c441f20c3c8a2ac7a854ea',1,'gpt_extended_cfg_t']]], ['count_5fup_5fsource',['count_up_source',['../group___g_p_t.html#ae96b1fce9515b779078f947aa3885618',1,'gpt_extended_cfg_t']]], ['counter',['counter',['../group___t_i_m_e_r___a_p_i.html#ab3892976d7757fae081e19023e155006',1,'timer_status_t']]], + ['counter_5fsize',['counter_size',['../group___c_m_t_w.html#a7c6f42e3fb0d459fa5ca352450144dd1',1,'cmtw_extended_cfg_t']]], + ['counterget',['counterGet',['../group___w_d_t___a_p_i.html#a724c02d7265d5eaa846cf97a3556f5d6',1,'wdt_api_t']]], + ['crcresultget',['crcResultGet',['../group___c_r_c___a_p_i.html#a0c748a9f3b2eb21585c97e3493f285ac',1,'crc_api_t']]], + ['current_5fcommand_5fcode',['current_command_code',['../group___i3_c___b.html#a48dcc530b11970be9d3f2fae9dd5dcdc',1,'i3c_b_instance_ctrl_t']]], ['cycle_5fend_5fipl',['cycle_end_ipl',['../group___t_i_m_e_r___a_p_i.html#a07302c8caf4d9b811e7350a96615d98d',1,'timer_cfg_t']]], - ['cycle_5fend_5firq',['cycle_end_irq',['../group___t_i_m_e_r___a_p_i.html#a37fb0f08b16d9e2408909c4f2cc7acbb',1,'timer_cfg_t']]] + ['cycle_5fend_5firq',['cycle_end_irq',['../group___t_i_m_e_r___a_p_i.html#a37fb0f08b16d9e2408909c4f2cc7acbb',1,'timer_cfg_t']]], + ['cycles_5fvalue',['cycles_value',['../group___s_c_i___b___i2_c.html#a2f29638add1a4e0525c842c79b2806f5',1,'sci_b_i2c_clock_settings_t']]] ]; diff --git a/search/variables_3.js b/search/variables_3.js index 55b5c65..1dcdc35 100644 --- a/search/variables_3.js +++ b/search/variables_3.js @@ -1,20 +1,46 @@ var searchData= [ - ['data',['data',['../group___c_a_n___a_p_i.html#ad70086e98bfe0871e3f73d1f253138db',1,'can_frame_t::data()'],['../group___u_a_r_t___a_p_i.html#a828d44762a5e4d11aead4d811a1c5c70',1,'uart_callback_args_t::data()']]], + ['dat_5fipl',['dat_ipl',['../group___p_d_m___a_p_i.html#a298ee7b058b5cddae6a30ac90a093818',1,'pdm_cfg_t']]], + ['dat_5firq',['dat_irq',['../group___p_d_m___a_p_i.html#a5a22105924178bfeb3d5d4e21e6cb5a4',1,'pdm_cfg_t']]], + ['data',['data',['../group___c_a_n___a_p_i.html#ad70086e98bfe0871e3f73d1f253138db',1,'can_frame_t::data()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#a52ae9ed9880e98f7a02107c2b31b673b',1,'spi_flash_direct_transfer_t::data()'],['../group___u_a_r_t___a_p_i.html#a828d44762a5e4d11aead4d811a1c5c70',1,'uart_callback_args_t::data()']]], ['data_5fbits',['data_bits',['../group___u_a_r_t___a_p_i.html#adb701292c23e393a8152e57da1cc6cb3',1,'uart_cfg_t']]], + ['data_5flength',['data_length',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a5e3c48eb88187944722f745231f955f3',1,'spi_flash_direct_transfer_t']]], ['data_5flength_5fcode',['data_length_code',['../group___c_a_n___a_p_i.html#af58b9f3fe19ed69e0a635cd271c68404',1,'can_frame_t']]], ['datacalculate',['dataCalculate',['../group___r_m___h_s300_x___a_p_i.html#a1b8c3e526c2265e4bebf5aaf2b1a29fc',1,'rm_hs300x_api_t::dataCalculate()'],['../group___r_m___h_s400_x___a_p_i.html#a16b20fc56880ef23d5b8a4b2f169c50e',1,'rm_hs400x_api_t::dataCalculate()']]], + ['dayofweek_5fmatch',['dayofweek_match',['../group___r_t_c___a_p_i.html#a7c550dd3aaa641771433b71675a41acf',1,'rtc_alarm_time_t']]], + ['dcr',['dcr',['../group___i3_c___a_p_i.html#af7ddfcf173feb4b04c3cd90189cd9941',1,'i3c_slave_info_t']]], + ['de_5fcontrol_5fpin',['de_control_pin',['../group___s_c_i_f___u_a_r_t.html#a2e764fad5f11c412720a531a8e1b6815',1,'sci_uart_rs485_setting_t']]], ['dead_5ftime_5fcount_5fdown',['dead_time_count_down',['../group___g_p_t.html#aafd7df5d2639958e4602b2f05b877707',1,'gpt_extended_pwm_cfg_t']]], ['dead_5ftime_5fcount_5fup',['dead_time_count_up',['../group___g_p_t.html#ad6a0d3919d4334ec367619aecd96b0f0',1,'gpt_extended_pwm_cfg_t']]], + ['dead_5ftime_5fipl',['dead_time_ipl',['../group___g_p_t.html#af0ca97f849a3dbbee00c59d75acb4bb0',1,'gpt_extended_cfg_t']]], + ['dead_5ftime_5firq',['dead_time_irq',['../group___g_p_t.html#afbc788de7ed38b81ebb727b2c05d0525',1,'gpt_extended_cfg_t']]], ['decimal_5fpart',['decimal_part',['../group___r_m___h_s300_x___a_p_i.html#aae2bbfa1e2723b7547a49fdfdc8125a2',1,'rm_hs300x_sensor_data_t::decimal_part()'],['../group___r_m___h_s400_x___a_p_i.html#adb5595b01588645a3e9a9cfd1edb074a',1,'rm_hs400x_sensor_data_t::decimal_part()']]], ['delay_5fcompensation',['delay_compensation',['../group___c_a_n_f_d.html#a3b38e8d28731a86eb521db8a5c5ae85e',1,'canfd_extended_cfg_t']]], ['delay_5fms',['delay_ms',['../group___r_m___z_m_o_d4_x_x_x.html#a747d96b26c6228fd7505c18b11eb93cb',1,'rm_zmod4xxx_init_process_params_t::delay_ms()'],['../structzmod4xxx__dev__t.html#ad6ee7a7b462535fd5d1b32354fd0dd16',1,'zmod4xxx_dev_t::delay_ms()']]], + ['dest_5faddr_5fmode',['dest_addr_mode',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a9e39c449b5d1f8a957b833833c7da06b',1,'transfer_info_t']]], + ['dest_5fsize',['dest_size',['../group___d_m_a_c___b.html#aa22d8061d429688b3aec06dbc938863f',1,'dmac_b_extended_info_t::dest_size()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a023152eeec3dda49c43b0a5576b07881',1,'transfer_info_t::dest_size()']]], ['dev_5ferr_5fcheck',['dev_err_check',['../group___r_m___z_m_o_d4_x_x_x.html#a23c402c7d22a24110fcf3c5fbbf36c48',1,'rm_zmod4xxx_instance_ctrl_t']]], + ['device_5fbitrate_5fmode',['device_bitrate_mode',['../group___i3_c___b.html#a359e6208b0bd04aab75f6b876d8bead3',1,'i3c_b_instance_ctrl_t']]], + ['device_5findex',['device_index',['../group___i3_c___b.html#a5ea03dcc03a3fa25df7a630635c9880f',1,'i3c_b_instance_ctrl_t']]], + ['device_5fprotocol',['device_protocol',['../group___i3_c___a_p_i.html#a24de9f1da7fb32c695bd512994144a0b',1,'i3c_device_table_cfg_t']]], + ['device_5ftype',['device_type',['../group___i3_c___a_p_i.html#a177e6729548170be6b6ddbe444fc6716',1,'i3c_cfg_t']]], + ['devicecfgset',['deviceCfgSet',['../group___i3_c___a_p_i.html#ad1a5e82be324c969d8397e687eb66c08',1,'i3c_api_t']]], ['deviceerrorcheck',['deviceErrorCheck',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a032f14a6414a147c3e05a28064d97069',1,'rm_zmod4xxx_api_t']]], - ['deviceinterruptcfgset',['deviceInterruptCfgSet',['../group___r_m___o_b1203___a_p_i.html#a32be3218edf3a0a22e3fd7403ae8d5e7',1,'rm_ob1203_api_t']]], - ['devicestatusget',['deviceStatusGet',['../group___r_m___o_b1203___a_p_i.html#abd612814bfe809e1435fab3ba2c6b2e2',1,'rm_ob1203_api_t']]], - ['disable',['disable',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a6ecb5664f627d1b731a4fd0a74e5f2bc',1,'external_irq_api_t::disable()'],['../group___t_i_m_e_r___a_p_i.html#a8b69fad02aee5d83b941ed02fca18aca',1,'timer_api_t::disable()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a3188207ba386da0ec85946e134b4327a',1,'transfer_api_t::disable()']]], - ['driver_5fenable_5fpin',['driver_enable_pin',['../group___s_c_i_f___u_a_r_t.html#aed0a20c432a538f3c20a83c50e76be3b',1,'scif_uart_extended_cfg_t']]], + ['deviceselect',['deviceSelect',['../group___i3_c___a_p_i.html#a1e24e768130b9ea12f10743ff3143fa7',1,'i3c_api_t']]], + ['digital_5ffilter_5fstages',['digital_filter_stages',['../group___r_i_i_c___s_l_a_v_e.html#a8fbc88f3fad23597ec529cccaf5d5bc1',1,'iic_slave_clock_settings_t']]], + ['direction',['direction',['../group___i_o_p_o_r_t.html#a432e6c1358ecd19696f9bab115aaa4cd',1,'ioport_event_single_t']]], + ['directread',['directRead',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a3366fdcb333cb6950ff38bb35618c401',1,'spi_flash_api_t']]], + ['directtransfer',['directTransfer',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a21da248768dd75281ea7b29f2d243afd',1,'spi_flash_api_t']]], + ['directwrite',['directWrite',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a31a1d575f3d8876154d4e217caebf110',1,'spi_flash_api_t']]], + ['disable',['disable',['../group___e_l_c___a_p_i.html#a91eea8824e8ea3d204860d16abb8d78a',1,'elc_api_t::disable()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a6ecb5664f627d1b731a4fd0a74e5f2bc',1,'external_irq_api_t::disable()'],['../group___t_i_m_e_r___a_p_i.html#a8b69fad02aee5d83b941ed02fca18aca',1,'timer_api_t::disable()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a3188207ba386da0ec85946e134b4327a',1,'transfer_api_t::disable()']]], + ['dmac_5fint_5fipl',['dmac_int_ipl',['../group___d_m_a_c___b.html#ad9ca631bfb2e8c33238e11cc75b0ebc3',1,'dmac_b_extended_cfg_t']]], + ['dmac_5fint_5firq',['dmac_int_irq',['../group___d_m_a_c___b.html#ae98f5d3627d5c804de9b552f29ce5783',1,'dmac_b_extended_cfg_t']]], + ['dmac_5fmode',['dmac_mode',['../group___d_m_a_c___b.html#a6b46edce846a6cb215c5f1c61f38fb23',1,'dmac_b_extended_cfg_t']]], + ['double_5ftrigger_5fmode',['double_trigger_mode',['../group___a_d_c___e.html#a9fb46ca6ae270967f11502395de49e07',1,'adc_e_extended_cfg_t']]], + ['dummy_5fclocks',['dummy_clocks',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a6b2d213cfd3ca4a9a0f1c3dfd11414ec',1,'spi_flash_cfg_t']]], + ['dummy_5fcycles',['dummy_cycles',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ad4a653cf90fd97dc9d0a5f8fce3c3795',1,'spi_flash_direct_transfer_t']]], ['duty_5fcycle_5fcounts',['duty_cycle_counts',['../group___t_i_m_e_r___a_p_i.html#a9da65b46c59a0543ec977f634bb0265d',1,'timer_cfg_t']]], - ['dutycycleset',['dutyCycleSet',['../group___t_i_m_e_r___a_p_i.html#a819ed0740ca426ace0d6b67e16c6ddfc',1,'timer_api_t']]] + ['dutycycleset',['dutyCycleSet',['../group___t_i_m_e_r___a_p_i.html#a819ed0740ca426ace0d6b67e16c6ddfc',1,'timer_api_t']]], + ['dynamic_5faddress',['dynamic_address',['../group___i3_c___a_p_i.html#a683afb29ae34336a1817776683062d2d',1,'i3c_device_table_cfg_t::dynamic_address()'],['../group___i3_c___a_p_i.html#acf39141678838e40af4bee849660f210',1,'i3c_device_cfg_t::dynamic_address()'],['../group___i3_c___a_p_i.html#a3b19cf7a70e74781374af0efaddc3c87',1,'i3c_callback_args_t::dynamic_address()']]], + ['dynamicaddressassignmentstart',['dynamicAddressAssignmentStart',['../group___i3_c___a_p_i.html#ae57d3fa9fa4a966a5c8cac38b0ea0660',1,'i3c_api_t']]] ]; diff --git a/search/variables_4.js b/search/variables_4.js index 0bc20ea..032b92e 100644 --- a/search/variables_4.js +++ b/search/variables_4.js @@ -1,14 +1,31 @@ var searchData= [ ['eco2',['eco2',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a7f440ae56f5434038f3268db25554db6',1,'rm_zmod4xxx_iaq_1st_data_t::eco2()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6457c0270c680c86d593bbd286c425dc',1,'rm_zmod4xxx_iaq_2nd_data_t::eco2()']]], - ['enable',['enable',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a9cb81e4b2d313458c747cdc401179a66',1,'external_irq_api_t::enable()'],['../group___t_i_m_e_r___a_p_i.html#a13cb48d1657a9eda3380c111ba33aa2a',1,'timer_api_t::enable()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a7fd4d96709c77a309492d13fd43fd048',1,'transfer_api_t::enable()']]], + ['edge_5fdetection',['edge_detection',['../group___i_o_p_o_r_t.html#a3a19c2ef20ea13bdcd4d9fb3ee692cc8',1,'ioport_event_single_t::edge_detection()'],['../group___i_o_p_o_r_t.html#a58889324d1f0207e5a5056e4e491325a',1,'ioport_event_group_input_t::edge_detection()']]], + ['eei_5fipl',['eei_ipl',['../group___i3_c___b.html#afe8dc047bbc3484b976553478e8f1f53',1,'i3c_b_extended_cfg_t']]], + ['elc_5fevent',['elc_event',['../group___a_d_c___a_p_i.html#a06d242e573821f38b3a7543dd9eb5548',1,'adc_info_t']]], + ['elc_5fperipheral',['elc_peripheral',['../group___a_d_c___a_p_i.html#a391a11955d9d3b8d84ca87bbfe72df86',1,'adc_info_t']]], + ['enable',['enable',['../group___e_l_c___a_p_i.html#a5ec2e92543d9a74fd4e33b20b9782ef5',1,'elc_api_t::enable()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a9cb81e4b2d313458c747cdc401179a66',1,'external_irq_api_t::enable()'],['../group___i3_c___a_p_i.html#adbfee07190ec081f9dc3820bba928cef',1,'i3c_api_t::enable()'],['../group___t_i_m_e_r___a_p_i.html#a13cb48d1657a9eda3380c111ba33aa2a',1,'timer_api_t::enable()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a7fd4d96709c77a309492d13fd43fd048',1,'transfer_api_t::enable()'],['../group___s_c_i___b___u_a_r_t.html#a99de4af724a14ceba347cb317614cc91',1,'sci_b_uart_rs485_setting_t::enable()'],['../group___s_c_i___b___u_a_r_t.html#a5a3eac41864f40971ab15613ab7741df',1,'sci_b_uart_half_data_setting_t::enable()'],['../group___s_c_i_f___u_a_r_t.html#a7ecf6bb47dcdafcd7e569695d0be405b',1,'sci_uart_rs485_setting_t::enable()']]], ['enter',['enter',['../group___r_m___h_s300_x.html#a61d14cc82dc42f81c05cf010858ef146',1,'rm_hs300x_programmnig_mode_params_t']]], ['epa_5faqi',['epa_aqi',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aeb49c4d0925d19ef93f1b7836acbcaf1',1,'rm_zmod4xxx_oaq_2nd_data_t']]], - ['eri_5fipl',['eri_ipl',['../group___s_p_i___a_p_i.html#afc54b2134c7201c559d31d4a9d1ab724',1,'spi_cfg_t::eri_ipl()'],['../group___u_a_r_t___a_p_i.html#a3cc235c856acbf3100cc0557a2953510',1,'uart_cfg_t::eri_ipl()']]], - ['eri_5firq',['eri_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a9b5480f5b23ea41b38671f1b7cab8540',1,'i2c_master_cfg_t::eri_irq()'],['../group___s_p_i___a_p_i.html#a6a253b9d5669bb4be218a6143db2df13',1,'spi_cfg_t::eri_irq()'],['../group___u_a_r_t___a_p_i.html#a6442033274bd3402ab162947f5a22784',1,'uart_cfg_t::eri_irq()']]], - ['error',['error',['../group___c_a_n___a_p_i.html#a39e131d3f8e8d6d8a14e9f248c1ac1e1',1,'can_callback_args_t']]], + ['erase',['erase',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a0f241a48dd8f386e19a6e0fe44e8a2d9',1,'spi_flash_api_t']]], + ['erase_5fcommand_5flist_5flength',['erase_command_list_length',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a24bbe669d6ca4a02fe6d806d321a044c',1,'spi_flash_cfg_t']]], + ['eri_5fipl',['eri_ipl',['../group___i2_c___s_l_a_v_e___a_p_i.html#a4fa45eb7423e7b93f78839b2bb612776',1,'i2c_slave_cfg_t::eri_ipl()'],['../group___s_p_i___a_p_i.html#afc54b2134c7201c559d31d4a9d1ab724',1,'spi_cfg_t::eri_ipl()'],['../group___u_a_r_t___a_p_i.html#a3cc235c856acbf3100cc0557a2953510',1,'uart_cfg_t::eri_ipl()']]], + ['eri_5firq',['eri_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a9b5480f5b23ea41b38671f1b7cab8540',1,'i2c_master_cfg_t::eri_irq()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a923331b5e9e6564b4246e559d66bc3c9',1,'i2c_slave_cfg_t::eri_irq()'],['../group___s_p_i___a_p_i.html#a6a253b9d5669bb4be218a6143db2df13',1,'spi_cfg_t::eri_irq()'],['../group___u_a_r_t___a_p_i.html#a6442033274bd3402ab162947f5a22784',1,'uart_cfg_t::eri_irq()']]], + ['err_5fipl',['err_ipl',['../group___p_d_m___a_p_i.html#a5f32ed867759c9d830f46a64a453d9c0',1,'pdm_cfg_t']]], + ['err_5firq',['err_irq',['../group___p_d_m___a_p_i.html#a2f4774f5b5da972990370a2efbeae9f3',1,'pdm_cfg_t']]], + ['error',['error',['../group___c_a_n___a_p_i.html#a39e131d3f8e8d6d8a14e9f248c1ac1e1',1,'can_callback_args_t::error()'],['../group___p_d_m___a_p_i.html#a98b4bbf5bb1bf1feccda12382e919bbc',1,'pdm_callback_args_t::error()']]], + ['error_5fcode',['error_code',['../group___c_a_n___a_p_i.html#a1ea2aaf80adb9f24fdee9828cae02e05',1,'can_info_t']]], + ['error_5fcount_5freceive',['error_count_receive',['../group___c_a_n___a_p_i.html#a59787b23ec15fa38f51d167e10389081',1,'can_info_t']]], + ['error_5fcount_5ftransmit',['error_count_transmit',['../group___c_a_n___a_p_i.html#ada0fe3e8eb824d0ebb36332f98e3c771',1,'can_info_t']]], ['error_5finterrupts',['error_interrupts',['../group___c_a_n_f_d.html#a0c05dacb48970397676e54a01c81d0e1',1,'canfd_extended_cfg_t']]], ['error_5firq',['error_irq',['../group___c_a_n___a_p_i.html#ac958a7179da3a9f365a3bf55707fac6d',1,'can_cfg_t']]], + ['erroradjustmentset',['errorAdjustmentSet',['../group___r_t_c___a_p_i.html#ae1635364719444ad65541ce00953983e',1,'rtc_api_t']]], ['etoh',['etoh',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#affea8dbc2bf312f939b04a070ba9a16d',1,'rm_zmod4xxx_iaq_1st_data_t::etoh()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a92ce32ead1c82ad9b1c355827fe027a9',1,'rm_zmod4xxx_iaq_2nd_data_t::etoh()']]], - ['event',['event',['../group___c_a_n___a_p_i.html#a48fa3cf4c8c7e608c25ac8b907450096',1,'can_callback_args_t::event()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a3a8cc9e360253e44176a6d3cecb5ece8',1,'i2c_master_callback_args_t::event()'],['../group___s_p_i___a_p_i.html#ae1e14270178c91fb89697630627c1eee',1,'spi_callback_args_t::event()'],['../group___t_i_m_e_r___a_p_i.html#a61b9aabfcafc5e362dce56af7ea36bcf',1,'timer_callback_args_t::event()'],['../group___u_a_r_t___a_p_i.html#a558f63e26549462cf3a893ed73fd26ad',1,'uart_callback_args_t::event()'],['../group___r_m___h_s300_x.html#a4b4fc8fbfadc717fb4842f0db0ffff8b',1,'rm_hs300x_programmnig_mode_params_t::event()'],['../group___r_m___h_s400_x.html#a39ddb6ae741d5506489bb4a87d466edf',1,'rm_hs400x_init_process_params_t::event()'],['../group___r_m___o_b1203.html#ac1299c7dc5347bb69d968283a73e655d',1,'rm_ob1203_init_process_params_t::event()'],['../group___r_m___z_m_o_d4_x_x_x.html#a80d7ca92199a768859b409e3eab26a76',1,'rm_zmod4xxx_init_process_params_t::event()'],['../group___r_m___z_m_o_d4_x_x_x.html#a10f677f5de3207f7c9f30effb6662608',1,'rm_zmod4xxx_instance_ctrl_t::event()']]] + ['event',['event',['../group___a_d_c___a_p_i.html#a7b1ea18a97eee3565ef6cfb084222453',1,'adc_callback_args_t::event()'],['../group___c_a_n___a_p_i.html#a48fa3cf4c8c7e608c25ac8b907450096',1,'can_callback_args_t::event()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a3a8cc9e360253e44176a6d3cecb5ece8',1,'i2c_master_callback_args_t::event()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ab8f7ff67f811463a59921e4fbe11898e',1,'i2c_slave_callback_args_t::event()'],['../group___i3_c___a_p_i.html#a558180776a16d59f446a936574353300',1,'i3c_callback_args_t::event()'],['../group___p_d_m___a_p_i.html#a4baa164d236e7f2c62cd33ddb64f41ec',1,'pdm_callback_args_t::event()'],['../group___r_t_c___a_p_i.html#ad37b36597532fc87e610ceeb849cad4d',1,'rtc_callback_args_t::event()'],['../group___s_p_i___a_p_i.html#ae1e14270178c91fb89697630627c1eee',1,'spi_callback_args_t::event()'],['../group___t_i_m_e_r___a_p_i.html#a61b9aabfcafc5e362dce56af7ea36bcf',1,'timer_callback_args_t::event()'],['../group___u_a_r_t___a_p_i.html#a558f63e26549462cf3a893ed73fd26ad',1,'uart_callback_args_t::event()'],['../group___d_m_a_c___b.html#aafb07b9e0d848a6f8e56de3b8a378522',1,'dmac_b_callback_args_t::event()'],['../group___r_m___h_s300_x.html#a4b4fc8fbfadc717fb4842f0db0ffff8b',1,'rm_hs300x_programmnig_mode_params_t::event()'],['../group___r_m___h_s400_x.html#a39ddb6ae741d5506489bb4a87d466edf',1,'rm_hs400x_init_process_params_t::event()'],['../group___r_m___z_m_o_d4_x_x_x.html#a80d7ca92199a768859b409e3eab26a76',1,'rm_zmod4xxx_init_process_params_t::event()'],['../group___r_m___z_m_o_d4_x_x_x.html#a10f677f5de3207f7c9f30effb6662608',1,'rm_zmod4xxx_instance_ctrl_t::event()']]], + ['event_5fcontrol',['event_control',['../group___i_o_p_o_r_t.html#a0b3044299c4d5b19c4fc7ad635ec59f4',1,'ioport_event_single_t::event_control()'],['../group___i_o_p_o_r_t.html#a7dbdab1b9475e8601419e739882b73f8',1,'ioport_event_group_input_t::event_control()']]], + ['event_5fstatus',['event_status',['../group___i3_c___a_p_i.html#a149831362decabc4676bd5e8265821dd',1,'i3c_callback_args_t']]], + ['extbr',['extbr',['../group___i3_c___b.html#a43f54168433c048558d579ba300f565d',1,'i3c_b_bitrate_settings_t']]], + ['external_5fdetection_5fmode',['external_detection_mode',['../group___d_m_a_c___b.html#a84613315363012283b6c3abdfd89faff',1,'dmac_b_extended_cfg_t']]], + ['external_5ftrigger_5ffilter',['external_trigger_filter',['../group___a_d_c___c.html#a9f46b83d1e4e113f06b392ca92eda623',1,'adc_c_extended_cfg_t']]] ]; diff --git a/search/variables_5.js b/search/variables_5.js index cf41fb7..96a3422 100644 --- a/search/variables_5.js +++ b/search/variables_5.js @@ -1,12 +1,11 @@ var searchData= [ ['fast_5faqi',['fast_aqi',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a84160c2d9ba22577f86b7bbdb3521845',1,'rm_zmod4xxx_oaq_2nd_data_t']]], - ['fifo_5fafull_5finterrupt_5foccur',['fifo_afull_interrupt_occur',['../group___r_m___o_b1203___a_p_i.html#a883db336eabdcd2eec7d787f2664e9d7',1,'rm_ob1203_device_status_t']]], - ['fifo_5freset',['fifo_reset',['../group___r_m___o_b1203.html#a16876cb1e3093f468775969f97c77a78',1,'rm_ob1203_instance_ctrl_t']]], - ['fifoinfoget',['fifoInfoGet',['../group___r_m___o_b1203___a_p_i.html#ace63f4f8958af6e1424ad4fa176bbcf2',1,'rm_ob1203_api_t']]], ['filter_5fenable',['filter_enable',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#aa77181dcffe927e006c2ed112c1a62ad',1,'external_irq_cfg_t']]], - ['flow_5fcontrol',['flow_control',['../group___s_c_i_f___u_a_r_t.html#aa761132ebac67c5cbbc3d6a505b97efe',1,'scif_uart_extended_cfg_t']]], + ['filter_5fsetting_5ftime',['filter_setting_time',['../group___p_d_m.html#a483ee30b7fc9958318e5563515589463',1,'pdm_extended_cfg_t']]], + ['flow_5fcontrol',['flow_control',['../group___s_c_i___b___u_a_r_t.html#a4b5314fe6a1f23955d5f340ab5447236',1,'sci_b_uart_extended_cfg_t::flow_control()'],['../group___s_c_i_f___u_a_r_t.html#aa761132ebac67c5cbbc3d6a505b97efe',1,'scif_uart_extended_cfg_t::flow_control()']]], + ['flow_5fcontrol_5fpin',['flow_control_pin',['../group___s_c_i___b___u_a_r_t.html#a1a570791ada82c7304bd70fd0431014f',1,'sci_b_uart_extended_cfg_t']]], ['frame',['frame',['../group___c_a_n___a_p_i.html#aa8706fd62e652e6582d3c9eb155fb610',1,'can_callback_args_t']]], - ['frame_5ftype',['frame_type',['../group___c_a_n___a_p_i.html#af01f0306a9ad2e430154d9d6a4e3404f',1,'can_mailbox_t']]], + ['freq_5fcompare_5fvalue_5floco',['freq_compare_value_loco',['../group___r_t_c___a_p_i.html#a0a64ff37fefef5f044209c6f85564b70',1,'rtc_cfg_t']]], ['frequency',['frequency',['../group___r_m___h_s400_x___a_p_i.html#a4a9e3392df8193428e1907f2e4a315b9',1,'rm_hs400x_cfg_t']]] ]; diff --git a/search/variables_6.js b/search/variables_6.js index d223a84..032c3e2 100644 --- a/search/variables_6.js +++ b/search/variables_6.js @@ -1,13 +1,15 @@ var searchData= [ - ['g_5fbsp_5fversion',['g_bsp_version',['../group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8',1,'g_bsp_version(): bsp_common.c'],['../group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8',1,'g_bsp_version(): bsp_common.c']]], - ['gainset',['gainSet',['../group___r_m___o_b1203___a_p_i.html#a82fdd4f8e1ef45d2f06a355d60979968',1,'rm_ob1203_api_t']]], + ['g_5fbsp_5fversion',['g_bsp_version',['../group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8',1,'g_bsp_version(): bsp_common.c'],['../group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8',1,'g_bsp_version(): bsp_common.c'],['../group___b_s_p___m_c_u.html#gaaa2f4340010ddb682ca12fac46f83db8',1,'g_bsp_version(): bsp_common.c']]], + ['general_5fcall_5fenable',['general_call_enable',['../group___i2_c___s_l_a_v_e___a_p_i.html#a7b1c0bee47fa93f32b4466b72c30f68c',1,'i2c_slave_cfg_t']]], ['global_5fconfig',['global_config',['../group___c_a_n_f_d.html#afd7545e297144152431f5b1f3628fff7',1,'canfd_global_cfg_t']]], ['global_5ferr_5fipl',['global_err_ipl',['../group___c_a_n_f_d.html#a6ce35aac50e44ac4353bfd20e12639a4',1,'canfd_global_cfg_t']]], ['global_5finterrupts',['global_interrupts',['../group___c_a_n_f_d.html#ac6305ab75909afd62029f3c76b235549',1,'canfd_global_cfg_t']]], - ['green_5fdata',['green_data',['../group___r_m___o_b1203___a_p_i.html#ab5f700a5790ea992d82af3a1c7216d66',1,'rm_ob1203_light_data_t']]], + ['gpioint',['gpioint',['../group___i_n_t_c___t_i_n_t.html#a8066afa114318265d9fe96031434bbd3',1,'intc_tint_extended_cfg_t']]], + ['group_5fmask',['group_mask',['../group___a_d_c___a_p_i.html#a2e4f7b7ce1a5858b39f7a85ad16ab655',1,'adc_callback_args_t']]], ['gtioca',['gtioca',['../group___g_p_t.html#ad323c6db6a695028d2926dfbf0a0dda8',1,'gpt_extended_cfg_t']]], ['gtioca_5fdisable_5fsetting',['gtioca_disable_setting',['../group___g_p_t.html#af8c63e238ee298b4f1dac545a597eff7',1,'gpt_extended_pwm_cfg_t']]], ['gtiocb',['gtiocb',['../group___g_p_t.html#a78476af74debd54ee8394dd0aa6d2505',1,'gpt_extended_cfg_t']]], - ['gtiocb_5fdisable_5fsetting',['gtiocb_disable_setting',['../group___g_p_t.html#aa34079abac90aaced078650c626c9820',1,'gpt_extended_pwm_cfg_t']]] + ['gtiocb_5fdisable_5fsetting',['gtiocb_disable_setting',['../group___g_p_t.html#aa34079abac90aaced078650c626c9820',1,'gpt_extended_pwm_cfg_t']]], + ['gtior_5fsetting',['gtior_setting',['../group___g_p_t.html#ad8b8b467339a151f016017d175df2f9c',1,'gpt_extended_cfg_t']]] ]; diff --git a/search/variables_7.js b/search/variables_7.js index 3336c92..29537b7 100644 --- a/search/variables_7.js +++ b/search/variables_7.js @@ -1,5 +1,13 @@ var searchData= [ + ['half_5fdata_5fsetting',['half_data_setting',['../group___s_c_i___b___u_a_r_t.html#a02639fcb8ec9d81d9930ce6e65caef8e',1,'sci_b_uart_extended_cfg_t']]], + ['high_5fpass_5ffilter_5fshift',['high_pass_filter_shift',['../group___p_d_m.html#aaa73de553356b3e3fd5e8f7ecfb7ecc5',1,'pdm_extended_cfg_t']]], + ['hot_5fjoin_5facknowledge',['hot_join_acknowledge',['../group___i3_c___b.html#a493e09410ad1e54a74ef9ecd93dbfd4e',1,'i3c_b_ibi_control_t']]], + ['hotjoin_5frequest_5fenable',['hotjoin_request_enable',['../group___i3_c___b.html#ae1391ee53f0f040895bc1a2982db5adf',1,'i3c_b_slave_command_response_info_t']]], + ['hour_5fmatch',['hour_match',['../group___r_t_c___a_p_i.html#a99fb3242d7bb1eb482cb436a49c1b18d',1,'rtc_alarm_time_t']]], + ['hpf_5fcoefficient_5fh',['hpf_coefficient_h',['../group___p_d_m.html#a0487cbe0537406381bd2395e806e08ac',1,'pdm_extended_cfg_t']]], + ['hpf_5fcoefficient_5fk1',['hpf_coefficient_k1',['../group___p_d_m.html#ab3d0506ad03a69effde1841833806543',1,'pdm_extended_cfg_t']]], + ['hpf_5fcoefficient_5fs0',['hpf_coefficient_s0',['../group___p_d_m.html#a8ade0b0f232d6b93df9322c969d35588',1,'pdm_extended_cfg_t']]], ['humidity',['humidity',['../group___r_m___h_s300_x___a_p_i.html#ad8d48666aaa654a2cf4b1067abb9fa63',1,'rm_hs300x_raw_data_t::humidity()'],['../group___r_m___h_s400_x___a_p_i.html#aa1d22106aaa7182a9cea0652eff5bf69',1,'rm_hs400x_raw_data_t::humidity()']]], ['humidity_5fresolution',['humidity_resolution',['../group___r_m___h_s400_x___a_p_i.html#ad726639457424c9f13522ab301833898',1,'rm_hs400x_cfg_t']]] ]; diff --git a/search/variables_8.js b/search/variables_8.js index 7846b94..cb0cdfd 100644 --- a/search/variables_8.js +++ b/search/variables_8.js @@ -4,18 +4,45 @@ var searchData= ['iaq',['iaq',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abd2e11efbf4f5c3ae54f469394235ae8',1,'rm_zmod4xxx_iaq_1st_data_t::iaq()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6de91ae7e87c6ad5197ceff295b7fdf3',1,'rm_zmod4xxx_iaq_2nd_data_t::iaq()']]], ['iaq1stgendatacalculate',['iaq1stGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6e96d0abcbc4a4479d92d6e8e8d410de',1,'rm_zmod4xxx_api_t']]], ['iaq2ndgendatacalculate',['iaq2ndGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af1ff5841c01173a03ff6ccb7bd731ddc',1,'rm_zmod4xxx_api_t']]], + ['ibi_5faccept',['ibi_accept',['../group___i3_c___a_p_i.html#a75de96de8cb5a6dbe2e142f1113a5a8b',1,'i3c_device_table_cfg_t']]], + ['ibi_5faddress',['ibi_address',['../group___i3_c___a_p_i.html#add62a38afe9e63edc664fa8cd7d736e3',1,'i3c_callback_args_t']]], + ['ibi_5fbuffer_5fdescriptor',['ibi_buffer_descriptor',['../group___i3_c___b.html#ade06559c82b773fb3382aa64c0cbff15',1,'i3c_b_instance_ctrl_t']]], + ['ibi_5fcontrol',['ibi_control',['../group___i3_c___b.html#a16e3b94303d38db979568546ac53a4b3',1,'i3c_b_extended_cfg_t']]], + ['ibi_5firq',['ibi_irq',['../group___i3_c___b.html#add3c6106157a467818eb480ae5057826',1,'i3c_b_extended_cfg_t']]], + ['ibi_5fnext_5fword',['ibi_next_word',['../group___i3_c___b.html#a8369efb1618f65a238ce07c438e50c01',1,'i3c_b_instance_ctrl_t']]], + ['ibi_5fpayload',['ibi_payload',['../group___i3_c___a_p_i.html#a8627c2815356dbf8a9120b45a4e5e954',1,'i3c_device_table_cfg_t']]], + ['ibi_5fpayload_5flength',['ibi_payload_length',['../group___i3_c___b.html#ab16f7dbd1d812f8dcfc33ac37a939ca9',1,'i3c_b_slave_command_response_info_t']]], + ['ibi_5ftransfer_5fcount_5ffinal',['ibi_transfer_count_final',['../group___i3_c___b.html#ad7f911a2a8d3071973e2a3f8d9c3379e',1,'i3c_b_instance_ctrl_t']]], + ['ibi_5ftype',['ibi_type',['../group___i3_c___a_p_i.html#a38189a6ab614f521924609c5bb5f30b9',1,'i3c_callback_args_t']]], + ['ibiread',['ibiRead',['../group___i3_c___a_p_i.html#a3b2a78b5f633df2cfb07133ad5ae9c91',1,'i3c_api_t']]], + ['ibiwrite',['ibiWrite',['../group___i3_c___a_p_i.html#a78bf93c241804116b1a4efc18e6c1028',1,'i3c_api_t']]], + ['ic0_5fcontrol',['ic0_control',['../group___c_m_t_w.html#a9b7a216779c89527ce522c447d65dcb4',1,'cmtw_extended_cfg_t']]], + ['ic1_5fcontrol',['ic1_control',['../group___c_m_t_w.html#acffcc4d2d31fd8b21b8cada853629afa',1,'cmtw_extended_cfg_t']]], ['id',['id',['../group___c_a_n___a_p_i.html#a49d4261f37f08f5a11cc3fc12c56cdc3',1,'can_frame_t']]], - ['id_5fmode',['id_mode',['../group___c_a_n___a_p_i.html#a4144eba26f77850571fca0498bec60ef',1,'can_frame_t::id_mode()'],['../group___c_a_n___a_p_i.html#a9d3924b6ba4efb4c978a04d0e9a4fbc6',1,'can_mailbox_t::id_mode()'],['../group___c_a_n___a_p_i.html#a34bf75f61795800b3df706b240fd7907',1,'can_cfg_t::id_mode()']]], - ['infoget',['infoGet',['../group___c_a_n___a_p_i.html#aba27908c89442250d365d4a44304e3c1',1,'can_api_t::infoGet()'],['../group___t_i_m_e_r___a_p_i.html#aeaea79f26305c493566e4b45ae9e294c',1,'timer_api_t::infoGet()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ad18824ffdf72b5e6a0c588289620fc84',1,'transfer_api_t::infoGet()'],['../group___u_a_r_t___a_p_i.html#aa6d5231c2b45a6479fc513d087924a50',1,'uart_api_t::infoGet()']]], + ['id_5fmode',['id_mode',['../group___c_a_n___a_p_i.html#a4144eba26f77850571fca0498bec60ef',1,'can_frame_t']]], + ['ierr_5firq',['ierr_irq',['../group___i3_c___b.html#a2182f261e10335bf21ca40bc09bcd68d',1,'i3c_b_extended_cfg_t']]], + ['inband_5finterrupt_5fenable',['inband_interrupt_enable',['../group___i3_c___b.html#ae5c638d2a302a6a5c39510137583ffd9',1,'i3c_b_slave_command_response_info_t']]], + ['infoget',['infoGet',['../group___a_d_c___a_p_i.html#acc68017ee284386b5d13c027bc10bf87',1,'adc_api_t::infoGet()'],['../group___c_a_n___a_p_i.html#aba27908c89442250d365d4a44304e3c1',1,'can_api_t::infoGet()'],['../group___r_t_c___a_p_i.html#a7a6c940847c6f730a5c5df3355dca1eb',1,'rtc_api_t::infoGet()'],['../group___t_i_m_e_r___a_p_i.html#aeaea79f26305c493566e4b45ae9e294c',1,'timer_api_t::infoGet()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ad18824ffdf72b5e6a0c588289620fc84',1,'transfer_api_t::infoGet()'],['../group___u_a_r_t___a_p_i.html#aa6d5231c2b45a6479fc513d087924a50',1,'uart_api_t::infoGet()']]], ['init_5fconf',['init_conf',['../structzmod4xxx__dev__t.html#a8b5560b62a3e4bdadbc079ed485a02bc',1,'zmod4xxx_dev_t']]], - ['init_5fprocess_5fparams',['init_process_params',['../group___r_m___h_s400_x.html#a5af51eb4d4038952763bba41f2dee7b7',1,'rm_hs400x_instance_ctrl_t::init_process_params()'],['../group___r_m___o_b1203.html#ae4fbc64795865bea8bc3d64f34a96c74',1,'rm_ob1203_instance_ctrl_t::init_process_params()'],['../group___r_m___z_m_o_d4_x_x_x.html#a6f86201d4a114d5714f700501338e5f7',1,'rm_zmod4xxx_instance_ctrl_t::init_process_params()']]], + ['init_5fprocess_5fparams',['init_process_params',['../group___r_m___h_s400_x.html#a5af51eb4d4038952763bba41f2dee7b7',1,'rm_hs400x_instance_ctrl_t::init_process_params()'],['../group___r_m___z_m_o_d4_x_x_x.html#a6f86201d4a114d5714f700501338e5f7',1,'rm_zmod4xxx_instance_ctrl_t::init_process_params()']]], + ['input_5fmode',['input_mode',['../group___a_d_c___c.html#adc8e8849121eeb6991ae00b028a8a4b5',1,'adc_c_extended_cfg_t']]], ['intensity',['intensity',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ab2709d5696a54a4d979adb8c85d8610c',1,'rm_zmod4xxx_sulfur_odor_data_t']]], - ['interrupt_5fbits_5fclear',['interrupt_bits_clear',['../group___r_m___o_b1203.html#a6c0b5939aa98532a28c344960a62379d',1,'rm_ob1203_instance_ctrl_t']]], + ['internal_5fdetection_5fmode',['internal_detection_mode',['../group___d_m_a_c___b.html#a3c6118081755b89a56d716b3278d2f02',1,'dmac_b_extended_cfg_t']]], + ['internal_5fstate',['internal_state',['../group___i3_c___b.html#ac71e6c3913312c01e121be5ce1f89ae7',1,'i3c_b_instance_ctrl_t']]], + ['interrupt_5fsetting',['interrupt_setting',['../group___a_d_c___c.html#ac0f2be271c165544bd8c8502f5d4739c',1,'adc_c_channel_cfg_t']]], ['interrupt_5fskip_5fadc',['interrupt_skip_adc',['../group___g_p_t.html#ab5abdaac972544ec4e58df69d1f8a08f',1,'gpt_extended_pwm_cfg_t']]], ['interrupt_5fskip_5fcount',['interrupt_skip_count',['../group___g_p_t.html#ac516350c554b9851aa9c66615e89b93b',1,'gpt_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fcount_5ftciv4',['interrupt_skip_count_tciv4',['../group___m_t_u3.html#a216df4f3be3012f4f458c09d97f6593b',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fcount_5ftciv7',['interrupt_skip_count_tciv7',['../group___m_t_u3.html#af5d77f5eb4fd6e742f4a5e79b5665c04',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fcount_5ftgia3',['interrupt_skip_count_tgia3',['../group___m_t_u3.html#a71064db80d5848f56c23c5c5d56acc8a',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fcount_5ftgia6',['interrupt_skip_count_tgia6',['../group___m_t_u3.html#a21d61adfb4e1a493557d264d94ebef26',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fcount_5ftgr4an_5fbn',['interrupt_skip_count_tgr4an_bn',['../group___m_t_u3.html#acc26191a7a28828c0c7f4ee1792d1506',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fcount_5ftgr7an_5fbn',['interrupt_skip_count_tgr7an_bn',['../group___m_t_u3.html#a6952d44a04c939335d8ab1521dc6c4b4',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fmode_5fa',['interrupt_skip_mode_a',['../group___m_t_u3.html#aa2aaf02a71503c209b558836a992d768',1,'mtu3_extended_pwm_cfg_t']]], + ['interrupt_5fskip_5fmode_5fb',['interrupt_skip_mode_b',['../group___m_t_u3.html#a7adfe2a0b7737f00e2fcf92e1eb3bd90',1,'mtu3_extended_pwm_cfg_t']]], ['interrupt_5fskip_5fsource',['interrupt_skip_source',['../group___g_p_t.html#a4d31e40df7ea5e4be69fcbbe559a8213',1,'gpt_extended_pwm_cfg_t']]], ['interruptset',['interruptSet',['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a6a3e82bf49e890836b3b4d71e7c31e8a',1,'mhu_ns_swint_set_api_t']]], - ['ipl',['ipl',['../group___c_a_n___a_p_i.html#a31ab501a9df967965b8085592b4d2ba1',1,'can_cfg_t::ipl()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a21219682d6af73d780e49a7e67e53f22',1,'external_irq_cfg_t::ipl()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a156cf3b414b73e4e9e782c55d131ba39',1,'i2c_master_cfg_t::ipl()'],['../group___p_o_e_g___a_p_i.html#a57cfcbb853533296afebab7d58f231c2',1,'poeg_cfg_t::ipl()']]], - ['ir_5fled',['ir_led',['../group___r_m___o_b1203___a_p_i.html#af510fc446832c663bed37b3ab42a90b3',1,'rm_ob1203_led_current_t']]], - ['irq',['irq',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a568e65aafea692dff0f64c3b66df2c2a',1,'external_irq_cfg_t::irq()'],['../group___p_o_e_g___a_p_i.html#a7f90a7d598df48543335416c0a4ab1a0',1,'poeg_cfg_t::irq()'],['../group___i_n_t_c___i_r_q.html#afb8eedbc54d5d2b44e6f7392a1e375c1',1,'intc_irq_instance_ctrl_t::irq()']]] + ['interupt_5fthreshold',['interupt_threshold',['../group___p_d_m.html#a1363fd7ad65bd0ed1f0377a70680a5af',1,'pdm_extended_cfg_t']]], + ['ipl',['ipl',['../group___c_a_n___a_p_i.html#a31ab501a9df967965b8085592b4d2ba1',1,'can_cfg_t::ipl()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a21219682d6af73d780e49a7e67e53f22',1,'external_irq_cfg_t::ipl()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a156cf3b414b73e4e9e782c55d131ba39',1,'i2c_master_cfg_t::ipl()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ae7a71b00ee0f0392feea934f395599a3',1,'i2c_slave_cfg_t::ipl()'],['../group___p_o_e_g___a_p_i.html#a57cfcbb853533296afebab7d58f231c2',1,'poeg_cfg_t::ipl()'],['../group___i3_c___b.html#a6e93301fd2a08032aabf92fc72a196cb',1,'i3c_b_extended_cfg_t::ipl()']]], + ['irq',['irq',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a568e65aafea692dff0f64c3b66df2c2a',1,'external_irq_cfg_t::irq()'],['../group___p_o_e_g___a_p_i.html#a7f90a7d598df48543335416c0a4ab1a0',1,'poeg_cfg_t::irq()'],['../group___i_n_t_c___i_r_q.html#afb8eedbc54d5d2b44e6f7392a1e375c1',1,'intc_irq_instance_ctrl_t::irq()'],['../group___i_n_t_c___n_m_i.html#afbc0c2d0c28a1e1b6659add5e1d906a8',1,'intc_nmi_instance_ctrl_t::irq()'],['../group___i_n_t_c___t_i_n_t.html#aa0f2fc4c91d800c45bb08df191a01fa4',1,'intc_tint_instance_ctrl_t::irq()']]] ]; diff --git a/search/variables_9.js b/search/variables_9.js index 42eeb92..5ef632f 100644 --- a/search/variables_9.js +++ b/search/variables_9.js @@ -1,25 +1,12 @@ var searchData= [ - ['led_5forder',['led_order',['../group___r_m___o_b1203.html#a6ea712faa60b5098695c5bf9dee22fa9',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ledcurrentset',['ledCurrentSet',['../group___r_m___o_b1203___a_p_i.html#a7d3decdc87199472697b5aec3387d406',1,'rm_ob1203_api_t']]], - ['length',['length',['../group___t_r_a_n_s_f_e_r___a_p_i.html#aa92c5d06d07e7d13c16f9704a431c7cb',1,'transfer_info_t']]], - ['light',['light',['../group___r_m___o_b1203___a_p_i.html#a895aed77cf1aba3014b6d0b631e8a10d',1,'rm_ob1203_gain_t']]], - ['light_5fdata_5ftype',['light_data_type',['../group___r_m___o_b1203.html#a92cbb312b5e1e41706b4e68b38357f02',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5fgain',['light_gain',['../group___r_m___o_b1203.html#aa3cb62edd73814ba315627754fd85266',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5finterrupt_5fpersist',['light_interrupt_persist',['../group___r_m___o_b1203.html#a022942b085717470822f277c4b31ba3a',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5finterrupt_5fsource',['light_interrupt_source',['../group___r_m___o_b1203.html#a717ea530db97b35669792d4402106037',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5finterrupt_5ftype',['light_interrupt_type',['../group___r_m___o_b1203.html#a552c03c8de87ba18c02d7d92ccb492d4',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5flower_5fthreshold',['light_lower_threshold',['../group___r_m___o_b1203.html#a3d101a3a796221fc394abb203998d492',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5fprox_5fmode',['light_prox_mode',['../group___r_m___o_b1203___a_p_i.html#a098de06ea0c6b7261ccca0d471f964f6',1,'rm_ob1203_device_interrupt_cfg_t']]], - ['light_5fresolution_5fperiod',['light_resolution_period',['../group___r_m___o_b1203.html#a002e10b810510f6ddacf3636941b8ad3',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5fsensor_5fmode',['light_sensor_mode',['../group___r_m___o_b1203.html#a2dff0d73a95082059f417d185b80cb8a',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5fsleep',['light_sleep',['../group___r_m___o_b1203.html#aeb793e75865a9f62297d91034603aaf1',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5fsource',['light_source',['../group___r_m___o_b1203___a_p_i.html#a464bef4e7cf70926e60bbed2c0b492af',1,'rm_ob1203_device_interrupt_cfg_t']]], - ['light_5ftype',['light_type',['../group___r_m___o_b1203___a_p_i.html#a53a1af5cbd0dd954d6e5cffbd217d834',1,'rm_ob1203_device_interrupt_cfg_t']]], - ['light_5fupper_5fthreshold',['light_upper_threshold',['../group___r_m___o_b1203.html#ac5d15bf27b5bcd1a6b721a0f67374372',1,'rm_ob1203_mode_extended_cfg_t']]], - ['light_5fvariance_5fthreshold',['light_variance_threshold',['../group___r_m___o_b1203.html#afd0c72c77c52c3eeb6c3c82649807cac',1,'rm_ob1203_mode_extended_cfg_t']]], - ['lightdatacalculate',['lightDataCalculate',['../group___r_m___o_b1203___a_p_i.html#aa3ca0efc07f8e5cdf3086fe422239b60',1,'rm_ob1203_api_t']]], - ['lightread',['lightRead',['../group___r_m___o_b1203___a_p_i.html#ad778eb596d6af74ccedec46ed4dec9f7',1,'rm_ob1203_api_t']]], + ['length',['length',['../group___a_d_c___a_p_i.html#a3f8dd9f7ffefcbc0180fc7252c0482c9',1,'adc_info_t::length()'],['../group___i3_c___a_p_i.html#a55133c6895655f647bad807fd6e0d136',1,'i3c_command_descriptor_t::length()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a5aba602d71a6ba4e6be056a90b5ed9e8',1,'transfer_info_t::length()'],['../group___d_m_a_c___b.html#aac2bd3fe82819a7f868aa155b25459e9',1,'dmac_b_register_set_setting_t::length()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a5aba602d71a6ba4e6be056a90b5ed9e8',1,'transfer_info_t::length()']]], + ['link',['link',['../group___e_l_c___a_p_i.html#ad58380dc39c1d257fc9128dda007865d',1,'elc_cfg_t']]], + ['linkbreak',['linkBreak',['../group___e_l_c___a_p_i.html#aded8ab0cdd59a636f2a5cc60313c54c5',1,'elc_api_t']]], + ['linkset',['linkSet',['../group___e_l_c___a_p_i.html#a05af30d0ca7743f5a033b10d664ded59',1,'elc_api_t']]], ['log_5fnonlog_5frcda',['log_nonlog_rcda',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a4bf54edf41460cfb0e6a8bd1cf9a825e',1,'rm_zmod4xxx_iaq_2nd_data_t']]], - ['log_5frcda',['log_rcda',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a04d026df23f93a2ccd598b7fc7546c5d',1,'rm_zmod4xxx_iaq_2nd_data_t']]] + ['log_5frcda',['log_rcda',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a04d026df23f93a2ccd598b7fc7546c5d',1,'rm_zmod4xxx_iaq_2nd_data_t']]], + ['low_5fpass_5ffilter_5fshift',['low_pass_filter_shift',['../group___p_d_m.html#ada9786751a8901b1f014d50f825692ed',1,'pdm_extended_cfg_t']]], + ['lpf_5fcoefficient_5fh0',['lpf_coefficient_h0',['../group___p_d_m.html#a8301f1ffd1bd3c06615b57cbab9f06cd',1,'pdm_extended_cfg_t']]], + ['lpf_5fcoefficient_5fh1',['lpf_coefficient_h1',['../group___p_d_m.html#ab0fba91eb36c8a90821d4fd7793ba4b9',1,'pdm_extended_cfg_t']]] ]; diff --git a/search/variables_a.js b/search/variables_a.js index f751dac..e00680e 100644 --- a/search/variables_a.js +++ b/search/variables_a.js @@ -1,23 +1,27 @@ var searchData= [ - ['mailbox_5fcount',['mailbox_count',['../group___c_a_n___a_p_i.html#a66e92277959e9e01a6ce2105dcdcbae6',1,'can_cfg_t']]], - ['mailbox_5fid',['mailbox_id',['../group___c_a_n___a_p_i.html#aa0c1d24b5896560908adb0ac9761aa28',1,'can_mailbox_t']]], - ['mailbox_5frx_5firq',['mailbox_rx_irq',['../group___c_a_n___a_p_i.html#a70c47efed0012e4512b7d7eca31e3e58',1,'can_cfg_t']]], - ['mailbox_5ftx_5firq',['mailbox_tx_irq',['../group___c_a_n___a_p_i.html#afe91f3dd74163cacafbfb96ab2104df0',1,'can_cfg_t']]], - ['mailbox_5ftype',['mailbox_type',['../group___c_a_n___a_p_i.html#aa6a30551456873fb921b933bd3ddbe23',1,'can_mailbox_t']]], + ['master_5frequest_5faccept',['master_request_accept',['../group___i3_c___a_p_i.html#a7fffc4906ca2c92ccf77cda8fabc6714',1,'i3c_device_table_cfg_t']]], + ['masterdevicetableset',['masterDeviceTableSet',['../group___i3_c___a_p_i.html#ac790719d9f6a87b3458bfab85ffda558',1,'i3c_api_t']]], + ['mastership_5frequest_5fenable',['mastership_request_enable',['../group___i3_c___b.html#ad84be5ef3adcda517e62810c182ac856',1,'i3c_b_slave_command_response_info_t']]], + ['mday_5fmatch',['mday_match',['../group___r_t_c___a_p_i.html#a40c6580113cd30f538f7985b2e6bed46',1,'rtc_alarm_time_t']]], ['mddr',['mddr',['../group___s_c_i_f___u_a_r_t.html#acbf8ff1fb27039b0240beceeff67d048',1,'scif_baud_setting_t']]], + ['mddr_5fvalue',['mddr_value',['../group___s_c_i___b___i2_c.html#af010e505a82e39cbfbc3e2c0b99ce397',1,'sci_b_i2c_clock_settings_t']]], ['meas_5fconf',['meas_conf',['../structzmod4xxx__dev__t.html#aaf936f367f33da5c81d94336105c47ed',1,'zmod4xxx_dev_t']]], ['measurement_5ffinished',['measurement_finished',['../group___r_m___z_m_o_d4_x_x_x.html#a8c18d9f7ecb1e2fcec2f623136d92d9e',1,'rm_zmod4xxx_init_process_params_t']]], - ['measurementstart',['measurementStart',['../group___r_m___h_s300_x___a_p_i.html#a5fb2270412b0a4972ba9e3b37daf33ab',1,'rm_hs300x_api_t::measurementStart()'],['../group___r_m___h_s400_x___a_p_i.html#af43342d596f670dae68958a5011afed6',1,'rm_hs400x_api_t::measurementStart()'],['../group___r_m___o_b1203___a_p_i.html#af9780f361fb17b04000550de7543134a',1,'rm_ob1203_api_t::measurementStart()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af9e1e5ff4fd276f7d7bfeb341854b0c2',1,'rm_zmod4xxx_api_t::measurementStart()']]], - ['measurementstop',['measurementStop',['../group___r_m___h_s400_x___a_p_i.html#ac6a5f8689aeda6f82bbd41d1794a66e3',1,'rm_hs400x_api_t::measurementStop()'],['../group___r_m___o_b1203___a_p_i.html#a9365629cc58e4f4c9cf33420b07416f5',1,'rm_ob1203_api_t::measurementStop()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5cf69c31fc52e26757bedf1ec76581f3',1,'rm_zmod4xxx_api_t::measurementStop()']]], - ['message_5fmode',['message_mode',['../group___c_a_n___a_p_i.html#a0cb83f81e41146d1e688f88a69231d38',1,'can_cfg_t']]], - ['mode',['mode',['../group___t_i_m_e_r___a_p_i.html#a9519afc7ea8aec3aaf1eb787b39cc97c',1,'timer_cfg_t']]], + ['measurementstart',['measurementStart',['../group___r_m___h_s300_x___a_p_i.html#a5fb2270412b0a4972ba9e3b37daf33ab',1,'rm_hs300x_api_t::measurementStart()'],['../group___r_m___h_s400_x___a_p_i.html#af43342d596f670dae68958a5011afed6',1,'rm_hs400x_api_t::measurementStart()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af9e1e5ff4fd276f7d7bfeb341854b0c2',1,'rm_zmod4xxx_api_t::measurementStart()']]], + ['measurementstop',['measurementStop',['../group___r_m___h_s400_x___a_p_i.html#ac6a5f8689aeda6f82bbd41d1794a66e3',1,'rm_hs400x_api_t::measurementStop()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5cf69c31fc52e26757bedf1ec76581f3',1,'rm_zmod4xxx_api_t::measurementStop()']]], + ['min_5fmatch',['min_match',['../group___r_t_c___a_p_i.html#a2116bd7b5fa4535556de190e370b548a',1,'rtc_alarm_time_t']]], + ['mode',['mode',['../group___a_d_c___a_p_i.html#a035d5a1d93fe00c7683afbc4e5a59729',1,'adc_cfg_t::mode()'],['../group___t_i_m_e_r___a_p_i.html#a9519afc7ea8aec3aaf1eb787b39cc97c',1,'timer_cfg_t::mode()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#ae3cc32eab1926d03875e2c9fa4e6190b',1,'transfer_info_t::mode()']]], ['mode_5ffault',['mode_fault',['../group___s_p_i___a_p_i.html#a3594e8fa704cc11af1fa448fb0e0971b',1,'spi_cfg_t']]], - ['mode_5firq',['mode_irq',['../group___r_m___o_b1203.html#a8b9c2e8ea5903f1d3c42cf99539a6f37',1,'rm_ob1203_mode_extended_cfg_t']]], ['modetransition',['modeTransition',['../group___c_a_n___a_p_i.html#afb37a7735c6ac61a151a083b2d25153b',1,'can_api_t']]], - ['mosi_5fidle',['mosi_idle',['../group___r_s_p_i.html#a7074247ca15863980c0b6794efd3ef3b',1,'rspi_extended_cfg_t']]], + ['mon_5fmatch',['mon_match',['../group___r_t_c___a_p_i.html#a1037fb218fb45e450dd41965a9ca1df7',1,'rtc_alarm_time_t']]], + ['mosi_5fidle',['mosi_idle',['../group___r_s_p_i.html#a7074247ca15863980c0b6794efd3ef3b',1,'rspi_extended_cfg_t::mosi_idle()'],['../group___s_p_i___b.html#ac63d012fd878d53e0f390837e604ca2f',1,'spi_b_extended_cfg_t::mosi_idle()']]], + ['moving_5faverage_5fmode',['moving_average_mode',['../group___p_d_m.html#a8a21b70e69c6f770a87ea331311e1f04',1,'pdm_extended_cfg_t']]], ['mox_5fer',['mox_er',['../structzmod4xxx__dev__t.html#a1ebc81e50261aac3206ada715d450407',1,'zmod4xxx_dev_t']]], ['mox_5flr',['mox_lr',['../structzmod4xxx__dev__t.html#ae4f3d0a8bb1d168a160d798d875289ca',1,'zmod4xxx_dev_t']]], ['msg',['msg',['../group___m_h_u___a_p_i.html#a06429bf95953ff61b299d881100cc112',1,'mhu_callback_args_t']]], - ['msgsend',['msgSend',['../group___m_h_u___a_p_i.html#af6d608ef42020cdccb89d9d0bd7a28b0',1,'mhu_api_t']]] + ['msgsend',['msgSend',['../group___m_h_u___a_p_i.html#af6d608ef42020cdccb89d9d0bd7a28b0',1,'mhu_api_t']]], + ['mtioc_5fctrl_5fsetting',['mtioc_ctrl_setting',['../group___m_t_u3.html#ac3d8f53d47a3063cf48b374411182243',1,'mtu3_extended_cfg_t']]], + ['mtu3_5fclear',['mtu3_clear',['../group___m_t_u3.html#a1f1b1918442a0305e70d102cb636e09d',1,'mtu3_extended_cfg_t']]], + ['mtu3_5fclk_5fdiv',['mtu3_clk_div',['../group___m_t_u3.html#ad0bcb4a5a415f6c5f3d0db6557f5ec3d',1,'mtu3_extended_cfg_t']]] ]; diff --git a/search/variables_b.js b/search/variables_b.js index c822a76..4434852 100644 --- a/search/variables_b.js +++ b/search/variables_b.js @@ -1,11 +1,16 @@ var searchData= [ - ['naki_5firq',['naki_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a3e7ce84039e9c21f7a3cdc63060efdd1',1,'riic_master_extended_cfg_t']]], - ['next_5faccess_5fdelay',['next_access_delay',['../group___r_s_p_i.html#a4a5671a7b1a0b31742f3fb3ffb832532',1,'rspi_extended_cfg_t']]], + ['naki_5firq',['naki_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a3e7ce84039e9c21f7a3cdc63060efdd1',1,'riic_master_extended_cfg_t::naki_irq()'],['../group___r_i_i_c___s_l_a_v_e.html#aad289375a5899c38eddfb299556c01e9',1,'riic_slave_extended_cfg_t::naki_irq()']]], + ['negation_5ftime',['negation_time',['../group___s_c_i___b___u_a_r_t.html#adeab6a6a24f0ccbf45a24fd0185f1e3b',1,'sci_b_uart_rs485_setting_t']]], + ['next_5faccess_5fdelay',['next_access_delay',['../group___r_s_p_i.html#a4a5671a7b1a0b31742f3fb3ffb832532',1,'rspi_extended_cfg_t::next_access_delay()'],['../group___s_p_i___b.html#a91917729fb266000e5c493d9a4021c43',1,'spi_b_extended_cfg_t::next_access_delay()']]], + ['next_5fword',['next_word',['../group___i3_c___b.html#a624164578fd3053bde3878a449255aed',1,'i3c_b_instance_ctrl_t']]], ['no_5fhold_5fmeasurement_5fread',['no_hold_measurement_read',['../group___r_m___h_s400_x.html#a72f6d28fd2d5889d5733ce5ad5b345db',1,'rm_hs400x_instance_ctrl_t']]], - ['noise_5fcancel',['noise_cancel',['../group___s_c_i_f___u_a_r_t.html#a0ff4c8c790a3ebefd5cf18b65b5072c2',1,'scif_uart_extended_cfg_t']]], + ['noise_5fcancel',['noise_cancel',['../group___s_c_i___b___u_a_r_t.html#add11aada0e4e3d121e4e86597ec0ed58',1,'sci_b_uart_extended_cfg_t::noise_cancel()'],['../group___s_c_i_f___u_a_r_t.html#a0ff4c8c790a3ebefd5cf18b65b5072c2',1,'scif_uart_extended_cfg_t::noise_cancel()']]], ['noise_5ffilter',['noise_filter',['../group___p_o_e_g___a_p_i.html#a7f4c9f27604cdf1b772dc2d4ed8c3a2f',1,'poeg_cfg_t']]], ['noise_5ffilter_5fstage',['noise_filter_stage',['../group___r_i_i_c___m_a_s_t_e_r.html#a81efa4dd941b358e014354ffbf02ac16',1,'riic_master_extended_cfg_t']]], + ['notify_5frejected_5fhot_5fjoin_5frequests',['notify_rejected_hot_join_requests',['../group___i3_c___b.html#aa03b9daf273a95370d743a5ef5bab7dd',1,'i3c_b_ibi_control_t']]], + ['notify_5frejected_5finterrupt_5frequests',['notify_rejected_interrupt_requests',['../group___i3_c___b.html#a338fe4fd5a8fab2a3213e25a1572b02c',1,'i3c_b_ibi_control_t']]], + ['notify_5frejected_5fmastership_5frequests',['notify_rejected_mastership_requests',['../group___i3_c___b.html#ad46715479c0a13d5bccb8992cb5edfb2',1,'i3c_b_ibi_control_t']]], ['num_5fblocks',['num_blocks',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a9781e58bb7cb2ee40de446936d523814',1,'transfer_info_t']]], ['number_5fof_5fpins',['number_of_pins',['../group___i_o_p_o_r_t___a_p_i.html#af5b820497125b07a94537deb03a37f0d',1,'ioport_cfg_t']]] ]; diff --git a/search/variables_c.js b/search/variables_c.js index ef13190..2695fda 100644 --- a/search/variables_c.js +++ b/search/variables_c.js @@ -4,12 +4,22 @@ var searchData= ['oaq2ndgendatacalculate',['oaq2ndGenDataCalculate',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#ad1d9b01a5d84a3a4a06dfd714f485911',1,'rm_zmod4xxx_api_t']]], ['odor',['odor',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a107e482f18f60935d5454a87539565b2',1,'rm_zmod4xxx_odor_data_t::odor()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a026e4a40776c79cd6cf745c8446b4bfd',1,'rm_zmod4xxx_sulfur_odor_data_t::odor()']]], ['odordatacalculate',['odorDataCalculate',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aed55023e17ab93d307606c0d880df721',1,'rm_zmod4xxx_api_t']]], - ['open',['open',['../group___c_a_n___a_p_i.html#a44ef1a1a3726114b30f228c54b0d44ce',1,'can_api_t::open()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a639337eee77555b934cbf8238e0f8449',1,'external_irq_api_t::open()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#af5a9589a49c68b926de7deaefc272267',1,'i2c_master_status_t::open()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a6a35b07fde984333fdce6859dfd56e64',1,'i2c_master_api_t::open()'],['../group___i_o_p_o_r_t___a_p_i.html#ae9cd5d4b83ebe842e9f258aef4850c59',1,'ioport_api_t::open()'],['../group___m_h_u___a_p_i.html#ac3886717d220de2c7861063acceee859',1,'mhu_api_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a94dc2c05c8c387042d23a95b08a2f760',1,'mhu_ns_swint_get_api_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a451a6c711c6a8ea92bd71bcc0ee418b8',1,'mhu_ns_swint_set_api_t::open()'],['../group___p_o_e_g___a_p_i.html#a41c511a6b1b828d54f180b729ae4fe55',1,'poeg_api_t::open()'],['../group___s_p_i___a_p_i.html#a97177a6162ebad73907c7f23c1411426',1,'spi_api_t::open()'],['../group___t_i_m_e_r___a_p_i.html#af49a90087a53c8019d642a3f7abaa8ad',1,'timer_api_t::open()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a84d48960cdfe867ef54fd4635a85ceeb',1,'transfer_api_t::open()'],['../group___u_a_r_t___a_p_i.html#a962363eebf6d497894b5ca569ebb87bb',1,'uart_api_t::open()'],['../group___r_m___c_o_m_m_s___a_p_i.html#aef6d79b01056d9ea88e9fa5f0cd3f229',1,'rm_comms_api_t::open()'],['../group___r_m___h_s300_x___a_p_i.html#abdb7abf73635db350cf99e4041e1eb37',1,'rm_hs300x_api_t::open()'],['../group___r_m___h_s400_x___a_p_i.html#af60c3ba93861728b92487a5e727381d8',1,'rm_hs400x_api_t::open()'],['../group___r_m___o_b1203___a_p_i.html#a3d137e0be66735864d9a95669fa2c1f3',1,'rm_ob1203_api_t::open()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5ba1799ed3669a41fd7f0f436706367b',1,'rm_zmod4xxx_api_t::open()'],['../group___i_n_t_c___i_r_q.html#aa4a57502905a2ee4b4f45d7e7514f1de',1,'intc_irq_instance_ctrl_t::open()'],['../group___m_h_u___n_s.html#aa08a8ce470c0b9e6e561b50e40fc0cb7',1,'mhu_ns_instance_ctrl_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#a5ba254765d8e48946ae9b95ff7645fb3',1,'mhu_ns_swint_get_instance_ctrl_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#af4778eb4d67e116a2743c2212d263637',1,'mhu_ns_swint_set_instance_ctrl_t::open()'],['../group___m_h_u___s.html#a1304f9353f2506daf66e4d6612fbb158',1,'mhu_s_instance_ctrl_t::open()'],['../group___r_s_p_i.html#a1e9156851592aa749ab8d971c24da93e',1,'rspi_instance_ctrl_t::open()'],['../group___r_m___c_o_m_m_s___i2_c.html#ab623109ad8cbac1510e511ec6d93972f',1,'rm_comms_i2c_instance_ctrl_t::open()'],['../group___r_m___h_s300_x.html#a5031dbec8375c4b2be896166fa3457b4',1,'rm_hs300x_instance_ctrl_t::open()'],['../group___r_m___h_s400_x.html#a45b5fb27d54a8998d37ae8f90bc6bc47',1,'rm_hs400x_instance_ctrl_t::open()'],['../group___r_m___o_b1203.html#af1adb0f5fdb98f08dc0795c8946b04e5',1,'rm_ob1203_instance_ctrl_t::open()'],['../group___r_m___z_m_o_d4_x_x_x.html#a21b842e14881cd866264417021fedcda',1,'rm_zmod4xxx_instance_ctrl_t::open()']]], - ['operating_5fmode',['operating_mode',['../group___s_p_i___a_p_i.html#ab81d9fc86a397dbd72e57bca4b0aa107',1,'spi_cfg_t']]], + ['offsetset',['offsetSet',['../group___a_d_c___a_p_i.html#a305b2c2466cd88fdddf6134db542dc7e',1,'adc_api_t']]], + ['open',['open',['../group___a_d_c___a_p_i.html#afa184c06541e3fd9f90fc12ed775f468',1,'adc_api_t::open()'],['../group___c_a_n___a_p_i.html#a44ef1a1a3726114b30f228c54b0d44ce',1,'can_api_t::open()'],['../group___c_r_c___a_p_i.html#ad1c70317b3a73fc3cb102e6c673111be',1,'crc_api_t::open()'],['../group___e_l_c___a_p_i.html#ac4f753f3fcae95e036d24e3d6a84d1f5',1,'elc_api_t::open()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a639337eee77555b934cbf8238e0f8449',1,'external_irq_api_t::open()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#af5a9589a49c68b926de7deaefc272267',1,'i2c_master_status_t::open()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a6a35b07fde984333fdce6859dfd56e64',1,'i2c_master_api_t::open()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a3f978820e80073c05ef95e3b1ef31601',1,'i2c_slave_api_t::open()'],['../group___i3_c___a_p_i.html#a963e13cc6b3cf1903a01ed87901eb6a9',1,'i3c_api_t::open()'],['../group___i_o_p_o_r_t___a_p_i.html#ae9cd5d4b83ebe842e9f258aef4850c59',1,'ioport_api_t::open()'],['../group___m_h_u___a_p_i.html#ac3886717d220de2c7861063acceee859',1,'mhu_api_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a94dc2c05c8c387042d23a95b08a2f760',1,'mhu_ns_swint_get_api_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a451a6c711c6a8ea92bd71bcc0ee418b8',1,'mhu_ns_swint_set_api_t::open()'],['../group___p_d_m___a_p_i.html#a9144eb5d334c37cba16c54a931ff0b39',1,'pdm_api_t::open()'],['../group___p_o_e_g___a_p_i.html#a41c511a6b1b828d54f180b729ae4fe55',1,'poeg_api_t::open()'],['../group___r_t_c___a_p_i.html#aafcde8ffb1e01cccbfa0eb9d0506674a',1,'rtc_api_t::open()'],['../group___s_p_i___a_p_i.html#a97177a6162ebad73907c7f23c1411426',1,'spi_api_t::open()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#a6b8a1ae0eed7bca555c94959c1314ae3',1,'spi_flash_api_t::open()'],['../group___t_i_m_e_r___a_p_i.html#af49a90087a53c8019d642a3f7abaa8ad',1,'timer_api_t::open()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a84d48960cdfe867ef54fd4635a85ceeb',1,'transfer_api_t::open()'],['../group___u_a_r_t___a_p_i.html#a962363eebf6d497894b5ca569ebb87bb',1,'uart_api_t::open()'],['../group___w_d_t___a_p_i.html#af03fc1703319e1adacabc412c7e3de31',1,'wdt_api_t::open()'],['../group___r_m___c_o_m_m_s___a_p_i.html#aef6d79b01056d9ea88e9fa5f0cd3f229',1,'rm_comms_api_t::open()'],['../group___r_m___h_s300_x___a_p_i.html#abdb7abf73635db350cf99e4041e1eb37',1,'rm_hs300x_api_t::open()'],['../group___r_m___h_s400_x___a_p_i.html#af60c3ba93861728b92487a5e727381d8',1,'rm_hs400x_api_t::open()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5ba1799ed3669a41fd7f0f436706367b',1,'rm_zmod4xxx_api_t::open()'],['../group___i3_c___b.html#ae2ad6ece73c0f4b046708ab96f7c1842',1,'i3c_b_instance_ctrl_t::open()'],['../group___i_n_t_c___i_r_q.html#aa4a57502905a2ee4b4f45d7e7514f1de',1,'intc_irq_instance_ctrl_t::open()'],['../group___i_n_t_c___n_m_i.html#a4f439c63a9660ded18be6210ad5c61f1',1,'intc_nmi_instance_ctrl_t::open()'],['../group___i_n_t_c___t_i_n_t.html#a418c0307cdb3fcf14d74e151652ffd78',1,'intc_tint_instance_ctrl_t::open()'],['../group___m_h_u___b___n_s.html#af4c1fc022c5b71589516dd2ca5789a92',1,'mhu_b_ns_instance_ctrl_t::open()'],['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#a4f56a5fad7755cca0501ce4641ed6979',1,'mhu_b_ns_swint_get_instance_ctrl_t::open()'],['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#a62ec267ef9eb17835f70e99d23c9e840',1,'mhu_b_ns_swint_set_instance_ctrl_t::open()'],['../group___m_h_u___b___s.html#a294d326c6a08e1f19a58d2a2bbc88ca5',1,'mhu_b_s_instance_ctrl_t::open()'],['../group___m_h_u___n_s.html#aa08a8ce470c0b9e6e561b50e40fc0cb7',1,'mhu_ns_instance_ctrl_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#a5ba254765d8e48946ae9b95ff7645fb3',1,'mhu_ns_swint_get_instance_ctrl_t::open()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#af4778eb4d67e116a2743c2212d263637',1,'mhu_ns_swint_set_instance_ctrl_t::open()'],['../group___m_h_u___s.html#a1304f9353f2506daf66e4d6612fbb158',1,'mhu_s_instance_ctrl_t::open()'],['../group___m_t_u3.html#a3f5bfdfa30fd7e9c0d2d9ea355536d12',1,'mtu3_instance_ctrl_t::open()'],['../group___r_s_p_i.html#a1e9156851592aa749ab8d971c24da93e',1,'rspi_instance_ctrl_t::open()'],['../group___r_t_c.html#a531f0ac7759fe0ec50841022ae9a9bfe',1,'rtc_instance_ctrl_t::open()'],['../group___s_p_i___b.html#a63826f2e79dbe1834c3d99084558f71f',1,'spi_b_instance_ctrl_t::open()'],['../group___r_m___c_o_m_m_s___i2_c.html#ab623109ad8cbac1510e511ec6d93972f',1,'rm_comms_i2c_instance_ctrl_t::open()'],['../group___r_m___h_s300_x.html#a5031dbec8375c4b2be896166fa3457b4',1,'rm_hs300x_instance_ctrl_t::open()'],['../group___r_m___h_s400_x.html#a45b5fb27d54a8998d37ae8f90bc6bc47',1,'rm_hs400x_instance_ctrl_t::open()'],['../group___r_m___z_m_o_d4_x_x_x.html#a21b842e14881cd866264417021fedcda',1,'rm_zmod4xxx_instance_ctrl_t::open()']]], + ['operating_5fmode',['operating_mode',['../group___s_p_i___a_p_i.html#ab81d9fc86a397dbd72e57bca4b0aa107',1,'spi_cfg_t::operating_mode()'],['../group___a_d_c___c.html#a81f2c8156907fdc5b0055cd8443f3f25',1,'adc_c_extended_cfg_t::operating_mode()']]], + ['operation',['operation',['../group___i_o_p_o_r_t.html#adbcdc352d8f992d85fa368ba34c33530',1,'ioport_event_single_t::operation()'],['../group___i_o_p_o_r_t.html#a0092081f02f3d9b89d575f613fc06380',1,'ioport_event_group_output_t::operation()']]], ['options',['options',['../group___c_a_n___a_p_i.html#a27833816de50e1ad5b16b42856653ad8',1,'can_frame_t']]], + ['oscillator_5ffrequency',['oscillator_frequency',['../group___i3_c___b.html#adebd51c965faf0fe497971c15e669a91',1,'i3c_b_slave_command_response_info_t']]], + ['oscillator_5finaccuracy',['oscillator_inaccuracy',['../group___i3_c___b.html#a0dbd28cc4de1cbcf7dd3427feef969a2',1,'i3c_b_slave_command_response_info_t']]], ['output_5fdisable',['output_disable',['../group___g_p_t.html#ac1bab8a37aeb13d8f27d05e44d567bc9',1,'gpt_extended_pwm_cfg_t']]], ['output_5fenabled',['output_enabled',['../group___g_p_t.html#a5f0b69cc2d3cfe89baefcf348563df21',1,'gpt_output_pin_t']]], + ['output_5fpin_5flevel_5fa',['output_pin_level_a',['../group___m_t_u3.html#a2a34e1c4ab61754e34a02e7ee80c6073',1,'mtu3_output_pin_t']]], + ['output_5fpin_5flevel_5fb',['output_pin_level_b',['../group___m_t_u3.html#a55b86cba3e5d0552f18ffbe4db8bd8ac',1,'mtu3_output_pin_t']]], ['outputdisable',['outputDisable',['../group___p_o_e_g___a_p_i.html#afe1feb1a5288478eea8d339ffaa1c68e',1,'poeg_api_t']]], - ['overflow_5fcounter',['overflow_counter',['../group___r_m___o_b1203___a_p_i.html#a4c7f200673051f7f58eb32ff1e377eea',1,'rm_ob1203_fifo_info_t']]], + ['over_5fvoltage_5flower_5flimit_5fdetection_5fenable',['over_voltage_lower_limit_detection_enable',['../group___p_d_m.html#ac67dc74127d1809c2f5831150d313b83',1,'pdm_extended_cfg_t']]], + ['over_5fvoltage_5fupper_5flimit_5fdetection_5fenable',['over_voltage_upper_limit_detection_enable',['../group___p_d_m.html#aa316525186852ad3ceb518911c92fd48',1,'pdm_extended_cfg_t']]], + ['overvoltage_5fdetection_5flower_5flimit',['overvoltage_detection_lower_limit',['../group___p_d_m.html#afd360fdbe979a72620ce845f137a4390',1,'pdm_extended_cfg_t']]], + ['overvoltage_5fdetection_5fupper_5flimit',['overvoltage_detection_upper_limit',['../group___p_d_m.html#ab9e18bf68240ab5a3ddf4cc59a1fafb2',1,'pdm_extended_cfg_t']]], + ['overwrite_5fcontrol',['overwrite_control',['../group___i_o_p_o_r_t.html#afa164460f4684605bbbe4c529ccdcca0',1,'ioport_event_group_input_t']]], ['ozone_5fconcentration',['ozone_concentration',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a492587fbeb536fcd7994596a6f2c4176',1,'rm_zmod4xxx_oaq_2nd_data_t']]] ]; diff --git a/search/variables_d.js b/search/variables_d.js index 344d91b..eec22cd 100644 --- a/search/variables_d.js +++ b/search/variables_d.js @@ -1,108 +1,94 @@ var searchData= [ + ['p_5faddress',['p_address',['../group___a_d_c___a_p_i.html#aae60e54e2e18efa5e341cf0669476681',1,'adc_info_t::p_address()'],['../group___a_d_c___a_p_i.html#a90f47e90b6be16f8705cbfc9789120be',1,'adc_info_t::p_address()']]], ['p_5fafl',['p_afl',['../group___c_a_n_f_d.html#a3bcb58bb257835c3618f28751aad29a5',1,'canfd_extended_cfg_t']]], - ['p_5fapi',['p_api',['../group___c_a_n___a_p_i.html#a7630cfae3a82f8ecd7bbce599ef992ee',1,'can_instance_t::p_api()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a1c64bba3bbf9346831933b4d70b3ae9c',1,'external_irq_instance_t::p_api()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a3258c94576c0bc4a69095906a314386d',1,'i2c_master_instance_t::p_api()'],['../group___i_o_p_o_r_t___a_p_i.html#a1efa98e218609e4171542ebfae213765',1,'ioport_instance_t::p_api()'],['../group___m_h_u___a_p_i.html#af10328b8b91b88072cc88d78d4e19585',1,'mhu_instance_t::p_api()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a713e559aa5c0cb0309b7650a91391264',1,'mhu_ns_swint_get_instance_t::p_api()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#ab88ce5c4258642652c78ac702a56d15f',1,'mhu_ns_swint_set_instance_t::p_api()'],['../group___p_o_e_g___a_p_i.html#aa5e1aa9d5416c9ca24132cddae7565f3',1,'poeg_instance_t::p_api()'],['../group___s_p_i___a_p_i.html#a3fa6490704fecf976812df4a6ba9a494',1,'spi_instance_t::p_api()'],['../group___t_i_m_e_r___a_p_i.html#a552ef9466567fbe3c7c945e1efe3643c',1,'timer_instance_t::p_api()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a12d4ba0d43dd22fda6b1b238d2fa17b6',1,'transfer_instance_t::p_api()'],['../group___u_a_r_t___a_p_i.html#ace2b32a59ca156c32cee5860fb5db311',1,'uart_instance_t::p_api()'],['../group___r_m___h_s300_x___a_p_i.html#a42be32706089d71251045106dfeb9e82',1,'rm_hs300x_instance_t::p_api()'],['../group___r_m___h_s400_x___a_p_i.html#a5ecc1b981019560e1035eb47bb02e52f',1,'rm_hs400x_instance_t::p_api()'],['../group___r_m___o_b1203___a_p_i.html#ab0b7710c3ff54f649c0f544612570e84',1,'rm_ob1203_instance_t::p_api()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a92ddaabd0705326f5e1fcf0a4ced9ba7',1,'rm_zmod4xxx_instance_t::p_api()'],['../group___r_m___o_b1203.html#ada67105cd21a7dae41a9e6a46e96dd1d',1,'rm_ob1203_mode_extended_cfg_t::p_api()']]], - ['p_5fbaud_5fsetting',['p_baud_setting',['../group___s_c_i_f___u_a_r_t.html#aa990e9d3a5b69c41397f92a86a30174d',1,'scif_uart_extended_cfg_t']]], + ['p_5fapi',['p_api',['../group___a_d_c___a_p_i.html#a0d5d2d55cc37383172efd4d4c1e0171f',1,'adc_instance_t::p_api()'],['../group___c_a_n___a_p_i.html#a7630cfae3a82f8ecd7bbce599ef992ee',1,'can_instance_t::p_api()'],['../group___c_r_c___a_p_i.html#afbbb090a3e9cfa08f51cdd89a3389fac',1,'crc_instance_t::p_api()'],['../group___e_l_c___a_p_i.html#a9919c68bc6249d294d121715277a53dd',1,'elc_instance_t::p_api()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a1c64bba3bbf9346831933b4d70b3ae9c',1,'external_irq_instance_t::p_api()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a3258c94576c0bc4a69095906a314386d',1,'i2c_master_instance_t::p_api()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a63e78c999abc0cf1eea4a506bb14b720',1,'i2c_slave_instance_t::p_api()'],['../group___i3_c___a_p_i.html#aac576dcfc7c8ada6d77bba14314a8859',1,'i3c_instance_t::p_api()'],['../group___i_o_p_o_r_t___a_p_i.html#a1efa98e218609e4171542ebfae213765',1,'ioport_instance_t::p_api()'],['../group___m_h_u___a_p_i.html#af10328b8b91b88072cc88d78d4e19585',1,'mhu_instance_t::p_api()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a713e559aa5c0cb0309b7650a91391264',1,'mhu_ns_swint_get_instance_t::p_api()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#ab88ce5c4258642652c78ac702a56d15f',1,'mhu_ns_swint_set_instance_t::p_api()'],['../group___p_d_m___a_p_i.html#a82eac8296ce13d4a73f461bd10bf9242',1,'pdm_instance_t::p_api()'],['../group___p_o_e_g___a_p_i.html#aa5e1aa9d5416c9ca24132cddae7565f3',1,'poeg_instance_t::p_api()'],['../group___r_t_c___a_p_i.html#a8d5beb93c07f858029d0d77e8e5b770e',1,'rtc_instance_t::p_api()'],['../group___s_p_i___a_p_i.html#a3fa6490704fecf976812df4a6ba9a494',1,'spi_instance_t::p_api()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#aa393a0e23c69a916e8c30e9dc4e5513b',1,'spi_flash_instance_t::p_api()'],['../group___t_i_m_e_r___a_p_i.html#a552ef9466567fbe3c7c945e1efe3643c',1,'timer_instance_t::p_api()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a12d4ba0d43dd22fda6b1b238d2fa17b6',1,'transfer_instance_t::p_api()'],['../group___u_a_r_t___a_p_i.html#ace2b32a59ca156c32cee5860fb5db311',1,'uart_instance_t::p_api()'],['../group___w_d_t___a_p_i.html#a54e6814335b4dec365a1efb61cf82fe1',1,'wdt_instance_t::p_api()'],['../group___r_m___h_s300_x___a_p_i.html#a42be32706089d71251045106dfeb9e82',1,'rm_hs300x_instance_t::p_api()'],['../group___r_m___h_s400_x___a_p_i.html#a5ecc1b981019560e1035eb47bb02e52f',1,'rm_hs400x_instance_t::p_api()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a92ddaabd0705326f5e1fcf0a4ced9ba7',1,'rm_zmod4xxx_instance_t::p_api()']]], + ['p_5fbaud_5fsetting',['p_baud_setting',['../group___s_c_i___b___u_a_r_t.html#aa1e49fb13b37283c189e265be1b67fef',1,'sci_b_uart_extended_cfg_t::p_baud_setting()'],['../group___s_c_i_f___u_a_r_t.html#aa990e9d3a5b69c41397f92a86a30174d',1,'scif_uart_extended_cfg_t::p_baud_setting()']]], ['p_5fbit_5ftiming',['p_bit_timing',['../group___c_a_n___a_p_i.html#a751918f74effc746b381a75c971af879',1,'can_cfg_t']]], + ['p_5fbuffer',['p_buffer',['../group___i3_c___a_p_i.html#a71fb8d5e49ee1c39fdc190b5c5fd7e1c',1,'i3c_command_descriptor_t']]], ['p_5fbus',['p_bus',['../group___r_m___c_o_m_m_s___i2_c.html#a8f3ef7c72a9bc7468fd60dc052b07c74',1,'rm_comms_i2c_instance_ctrl_t']]], - ['p_5fcallback',['p_callback',['../group___c_a_n___a_p_i.html#a8e79eb818c5aca4f925f2323f52d08f1',1,'can_cfg_t::p_callback()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ac8dadd8ef06c625a7b02c2eb06da7959',1,'external_irq_cfg_t::p_callback()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#adbd429cb907c4f2484900e4b0845b8f8',1,'i2c_master_cfg_t::p_callback()'],['../group___m_h_u___a_p_i.html#ae6ee1dfc1a00326e8b26dfc9701f0b31',1,'mhu_cfg_t::p_callback()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a7e503fe06a35c9645b5081bbfa0179ce',1,'mhu_ns_swint_get_cfg_t::p_callback()'],['../group___p_o_e_g___a_p_i.html#a70ca0636c969217533571c505f2e68ca',1,'poeg_cfg_t::p_callback()'],['../group___s_p_i___a_p_i.html#ae9becc8fedef1f029e6adc788611a276',1,'spi_cfg_t::p_callback()'],['../group___t_i_m_e_r___a_p_i.html#a7d2f434f07723a53b504751e9e5ac540',1,'timer_cfg_t::p_callback()'],['../group___u_a_r_t___a_p_i.html#a83efd5806d31817983f75bab4d415c87',1,'uart_cfg_t::p_callback()'],['../group___r_m___c_o_m_m_s___a_p_i.html#aa7c637235b98c380a288bb1e5bbb4569',1,'rm_comms_cfg_t::p_callback()'],['../group___r_m___h_s300_x___a_p_i.html#a7e4a14435b06b381e41e2838af87a38c',1,'rm_hs300x_cfg_t::p_callback()']]], - ['p_5fcfg',['p_cfg',['../group___c_a_n___a_p_i.html#a064fa2cd7b88461619693b1e2cad9530',1,'can_instance_t::p_cfg()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ab32ad9ad3e7627390225d731f2834fd7',1,'external_irq_instance_t::p_cfg()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#aaff14ac14a40b21573f86fa65abe34f1',1,'i2c_master_instance_t::p_cfg()'],['../group___i_o_p_o_r_t___a_p_i.html#acef812bbce3afd1f4295fa7ff8b9ebfc',1,'ioport_instance_t::p_cfg()'],['../group___m_h_u___a_p_i.html#a2f882461a857251d03cbc5d63a6d52cb',1,'mhu_instance_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a13087ad031ff2d00bf58b47538a7d91a',1,'mhu_ns_swint_get_instance_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a4a58ec04b7950333b9de087d35219991',1,'mhu_ns_swint_set_instance_t::p_cfg()'],['../group___p_o_e_g___a_p_i.html#a3952f94b0ec56e7d66d5e806578be4f4',1,'poeg_instance_t::p_cfg()'],['../group___s_p_i___a_p_i.html#a792a14261f15cfbf582d683c16f3da72',1,'spi_instance_t::p_cfg()'],['../group___t_i_m_e_r___a_p_i.html#aebe4bd4819b5d24a8d4fa847359b6afa',1,'timer_instance_t::p_cfg()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a8ffd253e9be22795d2736d6dc683d710',1,'transfer_instance_t::p_cfg()'],['../group___u_a_r_t___a_p_i.html#a07af9be02a70a457bc4d5207c77e3bee',1,'uart_instance_t::p_cfg()'],['../group___r_m___h_s300_x___a_p_i.html#adc885d33644960e6c14860dfe1cc1cbe',1,'rm_hs300x_instance_t::p_cfg()'],['../group___r_m___h_s400_x___a_p_i.html#a9fa007f86deb655f999b5d0b1c4d65cb',1,'rm_hs400x_instance_t::p_cfg()'],['../group___r_m___o_b1203___a_p_i.html#a59afad08ce30308e6606c3362b903b47',1,'rm_ob1203_instance_t::p_cfg()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aac9344fd8efc73b82c65e1adcec5f88c',1,'rm_zmod4xxx_instance_t::p_cfg()'],['../group___m_h_u___n_s.html#a1ee2e9cadf1df4a9e3803a139c910f9a',1,'mhu_ns_instance_ctrl_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ac3fa10e51c1700db408b9e2febca0c45',1,'mhu_ns_swint_get_instance_ctrl_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#a2c2dcafbf0c66a844564cf48c5486f3f',1,'mhu_ns_swint_set_instance_ctrl_t::p_cfg()'],['../group___m_h_u___s.html#a721510fae53319c0919a0114969aad51',1,'mhu_s_instance_ctrl_t::p_cfg()'],['../group___r_s_p_i.html#af4b65717f05932609172a0828cee1db4',1,'rspi_instance_ctrl_t::p_cfg()'],['../group___r_m___c_o_m_m_s___i2_c.html#a88d8fbd6294057b09ea0231637643011',1,'rm_comms_i2c_instance_ctrl_t::p_cfg()'],['../group___r_m___h_s300_x.html#a60925699b63829347739382ba48b1d13',1,'rm_hs300x_instance_ctrl_t::p_cfg()'],['../group___r_m___h_s400_x.html#a8a565adac63233a59d03487d1417b33b',1,'rm_hs400x_instance_ctrl_t::p_cfg()'],['../group___r_m___o_b1203.html#a1f6bcc914fc1ce1cc6f6698aa8221cad',1,'rm_ob1203_instance_ctrl_t::p_cfg()'],['../group___r_m___z_m_o_d4_x_x_x.html#a55df2cbb3cdc4bbeb75db1dba936d2b1',1,'rm_zmod4xxx_instance_ctrl_t::p_cfg()']]], - ['p_5fcomms_5fcallback',['p_comms_callback',['../group___r_m___h_s400_x___a_p_i.html#a7050fd08733d97f90d0ce05faf6b2848',1,'rm_hs400x_cfg_t::p_comms_callback()'],['../group___r_m___o_b1203___a_p_i.html#a95b8a8c5eb90336511e811dcc960546c',1,'rm_ob1203_cfg_t::p_comms_callback()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8f25d9bf4ff36c9dcf976a029ef49c10',1,'rm_zmod4xxx_cfg_t::p_comms_callback()'],['../group___r_m___h_s400_x.html#a6288740f2724536ce15942ec1e46ee3b',1,'rm_hs400x_instance_ctrl_t::p_comms_callback()'],['../group___r_m___o_b1203.html#abaf0ccf0e2e10792107bdcb85790bad7',1,'rm_ob1203_instance_ctrl_t::p_comms_callback()'],['../group___r_m___z_m_o_d4_x_x_x.html#a57301a9ef64a2317881cdc7d89783fb5',1,'rm_zmod4xxx_instance_ctrl_t::p_comms_callback()']]], - ['p_5fcomms_5fi2c_5finstance',['p_comms_i2c_instance',['../group___r_m___h_s300_x.html#a36c21d0366384c0913491c536e81c280',1,'rm_hs300x_instance_ctrl_t::p_comms_i2c_instance()'],['../group___r_m___h_s400_x.html#a977c323e9b1fba0858f58d4e9baf0ad5',1,'rm_hs400x_instance_ctrl_t::p_comms_i2c_instance()'],['../group___r_m___o_b1203.html#a28ff7aa34215ceac46c9837869566943',1,'rm_ob1203_instance_ctrl_t::p_comms_i2c_instance()'],['../group___r_m___z_m_o_d4_x_x_x.html#afc82544a966e7f146ceee4ef404b7582',1,'rm_zmod4xxx_instance_ctrl_t::p_comms_i2c_instance()']]], - ['p_5fcomms_5finstance',['p_comms_instance',['../group___r_m___h_s400_x___a_p_i.html#a36931367054e059ebbebccfda169927d',1,'rm_hs400x_cfg_t::p_comms_instance()'],['../group___r_m___o_b1203___a_p_i.html#a8a9cdc12354f28a3e33700e5df67de20',1,'rm_ob1203_cfg_t::p_comms_instance()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8cce7b013ebccc3b0b0aed0e9436e922',1,'rm_zmod4xxx_cfg_t::p_comms_instance()']]], - ['p_5fcontext',['p_context',['../group___c_a_n___a_p_i.html#a663ed64c927057ab0ac45d02505dc758',1,'can_callback_args_t::p_context()'],['../group___c_a_n___a_p_i.html#a3699700f0a08a75159483ac2825dca90',1,'can_cfg_t::p_context()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ade4504697e9cde129dfbe8796985f66a',1,'external_irq_callback_args_t::p_context()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a4237b56a314b7e145aefb59e6e1def1b',1,'external_irq_cfg_t::p_context()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ab98d1221b3a246270ef56a57d947ac0c',1,'i2c_master_callback_args_t::p_context()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a37cfd76fa962aea67e76d6efaf16dfd7',1,'i2c_master_cfg_t::p_context()'],['../group___m_h_u___a_p_i.html#a2a3e7eaaacf7c526d9fe10427817f68d',1,'mhu_callback_args_t::p_context()'],['../group___m_h_u___a_p_i.html#ad3cc3a49b8f6d7cbbcc6a72833f51e2c',1,'mhu_cfg_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ac3fe2eadbd870c342ddda1aaef641568',1,'mhu_ns_swint_get_callback_args_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ab94275a9966c5a59c8bc8a06cbb2647c',1,'mhu_ns_swint_get_cfg_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a43558a76b254d006a32b55d251341171',1,'mhu_ns_swint_set_callback_args_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a7d3d94f9b3b9162cc59931ac56c36a73',1,'mhu_ns_swint_set_cfg_t::p_context()'],['../group___p_o_e_g___a_p_i.html#a87c6c18eb74b68a3849822c777864f79',1,'poeg_callback_args_t::p_context()'],['../group___p_o_e_g___a_p_i.html#a4c643319683a792e608a1331f00c0d9c',1,'poeg_cfg_t::p_context()'],['../group___s_p_i___a_p_i.html#acdafc89def1a4325004c5f7022e9488f',1,'spi_callback_args_t::p_context()'],['../group___s_p_i___a_p_i.html#ac54861ff0fab10bfb9cd8834c31ad9c0',1,'spi_cfg_t::p_context()'],['../group___t_i_m_e_r___a_p_i.html#a83bdbe351fc323e334f96bbf41420a07',1,'timer_callback_args_t::p_context()'],['../group___t_i_m_e_r___a_p_i.html#ad6aac1202b591958b40f1bc018abd387',1,'timer_cfg_t::p_context()'],['../group___u_a_r_t___a_p_i.html#af39b34ea2c03d20876045cbe6cba70a7',1,'uart_callback_args_t::p_context()'],['../group___u_a_r_t___a_p_i.html#a2ef1ef69636aec9cbfbac44db4a67db6',1,'uart_cfg_t::p_context()'],['../group___r_m___c_o_m_m_s___a_p_i.html#ac2f5d7d5bc7207eb617bcc8b668dc5b3',1,'rm_comms_cfg_t::p_context()'],['../group___r_m___h_s300_x___a_p_i.html#a2ee1168f444f962fd1807aa6a48776cb',1,'rm_hs300x_cfg_t::p_context()'],['../group___r_m___h_s400_x___a_p_i.html#a1275c87fc13e4effb686e72343b85ad2',1,'rm_hs400x_cfg_t::p_context()'],['../group___r_m___o_b1203___a_p_i.html#adf018d2e314ba41ba4dfb56ebd411501',1,'rm_ob1203_cfg_t::p_context()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abc68dcd903ac59de8c478b0d22d25bfa',1,'rm_zmod4xxx_cfg_t::p_context()'],['../group___i_n_t_c___i_r_q.html#a54e8132da6a0a3e951c50e71cf10d90b',1,'intc_irq_instance_ctrl_t::p_context()'],['../group___r_m___c_o_m_m_s___i2_c.html#a2bb5f217d51637d4e27b8da6761c2021',1,'rm_comms_i2c_instance_ctrl_t::p_context()'],['../group___r_m___h_s300_x.html#a36436afd1ed74c2bbf34eab8e5af34bc',1,'rm_hs300x_instance_ctrl_t::p_context()'],['../group___r_m___h_s400_x.html#afae51fca4d0796c27b1234c4d050f9e9',1,'rm_hs400x_instance_ctrl_t::p_context()'],['../group___r_m___o_b1203.html#a761b053d6f0276e7cdbef4ab857141b9',1,'rm_ob1203_instance_ctrl_t::p_context()'],['../group___r_m___z_m_o_d4_x_x_x.html#a6151d069461571549ecbf52193ab8624',1,'rm_zmod4xxx_instance_ctrl_t::p_context()']]], - ['p_5fctrl',['p_ctrl',['../group___c_a_n___a_p_i.html#ae4d4d032f3e4f0688879027286ae4dbe',1,'can_instance_t::p_ctrl()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a7bf006f685a26836095b1660bf2eb263',1,'external_irq_instance_t::p_ctrl()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a61db7ac4bf7c96d6cbc28c4db281fd6f',1,'i2c_master_instance_t::p_ctrl()'],['../group___i_o_p_o_r_t___a_p_i.html#af318c6344f0b7679df2ca79bf24bad6e',1,'ioport_instance_t::p_ctrl()'],['../group___m_h_u___a_p_i.html#a5a66c1be79665ce4b5d802f568d371cf',1,'mhu_instance_t::p_ctrl()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#af7a697adf7a1b68f31c055c8f2fe0836',1,'mhu_ns_swint_get_instance_t::p_ctrl()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#ad486d0fcb0595022f8d9dfcd9860e06f',1,'mhu_ns_swint_set_instance_t::p_ctrl()'],['../group___p_o_e_g___a_p_i.html#a475ca15f8e94a914ea5889e66b4d5ccc',1,'poeg_instance_t::p_ctrl()'],['../group___s_p_i___a_p_i.html#abd5918ae9720bacf1708e2a2dfed564b',1,'spi_instance_t::p_ctrl()'],['../group___t_i_m_e_r___a_p_i.html#a641f967b15711f0e91bc0f41fc8ebfe6',1,'timer_instance_t::p_ctrl()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a655547e7bbc2c8be77ac085f3417a389',1,'transfer_instance_t::p_ctrl()'],['../group___u_a_r_t___a_p_i.html#ae01cedb63e8739651eb14d0ccc9b54a4',1,'uart_instance_t::p_ctrl()'],['../group___r_m___h_s300_x___a_p_i.html#a70416ff9548ecd27d828617bd5dfdb8c',1,'rm_hs300x_instance_t::p_ctrl()'],['../group___r_m___h_s400_x___a_p_i.html#a9b456f4ea4caeb04061bca271c5cab66',1,'rm_hs400x_instance_t::p_ctrl()'],['../group___r_m___o_b1203___a_p_i.html#a5bdd78a4533b146b93676fb1f630eaee',1,'rm_ob1203_instance_t::p_ctrl()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5ce0b0a7d1b59a0ad9088449e884cbb4',1,'rm_zmod4xxx_instance_t::p_ctrl()']]], + ['p_5fcallback',['p_callback',['../group___a_d_c___a_p_i.html#a0e6dc3fd369994f549bf634f482fa4ae',1,'adc_cfg_t::p_callback()'],['../group___c_a_n___a_p_i.html#a8e79eb818c5aca4f925f2323f52d08f1',1,'can_cfg_t::p_callback()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ac8dadd8ef06c625a7b02c2eb06da7959',1,'external_irq_cfg_t::p_callback()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#adbd429cb907c4f2484900e4b0845b8f8',1,'i2c_master_cfg_t::p_callback()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ac194239c95dc0a5a71e220937295d67c',1,'i2c_slave_cfg_t::p_callback()'],['../group___i3_c___a_p_i.html#a476eb1c4e5a0defaa54d3b4a11ce099a',1,'i3c_cfg_t::p_callback()'],['../group___m_h_u___a_p_i.html#ae6ee1dfc1a00326e8b26dfc9701f0b31',1,'mhu_cfg_t::p_callback()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a7e503fe06a35c9645b5081bbfa0179ce',1,'mhu_ns_swint_get_cfg_t::p_callback()'],['../group___p_d_m___a_p_i.html#aee193c08a4d958f6dc4905479594109f',1,'pdm_cfg_t::p_callback()'],['../group___p_o_e_g___a_p_i.html#a70ca0636c969217533571c505f2e68ca',1,'poeg_cfg_t::p_callback()'],['../group___r_t_c___a_p_i.html#acb6915cb2c55dd196d4c35cbf805bab2',1,'rtc_cfg_t::p_callback()'],['../group___s_p_i___a_p_i.html#ae9becc8fedef1f029e6adc788611a276',1,'spi_cfg_t::p_callback()'],['../group___t_i_m_e_r___a_p_i.html#a7d2f434f07723a53b504751e9e5ac540',1,'timer_cfg_t::p_callback()'],['../group___u_a_r_t___a_p_i.html#a83efd5806d31817983f75bab4d415c87',1,'uart_cfg_t::p_callback()'],['../group___w_d_t___a_p_i.html#a123b3dbdef324ba5e27939fef7575cb6',1,'wdt_cfg_t::p_callback()'],['../group___r_m___c_o_m_m_s___a_p_i.html#aa7c637235b98c380a288bb1e5bbb4569',1,'rm_comms_cfg_t::p_callback()'],['../group___r_m___h_s300_x___a_p_i.html#a7e4a14435b06b381e41e2838af87a38c',1,'rm_hs300x_cfg_t::p_callback()'],['../group___d_m_a_c___b.html#a128e8c1345cc9470629fcb55871311a5',1,'dmac_b_extended_cfg_t::p_callback()'],['../group___m_t_u3.html#a1424b0f596d7101a897b5de751c06239',1,'mtu3_instance_ctrl_t::p_callback()']]], + ['p_5fcallback_5fmemory',['p_callback_memory',['../group___m_t_u3.html#a0985147b6d048419a186f194f670f606',1,'mtu3_instance_ctrl_t']]], + ['p_5fcfg',['p_cfg',['../group___a_d_c___a_p_i.html#a68d06edf3f5b759698d3ce981e773ef0',1,'adc_instance_t::p_cfg()'],['../group___c_a_n___a_p_i.html#a064fa2cd7b88461619693b1e2cad9530',1,'can_instance_t::p_cfg()'],['../group___c_r_c___a_p_i.html#aba878011b00301dd2d99582eda689dcd',1,'crc_instance_t::p_cfg()'],['../group___e_l_c___a_p_i.html#a90896863b4141cbbd2eb4d2eea7e58e4',1,'elc_instance_t::p_cfg()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ab32ad9ad3e7627390225d731f2834fd7',1,'external_irq_instance_t::p_cfg()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#aaff14ac14a40b21573f86fa65abe34f1',1,'i2c_master_instance_t::p_cfg()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ab197d0cd3aae178af5cc7add1a40ad44',1,'i2c_slave_instance_t::p_cfg()'],['../group___i3_c___a_p_i.html#a9076df3ea1eaa0842da95560f98309af',1,'i3c_instance_t::p_cfg()'],['../group___i_o_p_o_r_t___a_p_i.html#acef812bbce3afd1f4295fa7ff8b9ebfc',1,'ioport_instance_t::p_cfg()'],['../group___m_h_u___a_p_i.html#a2f882461a857251d03cbc5d63a6d52cb',1,'mhu_instance_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a13087ad031ff2d00bf58b47538a7d91a',1,'mhu_ns_swint_get_instance_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a4a58ec04b7950333b9de087d35219991',1,'mhu_ns_swint_set_instance_t::p_cfg()'],['../group___p_d_m___a_p_i.html#aa7507f32d16aa2574b645cd8ac720e30',1,'pdm_instance_t::p_cfg()'],['../group___p_o_e_g___a_p_i.html#a3952f94b0ec56e7d66d5e806578be4f4',1,'poeg_instance_t::p_cfg()'],['../group___r_t_c___a_p_i.html#af39ca95036c2304e17a64a8fac0e1a0b',1,'rtc_instance_t::p_cfg()'],['../group___s_p_i___a_p_i.html#a792a14261f15cfbf582d683c16f3da72',1,'spi_instance_t::p_cfg()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#a74f26946c33e77fda5b6e2d26b2c9fee',1,'spi_flash_instance_t::p_cfg()'],['../group___t_i_m_e_r___a_p_i.html#aebe4bd4819b5d24a8d4fa847359b6afa',1,'timer_instance_t::p_cfg()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a8ffd253e9be22795d2736d6dc683d710',1,'transfer_instance_t::p_cfg()'],['../group___u_a_r_t___a_p_i.html#a07af9be02a70a457bc4d5207c77e3bee',1,'uart_instance_t::p_cfg()'],['../group___w_d_t___a_p_i.html#a39a1f436f29b8db08e214bd85c6e53ff',1,'wdt_instance_t::p_cfg()'],['../group___r_m___h_s300_x___a_p_i.html#adc885d33644960e6c14860dfe1cc1cbe',1,'rm_hs300x_instance_t::p_cfg()'],['../group___r_m___h_s400_x___a_p_i.html#a9fa007f86deb655f999b5d0b1c4d65cb',1,'rm_hs400x_instance_t::p_cfg()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aac9344fd8efc73b82c65e1adcec5f88c',1,'rm_zmod4xxx_instance_t::p_cfg()'],['../group___i3_c___b.html#a6292eaa63c5ee2ceefc2c8404aa57fc7',1,'i3c_b_instance_ctrl_t::p_cfg()'],['../group___m_h_u___b___n_s.html#ab0e659a5bf2d3dbc21790c60e55e3502',1,'mhu_b_ns_instance_ctrl_t::p_cfg()'],['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#a0eefba6634fa0bc1909fcd1fc46ca7da',1,'mhu_b_ns_swint_get_instance_ctrl_t::p_cfg()'],['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#aceefb97edf194ab8591a4b3977f3c153',1,'mhu_b_ns_swint_set_instance_ctrl_t::p_cfg()'],['../group___m_h_u___b___s.html#a3b97d7aeb81bea198e1a0d059636094f',1,'mhu_b_s_instance_ctrl_t::p_cfg()'],['../group___m_h_u___n_s.html#a1ee2e9cadf1df4a9e3803a139c910f9a',1,'mhu_ns_instance_ctrl_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#ac3fa10e51c1700db408b9e2febca0c45',1,'mhu_ns_swint_get_instance_ctrl_t::p_cfg()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#a2c2dcafbf0c66a844564cf48c5486f3f',1,'mhu_ns_swint_set_instance_ctrl_t::p_cfg()'],['../group___m_h_u___s.html#a721510fae53319c0919a0114969aad51',1,'mhu_s_instance_ctrl_t::p_cfg()'],['../group___m_t_u3.html#ab44e73386d7b2fe1ad3315b5655022e6',1,'mtu3_instance_ctrl_t::p_cfg()'],['../group___r_s_p_i.html#af4b65717f05932609172a0828cee1db4',1,'rspi_instance_ctrl_t::p_cfg()'],['../group___r_t_c.html#a02ff7a87b8c7fdf8ec2ecc4ad4a817c6',1,'rtc_instance_ctrl_t::p_cfg()'],['../group___s_p_i___b.html#a4d55d0c12d644e533249a943486a9b17',1,'spi_b_instance_ctrl_t::p_cfg()'],['../group___r_m___c_o_m_m_s___i2_c.html#a88d8fbd6294057b09ea0231637643011',1,'rm_comms_i2c_instance_ctrl_t::p_cfg()'],['../group___r_m___h_s300_x.html#a60925699b63829347739382ba48b1d13',1,'rm_hs300x_instance_ctrl_t::p_cfg()'],['../group___r_m___h_s400_x.html#a8a565adac63233a59d03487d1417b33b',1,'rm_hs400x_instance_ctrl_t::p_cfg()'],['../group___r_m___z_m_o_d4_x_x_x.html#a55df2cbb3cdc4bbeb75db1dba936d2b1',1,'rm_zmod4xxx_instance_ctrl_t::p_cfg()']]], + ['p_5fchannel_5fcfg',['p_channel_cfg',['../group___a_d_c___a_p_i.html#a4356f10e7c706f14370fed8599c6d4d0',1,'adc_instance_t']]], + ['p_5fcomms_5fcallback',['p_comms_callback',['../group___r_m___h_s400_x___a_p_i.html#a7050fd08733d97f90d0ce05faf6b2848',1,'rm_hs400x_cfg_t::p_comms_callback()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8f25d9bf4ff36c9dcf976a029ef49c10',1,'rm_zmod4xxx_cfg_t::p_comms_callback()'],['../group___r_m___h_s400_x.html#a6288740f2724536ce15942ec1e46ee3b',1,'rm_hs400x_instance_ctrl_t::p_comms_callback()'],['../group___r_m___z_m_o_d4_x_x_x.html#a57301a9ef64a2317881cdc7d89783fb5',1,'rm_zmod4xxx_instance_ctrl_t::p_comms_callback()']]], + ['p_5fcomms_5fi2c_5finstance',['p_comms_i2c_instance',['../group___r_m___h_s300_x.html#a36c21d0366384c0913491c536e81c280',1,'rm_hs300x_instance_ctrl_t::p_comms_i2c_instance()'],['../group___r_m___h_s400_x.html#a977c323e9b1fba0858f58d4e9baf0ad5',1,'rm_hs400x_instance_ctrl_t::p_comms_i2c_instance()'],['../group___r_m___z_m_o_d4_x_x_x.html#afc82544a966e7f146ceee4ef404b7582',1,'rm_zmod4xxx_instance_ctrl_t::p_comms_i2c_instance()']]], + ['p_5fcomms_5finstance',['p_comms_instance',['../group___r_m___h_s400_x___a_p_i.html#a36931367054e059ebbebccfda169927d',1,'rm_hs400x_cfg_t::p_comms_instance()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8cce7b013ebccc3b0b0aed0e9436e922',1,'rm_zmod4xxx_cfg_t::p_comms_instance()']]], + ['p_5fcontext',['p_context',['../group___a_d_c___a_p_i.html#a68c6287d395bac7964e20441638c69ac',1,'adc_callback_args_t::p_context()'],['../group___a_d_c___a_p_i.html#a3f426d9b4992a45674c0e8ead528202b',1,'adc_cfg_t::p_context()'],['../group___c_a_n___a_p_i.html#a663ed64c927057ab0ac45d02505dc758',1,'can_callback_args_t::p_context()'],['../group___c_a_n___a_p_i.html#a3699700f0a08a75159483ac2825dca90',1,'can_cfg_t::p_context()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#ade4504697e9cde129dfbe8796985f66a',1,'external_irq_callback_args_t::p_context()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a4237b56a314b7e145aefb59e6e1def1b',1,'external_irq_cfg_t::p_context()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#ab98d1221b3a246270ef56a57d947ac0c',1,'i2c_master_callback_args_t::p_context()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a37cfd76fa962aea67e76d6efaf16dfd7',1,'i2c_master_cfg_t::p_context()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a8480d2ef5f292fa836adfbaef1a0689c',1,'i2c_slave_callback_args_t::p_context()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a6cc910e14348a5c42bb4ffbf41dad5ba',1,'i2c_slave_cfg_t::p_context()'],['../group___i3_c___a_p_i.html#ac551df467b9752c621533d829cdd1e4d',1,'i3c_callback_args_t::p_context()'],['../group___i3_c___a_p_i.html#a8a5c800bff7722549723dea066fe19eb',1,'i3c_cfg_t::p_context()'],['../group___m_h_u___a_p_i.html#a2a3e7eaaacf7c526d9fe10427817f68d',1,'mhu_callback_args_t::p_context()'],['../group___m_h_u___a_p_i.html#ad3cc3a49b8f6d7cbbcc6a72833f51e2c',1,'mhu_cfg_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ac3fe2eadbd870c342ddda1aaef641568',1,'mhu_ns_swint_get_callback_args_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#ab94275a9966c5a59c8bc8a06cbb2647c',1,'mhu_ns_swint_get_cfg_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a43558a76b254d006a32b55d251341171',1,'mhu_ns_swint_set_callback_args_t::p_context()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#a7d3d94f9b3b9162cc59931ac56c36a73',1,'mhu_ns_swint_set_cfg_t::p_context()'],['../group___p_d_m___a_p_i.html#ac700c0b3e8b54aaee5e31e37d74c2f3f',1,'pdm_callback_args_t::p_context()'],['../group___p_d_m___a_p_i.html#aaff00f00bf416201caca2c61fb0b3d7b',1,'pdm_cfg_t::p_context()'],['../group___p_o_e_g___a_p_i.html#a87c6c18eb74b68a3849822c777864f79',1,'poeg_callback_args_t::p_context()'],['../group___p_o_e_g___a_p_i.html#a4c643319683a792e608a1331f00c0d9c',1,'poeg_cfg_t::p_context()'],['../group___r_t_c___a_p_i.html#a2a07242a217b804f8dc04fb078d4a6a1',1,'rtc_callback_args_t::p_context()'],['../group___r_t_c___a_p_i.html#a84d9e4ba135ac56c779ca525660d5c2a',1,'rtc_cfg_t::p_context()'],['../group___s_p_i___a_p_i.html#acdafc89def1a4325004c5f7022e9488f',1,'spi_callback_args_t::p_context()'],['../group___s_p_i___a_p_i.html#ac54861ff0fab10bfb9cd8834c31ad9c0',1,'spi_cfg_t::p_context()'],['../group___t_i_m_e_r___a_p_i.html#a83bdbe351fc323e334f96bbf41420a07',1,'timer_callback_args_t::p_context()'],['../group___t_i_m_e_r___a_p_i.html#ad6aac1202b591958b40f1bc018abd387',1,'timer_cfg_t::p_context()'],['../group___u_a_r_t___a_p_i.html#af39b34ea2c03d20876045cbe6cba70a7',1,'uart_callback_args_t::p_context()'],['../group___u_a_r_t___a_p_i.html#a2ef1ef69636aec9cbfbac44db4a67db6',1,'uart_cfg_t::p_context()'],['../group___w_d_t___a_p_i.html#a64eb19cb40d1c2e0d7a81d773289af4d',1,'wdt_callback_args_t::p_context()'],['../group___w_d_t___a_p_i.html#a7d1afa07628f9a7c0b9e3c74206d44e9',1,'wdt_cfg_t::p_context()'],['../group___r_m___c_o_m_m_s___a_p_i.html#ac2f5d7d5bc7207eb617bcc8b668dc5b3',1,'rm_comms_cfg_t::p_context()'],['../group___r_m___h_s300_x___a_p_i.html#a2ee1168f444f962fd1807aa6a48776cb',1,'rm_hs300x_cfg_t::p_context()'],['../group___r_m___h_s400_x___a_p_i.html#a1275c87fc13e4effb686e72343b85ad2',1,'rm_hs400x_cfg_t::p_context()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abc68dcd903ac59de8c478b0d22d25bfa',1,'rm_zmod4xxx_cfg_t::p_context()'],['../group___d_m_a_c___b.html#a3c0c11bbddaa1a47bf8b03b68de9f865',1,'dmac_b_callback_args_t::p_context()'],['../group___d_m_a_c___b.html#a810513506f2aa216b17f288ab8ef8bb5',1,'dmac_b_extended_cfg_t::p_context()'],['../group___i_n_t_c___i_r_q.html#a54e8132da6a0a3e951c50e71cf10d90b',1,'intc_irq_instance_ctrl_t::p_context()'],['../group___i_n_t_c___n_m_i.html#af0208db3467f67a11f7bfe085a79708e',1,'intc_nmi_instance_ctrl_t::p_context()'],['../group___i_n_t_c___t_i_n_t.html#a09938fef3661c208ee0e249c305d9cb7',1,'intc_tint_instance_ctrl_t::p_context()'],['../group___m_t_u3.html#a4ad3258449aecadc5d9d96f7b4325cde',1,'mtu3_instance_ctrl_t::p_context()'],['../group___r_m___c_o_m_m_s___i2_c.html#a2bb5f217d51637d4e27b8da6761c2021',1,'rm_comms_i2c_instance_ctrl_t::p_context()'],['../group___r_m___h_s300_x.html#a36436afd1ed74c2bbf34eab8e5af34bc',1,'rm_hs300x_instance_ctrl_t::p_context()'],['../group___r_m___h_s400_x.html#afae51fca4d0796c27b1234c4d050f9e9',1,'rm_hs400x_instance_ctrl_t::p_context()'],['../group___r_m___z_m_o_d4_x_x_x.html#a6151d069461571549ecbf52193ab8624',1,'rm_zmod4xxx_instance_ctrl_t::p_context()']]], + ['p_5fctrl',['p_ctrl',['../group___a_d_c___a_p_i.html#aa536102e4b637a09aa6c6744d8598c8f',1,'adc_instance_t::p_ctrl()'],['../group___c_a_n___a_p_i.html#ae4d4d032f3e4f0688879027286ae4dbe',1,'can_instance_t::p_ctrl()'],['../group___c_r_c___a_p_i.html#a43ca783a75a91815659195f46717b4ca',1,'crc_instance_t::p_ctrl()'],['../group___e_l_c___a_p_i.html#a666a726dd9209856799d03b62b703029',1,'elc_instance_t::p_ctrl()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#a7bf006f685a26836095b1660bf2eb263',1,'external_irq_instance_t::p_ctrl()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a61db7ac4bf7c96d6cbc28c4db281fd6f',1,'i2c_master_instance_t::p_ctrl()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ae2d56c946cfbfae06c21f48be15d32cb',1,'i2c_slave_instance_t::p_ctrl()'],['../group___i3_c___a_p_i.html#a2ad3482a64914b52deb037ed89a5b023',1,'i3c_instance_t::p_ctrl()'],['../group___i_o_p_o_r_t___a_p_i.html#af318c6344f0b7679df2ca79bf24bad6e',1,'ioport_instance_t::p_ctrl()'],['../group___m_h_u___a_p_i.html#a5a66c1be79665ce4b5d802f568d371cf',1,'mhu_instance_t::p_ctrl()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#af7a697adf7a1b68f31c055c8f2fe0836',1,'mhu_ns_swint_get_instance_t::p_ctrl()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t___a_p_i.html#ad486d0fcb0595022f8d9dfcd9860e06f',1,'mhu_ns_swint_set_instance_t::p_ctrl()'],['../group___p_d_m___a_p_i.html#a3c9a2ef616d009192da8185b064ba3ab',1,'pdm_instance_t::p_ctrl()'],['../group___p_o_e_g___a_p_i.html#a475ca15f8e94a914ea5889e66b4d5ccc',1,'poeg_instance_t::p_ctrl()'],['../group___r_t_c___a_p_i.html#acc669b027e055903ca6effb673182925',1,'rtc_instance_t::p_ctrl()'],['../group___s_p_i___a_p_i.html#abd5918ae9720bacf1708e2a2dfed564b',1,'spi_instance_t::p_ctrl()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#ab7cca7ee8e821effe8d7e8902e6a7514',1,'spi_flash_instance_t::p_ctrl()'],['../group___t_i_m_e_r___a_p_i.html#a641f967b15711f0e91bc0f41fc8ebfe6',1,'timer_instance_t::p_ctrl()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a655547e7bbc2c8be77ac085f3417a389',1,'transfer_instance_t::p_ctrl()'],['../group___u_a_r_t___a_p_i.html#ae01cedb63e8739651eb14d0ccc9b54a4',1,'uart_instance_t::p_ctrl()'],['../group___w_d_t___a_p_i.html#ac301430918784342b3f136d2afc705a7',1,'wdt_instance_t::p_ctrl()'],['../group___r_m___h_s300_x___a_p_i.html#a70416ff9548ecd27d828617bd5dfdb8c',1,'rm_hs300x_instance_t::p_ctrl()'],['../group___r_m___h_s400_x___a_p_i.html#a9b456f4ea4caeb04061bca271c5cab66',1,'rm_hs400x_instance_t::p_ctrl()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a5ce0b0a7d1b59a0ad9088449e884cbb4',1,'rm_zmod4xxx_instance_t::p_ctrl()']]], ['p_5fdata_5ftiming',['p_data_timing',['../group___c_a_n_f_d.html#a924d2187cf551c85ded2b148e26bbfd9',1,'canfd_extended_cfg_t']]], - ['p_5fdest',['p_dest',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a176dc2f3d1edfc321fa248a7e4c3b549',1,'transfer_info_t']]], - ['p_5fdevice_5fstatus',['p_device_status',['../group___r_m___o_b1203.html#a6474b07ae9f3ac43315f3614be9de2d6',1,'rm_ob1203_instance_ctrl_t']]], + ['p_5fdest',['p_dest',['../group___t_r_a_n_s_f_e_r___a_p_i.html#acc20817272cf1db573a1dbc54a9cb3bf',1,'transfer_info_t::p_dest()'],['../group___d_m_a_c___b.html#a7413254141ea747d2f333335c5c07aff',1,'dmac_b_register_set_setting_t::p_dest()']]], + ['p_5ferase_5fcommand_5flist',['p_erase_command_list',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a59655a41dc087373e0a03d23a99f301a',1,'spi_flash_cfg_t']]], + ['p_5ferr_5fcfg',['p_err_cfg',['../group___r_t_c___a_p_i.html#ae9c6c82e443f75c0ad7ec40b178a3972',1,'rtc_cfg_t']]], ['p_5fext',['p_ext',['../group___r_s_p_i.html#a5c0b630ca16e1aa5a398850f669513db',1,'rspi_instance_ctrl_t']]], - ['p_5fextend',['p_extend',['../group___c_a_n___a_p_i.html#a0715ca299b94eea0ef2843b99e0d32e5',1,'can_cfg_t::p_extend()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#abce89fd1740fefc7c2d179ca751df78f',1,'external_irq_cfg_t::p_extend()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a6b8f5358d8bbec687ddcdb32c88a5f59',1,'i2c_master_cfg_t::p_extend()'],['../group___s_p_i___a_p_i.html#a78b80f52103ccfc52dbc78bffbc832b6',1,'spi_cfg_t::p_extend()'],['../group___t_i_m_e_r___a_p_i.html#a30a4d58bdfa5834a17d497c7f3906c75',1,'timer_cfg_t::p_extend()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a7dcf4353ecf5e5df7024e1a3d5db7c09',1,'transfer_cfg_t::p_extend()'],['../group___u_a_r_t___a_p_i.html#af0950404b4fc6329f9d6f7802b850531',1,'uart_cfg_t::p_extend()'],['../group___r_m___c_o_m_m_s___a_p_i.html#acfd68d17c8cad67545ef754a1f5f1322',1,'rm_comms_cfg_t::p_extend()'],['../group___r_m___h_s300_x___a_p_i.html#a2bef066ec906f14e411982dc7f51c64d',1,'rm_hs300x_cfg_t::p_extend()'],['../group___r_m___h_s400_x___a_p_i.html#ae6e90a1467d0a6ca0911845360356fc5',1,'rm_hs400x_cfg_t::p_extend()'],['../group___r_m___o_b1203___a_p_i.html#a4cbf8f98a7e43f101dceb15005784375',1,'rm_ob1203_cfg_t::p_extend()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af76dfeb408164a58e2571d56bcb40101',1,'rm_zmod4xxx_cfg_t::p_extend()']]], - ['p_5ffifo_5finfo',['p_fifo_info',['../group___r_m___o_b1203.html#af65f28877e8b54a1b22601e42ab7d1db',1,'rm_ob1203_instance_ctrl_t']]], + ['p_5fextend',['p_extend',['../group___a_d_c___a_p_i.html#a5463ef8731c3b8a0094fbfff74c73449',1,'adc_cfg_t::p_extend()'],['../group___c_a_n___a_p_i.html#a0715ca299b94eea0ef2843b99e0d32e5',1,'can_cfg_t::p_extend()'],['../group___c_r_c___a_p_i.html#aa38d898bb2b40f121ce3ec1b54bf921f',1,'crc_cfg_t::p_extend()'],['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#abce89fd1740fefc7c2d179ca751df78f',1,'external_irq_cfg_t::p_extend()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a6b8f5358d8bbec687ddcdb32c88a5f59',1,'i2c_master_cfg_t::p_extend()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a6b56336af0eaf92db7006a028876c575',1,'i2c_slave_cfg_t::p_extend()'],['../group___i3_c___a_p_i.html#a446d4dde4f518d873b98362d3ab68303',1,'i3c_cfg_t::p_extend()'],['../group___i_o_p_o_r_t___a_p_i.html#a3c302ad5a452c415a6cb35ddecbe54bf',1,'ioport_cfg_t::p_extend()'],['../group___p_d_m___a_p_i.html#abff3295dd414d671e7c75d538d657cf7',1,'pdm_cfg_t::p_extend()'],['../group___r_t_c___a_p_i.html#a66dc93f732aa8ec1b07d036602974cb0',1,'rtc_cfg_t::p_extend()'],['../group___s_p_i___a_p_i.html#a78b80f52103ccfc52dbc78bffbc832b6',1,'spi_cfg_t::p_extend()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#ad2403240c3b40bb518d0623283712248',1,'spi_flash_cfg_t::p_extend()'],['../group___t_i_m_e_r___a_p_i.html#a30a4d58bdfa5834a17d497c7f3906c75',1,'timer_cfg_t::p_extend()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a7dcf4353ecf5e5df7024e1a3d5db7c09',1,'transfer_cfg_t::p_extend()'],['../group___u_a_r_t___a_p_i.html#af0950404b4fc6329f9d6f7802b850531',1,'uart_cfg_t::p_extend()'],['../group___w_d_t___a_p_i.html#a7291179f9c5dea0f40d384398f2d81fe',1,'wdt_cfg_t::p_extend()'],['../group___r_m___c_o_m_m_s___a_p_i.html#acfd68d17c8cad67545ef754a1f5f1322',1,'rm_comms_cfg_t::p_extend()'],['../group___r_m___h_s300_x___a_p_i.html#a2bef066ec906f14e411982dc7f51c64d',1,'rm_hs300x_cfg_t::p_extend()'],['../group___r_m___h_s400_x___a_p_i.html#ae6e90a1467d0a6ca0911845360356fc5',1,'rm_hs400x_cfg_t::p_extend()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af76dfeb408164a58e2571d56bcb40101',1,'rm_zmod4xxx_cfg_t::p_extend()']]], ['p_5fglobal_5fcfg',['p_global_cfg',['../group___c_a_n_f_d.html#a4cb13ba7074112d39a102638b7895a94',1,'canfd_extended_cfg_t']]], ['p_5finfo',['p_info',['../group___t_r_a_n_s_f_e_r___a_p_i.html#af99b114594ac2d55aae0c9e11f703164',1,'transfer_cfg_t']]], ['p_5finstance',['p_instance',['../group___r_m___h_s300_x___a_p_i.html#ac66a33236b3cb4b5106c22b063c43858',1,'rm_hs300x_cfg_t']]], - ['p_5firq_5fcallback',['p_irq_callback',['../group___r_m___o_b1203___a_p_i.html#a212ec348b354cb3cce33fc0d313feec8',1,'rm_ob1203_cfg_t::p_irq_callback()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a2ef43c9ece4e53557648b8a77ec406f5',1,'rm_zmod4xxx_cfg_t::p_irq_callback()'],['../group___r_m___o_b1203.html#aa936e3ee9a75bee3c5a4aad146f04c7e',1,'rm_ob1203_instance_ctrl_t::p_irq_callback()'],['../group___r_m___z_m_o_d4_x_x_x.html#a0438d7a16c46e81db655c9627a2e3fac',1,'rm_zmod4xxx_instance_ctrl_t::p_irq_callback()']]], - ['p_5firq_5finstance',['p_irq_instance',['../group___r_m___o_b1203___a_p_i.html#af8fdc3428fcbe22e4878a27ccde17b0b',1,'rm_ob1203_cfg_t::p_irq_instance()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a692f0a4eaad2c9e8e8cdbb0a2e792dd9',1,'rm_zmod4xxx_cfg_t::p_irq_instance()'],['../group___r_m___o_b1203.html#a189057778d7cbd48ac1ad8a1df064a77',1,'rm_ob1203_instance_ctrl_t::p_irq_instance()'],['../group___r_m___z_m_o_d4_x_x_x.html#a993f572e2bc8acef02a151b7e1a38808',1,'rm_zmod4xxx_instance_ctrl_t::p_irq_instance()']]], + ['p_5firq_5fcallback',['p_irq_callback',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a2ef43c9ece4e53557648b8a77ec406f5',1,'rm_zmod4xxx_cfg_t::p_irq_callback()'],['../group___r_m___z_m_o_d4_x_x_x.html#a0438d7a16c46e81db655c9627a2e3fac',1,'rm_zmod4xxx_instance_ctrl_t::p_irq_callback()']]], + ['p_5firq_5finstance',['p_irq_instance',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a692f0a4eaad2c9e8e8cdbb0a2e792dd9',1,'rm_zmod4xxx_cfg_t::p_irq_instance()'],['../group___r_m___z_m_o_d4_x_x_x.html#a993f572e2bc8acef02a151b7e1a38808',1,'rm_zmod4xxx_instance_ctrl_t::p_irq_instance()']]], ['p_5flower_5flevel_5fcfg',['p_lower_level_cfg',['../group___r_m___c_o_m_m_s___a_p_i.html#a8bcd1db3bbb96b2dd0cb252d2b580f53',1,'rm_comms_cfg_t::p_lower_level_cfg()'],['../group___r_m___c_o_m_m_s___i2_c.html#a98016cae64f53d4c8451a93fec50480d',1,'rm_comms_i2c_instance_ctrl_t::p_lower_level_cfg()']]], - ['p_5fmailbox',['p_mailbox',['../group___c_a_n___a_p_i.html#a564584ef9e48317f93f432a0b86b9af8',1,'can_cfg_t']]], - ['p_5fmode',['p_mode',['../group___r_m___o_b1203.html#af53827a211cd1402bd8945e8c5f16f5f',1,'rm_ob1203_instance_ctrl_t']]], + ['p_5fnext1_5fregister_5fsetting',['p_next1_register_setting',['../group___d_m_a_c___b.html#a8d1d6c80ac5dad8f955773d399390485',1,'dmac_b_extended_info_t']]], + ['p_5fnext1_5fsrc',['p_next1_src',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a07ff7ab703d6c6e5f3e2fdeabce7519a',1,'transfer_info_t']]], ['p_5fpin_5fcfg_5fdata',['p_pin_cfg_data',['../group___i_o_p_o_r_t___a_p_i.html#a024de5a09c01dd710ba447a9ffa3271b',1,'ioport_cfg_t']]], - ['p_5fpwm_5fcfg',['p_pwm_cfg',['../group___g_p_t.html#a55e5f85f57b77fd7ee5a1de7ff39da27',1,'gpt_extended_cfg_t']]], - ['p_5fregs',['p_regs',['../group___m_h_u___n_s.html#a61e5f2158fbbd11d05252a83571927dd',1,'mhu_ns_instance_ctrl_t::p_regs()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#aa0f0b0ca2034ddc5dbe9d143f1389799',1,'mhu_ns_swint_get_instance_ctrl_t::p_regs()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#a8d75e2e88164656cab2e3b921a1568e4',1,'mhu_ns_swint_set_instance_ctrl_t::p_regs()'],['../group___m_h_u___s.html#af745bc664f80d4fd4cf848e357801eca',1,'mhu_s_instance_ctrl_t::p_regs()'],['../group___r_s_p_i.html#aeac6ab8d657da805d12554dd8090af67',1,'rspi_instance_ctrl_t::p_regs()']]], - ['p_5frx_5fdata',['p_rx_data',['../group___r_s_p_i.html#a98166008c3a0b7f73b1c0e8e162c9969',1,'rspi_instance_ctrl_t']]], + ['p_5fport_5fgroup_5finput_5fcfg',['p_port_group_input_cfg',['../group___i_o_p_o_r_t.html#ae256dab18228aacaf260e215b0919086',1,'ioport_extend_cfg_t']]], + ['p_5fport_5fgroup_5foutput_5fcfg',['p_port_group_output_cfg',['../group___i_o_p_o_r_t.html#a4ee136a2b01acdbb29db539464741770',1,'ioport_extend_cfg_t']]], + ['p_5fpwm_5fcfg',['p_pwm_cfg',['../group___g_p_t.html#a55e5f85f57b77fd7ee5a1de7ff39da27',1,'gpt_extended_cfg_t::p_pwm_cfg()'],['../group___m_t_u3.html#aff82059debc7b813205be81de5f350c5',1,'mtu3_extended_cfg_t::p_pwm_cfg()']]], + ['p_5freg',['p_reg',['../group___i3_c___b.html#a1be04ad63b14c5df7547285f9c92ba66',1,'i3c_b_instance_ctrl_t::p_reg()'],['../group___m_t_u3.html#a4af7341566a2e88e2be9c7368e095ea5',1,'mtu3_instance_ctrl_t::p_reg()']]], + ['p_5freg_5fcom',['p_reg_com',['../group___m_t_u3.html#ab867c5de83802ed0b964c23e776b3702',1,'mtu3_instance_ctrl_t']]], + ['p_5freg_5fnf',['p_reg_nf',['../group___m_t_u3.html#abdb95c4611476cb60d46326fc0a79f8d',1,'mtu3_instance_ctrl_t']]], + ['p_5fregs',['p_regs',['../group___m_h_u___b___n_s.html#ad68f27c0f8259cfb7a6d58727c56b67c',1,'mhu_b_ns_instance_ctrl_t::p_regs()'],['../group___m_h_u___b___n_s___s_w_i_n_t___g_e_t.html#af80195b0968f9c69dfd0c89fa645ac4f',1,'mhu_b_ns_swint_get_instance_ctrl_t::p_regs()'],['../group___m_h_u___b___n_s___s_w_i_n_t___s_e_t.html#ae4b9ea02a0965d8918fa729c6b19e8b6',1,'mhu_b_ns_swint_set_instance_ctrl_t::p_regs()'],['../group___m_h_u___b___s.html#a2b8c58c859b360c49f9c132b8e9e56eb',1,'mhu_b_s_instance_ctrl_t::p_regs()'],['../group___m_h_u___n_s.html#a61e5f2158fbbd11d05252a83571927dd',1,'mhu_ns_instance_ctrl_t::p_regs()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t.html#aa0f0b0ca2034ddc5dbe9d143f1389799',1,'mhu_ns_swint_get_instance_ctrl_t::p_regs()'],['../group___m_h_u___n_s___s_w_i_n_t___s_e_t.html#a8d75e2e88164656cab2e3b921a1568e4',1,'mhu_ns_swint_set_instance_ctrl_t::p_regs()'],['../group___m_h_u___s.html#af745bc664f80d4fd4cf848e357801eca',1,'mhu_s_instance_ctrl_t::p_regs()'],['../group___r_s_p_i.html#aeac6ab8d657da805d12554dd8090af67',1,'rspi_instance_ctrl_t::p_regs()'],['../group___s_p_i___b.html#a73e08678d0e9902c81c88b6f6ca19c02',1,'spi_b_instance_ctrl_t::p_regs()']]], + ['p_5frx_5fdata',['p_rx_data',['../group___r_s_p_i.html#a98166008c3a0b7f73b1c0e8e162c9969',1,'rspi_instance_ctrl_t::p_rx_data()'],['../group___s_p_i___b.html#a0688f8d078659fb2901ffe44d64d3045',1,'spi_b_instance_ctrl_t::p_rx_data()']]], ['p_5fshared_5fmemory',['p_shared_memory',['../group___m_h_u___a_p_i.html#a8820bea933c4deea77e01e48b6f76865',1,'mhu_cfg_t']]], - ['p_5fshared_5fmemory_5frx',['p_shared_memory_rx',['../group___m_h_u___n_s.html#af5fdb525ff4a77b4cddb17d066e8c246',1,'mhu_ns_instance_ctrl_t::p_shared_memory_rx()'],['../group___m_h_u___s.html#a74b1dc369c621b29c80cfec96a0189a2',1,'mhu_s_instance_ctrl_t::p_shared_memory_rx()']]], - ['p_5fshared_5fmemory_5ftx',['p_shared_memory_tx',['../group___m_h_u___n_s.html#aa4455658de7b85e233e61bfee994a130',1,'mhu_ns_instance_ctrl_t::p_shared_memory_tx()'],['../group___m_h_u___s.html#a397d3be13f6769fe0add08595aa197e2',1,'mhu_s_instance_ctrl_t::p_shared_memory_tx()']]], - ['p_5fsrc',['p_src',['../group___t_r_a_n_s_f_e_r___a_p_i.html#ad264d20a1b0afc0100c2e3b1d5a1a1c8',1,'transfer_info_t']]], + ['p_5fshared_5fmemory_5frx',['p_shared_memory_rx',['../group___m_h_u___b___n_s.html#aba2ed695735df5ae0890447008554a1a',1,'mhu_b_ns_instance_ctrl_t::p_shared_memory_rx()'],['../group___m_h_u___b___s.html#a910e0327342316a77edb79f80e2beb2e',1,'mhu_b_s_instance_ctrl_t::p_shared_memory_rx()'],['../group___m_h_u___n_s.html#af5fdb525ff4a77b4cddb17d066e8c246',1,'mhu_ns_instance_ctrl_t::p_shared_memory_rx()'],['../group___m_h_u___s.html#a74b1dc369c621b29c80cfec96a0189a2',1,'mhu_s_instance_ctrl_t::p_shared_memory_rx()']]], + ['p_5fshared_5fmemory_5ftx',['p_shared_memory_tx',['../group___m_h_u___b___n_s.html#a697b7be0ff6ea5e30819c4936991a032',1,'mhu_b_ns_instance_ctrl_t::p_shared_memory_tx()'],['../group___m_h_u___b___s.html#aa89c2c59032c4f93ba53b8a8aaeec31c',1,'mhu_b_s_instance_ctrl_t::p_shared_memory_tx()'],['../group___m_h_u___n_s.html#aa4455658de7b85e233e61bfee994a130',1,'mhu_ns_instance_ctrl_t::p_shared_memory_tx()'],['../group___m_h_u___s.html#a397d3be13f6769fe0add08595aa197e2',1,'mhu_s_instance_ctrl_t::p_shared_memory_tx()']]], + ['p_5fsingle_5fport_5fcfg',['p_single_port_cfg',['../group___i_o_p_o_r_t.html#a4fda5dd01b9cdd2517e99df949b09c53',1,'ioport_extend_cfg_t']]], + ['p_5fslave_5finfo',['p_slave_info',['../group___i3_c___a_p_i.html#a28a15d1d237c21fbf3c61486fc5e7f9d',1,'i3c_callback_args_t']]], + ['p_5fsrc',['p_src',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a197ef7d84898829f988dca88fc9e481c',1,'transfer_info_t::p_src()'],['../group___d_m_a_c___b.html#a543a2e4f1901f1c745ae7f1eb0eff1a5',1,'dmac_b_register_set_setting_t::p_src()']]], ['p_5ftransfer_5fdata',['p_transfer_data',['../group___r_m___c_o_m_m_s___i2_c.html#a709194cfb42435320dd9a2f263850811',1,'rm_comms_i2c_instance_ctrl_t']]], - ['p_5ftransfer_5frx',['p_transfer_rx',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a80f1272727c156915cd589c2a881a58f',1,'i2c_master_cfg_t::p_transfer_rx()'],['../group___s_p_i___a_p_i.html#ab38fb6af687bdf7e0ea9143499849bc6',1,'spi_cfg_t::p_transfer_rx()'],['../group___u_a_r_t___a_p_i.html#a465fe0c740b4c6f289956849180e2621',1,'uart_cfg_t::p_transfer_rx()']]], + ['p_5ftransfer_5frx',['p_transfer_rx',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a80f1272727c156915cd589c2a881a58f',1,'i2c_master_cfg_t::p_transfer_rx()'],['../group___p_d_m___a_p_i.html#ad25f36a51d384189ebc129a471f88c4c',1,'pdm_cfg_t::p_transfer_rx()'],['../group___s_p_i___a_p_i.html#ab38fb6af687bdf7e0ea9143499849bc6',1,'spi_cfg_t::p_transfer_rx()'],['../group___u_a_r_t___a_p_i.html#a465fe0c740b4c6f289956849180e2621',1,'uart_cfg_t::p_transfer_rx()']]], ['p_5ftransfer_5ftx',['p_transfer_tx',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#afc60a909796633071932179988fc8d53',1,'i2c_master_cfg_t::p_transfer_tx()'],['../group___s_p_i___a_p_i.html#a312e4358f12551a3f7aaa5f0a09c0501',1,'spi_cfg_t::p_transfer_tx()'],['../group___u_a_r_t___a_p_i.html#a60b6abd0d74f5305fda32373371d8b3a',1,'uart_cfg_t::p_transfer_tx()']]], - ['p_5ftx_5fdata',['p_tx_data',['../group___r_s_p_i.html#ab6addb584c6cedbffe24dc9983b8aa07',1,'rspi_instance_ctrl_t']]], + ['p_5ftx_5fdata',['p_tx_data',['../group___r_s_p_i.html#ab6addb584c6cedbffe24dc9983b8aa07',1,'rspi_instance_ctrl_t::p_tx_data()'],['../group___s_p_i___b.html#a7f95eeca760420ef6d71e453f43e7154',1,'spi_b_instance_ctrl_t::p_tx_data()']]], + ['p_5fwindow_5fcfg',['p_window_cfg',['../group___a_d_c___e.html#a2e6ad852231e189d342c3845fe03562a',1,'adc_e_channel_cfg_t']]], ['p_5fzmod4xxx_5flib',['p_zmod4xxx_lib',['../group___r_m___z_m_o_d4_x_x_x.html#a68cd23f22e6e0fea3b8d8869ea3954f5',1,'rm_zmod4xxx_instance_ctrl_t']]], - ['parity',['parity',['../group___u_a_r_t___a_p_i.html#a07bd6b0ef728681a3abee96ada2ea79d',1,'uart_cfg_t']]], + ['page_5fprogram_5faddress_5flines',['page_program_address_lines',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ab612f8046209bbb2b29e5d3eee98831f',1,'spi_flash_cfg_t']]], + ['page_5fprogram_5fcommand',['page_program_command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#ad630dd9c52ab12c077c5b27485b46017',1,'spi_flash_cfg_t']]], + ['page_5fsize_5fbytes',['page_size_bytes',['../group___s_p_i___f_l_a_s_h___a_p_i.html#abfd1deab895e3f8c8f38a51d74c79b17',1,'spi_flash_cfg_t']]], + ['parity',['parity',['../group___u_a_r_t___a_p_i.html#a07bd6b0ef728681a3abee96ada2ea79d',1,'uart_cfg_t::parity()'],['../group___s_p_i___b.html#af73d771092b53a6fe3556e39064ba38e',1,'spi_b_extended_cfg_t::parity()']]], + ['parity_5fphase_5fenable',['parity_phase_enable',['../group___i3_c___b.html#abf6047ed6b80423a3e34c58d7e6f2159',1,'i3c_b_clock_stalling_t']]], ['pclk_5fdiv',['pclk_div',['../group___e_x_t_e_r_n_a_l___i_r_q___a_p_i.html#acab3057d607bc3efd20955126a8e92d7',1,'external_irq_cfg_t']]], + ['pcm_5fedge',['pcm_edge',['../group___p_d_m___a_p_i.html#ab612a5c37643d9c506a10a9967b887c8',1,'pdm_cfg_t']]], + ['pcm_5fwidth',['pcm_width',['../group___p_d_m___a_p_i.html#a5ef7c8d0fc16829d08bf291a64b996b7',1,'pdm_cfg_t']]], + ['pending_5finterrupt',['pending_interrupt',['../group___i3_c___a_p_i.html#a3b2cd9c5022352d0b3275882dee97363',1,'i3c_device_status_t']]], ['period_5fcounts',['period_counts',['../group___t_i_m_e_r___a_p_i.html#a08b897cfbf2d0cefafe8d3abb1afc747',1,'timer_info_t::period_counts()'],['../group___t_i_m_e_r___a_p_i.html#aa892b6997a1972de6a6ebd48e0fb9233',1,'timer_cfg_t::period_counts()']]], + ['periodic_5fipl',['periodic_ipl',['../group___r_t_c___a_p_i.html#a784a723ee3542eecfa96de492dd511dc',1,'rtc_cfg_t']]], + ['periodic_5firq',['periodic_irq',['../group___r_t_c___a_p_i.html#a744ab95029f4675df63aec891d0f7269',1,'rtc_cfg_t']]], ['periodic_5fmeasurement_5fregister',['periodic_measurement_register',['../group___r_m___h_s400_x.html#aefb5d5f935001b4f4e33272387317282',1,'rm_hs400x_instance_ctrl_t']]], ['periodic_5fmeasurement_5fstop',['periodic_measurement_stop',['../group___r_m___h_s400_x.html#ac470e112ef6556c406bda75049c7f3d6',1,'rm_hs400x_instance_ctrl_t']]], + ['periodicirqrateset',['periodicIrqRateSet',['../group___r_t_c___a_p_i.html#a5a13e1acf6e07bfd87dc81bf65272951',1,'rtc_api_t']]], ['periodset',['periodSet',['../group___t_i_m_e_r___a_p_i.html#ae9aad84a01ccd7ce0039ed491faeff19',1,'timer_api_t']]], - ['persist',['persist',['../group___r_m___o_b1203___a_p_i.html#adf71a33aec370fd165af3dff0c4d8b7a',1,'rm_ob1203_device_interrupt_cfg_t']]], - ['pid',['pid',['../structzmod4xxx__dev__t.html#ac734bd796b3384826754f8db29214992',1,'zmod4xxx_dev_t']]], + ['pid',['pid',['../group___i3_c___a_p_i.html#ab4281472412829fccfae413a1c079838',1,'i3c_slave_info_t::pid()'],['../structzmod4xxx__dev__t.html#ac734bd796b3384826754f8db29214992',1,'zmod4xxx_dev_t::pid()']]], ['pin',['pin',['../group___i_o_p_o_r_t___a_p_i.html#a5e6a7a38da64dabdfc229f1727616bd0',1,'ioport_pin_cfg_t']]], ['pin_5fcfg',['pin_cfg',['../group___i_o_p_o_r_t___a_p_i.html#afbba86b25693590a1057e1ba1257341c',1,'ioport_pin_cfg_t']]], + ['pin_5fselect',['pin_select',['../group___i_o_p_o_r_t.html#afa7beb47d18cb3d5b96d5a8159e2db3e',1,'ioport_event_group_output_t::pin_select()'],['../group___i_o_p_o_r_t.html#acd1e6d8038a41d68e0843905a6f599ef',1,'ioport_event_group_input_t::pin_select()']]], ['pincfg',['pinCfg',['../group___i_o_p_o_r_t___a_p_i.html#a72162206113e825e83aa709c106cd94e',1,'ioport_api_t']]], - ['pinethernetmodecfg',['pinEthernetModeCfg',['../group___i_o_p_o_r_t___a_p_i.html#aebcf56ec700ec3e402c0ab437bc82d45',1,'ioport_api_t']]], - ['pinethernetvoltagemodecfg',['pinEthernetVoltageModeCfg',['../group___i_o_p_o_r_t___a_p_i.html#a88e49491b8dabcddac71cf6d2f0fb213',1,'ioport_api_t']]], ['pineventinputread',['pinEventInputRead',['../group___i_o_p_o_r_t___a_p_i.html#aed708d8a848a6e142ce5bf8cc085360f',1,'ioport_api_t']]], ['pineventoutputwrite',['pinEventOutputWrite',['../group___i_o_p_o_r_t___a_p_i.html#a52c0dcf252f3502911337a9f99e17986',1,'ioport_api_t']]], - ['pinqspivoltagemodecfg',['pinQSPIVoltageModeCfg',['../group___i_o_p_o_r_t___a_p_i.html#a6992c39238d4c6d0ed1469ff2e13492b',1,'ioport_api_t']]], ['pinread',['pinRead',['../group___i_o_p_o_r_t___a_p_i.html#afaba07fd298740d7a58a74720e259af2',1,'ioport_api_t']]], ['pinscfg',['pinsCfg',['../group___i_o_p_o_r_t___a_p_i.html#ac962e87038418a6a525ac9f763687c19',1,'ioport_api_t']]], - ['pinsdvoltagemodecfg',['pinSDVoltageModeCfg',['../group___i_o_p_o_r_t___a_p_i.html#a16b14ace200c93eabd87c57f2269e8fa',1,'ioport_api_t']]], ['pinwrite',['pinWrite',['../group___i_o_p_o_r_t___a_p_i.html#aad4fb5941cd80d4ed9db0262f29b30cf',1,'ioport_api_t']]], ['poeg_5flink',['poeg_link',['../group___g_p_t.html#aaf087f74d802f87ccac4e0a04e90cc04',1,'gpt_extended_pwm_cfg_t']]], - ['polarity',['polarity',['../group___p_o_e_g___a_p_i.html#a685fb10923443de2749de75bebcae85b',1,'poeg_cfg_t']]], + ['polarity',['polarity',['../group___p_o_e_g___a_p_i.html#a685fb10923443de2749de75bebcae85b',1,'poeg_cfg_t::polarity()'],['../group___s_c_i___b___u_a_r_t.html#a10b4002e82c8ca1eee90e84e3cdff02d',1,'sci_b_uart_rs485_setting_t::polarity()'],['../group___s_c_i_f___u_a_r_t.html#aafcbd1f2c02e2f81d81371bb9e6b895d',1,'sci_uart_rs485_setting_t::polarity()']]], + ['polynomial',['polynomial',['../group___c_r_c___a_p_i.html#a77a51a5aaddd34da23595f1b522cab3d',1,'crc_cfg_t']]], + ['port_5fnum',['port_num',['../group___i_o_p_o_r_t.html#ae9a5e65d3c876eb72f8bcfc15cea840a',1,'ioport_event_single_t']]], ['portdirectionset',['portDirectionSet',['../group___i_o_p_o_r_t___a_p_i.html#a15e2e35a9ea2163402cb38c29aaa6399',1,'ioport_api_t']]], ['porteventinputread',['portEventInputRead',['../group___i_o_p_o_r_t___a_p_i.html#ab369548c3b66d80747df3ed29ca336f0',1,'ioport_api_t']]], ['porteventoutputwrite',['portEventOutputWrite',['../group___i_o_p_o_r_t___a_p_i.html#afad905247e7c42fcb42d412a4e2d2d15',1,'ioport_api_t']]], ['portread',['portRead',['../group___i_o_p_o_r_t___a_p_i.html#ac0de7591b4c5680e87ab2d219e2748c2',1,'ioport_api_t']]], ['portwrite',['portWrite',['../group___i_o_p_o_r_t___a_p_i.html#a5a71c5cffcdcacab2425d46603451cf2',1,'ioport_api_t']]], - ['ppg_5fdata',['ppg_data',['../group___r_m___o_b1203___a_p_i.html#ab734102cdf18606c10541df451fcf963',1,'rm_ob1203_ppg_data_t']]], - ['ppg_5ffifo_5fempty_5fnum',['ppg_fifo_empty_num',['../group___r_m___o_b1203.html#a4a9e23f9ea29a94ce55aecf2a6a90efd',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5ffifo_5frollover',['ppg_fifo_rollover',['../group___r_m___o_b1203.html#a6b1b27c35ae14887c24ac87fc09ae5b2',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5finterrupt_5ftype',['ppg_interrupt_type',['../group___r_m___o_b1203.html#a8c2e28fd8857be8e771d04d82bc956ea',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fir_5fled_5fana_5fcan',['ppg_ir_led_ana_can',['../group___r_m___o_b1203.html#a2abd97a96166d245c48e6e0787693fb4',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fir_5fled_5fcurrent',['ppg_ir_led_current',['../group___r_m___o_b1203.html#a6d8a552db7926950c4b1c419a48fdf4e',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fnum_5faveraged_5fsamples',['ppg_num_averaged_samples',['../group___r_m___o_b1203.html#a5b83bc78a2501b848235a640aff20547',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fnumber_5fof_5fsamples',['ppg_number_of_samples',['../group___r_m___o_b1203.html#a7653a25ab1427a9ed18b79cdef7bfb16',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fpower_5fsave_5fmode',['ppg_power_save_mode',['../group___r_m___o_b1203.html#ae35c158322080273b5df3e059528f752',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fprox',['ppg_prox',['../group___r_m___o_b1203___a_p_i.html#a36749f94b25fce91140f34d29c8e30bb',1,'rm_ob1203_gain_t']]], - ['ppg_5fprox_5fgain',['ppg_prox_gain',['../group___r_m___o_b1203.html#a7d96e3fa4f80d77e18d6311b58abb351',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fred_5fled_5fana_5fcan',['ppg_red_led_ana_can',['../group___r_m___o_b1203.html#a5c280d0afc580954d5ed17337c03f5ef',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fred_5fled_5fcurrent',['ppg_red_led_current',['../group___r_m___o_b1203.html#a86d8b953af37f657dfeb162cd0591de0',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5fsensor_5fmode',['ppg_sensor_mode',['../group___r_m___o_b1203.html#a5304c578e8d3e84524754223a865b89c',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppg_5ftype',['ppg_type',['../group___r_m___o_b1203___a_p_i.html#a53330895d99a2275d9c0017cde87f7be',1,'rm_ob1203_device_interrupt_cfg_t']]], - ['ppg_5fwidth_5fperiod',['ppg_width_period',['../group___r_m___o_b1203.html#ae36a5f755dda4ad54a211d7beceaa1fe',1,'rm_ob1203_mode_extended_cfg_t']]], - ['ppgdatacalculate',['ppgDataCalculate',['../group___r_m___o_b1203___a_p_i.html#a2f7c11ddb2c3d8c9cf91c25e3183daa1',1,'rm_ob1203_api_t']]], - ['ppgread',['ppgRead',['../group___r_m___o_b1203___a_p_i.html#a9f902d2c8bf975288a49f443f20092ae',1,'rm_ob1203_api_t']]], + ['priority_5fgroup_5fa',['priority_group_a',['../group___a_d_c___e.html#a88a1a95d7b36e46463b0efdfc37620e3',1,'adc_e_channel_cfg_t']]], ['prod_5fdata',['prod_data',['../structzmod4xxx__dev__t.html#a2af9926b27af0eca9b87db21685b0934',1,'zmod4xxx_dev_t']]], ['programming_5fmode',['programming_mode',['../group___r_m___h_s300_x.html#a25114349d2d5b03b5062ef4c4af8bde9',1,'rm_hs300x_instance_ctrl_t']]], ['programmingmodeenter',['programmingModeEnter',['../group___r_m___h_s300_x___a_p_i.html#a103e89eaa5092238a9c039914b0eb629',1,'rm_hs300x_api_t']]], - ['programmingmodeexit',['programmingModeExit',['../group___r_m___h_s300_x___a_p_i.html#a1812c8a229f28823abb6dc167dd1f94f',1,'rm_hs300x_api_t']]], - ['prox_5fana_5fcan',['prox_ana_can',['../group___r_m___o_b1203.html#a76a478bfae379eccb11d7da016c0b223',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fdig_5fcan',['prox_dig_can',['../group___r_m___o_b1203.html#a602e9dc2a52e58a964e3d31d40f804bd',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fgain_5fupdate',['prox_gain_update',['../group___r_m___o_b1203.html#a8c18e88241e0b27b67d0f7fbaf65d94a',1,'rm_ob1203_instance_ctrl_t']]], - ['prox_5fhysteresis',['prox_hysteresis',['../group___r_m___o_b1203.html#a84152ba34a94d2cc53b01a0195d1e499',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5finterrupt_5fpersist',['prox_interrupt_persist',['../group___r_m___o_b1203.html#a0b8c9711655d57482f2fa4885b6fe358',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5finterrupt_5ftype',['prox_interrupt_type',['../group___r_m___o_b1203.html#a8f73599ce4c7f63c4c823e74f7c567cb',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fled_5fcurrent',['prox_led_current',['../group___r_m___o_b1203.html#a5a121bd4d0dd5525fe4fa1940c2807f7',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5flower_5fthreshold',['prox_lower_threshold',['../group___r_m___o_b1203.html#a0afb601514b214fc0f69648150d139b4',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fmoving_5faverage',['prox_moving_average',['../group___r_m___o_b1203.html#ae462f5fde180d3b4bc191a7b0b36de1a',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fnum_5fled_5fpulses',['prox_num_led_pulses',['../group___r_m___o_b1203.html#a8b1238b9262829b92acf3b488fba8164',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fsleep',['prox_sleep',['../group___r_m___o_b1203.html#a1ee453fb8ab99c99f7c66a81ec8930fc',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5ftype',['prox_type',['../group___r_m___o_b1203___a_p_i.html#a45f7c3c0573f56bf411ac2953b7c5883',1,'rm_ob1203_device_interrupt_cfg_t']]], - ['prox_5fupper_5fthreshold',['prox_upper_threshold',['../group___r_m___o_b1203.html#a5f59be16765f431c4a5793bfb2d6bf7b',1,'rm_ob1203_mode_extended_cfg_t']]], - ['prox_5fwidth_5fperiod',['prox_width_period',['../group___r_m___o_b1203.html#a95edd35c1ca18bb45030ea849f72c079',1,'rm_ob1203_mode_extended_cfg_t']]], - ['proxdatacalculate',['proxDataCalculate',['../group___r_m___o_b1203___a_p_i.html#a9b7d68fb7a2baf7cca79ff3026e36cd5',1,'rm_ob1203_api_t']]], - ['proximity_5fdata',['proximity_data',['../group___r_m___o_b1203___a_p_i.html#a9ac32b72f200c27a6a0c01c0cea30fd3',1,'rm_ob1203_prox_data_t']]], - ['proxread',['proxRead',['../group___r_m___o_b1203___a_p_i.html#a198466f69342eda1f86d4853d0157f22',1,'rm_ob1203_api_t']]] + ['programmingmodeexit',['programmingModeExit',['../group___r_m___h_s300_x___a_p_i.html#a1812c8a229f28823abb6dc167dd1f94f',1,'rm_hs300x_api_t']]] ]; diff --git a/search/variables_e.js b/search/variables_e.js index 6f641d2..26a9628 100644 --- a/search/variables_e.js +++ b/search/variables_e.js @@ -2,29 +2,48 @@ var searchData= [ ['raq',['raq',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aafd6e3d578d566d09fcae0b3b0c81851',1,'rm_zmod4xxx_raq_data_t']]], ['raqdatacalculate',['raqDataCalculate',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#aa05768468433346424e7c695a0e0a4ed',1,'rm_zmod4xxx_api_t']]], - ['rate',['rate',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a14a4f6b4fb30067212155c989e5a65d2',1,'i2c_master_cfg_t']]], + ['rate',['rate',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a14a4f6b4fb30067212155c989e5a65d2',1,'i2c_master_cfg_t::rate()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a2abbee554bf1c554d96c8863eb3db77a',1,'i2c_slave_cfg_t::rate()']]], ['rcda',['rcda',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#abdc449da78d2149a7b552ef545a1b069',1,'rm_zmod4xxx_iaq_1st_data_t']]], - ['read',['read',['../group___c_a_n___a_p_i.html#af6c0a7c4a078f852e7c332369f8de9e2',1,'can_api_t::read()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a7b874b282654d0649f041beb36ab9962',1,'i2c_master_api_t::read()'],['../group___s_p_i___a_p_i.html#a43d0988501f90910690a3357bda1a936',1,'spi_api_t::read()'],['../group___u_a_r_t___a_p_i.html#a75ba1611c4bba17f25f1957348991829',1,'uart_api_t::read()'],['../group___r_m___c_o_m_m_s___a_p_i.html#a40779e10d71d444a436dc2382003bc0b',1,'rm_comms_api_t::read()'],['../group___r_m___h_s300_x___a_p_i.html#a1e0d9168e53864f3fc70cf99077f6210',1,'rm_hs300x_api_t::read()'],['../group___r_m___h_s400_x___a_p_i.html#a66bd54ec8371b1b45b530c455e5d9ea0',1,'rm_hs400x_api_t::read()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8f0e582715db0dc1589f314944c2a41a',1,'rm_zmod4xxx_api_t::read()'],['../structzmod4xxx__dev__t.html#a83fc74e495a6ede0f9554bfd010d55ac',1,'zmod4xxx_dev_t::read()']]], + ['rcv_5firq',['rcv_irq',['../group___i3_c___b.html#a7aabb012263bcc0093e5ed6137b8a701',1,'i3c_b_extended_cfg_t']]], + ['read',['read',['../group___a_d_c___a_p_i.html#a9a540c52a5052a12b3b879d78543efd5',1,'adc_api_t::read()'],['../group___c_a_n___a_p_i.html#af6c0a7c4a078f852e7c332369f8de9e2',1,'can_api_t::read()'],['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a7b874b282654d0649f041beb36ab9962',1,'i2c_master_api_t::read()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ad9693d9cbb58cc0abb6e4e85548e4e18',1,'i2c_slave_api_t::read()'],['../group___i3_c___a_p_i.html#ad013ffb59c95539c84fe217b90d897ad',1,'i3c_api_t::read()'],['../group___p_d_m___a_p_i.html#ac5a449eb8492fef49421d8e3babf205f',1,'pdm_api_t::read()'],['../group___s_p_i___a_p_i.html#a43d0988501f90910690a3357bda1a936',1,'spi_api_t::read()'],['../group___u_a_r_t___a_p_i.html#a75ba1611c4bba17f25f1957348991829',1,'uart_api_t::read()'],['../group___r_m___c_o_m_m_s___a_p_i.html#a40779e10d71d444a436dc2382003bc0b',1,'rm_comms_api_t::read()'],['../group___r_m___h_s300_x___a_p_i.html#a1e0d9168e53864f3fc70cf99077f6210',1,'rm_hs300x_api_t::read()'],['../group___r_m___h_s400_x___a_p_i.html#a66bd54ec8371b1b45b530c455e5d9ea0',1,'rm_hs400x_api_t::read()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8f0e582715db0dc1589f314944c2a41a',1,'rm_zmod4xxx_api_t::read()'],['../structzmod4xxx__dev__t.html#a83fc74e495a6ede0f9554bfd010d55ac',1,'zmod4xxx_dev_t::read()']]], + ['read32',['read32',['../group___a_d_c___a_p_i.html#a81338d39975b7fe87d5e06c55a8c5dc5',1,'adc_api_t']]], + ['read_5fbuffer_5fdescriptor',['read_buffer_descriptor',['../group___i3_c___b.html#a231f4fdcb227e5433b99eb4681092ea1',1,'i3c_b_instance_ctrl_t']]], ['read_5fbytes_5fmax',['read_bytes_max',['../group___u_a_r_t___a_p_i.html#a5cd3c3cd9abff685e954033d13e82bd2',1,'uart_info_t']]], - ['read_5findex',['read_index',['../group___r_m___o_b1203___a_p_i.html#a08c6a80cb4cea1048712c81229fc6d57',1,'rm_ob1203_fifo_info_t']]], + ['read_5fcommand',['read_command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a7c61a9a4dbc8bb415233c42cfdc34d6d',1,'spi_flash_cfg_t']]], + ['read_5fdata_5frate',['read_data_rate',['../group___i3_c___b.html#a9740e5cb2cd5e45294ebe55929c9daa7',1,'i3c_b_slave_command_response_info_t']]], + ['read_5flength',['read_length',['../group___i3_c___b.html#ac35a8a2ba71c865f91f85ceb8be2fe65',1,'i3c_b_slave_command_response_info_t']]], + ['read_5fmode',['read_mode',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a40a6269760d8c4aaf75bf84613d1f551',1,'spi_flash_cfg_t']]], + ['read_5ftransfer_5fcount_5ffinal',['read_transfer_count_final',['../group___i3_c___b.html#a19839c4573b756f918d79ed7b95db193',1,'i3c_b_instance_ctrl_t']]], + ['read_5fturnaround_5ftime',['read_turnaround_time',['../group___i3_c___b.html#ac817332b7a7317c6edc91a84c329c656',1,'i3c_b_slave_command_response_info_t']]], + ['read_5fturnaround_5ftime_5fenable',['read_turnaround_time_enable',['../group___i3_c___b.html#a680354fe57452deb48fd62692bddf62e',1,'i3c_b_slave_command_response_info_t']]], + ['readstop',['readStop',['../group___u_a_r_t___a_p_i.html#acb47c360a2ac4ddd36e53f0a4ad71b92',1,'uart_api_t']]], ['reconfigure',['reconfigure',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a1e38b8ef4e4fa3e59efb257102e72b72',1,'transfer_api_t']]], - ['red_5fdata',['red_data',['../group___r_m___o_b1203___a_p_i.html#ac6f9b82ccffba821d2d1d59cc044d024',1,'rm_ob1203_light_data_t']]], - ['red_5fled',['red_led',['../group___r_m___o_b1203___a_p_i.html#ac420d009e91e7281052cd9d34a057394',1,'rm_ob1203_led_current_t']]], - ['register_5faddress',['register_address',['../group___r_m___o_b1203.html#a8671a1b4dd57a4e872515a27904d712b',1,'rm_ob1203_instance_ctrl_t::register_address()'],['../group___r_m___z_m_o_d4_x_x_x.html#af89ee122a3cd7e3ab844bae5addfe9df',1,'rm_zmod4xxx_instance_ctrl_t::register_address()']]], + ['refresh',['refresh',['../group___w_d_t___a_p_i.html#a0d1533024396b8280b7240c781a09a44',1,'wdt_api_t']]], + ['register_5faddress',['register_address',['../group___r_m___z_m_o_d4_x_x_x.html#af89ee122a3cd7e3ab844bae5addfe9df',1,'rm_zmod4xxx_instance_ctrl_t']]], + ['reload',['reload',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a3af1d98295baf9bd92251f55c95f8868',1,'transfer_api_t']]], ['reset',['reset',['../group___p_o_e_g___a_p_i.html#a5765dcf518892b71b73b5ae38942bd7f',1,'poeg_api_t::reset()'],['../group___t_i_m_e_r___a_p_i.html#ab1c62157861ef1ea8393bb3cafd72102',1,'timer_api_t::reset()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a9c096c8d0e78dfbf8b3809a4598b8619',1,'transfer_api_t::reset()']]], + ['reset_5fcontrol',['reset_control',['../group___w_d_t___a_p_i.html#aaa3b53f7c79a5f385cc6a8f987623b10',1,'wdt_cfg_t']]], + ['resolution',['resolution',['../group___a_d_c___a_p_i.html#a6926363295e23a6121e91095b9f6e28d',1,'adc_cfg_t']]], ['resolution_5fregister',['resolution_register',['../group___r_m___h_s400_x.html#a5a901725d640aab3b802cffa3159276e',1,'rm_hs400x_instance_ctrl_t']]], ['resolutionchange',['resolutionChange',['../group___r_m___h_s300_x___a_p_i.html#a069acb3e5dd3bc2445f053a7dae626bf',1,'rm_hs300x_api_t']]], + ['resp_5firq',['resp_irq',['../group___i3_c___b.html#a5566fbe13d210afcf9538b7f0ef30907',1,'i3c_b_extended_cfg_t']]], + ['restart',['restart',['../group___i3_c___a_p_i.html#a28a3c4290b712ff83b77fd4f7412c322',1,'i3c_command_descriptor_t']]], ['rmox',['rmox',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a8d8907540984f151e5d47932c1db9b18',1,'rm_zmod4xxx_iaq_1st_data_t::rmox()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a6486c18c874aacc219e4015104c62431',1,'rm_zmod4xxx_iaq_2nd_data_t::rmox()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a7b78eb5d21388e5e0c8cd7f0f72b39a9',1,'rm_zmod4xxx_sulfur_odor_data_t::rmox()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a322cc10b5fcff9b42f07c575c48da56f',1,'rm_zmod4xxx_oaq_1st_data_t::rmox()'],['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a32901d3e447bf2fc0642b3c54be98d9a',1,'rm_zmod4xxx_oaq_2nd_data_t::rmox()']]], + ['rnw',['rnw',['../group___i3_c___a_p_i.html#ae4936b8865757d9656167fac18db6e1e',1,'i3c_command_descriptor_t']]], + ['rs485_5fsetting',['rs485_setting',['../group___s_c_i___b___u_a_r_t.html#a04aa2b43cd4a2879826033bc80c06bff',1,'sci_b_uart_extended_cfg_t::rs485_setting()'],['../group___s_c_i_f___u_a_r_t.html#a17bbc99632889e12269013e35f1dcfba',1,'scif_uart_extended_cfg_t::rs485_setting()']]], ['rts_5ffifo_5ftrigger',['rts_fifo_trigger',['../group___s_c_i_f___u_a_r_t.html#a04920b030d567052f3b4efb1f85753e9',1,'scif_uart_extended_cfg_t']]], - ['rx_5fcount',['rx_count',['../group___r_s_p_i.html#af07a6630edcb186c8ccb2b74d228f729',1,'rspi_instance_ctrl_t']]], + ['rx_5fcount',['rx_count',['../group___r_s_p_i.html#af07a6630edcb186c8ccb2b74d228f729',1,'rspi_instance_ctrl_t::rx_count()'],['../group___s_p_i___b.html#a11eb6d582a56acdabafd9c6d50ce18d6',1,'spi_b_instance_ctrl_t::rx_count()']]], + ['rx_5fedge_5fstart',['rx_edge_start',['../group___s_c_i___b___u_a_r_t.html#ae12a126a40d35e484cb1c89474494b15',1,'sci_b_uart_extended_cfg_t']]], ['rx_5ffifo_5fconfig',['rx_fifo_config',['../group___c_a_n_f_d.html#aeb6bbed0e4cb76c06a947e009894608a',1,'canfd_global_cfg_t']]], ['rx_5ffifo_5fipl',['rx_fifo_ipl',['../group___c_a_n_f_d.html#a2bb06b2a4db018ac90193053131ee648',1,'canfd_global_cfg_t']]], - ['rx_5ffifo_5ftrigger',['rx_fifo_trigger',['../group___s_c_i_f___u_a_r_t.html#a1067241f2267052cd8240d136c0cba9c',1,'scif_uart_extended_cfg_t']]], + ['rx_5ffifo_5fstatus',['rx_fifo_status',['../group___c_a_n___a_p_i.html#a7cd7ac782cdb433247cc0f28f2755f81',1,'can_info_t']]], + ['rx_5ffifo_5ftrigger',['rx_fifo_trigger',['../group___s_c_i___b___u_a_r_t.html#a989ca4836b86b478612a9c33d5aacb03',1,'sci_b_uart_extended_cfg_t::rx_fifo_trigger()'],['../group___s_c_i_f___u_a_r_t.html#a1067241f2267052cd8240d136c0cba9c',1,'scif_uart_extended_cfg_t::rx_fifo_trigger()']]], ['rx_5fipl',['rx_ipl',['../group___m_h_u___a_p_i.html#a7845968f2caba53ceb0d64761b12bc6e',1,'mhu_cfg_t::rx_ipl()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a0485d0bdeaa7786fa0a1059fa2b17172',1,'mhu_ns_swint_get_cfg_t::rx_ipl()']]], - ['rx_5firq',['rx_irq',['../group___m_h_u___a_p_i.html#af6d5343757b4e233873d1707ceac8998',1,'mhu_cfg_t::rx_irq()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a2b7fe6de692d763e2ed654f7cb34976e',1,'mhu_ns_swint_get_cfg_t::rx_irq()']]], + ['rx_5firq',['rx_irq',['../group___c_a_n___a_p_i.html#a88ba0583ec46ae65985a733c38975c38',1,'can_cfg_t::rx_irq()'],['../group___m_h_u___a_p_i.html#af6d5343757b4e233873d1707ceac8998',1,'mhu_cfg_t::rx_irq()'],['../group___m_h_u___n_s___s_w_i_n_t___g_e_t___a_p_i.html#a2b7fe6de692d763e2ed654f7cb34976e',1,'mhu_ns_swint_get_cfg_t::rx_irq()'],['../group___i3_c___b.html#a65d040ea1c91e96fbc4486e39b51c23d',1,'i3c_b_extended_cfg_t::rx_irq()']]], ['rx_5fmb_5fconfig',['rx_mb_config',['../group___c_a_n_f_d.html#a375e575afb5d17c01809a10d32ae59a5',1,'canfd_global_cfg_t']]], + ['rx_5fmb_5fstatus',['rx_mb_status',['../group___c_a_n___a_p_i.html#ade07c155f14547df76ac44249e0d0feb',1,'can_info_t']]], ['rx_5ftrigger_5flevel',['rx_trigger_level',['../group___r_s_p_i.html#a4d6543f22a352c931855cd85e19cfe45',1,'rspi_extended_cfg_t']]], ['rxfifo_5ftrigger_5fbytes',['rxfifo_trigger_bytes',['../group___r_s_p_i.html#aca5de5e6709e812f9f9f528a42f97e15',1,'rspi_instance_ctrl_t']]], ['rxi_5fipl',['rxi_ipl',['../group___s_p_i___a_p_i.html#a158d5d33a79faa329d9c6d0d02d9bd86',1,'spi_cfg_t::rxi_ipl()'],['../group___u_a_r_t___a_p_i.html#a37d3e833ad3e9a21467936db2a22e27d',1,'uart_cfg_t::rxi_ipl()']]], - ['rxi_5firq',['rxi_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#abd8565fa7ddc83acb87329275bb56b48',1,'i2c_master_cfg_t::rxi_irq()'],['../group___s_p_i___a_p_i.html#acd490330020cce12382d6ba1b1ad8bbe',1,'spi_cfg_t::rxi_irq()'],['../group___u_a_r_t___a_p_i.html#a14a3cdcd373af5dfc69a30206276a44f',1,'uart_cfg_t::rxi_irq()']]] + ['rxi_5firq',['rxi_irq',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#abd8565fa7ddc83acb87329275bb56b48',1,'i2c_master_cfg_t::rxi_irq()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#ad497920d5c927eff7d183500d8c21dd9',1,'i2c_slave_cfg_t::rxi_irq()'],['../group___s_p_i___a_p_i.html#acd490330020cce12382d6ba1b1ad8bbe',1,'spi_cfg_t::rxi_irq()'],['../group___u_a_r_t___a_p_i.html#a14a3cdcd373af5dfc69a30206276a44f',1,'uart_cfg_t::rxi_irq()']]] ]; diff --git a/search/variables_f.js b/search/variables_f.js index de5e1b0..7da0278 100644 --- a/search/variables_f.js +++ b/search/variables_f.js @@ -1,31 +1,83 @@ var searchData= [ - ['semaphore_5ftimeout',['semaphore_timeout',['../group___r_m___c_o_m_m_s___a_p_i.html#a5376df7fa8ffa67c59162a527046a7e0',1,'rm_comms_cfg_t::semaphore_timeout()'],['../group___r_m___o_b1203___a_p_i.html#a9ad151287228fa18a0314b5869cd876a',1,'rm_ob1203_cfg_t::semaphore_timeout()']]], - ['send_5ftype',['send_type',['../group___m_h_u___n_s.html#ae91cb79beb29ca1cb2aa807962dc988e',1,'mhu_ns_instance_ctrl_t::send_type()'],['../group___m_h_u___s.html#a4c3b32cb29fa8cc15747360380fa4e82',1,'mhu_s_instance_ctrl_t::send_type()']]], + ['sampling_5ftime',['sampling_time',['../group___a_d_c___c.html#af94b7b8c31dab35dcb7bf1bfe1670d6d',1,'adc_c_extended_cfg_t']]], + ['scan_5fend_5fb_5fipl',['scan_end_b_ipl',['../group___a_d_c___a_p_i.html#ab82e85d4750158ef07146b6c8145e347',1,'adc_cfg_t']]], + ['scan_5fend_5fb_5firq',['scan_end_b_irq',['../group___a_d_c___a_p_i.html#aba6e98fa10321ce7c1b6a7173b0b0d8b',1,'adc_cfg_t']]], + ['scan_5fend_5fc_5fipl',['scan_end_c_ipl',['../group___a_d_c___a_p_i.html#ab5e230f8dd33c81d381547b0eec041af',1,'adc_cfg_t']]], + ['scan_5fend_5fc_5firq',['scan_end_c_irq',['../group___a_d_c___a_p_i.html#a6ac6c18163aca50f9dc288ac08f2edee',1,'adc_cfg_t']]], + ['scan_5fend_5fipl',['scan_end_ipl',['../group___a_d_c___a_p_i.html#aa41f2d4a44ef47bfa9c33777cc7ff35a',1,'adc_cfg_t']]], + ['scan_5fend_5firq',['scan_end_irq',['../group___a_d_c___a_p_i.html#ad4835aef4411a9e3f3f68bf0a79c18f1',1,'adc_cfg_t']]], + ['scan_5fmask',['scan_mask',['../group___a_d_c___c.html#a1124a6766edf4954d95d01d6d8e46548',1,'adc_c_channel_cfg_t::scan_mask()'],['../group___a_d_c___e.html#af8597107fafe5604cb585525909755e3',1,'adc_e_channel_cfg_t::scan_mask()']]], + ['scan_5fmask_5fgroup_5fb',['scan_mask_group_b',['../group___a_d_c___e.html#a511e34c7b68581d758834dbb70202595',1,'adc_e_channel_cfg_t']]], + ['scan_5fmask_5fgroup_5fc',['scan_mask_group_c',['../group___a_d_c___e.html#aefe48cc53f1703d427fbef6177a008b9',1,'adc_e_channel_cfg_t']]], + ['scancfg',['scanCfg',['../group___a_d_c___a_p_i.html#a44289d7822720544751eb22e3d7d38ea',1,'adc_api_t']]], + ['scangroupstart',['scanGroupStart',['../group___a_d_c___a_p_i.html#aeae126b8a09e1ec34e8e3afb4a3344ff',1,'adc_api_t']]], + ['scanstart',['scanStart',['../group___a_d_c___a_p_i.html#a2f9e091ca57ca2c58262f66ab5c341c9',1,'adc_api_t']]], + ['scanstatusget',['scanStatusGet',['../group___a_d_c___a_p_i.html#ae54bb53ea323ac24a3b63769e0196a57',1,'adc_api_t']]], + ['scanstop',['scanStop',['../group___a_d_c___a_p_i.html#a90346240a89666209a78bdcb020278bd',1,'adc_api_t']]], + ['sdet_5fipl',['sdet_ipl',['../group___p_d_m___a_p_i.html#a346098539bddc9e3c5228e7360553a9e',1,'pdm_cfg_t']]], + ['sdet_5firq',['sdet_irq',['../group___p_d_m___a_p_i.html#ae4b909dedca5d5099654a1342ae76d20',1,'pdm_cfg_t']]], + ['sec_5fmatch',['sec_match',['../group___r_t_c___a_p_i.html#ab654c3b3c410b61980950ddf0581cd27',1,'rtc_alarm_time_t']]], + ['semaphore_5ftimeout',['semaphore_timeout',['../group___r_m___c_o_m_m_s___a_p_i.html#a5376df7fa8ffa67c59162a527046a7e0',1,'rm_comms_cfg_t']]], + ['send_5ftype',['send_type',['../group___m_h_u___b___n_s.html#a644305cfbb2917f04ceeea349b8849a6',1,'mhu_b_ns_instance_ctrl_t::send_type()'],['../group___m_h_u___b___s.html#ac6ee77183a51d7a53d2f9568318fda9b',1,'mhu_b_s_instance_ctrl_t::send_type()'],['../group___m_h_u___n_s.html#ae91cb79beb29ca1cb2aa807962dc988e',1,'mhu_ns_instance_ctrl_t::send_type()'],['../group___m_h_u___s.html#a4c3b32cb29fa8cc15747360380fa4e82',1,'mhu_s_instance_ctrl_t::send_type()']]], ['sensoridget',['sensorIdGet',['../group___r_m___h_s300_x___a_p_i.html#a88c8aa8e31fa829fb91cbae763baa284',1,'rm_hs300x_api_t']]], - ['slave',['slave',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#adb20031cbc34b2595676ff8004e49448',1,'i2c_master_cfg_t']]], + ['short_5fcircuit_5fcount_5fh',['short_circuit_count_h',['../group___p_d_m.html#a74236150297943f2448c63624550ca8e',1,'pdm_extended_cfg_t']]], + ['short_5fcircuit_5fcount_5fl',['short_circuit_count_l',['../group___p_d_m.html#a173087f61b03fcc91f7f3dd2215ae0d5',1,'pdm_extended_cfg_t']]], + ['short_5fcircuit_5fdetection_5fenable',['short_circuit_detection_enable',['../group___p_d_m.html#af817e528f5ff2e362fb4b550d32dc347',1,'pdm_extended_cfg_t']]], + ['sinc_5ffilter_5fmode',['sinc_filter_mode',['../group___p_d_m.html#a41d1c3d3272bd0eb06a52b46643300e1',1,'pdm_extended_cfg_t']]], + ['sincdec',['sincdec',['../group___p_d_m.html#a765c7cf7a108dbfedcca720f616d5a2e',1,'pdm_extended_cfg_t']]], + ['sincrng',['sincrng',['../group___p_d_m.html#a0c16174f6a3b0f80300db586bd8a8ed5',1,'pdm_extended_cfg_t']]], + ['size',['size',['../group___s_p_i___f_l_a_s_h___a_p_i.html#afb42b93f396ec30b863646150e9bb91d',1,'spi_flash_erase_command_t']]], + ['slave',['slave',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#adb20031cbc34b2595676ff8004e49448',1,'i2c_master_cfg_t::slave()'],['../group___i2_c___s_l_a_v_e___a_p_i.html#a54f03c15c476b1e03c2e09232db9b92f',1,'i2c_slave_cfg_t::slave()']]], + ['slave_5fcommand_5fresponse_5finfo',['slave_command_response_info',['../group___i3_c___b.html#a0f2fd857b12b9284dddf430463764016',1,'i3c_b_extended_cfg_t']]], + ['slave_5finfo',['slave_info',['../group___i3_c___a_p_i.html#adfe6b41d24ce5d158df818ab5591b88a',1,'i3c_device_cfg_t']]], ['slaveaddressset',['slaveAddressSet',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a6e1d2e41f4dc058c06c1f5aae0c7bce5',1,'i2c_master_api_t']]], + ['slavestatusset',['slaveStatusSet',['../group___i3_c___a_p_i.html#a39518a413d0c9056e41d4da97ce3884e',1,'i3c_api_t']]], + ['slope_5fmicrovolts',['slope_microvolts',['../group___a_d_c___a_p_i.html#abaf272ea2350e486390dc250ae8f9af3',1,'adc_info_t']]], + ['snfr_5fvalue',['snfr_value',['../group___s_c_i___b___i2_c.html#a02a85aeaa241753166390cb796c7ead4',1,'sci_b_i2c_clock_settings_t']]], + ['snoop_5faddress',['snoop_address',['../group___c_r_c___a_p_i.html#af1f280c0dc14a01fa8c8a3aa1f76feeb',1,'crc_cfg_t']]], + ['snoopdisable',['snoopDisable',['../group___c_r_c___a_p_i.html#ab171c85217e275bda7426309bd832b02',1,'crc_api_t']]], + ['snoopenable',['snoopEnable',['../group___c_r_c___a_p_i.html#a4d4efcfb06b59c92801320f31e8f2eb7',1,'crc_api_t']]], + ['softwareeventgenerate',['softwareEventGenerate',['../group___e_l_c___a_p_i.html#a5201eaeb1fbc56f6c78b9db34fb580e3',1,'elc_api_t']]], ['softwarestart',['softwareStart',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a394ddea028013153254bafa12115dce2',1,'transfer_api_t']]], ['softwarestop',['softwareStop',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a77207de2ae81eab58858fd28ae88df06',1,'transfer_api_t']]], + ['sound_5fdetection_5fenable',['sound_detection_enable',['../group___p_d_m.html#a99ccd7247027a766a05b32d0784489d8',1,'pdm_extended_cfg_t']]], + ['sound_5fdetection_5flower_5flimit',['sound_detection_lower_limit',['../group___p_d_m.html#af5d7e83eac366ab370978913e0672924',1,'pdm_extended_cfg_t']]], + ['sound_5fdetection_5fupper_5flimit',['sound_detection_upper_limit',['../group___p_d_m.html#a7975bdb24b891b930432ddd695312536',1,'pdm_extended_cfg_t']]], ['source_5fdiv',['source_div',['../group___t_i_m_e_r___a_p_i.html#a592d3bb6a865ababe1c433ab7b83aa48',1,'timer_cfg_t']]], - ['spbr',['spbr',['../group___r_s_p_i.html#aa3d8783d295b5448fcc8dd2de1201169',1,'rspi_rspck_div_setting_t']]], - ['spck_5fdelay',['spck_delay',['../group___r_s_p_i.html#a0cbb7690023ca0e3a82dd9acf79e34f3',1,'rspi_extended_cfg_t']]], - ['spck_5fdiv',['spck_div',['../group___r_s_p_i.html#ab1dfe38550f42599c7c40f7af8a6d7c7',1,'rspi_extended_cfg_t']]], - ['spi_5firq',['spi_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a8e22c7138ff92050165303b0525e95ba',1,'riic_master_extended_cfg_t']]], - ['ssl_5fnegation_5fdelay',['ssl_negation_delay',['../group___r_s_p_i.html#ace6d2dd7ac73c2171a7c2f0edb11db22',1,'rspi_extended_cfg_t']]], - ['ssl_5fpolarity',['ssl_polarity',['../group___r_s_p_i.html#a6341f3c3ed5db4208c5481e3cb600f26',1,'rspi_extended_cfg_t']]], - ['start',['start',['../group___t_i_m_e_r___a_p_i.html#afcc7e85d01c3d7dc0c6e09954631f47f',1,'timer_api_t']]], + ['sp_5firq',['sp_irq',['../group___i3_c___b.html#aeb148883da18117b256353b35b17cbe6',1,'i3c_b_extended_cfg_t']]], + ['spbr',['spbr',['../group___r_s_p_i.html#aa3d8783d295b5448fcc8dd2de1201169',1,'rspi_rspck_div_setting_t::spbr()'],['../group___s_p_i___b.html#a67df9d0b11ff15890c138596faaa6c03',1,'rspck_div_setting_t::spbr()']]], + ['spck_5fdelay',['spck_delay',['../group___r_s_p_i.html#a0cbb7690023ca0e3a82dd9acf79e34f3',1,'rspi_extended_cfg_t::spck_delay()'],['../group___s_p_i___b.html#aa76a96bdfe3843e023c076e906cdedbb',1,'spi_b_extended_cfg_t::spck_delay()']]], + ['spck_5fdiv',['spck_div',['../group___r_s_p_i.html#ab1dfe38550f42599c7c40f7af8a6d7c7',1,'rspi_extended_cfg_t::spck_div()'],['../group___s_p_i___b.html#a5e759f1a2e0e50733ffe773b84e009b0',1,'spi_b_extended_cfg_t::spck_div()']]], + ['spi_5fclksyn',['spi_clksyn',['../group___s_p_i___b.html#a399719eab6e46125db42de61d7fffe9d',1,'spi_b_extended_cfg_t']]], + ['spi_5fcomm',['spi_comm',['../group___s_p_i___b.html#a7e337db8e24ef889f9a1ccfec9d5a9e9',1,'spi_b_extended_cfg_t']]], + ['spi_5firq',['spi_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#a8e22c7138ff92050165303b0525e95ba',1,'riic_master_extended_cfg_t::spi_irq()'],['../group___r_i_i_c___s_l_a_v_e.html#a5710872e90c0db5ed2c177e883979cc7',1,'riic_slave_extended_cfg_t::spi_irq()']]], + ['spi_5fprotocol',['spi_protocol',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a6f3cdf4d6de603634118801dcb54a6d5',1,'spi_flash_cfg_t']]], + ['spiprotocolset',['spiProtocolSet',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a3328711e7e70c8379f4373d2861d785a',1,'spi_flash_api_t']]], + ['src_5faddr_5fmode',['src_addr_mode',['../group___t_r_a_n_s_f_e_r___a_p_i.html#a1a73c1297d04667da6b2103db34f88ad',1,'transfer_info_t']]], + ['src_5fsize',['src_size',['../group___d_m_a_c___b.html#a6107a37da59835c2457754f90258b9c3',1,'dmac_b_extended_info_t::src_size()'],['../group___t_r_a_n_s_f_e_r___a_p_i.html#a354b4d97746d9393110fc679d466ad99',1,'transfer_info_t::src_size()']]], + ['ssl_5flevel_5fkeep',['ssl_level_keep',['../group___r_s_p_i.html#ae3192998dbe33aee6614dd5f5850d289',1,'rspi_extended_cfg_t::ssl_level_keep()'],['../group___s_p_i___b.html#a8ca3851c76d9a5c02dd07e24309660ff',1,'spi_b_extended_cfg_t::ssl_level_keep()']]], + ['ssl_5fnegation_5fdelay',['ssl_negation_delay',['../group___r_s_p_i.html#ace6d2dd7ac73c2171a7c2f0edb11db22',1,'rspi_extended_cfg_t::ssl_negation_delay()'],['../group___s_p_i___b.html#ad0e864b3954e9abc6b864bb20c56b146',1,'spi_b_extended_cfg_t::ssl_negation_delay()']]], + ['ssl_5fpolarity',['ssl_polarity',['../group___r_s_p_i.html#a6341f3c3ed5db4208c5481e3cb600f26',1,'rspi_extended_cfg_t::ssl_polarity()'],['../group___s_p_i___b.html#a5bc3997ed557ba51b18f3e7118601381',1,'spi_b_extended_cfg_t::ssl_polarity()']]], + ['ssl_5fselect',['ssl_select',['../group___s_p_i___b.html#ab0743a388a256b112510805f0d0b3ac7',1,'spi_b_extended_cfg_t']]], + ['st_5firq',['st_irq',['../group___i3_c___b.html#ac2dd0e54f5699a367af7372aa10630e4',1,'i3c_b_extended_cfg_t']]], + ['start',['start',['../group___p_d_m___a_p_i.html#abf43fd87ed8c5bdaccb5474009fa6006',1,'pdm_api_t::start()'],['../group___t_i_m_e_r___a_p_i.html#afcc7e85d01c3d7dc0c6e09954631f47f',1,'timer_api_t::start()']]], ['start_5fsource',['start_source',['../group___g_p_t.html#a3b894424ab45e17d02938de9c211911a',1,'gpt_extended_cfg_t']]], - ['state',['state',['../group___p_o_e_g___a_p_i.html#aeae55874b243b6034a81711e3494bc6d',1,'poeg_status_t::state()'],['../group___t_i_m_e_r___a_p_i.html#a952d4e8952d0cc32bad22546064a8c44',1,'timer_status_t::state()']]], - ['status',['status',['../group___r_m___z_m_o_d4_x_x_x.html#aa547817f19f270a3d32f32d17d38cc56',1,'rm_zmod4xxx_instance_ctrl_t']]], + ['state',['state',['../group___a_d_c___a_p_i.html#a276869569116678c7838ef506fceb77b',1,'adc_status_t::state()'],['../group___p_d_m___a_p_i.html#a2c6cf4b37d45d78d3c1f61721877a691',1,'pdm_status_t::state()'],['../group___p_o_e_g___a_p_i.html#aeae55874b243b6034a81711e3494bc6d',1,'poeg_status_t::state()'],['../group___t_i_m_e_r___a_p_i.html#a952d4e8952d0cc32bad22546064a8c44',1,'timer_status_t::state()']]], + ['static_5faddress',['static_address',['../group___i3_c___a_p_i.html#a028f83c75b6bdc0155b5ee9abc822225',1,'i3c_device_table_cfg_t::static_address()'],['../group___i3_c___a_p_i.html#a77ccba404f1ec93b31a33e6c7ebed26f',1,'i3c_device_cfg_t::static_address()']]], + ['status',['status',['../group___c_a_n___a_p_i.html#aec9d4439f59b61933c2205e4d3ea9210',1,'can_info_t::status()'],['../group___r_t_c___a_p_i.html#a72e36c98782bcb50ce83f7d05b3fc024',1,'rtc_info_t::status()'],['../group___r_m___z_m_o_d4_x_x_x.html#aa547817f19f270a3d32f32d17d38cc56',1,'rm_zmod4xxx_instance_ctrl_t::status()']]], + ['status_5fcommand',['status_command',['../group___s_p_i___f_l_a_s_h___a_p_i.html#a27e2c004e2548fea4eca6793027b9d25',1,'spi_flash_cfg_t']]], ['statuscheck',['statusCheck',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#a27c6d482aef38fe699598bd294eae220',1,'rm_zmod4xxx_api_t']]], - ['statusget',['statusGet',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a518c35fc22e49d6969fb6e15aa1e09cd',1,'i2c_master_api_t::statusGet()'],['../group___p_o_e_g___a_p_i.html#ab377a80211d85f8c90b578e93dfd7964',1,'poeg_api_t::statusGet()'],['../group___t_i_m_e_r___a_p_i.html#a11321e8dde7c33a4e6835a1bf64f7689',1,'timer_api_t::statusGet()']]], - ['sti_5firq',['sti_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#ad923980f5252b98f5a994166c32fde87',1,'riic_master_extended_cfg_t']]], - ['stop',['stop',['../group___t_i_m_e_r___a_p_i.html#aed0139dbf5102e39719ddbc51f16a21e',1,'timer_api_t']]], + ['statusclear',['statusClear',['../group___w_d_t___a_p_i.html#af66d798489c7ace801fee8b5a9c833c2',1,'wdt_api_t']]], + ['statusget',['statusGet',['../group___i2_c___m_a_s_t_e_r___a_p_i.html#a518c35fc22e49d6969fb6e15aa1e09cd',1,'i2c_master_api_t::statusGet()'],['../group___p_d_m___a_p_i.html#a2b1840e35134d539722e741e0b00042c',1,'pdm_api_t::statusGet()'],['../group___p_o_e_g___a_p_i.html#ab377a80211d85f8c90b578e93dfd7964',1,'poeg_api_t::statusGet()'],['../group___s_p_i___f_l_a_s_h___a_p_i.html#a1eea2761178ddd8ca7ef3aacd5c80507',1,'spi_flash_api_t::statusGet()'],['../group___t_i_m_e_r___a_p_i.html#a11321e8dde7c33a4e6835a1bf64f7689',1,'timer_api_t::statusGet()'],['../group___w_d_t___a_p_i.html#a317b972273cef3bc94087727b3ee17c5',1,'wdt_api_t::statusGet()']]], + ['stdbr',['stdbr',['../group___i3_c___b.html#aee8857dcfc0a90a83e4431ccbd4746e8',1,'i3c_b_bitrate_settings_t']]], + ['sti_5firq',['sti_irq',['../group___r_i_i_c___m_a_s_t_e_r.html#ad923980f5252b98f5a994166c32fde87',1,'riic_master_extended_cfg_t::sti_irq()'],['../group___r_i_i_c___s_l_a_v_e.html#a01d8a48ff4d983d8d8995d6dbd4e5ac6',1,'riic_slave_extended_cfg_t::sti_irq()']]], + ['stop',['stop',['../group___p_d_m___a_p_i.html#ad8342d4be5d02082a860b08303d0478c',1,'pdm_api_t::stop()'],['../group___t_i_m_e_r___a_p_i.html#aed0139dbf5102e39719ddbc51f16a21e',1,'timer_api_t::stop()']]], ['stop_5fbits',['stop_bits',['../group___u_a_r_t___a_p_i.html#ab5d2042b5bedd324dea60d379ff4140a',1,'uart_cfg_t']]], + ['stop_5fcontrol',['stop_control',['../group___w_d_t___a_p_i.html#a4be884c6982d93cdb759e8d3994b62a3',1,'wdt_cfg_t']]], ['stop_5flevel',['stop_level',['../group___g_p_t.html#a5805853871548d015520f71f3ab00e93',1,'gpt_output_pin_t']]], ['stop_5fsource',['stop_source',['../group___g_p_t.html#a41333514ba7ccb2b4e2d6475a51dcc26',1,'gpt_extended_cfg_t']]], ['sulfurodordatacalculate',['sulfurOdorDataCalculate',['../group___r_m___z_m_o_d4_x_x_x___a_p_i.html#af2123328d6c1ced0cc62d9c98f5a8a7a',1,'rm_zmod4xxx_api_t']]], ['synchronization_5fjump_5fwidth',['synchronization_jump_width',['../group___c_a_n___a_p_i.html#aeb8eee8b6e6ea6a433c1ff5d89f68c4b',1,'can_bit_timing_cfg_t']]], - ['systemcoreclock',['SystemCoreClock',['../group___b_s_p___m_c_u.html#gaa3cd3e43291e81e795d642b79b6088e6',1,'system.c']]] + ['systemcoreclock',['SystemCoreClock',['../group___b_s_p___m_c_u.html#gaa3cd3e43291e81e795d642b79b6088e6',1,'SystemCoreClock(): system.c'],['../group___b_s_p___m_c_u.html#gaa3cd3e43291e81e795d642b79b6088e6',1,'SystemCoreClock(): system.c']]] ]; diff --git a/struct_m_p_u_region_settings__t.html b/struct_m_p_u_region_settings__t.html index c31e38c..d78995d 100644 --- a/struct_m_p_u_region_settings__t.html +++ b/struct_m_p_u_region_settings__t.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: MPURegionSettings_t Struct Reference +RZV Flexible Software Package Documentation: MPURegionSettings_t Struct Reference @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    @@ -143,7 +211,7 @@

      - +

    diff --git a/structalgorithm__version.html b/structalgorithm__version.html index 1ff64f7..22cc1f7 100644 --- a/structalgorithm__version.html +++ b/structalgorithm__version.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: algorithm_version Struct Reference +RZV Flexible Software Package Documentation: algorithm_version Struct Reference @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    algorithm_version Struct Reference
    @@ -111,7 +179,7 @@ diff --git a/structx_m_p_u___s_e_t_t_i_n_g_s.html b/structx_m_p_u___s_e_t_t_i_n_g_s.html index 2b6fceb..38306ec 100644 --- a/structx_m_p_u___s_e_t_t_i_n_g_s.html +++ b/structx_m_p_u___s_e_t_t_i_n_g_s.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: xMPU_SETTINGS Struct Reference +RZV Flexible Software Package Documentation: xMPU_SETTINGS Struct Reference @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    @@ -143,7 +211,7 @@

      - +

    diff --git a/structzmod4xxx__conf.html b/structzmod4xxx__conf.html index 82309df..469c0e5 100644 --- a/structzmod4xxx__conf.html +++ b/structzmod4xxx__conf.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: zmod4xxx_conf Struct Reference +RZV Flexible Software Package Documentation: zmod4xxx_conf Struct Reference @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    zmod4xxx_conf Struct Reference
    @@ -111,7 +179,7 @@ diff --git a/structzmod4xxx__conf__str.html b/structzmod4xxx__conf__str.html index f129c01..176cf8a 100644 --- a/structzmod4xxx__conf__str.html +++ b/structzmod4xxx__conf__str.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: zmod4xxx_conf_str Struct Reference +RZV Flexible Software Package Documentation: zmod4xxx_conf_str Struct Reference @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    zmod4xxx_conf_str Struct Reference
    @@ -111,7 +179,7 @@ diff --git a/structzmod4xxx__dev__t.html b/structzmod4xxx__dev__t.html index 2eaeff8..50b92c4 100644 --- a/structzmod4xxx__dev__t.html +++ b/structzmod4xxx__dev__t.html @@ -5,7 +5,7 @@ -RZ/V Flexible Software Package Documentation: zmod4xxx_dev_t Struct Reference +RZV Flexible Software Package Documentation: zmod4xxx_dev_t Struct Reference @@ -19,6 +19,10 @@ + + + + @@ -32,24 +36,24 @@ Logo -
    RZ/V Flexible Software Package Documentation -  Release v1.1.0 +
    RZV Flexible Software Package Documentation +  Release v2.0.0
    -
    - +
    + +
    + - - - - -
    + +
    + +   + + + +
    @@ -74,6 +78,53 @@ + + + + + +
    + + +
    + +
    +
    +
    @@ -305,7 +373,7 @@

      - +