Skip to content

Infineon/btsdk-drivers

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.

btsdk-drivers

Overview

This repo contains driver libraries used in BTSDK 2.0 and higher. The libraries included in this repo are:

  • hsl_rgb_lib

    • Library to convert HSL Color to RGB Color values
  • thermistor_ncp15xv103_lib

    • Library providing API implementation for NCP15XV103E03RC thermistor
  • thermistor_ncu15wf104_lib

    • Library providing API implementation for NCU15WF104F60RC thermistor
  • ambient_light_sensor_lib

    • Ambient Light Sensor library for Mesh kit (CYBT-213043-MESH)
  • pir_motion_sensor_lib

    • PIR (Passive Infrared Motion Sensor) library for Mesh kit (CYBT-213043-MESH)
  • button_manager

    • Library providing Button Management
  • led_manager

    • LED Management Support
  • nvram_emulation

    • NVRAM emulation in RAM for kits like CYW955513EVK-01 without flash access
      This library provides APIs to allow platforms without flash to emulate NVRAM in RAM, which allows sample applications to demonstrate functionality normally requiring NVRAM access, for example link key storage and retrieval. This can also be used as a starting point for solutions that will use an external host to store and retrieve data from host storage. To include NVRAM emulation support add COMPONENTS+=nvram_emulation to the makefile. In C code where the wiced_hal_*_nvram API will be used, make changes as follows:
    /* add header */
    #ifdef COMPONENT_nvram_emulation
    #include "nvram_emulation_mem.h"
    #endif
    /* initialize the library before using */
    #ifdef COMPONENT_nvram_emulation
        nvram_emulation_mem_init();
    #endif

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages