├── Aqara_Opple_JTAG_Connection_PCB_A.png ├── Aqara_Opple_JTAG_Connection_PCB_B.png ├── Aqara_Opple_JTAG_Connection_UartSBee.png ├── Aqara_Opple_JTAG_Pinout.png ├── Aqara_Opple_Pinout.png ├── Jtag.md ├── README.md ├── SDK_2.6.1_JN5189DK6 ├── CMSIS │ ├── Driver │ │ ├── DriverTemplates │ │ │ ├── Driver_CAN.c │ │ │ ├── Driver_ETH_MAC.c │ │ │ ├── Driver_ETH_PHY.c │ │ │ ├── Driver_Flash.c │ │ │ ├── Driver_I2C.c │ │ │ ├── Driver_MCI.c │ │ │ ├── Driver_SAI.c │ │ │ ├── Driver_SPI.c │ │ │ ├── Driver_Storage.c │ │ │ ├── Driver_USART.c │ │ │ ├── Driver_USBD.c │ │ │ └── Driver_USBH.c │ │ └── Include │ │ │ ├── Driver_CAN.h │ │ │ ├── Driver_Common.h │ │ │ ├── Driver_ETH.h │ │ │ ├── Driver_ETH_MAC.h │ │ │ ├── Driver_ETH_PHY.h │ │ │ ├── Driver_Flash.h │ │ │ ├── Driver_I2C.h │ │ │ ├── Driver_MCI.h │ │ │ ├── Driver_NAND.h │ │ │ ├── Driver_SAI.h │ │ │ ├── Driver_SPI.h │ │ │ ├── Driver_USART.h │ │ │ ├── Driver_USB.h │ │ │ ├── Driver_USBD.h │ │ │ └── Driver_USBH.h │ ├── Include │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── arm_math.h │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_iccarm.h │ │ ├── cmsis_version.h │ │ ├── core_armv8mbl.h │ │ ├── core_armv8mml.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm23.h │ │ ├── core_cm3.h │ │ ├── core_cm33.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_dsp.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ ├── mpu_armv7.h │ │ ├── mpu_armv8.h │ │ └── tz_context.h │ └── LICENSE.txt ├── JN5189DK6_manifest_v3_4.xml ├── JN5189DK6_manifest_v3_5.xml ├── SW-Content-Register.txt ├── boards │ └── jn5189dk6 │ │ ├── clock_config.c │ │ ├── clock_config.h │ │ ├── demo_apps │ │ ├── hello_world │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── hello_world.bin │ │ │ ├── hello_world.c │ │ │ ├── hello_world.xml │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ └── led_blinky │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── iar │ │ │ └── dk6_image_tool.py │ │ │ ├── led_blinky.bin │ │ │ ├── led_blinky.c │ │ │ ├── led_blinky.xml │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── driver_examples │ │ ├── adc │ │ │ ├── lpc_adc_basic │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── fsl_adc_basic.c │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── lpc_adc_basic.xml │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ │ ├── lpc_adc_burst │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── fsl_adc_burst.c │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── lpc_adc_burst.xml │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ │ ├── lpc_adc_dma │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── fsl_adc_dma.c │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── lpc_adc_dma.xml │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ │ └── lpc_adc_interrupt │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── fsl_adc_interrupt.c │ │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── lpc_adc_interrupt.xml │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ ├── aes │ │ │ ├── aes.c │ │ │ ├── aes.xml │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── cic_irb │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── cic_irb_example.xml │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── example_RC5.c │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── cmp │ │ │ ├── input_external │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── cmp.c │ │ │ │ ├── cmp_input_external.xml │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ │ └── input_internal │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── cmp.c │ │ │ │ ├── cmp_input_internal.xml │ │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ ├── ctimer │ │ │ ├── simple_match │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── ctimer_match_example.xml │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ └── simple_match.c │ │ │ └── simple_match_interrupt │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── ctimer_match_interrupt_example.xml │ │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ └── simple_match_interrupt.c │ │ ├── dma │ │ │ ├── m2m_polling │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── dma_m2m_polling.c │ │ │ │ ├── dma_m2m_polling.xml │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ │ └── memory_to_memory │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── dma_memory_to_memory.c │ │ │ │ ├── dma_memory_to_memory.xml │ │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ ├── dmic │ │ │ ├── dmic_dma │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── dmic_dma.c │ │ │ │ ├── dmic_dma.xml │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ │ └── dmic_hwvad │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── dmic_hwvad.c │ │ │ │ ├── dmic_hwvad.xml │ │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ ├── flash │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── flash_demo.xml │ │ │ ├── flash_test.c │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── fmeas │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── fmeas.c │ │ │ ├── fmeas.xml │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── gint │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── gint.c │ │ │ ├── gint.xml │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── gpio │ │ │ └── led_output │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── gpio_led_output.c │ │ │ │ ├── gpio_led_output.xml │ │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ ├── i2c │ │ │ ├── dma_transfer │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── i2c_dma_transfer.c │ │ │ │ ├── i2c_dma_transfer.xml │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ │ ├── interrupt_transfer │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── i2c_interrupt_transfer.c │ │ │ │ ├── i2c_interrupt_transfer.xml │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ │ └── polling_transfer │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── i2c_polling_transfer.c │ │ │ │ ├── i2c_polling_transfer.xml │ │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ ├── pint │ │ │ ├── pattern_match │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── pint_pattern_match.c │ │ │ │ ├── pint_pattern_match.xml │ │ │ │ └── readme.txt │ │ │ └── pin_interrupt │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── pint_pin_interrupt.c │ │ │ │ ├── pint_pin_interrupt.xml │ │ │ │ └── readme.txt │ │ ├── power_api │ │ │ └── simple_powerdown │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── powerdown.c │ │ │ │ ├── powerdown_demo.xml │ │ │ │ └── readme.txt │ │ ├── pwm │ │ │ └── pwm_output │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── pwm_output.c │ │ │ │ ├── pwm_output.xml │ │ │ │ └── readme.txt │ │ ├── rng │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ ├── readme.txt │ │ │ ├── rng_test.c │ │ │ └── rng_test.xml │ │ ├── rtc │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ ├── readme.txt │ │ │ ├── rtc.c │ │ │ └── rtc_example.xml │ │ ├── sha │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ ├── readme.txt │ │ │ ├── sha.c │ │ │ └── sha.xml │ │ ├── spi │ │ │ ├── dma_transfer │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ ├── spi_dma_transfer.c │ │ │ │ └── spi_dma_transfer.xml │ │ │ ├── interrupt │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ ├── spi_interrupt.c │ │ │ │ └── spi_interrupt.xml │ │ │ ├── interrupt_b2b │ │ │ │ ├── master │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board_utility.c │ │ │ │ │ ├── board_utility.h │ │ │ │ │ ├── clock_config.c │ │ │ │ │ ├── clock_config.h │ │ │ │ │ ├── iar │ │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ │ ├── pin_mux.c │ │ │ │ │ ├── pin_mux.h │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── spi_interrupt_b2b_master.c │ │ │ │ │ └── spi_interrupt_b2b_master.xml │ │ │ │ └── slave │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board_utility.c │ │ │ │ │ ├── board_utility.h │ │ │ │ │ ├── clock_config.c │ │ │ │ │ ├── clock_config.h │ │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ │ ├── pin_mux.c │ │ │ │ │ ├── pin_mux.h │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── spi_interrupt_b2b_slave.c │ │ │ │ │ └── spi_interrupt_b2b_slave.xml │ │ │ ├── interrupt_b2b_transfer │ │ │ │ ├── master │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board_utility.c │ │ │ │ │ ├── board_utility.h │ │ │ │ │ ├── clock_config.c │ │ │ │ │ ├── clock_config.h │ │ │ │ │ ├── iar │ │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ │ ├── pin_mux.c │ │ │ │ │ ├── pin_mux.h │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── spi_interrupt_b2b_transfer_master.c │ │ │ │ │ └── spi_interrupt_b2b_transfer_master.xml │ │ │ │ └── slave │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board_utility.c │ │ │ │ │ ├── board_utility.h │ │ │ │ │ ├── clock_config.c │ │ │ │ │ ├── clock_config.h │ │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ │ ├── pin_mux.c │ │ │ │ │ ├── pin_mux.h │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── spi_interrupt_b2b_transfer_slave.c │ │ │ │ │ └── spi_interrupt_b2b_transfer_slave.xml │ │ │ ├── interrupt_transfer │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ ├── spi_interrupt_transfer.c │ │ │ │ └── spi_interrupt_transfer.xml │ │ │ ├── polling_b2b_transfer │ │ │ │ ├── master │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board_utility.c │ │ │ │ │ ├── board_utility.h │ │ │ │ │ ├── clock_config.c │ │ │ │ │ ├── clock_config.h │ │ │ │ │ ├── iar │ │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ │ ├── pin_mux.c │ │ │ │ │ ├── pin_mux.h │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── spi_polling_b2b_transfer_master.c │ │ │ │ │ └── spi_polling_b2b_transfer_master.xml │ │ │ │ └── slave │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board_utility.c │ │ │ │ │ ├── board_utility.h │ │ │ │ │ ├── clock_config.c │ │ │ │ │ ├── clock_config.h │ │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ │ ├── pin_mux.c │ │ │ │ │ ├── pin_mux.h │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── spi_polling_b2b_transfer_slave.c │ │ │ │ │ └── spi_polling_b2b_transfer_slave.xml │ │ │ └── polling_transfer │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ ├── spi_polling_transfer.c │ │ │ │ └── spi_polling_transfer.xml │ │ ├── spifi │ │ │ ├── dma_transfer │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ ├── spifi_dma_transfer.c │ │ │ │ └── spifi_dma_transfer.xml │ │ │ └── polling_transfer │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ ├── spifi_polling_transfer.c │ │ │ │ └── spifi_polling_transfer.xml │ │ ├── temp_sensor │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ ├── readme.txt │ │ │ ├── temp_sensor.c │ │ │ ├── temp_sensor.h │ │ │ ├── temp_sensor.xml │ │ │ ├── temp_sensor_drv.c │ │ │ ├── temp_sensor_drv.h │ │ │ ├── temp_sensor_drv_test.c │ │ │ └── temp_sensor_drv_test.h │ │ ├── usart │ │ │ ├── dma_double_buffer_transfer │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ ├── usart_dma_double_buffer_transfer.c │ │ │ │ └── usart_dma_double_buffer_transfer.xml │ │ │ ├── dma_transfer │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ ├── usart_dma_transfer.c │ │ │ │ └── usart_dma_transfer.xml │ │ │ ├── interrupt │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ ├── usart_interrupt.c │ │ │ │ └── usart_interrupt.xml │ │ │ ├── interrupt_ring_buffer_transfer │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ ├── usart_interrupt_ring_buffer_transfer.c │ │ │ │ └── usart_interrupt_ring_buffer_transfer.xml │ │ │ ├── interrupt_transfer │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ ├── usart_interrupt_transfer.c │ │ │ │ └── usart_interrupt_transfer.xml │ │ │ └── polling │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_utility.c │ │ │ │ ├── board_utility.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ ├── readme.txt │ │ │ │ ├── usart_polling.c │ │ │ │ └── usart_polling.xml │ │ └── wwdt │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── iar │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ ├── readme.txt │ │ │ ├── wwdt.c │ │ │ └── wwdt_example.xml │ │ ├── project_template │ │ ├── board.c │ │ ├── board.h │ │ ├── board_utility.c │ │ ├── board_utility.h │ │ ├── clock_config.c │ │ ├── clock_config.h │ │ ├── peripherals.c │ │ ├── peripherals.h │ │ ├── pin_mux.c │ │ └── pin_mux.h │ │ ├── rtos_examples │ │ ├── freertos_event │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── freertos_event.c │ │ │ ├── freertos_event.xml │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── freertos_generic │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── freertos_generic.c │ │ │ ├── freertos_generic.xml │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── freertos_hello │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── freertos_hello.c │ │ │ ├── freertos_hello.xml │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── freertos_i2c │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── freertos_i2c.c │ │ │ ├── freertos_i2c.xml │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── freertos_mutex │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── freertos_mutex.c │ │ │ ├── freertos_mutex.xml │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── freertos_queue │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── freertos_queue.c │ │ │ ├── freertos_queue.xml │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── freertos_sem │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── freertos_sem.c │ │ │ ├── freertos_sem.xml │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── freertos_spi │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── freertos_spi.c │ │ │ ├── freertos_spi.xml │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── freertos_swtimer │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── freertos_swtimer.c │ │ │ ├── freertos_swtimer.xml │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── freertos_tickless │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── freertos_tickless.c │ │ │ ├── freertos_tickless.xml │ │ │ ├── iar │ │ │ │ └── dk6_image_tool.py │ │ │ ├── low_power_tickless │ │ │ │ ├── fsl_tickless_rtc.c │ │ │ │ └── fsl_tickless_rtc.h │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ └── freertos_usart │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── freertos_usart.c │ │ │ ├── freertos_usart.xml │ │ │ ├── iar │ │ │ └── dk6_image_tool.py │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ ├── usb_dongle_examples │ │ └── led_blinky │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── iar │ │ │ └── dk6_image_tool.py │ │ │ ├── led_blinky.bin │ │ │ ├── led_blinky.c │ │ │ ├── led_blinky_for_usb_dongle.xml │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── readme.txt │ │ └── wireless_examples │ │ ├── framework │ │ └── ssbl │ │ │ ├── binary │ │ │ └── ssbl.bin │ │ │ ├── bm │ │ │ ├── EmbeddedTypes.h │ │ │ ├── OtaUtils.c │ │ │ ├── OtaUtils.h │ │ │ ├── board.h │ │ │ ├── board_utility.h │ │ │ ├── iar │ │ │ │ ├── dk6_image_tool.py │ │ │ │ └── test_es2_sign │ │ │ │ │ ├── cert.bin │ │ │ │ │ ├── certif_es2 │ │ │ │ │ └── priv_key.pem │ │ │ ├── mcux │ │ │ │ └── ssbl.ld │ │ │ ├── qspi_flash.c │ │ │ ├── ssbl.c │ │ │ └── ssbl.xml │ │ │ └── ssbl.readme │ │ └── zigbee │ │ ├── zigbee_coordinator │ │ ├── app_coordinator.c │ │ ├── app_coordinator.h │ │ ├── app_main.c │ │ ├── app_main.h │ │ ├── app_serial_commands.c │ │ ├── app_serial_commands.h │ │ ├── app_start.c │ │ ├── app_zcl_task.c │ │ ├── app_zcl_task.h │ │ ├── bdb_options.h │ │ ├── bm │ │ │ ├── app.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── hardware_init.c │ │ │ ├── mcux │ │ │ │ └── AppBuildNone_JN5189.ld │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── zigbee_coordinator_bm.xml │ │ ├── coordinator.zpscfg │ │ ├── pdum_apdu.S │ │ ├── pdum_gen.c │ │ ├── readme.txt │ │ ├── zcl_options.h │ │ ├── zigbee_config.h │ │ └── zps_gen.c │ │ ├── zigbee_ed_rx_off │ │ ├── app_end_device_node.c │ │ ├── app_end_device_node.h │ │ ├── app_main.c │ │ ├── app_main.h │ │ ├── app_reporting.c │ │ ├── app_reporting.h │ │ ├── app_start.c │ │ ├── app_zcl_task.c │ │ ├── app_zcl_task.h │ │ ├── bdb_options.h │ │ ├── bm │ │ │ ├── app.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── hardware_init.c │ │ │ ├── mcux │ │ │ │ └── EndDeviceMinRetention_JN5189.ld │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── zigbee_ed_rx_off_bm.xml │ │ ├── enddevice_rxoff.zpscfg │ │ ├── pdum_apdu.S │ │ ├── pdum_gen.c │ │ ├── pdum_gen.h │ │ ├── readme.txt │ │ ├── zcl_options.h │ │ ├── zigbee_config.h │ │ ├── zps_gen.c │ │ └── zps_gen.h │ │ ├── zigbee_ed_rx_on │ │ ├── app_end_device_node.c │ │ ├── app_end_device_node.h │ │ ├── app_main.c │ │ ├── app_main.h │ │ ├── app_reporting.c │ │ ├── app_reporting.h │ │ ├── app_start.c │ │ ├── app_zcl_task.c │ │ ├── app_zcl_task.h │ │ ├── bdb_options.h │ │ ├── bm │ │ │ ├── app.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_utility.c │ │ │ ├── board_utility.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── hardware_init.c │ │ │ ├── mcux │ │ │ │ └── AppBuildNone_JN5189.ld │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── zigbee_ed_rx_on_bm.xml │ │ ├── enddevice_rxon.zpscfg │ │ ├── pdum_apdu.S │ │ ├── pdum_gen.c │ │ ├── readme.txt │ │ ├── zcl_options.h │ │ ├── zigbee_config.h │ │ └── zps_gen.c │ │ └── zigbee_router │ │ ├── app_main.c │ │ ├── app_main.h │ │ ├── app_reporting.c │ │ ├── app_reporting.h │ │ ├── app_router_node.c │ │ ├── app_router_node.h │ │ ├── app_start.c │ │ ├── app_zcl_task.c │ │ ├── app_zcl_task.h │ │ ├── bdb_options.h │ │ ├── bm │ │ ├── app.h │ │ ├── board.c │ │ ├── board.h │ │ ├── board_utility.c │ │ ├── board_utility.h │ │ ├── clock_config.c │ │ ├── clock_config.h │ │ ├── hardware_init.c │ │ ├── mcux │ │ │ └── AppBuildNone_JN5189.ld │ │ ├── pin_mux.c │ │ ├── pin_mux.h │ │ └── zigbee_router_bm.xml │ │ ├── pdum_apdu.S │ │ ├── pdum_gen.c │ │ ├── readme.txt │ │ ├── router.zpscfg │ │ ├── zcl_options.h │ │ ├── zigbee_config.h │ │ └── zps_gen.c ├── components │ ├── lists │ │ ├── generic_list.c │ │ └── generic_list.h │ ├── serial_manager │ │ ├── serial_manager.c │ │ ├── serial_manager.h │ │ ├── serial_port_internal.h │ │ ├── serial_port_swo.c │ │ ├── serial_port_swo.h │ │ ├── serial_port_uart.c │ │ └── serial_port_uart.h │ └── uart │ │ ├── uart.h │ │ └── usart_adapter.c ├── devices │ ├── JN5189 │ │ ├── JN5189.h │ │ ├── JN5189_features.h │ │ ├── drivers │ │ │ ├── endian.h │ │ │ ├── flash_header.h │ │ │ ├── fsl_adc.c │ │ │ ├── fsl_adc.h │ │ │ ├── fsl_aes.c │ │ │ ├── fsl_aes.h │ │ │ ├── fsl_cic_irb.c │ │ │ ├── fsl_cic_irb.h │ │ │ ├── fsl_cic_irb_private.h │ │ │ ├── fsl_cic_irb_rc5.c │ │ │ ├── fsl_cic_irb_rc6.c │ │ │ ├── fsl_cic_irb_rcmm.c │ │ │ ├── fsl_cic_irb_sirc.c │ │ │ ├── fsl_clock.c │ │ │ ├── fsl_clock.h │ │ │ ├── fsl_cmp.c │ │ │ ├── fsl_cmp.h │ │ │ ├── fsl_common.c │ │ │ ├── fsl_common.h │ │ │ ├── fsl_ctimer.c │ │ │ ├── fsl_ctimer.h │ │ │ ├── fsl_dma.c │ │ │ ├── fsl_dma.h │ │ │ ├── fsl_dmic.c │ │ │ ├── fsl_dmic.h │ │ │ ├── fsl_dmic_dma.c │ │ │ ├── fsl_dmic_dma.h │ │ │ ├── fsl_flash.c │ │ │ ├── fsl_flash.h │ │ │ ├── fsl_flexcomm.c │ │ │ ├── fsl_flexcomm.h │ │ │ ├── fsl_fmeas.c │ │ │ ├── fsl_fmeas.h │ │ │ ├── fsl_gint.c │ │ │ ├── fsl_gint.h │ │ │ ├── fsl_gpio.c │ │ │ ├── fsl_gpio.h │ │ │ ├── fsl_i2c.c │ │ │ ├── fsl_i2c.h │ │ │ ├── fsl_i2c_dma.c │ │ │ ├── fsl_i2c_dma.h │ │ │ ├── fsl_i2c_freertos.c │ │ │ ├── fsl_i2c_freertos.h │ │ │ ├── fsl_inputmux.c │ │ │ ├── fsl_inputmux.h │ │ │ ├── fsl_inputmux_connections.h │ │ │ ├── fsl_iocon.h │ │ │ ├── fsl_ntag.c │ │ │ ├── fsl_ntag.h │ │ │ ├── fsl_pint.c │ │ │ ├── fsl_pint.h │ │ │ ├── fsl_power.c │ │ │ ├── fsl_power.h │ │ │ ├── fsl_pwm.c │ │ │ ├── fsl_pwm.h │ │ │ ├── fsl_reset.c │ │ │ ├── fsl_reset.h │ │ │ ├── fsl_rng.c │ │ │ ├── fsl_rng.h │ │ │ ├── fsl_rtc.c │ │ │ ├── fsl_rtc.h │ │ │ ├── fsl_sha.c │ │ │ ├── fsl_sha.h │ │ │ ├── fsl_spi.c │ │ │ ├── fsl_spi.h │ │ │ ├── fsl_spi_dma.c │ │ │ ├── fsl_spi_dma.h │ │ │ ├── fsl_spi_freertos.c │ │ │ ├── fsl_spi_freertos.h │ │ │ ├── fsl_spifi.c │ │ │ ├── fsl_spifi.h │ │ │ ├── fsl_spifi_dma.c │ │ │ ├── fsl_spifi_dma.h │ │ │ ├── fsl_usart.c │ │ │ ├── fsl_usart.h │ │ │ ├── fsl_usart_dma.c │ │ │ ├── fsl_usart_dma.h │ │ │ ├── fsl_usart_freertos.c │ │ │ ├── fsl_usart_freertos.h │ │ │ ├── fsl_wtimer.c │ │ │ ├── fsl_wtimer.h │ │ │ ├── fsl_wwdt.c │ │ │ ├── fsl_wwdt.h │ │ │ ├── psector_api.c │ │ │ ├── psector_api.h │ │ │ ├── rom_aes.h │ │ │ ├── rom_api.h │ │ │ ├── rom_common.h │ │ │ ├── rom_efuse.h │ │ │ ├── rom_isp.h │ │ │ ├── rom_lowpower.h │ │ │ ├── rom_mpu.h │ │ │ ├── rom_pmc.h │ │ │ ├── rom_psector.h │ │ │ ├── rom_secure.h │ │ │ └── rom_vectors.h │ │ ├── fsl_device_registers.h │ │ ├── gcc │ │ │ ├── App1Build.ld │ │ │ ├── AppBuild16kEndDevice.ld │ │ │ ├── AppBuild16kEndDevice_JN5188.ld │ │ │ ├── AppBuild16kEndDevice_JN5189.ld │ │ │ ├── AppBuildMac.ld │ │ │ ├── AppBuildMinRetention.ld │ │ │ ├── AppBuildMinRetention_JN5188.ld │ │ │ ├── AppBuildMinRetention_JN5189.ld │ │ │ ├── AppBuildNone.ld │ │ │ ├── AppBuildNoneRam.ld │ │ │ ├── AppBuildNone_APP0.ld │ │ │ ├── AppBuildNone_JN5188.ld │ │ │ ├── AppBuildNone_JN5189.ld │ │ │ ├── AppBuildOtaRegions.ld │ │ │ ├── AppBuild_ZBSOTA_App0.ld │ │ │ ├── AppBuild_ZBSOTA_App1.ld │ │ │ ├── JN5188_flash.ld │ │ │ ├── JN5188_ram.ld │ │ │ ├── JN5189_flash.ld │ │ │ ├── JN5189_ram.ld │ │ │ ├── JN5189_rom.ld │ │ │ ├── JN5189_rom_es1.ld │ │ │ ├── config.mk │ │ │ ├── config_cm4.mk │ │ │ ├── startup_JN5189.S │ │ │ ├── startup_JN5189.c │ │ │ ├── startup_JN5189_appcore.c │ │ │ ├── startup_jn5189_app1.c │ │ │ └── user.ldt │ │ ├── mcuxpresso │ │ │ ├── JN5189_640K.cfx │ │ │ ├── startup_jn5189.c │ │ │ └── startup_jn5189.cpp │ │ ├── project_template │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── peripherals.c │ │ │ ├── peripherals.h │ │ │ ├── pin_mux.c │ │ │ └── pin_mux.h │ │ ├── system_JN5189.c │ │ ├── system_JN5189.h │ │ └── utilities │ │ │ ├── debug_console │ │ │ ├── fsl_debug_console.c │ │ │ ├── fsl_debug_console.h │ │ │ └── fsl_debug_console_conf.h │ │ │ ├── fsl_assert.c │ │ │ └── str │ │ │ ├── fsl_str.c │ │ │ └── fsl_str.h │ └── K32W061 │ │ └── drivers │ │ └── psector_api.c ├── docs │ ├── DK6-UG-3127-Production-Flash-Programmer.pdf │ ├── Getting Started with MCUXpresso SDK for JN5189.pdf │ ├── MCUXpresso SDK API Reference Manual_JN5189.pdf │ ├── MCUXpresso SDK Change Logs_JN5189.pdf │ ├── MCUXpresso SDK Release Notes Supporting JN5189.pdf │ ├── images │ │ ├── JN5189DK6.gif │ │ └── device.jpg │ └── wireless │ │ ├── Common │ │ ├── Connectivity Framework Reference Manual.pdf │ │ └── html │ │ │ └── Connectivity Framework Reference Manual │ │ │ ├── CONNFWKRM_files │ │ │ ├── GUID-000F16DB-F8B5-4A43-8AF7-F1E11AA56262.html │ │ │ ├── GUID-0069051B-E37B-4613-AEEF-943E73DDA2B7.html │ │ │ ├── GUID-046E2509-70C2-4A05-993A-22C3CAC0C58A.html │ │ │ ├── GUID-04B4583F-7BE8-4525-BA2F-224F61D842A1.html │ │ │ ├── GUID-060DD4DB-036F-4590-8FBD-223B212391D6.html │ │ │ ├── GUID-0986D59F-59DA-4388-84DE-6D6EC064CA2C.html │ │ │ ├── GUID-0B529247-3C3C-457B-9993-B96EAD9F871D.html │ │ │ ├── GUID-0B5FCC2A-DA24-4E65-8618-82A3CFD3B542.html │ │ │ ├── GUID-0DD5E9BF-FFAC-4B35-BEB8-D006D120508D.html │ │ │ ├── GUID-0E23C916-82C8-415A-8469-773251C6D3F3.html │ │ │ ├── GUID-0F1E9A2B-1CAC-49A4-8662-BDEA17D09776.html │ │ │ ├── GUID-10D21B12-FEB6-4F72-8BA1-837CFBFDBC79.html │ │ │ ├── GUID-117F06D1-8774-4667-B4F0-79A8166102A2.html │ │ │ ├── GUID-1247B91A-D9D6-4BA9-A274-B26A86ABEF52.html │ │ │ ├── GUID-131023D8-6BA0-4E1B-BDCD-6BC4A02444E1.html │ │ │ ├── GUID-14A32F64-898A-44A3-9ED2-88C3AA9871EF.html │ │ │ ├── GUID-155DC0E9-D467-4F5E-929E-BDBBD05FC8BB.html │ │ │ ├── GUID-189B5AEE-DDCD-4AF4-A63C-5771E2C0BAFF.html │ │ │ ├── GUID-196459C0-4E80-40C9-B6ED-AD799D6326BA.html │ │ │ ├── GUID-1EE7EA0C-675A-4531-A7A5-2310873108E0.html │ │ │ ├── GUID-1F7F47B6-866A-41CD-A88A-2569943B8D3A.html │ │ │ ├── GUID-1FF3297E-B6E6-492E-982E-B89B0B8ECE6A.html │ │ │ ├── GUID-20A726BB-27F5-465C-AB89-718D707B94D2.html │ │ │ ├── GUID-213A324F-EB66-4AA6-B50F-AD38DB6BF09B-high.png │ │ │ ├── GUID-215558FF-F36F-4E0E-97FD-5F92711FC5D9-high.png │ │ │ ├── GUID-21AD7F83-FC10-4EEE-8B57-49F33227BBA7.html │ │ │ ├── GUID-24BEF26D-B514-4678-807C-15F52F756341-high.png │ │ │ ├── GUID-2ACA15F2-DA41-41B6-B1A9-A5B41A4150BA.html │ │ │ ├── GUID-2D0F4B17-FD33-43B7-877C-30DB873A4170.html │ │ │ ├── GUID-2E5F0C19-51B2-4835-8306-D4E90F9EBEDC-high.png │ │ │ ├── GUID-2EB95C5A-BC4D-4ECE-96DE-0F5294BD1F00.html │ │ │ ├── GUID-35D46D35-0D42-40A0-9430-B75212F82799.html │ │ │ ├── GUID-385E3268-DA9C-4DB1-B797-DE84B3DDAADA.html │ │ │ ├── GUID-39BBF7FE-6B6E-4567-B4DB-45C37B891410.html │ │ │ ├── GUID-3B498DFD-67AB-4AD3-8403-E5425546AAE5.html │ │ │ ├── GUID-3BACBD7A-818B-48F0-A463-B5137C64E0E0.html │ │ │ ├── GUID-3C4280EB-AE9D-4B3E-BB82-5AFB674EAA15-high.png │ │ │ ├── GUID-3F9CB1BC-75EE-4361-8DFC-3114D45A0B06.html │ │ │ ├── GUID-3FD8C291-2FBB-4F7E-BD7E-46391627537E.html │ │ │ ├── GUID-427E9AAD-2397-46E7-8E75-DF6D61E20174.html │ │ │ ├── GUID-42D8C5D5-F1A1-48B9-8A82-00C4D9BC299E.html │ │ │ ├── GUID-45927FC6-96EF-466F-B1E1-3F486A11C60A.html │ │ │ ├── GUID-45D76840-A21A-4088-B7F9-A2E2C31E70F1.html │ │ │ ├── GUID-4CAB6507-F37F-4B3F-B16B-1663A306DC8C.html │ │ │ ├── GUID-4D86CF4C-E4FB-416A-9AEC-435BFE87DB0F-high.png │ │ │ ├── GUID-4DE6A8DB-2B3B-4E3B-A533-107D05FDF0C7-high.png │ │ │ ├── GUID-4E58C6E2-CA0F-40BD-925D-94CC7C73AB87.html │ │ │ ├── GUID-514BCEA5-7979-415F-B85F-D1269695CC43.html │ │ │ ├── GUID-527211A2-8C56-4E3B-B09D-CAD52CCD1C75.html │ │ │ ├── GUID-53856348-36ED-43B8-BF28-E8F645A3BB17.html │ │ │ ├── GUID-54DA9B5F-876D-479A-BCCD-C6316B1B0CFA.html │ │ │ ├── GUID-55853B3C-C24C-419E-9A30-74CBA48FE8F7.html │ │ │ ├── GUID-577CA12C-E7DC-4C10-8A15-FFA424E8A3FA.html │ │ │ ├── GUID-5791ABD4-CEE9-41C0-9781-F1FDFAD744F8.html │ │ │ ├── GUID-57B4F974-79FC-470C-9778-D5CBCCB1116A.html │ │ │ ├── GUID-583DF7D9-6E9B-4616-B9E7-F88086C9E5B1.html │ │ │ ├── GUID-587F38F3-A317-43E0-97C3-AEC81B487294.html │ │ │ ├── GUID-58A8D8C1-65C2-4BA8-9336-98A12F448A5E.html │ │ │ ├── GUID-5937F502-C753-4CF5-8B86-0312E09007C5.html │ │ │ ├── GUID-5CEA299A-05F1-45ED-9129-F48E932E8676.html │ │ │ ├── GUID-5E339DEA-BDA0-4F77-99D8-6F47E14B4573.html │ │ │ ├── GUID-5F3E4170-99D7-4D4A-BF40-6E55610F684E.html │ │ │ ├── GUID-5FC1194A-0D38-443F-A3E5-767C53C0337C.html │ │ │ ├── GUID-639B41BA-AD67-4E74-BBE5-8ABD4DC47AAB.html │ │ │ ├── GUID-642195DC-EDF2-4EA4-A41D-B01545F31767.html │ │ │ ├── GUID-64D6E254-D6B7-43A0-9844-46FECBCAD153.html │ │ │ ├── GUID-64F118B0-5E9C-49DA-BB84-8E43AFE80446.html │ │ │ ├── GUID-6505DD7E-972C-4E90-B119-3870B31F9011-high.png │ │ │ ├── GUID-683C130E-1515-49D3-8A3C-3ED481B1C688.html │ │ │ ├── GUID-69110E49-B439-4E78-A460-DAB710D54E44.html │ │ │ ├── GUID-694EC8DA-3716-40EF-89BB-C369E5271C6C.html │ │ │ ├── GUID-6ABD1BD5-4AD0-4E03-BC1D-CA4F1B1FFF24.html │ │ │ ├── GUID-6DAB5F7E-4397-4744-B332-FA04180C0EEA.html │ │ │ ├── GUID-6DCA5832-51A9-4947-B5E0-D75B898CC80A.html │ │ │ ├── GUID-6F129521-28A7-460E-8796-13C0C26AFC8E.html │ │ │ ├── GUID-6F286375-C4E2-4B87-9203-C3D9EF4269AE.html │ │ │ ├── GUID-6FBA2499-4D01-46AE-BFDC-D92BC08E5FF7-high.png │ │ │ ├── GUID-708429C3-C2F5-4346-9C77-4188209DC5B3-high.png │ │ │ ├── GUID-72B1B4CD-DF50-47C9-BEAA-33F99D49925A-high.png │ │ │ ├── GUID-73662F13-B71E-49A3-B0C1-63B995A04D09.html │ │ │ ├── GUID-744530E8-D4D7-451A-A03A-4B29F1DF62EE.html │ │ │ ├── GUID-74799CB8-6455-4244-A74D-82BF2B33DF3C-high.png │ │ │ ├── GUID-74D17500-E4F7-46DD-B518-0190143AB1B0.html │ │ │ ├── GUID-75655E92-F56D-4BF1-A0D0-958CA9B9CDE7.html │ │ │ ├── GUID-75EF6E6C-7B67-4677-8931-CE156BCB4BDA.html │ │ │ ├── GUID-766A7EB8-C83D-4CCC-89A9-2E7745AA6E0D.html │ │ │ ├── GUID-76BD7E9A-3146-4035-85B2-6B8E13C86BD5.html │ │ │ ├── GUID-794AD8DD-3778-475E-8667-54D83C78F9E9.html │ │ │ ├── GUID-7953B41F-5987-46AE-9675-D92ED9B038D3.html │ │ │ ├── GUID-7A9BC659-AD19-4386-8412-27DE8B71C747.html │ │ │ ├── GUID-7B83F716-0175-4A8E-8212-4538C7CDEF4A.html │ │ │ ├── GUID-7CA8307B-3764-480B-A90E-909DF36A4B7E.html │ │ │ ├── GUID-7CEB18D5-C8D4-4787-A6BD-002CEC3E7F0A.html │ │ │ ├── GUID-7E1CD5F6-C644-43CD-94CA-D6A028CAD4E8.html │ │ │ ├── GUID-7E5972F9-E8FF-4FC4-B2A0-C7FBF8C2B9DF.html │ │ │ ├── GUID-7FA040F1-950F-4E43-8D67-4E9610F295CB.html │ │ │ ├── GUID-7FEF558A-A837-48B7-95BD-96640C6A3086.html │ │ │ ├── GUID-822824D0-5A70-4CF4-A7EF-17D273588093.html │ │ │ ├── GUID-82F0A478-B298-4AD7-A4A5-CB8623EB08C4.html │ │ │ ├── GUID-8373C1C1-F9D0-428F-A9E4-700CC06EF0C3.html │ │ │ ├── GUID-84948DD0-FAEE-4CC4-9AE5-CD69C06D1B42.html │ │ │ ├── GUID-8559AB50-D99C-404A-A21F-2BB62595D2DD-high.png │ │ │ ├── GUID-8639C531-C2BF-4DC2-BE20-46D8CC557987.html │ │ │ ├── GUID-893F3949-08C4-429C-833C-CBBA0AA1B733.html │ │ │ ├── GUID-8A19CDAE-ED3E-40C5-B2B9-3DBF825CEE2D.html │ │ │ ├── GUID-8A565955-9A80-47D6-AA57-63D5487922A7.html │ │ │ ├── GUID-8A8C68B5-7B1A-44A2-80BE-6427AD0835FE.html │ │ │ ├── GUID-8BA6DC38-4706-4A95-B3A8-B258036D3CE4.html │ │ │ ├── GUID-8CAD0BC2-05CB-4C5C-9BEE-7A820FFA0AEE.html │ │ │ ├── GUID-8D22D736-AE9E-430F-9759-CB919F986990.html │ │ │ ├── GUID-8D3BBDA4-0080-4FAA-998D-BB482AD4AA90.html │ │ │ ├── GUID-8E90EC17-E290-46AE-A6FF-6C39BCD68E97.html │ │ │ ├── GUID-8F53DC73-B398-4F9D-8A94-52F4F33DAA06.html │ │ │ ├── GUID-9177D60E-2C7A-4D4E-BC67-60B0D46FCF61.html │ │ │ ├── GUID-91B79E53-D729-4E21-91C4-B01F2DA14DEA.html │ │ │ ├── GUID-9252EC27-6357-4B6D-A90B-BD93EB1EBB7A.html │ │ │ ├── GUID-93189D4E-E68D-4EB5-B2FD-C9EBF6D66B1B.html │ │ │ ├── GUID-9440F9AF-35E7-4FBE-A33E-1B01F9BC9FCE-high.png │ │ │ ├── GUID-9458AF59-E893-4FAF-B6A3-53AAE266907D.html │ │ │ ├── GUID-95F71DE2-68E8-4759-BB0C-DCC48EE6D7A2.html │ │ │ ├── GUID-96B2FE59-6831-4FCC-AFCD-7DCEE8BD47B7.html │ │ │ ├── GUID-9862B4E2-2D20-48A9-8DEF-9953BF08A949.html │ │ │ ├── GUID-98638652-CB07-4B95-AD63-C23B0C878F49.html │ │ │ ├── GUID-98FE310A-6625-4CEF-B545-2F1479F1EB4F.html │ │ │ ├── GUID-9A1C6F69-7396-4999-A59D-65EBD254A799.html │ │ │ ├── GUID-9EE283E7-E36D-420A-86E6-9D2159B9A820.html │ │ │ ├── GUID-9F9BA5E0-F2AE-4D1F-B7ED-80D71C45A33C.html │ │ │ ├── GUID-A2A302F2-CABA-4874-A54C-C4F982213EFA.html │ │ │ ├── GUID-A2C75AA6-D2E3-4D2F-B5BD-64BD32C03B00.html │ │ │ ├── GUID-A3512DD7-3911-4103-B9DB-2EE3289D9B1E-high.png │ │ │ ├── GUID-A44CC55A-FAE2-40EA-A8B1-57D1FF0F492E.html │ │ │ ├── GUID-A46C999B-3540-4323-BC5D-0AF9D4F1B8EC.html │ │ │ ├── GUID-A7CF63CC-417A-492A-B304-55B1056D8E3E.html │ │ │ ├── GUID-A974C41A-62B1-4BA0-B68B-38EF6A019C08.html │ │ │ ├── GUID-AF255902-0C48-4E13-AF7A-BAB4C7D87C5F-high.png │ │ │ ├── GUID-B10D67C1-0BEE-4EC0-B288-455D72C4A5DE.html │ │ │ ├── GUID-B151EF41-85FC-4C03-B716-042AF455A736.html │ │ │ ├── GUID-B29DE80C-6CC6-4878-ADC0-CD887BA2AF3A.html │ │ │ ├── GUID-B34A2DBE-8D66-4D45-8E7F-26B09EF80223.html │ │ │ ├── GUID-B64F090B-4059-46B3-8A50-B2876FC1ED5E.html │ │ │ ├── GUID-B8DB7290-803D-4D81-BA3F-956013FBA94B-high.png │ │ │ ├── GUID-BA1B79EE-4893-4EEB-A6A6-8B75104CC273.html │ │ │ ├── GUID-BB25C3E8-EA23-465A-861C-7D7F35945EB4.html │ │ │ ├── GUID-BB703972-DFED-40CA-8819-300614D6430A.html │ │ │ ├── GUID-BB9404A2-7C16-4A55-AC9C-37CFA0077B67.html │ │ │ ├── GUID-BBC0B578-56CF-4E08-9D85-8DC0D8D7D7C2.html │ │ │ ├── GUID-BD32F550-7639-4241-A13E-03413ED8C5C3.html │ │ │ ├── GUID-BD45C74F-F747-42F4-8300-499641B642FF.html │ │ │ ├── GUID-BE10BD79-ED36-4F39-B49D-1CD108F07376.html │ │ │ ├── GUID-BEA7E885-7E18-4204-8C8E-3802636A2956.html │ │ │ ├── GUID-BEDCE821-3052-4744-996C-32C6A264EF8D.html │ │ │ ├── GUID-BFA7CBFA-2ECE-49CF-82EC-85A48ECEC146.html │ │ │ ├── GUID-C07ED345-391A-4240-99BD-55ACE54C5F0E.html │ │ │ ├── GUID-C4F1EFAB-49FB-4705-801B-2DC028FD0725.html │ │ │ ├── GUID-C59EA245-9417-4803-A502-CBE63894B257.html │ │ │ ├── GUID-C6F661E0-9700-45A0-8943-EE0624F43377.html │ │ │ ├── GUID-C7C1122A-C12D-4D49-931A-80A169999976.html │ │ │ ├── GUID-C83BFB97-E796-4D03-889F-627F23ED0E3B.html │ │ │ ├── GUID-C860B9CA-C640-4D63-AE47-0BE31AAE976C.html │ │ │ ├── GUID-C993E209-4C04-4133-81BD-8A93E9C43D68.html │ │ │ ├── GUID-CC326241-9022-4AE9-9259-6E21F0520D6F.html │ │ │ ├── GUID-CCA67CCD-5FF2-401B-9D0C-E1AB611EA04C.html │ │ │ ├── GUID-CCBCDFC7-2EBE-4BBB-8E43-B67F231786C7.html │ │ │ ├── GUID-CD2BF39F-3519-485A-B938-46A43F979297.html │ │ │ ├── GUID-CD7EDECC-7CEA-4956-A740-3512C5D83A96.html │ │ │ ├── GUID-CD822AB7-55BE-4F44-8987-56A18DF399C7.html │ │ │ ├── GUID-CE2F9CC6-8F36-459B-BA30-27DF49158879.html │ │ │ ├── GUID-CE52DC89-9B53-4DBB-8CEB-D0B9524EA998.html │ │ │ ├── GUID-CECF31E3-D38D-4624-B53D-A9C135EBA942.html │ │ │ ├── GUID-D19DE82B-7E5E-4F8F-A626-78737484BDAF.html │ │ │ ├── GUID-D20A90C0-E2C9-4793-9725-46DFDBEFD558.html │ │ │ ├── GUID-D2DD25AC-E778-43A0-B439-8AEFDF6CDB73.html │ │ │ ├── GUID-D352813C-2852-4F96-BAF2-C17311596E92.html │ │ │ ├── GUID-D375F880-C894-4AF9-BADF-20D20FFC50BE.html │ │ │ ├── GUID-D4CE0E20-5B4A-484F-95C5-188DE536C6C9.html │ │ │ ├── GUID-D78DDA1E-70DD-43E3-B8A5-8FD1F3557848.html │ │ │ ├── GUID-DA9DC356-463E-4F05-AA06-0DBE95617EE4-high.png │ │ │ ├── GUID-DB644CAC-87F2-4C96-BCEF-ACDED43394F2-high.png │ │ │ ├── GUID-DD2FB5F2-877C-4E51-BEBE-13774B94565B.html │ │ │ ├── GUID-DD454699-7FE6-4DD3-8849-D23E94B2331C.html │ │ │ ├── GUID-DD84C2AE-BC02-4394-A821-DAC323A2D8F8.html │ │ │ ├── GUID-DF022E92-E3E7-49D5-BB34-A7E9B5FB3DC0.html │ │ │ ├── GUID-DF3CCF8D-3B20-4664-90E8-8E91E2A885D0.html │ │ │ ├── GUID-DF660938-9548-484C-BF6D-AFFCCF429F1D.html │ │ │ ├── GUID-E23D97A9-120E-475F-9679-77EE7ED30BB1.html │ │ │ ├── GUID-E33DC154-4083-41EE-B6E5-E53747E6649B.html │ │ │ ├── GUID-E5001367-623F-4F97-8296-275991A85642.html │ │ │ ├── GUID-E73B3D54-84C5-4F07-9C89-DFC9733C1A10.html │ │ │ ├── GUID-E791493C-1913-4FC5-9D0E-F3C9C7A45D8D.html │ │ │ ├── GUID-E8CC69B9-CD3C-4DCE-A5D8-F5A3E07AB40F.html │ │ │ ├── GUID-EDB38017-38DD-49A6-B637-DE81DBAB9CEE.html │ │ │ ├── GUID-EE6A179D-0BC4-4460-A7EF-7DD3A12CA151.html │ │ │ ├── GUID-EE77CECA-93BD-4479-AF94-2BF5E49E013C.html │ │ │ ├── GUID-EF97AF9F-76B1-4FF6-9B99-46A093F1F02E.html │ │ │ ├── GUID-F18CAF25-DFD1-4644-9948-9C368616EDB7.html │ │ │ ├── GUID-F2DE1ED8-1B3E-4676-AD45-6B15A091C890.html │ │ │ ├── GUID-F396A21B-6E7E-417C-A66B-610B1315735C.html │ │ │ ├── GUID-F5EFB25D-982B-4E82-B13D-65CF4C262833.html │ │ │ ├── GUID-F74086D7-C1F8-46AE-9F01-2509633024A4.html │ │ │ ├── GUID-FD023284-BB2F-4CEC-AE9E-3E48218BB473-high.png │ │ │ ├── GUID-FEACA236-FC43-484B-AC5A-0D44C8C84F1B.html │ │ │ ├── GUID-FFA39D27-AF66-4D82-A404-970497F27024.html │ │ │ ├── WebhelpMenu.js │ │ │ ├── book.png │ │ │ ├── commonltr.css │ │ │ ├── commonrtl.css │ │ │ ├── docnavigation.js │ │ │ ├── email.png │ │ │ ├── favicon.ico │ │ │ ├── header.html │ │ │ ├── index.js │ │ │ ├── indexlist.css │ │ │ ├── indexpage.html │ │ │ ├── minus.png │ │ │ ├── next.png │ │ │ ├── plus.png │ │ │ ├── previous.png │ │ │ ├── print.png │ │ │ ├── search.html │ │ │ ├── search.js │ │ │ ├── searchdata.js │ │ │ ├── searchlabels.js │ │ │ ├── space.png │ │ │ ├── start.html │ │ │ ├── stylesheet.css │ │ │ ├── tab_active.png │ │ │ ├── toc.html │ │ │ ├── toc.js │ │ │ ├── topic.png │ │ │ └── webhelplayout.css │ │ │ └── index.html │ │ └── Zigbee │ │ ├── JN-UG-3130-Zigbee3-Stack.pdf │ │ ├── JN-UG-3131-ZigBee3-Devices.pdf │ │ ├── JN-UG-3132-ZigBee3-Cluster-Library.pdf │ │ ├── JN-UG-3133-Core-Utilities.pdf │ │ ├── JN-UG-3134-Zigbee3-Green-Power.pdf │ │ ├── JN-UG-3135-Encyption-Tool.pdf │ │ ├── ZigBee Demo Applications User's Guide.pdf │ │ └── html │ │ └── ZigBee Demo Applications User's Guide │ │ ├── ZBDAUG_files │ │ ├── GUID-020F0A13-2BEF-47D7-ADEC-2B6BA9E2DDED.html │ │ ├── GUID-26B9923E-035A-4343-A108-FCFF74B35742.html │ │ ├── GUID-28968A64-692E-4FEC-84C5-472E54C8E774.html │ │ ├── GUID-2AF8980E-95E6-418D-996B-7166952540B6.html │ │ ├── GUID-41D29831-7239-423C-98E3-C19188052735.html │ │ ├── GUID-464B96F6-5827-484D-A0AB-68A421DF66BC.html │ │ ├── GUID-4F2CA7FA-66B9-477B-BA45-CBA9EA741A7A.html │ │ ├── GUID-50254D54-A349-40BA-9B96-EC625A6C30E7.html │ │ ├── GUID-50A93FF6-80A0-433A-902B-9387DB9EA778.html │ │ ├── GUID-5906402D-95E4-4FDE-9451-0B8CF4B4A981.html │ │ ├── GUID-75BED7E2-73A3-4708-AD30-B80DF3E743D9.html │ │ ├── GUID-7F7C12EB-3530-4DEA-ADD8-BA527854EC19.html │ │ ├── GUID-86F72119-6559-49DF-BCAE-E2F9D47ACA27.html │ │ ├── GUID-9189E7FF-1D3C-4137-BB16-7FC9995BA90F.html │ │ ├── GUID-921F07CA-F108-4146-8416-2A51D21695E8.html │ │ ├── GUID-962067B4-0A6A-430C-8FD2-834928E64548.html │ │ ├── GUID-A0250451-15EB-468F-978E-C5B5D66C8BFE.html │ │ ├── GUID-A63E6510-EC16-47C1-A162-C53AA73E8420.html │ │ ├── GUID-A6871A6F-F1DC-4134-97E7-7C1FBCBCE3FD.html │ │ ├── GUID-ACE054B3-51A1-47F2-B45F-9C0BBC564012.html │ │ ├── GUID-ADD3FDF8-9DF8-4831-B5E4-B15FEC5522F3.html │ │ ├── GUID-B01F29F9-6BDE-48E3-9C90-65CF6D707515.html │ │ ├── GUID-B266D4C8-709E-453C-9DA2-47D5D182A9F3.html │ │ ├── GUID-B4CAFEAC-DC0A-42F1-9545-D752EB9650DE.html │ │ ├── GUID-BA7A93A0-19D5-422E-B1FB-0BECA4B453AF.html │ │ ├── GUID-C61E753B-480D-4E12-B431-16B1D63190A0.html │ │ ├── GUID-C9417C39-F189-4415-8612-0C9FC46721DC.html │ │ ├── GUID-CA1FE15C-2D6D-4CD7-928E-F9F7C687C716.html │ │ ├── GUID-CF1235D0-2B03-4877-B3B1-1969142DB0D3.html │ │ ├── GUID-CFC63DB4-5816-4054-A073-340FD2867169.html │ │ ├── GUID-D26D676C-0AB9-4F53-AB69-4C556C625D80.html │ │ ├── GUID-D388E0CD-E455-4215-AE46-8A85B2E5CB5F.html │ │ ├── GUID-D4C1217C-123A-41C5-9E5B-4733887E59EB.html │ │ ├── GUID-DCC96BB8-4779-45FD-A632-89BEB87196C6.html │ │ ├── GUID-DD09309A-E2C9-4FC1-897C-7604BAA8B296.html │ │ ├── GUID-E1FEC103-1627-4BFA-B7A5-889D74A62D04.html │ │ ├── GUID-E333D1A2-4834-49B9-B7FB-BFC048BD4F2D.html │ │ ├── GUID-E9A70D79-B03F-4541-B9BA-73346E2163D5.html │ │ ├── GUID-EACDDA81-AC01-4126-AEE3-CDBB95287F8C.html │ │ ├── GUID-EB0B2DE4-0A20-47AA-BFFD-C3DAB198B120.html │ │ ├── GUID-EB94873E-DB8F-4A4C-AAB2-4830FA5D6028-high.jpg │ │ ├── GUID-FE8E17D4-C222-4E87-9C7E-7C3DAF6CEE3F.html │ │ ├── GUID-FF1D5079-6F5D-4B5B-926B-9ED657D09B11.html │ │ ├── WebhelpMenu.js │ │ ├── book.png │ │ ├── commonltr.css │ │ ├── commonrtl.css │ │ ├── docnavigation.js │ │ ├── email.png │ │ ├── favicon.ico │ │ ├── header.html │ │ ├── index.js │ │ ├── indexlist.css │ │ ├── indexpage.html │ │ ├── minus.png │ │ ├── next.png │ │ ├── plus.png │ │ ├── previous.png │ │ ├── print.png │ │ ├── search.html │ │ ├── search.js │ │ ├── searchdata.js │ │ ├── searchlabels.js │ │ ├── space.png │ │ ├── start.html │ │ ├── stylesheet.css │ │ ├── tab_active.png │ │ ├── toc.html │ │ ├── toc.js │ │ ├── topic.png │ │ └── webhelplayout.css │ │ └── index.html ├── middleware │ └── wireless │ │ ├── framework │ │ ├── Common │ │ │ ├── EmbeddedTypes.h │ │ │ ├── Heap.c │ │ │ ├── Heap.h │ │ │ ├── MicroInt.h │ │ │ ├── MicroInt_arm_sdk2.c │ │ │ ├── MicroSpecific.h │ │ │ ├── MicroSpecific_JN518x.h │ │ │ ├── MicroSpecific_arm_sdk2.h │ │ │ ├── dbg.h │ │ │ ├── devices │ │ │ │ └── DK6 │ │ │ │ │ └── gcc │ │ │ │ │ ├── connectivity_sota.ld │ │ │ │ │ └── sota_zigbee_only_2_blobs │ │ │ │ │ └── app_memory_split.ld │ │ │ └── jendefs.h │ │ ├── DebugExceptionHandlers_jn518x │ │ │ ├── inc │ │ │ │ ├── ARMcortexMxRegisters_JN51xx.h │ │ │ │ └── DebugExceptionHandlers_jn518x.h │ │ │ └── src │ │ │ │ ├── Exceptions_NVIC.c │ │ │ │ └── MicroExceptions_arm.c │ │ ├── DebugFifo │ │ │ ├── Include │ │ │ │ └── Debug.h │ │ │ └── Source │ │ │ │ └── Debug.c │ │ ├── Flash │ │ │ ├── External │ │ │ │ ├── Interface │ │ │ │ │ └── Eeprom.h │ │ │ │ └── Source │ │ │ │ │ ├── Eeprom_InternalFlash.c │ │ │ │ │ └── Eeprom_MX25R8035F.c │ │ │ └── Internal │ │ │ │ ├── Flash_Adapter.c │ │ │ │ └── Flash_Adapter.h │ │ ├── FunctionLib │ │ │ ├── FunctionLib.c │ │ │ └── FunctionLib.h │ │ ├── GPIO │ │ │ ├── GPIO_Adapter.c │ │ │ └── GPIO_Adapter.h │ │ ├── Keyboard │ │ │ ├── Interface │ │ │ │ └── Keyboard.h │ │ │ └── Source │ │ │ │ └── Keyboard.c │ │ ├── LED │ │ │ ├── Interface │ │ │ │ └── LED.h │ │ │ └── Source │ │ │ │ └── LED.c │ │ ├── Lists │ │ │ ├── GenericList.c │ │ │ └── GenericList.h │ │ ├── LowPower │ │ │ ├── Interface │ │ │ │ └── jn5189dk6 │ │ │ │ │ ├── PWRLib.h │ │ │ │ │ ├── PWR_Configuration.h │ │ │ │ │ └── PWR_Interface.h │ │ │ └── Source │ │ │ │ └── jn5189dk6 │ │ │ │ ├── PWR.c │ │ │ │ ├── PWRLib.c │ │ │ │ └── PWR_setjmp.S │ │ ├── MemManager │ │ │ ├── Interface │ │ │ │ └── MemManager.h │ │ │ └── Source │ │ │ │ └── MemManager.c │ │ ├── Messaging │ │ │ ├── Interface │ │ │ │ └── Messaging.h │ │ │ └── Source │ │ │ │ └── Messaging.c │ │ ├── ModuleInfo │ │ │ ├── ModuleInfo.c │ │ │ └── ModuleInfo.h │ │ ├── OSAbstraction │ │ │ ├── Interface │ │ │ │ ├── fsl_os_abstraction.h │ │ │ │ ├── fsl_os_abstraction_bm.h │ │ │ │ └── fsl_os_abstraction_config.h │ │ │ └── Source │ │ │ │ └── fsl_os_abstraction_bm.c │ │ ├── OtaSupport │ │ │ ├── Interface │ │ │ │ ├── OtaSupport.h │ │ │ │ └── OtaUtils.h │ │ │ └── Source │ │ │ │ ├── OtaSupport.c │ │ │ │ └── OtaUtils.c │ │ ├── PDM │ │ │ ├── Include │ │ │ │ └── PDM.h │ │ │ ├── Library │ │ │ │ └── libPDM.a │ │ │ ├── PDM.h │ │ │ └── pdm_port.c │ │ ├── PDUM │ │ │ ├── Include │ │ │ │ ├── pdum_apl.h │ │ │ │ ├── pdum_common.h │ │ │ │ └── pdum_nwk.h │ │ │ └── Library │ │ │ │ └── libPDUM.a │ │ ├── PWRM │ │ │ ├── Include │ │ │ │ └── pwrm.h │ │ │ └── Library │ │ │ │ └── libPWRM.a │ │ ├── Panic │ │ │ ├── Interface │ │ │ │ └── Panic.h │ │ │ └── Source │ │ │ │ └── Panic.c │ │ ├── RNG │ │ │ ├── Interface │ │ │ │ ├── RNG_Interface.h │ │ │ │ └── rnd_pub.h │ │ │ └── Source │ │ │ │ └── RNG.c │ │ ├── Reset │ │ │ └── Reset.c │ │ ├── SecLib │ │ │ ├── SecLib.c │ │ │ ├── SecLib.h │ │ │ ├── aessw_ccm.h │ │ │ └── lib_crypto_m4.a │ │ ├── SelectiveOTA │ │ │ ├── blob_utils.c │ │ │ ├── blob_utils.h │ │ │ └── startup_slave_blob.c │ │ ├── SerialManager │ │ │ ├── Interface │ │ │ │ └── SerialManager.h │ │ │ └── Source │ │ │ │ ├── SPI_Adapter │ │ │ │ ├── SPI_Serial_Adapter.c │ │ │ │ └── SPI_Serial_Adapter.h │ │ │ │ ├── SerialManager.c │ │ │ │ ├── UART_Serial_Adapter.c │ │ │ │ └── UART_Serial_Adapter.h │ │ ├── TimersManager │ │ │ ├── Interface │ │ │ │ └── TimersManager.h │ │ │ └── Source │ │ │ │ ├── TMR_Adapter.c │ │ │ │ ├── TMR_Adapter.h │ │ │ │ ├── TimersManager.c │ │ │ │ └── TimersManagerInternal.h │ │ └── XCVR │ │ │ ├── DK6 │ │ │ ├── Build │ │ │ │ └── Include │ │ │ │ │ └── radio_test_jn518x.h │ │ │ ├── fsl_xcvr.c │ │ │ ├── fsl_xcvr.h │ │ │ └── radio.h │ │ │ └── lib │ │ │ ├── libRadio.a │ │ │ └── libRadio_Test_JN518x.a │ │ ├── ieee-802.15.4 │ │ ├── Include │ │ │ ├── AppApi.h │ │ │ ├── mac_pib.h │ │ │ ├── mac_sap.h │ │ │ └── tsv_pub.h │ │ ├── MacDynamic │ │ │ └── Include │ │ │ │ └── MacDynamic.h │ │ ├── lib │ │ │ ├── libMiniMac.a │ │ │ ├── libMiniMac_Dynamic.a │ │ │ └── libMiniMac_IPN.a │ │ ├── mMac │ │ │ └── Include │ │ │ │ ├── MiniMac.h │ │ │ │ ├── MiniMac_AppApiShim.h │ │ │ │ └── MiniMac_Pib.h │ │ └── uMac │ │ │ └── Include │ │ │ └── MMAC.h │ │ └── zigbee │ │ ├── BDB │ │ ├── Build │ │ │ ├── config.mk │ │ │ └── reference_bdb_options.h │ │ ├── Include │ │ │ └── bdb_api.h │ │ └── Source │ │ │ ├── Common │ │ │ ├── bdb_fr.c │ │ │ ├── bdb_fr.h │ │ │ ├── bdb_start.c │ │ │ ├── bdb_start.h │ │ │ └── bdb_state_machine.c │ │ │ ├── FindAndBind │ │ │ ├── bdb_fb_api.h │ │ │ ├── bdb_fb_common.c │ │ │ ├── bdb_fb_initiator.c │ │ │ └── bdb_fb_target.c │ │ │ ├── NwkFormation │ │ │ ├── bdb_nf.c │ │ │ └── bdb_nf.h │ │ │ ├── NwkSteering │ │ │ ├── bdb_ns.c │ │ │ └── bdb_ns.h │ │ │ ├── OutOfBand │ │ │ ├── bdb_DeviceCommissioning.c │ │ │ └── bdb_DeviceCommissioning.h │ │ │ └── TouchLink │ │ │ ├── bdb_tl.h │ │ │ ├── bdb_tl_common.c │ │ │ ├── bdb_tl_end_device_initiator_target.c │ │ │ ├── bdb_tl_router_initiator_target.c │ │ │ ├── bdb_tl_router_target.c │ │ │ └── ecb_decrypt.c │ │ ├── BuildConfig │ │ ├── ZBPro │ │ │ └── Build │ │ │ │ └── config_ZBPro.mk │ │ └── ZCL │ │ │ └── Build │ │ │ └── config_ZCL.mk │ │ ├── Library │ │ ├── libATJParser.a │ │ ├── libZPSAPL.a │ │ ├── libZPSAPL_LEGACY.a │ │ ├── libZPSAPL_LEGACY_ZCP-GU.a │ │ ├── libZPSAPL_ZCP-GU.a │ │ ├── libZPSGP.a │ │ ├── libZPSGP_ZED.a │ │ ├── libZPSIPAN.a │ │ ├── libZPSIPAN_ZED.a │ │ ├── libZPSMAC_Mini_SOC.a │ │ ├── libZPSNWK.a │ │ ├── libZPSNWK_ZCP-GU.a │ │ ├── libZPSNWK_ZED.a │ │ └── libZPSTSV.a │ │ ├── ZCIF │ │ ├── Include │ │ │ ├── dlist.h │ │ │ ├── zcl.h │ │ │ ├── zcl_customcommand.h │ │ │ ├── zcl_heap.h │ │ │ └── zcl_internal_library_options.h │ │ └── Source │ │ │ ├── dlist.c │ │ │ ├── zcl.c │ │ │ ├── zcl_CustomCommandReceive.c │ │ │ ├── zcl_CustomCommandSend.c │ │ │ ├── zcl_PDUbufferReadWrite.c │ │ │ ├── zcl_PDUbufferReadWriteString.c │ │ │ ├── zcl_WriteAttributesRequestHandle.c │ │ │ ├── zcl_WriteAttributesRequestSend.c │ │ │ ├── zcl_WriteAttributesResponseHandle.c │ │ │ ├── zcl_attribute.c │ │ │ ├── zcl_buffer.c │ │ │ ├── zcl_clusterCommand.c │ │ │ ├── zcl_command.c │ │ │ ├── zcl_common.c │ │ │ ├── zcl_common.h │ │ │ ├── zcl_configureReportingCommandHandle.c │ │ │ ├── zcl_configureReportingCommandSend.c │ │ │ ├── zcl_configureReportingResponseHandle.c │ │ │ ├── zcl_defaultResponse.c │ │ │ ├── zcl_discoverAttributesExtendedRequestHandle.c │ │ │ ├── zcl_discoverAttributesExtendedRequestSend.c │ │ │ ├── zcl_discoverAttributesExtendedResponseHandle.c │ │ │ ├── zcl_discoverAttributesRequestHandle.c │ │ │ ├── zcl_discoverAttributesRequestSend.c │ │ │ ├── zcl_discoverAttributesResponseHandle.c │ │ │ ├── zcl_discoverCommandsRequestHandle.c │ │ │ ├── zcl_discoverCommandsRequestSend.c │ │ │ ├── zcl_discoverCommandsResponseHandle.c │ │ │ ├── zcl_event.c │ │ │ ├── zcl_heap.c │ │ │ ├── zcl_internal.h │ │ │ ├── zcl_library_options.c │ │ │ ├── zcl_readAttributesRequestHandle.c │ │ │ ├── zcl_readAttributesRequestSend.c │ │ │ ├── zcl_readAttributesResponseHandle.c │ │ │ ├── zcl_readReportingConfigurationCommandHandle.c │ │ │ ├── zcl_readReportingConfigurationCommandSend.c │ │ │ ├── zcl_readReportingConfigurationResponseHandle.c │ │ │ ├── zcl_reportManager.c │ │ │ ├── zcl_reportMaths.c │ │ │ ├── zcl_reportScheduler.c │ │ │ ├── zcl_reportStringHandling.c │ │ │ ├── zcl_reportStructure.c │ │ │ ├── zcl_search.c │ │ │ ├── zcl_timer.c │ │ │ └── zcl_transmit.c │ │ ├── ZCL │ │ ├── Clusters │ │ │ ├── ApplianceManagement │ │ │ │ ├── Include │ │ │ │ │ ├── ApplianceControl.h │ │ │ │ │ ├── ApplianceEventsAndAlerts.h │ │ │ │ │ ├── ApplianceIdentification.h │ │ │ │ │ └── ApplianceStatistics.h │ │ │ │ └── Source │ │ │ │ │ ├── ApplianceControl.c │ │ │ │ │ ├── ApplianceControlClientCommands.c │ │ │ │ │ ├── ApplianceControlCommandHandler.c │ │ │ │ │ ├── ApplianceControlServerCommands.c │ │ │ │ │ ├── ApplianceControl_internal.h │ │ │ │ │ ├── ApplianceEventsAndAlerts.c │ │ │ │ │ ├── ApplianceEventsAndAlertsClientCommands.c │ │ │ │ │ ├── ApplianceEventsAndAlertsCommandHandler.c │ │ │ │ │ ├── ApplianceEventsAndAlertsServerCommands.c │ │ │ │ │ ├── ApplianceEventsAndAlerts_internal.h │ │ │ │ │ ├── ApplianceIdentification.c │ │ │ │ │ ├── ApplianceStatistics.c │ │ │ │ │ ├── ApplianceStatisticsClientCommands.c │ │ │ │ │ ├── ApplianceStatisticsCommandHandler.c │ │ │ │ │ ├── ApplianceStatisticsServerCommands.c │ │ │ │ │ └── ApplianceStatistics_internal.h │ │ │ ├── Closures │ │ │ │ ├── Include │ │ │ │ │ ├── DoorLock.h │ │ │ │ │ └── WindowCovering.h │ │ │ │ └── Source │ │ │ │ │ ├── DoorLock.c │ │ │ │ │ ├── DoorLockCommandHandler.c │ │ │ │ │ ├── DoorLockCommands.c │ │ │ │ │ ├── DoorLock_internal.h │ │ │ │ │ ├── WindowCovering.c │ │ │ │ │ ├── WindowCoveringCommandHandler.c │ │ │ │ │ ├── WindowCoveringCommands.c │ │ │ │ │ └── WindowCovering_internal.h │ │ │ ├── Commissioning │ │ │ │ ├── Include │ │ │ │ │ ├── Commissioning.h │ │ │ │ │ ├── zll_commission.h │ │ │ │ │ └── zll_utility.h │ │ │ │ └── Source │ │ │ │ │ ├── Commissioning.c │ │ │ │ │ ├── CommissioningClientCommands.c │ │ │ │ │ ├── CommissioningCmdHandler.c │ │ │ │ │ ├── CommissioningServerCommands.c │ │ │ │ │ ├── Commissioning_internal.h │ │ │ │ │ ├── zll_CommissionCmdHandler.c │ │ │ │ │ ├── zll_UtilityCmdHandler.c │ │ │ │ │ ├── zll_commission.c │ │ │ │ │ └── zll_utility.c │ │ │ ├── General │ │ │ │ ├── Include │ │ │ │ │ ├── Alarms.h │ │ │ │ │ ├── AnalogInputBasic.h │ │ │ │ │ ├── AnalogOutputBasic.h │ │ │ │ │ ├── Basic.h │ │ │ │ │ ├── BinaryInputBasic.h │ │ │ │ │ ├── BinaryOutputBasic.h │ │ │ │ │ ├── DeviceTemperatureConfiguration.h │ │ │ │ │ ├── Diagnostics.h │ │ │ │ │ ├── Groups.h │ │ │ │ │ ├── Identify.h │ │ │ │ │ ├── LevelControl.h │ │ │ │ │ ├── MultistateInputBasic.h │ │ │ │ │ ├── MultistateOutputBasic.h │ │ │ │ │ ├── OOSC.h │ │ │ │ │ ├── OnOff.h │ │ │ │ │ ├── PollControl.h │ │ │ │ │ ├── PowerConfiguration.h │ │ │ │ │ ├── PowerProfile.h │ │ │ │ │ ├── Scenes.h │ │ │ │ │ ├── TC.h │ │ │ │ │ ├── Time.h │ │ │ │ │ ├── WWAH.h │ │ │ │ │ └── ZclTime.h │ │ │ │ └── Source │ │ │ │ │ ├── Alarms.c │ │ │ │ │ ├── AlarmsClientCommands.c │ │ │ │ │ ├── AlarmsCommandHandler.c │ │ │ │ │ ├── AlarmsServerCommands.c │ │ │ │ │ ├── AlarmsTableManager.c │ │ │ │ │ ├── Alarms_internal.h │ │ │ │ │ ├── AnalogInputBasic.c │ │ │ │ │ ├── AnalogInputBasic_internal.h │ │ │ │ │ ├── AnalogOutputBasic.c │ │ │ │ │ ├── AnalogOutputBasic_internal.h │ │ │ │ │ ├── Basic.c │ │ │ │ │ ├── BasicClientCommands.c │ │ │ │ │ ├── BasicCommandHandler.c │ │ │ │ │ ├── Basic_internal.h │ │ │ │ │ ├── BinaryInputBasic.c │ │ │ │ │ ├── BinaryInputBasic_internal.h │ │ │ │ │ ├── BinaryOutputBasic.c │ │ │ │ │ ├── BinaryOutputBasic_internal.h │ │ │ │ │ ├── DeviceTemperatureConfiguration.c │ │ │ │ │ ├── Diagnostics.c │ │ │ │ │ ├── Groups.c │ │ │ │ │ ├── GroupsClientCommands.c │ │ │ │ │ ├── GroupsCommandHandler.c │ │ │ │ │ ├── GroupsServerCommands.c │ │ │ │ │ ├── GroupsTableManager.c │ │ │ │ │ ├── Groups_internal.h │ │ │ │ │ ├── Identify.c │ │ │ │ │ ├── IdentifyClientCommands.c │ │ │ │ │ ├── IdentifyCommandHandler.c │ │ │ │ │ ├── IdentifyServerCommands.c │ │ │ │ │ ├── Identify_internal.h │ │ │ │ │ ├── LevelControl.c │ │ │ │ │ ├── LevelControlClientCommands.c │ │ │ │ │ ├── LevelControlCommandHandler.c │ │ │ │ │ ├── LevelControl_internal.h │ │ │ │ │ ├── MultistateInputBasic.c │ │ │ │ │ ├── MultistateInputBasic_internal.h │ │ │ │ │ ├── MultistateOutputBasic.c │ │ │ │ │ ├── MultistateOutputBasic_internal.h │ │ │ │ │ ├── OOSC.c │ │ │ │ │ ├── OnOff.c │ │ │ │ │ ├── OnOffCommandHandler.c │ │ │ │ │ ├── OnOffCommands.c │ │ │ │ │ ├── OnOff_internal.h │ │ │ │ │ ├── PollControl.c │ │ │ │ │ ├── PollControlClientCommands.c │ │ │ │ │ ├── PollControlCommandHandler.c │ │ │ │ │ ├── PollControlServerCommands.c │ │ │ │ │ ├── PollControl_internal.h │ │ │ │ │ ├── PowerConfiguration.c │ │ │ │ │ ├── PowerProfile.c │ │ │ │ │ ├── PowerProfileClientCommands.c │ │ │ │ │ ├── PowerProfileCommandHandler.c │ │ │ │ │ ├── PowerProfileServerCommands.c │ │ │ │ │ ├── PowerProfile_internal.h │ │ │ │ │ ├── Scenes.c │ │ │ │ │ ├── ScenesClientCommands.c │ │ │ │ │ ├── ScenesClusterManagement.c │ │ │ │ │ ├── ScenesCommandHandler.c │ │ │ │ │ ├── ScenesServerCommands.c │ │ │ │ │ ├── ScenesTableManager.c │ │ │ │ │ ├── Scenes_internal.h │ │ │ │ │ ├── TC.c │ │ │ │ │ ├── Time.c │ │ │ │ │ ├── WWAH.c │ │ │ │ │ ├── WWAHClientCommands.c │ │ │ │ │ ├── WWAHCommandHandler.c │ │ │ │ │ ├── WWAHServerCommands.c │ │ │ │ │ └── WWAH_internal.h │ │ │ ├── GreenPower │ │ │ │ ├── Include │ │ │ │ │ └── GreenPower.h │ │ │ │ └── Source │ │ │ │ │ ├── GreenPower.c │ │ │ │ │ ├── GreenPowerCommissioningNotification.c │ │ │ │ │ ├── GreenPowerCommon.c │ │ │ │ │ ├── GreenPowerCustomCommandHandler.c │ │ │ │ │ ├── GreenPowerCustomCommandResponses.c │ │ │ │ │ ├── GreenPowerDataIndication.c │ │ │ │ │ ├── GreenPowerDirectCommandHandler.c │ │ │ │ │ ├── GreenPowerNotification.c │ │ │ │ │ ├── GreenPowerPairing.c │ │ │ │ │ ├── GreenPowerPairingConfiguration.c │ │ │ │ │ ├── GreenPowerPairingSearch.c │ │ │ │ │ ├── GreenPowerProxyCommissioningMode.c │ │ │ │ │ ├── GreenPowerProxyGPDHandler.c │ │ │ │ │ ├── GreenPowerProxyTableRequest.c │ │ │ │ │ ├── GreenPowerProxyTableResponse.c │ │ │ │ │ ├── GreenPowerResponse.c │ │ │ │ │ ├── GreenPowerScheduler.c │ │ │ │ │ ├── GreenPowerSinkTableRequest.c │ │ │ │ │ ├── GreenPowerSinkTableResponse.c │ │ │ │ │ ├── GreenPowerTranslationTableRequest.c │ │ │ │ │ ├── GreenPowerTranslationTableResponse.c │ │ │ │ │ ├── GreenPowerTranslationTableUpdate.c │ │ │ │ │ └── GreenPower_internal.h │ │ │ ├── HVAC │ │ │ │ ├── Include │ │ │ │ │ ├── FanControl.h │ │ │ │ │ ├── Thermostat.h │ │ │ │ │ └── ThermostatUIConfig.h │ │ │ │ └── Source │ │ │ │ │ ├── FanControl.c │ │ │ │ │ ├── Thermostat.c │ │ │ │ │ ├── ThermostatCommandHandler.c │ │ │ │ │ ├── ThermostatCommands.c │ │ │ │ │ ├── ThermostatUIConfig.c │ │ │ │ │ └── Thermostat_internal.h │ │ │ ├── Lighting │ │ │ │ ├── Include │ │ │ │ │ ├── BallastConfiguration.h │ │ │ │ │ └── ColourControl.h │ │ │ │ └── Source │ │ │ │ │ ├── BallastConfiguration.c │ │ │ │ │ ├── ColourControl.c │ │ │ │ │ ├── ColourControlClientCommands.c │ │ │ │ │ ├── ColourControlCommandHandler.c │ │ │ │ │ ├── ColourControlConversions.c │ │ │ │ │ └── ColourControl_internal.h │ │ │ ├── MeasurementAndSensing │ │ │ │ ├── Include │ │ │ │ │ ├── ConcentrationMeasurement.h │ │ │ │ │ ├── ElectricalMeasurement.h │ │ │ │ │ ├── FlowMeasurement.h │ │ │ │ │ ├── IlluminanceLevelSensing.h │ │ │ │ │ ├── IlluminanceMeasurement.h │ │ │ │ │ ├── OccupancySensing.h │ │ │ │ │ ├── PressureMeasurement.h │ │ │ │ │ ├── RelativeHumidityMeasurement.h │ │ │ │ │ └── TemperatureMeasurement.h │ │ │ │ └── Source │ │ │ │ │ ├── ConcentrationMeasurement.c │ │ │ │ │ ├── ElectricalMeasurement.c │ │ │ │ │ ├── FlowMeasurement.c │ │ │ │ │ ├── IlluminanceLevelSensing.c │ │ │ │ │ ├── IlluminanceMeasurement.c │ │ │ │ │ ├── OccupancySensing.c │ │ │ │ │ ├── PressureMeasurement.c │ │ │ │ │ ├── RelativeHumidityMeasurement.c │ │ │ │ │ └── TemperatureMeasurement.c │ │ │ ├── OTA │ │ │ │ ├── Include │ │ │ │ │ └── OTA.h │ │ │ │ └── Source │ │ │ │ │ ├── OTA.c │ │ │ │ │ ├── OTA_ClientUpgradeManager.c │ │ │ │ │ ├── OTA_CustomCommandHandler.c │ │ │ │ │ ├── OTA_CustomReceiveCommands.c │ │ │ │ │ ├── OTA_ServerUpgradeManager.c │ │ │ │ │ ├── OTA_client.c │ │ │ │ │ ├── OTA_common.c │ │ │ │ │ ├── OTA_private.h │ │ │ │ │ └── OTA_server.c │ │ │ ├── SecurityAndSafety │ │ │ │ ├── Include │ │ │ │ │ ├── IASACE.h │ │ │ │ │ ├── IASWD.h │ │ │ │ │ └── IASZone.h │ │ │ │ └── Source │ │ │ │ │ ├── IASACE.c │ │ │ │ │ ├── IASACEClientCommands.c │ │ │ │ │ ├── IASACECommandHandler.c │ │ │ │ │ ├── IASACEServerCommands.c │ │ │ │ │ ├── IASACE_internal.h │ │ │ │ │ ├── IASWD.c │ │ │ │ │ ├── IASWDCommandHandler.c │ │ │ │ │ ├── IASWDCommands.c │ │ │ │ │ ├── IASWD_internal.h │ │ │ │ │ ├── IASZone.c │ │ │ │ │ ├── IASZoneCommandHandler.c │ │ │ │ │ ├── IASZoneCommands.c │ │ │ │ │ └── IASZone_internal.h │ │ │ └── SmartEnergy │ │ │ │ ├── Include │ │ │ │ ├── DRLC.h │ │ │ │ ├── Price.h │ │ │ │ ├── SimpleMetering.h │ │ │ │ └── SimpleMeteringAttributeCount.h │ │ │ │ └── Source │ │ │ │ ├── DRLC.c │ │ │ │ ├── DRLCCommandCanceAlllLoadControlEvents.c │ │ │ │ ├── DRLCCommandCancelLoadControlEvent.c │ │ │ │ ├── DRLCCommandGetScheduledEvents.c │ │ │ │ ├── DRLCCommandHandler.c │ │ │ │ ├── DRLCCommandLoadControlEvent.c │ │ │ │ ├── DRLCCommandReportEventStatus.c │ │ │ │ ├── DRLCCustomCommandResponsesClient.c │ │ │ │ ├── DRLCCustomCommandResponsesServer.c │ │ │ │ ├── DRLCEffectiveTime.c │ │ │ │ ├── DRLCScheduler.c │ │ │ │ ├── DRLCTableManagerNoMutex.c │ │ │ │ ├── DRLCTableManagerServer.c │ │ │ │ ├── DRLCUserEventOptInOut.c │ │ │ │ ├── DRLC_internal.h │ │ │ │ ├── Price.c │ │ │ │ ├── PriceBlockPeriodTableManager.c │ │ │ │ ├── PriceCalorificValueTableManager.c │ │ │ │ ├── PriceCommandGetBlockPeriod.c │ │ │ │ ├── PriceCommandGetCalorificValue.c │ │ │ │ ├── PriceCommandGetConversionFactor.c │ │ │ │ ├── PriceCommandGetCurrentPrice.c │ │ │ │ ├── PriceCommandGetScheduledPrices.c │ │ │ │ ├── PriceCommandPriceAck.c │ │ │ │ ├── PriceCommandPublishBlockPeriod.c │ │ │ │ ├── PriceCommandPublishBlockPeriodReceive.c │ │ │ │ ├── PriceCommandPublishCalorificValue.c │ │ │ │ ├── PriceCommandPublishCalorificValueReceive.c │ │ │ │ ├── PriceCommandPublishConversionFactor.c │ │ │ │ ├── PriceCommandPublishConversionFactorReceive.c │ │ │ │ ├── PriceCommandPublishPrice.c │ │ │ │ ├── PriceCommandPublishPriceReceive.c │ │ │ │ ├── PriceConversionFactorTableManager.c │ │ │ │ ├── PriceCustomCommandHandler.c │ │ │ │ ├── PriceCustomCommandResponses.c │ │ │ │ ├── PriceScheduler.c │ │ │ │ ├── PriceServerAttributeManager.c │ │ │ │ ├── PriceTableManager.c │ │ │ │ ├── Price_internal.h │ │ │ │ ├── SimpleMetering.c │ │ │ │ ├── SimpleMeteringCommandHandler.c │ │ │ │ ├── SimpleMetering_SendRequest.c │ │ │ │ └── SimpleMetering_internal.h │ │ └── Devices │ │ │ ├── ZGP │ │ │ ├── Include │ │ │ │ └── gp.h │ │ │ └── Source │ │ │ │ └── gp.c │ │ │ ├── ZHA │ │ │ ├── ApplianceManagement │ │ │ │ ├── Include │ │ │ │ │ ├── home_gateway.h │ │ │ │ │ └── white_goods.h │ │ │ │ └── Source │ │ │ │ │ ├── home_gateway.c │ │ │ │ │ └── white_goods.c │ │ │ ├── Closures │ │ │ │ ├── Include │ │ │ │ │ ├── door_lock.h │ │ │ │ │ ├── door_lock_controller.h │ │ │ │ │ └── window_covering.h │ │ │ │ └── Source │ │ │ │ │ ├── door_lock.c │ │ │ │ │ ├── door_lock_controller.c │ │ │ │ │ └── window_covering.c │ │ │ ├── Generic │ │ │ │ ├── Include │ │ │ │ │ ├── base_device.h │ │ │ │ │ ├── mains_power_outlet.h │ │ │ │ │ ├── on_off_output.h │ │ │ │ │ ├── plug_control.h │ │ │ │ │ ├── remote_control.h │ │ │ │ │ └── simple_sensor.h │ │ │ │ └── Source │ │ │ │ │ ├── base_device.c │ │ │ │ │ ├── mains_power_outlet.c │ │ │ │ │ ├── on_off_output.c │ │ │ │ │ ├── plug_control.c │ │ │ │ │ ├── remote_control.c │ │ │ │ │ └── simple_sensor.c │ │ │ ├── HVAC │ │ │ │ ├── Include │ │ │ │ │ ├── temperature_sensor.h │ │ │ │ │ └── thermostat_device.h │ │ │ │ └── Source │ │ │ │ │ ├── temperature_sensor.c │ │ │ │ │ └── thermostat_device.c │ │ │ ├── SecurityAndSafety │ │ │ │ ├── Include │ │ │ │ │ ├── ancillary_control_equipment.h │ │ │ │ │ ├── control_and_indicating_equipment.h │ │ │ │ │ ├── warning_device.h │ │ │ │ │ └── zone.h │ │ │ │ └── Source │ │ │ │ │ ├── ancillary_control_equipment.c │ │ │ │ │ ├── control_and_indicating_equipment.c │ │ │ │ │ ├── warning_device.c │ │ │ │ │ └── zone.c │ │ │ └── SmartEnergy │ │ │ │ ├── Include │ │ │ │ └── smart_plug.h │ │ │ │ └── Source │ │ │ │ └── smart_plug.c │ │ │ └── ZLO │ │ │ ├── Include │ │ │ ├── colour_controller.h │ │ │ ├── colour_dimmable_light.h │ │ │ ├── colour_dimmer_switch.h │ │ │ ├── colour_scene_controller.h │ │ │ ├── colour_temperature_light.h │ │ │ ├── commission_endpoint.h │ │ │ ├── control_bridge.h │ │ │ ├── dimmable_ballast.h │ │ │ ├── dimmable_light.h │ │ │ ├── dimmable_plug.h │ │ │ ├── dimmer_switch.h │ │ │ ├── extended_colour_light.h │ │ │ ├── light_level_sensor.h │ │ │ ├── light_sensor.h │ │ │ ├── non_colour_controller.h │ │ │ ├── non_colour_scene_controller.h │ │ │ ├── occupancy_sensor.h │ │ │ ├── on_off_ballast.h │ │ │ ├── on_off_light.h │ │ │ ├── on_off_light_switch.h │ │ │ ├── on_off_plug.h │ │ │ ├── on_off_sensor.h │ │ │ └── zlo_device_id.h │ │ │ └── Source │ │ │ ├── colour_controller.c │ │ │ ├── colour_dimmable_light.c │ │ │ ├── colour_dimmer_switch.c │ │ │ ├── colour_scene_controller.c │ │ │ ├── colour_temperature_light.c │ │ │ ├── commission_endpoint.c │ │ │ ├── control_bridge.c │ │ │ ├── dimmable_ballast.c │ │ │ ├── dimmable_light.c │ │ │ ├── dimmable_plug.c │ │ │ ├── dimmer_switch.c │ │ │ ├── extended_colour_light.c │ │ │ ├── light_level_sensor.c │ │ │ ├── light_sensor.c │ │ │ ├── non_colour_controller.c │ │ │ ├── non_colour_scene_controller.c │ │ │ ├── occupancy_sensor.c │ │ │ ├── on_off_ballast.c │ │ │ ├── on_off_light.c │ │ │ ├── on_off_light_switch.c │ │ │ ├── on_off_plug.c │ │ │ └── on_off_sensor.c │ │ ├── ZPSAPL │ │ └── Include │ │ │ ├── zps_apl.h │ │ │ ├── zps_apl_af.h │ │ │ ├── zps_apl_aib.h │ │ │ ├── zps_apl_aps.h │ │ │ ├── zps_apl_zdo.h │ │ │ └── zps_apl_zdp.h │ │ ├── ZPSMAC │ │ └── Include │ │ │ ├── mac_vs_sap.h │ │ │ ├── zps_mac.h │ │ │ ├── zps_mac_if_table.h │ │ │ └── zps_mac_prv.h │ │ ├── ZPSNWK │ │ └── Include │ │ │ ├── zps_nwk_config.h │ │ │ ├── zps_nwk_mac_sap.h │ │ │ ├── zps_nwk_nib.h │ │ │ ├── zps_nwk_pub.h │ │ │ ├── zps_nwk_sap.h │ │ │ ├── zps_nwk_sec.h │ │ │ └── zps_nwk_slist.h │ │ ├── ZPSTSV │ │ └── Include │ │ │ └── zps_tsv.h │ │ ├── ZigbeeCommon │ │ ├── Include │ │ │ ├── ZQueue.h │ │ │ ├── ZTimer.h │ │ │ ├── appZdpExtraction.h │ │ │ ├── appZpsBeaconHandler.h │ │ │ ├── portmacro.h │ │ │ ├── portmacro_JN516x.h │ │ │ ├── portmacro_JN517x.h │ │ │ ├── portmacro_JN518x.h │ │ │ └── usart_dma_rxbuffer.h │ │ ├── SelectiveOtaZigbeeStack │ │ │ └── ZigbeeBlob │ │ │ │ └── zigbee.axf │ │ └── Source │ │ │ ├── ZQueue.c │ │ │ ├── ZTimer.c │ │ │ ├── appZdpExtraction.c │ │ │ ├── appZpsBeaconHandler.c │ │ │ ├── appZpsExtendedDebug.c │ │ │ ├── app_zps_link_keys.c │ │ │ ├── port_JN518x.c │ │ │ └── usart_dma_rxbuffer.c │ │ ├── examples │ │ ├── board │ │ │ └── dk6 │ │ │ │ ├── app.h │ │ │ │ ├── hardware_init.c │ │ │ │ ├── pin_mux.c │ │ │ │ └── pin_mux.h │ │ ├── zb_common │ │ │ ├── PDM_IDs.h │ │ │ ├── app_buttons.c │ │ │ ├── app_buttons.h │ │ │ ├── app_common.h │ │ │ ├── app_leds.c │ │ │ ├── app_leds.h │ │ │ ├── app_ota_client.c │ │ │ ├── app_ota_client.h │ │ │ ├── app_ota_server.c │ │ │ ├── app_ota_server.h │ │ │ ├── app_uart.c │ │ │ ├── app_uart.h │ │ │ └── app_zigbee_config.c │ │ └── zigbee_ota_build │ │ │ ├── DeviceCreateOtaEncClient.sh │ │ │ ├── LinkKey_Zigbee09.txt │ │ │ └── configOTA_LinkKey.txt │ │ └── tools │ │ ├── Eclipse_plugins │ │ ├── Source │ │ │ ├── com.jennic.OSConfigDiagramEditor.diagram │ │ │ │ ├── .classpath │ │ │ │ ├── icons │ │ │ │ │ ├── incomingLinksNavigatorGroup.gif │ │ │ │ │ ├── linkSourceNavigatorGroup.gif │ │ │ │ │ ├── linkTargetNavigatorGroup.gif │ │ │ │ │ ├── linksNavigatorGroup.gif │ │ │ │ │ ├── obj16 │ │ │ │ │ │ ├── OscfgDiagramFile.gif │ │ │ │ │ │ ├── OscfgDiagramFile.png │ │ │ │ │ │ └── Thumbs.db │ │ │ │ │ ├── outgoingLinksNavigatorGroup.gif │ │ │ │ │ └── wizban │ │ │ │ │ │ ├── NewOscfgWizard.gif │ │ │ │ │ │ ├── NewOscfgWizard.png │ │ │ │ │ │ └── Thumbs.db │ │ │ │ ├── plugin_customization.ini │ │ │ │ └── src │ │ │ │ │ └── oscfg │ │ │ │ │ └── diagram │ │ │ │ │ ├── edit │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── BaseTaskCollectMessageCreateCommand.java │ │ │ │ │ │ ├── BaseTaskCollectMessageReorientCommand.java │ │ │ │ │ │ ├── BaseTaskEnterExitMutexCreateCommand.java │ │ │ │ │ │ ├── BaseTaskEnterExitMutexReorientCommand.java │ │ │ │ │ │ ├── CallbackFunctionCreateCommand.java │ │ │ │ │ │ ├── CooperativeGroupCreateCommand.java │ │ │ │ │ │ ├── HWCounterCreateCommand.java │ │ │ │ │ │ ├── HWCounterDisable_callbackCreateCommand.java │ │ │ │ │ │ ├── HWCounterDisable_callbackReorientCommand.java │ │ │ │ │ │ ├── HWCounterEnable_callbackCreateCommand.java │ │ │ │ │ │ ├── HWCounterEnable_callbackReorientCommand.java │ │ │ │ │ │ ├── HWCounterGet_callbackCreateCommand.java │ │ │ │ │ │ ├── HWCounterGet_callbackReorientCommand.java │ │ │ │ │ │ ├── HWCounterSet_callbackCreateCommand.java │ │ │ │ │ │ ├── HWCounterSet_callbackReorientCommand.java │ │ │ │ │ │ ├── ISRCreateCommand.java │ │ │ │ │ │ ├── InterruptSourceCreateCommand.java │ │ │ │ │ │ ├── InterruptSourceSourceISRCreateCommand.java │ │ │ │ │ │ ├── InterruptSourceSourceISRReorientCommand.java │ │ │ │ │ │ ├── MessageCreateCommand.java │ │ │ │ │ │ ├── MessageNotifiesCreateCommand.java │ │ │ │ │ │ ├── MessageNotifiesReorientCommand.java │ │ │ │ │ │ ├── ModuleCreateCommand.java │ │ │ │ │ │ ├── MutexCreateCommand.java │ │ │ │ │ │ ├── OSCreateCommand.java │ │ │ │ │ │ ├── OscfgReorientConnectionViewCommand.java │ │ │ │ │ │ ├── PosterPostMessageCreateCommand.java │ │ │ │ │ │ ├── PosterPostMessageReorientCommand.java │ │ │ │ │ │ ├── SWTimerActivatesCreateCommand.java │ │ │ │ │ │ ├── SWTimerActivatesReorientCommand.java │ │ │ │ │ │ ├── SWTimerCreateCommand.java │ │ │ │ │ │ ├── SWTimerTimer_callbackCreateCommand.java │ │ │ │ │ │ ├── SWTimerTimer_callbackReorientCommand.java │ │ │ │ │ │ ├── Task2CreateCommand.java │ │ │ │ │ │ └── TaskCreateCommand.java │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── CallbackFunctionEditHelper.java │ │ │ │ │ │ ├── ConfigurationEditHelper.java │ │ │ │ │ │ ├── CooperativeGroupEditHelper.java │ │ │ │ │ │ ├── HWCounterEditHelper.java │ │ │ │ │ │ ├── ISREditHelper.java │ │ │ │ │ │ ├── InterruptSourceEditHelper.java │ │ │ │ │ │ ├── MessageEditHelper.java │ │ │ │ │ │ ├── ModuleEditHelper.java │ │ │ │ │ │ ├── MutexEditHelper.java │ │ │ │ │ │ ├── OSEditHelper.java │ │ │ │ │ │ ├── OscfgBaseEditHelper.java │ │ │ │ │ │ ├── SWTimerEditHelper.java │ │ │ │ │ │ └── TaskEditHelper.java │ │ │ │ │ ├── parts │ │ │ │ │ │ ├── BaseTaskCollectMessageEditPart.java │ │ │ │ │ │ ├── BaseTaskEnterExitMutexEditPart.java │ │ │ │ │ │ ├── CallbackFunctionEditPart.java │ │ │ │ │ │ ├── CallbackFunctionNameEditPart.java │ │ │ │ │ │ ├── ConfigurationEditPart.java │ │ │ │ │ │ ├── CooperativeGroupCooperativeTasksEditPart.java │ │ │ │ │ │ ├── CooperativeGroupEditPart.java │ │ │ │ │ │ ├── CooperativeGroupNameEditPart.java │ │ │ │ │ │ ├── HWCounterDisable_callbackEditPart.java │ │ │ │ │ │ ├── HWCounterEditPart.java │ │ │ │ │ │ ├── HWCounterEnable_callbackEditPart.java │ │ │ │ │ │ ├── HWCounterGet_callbackEditPart.java │ │ │ │ │ │ ├── HWCounterNameEditPart.java │ │ │ │ │ │ ├── HWCounterSet_callbackEditPart.java │ │ │ │ │ │ ├── HWCounterSoftwareTimersEditPart.java │ │ │ │ │ │ ├── ISREditPart.java │ │ │ │ │ │ ├── ISRIPLEditPart.java │ │ │ │ │ │ ├── ISRNameEditPart.java │ │ │ │ │ │ ├── ISRTypeEditPart.java │ │ │ │ │ │ ├── InterruptSourceEditPart.java │ │ │ │ │ │ ├── InterruptSourceSourceEditPart.java │ │ │ │ │ │ ├── InterruptSourceSourceISREditPart.java │ │ │ │ │ │ ├── MessageCtypeEditPart.java │ │ │ │ │ │ ├── MessageEditPart.java │ │ │ │ │ │ ├── MessageNameEditPart.java │ │ │ │ │ │ ├── MessageNotifiesEditPart.java │ │ │ │ │ │ ├── MessageQueueEditPart.java │ │ │ │ │ │ ├── ModuleEditPart.java │ │ │ │ │ │ ├── ModuleModuleObjectsEditPart.java │ │ │ │ │ │ ├── ModuleNameEditPart.java │ │ │ │ │ │ ├── MutexEditPart.java │ │ │ │ │ │ ├── MutexNameEditPart.java │ │ │ │ │ │ ├── OSEditPart.java │ │ │ │ │ │ ├── OSOSModulesEditPart.java │ │ │ │ │ │ ├── OSTargetEditPart.java │ │ │ │ │ │ ├── OscfgEditPartFactory.java │ │ │ │ │ │ ├── PosterPostMessageEditPart.java │ │ │ │ │ │ ├── SWTimerActivatesEditPart.java │ │ │ │ │ │ ├── SWTimerEditPart.java │ │ │ │ │ │ ├── SWTimerNameEditPart.java │ │ │ │ │ │ ├── SWTimerTimer_callbackEditPart.java │ │ │ │ │ │ ├── Task2EditPart.java │ │ │ │ │ │ ├── TaskAutostarted2EditPart.java │ │ │ │ │ │ ├── TaskAutostartedEditPart.java │ │ │ │ │ │ ├── TaskEditPart.java │ │ │ │ │ │ ├── TaskName2EditPart.java │ │ │ │ │ │ ├── TaskNameEditPart.java │ │ │ │ │ │ ├── TaskPriority2EditPart.java │ │ │ │ │ │ ├── TaskPriorityEditPart.java │ │ │ │ │ │ ├── WrappingLabel10EditPart.java │ │ │ │ │ │ ├── WrappingLabel11EditPart.java │ │ │ │ │ │ ├── WrappingLabel2EditPart.java │ │ │ │ │ │ ├── WrappingLabel3EditPart.java │ │ │ │ │ │ ├── WrappingLabel4EditPart.java │ │ │ │ │ │ ├── WrappingLabel5EditPart.java │ │ │ │ │ │ ├── WrappingLabel6EditPart.java │ │ │ │ │ │ ├── WrappingLabel7EditPart.java │ │ │ │ │ │ ├── WrappingLabel8EditPart.java │ │ │ │ │ │ ├── WrappingLabel9EditPart.java │ │ │ │ │ │ └── WrappingLabelEditPart.java │ │ │ │ │ └── policies │ │ │ │ │ │ ├── BaseTaskCollectMessageItemSemanticEditPolicy.java │ │ │ │ │ │ ├── BaseTaskEnterExitMutexItemSemanticEditPolicy.java │ │ │ │ │ │ ├── BaseTaskPostMessageItemSemanticEditPolicy.java │ │ │ │ │ │ ├── CallbackFunctionItemSemanticEditPolicy.java │ │ │ │ │ │ ├── ConfigurationCanonicalEditPolicy.java │ │ │ │ │ │ ├── ConfigurationItemSemanticEditPolicy.java │ │ │ │ │ │ ├── CooperativeGroupCooperativeTasksCanonicalEditPolicy.java │ │ │ │ │ │ ├── CooperativeGroupCooperativeTasksItemSemanticEditPolicy.java │ │ │ │ │ │ ├── CooperativeGroupItemSemanticEditPolicy.java │ │ │ │ │ │ ├── HWCounterDisable_callbackItemSemanticEditPolicy.java │ │ │ │ │ │ ├── HWCounterEnable_callbackItemSemanticEditPolicy.java │ │ │ │ │ │ ├── HWCounterGet_callbackItemSemanticEditPolicy.java │ │ │ │ │ │ ├── HWCounterItemSemanticEditPolicy.java │ │ │ │ │ │ ├── HWCounterSet_callbackItemSemanticEditPolicy.java │ │ │ │ │ │ ├── HWCounterSoftwareTimersCanonicalEditPolicy.java │ │ │ │ │ │ ├── HWCounterSoftwareTimersItemSemanticEditPolicy.java │ │ │ │ │ │ ├── ISRItemSemanticEditPolicy.java │ │ │ │ │ │ ├── InterruptSourceItemSemanticEditPolicy.java │ │ │ │ │ │ ├── InterruptSourceSourceISRItemSemanticEditPolicy.java │ │ │ │ │ │ ├── MessageItemSemanticEditPolicy.java │ │ │ │ │ │ ├── MessageNotifiesItemSemanticEditPolicy.java │ │ │ │ │ │ ├── ModuleItemSemanticEditPolicy.java │ │ │ │ │ │ ├── ModuleModuleObjectsCanonicalEditPolicy.java │ │ │ │ │ │ ├── ModuleModuleObjectsItemSemanticEditPolicy.java │ │ │ │ │ │ ├── MutexItemSemanticEditPolicy.java │ │ │ │ │ │ ├── OSItemSemanticEditPolicy.java │ │ │ │ │ │ ├── OSOSModulesCanonicalEditPolicy.java │ │ │ │ │ │ ├── OSOSModulesItemSemanticEditPolicy.java │ │ │ │ │ │ ├── OscfgBaseItemSemanticEditPolicy.java │ │ │ │ │ │ ├── OscfgTextNonResizableEditPolicy.java │ │ │ │ │ │ ├── OscfgTextSelectionEditPolicy.java │ │ │ │ │ │ ├── PosterPostMessageItemSemanticEditPolicy.java │ │ │ │ │ │ ├── SWTimerActivatesItemSemanticEditPolicy.java │ │ │ │ │ │ ├── SWTimerItemSemanticEditPolicy.java │ │ │ │ │ │ ├── SWTimerTimer_callbackItemSemanticEditPolicy.java │ │ │ │ │ │ ├── Task2ItemSemanticEditPolicy.java │ │ │ │ │ │ └── TaskItemSemanticEditPolicy.java │ │ │ │ │ ├── expressions │ │ │ │ │ ├── OscfgAbstractExpression.java │ │ │ │ │ └── OscfgOCLFactory.java │ │ │ │ │ ├── layoutmanager │ │ │ │ │ └── CompartmentLayout.java │ │ │ │ │ ├── navigator │ │ │ │ │ ├── OscfgAbstractNavigatorItem.java │ │ │ │ │ ├── OscfgDomainNavigatorContentProvider.java │ │ │ │ │ ├── OscfgDomainNavigatorItem.java │ │ │ │ │ ├── OscfgDomainNavigatorLabelProvider.java │ │ │ │ │ ├── OscfgNavigatorActionProvider.java │ │ │ │ │ ├── OscfgNavigatorContentProvider.java │ │ │ │ │ ├── OscfgNavigatorGroup.java │ │ │ │ │ ├── OscfgNavigatorItem.java │ │ │ │ │ ├── OscfgNavigatorLabelProvider.java │ │ │ │ │ ├── OscfgNavigatorLinkHelper.java │ │ │ │ │ └── OscfgNavigatorSorter.java │ │ │ │ │ ├── parsers │ │ │ │ │ ├── AbstractParser.java │ │ │ │ │ ├── CompositeParser.java │ │ │ │ │ └── MessageFormatParser.java │ │ │ │ │ ├── part │ │ │ │ │ ├── DeleteElementAction.java │ │ │ │ │ ├── DiagramEditorContextMenuProvider.java │ │ │ │ │ ├── LoadResourceAction.java │ │ │ │ │ ├── Messages.java │ │ │ │ │ ├── ModelElementSelectionPage.java │ │ │ │ │ ├── OscfgCreationWizard.java │ │ │ │ │ ├── OscfgCreationWizardPage.java │ │ │ │ │ ├── OscfgDiagramActionBarContributor.java │ │ │ │ │ ├── OscfgDiagramEditor.java │ │ │ │ │ ├── OscfgDiagramEditorPlugin.java │ │ │ │ │ ├── OscfgDiagramEditorUtil.java │ │ │ │ │ ├── OscfgDiagramUpdateCommand.java │ │ │ │ │ ├── OscfgDiagramUpdater.java │ │ │ │ │ ├── OscfgDocumentProvider.java │ │ │ │ │ ├── OscfgDomainModelElementTester.java │ │ │ │ │ ├── OscfgInitDiagramFileAction.java │ │ │ │ │ ├── OscfgLinkDescriptor.java │ │ │ │ │ ├── OscfgLoadResourceAction.java │ │ │ │ │ ├── OscfgMatchingStrategy.java │ │ │ │ │ ├── OscfgNewDiagramFileWizard.java │ │ │ │ │ ├── OscfgNodeDescriptor.java │ │ │ │ │ ├── OscfgPaletteFactory.java │ │ │ │ │ ├── OscfgUriEditorInputTester.java │ │ │ │ │ ├── OscfgVisualIDRegistry.java │ │ │ │ │ └── ValidateAction.java │ │ │ │ │ ├── preferences │ │ │ │ │ ├── DiagramAppearancePreferencePage.java │ │ │ │ │ ├── DiagramConnectionsPreferencePage.java │ │ │ │ │ ├── DiagramGeneralPreferencePage.java │ │ │ │ │ ├── DiagramPreferenceInitializer.java │ │ │ │ │ ├── DiagramPrintingPreferencePage.java │ │ │ │ │ └── DiagramRulersAndGridPreferencePage.java │ │ │ │ │ ├── providers │ │ │ │ │ ├── ElementInitializers.java │ │ │ │ │ ├── OscfgContributionItemProvider.java │ │ │ │ │ ├── OscfgEditPartProvider.java │ │ │ │ │ ├── OscfgElementTypes.java │ │ │ │ │ ├── OscfgIconProvider.java │ │ │ │ │ ├── OscfgMarkerNavigationProvider.java │ │ │ │ │ ├── OscfgModelingAssistantProvider.java │ │ │ │ │ ├── OscfgParserProvider.java │ │ │ │ │ ├── OscfgValidationDecoratorProvider.java │ │ │ │ │ ├── OscfgValidationProvider.java │ │ │ │ │ ├── OscfgViewProvider.java │ │ │ │ │ └── assistants │ │ │ │ │ │ ├── OscfgModelingAssistantProviderOfCallbackFunctionEditPart.java │ │ │ │ │ │ ├── OscfgModelingAssistantProviderOfConfigurationEditPart.java │ │ │ │ │ │ ├── OscfgModelingAssistantProviderOfCooperativeGroupEditPart.java │ │ │ │ │ │ ├── OscfgModelingAssistantProviderOfHWCounterEditPart.java │ │ │ │ │ │ ├── OscfgModelingAssistantProviderOfISREditPart.java │ │ │ │ │ │ ├── OscfgModelingAssistantProviderOfInterruptSourceEditPart.java │ │ │ │ │ │ ├── OscfgModelingAssistantProviderOfMessageEditPart.java │ │ │ │ │ │ ├── OscfgModelingAssistantProviderOfModuleEditPart.java │ │ │ │ │ │ ├── OscfgModelingAssistantProviderOfMutexEditPart.java │ │ │ │ │ │ ├── OscfgModelingAssistantProviderOfOSEditPart.java │ │ │ │ │ │ ├── OscfgModelingAssistantProviderOfSWTimerEditPart.java │ │ │ │ │ │ ├── OscfgModelingAssistantProviderOfTask2EditPart.java │ │ │ │ │ │ └── OscfgModelingAssistantProviderOfTaskEditPart.java │ │ │ │ │ ├── sheet │ │ │ │ │ ├── OscfgPropertySection.java │ │ │ │ │ └── OscfgSheetLabelProvider.java │ │ │ │ │ └── view │ │ │ │ │ └── factories │ │ │ │ │ ├── BaseTaskCollectMessageViewFactory.java │ │ │ │ │ ├── BaseTaskEnterExitMutexViewFactory.java │ │ │ │ │ ├── CallbackFunctionNameViewFactory.java │ │ │ │ │ ├── CallbackFunctionViewFactory.java │ │ │ │ │ ├── ConfigurationViewFactory.java │ │ │ │ │ ├── CooperativeGroupCooperativeTasksViewFactory.java │ │ │ │ │ ├── CooperativeGroupNameViewFactory.java │ │ │ │ │ ├── CooperativeGroupViewFactory.java │ │ │ │ │ ├── HWCounterDisable_callbackViewFactory.java │ │ │ │ │ ├── HWCounterEnable_callbackViewFactory.java │ │ │ │ │ ├── HWCounterGet_callbackViewFactory.java │ │ │ │ │ ├── HWCounterNameViewFactory.java │ │ │ │ │ ├── HWCounterSet_callbackViewFactory.java │ │ │ │ │ ├── HWCounterSoftwareTimersViewFactory.java │ │ │ │ │ ├── HWCounterViewFactory.java │ │ │ │ │ ├── ISRIPLViewFactory.java │ │ │ │ │ ├── ISRNameViewFactory.java │ │ │ │ │ ├── ISRTypeViewFactory.java │ │ │ │ │ ├── ISRViewFactory.java │ │ │ │ │ ├── InterruptSourceSourceISRViewFactory.java │ │ │ │ │ ├── InterruptSourceSourceViewFactory.java │ │ │ │ │ ├── InterruptSourceViewFactory.java │ │ │ │ │ ├── MessageCtypeViewFactory.java │ │ │ │ │ ├── MessageNameViewFactory.java │ │ │ │ │ ├── MessageNotifiesViewFactory.java │ │ │ │ │ ├── MessageQueueViewFactory.java │ │ │ │ │ ├── MessageViewFactory.java │ │ │ │ │ ├── ModuleModuleObjectsViewFactory.java │ │ │ │ │ ├── ModuleNameViewFactory.java │ │ │ │ │ ├── ModuleViewFactory.java │ │ │ │ │ ├── MutexNameViewFactory.java │ │ │ │ │ ├── MutexViewFactory.java │ │ │ │ │ ├── OSOSModulesViewFactory.java │ │ │ │ │ ├── OSTargetViewFactory.java │ │ │ │ │ ├── OSViewFactory.java │ │ │ │ │ ├── PosterPostMessageViewFactory.java │ │ │ │ │ ├── SWTimerActivatesViewFactory.java │ │ │ │ │ ├── SWTimerNameViewFactory.java │ │ │ │ │ ├── SWTimerTimer_callbackViewFactory.java │ │ │ │ │ ├── SWTimerViewFactory.java │ │ │ │ │ ├── Task2ViewFactory.java │ │ │ │ │ ├── TaskAutostarted2ViewFactory.java │ │ │ │ │ ├── TaskAutostartedViewFactory.java │ │ │ │ │ ├── TaskName2ViewFactory.java │ │ │ │ │ ├── TaskNameViewFactory.java │ │ │ │ │ ├── TaskPriority2ViewFactory.java │ │ │ │ │ ├── TaskPriorityViewFactory.java │ │ │ │ │ ├── TaskViewFactory.java │ │ │ │ │ ├── WrappingLabel10ViewFactory.java │ │ │ │ │ ├── WrappingLabel11ViewFactory.java │ │ │ │ │ ├── WrappingLabel2ViewFactory.java │ │ │ │ │ ├── WrappingLabel3ViewFactory.java │ │ │ │ │ ├── WrappingLabel4ViewFactory.java │ │ │ │ │ ├── WrappingLabel5ViewFactory.java │ │ │ │ │ ├── WrappingLabel6ViewFactory.java │ │ │ │ │ ├── WrappingLabel7ViewFactory.java │ │ │ │ │ ├── WrappingLabel8ViewFactory.java │ │ │ │ │ ├── WrappingLabel9ViewFactory.java │ │ │ │ │ └── WrappingLabelViewFactory.java │ │ │ ├── com.jennic.OSConfigDiagramEditor.edit │ │ │ │ ├── .classpath │ │ │ │ ├── icons │ │ │ │ │ └── full │ │ │ │ │ │ ├── ctool16 │ │ │ │ │ │ ├── CreateAPDUPool_APDU_APDU.gif │ │ │ │ │ │ ├── CreateConfiguration_OS_OS.gif │ │ │ │ │ │ ├── CreateConfiguration_PDUM_PDUM.gif │ │ │ │ │ │ ├── CreateCooperativeGroup_CooperativeTasks_Task.gif │ │ │ │ │ │ ├── CreateDocumentRoot_Configuration_Configuration.gif │ │ │ │ │ │ ├── CreateHWCounter_SWTimers_SWTimer.gif │ │ │ │ │ │ ├── CreateModule_Callbacks_CallbackFunction.gif │ │ │ │ │ │ ├── CreateModule_CooperativeTaskGroups_CooperativeGroup.gif │ │ │ │ │ │ ├── CreateModule_HWCounters_HWCounter.gif │ │ │ │ │ │ ├── CreateModule_ISRs_ISR.gif │ │ │ │ │ │ ├── CreateModule_InterruptSources_InterruptSource.gif │ │ │ │ │ │ ├── CreateModule_Messages_Message.gif │ │ │ │ │ │ ├── CreateModule_Mutexs_Mutex.gif │ │ │ │ │ │ ├── CreateModule_Tasks_Task.gif │ │ │ │ │ │ ├── CreateOS_Modules_Module.gif │ │ │ │ │ │ ├── CreatePDUM_APDUPool_APDUPool.gif │ │ │ │ │ │ ├── CreatePDUM_NPDUPool_NPDUPool.gif │ │ │ │ │ │ └── Thumbs.db │ │ │ │ │ │ ├── obj16 │ │ │ │ │ │ ├── CallbackFunction.gif │ │ │ │ │ │ ├── Configuration.gif │ │ │ │ │ │ ├── CooperativeGroup.gif │ │ │ │ │ │ ├── DocumentRoot.gif │ │ │ │ │ │ ├── HWCounter.gif │ │ │ │ │ │ ├── ISR.gif │ │ │ │ │ │ ├── InterruptSource.gif │ │ │ │ │ │ ├── Message.gif │ │ │ │ │ │ ├── Module.gif │ │ │ │ │ │ ├── Mutex.gif │ │ │ │ │ │ ├── OS.gif │ │ │ │ │ │ ├── SWTimer.gif │ │ │ │ │ │ ├── Task.gif │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── callback.png │ │ │ │ │ │ ├── collectmessage.png │ │ │ │ │ │ ├── coop-task.png │ │ │ │ │ │ ├── hcounter.png │ │ │ │ │ │ ├── hwcount-callback.png │ │ │ │ │ │ ├── isource-isr.png │ │ │ │ │ │ ├── isource.png │ │ │ │ │ │ ├── isr.png │ │ │ │ │ │ ├── message-isr.png │ │ │ │ │ │ ├── message-task.png │ │ │ │ │ │ ├── message.png │ │ │ │ │ │ ├── module.png │ │ │ │ │ │ ├── mutex.png │ │ │ │ │ │ ├── os.png │ │ │ │ │ │ ├── postmessage.png │ │ │ │ │ │ ├── stimer.png │ │ │ │ │ │ ├── swtime-callback.png │ │ │ │ │ │ ├── swtime-task.png │ │ │ │ │ │ ├── task-mutex.png │ │ │ │ │ │ └── task.png │ │ │ │ │ │ └── obj32 │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── callback.png │ │ │ │ │ │ ├── collectmessage.png │ │ │ │ │ │ ├── coop-task.png │ │ │ │ │ │ ├── hcounter.png │ │ │ │ │ │ ├── hwcount-callback.png │ │ │ │ │ │ ├── isource-isr.png │ │ │ │ │ │ ├── isource.png │ │ │ │ │ │ ├── isr.png │ │ │ │ │ │ ├── message-isr.png │ │ │ │ │ │ ├── message-task.png │ │ │ │ │ │ ├── message.png │ │ │ │ │ │ ├── module.png │ │ │ │ │ │ ├── mutex.png │ │ │ │ │ │ ├── os.png │ │ │ │ │ │ ├── postmessage.png │ │ │ │ │ │ ├── stimer.png │ │ │ │ │ │ ├── swtime-callback.png │ │ │ │ │ │ ├── swtime-task.png │ │ │ │ │ │ ├── task-message.png │ │ │ │ │ │ ├── task-mutex.png │ │ │ │ │ │ └── task.png │ │ │ │ └── src │ │ │ │ │ └── oscfg │ │ │ │ │ └── provider │ │ │ │ │ ├── BaseTaskItemProvider.java │ │ │ │ │ ├── CallbackFunctionItemProvider.java │ │ │ │ │ ├── ConfigurationItemProvider.java │ │ │ │ │ ├── CooperativeGroupItemProvider.java │ │ │ │ │ ├── DocumentRootItemProvider.java │ │ │ │ │ ├── HWCounterItemProvider.java │ │ │ │ │ ├── ISRItemProvider.java │ │ │ │ │ ├── InterruptSourceItemProvider.java │ │ │ │ │ ├── MessageItemProvider.java │ │ │ │ │ ├── ModuleItemProvider.java │ │ │ │ │ ├── MutexItemProvider.java │ │ │ │ │ ├── NamedObjectItemProvider.java │ │ │ │ │ ├── OSItemProvider.java │ │ │ │ │ ├── OscfgEditPlugin.java │ │ │ │ │ ├── OscfgItemProviderAdapterFactory.java │ │ │ │ │ ├── PosterItemProvider.java │ │ │ │ │ ├── SWTimerItemProvider.java │ │ │ │ │ └── TaskItemProvider.java │ │ │ ├── com.jennic.OSConfigDiagramEditor.editor │ │ │ │ ├── .classpath │ │ │ │ ├── icons │ │ │ │ │ └── full │ │ │ │ │ │ ├── obj16 │ │ │ │ │ │ └── OscfgModelFile.gif │ │ │ │ │ │ └── wizban │ │ │ │ │ │ └── NewOscfg.gif │ │ │ │ └── src │ │ │ │ │ └── oscfg │ │ │ │ │ └── presentation │ │ │ │ │ ├── OscfgActionBarContributor.java │ │ │ │ │ ├── OscfgEditor.java │ │ │ │ │ ├── OscfgEditorPlugin.java │ │ │ │ │ └── OscfgModelWizard.java │ │ │ ├── com.jennic.OSConfigDiagramEditor │ │ │ │ ├── .classpath │ │ │ │ ├── model │ │ │ │ │ └── XMI.xsd │ │ │ │ └── src │ │ │ │ │ └── oscfg │ │ │ │ │ ├── AutostartedType.java │ │ │ │ │ ├── BaseTask.java │ │ │ │ │ ├── CallbackFunction.java │ │ │ │ │ ├── Configuration.java │ │ │ │ │ ├── CooperativeGroup.java │ │ │ │ │ ├── DocumentRoot.java │ │ │ │ │ ├── HWCounter.java │ │ │ │ │ ├── ISR.java │ │ │ │ │ ├── InterruptSource.java │ │ │ │ │ ├── Message.java │ │ │ │ │ ├── Module.java │ │ │ │ │ ├── Mutex.java │ │ │ │ │ ├── NamedObject.java │ │ │ │ │ ├── OS.java │ │ │ │ │ ├── OscfgFactory.java │ │ │ │ │ ├── OscfgPackage.java │ │ │ │ │ ├── Poster.java │ │ │ │ │ ├── SWTimer.java │ │ │ │ │ ├── TargetTypes.java │ │ │ │ │ ├── Task.java │ │ │ │ │ ├── TypeType.java │ │ │ │ │ ├── VectorType.java │ │ │ │ │ ├── impl │ │ │ │ │ ├── CallbackFunctionImpl.java │ │ │ │ │ ├── ConfigurationImpl.java │ │ │ │ │ ├── CooperativeGroupImpl.java │ │ │ │ │ ├── DocumentRootImpl.java │ │ │ │ │ ├── HWCounterImpl.java │ │ │ │ │ ├── ISRImpl.java │ │ │ │ │ ├── InterruptSourceImpl.java │ │ │ │ │ ├── NamedObjectImpl.java │ │ │ │ │ ├── OSImpl.java │ │ │ │ │ ├── OscfgFactoryImpl.java │ │ │ │ │ ├── OscfgPackageImpl.java │ │ │ │ │ └── TaskImpl.java │ │ │ │ │ └── util │ │ │ │ │ ├── OscfgAdapterFactory.java │ │ │ │ │ ├── OscfgSwitch.java │ │ │ │ │ └── OscfgValidator.java │ │ │ ├── com.jennic.zps.configeditor.edit │ │ │ │ ├── .classpath │ │ │ │ ├── icons │ │ │ │ │ └── full │ │ │ │ │ │ ├── ctool16 │ │ │ │ │ │ ├── CreateAlwaysOnNode_TrustCenter_TrustCenter.gif │ │ │ │ │ │ ├── CreateCoordinator_ZDOServers_ZDOServersCoordinator.gif │ │ │ │ │ │ ├── CreateEndDevice_ZDOServers_ZDOServersEndDevice.gif │ │ │ │ │ │ ├── CreateEndPoint_InputClusters_InputCluster.gif │ │ │ │ │ │ ├── CreateEndPoint_OutputClusters_OutputCluster.gif │ │ │ │ │ │ ├── CreateKeyDescriptorTable_PreconfiguredKey_PreconfiguredKey.gif │ │ │ │ │ │ ├── CreateMacInterfaceList_MacInterface_MacInterface.gif │ │ │ │ │ │ ├── CreateNode_BindingTable_BindingTable.gif │ │ │ │ │ │ ├── CreateNode_ChannelMask_ChannelMask.gif │ │ │ │ │ │ ├── CreateNode_Endpoints_EndPoint.gif │ │ │ │ │ │ ├── CreateNode_GreenPowerSecurityTable_GreenPowerSecurityTable.gif │ │ │ │ │ │ ├── CreateNode_GreenPowerTxQueue_GreenPowerTxQueue.gif │ │ │ │ │ │ ├── CreateNode_GroupTable_GroupTable.gif │ │ │ │ │ │ ├── CreateNode_KeyDescriptorTable_KeyDescriptorTable.gif │ │ │ │ │ │ ├── CreateNode_MacInterfaceList_MacInterfaceList.gif │ │ │ │ │ │ ├── CreateNode_NodeDescriptor_NodeDescriptor.gif │ │ │ │ │ │ ├── CreateNode_NodePowerDescriptor_NodePowerDescriptor.gif │ │ │ │ │ │ ├── CreateNode_PDUConfiguration_PDUManager.gif │ │ │ │ │ │ ├── CreateNode_UserDescriptor_UserDescriptor.gif │ │ │ │ │ │ ├── CreateNotImplemented_BindingCache_BackupBindingCache.gif │ │ │ │ │ │ ├── CreateNotImplemented_BindingCache_PrimaryBindingCache.gif │ │ │ │ │ │ ├── CreateNotImplemented_ComplexDescriptor_ComplexDescriptor.gif │ │ │ │ │ │ ├── CreateNotImplemented_DiscoveryCache_BackupDiscoveryCache.gif │ │ │ │ │ │ ├── CreateNotImplemented_DiscoveryCache_DiscoveryCache.gif │ │ │ │ │ │ ├── CreateNotImplemented_DiscoveryCache_PrimaryDiscoveryCache.gif │ │ │ │ │ │ ├── CreateNotImplemented_DiscoveryTable_DiscoveryTable.gif │ │ │ │ │ │ ├── CreatePDUManager_APDUs_APDU.gif │ │ │ │ │ │ ├── CreateProfile_Clusters_Cluster.gif │ │ │ │ │ │ ├── CreateRouter_ZDOServers_ZDOServersRouter.gif │ │ │ │ │ │ ├── CreateTrustCenter_Keys_DefaultNwkKey.gif │ │ │ │ │ │ ├── CreateTrustCenter_Keys_PreConfiguredNwkKey.gif │ │ │ │ │ │ ├── CreateTrustCenter_Keys_PreconfiguredTCLinkKey.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_ActiveEpServer_ActiveEpServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_BindRequestServer_BindRequestServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_BindUnbindServer_BindUnbindServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_DefaultServer_DefaultServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_DeviceAnnceServer_DeviceAnnceServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_ExtendedActiveEpServer_ExtendedActiveEpServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_ExtendedSimpleDescServer_ExtendedSimpleDescServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_IeeeAddrServer_IeeeAddrServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_MatchDescServer_MatchDescServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_MgmtBindServer_MgmtBindServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_MgmtLeaveServer_MgmtLeaveServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_MgmtLqiServer_MgmtLqiServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_MgmtMibIeeeServer_MgmtMibIeeeServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_MgmtNWKEnhanceUpdateServer_MgmtNWKEnhanceUpdateServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_MgmtNWKUpdateServer_MgmtNWKUpdateServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_NodeDescServer_NodeDescServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_NwkAddrServer_NwkAddrServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_PowerDescServer_PowerDescServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_SimpleDescServer_SimpleDescServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_SystemServerDiscoveryServer_SystemServerDiscoveryServer.gif │ │ │ │ │ │ ├── CreateZDOCommonServers_ZdoClient_ZdoClient.gif │ │ │ │ │ │ ├── CreateZDOCoordRouterOnlyServers_MgmtMibIeeeServer_MgmtMibIeeeServer.gif │ │ │ │ │ │ ├── CreateZDOCoordRouterOnlyServers_MgmtRtgServer_MgmtRtgServer.gif │ │ │ │ │ │ ├── CreateZDOCoordRouterOnlyServers_ParentAnnceServer_ParentAnnceServer.gif │ │ │ │ │ │ ├── CreateZDOCoordRouterOnlyServers_PermitJoiningServer_PermitJoiningServer.gif │ │ │ │ │ │ ├── CreateZDOServersCoordinator_EndDeviceBindServer_EndDeviceBindServer.gif │ │ │ │ │ │ ├── CreateZigbeeWirelessNetwork_ChildNodes_EndDevice.gif │ │ │ │ │ │ ├── CreateZigbeeWirelessNetwork_ChildNodes_Router.gif │ │ │ │ │ │ ├── CreateZigbeeWirelessNetwork_Coordinator_Coordinator.gif │ │ │ │ │ │ └── CreateZigbeeWirelessNetwork_Profiles_Profile.gif │ │ │ │ │ │ └── obj16 │ │ │ │ │ │ ├── APDU.gif │ │ │ │ │ │ ├── APDU.png │ │ │ │ │ │ ├── ActiveEpServer.gif │ │ │ │ │ │ ├── BackupBindingCache.gif │ │ │ │ │ │ ├── BackupDiscoveryCache.gif │ │ │ │ │ │ ├── BackupGroupCache.gif │ │ │ │ │ │ ├── BackupTrustCentre.gif │ │ │ │ │ │ ├── BindRequestServer.gif │ │ │ │ │ │ ├── BindUnbindServer.gif │ │ │ │ │ │ ├── BindingTable.gif │ │ │ │ │ │ ├── BindingTable.png │ │ │ │ │ │ ├── ChannelMask.gif │ │ │ │ │ │ ├── ChannelMask.png │ │ │ │ │ │ ├── ChannelPageList.gif │ │ │ │ │ │ ├── ChildNodes.gif │ │ │ │ │ │ ├── Cluster.gif │ │ │ │ │ │ ├── Cluster.png │ │ │ │ │ │ ├── Command.gif │ │ │ │ │ │ ├── ComplexDescriptor.gif │ │ │ │ │ │ ├── Coordinator.gif │ │ │ │ │ │ ├── Coordinator.png │ │ │ │ │ │ ├── DefaultNwkKey.gif │ │ │ │ │ │ ├── DefaultNwkKey.png │ │ │ │ │ │ ├── DefaultServer.gif │ │ │ │ │ │ ├── DeviceAnnceServer.gif │ │ │ │ │ │ ├── DiscoveryCache.gif │ │ │ │ │ │ ├── DiscoveryTable.gif │ │ │ │ │ │ ├── EndDevice.gif │ │ │ │ │ │ ├── EndDevice.png │ │ │ │ │ │ ├── EndDeviceBind.gif │ │ │ │ │ │ ├── EndDeviceBindServer.gif │ │ │ │ │ │ ├── EndDeviceSleeping.png │ │ │ │ │ │ ├── EndPoint.gif │ │ │ │ │ │ ├── EndPoint.png │ │ │ │ │ │ ├── ExtendedActiveEpServer.gif │ │ │ │ │ │ ├── ExtendedSimpleDescServer.gif │ │ │ │ │ │ ├── Frame.gif │ │ │ │ │ │ ├── GreenPowerSecurityTable.gif │ │ │ │ │ │ ├── GreenPowerTxQueue.gif │ │ │ │ │ │ ├── GroupTable.gif │ │ │ │ │ │ ├── GroupTable.png │ │ │ │ │ │ ├── IeeeAddrServer.gif │ │ │ │ │ │ ├── InputCluster.gif │ │ │ │ │ │ ├── InputCluster.png │ │ │ │ │ │ ├── KeyDescriptorTable.gif │ │ │ │ │ │ ├── KeyDescriptorTable.png │ │ │ │ │ │ ├── MacInterface.gif │ │ │ │ │ │ ├── MacInterfaceList.gif │ │ │ │ │ │ ├── MatchDescServer.gif │ │ │ │ │ │ ├── MgmtBindServer.gif │ │ │ │ │ │ ├── MgmtLeaveServer.gif │ │ │ │ │ │ ├── MgmtLqiServer.gif │ │ │ │ │ │ ├── MgmtMibIeeeServer.gif │ │ │ │ │ │ ├── MgmtNWKEnhanceUpdateServer.gif │ │ │ │ │ │ ├── MgmtNWKUpdateServer.gif │ │ │ │ │ │ ├── MgmtRtgServer.gif │ │ │ │ │ │ ├── NetworkLayer.gif │ │ │ │ │ │ ├── NodeDescServer.gif │ │ │ │ │ │ ├── NodeDescriptor.gif │ │ │ │ │ │ ├── NodeDescriptor.png │ │ │ │ │ │ ├── NodePowerDescriptor.gif │ │ │ │ │ │ ├── NodePowerDescriptor.png │ │ │ │ │ │ ├── NotImplemented.gif │ │ │ │ │ │ ├── NwkAddrServer.gif │ │ │ │ │ │ ├── OutputCluster.gif │ │ │ │ │ │ ├── OutputCluster.png │ │ │ │ │ │ ├── PDUManager.gif │ │ │ │ │ │ ├── PDUManager.png │ │ │ │ │ │ ├── ParentAnnceServer.gif │ │ │ │ │ │ ├── PermitJoiningServer.gif │ │ │ │ │ │ ├── PowerDescServer.gif │ │ │ │ │ │ ├── PreConfiguredNwkKey.gif │ │ │ │ │ │ ├── PreConfiguredNwkKey.png │ │ │ │ │ │ ├── PreconfiguredKey.gif │ │ │ │ │ │ ├── PreconfiguredKey.png │ │ │ │ │ │ ├── PreconfiguredTCLinkKey.gif │ │ │ │ │ │ ├── PreconfiguredTCLinkKey.png │ │ │ │ │ │ ├── PrimaryBindingCache.gif │ │ │ │ │ │ ├── PrimaryDiscoveryCache.gif │ │ │ │ │ │ ├── PrimaryGroupCache.gif │ │ │ │ │ │ ├── PrimaryTrustCentre.gif │ │ │ │ │ │ ├── Profile.gif │ │ │ │ │ │ ├── Profile.png │ │ │ │ │ │ ├── Router.gif │ │ │ │ │ │ ├── Router.png │ │ │ │ │ │ ├── SimpleDescServer.gif │ │ │ │ │ │ ├── SleepingEndDevice.png │ │ │ │ │ │ ├── SystemServerDiscoveryServer.gif │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── TrustCenter.gif │ │ │ │ │ │ ├── TrustCenter.png │ │ │ │ │ │ ├── UserDescriptor.gif │ │ │ │ │ │ ├── UserDescriptor.png │ │ │ │ │ │ ├── ZDOServer.png │ │ │ │ │ │ ├── ZDOServers.png │ │ │ │ │ │ ├── ZDOServersCoordinator.gif │ │ │ │ │ │ ├── ZDOServersEndDevice.gif │ │ │ │ │ │ ├── ZDOServersRouter.gif │ │ │ │ │ │ ├── ZdoClient.gif │ │ │ │ │ │ ├── ZigbeeWirelessNetwork.gif │ │ │ │ │ │ └── ZigbeeWirelessNetwork.png │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── jennic │ │ │ │ │ └── ZPSConfiguration │ │ │ │ │ └── provider │ │ │ │ │ ├── APDUItemProvider.java │ │ │ │ │ ├── ActiveEpServerItemProvider.java │ │ │ │ │ ├── AttributeItemProvider.java │ │ │ │ │ ├── BackupBindingCacheItemProvider.java │ │ │ │ │ ├── BackupDiscoveryCacheItemProvider.java │ │ │ │ │ ├── BackupGroupCacheItemProvider.java │ │ │ │ │ ├── BindRequestServerItemProvider.java │ │ │ │ │ ├── BindingCacheItemProvider.java │ │ │ │ │ ├── BindingTableItemProvider.java │ │ │ │ │ ├── ChannelMaskItemProvider.java │ │ │ │ │ ├── ChildNodesItemProvider.java │ │ │ │ │ ├── ClusterItemProvider.java │ │ │ │ │ ├── CommandItemProvider.java │ │ │ │ │ ├── CoordinatorItemProvider.java │ │ │ │ │ ├── DefaultNwkKeyItemProvider.java │ │ │ │ │ ├── DiscoveryCacheItemProvider.java │ │ │ │ │ ├── DiscoveryTableItemProvider.java │ │ │ │ │ ├── EndDeviceBindServerItemProvider.java │ │ │ │ │ ├── EndDeviceItemProvider.java │ │ │ │ │ ├── EndPointItemProvider.java │ │ │ │ │ ├── GreenPowerSecurityTableItemProvider.java │ │ │ │ │ ├── GreenPowerTxQueueItemProvider.java │ │ │ │ │ ├── GroupTableItemProvider.java │ │ │ │ │ ├── IeeeAddrServerItemProvider.java │ │ │ │ │ ├── InitialKeyItemProvider.java │ │ │ │ │ ├── InputClusterItemProvider.java │ │ │ │ │ ├── KeyDescriptorTableItemProvider.java │ │ │ │ │ ├── MacInterfaceItemProvider.java │ │ │ │ │ ├── MacInterfaceListItemProvider.java │ │ │ │ │ ├── MatchDescServerItemProvider.java │ │ │ │ │ ├── MgmtBindServerItemProvider.java │ │ │ │ │ ├── MgmtLeaveServerItemProvider.java │ │ │ │ │ ├── MgmtLqiServerItemProvider.java │ │ │ │ │ ├── MgmtMibIeeeServerItemProvider.java │ │ │ │ │ ├── MgmtNWKEnhanceUpdateServerItemProvider.java │ │ │ │ │ ├── MgmtNWKUpdateServerItemProvider.java │ │ │ │ │ ├── MgmtRtgServerItemProvider.java │ │ │ │ │ ├── NamedObjectItemProvider.java │ │ │ │ │ ├── NodeDescServerItemProvider.java │ │ │ │ │ ├── NodeDescriptorItemProvider.java │ │ │ │ │ ├── NodeItemProvider.java │ │ │ │ │ ├── NodePowerDescriptorItemProvider.java │ │ │ │ │ ├── NotImplementedItemProvider.java │ │ │ │ │ ├── NwkAddrServerItemProvider.java │ │ │ │ │ ├── NwkKeyItemProvider.java │ │ │ │ │ ├── OutputClusterItemProvider.java │ │ │ │ │ ├── PDUManagerItemProvider.java │ │ │ │ │ ├── ParentAnnceServerItemProvider.java │ │ │ │ │ ├── PermitJoiningServerItemProvider.java │ │ │ │ │ ├── PowerDescServerItemProvider.java │ │ │ │ │ ├── PreConfiguredNwkKeyItemProvider.java │ │ │ │ │ ├── PreconfiguredKeyItemProvider.java │ │ │ │ │ ├── PreconfiguredTCLinkKeyItemProvider.java │ │ │ │ │ ├── PrimaryBindingCacheItemProvider.java │ │ │ │ │ ├── PrimaryDiscoveryCacheItemProvider.java │ │ │ │ │ ├── PrimaryGroupCacheItemProvider.java │ │ │ │ │ ├── ProfileItemProvider.java │ │ │ │ │ ├── RouterItemProvider.java │ │ │ │ │ ├── SimpleDescServerItemProvider.java │ │ │ │ │ ├── SystemServerDiscoveryServerItemProvider.java │ │ │ │ │ ├── TCKeyItemProvider.java │ │ │ │ │ ├── TrustCenterItemProvider.java │ │ │ │ │ ├── UserDescriptorItemProvider.java │ │ │ │ │ ├── ZDOAlwaysOnServersItemProvider.java │ │ │ │ │ ├── ZDOClientServerItemProvider.java │ │ │ │ │ ├── ZDOCommonServersItemProvider.java │ │ │ │ │ ├── ZDOCoordRouterOnlyServersItemProvider.java │ │ │ │ │ ├── ZDOServersCoordinatorItemProvider.java │ │ │ │ │ ├── ZDOServersEndDeviceItemProvider.java │ │ │ │ │ ├── ZDOServersRouterItemProvider.java │ │ │ │ │ ├── ZPSConfigEditPlugin.java │ │ │ │ │ ├── ZPSConfigurationItemProviderAdapterFactory.java │ │ │ │ │ ├── ZdoClientItemProvider.java │ │ │ │ │ └── ZigbeeWirelessNetworkItemProvider.java │ │ │ ├── com.jennic.zps.configeditor.editor │ │ │ │ ├── .classpath │ │ │ │ ├── icons │ │ │ │ │ └── full │ │ │ │ │ │ ├── obj16 │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── ZPSConfigurationModelFile.gif │ │ │ │ │ │ └── ZPSConfigurationModelFile.png │ │ │ │ │ │ └── wizban │ │ │ │ │ │ ├── NewZPSConfiguration.gif │ │ │ │ │ │ └── NewZPSConfiguration.png │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── jennic │ │ │ │ │ ├── ZPSConfiguration │ │ │ │ │ └── presentation │ │ │ │ │ │ ├── ZPSConfigEditorPlugin.java │ │ │ │ │ │ ├── ZPSConfigurationActionBarContributor.java │ │ │ │ │ │ ├── ZPSConfigurationEditor.java │ │ │ │ │ │ ├── ZPSConfigurationModelWizard.java │ │ │ │ │ │ └── ZPSPropertySource.java │ │ │ │ │ └── zps │ │ │ │ │ ├── jface │ │ │ │ │ └── action │ │ │ │ │ │ ├── JennicFilterAction.java │ │ │ │ │ │ ├── jennic16.png │ │ │ │ │ │ └── jennic24.png │ │ │ │ │ └── swt │ │ │ │ │ └── hexdec │ │ │ │ │ ├── HexDec.java │ │ │ │ │ ├── HexDecCellEditor.java │ │ │ │ │ └── HexDecComponent.java │ │ │ └── com.jennic.zps.configeditor │ │ │ │ ├── .classpath │ │ │ │ ├── model │ │ │ │ ├── ZPSConfig.ecore │ │ │ │ ├── ZPSConfig.ecorediag │ │ │ │ ├── ZPSConfig.genmodel │ │ │ │ ├── ZPSConfigurationXML.xsd │ │ │ │ └── ZPSConfigurationXML.xsd2ecore │ │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── jennic │ │ │ │ └── ZPSConfiguration │ │ │ │ ├── APDU.java │ │ │ │ ├── ActiveEpServer.java │ │ │ │ ├── AlwaysOnNode.java │ │ │ │ ├── Attribute.java │ │ │ │ ├── BackupBindingCache.java │ │ │ │ ├── BackupDiscoveryCache.java │ │ │ │ ├── BackupGroupCache.java │ │ │ │ ├── BindRequestServer.java │ │ │ │ ├── BindUnbindServer.java │ │ │ │ ├── BindingCache.java │ │ │ │ ├── BindingTable.java │ │ │ │ ├── ChannelMask.java │ │ │ │ ├── ChannelPageList.java │ │ │ │ ├── ChildNodes.java │ │ │ │ ├── Cluster.java │ │ │ │ ├── Command.java │ │ │ │ ├── ComplexDescriptor.java │ │ │ │ ├── Coordinator.java │ │ │ │ ├── DefaultNwkKey.java │ │ │ │ ├── DefaultServer.java │ │ │ │ ├── DeviceAnnceServer.java │ │ │ │ ├── DiscoveryCache.java │ │ │ │ ├── DiscoveryTable.java │ │ │ │ ├── EndDevice.java │ │ │ │ ├── EndDeviceBindServer.java │ │ │ │ ├── EndPoint.java │ │ │ │ ├── ExtendedActiveEpServer.java │ │ │ │ ├── ExtendedSimpleDescServer.java │ │ │ │ ├── FrequencyBands.java │ │ │ │ ├── GreenPowerSecurityTable.java │ │ │ │ ├── GreenPowerTxQueue.java │ │ │ │ ├── GroupTable.java │ │ │ │ ├── IeeeAddrServer.java │ │ │ │ ├── InitialKey.java │ │ │ │ ├── InputCluster.java │ │ │ │ ├── KeyDescriptorTable.java │ │ │ │ ├── MacInterface.java │ │ │ │ ├── MacInterfaceList.java │ │ │ │ ├── MatchDescServer.java │ │ │ │ ├── MgmtBindServer.java │ │ │ │ ├── MgmtLeaveServer.java │ │ │ │ ├── MgmtLqiServer.java │ │ │ │ ├── MgmtMibIeeeServer.java │ │ │ │ ├── MgmtNWKEnhanceUpdateServer.java │ │ │ │ ├── MgmtNWKUpdateServer.java │ │ │ │ ├── MgmtRtgServer.java │ │ │ │ ├── NamedObject.java │ │ │ │ ├── NetworkSelectionTypes.java │ │ │ │ ├── Node.java │ │ │ │ ├── NodeDescServer.java │ │ │ │ ├── NodeDescriptor.java │ │ │ │ ├── NodeLogicalType.java │ │ │ │ ├── NodePowerDescriptor.java │ │ │ │ ├── NotImplemented.java │ │ │ │ ├── NwkAddrServer.java │ │ │ │ ├── NwkKey.java │ │ │ │ ├── OutputCluster.java │ │ │ │ ├── PDUManager.java │ │ │ │ ├── ParentAnnceServer.java │ │ │ │ ├── PermitJoiningServer.java │ │ │ │ ├── PowerDescServer.java │ │ │ │ ├── PowerModes.java │ │ │ │ ├── PowerSources.java │ │ │ │ ├── PreConfiguredNwkKey.java │ │ │ │ ├── PreconfiguredKey.java │ │ │ │ ├── PreconfiguredTCLinkKey.java │ │ │ │ ├── PrimaryBindingCache.java │ │ │ │ ├── PrimaryDiscoveryCache.java │ │ │ │ ├── PrimaryGroupCache.java │ │ │ │ ├── Profile.java │ │ │ │ ├── RadioType.java │ │ │ │ ├── Router.java │ │ │ │ ├── SimpleDescServer.java │ │ │ │ ├── SystemServerDiscoveryServer.java │ │ │ │ ├── TCKey.java │ │ │ │ ├── TrustCenter.java │ │ │ │ ├── UserDescriptor.java │ │ │ │ ├── ZDOClientServer.java │ │ │ │ ├── ZDOCommonServers.java │ │ │ │ ├── ZDOCoordRouterOnlyServers.java │ │ │ │ ├── ZDOServer.java │ │ │ │ ├── ZDOServersCoordinator.java │ │ │ │ ├── ZDOServersEndDevice.java │ │ │ │ ├── ZDOServersRouter.java │ │ │ │ ├── ZPSConfigurationFactory.java │ │ │ │ ├── ZPSConfigurationPackage.java │ │ │ │ ├── ZdoClient.java │ │ │ │ ├── ZigbeeWirelessNetwork.java │ │ │ │ ├── impl │ │ │ │ ├── APDUImpl.java │ │ │ │ ├── ActiveEpServerImpl.java │ │ │ │ ├── AlwaysOnNodeImpl.java │ │ │ │ ├── BackupBindingCacheImpl.java │ │ │ │ ├── BackupDiscoveryCacheImpl.java │ │ │ │ ├── BackupGroupCacheImpl.java │ │ │ │ ├── BindRequestServerImpl.java │ │ │ │ ├── BindUnbindServerImpl.java │ │ │ │ ├── BindingCacheImpl.java │ │ │ │ ├── BindingTableImpl.java │ │ │ │ ├── ChannelMaskImpl.java │ │ │ │ ├── ChildNodesImpl.java │ │ │ │ ├── ClusterImpl.java │ │ │ │ ├── ComplexDescriptorImpl.java │ │ │ │ ├── CoordinatorImpl.java │ │ │ │ ├── DefaultNwkKeyImpl.java │ │ │ │ ├── DefaultServerImpl.java │ │ │ │ ├── DeviceAnnceServerImpl.java │ │ │ │ ├── DiscoveryCacheImpl.java │ │ │ │ ├── DiscoveryTableImpl.java │ │ │ │ ├── EndDeviceBindServerImpl.java │ │ │ │ ├── EndDeviceImpl.java │ │ │ │ ├── EndPointImpl.java │ │ │ │ ├── ExtendedActiveEpServerImpl.java │ │ │ │ ├── ExtendedSimpleDescServerImpl.java │ │ │ │ ├── GreenPowerSecurityTableImpl.java │ │ │ │ ├── GreenPowerTxQueueImpl.java │ │ │ │ ├── GroupTableImpl.java │ │ │ │ ├── IeeeAddrServerImpl.java │ │ │ │ ├── InputClusterImpl.java │ │ │ │ ├── KeyDescriptorTableImpl.java │ │ │ │ ├── MacInterfaceImpl.java │ │ │ │ ├── MacInterfaceListImpl.java │ │ │ │ ├── MatchDescServerImpl.java │ │ │ │ ├── MgmtBindServerImpl.java │ │ │ │ ├── MgmtLeaveServerImpl.java │ │ │ │ ├── MgmtLqiServerImpl.java │ │ │ │ ├── MgmtMibIeeeServerImpl.java │ │ │ │ ├── MgmtNWKEnhanceUpdateServerImpl.java │ │ │ │ ├── MgmtNWKUpdateServerImpl.java │ │ │ │ ├── MgmtRtgServerImpl.java │ │ │ │ ├── NamedObjectImpl.java │ │ │ │ ├── NodeDescServerImpl.java │ │ │ │ ├── NodeDescriptorImpl.java │ │ │ │ ├── NodeImpl.java │ │ │ │ ├── NodePowerDescriptorImpl.java │ │ │ │ ├── NotImplementedImpl.java │ │ │ │ ├── NwkAddrServerImpl.java │ │ │ │ ├── NwkKeyImpl.java │ │ │ │ ├── OutputClusterImpl.java │ │ │ │ ├── PDUManagerImpl.java │ │ │ │ ├── ParentAnnceServerImpl.java │ │ │ │ ├── PermitJoiningServerImpl.java │ │ │ │ ├── PowerDescServerImpl.java │ │ │ │ ├── PreConfiguredNwkKeyImpl.java │ │ │ │ ├── PreconfiguredKeyImpl.java │ │ │ │ ├── PreconfiguredTCLinkKeyImpl.java │ │ │ │ ├── PrimaryBindingCacheImpl.java │ │ │ │ ├── PrimaryDiscoveryCacheImpl.java │ │ │ │ ├── PrimaryGroupCacheImpl.java │ │ │ │ ├── ProfileImpl.java │ │ │ │ ├── RouterImpl.java │ │ │ │ ├── SimpleDescServerImpl.java │ │ │ │ ├── SystemServerDiscoveryServerImpl.java │ │ │ │ ├── TCKeyImpl.java │ │ │ │ ├── TrustCenterImpl.java │ │ │ │ ├── UserDescriptorImpl.java │ │ │ │ ├── ZDOClientServerImpl.java │ │ │ │ ├── ZDOCommonServersImpl.java │ │ │ │ ├── ZDOCoordRouterOnlyServersImpl.java │ │ │ │ ├── ZDOServersCoordinatorImpl.java │ │ │ │ ├── ZDOServersEndDeviceImpl.java │ │ │ │ ├── ZDOServersRouterImpl.java │ │ │ │ ├── ZPSConfigurationFactoryImpl.java │ │ │ │ ├── ZPSConfigurationPackageImpl.java │ │ │ │ ├── ZdoClientImpl.java │ │ │ │ └── ZigbeeWirelessNetworkImpl.java │ │ │ │ ├── util │ │ │ │ ├── ZPSConfigurationAdapterFactory.java │ │ │ │ ├── ZPSConfigurationResourceFactoryImpl.java │ │ │ │ ├── ZPSConfigurationResourceImpl.java │ │ │ │ ├── ZPSConfigurationSwitch.java │ │ │ │ └── ZPSConfigurationXMLProcessor.java │ │ │ │ └── validation │ │ │ │ ├── APDUValidator.java │ │ │ │ ├── ActiveEpServerValidator.java │ │ │ │ ├── AlwaysOnNodeValidator.java │ │ │ │ ├── AttributeValidator.java │ │ │ │ ├── BackupBindingCacheValidator.java │ │ │ │ ├── BackupDiscoveryCacheValidator.java │ │ │ │ ├── BackupGroupCacheValidator.java │ │ │ │ ├── BindRequestServerValidator.java │ │ │ │ ├── BindUnbindServerValidator.java │ │ │ │ ├── BindingCacheValidator.java │ │ │ │ ├── BindingTableValidator.java │ │ │ │ ├── ChannelMaskValidator.java │ │ │ │ ├── ChildNodesValidator.java │ │ │ │ ├── ClusterValidator.java │ │ │ │ ├── CommandValidator.java │ │ │ │ ├── ComplexDescriptorValidator.java │ │ │ │ ├── CoordinatorValidator.java │ │ │ │ ├── DefaultServerValidator.java │ │ │ │ ├── DeviceAnnceServerValidator.java │ │ │ │ ├── DiscoveryCacheValidator.java │ │ │ │ ├── DiscoveryTableValidator.java │ │ │ │ ├── EndDeviceBindServerValidator.java │ │ │ │ ├── EndDeviceValidator.java │ │ │ │ ├── EndPointValidator.java │ │ │ │ ├── ExtendedActiveEpServerValidator.java │ │ │ │ ├── ExtendedSimpleDescServerValidator.java │ │ │ │ ├── GroupTableValidator.java │ │ │ │ ├── IeeeAddrServerValidator.java │ │ │ │ ├── InputClusterValidator.java │ │ │ │ ├── MatchDescServerValidator.java │ │ │ │ ├── MgmtLeaveServerValidator.java │ │ │ │ ├── MgmtLqiServerValidator.java │ │ │ │ ├── MgmtNWKUpdateServerValidator.java │ │ │ │ ├── MgmtRtgServerValidator.java │ │ │ │ ├── NamedObjectValidator.java │ │ │ │ ├── NodeDescServerValidator.java │ │ │ │ ├── NodeDescriptorValidator.java │ │ │ │ ├── NodePowerDescriptorValidator.java │ │ │ │ ├── NodeValidator.java │ │ │ │ ├── NotImplementedValidator.java │ │ │ │ ├── NwkAddrServerValidator.java │ │ │ │ ├── OutputClusterValidator.java │ │ │ │ ├── PDUManagerValidator.java │ │ │ │ ├── PermitJoiningServerValidator.java │ │ │ │ ├── PowerDescServerValidator.java │ │ │ │ ├── PrimaryBindingCacheValidator.java │ │ │ │ ├── PrimaryDiscoveryCacheValidator.java │ │ │ │ ├── PrimaryGroupCacheValidator.java │ │ │ │ ├── ProfileValidator.java │ │ │ │ ├── RouterValidator.java │ │ │ │ ├── SimpleDescServerValidator.java │ │ │ │ ├── SystemServerDiscoveryServerValidator.java │ │ │ │ ├── TrustCenterValidator.java │ │ │ │ ├── UserDescriptorValidator.java │ │ │ │ ├── ZDOClientServerValidator.java │ │ │ │ ├── ZDOCommonServersValidator.java │ │ │ │ ├── ZDOServersCoordinatorValidator.java │ │ │ │ ├── ZDOServersEndDeviceValidator.java │ │ │ │ ├── ZDOServersRouterValidator.java │ │ │ │ ├── ZdoClientValidator.java │ │ │ │ └── ZigbeeWirelessNetworkValidator.java │ │ └── com.nxp.sdk.update_site │ │ │ ├── artifacts.jar │ │ │ ├── content.jar │ │ │ ├── features │ │ │ └── com.jennic.sdk.zbpro.external.feature_2.1.2.jar │ │ │ ├── index.html │ │ │ ├── plugins │ │ │ ├── com.jennic.zps.configeditor.edit_2.0.3.jar │ │ │ ├── com.jennic.zps.configeditor.editor_2.0.3.jar │ │ │ └── com.jennic.zps.configeditor_2.0.3.jar │ │ │ ├── site.xml │ │ │ └── web │ │ │ ├── site.css │ │ │ └── site.xsl │ │ ├── JET │ │ └── win │ │ │ ├── JET.exe │ │ │ ├── MSVCR71.dll │ │ │ └── w9xpopen.exe │ │ ├── PDUMConfig │ │ └── bin │ │ │ ├── MSVCR71.dll │ │ │ ├── PDUMConfig.exe │ │ │ └── w9xpopen.exe │ │ ├── ZPSConfig │ │ └── bin │ │ │ ├── MSVCR71.dll │ │ │ ├── ZPSConfig.exe │ │ │ └── w9xpopen.exe │ │ └── Zigbee3ConfigEditor │ │ ├── .eclipseproduct │ │ ├── Zigbee3ConfigEditor.exe │ │ ├── configuration │ │ ├── config.ini │ │ ├── org.eclipse.core.runtime │ │ │ ├── .contributions.3 │ │ │ ├── .contributors.3 │ │ │ ├── .extraData.3 │ │ │ ├── .mainData.3 │ │ │ ├── .manager │ │ │ │ ├── .fileTable.10 │ │ │ │ ├── .fileTable.9 │ │ │ │ └── .fileTableLock │ │ │ ├── .namespaces.3 │ │ │ ├── .orphans.3 │ │ │ └── .table.3 │ │ ├── org.eclipse.equinox.app │ │ │ └── .manager │ │ │ │ └── .fileTableLock │ │ ├── org.eclipse.equinox.launcher │ │ │ └── com.zpsconfig.zigbee3.rcp.zpscfgeditor_1.0.0 │ │ │ │ └── splash.bmp │ │ └── org.eclipse.osgi │ │ │ ├── .bundledata.3 │ │ │ ├── .lazy.3 │ │ │ ├── .manager │ │ │ ├── .fileTable.8 │ │ │ ├── .fileTable.9 │ │ │ └── .fileTableLock │ │ │ ├── .state.3 │ │ │ ├── bundles │ │ │ ├── 3 │ │ │ │ └── 1 │ │ │ │ │ └── .cp │ │ │ │ │ └── icons │ │ │ │ │ └── full │ │ │ │ │ ├── ctool16 │ │ │ │ │ ├── CreateAlwaysOnNode_TrustCenter_TrustCenter.gif │ │ │ │ │ ├── CreateCoordinator_ZDOServers_ZDOServersCoordinator.gif │ │ │ │ │ ├── CreateEndDevice_ZDOServers_ZDOServersEndDevice.gif │ │ │ │ │ ├── CreateEndPoint_InputClusters_InputCluster.gif │ │ │ │ │ ├── CreateEndPoint_OutputClusters_OutputCluster.gif │ │ │ │ │ ├── CreateKeyDescriptorTable_PreconfiguredKey_PreconfiguredKey.gif │ │ │ │ │ ├── CreateMacInterfaceList_MacInterface_MacInterface.gif │ │ │ │ │ ├── CreateNode_BindingTable_BindingTable.gif │ │ │ │ │ ├── CreateNode_ChannelMask_ChannelMask.gif │ │ │ │ │ ├── CreateNode_Endpoints_EndPoint.gif │ │ │ │ │ ├── CreateNode_GreenPowerSecurityTable_GreenPowerSecurityTable.gif │ │ │ │ │ ├── CreateNode_GreenPowerTxQueue_GreenPowerTxQueue.gif │ │ │ │ │ ├── CreateNode_GroupTable_GroupTable.gif │ │ │ │ │ ├── CreateNode_KeyDescriptorTable_KeyDescriptorTable.gif │ │ │ │ │ ├── CreateNode_MacInterfaceList_MacInterfaceList.gif │ │ │ │ │ ├── CreateNode_NodeDescriptor_NodeDescriptor.gif │ │ │ │ │ ├── CreateNode_NodePowerDescriptor_NodePowerDescriptor.gif │ │ │ │ │ ├── CreateNode_PDUConfiguration_PDUManager.gif │ │ │ │ │ ├── CreateNode_UserDescriptor_UserDescriptor.gif │ │ │ │ │ ├── CreatePDUManager_APDUs_APDU.gif │ │ │ │ │ ├── CreateProfile_Clusters_Cluster.gif │ │ │ │ │ ├── CreateRouter_ZDOServers_ZDOServersRouter.gif │ │ │ │ │ ├── CreateTrustCenter_Keys_DefaultNwkKey.gif │ │ │ │ │ ├── CreateTrustCenter_Keys_PreConfiguredNwkKey.gif │ │ │ │ │ ├── CreateTrustCenter_Keys_PreconfiguredTCLinkKey.gif │ │ │ │ │ ├── CreateZDOCommonServers_ActiveEpServer_ActiveEpServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_BindRequestServer_BindRequestServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_BindUnbindServer_BindUnbindServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_DefaultServer_DefaultServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_DeviceAnnceServer_DeviceAnnceServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_ExtendedActiveEpServer_ExtendedActiveEpServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_ExtendedSimpleDescServer_ExtendedSimpleDescServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_IeeeAddrServer_IeeeAddrServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_MatchDescServer_MatchDescServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_MgmtBindServer_MgmtBindServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_MgmtLeaveServer_MgmtLeaveServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_MgmtLqiServer_MgmtLqiServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_MgmtNWKEnhanceUpdateServer_MgmtNWKEnhanceUpdateServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_MgmtNWKUpdateServer_MgmtNWKUpdateServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_NodeDescServer_NodeDescServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_NwkAddrServer_NwkAddrServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_PowerDescServer_PowerDescServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_SimpleDescServer_SimpleDescServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_SystemServerDiscoveryServer_SystemServerDiscoveryServer.gif │ │ │ │ │ ├── CreateZDOCommonServers_ZdoClient_ZdoClient.gif │ │ │ │ │ ├── CreateZDOCoordRouterOnlyServers_MgmtMibIeeeServer_MgmtMibIeeeServer.gif │ │ │ │ │ ├── CreateZDOCoordRouterOnlyServers_MgmtRtgServer_MgmtRtgServer.gif │ │ │ │ │ ├── CreateZDOCoordRouterOnlyServers_ParentAnnceServer_ParentAnnceServer.gif │ │ │ │ │ ├── CreateZDOCoordRouterOnlyServers_PermitJoiningServer_PermitJoiningServer.gif │ │ │ │ │ ├── CreateZDOServersCoordinator_EndDeviceBindServer_EndDeviceBindServer.gif │ │ │ │ │ ├── CreateZigbeeWirelessNetwork_ChildNodes_EndDevice.gif │ │ │ │ │ ├── CreateZigbeeWirelessNetwork_ChildNodes_Router.gif │ │ │ │ │ ├── CreateZigbeeWirelessNetwork_Coordinator_Coordinator.gif │ │ │ │ │ └── CreateZigbeeWirelessNetwork_Profiles_Profile.gif │ │ │ │ │ └── obj16 │ │ │ │ │ ├── APDU.png │ │ │ │ │ ├── BindingTable.png │ │ │ │ │ ├── ChannelMask.png │ │ │ │ │ ├── Cluster.png │ │ │ │ │ ├── Coordinator.png │ │ │ │ │ ├── DefaultNwkKey.png │ │ │ │ │ ├── EndDevice.png │ │ │ │ │ ├── EndDeviceSleeping.png │ │ │ │ │ ├── EndPoint.png │ │ │ │ │ ├── GreenPowerSecurityTable.gif │ │ │ │ │ ├── GreenPowerTxQueue.gif │ │ │ │ │ ├── GroupTable.png │ │ │ │ │ ├── InputCluster.png │ │ │ │ │ ├── KeyDescriptorTable.png │ │ │ │ │ ├── NodeDescriptor.png │ │ │ │ │ ├── NodePowerDescriptor.png │ │ │ │ │ ├── OutputCluster.png │ │ │ │ │ ├── PDUManager.png │ │ │ │ │ ├── PreconfiguredTCLinkKey.png │ │ │ │ │ ├── Profile.png │ │ │ │ │ ├── Router.png │ │ │ │ │ ├── TrustCenter.png │ │ │ │ │ ├── UserDescriptor.png │ │ │ │ │ ├── ZDOServer.png │ │ │ │ │ ├── ZDOServers.png │ │ │ │ │ └── ZigbeeWirelessNetwork.png │ │ │ ├── 4 │ │ │ │ └── 1 │ │ │ │ │ └── .cp │ │ │ │ │ └── icons │ │ │ │ │ └── full │ │ │ │ │ └── obj16 │ │ │ │ │ ├── ZPSConfigurationModelFile.gif │ │ │ │ │ └── ZPSConfigurationModelFile.png │ │ │ ├── 5 │ │ │ │ └── 1 │ │ │ │ │ └── .cp │ │ │ │ │ └── icons │ │ │ │ │ ├── nxp.gif │ │ │ │ │ ├── open.gif │ │ │ │ │ └── perspective.gif │ │ │ ├── 47 │ │ │ │ └── 1 │ │ │ │ │ └── .cp │ │ │ │ │ └── icons │ │ │ │ │ └── full │ │ │ │ │ └── obj16 │ │ │ │ │ ├── BooleanValue.gif │ │ │ │ │ ├── GenericValue.gif │ │ │ │ │ ├── IntegralValue.gif │ │ │ │ │ └── ResourceSet.gif │ │ │ ├── 48 │ │ │ │ └── 1 │ │ │ │ │ └── .cp │ │ │ │ │ └── icons │ │ │ │ │ └── full │ │ │ │ │ ├── dlcl16 │ │ │ │ │ └── LocateValue.gif │ │ │ │ │ └── elcl16 │ │ │ │ │ └── LocateValue.gif │ │ │ ├── 64 │ │ │ │ └── 1 │ │ │ │ │ └── .cp │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── jface │ │ │ │ │ └── action │ │ │ │ │ └── images │ │ │ │ │ └── stop.gif │ │ │ ├── 70 │ │ │ │ └── 1 │ │ │ │ │ └── .cp │ │ │ │ │ └── icons │ │ │ │ │ └── full │ │ │ │ │ ├── dtool16 │ │ │ │ │ ├── pin_editor.gif │ │ │ │ │ └── save_edit.gif │ │ │ │ │ ├── elcl16 │ │ │ │ │ └── trash.gif │ │ │ │ │ ├── etool16 │ │ │ │ │ ├── copy_edit.gif │ │ │ │ │ ├── cut_edit.gif │ │ │ │ │ ├── delete_edit.gif │ │ │ │ │ ├── paste_edit.gif │ │ │ │ │ ├── pin_editor.gif │ │ │ │ │ ├── redo_edit.gif │ │ │ │ │ ├── save_edit.gif │ │ │ │ │ ├── saveall_edit.gif │ │ │ │ │ ├── saveas_edit.gif │ │ │ │ │ └── undo_edit.gif │ │ │ │ │ ├── eview16 │ │ │ │ │ ├── defaultview_misc.gif │ │ │ │ │ └── new_persp.gif │ │ │ │ │ ├── obj16 │ │ │ │ │ ├── error_tsk.gif │ │ │ │ │ ├── generic_element.gif │ │ │ │ │ ├── signed_no_tbl.gif │ │ │ │ │ ├── signed_unkn_tbl.gif │ │ │ │ │ └── signed_yes_tbl.gif │ │ │ │ │ └── progress │ │ │ │ │ ├── progress_error.gif │ │ │ │ │ ├── progress_none.gif │ │ │ │ │ └── progress_ok.gif │ │ │ ├── 71 │ │ │ │ └── 1 │ │ │ │ │ └── .cp │ │ │ │ │ └── icons │ │ │ │ │ └── full │ │ │ │ │ ├── dtool16 │ │ │ │ │ ├── last_edit_pos.gif │ │ │ │ │ ├── next_nav.gif │ │ │ │ │ └── prev_nav.gif │ │ │ │ │ ├── etool16 │ │ │ │ │ ├── last_edit_pos.gif │ │ │ │ │ ├── next_nav.gif │ │ │ │ │ └── prev_nav.gif │ │ │ │ │ └── obj16 │ │ │ │ │ └── file_obj.gif │ │ │ ├── 73 │ │ │ │ └── 1 │ │ │ │ │ └── .cp │ │ │ │ │ └── icons │ │ │ │ │ └── full │ │ │ │ │ └── etool16 │ │ │ │ │ ├── newfile_wiz.gif │ │ │ │ │ ├── newfolder_wiz.gif │ │ │ │ │ └── newprj_wiz.gif │ │ │ ├── 75 │ │ │ │ └── 1 │ │ │ │ │ └── .cp │ │ │ │ │ └── icons │ │ │ │ │ └── full │ │ │ │ │ ├── dlcl16 │ │ │ │ │ └── defaults_ps.gif │ │ │ │ │ ├── elcl16 │ │ │ │ │ ├── defaults_ps.gif │ │ │ │ │ ├── filter_ps.gif │ │ │ │ │ ├── new.gif │ │ │ │ │ └── tree_mode.gif │ │ │ │ │ └── eview16 │ │ │ │ │ └── prop_ps.gif │ │ │ ├── 77 │ │ │ │ └── 1 │ │ │ │ │ └── .cp │ │ │ │ │ └── icons │ │ │ │ │ └── full │ │ │ │ │ ├── dtool16 │ │ │ │ │ ├── block_selection_mode.gif │ │ │ │ │ └── show_whitespace_chars.gif │ │ │ │ │ └── etool16 │ │ │ │ │ ├── block_selection_mode.gif │ │ │ │ │ └── show_whitespace_chars.gif │ │ │ ├── 82 │ │ │ │ └── 1 │ │ │ │ │ └── .cp │ │ │ │ │ └── os │ │ │ │ │ └── win32 │ │ │ │ │ └── x86 │ │ │ │ │ └── localfile_1_0_0.dll │ │ │ └── 87 │ │ │ │ └── 1 │ │ │ │ └── .cp │ │ │ │ ├── swt-gdip-win32-4335.dll │ │ │ │ └── swt-win32-4335.dll │ │ │ └── manifests │ │ │ └── com.zpsconfig.zigbee3.rcp.zpscfgeditor_1.0.0.MF │ │ ├── plugins │ │ ├── com.ibm.icu_50.1.1.v201304230130.jar │ │ ├── com.jennic.zps.configeditor.edit_1.4.1.jar │ │ ├── com.jennic.zps.configeditor.editor_1.4.1.jar │ │ ├── com.jennic.zps.configeditor_1.4.1.jar │ │ ├── com.zpsconfig.zigbee3.rcp.zpscfgeditor_1.0.0.jar │ │ ├── javax.annotation_1.1.0.v201209060031.jar │ │ ├── javax.inject_1.0.0.v20091030.jar │ │ ├── javax.xml_1.3.4.v201005080400.jar │ │ ├── org.apache.batik.css_1.6.0.v201011041432.jar │ │ ├── org.apache.batik.util.gui_1.6.0.v201011041432.jar │ │ ├── org.apache.batik.util_1.6.0.v201011041432.jar │ │ ├── org.eclipse.compare.core_3.5.300.v20130514-1224.jar │ │ ├── org.eclipse.core.commands_3.6.100.v20130515-1857.jar │ │ ├── org.eclipse.core.contenttype_3.4.200.v20130326-1255.jar │ │ ├── org.eclipse.core.databinding.observable_1.4.1.v20130515-1857.jar │ │ ├── org.eclipse.core.databinding.property_1.4.200.v20130515-1857.jar │ │ ├── org.eclipse.core.databinding_1.4.1.v20130515-1857.jar │ │ ├── org.eclipse.core.expressions_3.4.501.v20131118-1915.jar │ │ ├── org.eclipse.core.filebuffers_3.5.300.v20130225-1821.jar │ │ ├── org.eclipse.core.filesystem.win32.x86_1.4.0.v20121112-0948.jar │ │ ├── org.eclipse.core.filesystem_1.4.0.v20130514-1240.jar │ │ ├── org.eclipse.core.jobs_3.5.300.v20130429-1813.jar │ │ ├── org.eclipse.core.resources.win32.x86_3.5.100.v20100505-1741.jar │ │ ├── org.eclipse.core.resources_3.8.101.v20130717-0806.jar │ │ ├── org.eclipse.core.runtime.compatibility.registry_3.5.200.v20130514-1256 │ │ │ ├── .api_description │ │ │ ├── META-INF │ │ │ │ ├── ECLIPSE_.RSA │ │ │ │ ├── ECLIPSE_.SF │ │ │ │ └── MANIFEST.MF │ │ │ ├── about.html │ │ │ ├── fragment.properties │ │ │ └── runtime_registry_compatibility.jar │ │ ├── org.eclipse.core.runtime_3.9.100.v20131218-1515.jar │ │ ├── org.eclipse.e4.core.commands_0.10.2.v20130515-1857.jar │ │ ├── org.eclipse.e4.core.contexts_1.3.1.v20130905-0905.jar │ │ ├── org.eclipse.e4.core.di.extensions_0.11.100.v20130514-1256.jar │ │ ├── org.eclipse.e4.core.di_1.3.0.v20130514-1256.jar │ │ ├── org.eclipse.e4.core.services_1.1.0.v20130515-1343.jar │ │ ├── org.eclipse.e4.ui.bindings_0.10.102.v20140117-1939.jar │ │ ├── org.eclipse.e4.ui.css.core_0.10.100.v20130515-1857.jar │ │ ├── org.eclipse.e4.ui.css.swt.theme_0.9.100.v20130515-1857.jar │ │ ├── org.eclipse.e4.ui.css.swt_0.11.0.v20130515-1857.jar │ │ ├── org.eclipse.e4.ui.di_1.0.0.v20130515-1857.jar │ │ ├── org.eclipse.e4.ui.model.workbench_1.0.1.v20131118-1956.jar │ │ ├── org.eclipse.e4.ui.services_1.0.1.v20131118-1940.jar │ │ ├── org.eclipse.e4.ui.widgets_1.0.0.v20130515-1857.jar │ │ ├── org.eclipse.e4.ui.workbench.addons.swt_1.0.2.v20131129-1621.jar │ │ ├── org.eclipse.e4.ui.workbench.renderers.swt_0.11.2.v20140205-1834.jar │ │ ├── org.eclipse.e4.ui.workbench.swt_0.12.2.v20140117-1939.jar │ │ ├── org.eclipse.e4.ui.workbench3_0.12.0.v20130515-1857.jar │ │ ├── org.eclipse.e4.ui.workbench_1.0.2.v20131202-1739.jar │ │ ├── org.eclipse.emf.cdo.ecore.retrofit_4.2.1.v20140218-1830.jar │ │ ├── org.eclipse.emf.common.ui_2.9.0.v20150123-0452.jar │ │ ├── org.eclipse.emf.common_2.10.1.v20150123-0348.jar │ │ ├── org.eclipse.emf.ecore.change_2.10.0.v20150123-0348.jar │ │ ├── org.eclipse.emf.ecore.xmi_2.10.2.v20150123-0348.jar │ │ ├── org.eclipse.emf.ecore_2.10.2.v20150123-0348.jar │ │ ├── org.eclipse.emf.edit.ui_2.10.2.v20150123-0452.jar │ │ ├── org.eclipse.emf.edit_2.10.1.v20150123-0452.jar │ │ ├── org.eclipse.equinox.app_1.3.100.v20130327-1442.jar │ │ ├── org.eclipse.equinox.bidi_0.10.0.v20130327-1442.jar │ │ ├── org.eclipse.equinox.common_3.6.200.v20130402-1505.jar │ │ ├── org.eclipse.equinox.ds_1.4.101.v20130813-1853.jar │ │ ├── org.eclipse.equinox.event_1.3.0.v20130327-1442.jar │ │ ├── org.eclipse.equinox.launcher.win32.win32.x86_1.1.200.v20140116-2212 │ │ │ ├── META-INF │ │ │ │ ├── ECLIPSE_.RSA │ │ │ │ ├── ECLIPSE_.SF │ │ │ │ └── MANIFEST.MF │ │ │ ├── about.html │ │ │ ├── eclipse_1503.dll │ │ │ └── launcher.win32.win32.x86.properties │ │ ├── org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar │ │ ├── org.eclipse.equinox.p2.core_2.3.0.v20130327-2119.jar │ │ ├── org.eclipse.equinox.p2.engine_2.3.0.v20130526-2122.jar │ │ ├── org.eclipse.equinox.p2.metadata.repository_1.2.100.v20130327-2119.jar │ │ ├── org.eclipse.equinox.p2.metadata_2.2.0.v20130523-1557.jar │ │ ├── org.eclipse.equinox.p2.repository_2.3.0.v20130412-2032.jar │ │ ├── org.eclipse.equinox.preferences_3.5.100.v20130422-1538.jar │ │ ├── org.eclipse.equinox.registry_3.5.301.v20130717-1549.jar │ │ ├── org.eclipse.equinox.security.win32.x86_1.0.300.v20130327-1442.jar │ │ ├── org.eclipse.equinox.security_1.2.0.v20130424-1801.jar │ │ ├── org.eclipse.equinox.util_1.0.500.v20130404-1337.jar │ │ ├── org.eclipse.help_3.6.0.v20130326-1254.jar │ │ ├── org.eclipse.jface.databinding_1.6.200.v20130515-1857.jar │ │ ├── org.eclipse.jface.text_3.8.101.v20130802-1147.jar │ │ ├── org.eclipse.jface_3.9.1.v20130725-1141.jar │ │ ├── org.eclipse.osgi.services_3.3.100.v20130513-1956.jar │ │ ├── org.eclipse.osgi_3.9.1.v20140110-1610.jar │ │ ├── org.eclipse.swt.win32.win32.x86_3.102.1.v20140206-1358.jar │ │ ├── org.eclipse.swt_3.102.1.v20140206-1334.jar │ │ ├── org.eclipse.text_3.5.300.v20130515-1451.jar │ │ ├── org.eclipse.ui.editors_3.8.100.v20130513-1637.jar │ │ ├── org.eclipse.ui.forms_3.6.1.v20130822-1117.jar │ │ ├── org.eclipse.ui.ide_3.9.2.v20131004-0923.jar │ │ ├── org.eclipse.ui.intro_3.4.200.v20130326-1254.jar │ │ ├── org.eclipse.ui.views_3.6.100.v20130326-1250.jar │ │ ├── org.eclipse.ui.win32_3.2.400.v20130516-1056.jar │ │ ├── org.eclipse.ui.workbench.texteditor_3.8.101.v20130729-1318.jar │ │ ├── org.eclipse.ui.workbench_3.105.2.v20140211-1711.jar │ │ ├── org.eclipse.ui_3.105.0.v20130522-1122.jar │ │ ├── org.w3c.css.sac_1.3.1.v200903091627.jar │ │ ├── org.w3c.dom.events_3.0.0.draft20060413_v201105210656.jar │ │ ├── org.w3c.dom.smil_1.0.0.v200806040011.jar │ │ └── org.w3c.dom.svg_1.1.0.v201011041433.jar │ │ └── workspace │ │ └── .metadata │ │ ├── .log │ │ └── .plugins │ │ ├── org.eclipse.core.resources │ │ └── .root │ │ │ └── .indexes │ │ │ └── properties.version │ │ ├── org.eclipse.core.runtime │ │ └── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.ui.editors.prefs │ │ ├── org.eclipse.e4.workbench │ │ └── workbench.xmi │ │ └── org.eclipse.ui.workbench │ │ └── dialog_settings.xml ├── rtos │ └── amazon-freertos │ │ ├── CHANGELOG.md │ │ ├── ChangeLogKSDK.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── directories.txt │ │ ├── lib │ │ ├── FreeRTOS-Plus-POSIX │ │ │ ├── include │ │ │ │ ├── FreeRTOS_POSIX.h │ │ │ │ ├── FreeRTOS_POSIX_internal.h │ │ │ │ ├── FreeRTOS_POSIX_types.h │ │ │ │ └── portable │ │ │ │ │ ├── FreeRTOS_POSIX_portable_default.h │ │ │ │ │ └── nxp │ │ │ │ │ └── lpc54018iotmodule │ │ │ │ │ └── FreeRTOS_POSIX_portable.h │ │ │ └── source │ │ │ │ ├── FreeRTOS_POSIX_clock.c │ │ │ │ ├── FreeRTOS_POSIX_mqueue.c │ │ │ │ ├── FreeRTOS_POSIX_pthread.c │ │ │ │ ├── FreeRTOS_POSIX_pthread_barrier.c │ │ │ │ ├── FreeRTOS_POSIX_pthread_cond.c │ │ │ │ ├── FreeRTOS_POSIX_pthread_mutex.c │ │ │ │ ├── FreeRTOS_POSIX_sched.c │ │ │ │ ├── FreeRTOS_POSIX_semaphore.c │ │ │ │ ├── FreeRTOS_POSIX_timer.c │ │ │ │ ├── FreeRTOS_POSIX_unistd.c │ │ │ │ └── FreeRTOS_POSIX_utils.c │ │ ├── FreeRTOS-Plus-TCP │ │ │ ├── include │ │ │ │ ├── FreeRTOSIPConfigDefaults.h │ │ │ │ ├── FreeRTOS_ARP.h │ │ │ │ ├── FreeRTOS_DHCP.h │ │ │ │ ├── FreeRTOS_DNS.h │ │ │ │ ├── FreeRTOS_IP.h │ │ │ │ ├── FreeRTOS_IP_Private.h │ │ │ │ ├── FreeRTOS_Sockets.h │ │ │ │ ├── FreeRTOS_Stream_Buffer.h │ │ │ │ ├── FreeRTOS_TCP_IP.h │ │ │ │ ├── FreeRTOS_TCP_WIN.h │ │ │ │ ├── FreeRTOS_UDP_IP.h │ │ │ │ ├── FreeRTOS_errno_TCP.h │ │ │ │ ├── IPTraceMacroDefaults.h │ │ │ │ ├── NetworkBufferManagement.h │ │ │ │ └── NetworkInterface.h │ │ │ └── source │ │ │ │ ├── FreeRTOS_ARP.c │ │ │ │ ├── FreeRTOS_DHCP.c │ │ │ │ ├── FreeRTOS_DNS.c │ │ │ │ ├── FreeRTOS_IP.c │ │ │ │ ├── FreeRTOS_Sockets.c │ │ │ │ ├── FreeRTOS_Stream_Buffer.c │ │ │ │ ├── FreeRTOS_TCP_IP.c │ │ │ │ ├── FreeRTOS_TCP_WIN.c │ │ │ │ ├── FreeRTOS_UDP_IP.c │ │ │ │ ├── History.txt │ │ │ │ ├── ReadMe.url │ │ │ │ ├── portable │ │ │ │ ├── BufferManagement │ │ │ │ │ ├── BufferAllocation_1.c │ │ │ │ │ └── BufferAllocation_2.c │ │ │ │ ├── Compiler │ │ │ │ │ ├── CompilerName │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── pack_struct_end.h │ │ │ │ │ │ └── pack_struct_start.h │ │ │ │ │ ├── GCC │ │ │ │ │ │ ├── pack_struct_end.h │ │ │ │ │ │ └── pack_struct_start.h │ │ │ │ │ └── IAR │ │ │ │ │ │ ├── pack_struct_end.h │ │ │ │ │ │ └── pack_struct_start.h │ │ │ │ └── NetworkInterface │ │ │ │ │ ├── LPC17xx │ │ │ │ │ └── NetworkInterface.c │ │ │ │ │ ├── LPC18xx │ │ │ │ │ ├── NetworkInterface.c │ │ │ │ │ └── ReadMe.txt │ │ │ │ │ ├── README_DRIVER_DISCLAIMER.txt │ │ │ │ │ └── board_family │ │ │ │ │ ├── NetworkInterface.c │ │ │ │ │ └── ReadMe.txt │ │ │ │ └── readme.txt │ │ ├── FreeRTOS │ │ │ ├── event_groups.c │ │ │ ├── list.c │ │ │ ├── portable │ │ │ │ ├── GCC │ │ │ │ │ └── ARM_CM3 │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ └── portmacro.h │ │ │ │ ├── MemMang │ │ │ │ │ ├── ReadMe.url │ │ │ │ │ ├── heap_1.c │ │ │ │ │ ├── heap_2.c │ │ │ │ │ ├── heap_3.c │ │ │ │ │ ├── heap_4.c │ │ │ │ │ ├── heap_5.c │ │ │ │ │ └── heap_useNewlib.c │ │ │ │ └── readme.txt │ │ │ ├── queue.c │ │ │ ├── stream_buffer.c │ │ │ ├── tasks.c │ │ │ └── timers.c │ │ ├── directories.txt │ │ └── include │ │ │ ├── FreeRTOS.h │ │ │ ├── FreeRTOS_POSIX │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── mqueue.h │ │ │ ├── pthread.h │ │ │ ├── sched.h │ │ │ ├── semaphore.h │ │ │ ├── signal.h │ │ │ ├── sys │ │ │ │ └── types.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ └── utils.h │ │ │ ├── event_groups.h │ │ │ ├── freertos_tasks_c_additions.h │ │ │ ├── message_buffer.h │ │ │ ├── private │ │ │ ├── deprecated_definitions.h │ │ │ ├── list.h │ │ │ ├── mpu_prototypes.h │ │ │ ├── mpu_wrappers.h │ │ │ ├── portable.h │ │ │ ├── projdefs.h │ │ │ ├── stack_macros.h │ │ │ └── threading_alt.h │ │ │ ├── queue.h │ │ │ ├── semphr.h │ │ │ ├── stream_buffer.h │ │ │ ├── task.h │ │ │ └── timers.h │ │ └── template_application │ │ └── ARM_CM3 │ │ └── FreeRTOSConfig.h └── tools │ ├── JN-SW-4407-DK6-Flash-Programmer │ ├── DK6-RN-0065-Production-Flash-Programmer.pdf │ └── JN-SW-4407 DK6 Production Flash Programmer v2282.exe │ ├── cmake_toolchain_files │ ├── armgcc.cmake │ ├── armgcc_force_cpp.cmake │ └── xcc.cmake │ ├── imagetool │ ├── add_padding.py │ ├── certif_es2 │ ├── create_certificate.py │ ├── create_key.py │ ├── dk6_iarpostbuild.bat │ ├── dk6_iarpostbuild_ssbl.bat │ ├── dk6_image_tool.py │ ├── test_es2_sign │ │ ├── cert.bin │ │ └── priv_key.pem │ └── testkey_es2.pem │ └── sniffer │ ├── Sniffer READ_ME.txt │ └── Sniffer_1000000baud_8N1_NoFlowControl.bin └── src ├── .project ├── Common ├── Awk │ ├── JN518x_RETAIN.awk │ └── JN51xx_MAP.awk └── Source │ ├── PDM_IDs.h │ ├── app.zpscfg │ ├── app_buttons.c │ ├── app_buttons.h │ ├── app_common.h │ ├── app_events.h │ ├── app_ntag_icode.c │ ├── app_ntag_icode.h │ ├── app_ota_client.c │ ├── app_ota_client.h │ ├── app_pdm.c │ ├── app_pdm.h │ ├── board │ ├── app.h │ ├── board.c │ ├── board.h │ ├── board_utility.c │ ├── board_utility.h │ ├── clock_config.c │ ├── clock_config.h │ ├── hardware_init.c │ ├── pin_mux.c │ ├── pin_mux.h │ ├── temp_sensor_drv.c │ └── temp_sensor_drv.h │ ├── eventStrings.c │ └── eventStrings.h ├── Common_Switch ├── Build │ └── mcux │ │ ├── DimmerSwitch.json │ │ ├── LinkKey_HA.txt │ │ ├── Makefile │ │ └── configOTA_Cer_Keys_HA.txt └── Source │ ├── app_main.c │ ├── app_main.h │ ├── app_start_switch.c │ ├── app_switch_state_machine.c │ ├── app_switch_state_machine.h │ ├── app_zcl_switch_task.c │ ├── app_zcl_switch_task.h │ ├── app_zlo_switch_node.c │ └── app_zlo_switch_node.h ├── DimmerSwitch └── Source │ ├── App_DimmerSwitch.c │ ├── App_DimmerSwitch.h │ ├── bdb_options.h │ └── zcl_options.h ├── Doc ├── EULA.txt ├── JN-AN-1245-Release-Notes.pdf ├── JN-AN-1245-Software-Content-Register.txt ├── JN-AN-1245-Zigbee-3-0-Controller-and-Switch.pdf ├── NFC.chm └── size.txt ├── Version.txt └── mcux ├── .cproject ├── .project └── Build └── Makefile /Aqara_Opple_JTAG_Connection_PCB_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/Aqara_Opple_JTAG_Connection_PCB_A.png -------------------------------------------------------------------------------- /Aqara_Opple_JTAG_Connection_PCB_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/Aqara_Opple_JTAG_Connection_PCB_B.png -------------------------------------------------------------------------------- /Aqara_Opple_JTAG_Connection_UartSBee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/Aqara_Opple_JTAG_Connection_UartSBee.png -------------------------------------------------------------------------------- /Aqara_Opple_JTAG_Pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/Aqara_Opple_JTAG_Pinout.png -------------------------------------------------------------------------------- /Aqara_Opple_Pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/Aqara_Opple_Pinout.png -------------------------------------------------------------------------------- /Jtag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/Jtag.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/README.md -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_CAN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_CAN.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_ETH_MAC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_ETH_MAC.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_ETH_PHY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_ETH_PHY.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_Flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_Flash.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_I2C.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_MCI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_MCI.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_SAI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_SAI.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_SPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_SPI.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_Storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_Storage.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_USART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_USART.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_USBD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_USBD.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_USBH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/DriverTemplates/Driver_USBH.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_CAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_CAN.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_Common.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_ETH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_ETH.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_ETH_MAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_ETH_MAC.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_ETH_PHY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_ETH_PHY.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_Flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_Flash.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_I2C.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_MCI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_MCI.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_NAND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_NAND.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_SAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_SAI.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_SPI.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_USART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_USART.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_USB.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_USBD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_USBD.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_USBH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Driver/Include/Driver_USBH.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/core_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/core_dsp.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/CMSIS/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/CMSIS/LICENSE.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/JN5189DK6_manifest_v3_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/JN5189DK6_manifest_v3_4.xml -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/JN5189DK6_manifest_v3_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/JN5189DK6_manifest_v3_5.xml -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/SW-Content-Register.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/SW-Content-Register.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/board_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/board_utility.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/board_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/board_utility.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/hello_world.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/hello_world.bin -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/hello_world.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/hello_world.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/hello_world.xml -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/hello_world/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/board_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/board_utility.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/board_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/board_utility.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/led_blinky.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/led_blinky.bin -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/led_blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/led_blinky.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/led_blinky.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/led_blinky.xml -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/demo_apps/led_blinky/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_basic/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_basic/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_basic/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_basic/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_burst/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_burst/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_burst/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_burst/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_dma/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_dma/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_dma/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_dma/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_dma/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_dma/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_dma/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/adc/lpc_adc_dma/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/aes.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/aes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/aes.xml -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/board_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/board_utility.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/board_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/board_utility.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/iar/dk6_image_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/iar/dk6_image_tool.py -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/aes/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/board_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/board_utility.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/board_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/board_utility.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/example_RC5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/example_RC5.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cic_irb/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cmp/input_external/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cmp/input_external/cmp.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cmp/input_internal/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/cmp/input_internal/cmp.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dma/m2m_polling/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dma/m2m_polling/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dma/m2m_polling/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dma/m2m_polling/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dma/m2m_polling/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dma/m2m_polling/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dma/m2m_polling/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dma/m2m_polling/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_dma/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_dma/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_dma/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_dma/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_dma/dmic_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_dma/dmic_dma.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_dma/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_dma/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_dma/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_dma/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_dma/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_hwvad/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_hwvad/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_hwvad/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_hwvad/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_hwvad/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_hwvad/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_hwvad/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/dmic/dmic_hwvad/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/board_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/board_utility.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/board_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/board_utility.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/flash_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/flash_demo.xml -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/flash_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/flash_test.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/flash/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/board_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/board_utility.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/board_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/board_utility.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/fmeas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/fmeas.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/fmeas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/fmeas.xml -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/fmeas/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/board_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/board_utility.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/board_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/board_utility.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/gint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/gint.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/gint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/gint.xml -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gint/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gpio/led_output/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gpio/led_output/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gpio/led_output/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gpio/led_output/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gpio/led_output/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gpio/led_output/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gpio/led_output/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/gpio/led_output/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/i2c/dma_transfer/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/i2c/dma_transfer/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/i2c/dma_transfer/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/i2c/dma_transfer/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/pwm/pwm_output/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/pwm/pwm_output/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/pwm/pwm_output/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/pwm/pwm_output/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/pwm/pwm_output/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/pwm/pwm_output/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/pwm/pwm_output/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/pwm/pwm_output/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/pwm/pwm_output/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/pwm/pwm_output/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/board_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/board_utility.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/board_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/board_utility.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/iar/dk6_image_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/iar/dk6_image_tool.py -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/rng_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/rng_test.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/rng_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rng/rng_test.xml -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/board_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/board_utility.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/board_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/board_utility.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/iar/dk6_image_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/iar/dk6_image_tool.py -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/rtc.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/rtc_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/rtc/rtc_example.xml -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/board_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/board_utility.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/board_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/board_utility.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/iar/dk6_image_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/iar/dk6_image_tool.py -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/sha.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/sha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/sha/sha.xml -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/dma_transfer/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/dma_transfer/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/dma_transfer/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/dma_transfer/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/interrupt/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/interrupt/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/interrupt/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/interrupt/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/interrupt/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/interrupt/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/interrupt/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/interrupt/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/spi/interrupt/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/temp_sensor/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/temp_sensor/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/temp_sensor/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/temp_sensor/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/temp_sensor/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/temp_sensor/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/temp_sensor/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/temp_sensor/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/temp_sensor/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/temp_sensor/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/temp_sensor/temp_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/temp_sensor/temp_sensor.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/usart/interrupt/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/usart/interrupt/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/usart/interrupt/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/usart/interrupt/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/usart/polling/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/usart/polling/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/usart/polling/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/usart/polling/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/usart/polling/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/usart/polling/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/usart/polling/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/usart/polling/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/board_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/board_utility.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/board_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/board_utility.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/wwdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/wwdt.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/wwdt_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/driver_examples/wwdt/wwdt_example.xml -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/board_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/board_utility.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/board_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/board_utility.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/peripherals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/peripherals.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/peripherals.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/project_template/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_event/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_event/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_event/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_event/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_event/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_event/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_event/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_event/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_event/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_event/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_generic/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_generic/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_generic/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_generic/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_hello/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_hello/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_hello/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_hello/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_hello/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_hello/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_hello/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_hello/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_hello/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_hello/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_i2c/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_i2c/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_i2c/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_i2c/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_i2c/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_i2c/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_i2c/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_i2c/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_i2c/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_i2c/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_mutex/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_mutex/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_mutex/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_mutex/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_mutex/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_mutex/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_mutex/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_mutex/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_mutex/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_mutex/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_queue/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_queue/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_queue/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_queue/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_queue/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_queue/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_queue/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_queue/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_queue/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_queue/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_sem/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_sem/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_sem/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_sem/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_sem/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_sem/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_sem/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_sem/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_sem/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_sem/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_spi/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_spi/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_spi/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_spi/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_spi/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_spi/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_spi/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_spi/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_spi/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_spi/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_swtimer/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_swtimer/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_swtimer/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_swtimer/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_tickless/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_tickless/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_tickless/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_tickless/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_usart/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_usart/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_usart/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_usart/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_usart/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_usart/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_usart/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_usart/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_usart/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/rtos_examples/freertos_usart/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/usb_dongle_examples/led_blinky/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/usb_dongle_examples/led_blinky/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/boards/jn5189dk6/usb_dongle_examples/led_blinky/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/boards/jn5189dk6/usb_dongle_examples/led_blinky/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/components/lists/generic_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/components/lists/generic_list.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/components/lists/generic_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/components/lists/generic_list.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/components/serial_manager/serial_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/components/serial_manager/serial_manager.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/components/serial_manager/serial_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/components/serial_manager/serial_manager.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/components/serial_manager/serial_port_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/components/serial_manager/serial_port_internal.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/components/serial_manager/serial_port_swo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/components/serial_manager/serial_port_swo.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/components/serial_manager/serial_port_swo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/components/serial_manager/serial_port_swo.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/components/serial_manager/serial_port_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/components/serial_manager/serial_port_uart.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/components/serial_manager/serial_port_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/components/serial_manager/serial_port_uart.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/components/uart/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/components/uart/uart.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/components/uart/usart_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/components/uart/usart_adapter.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/JN5189.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/JN5189.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/JN5189_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/JN5189_features.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/endian.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/flash_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/flash_header.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_adc.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_adc.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_aes.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_aes.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb_private.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb_rc5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb_rc5.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb_rc6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb_rc6.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb_rcmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb_rcmm.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb_sirc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cic_irb_sirc.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_clock.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_clock.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cmp.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_cmp.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_common.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_common.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_ctimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_ctimer.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_ctimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_ctimer.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_dma.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_dma.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_dmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_dmic.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_dmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_dmic.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_dmic_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_dmic_dma.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_dmic_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_dmic_dma.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_flash.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_flash.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_flexcomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_flexcomm.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_flexcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_flexcomm.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_fmeas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_fmeas.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_fmeas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_fmeas.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_gint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_gint.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_gint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_gint.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_gpio.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_gpio.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_i2c.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_i2c.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_i2c_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_i2c_dma.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_i2c_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_i2c_dma.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_i2c_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_i2c_freertos.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_i2c_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_i2c_freertos.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_inputmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_inputmux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_inputmux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_inputmux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_inputmux_connections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_inputmux_connections.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_iocon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_iocon.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_ntag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_ntag.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_ntag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_ntag.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_pint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_pint.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_pint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_pint.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_power.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_power.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_pwm.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_pwm.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_reset.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_reset.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_rng.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_rng.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_rtc.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_rtc.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_sha.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_sha.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spi.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spi.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spi_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spi_dma.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spi_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spi_dma.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spi_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spi_freertos.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spi_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spi_freertos.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spifi.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spifi.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spifi_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spifi_dma.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spifi_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_spifi_dma.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_usart.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_usart.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_usart_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_usart_dma.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_usart_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_usart_dma.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_usart_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_usart_freertos.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_usart_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_usart_freertos.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_wtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_wtimer.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_wtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_wtimer.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_wwdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_wwdt.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_wwdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/fsl_wwdt.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/psector_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/psector_api.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/psector_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/psector_api.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_aes.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_api.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_common.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_efuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_efuse.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_isp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_isp.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_lowpower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_lowpower.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_mpu.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_pmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_pmc.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_psector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_psector.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_secure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_secure.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/drivers/rom_vectors.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/fsl_device_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/fsl_device_registers.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/App1Build.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/App1Build.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuild16kEndDevice.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuild16kEndDevice.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuild16kEndDevice_JN5188.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuild16kEndDevice_JN5188.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuild16kEndDevice_JN5189.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuild16kEndDevice_JN5189.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildMac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildMac.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildMinRetention.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildMinRetention.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildMinRetention_JN5188.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildMinRetention_JN5188.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildMinRetention_JN5189.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildMinRetention_JN5189.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildNone.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildNone.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildNoneRam.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildNoneRam.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildNone_APP0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildNone_APP0.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildNone_JN5188.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildNone_JN5188.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildNone_JN5189.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildNone_JN5189.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildOtaRegions.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuildOtaRegions.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuild_ZBSOTA_App0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuild_ZBSOTA_App0.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuild_ZBSOTA_App1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/AppBuild_ZBSOTA_App1.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/JN5188_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/JN5188_flash.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/JN5188_ram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/JN5188_ram.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/JN5189_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/JN5189_flash.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/JN5189_ram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/JN5189_ram.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/JN5189_rom.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/JN5189_rom.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/JN5189_rom_es1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/JN5189_rom_es1.ld -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/config.mk -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/config_cm4.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/config_cm4.mk -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/startup_JN5189.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/startup_JN5189.S -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/startup_JN5189.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/startup_JN5189.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/startup_JN5189_appcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/startup_JN5189_appcore.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/startup_jn5189_app1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/startup_jn5189_app1.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/user.ldt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/gcc/user.ldt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/mcuxpresso/JN5189_640K.cfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/mcuxpresso/JN5189_640K.cfx -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/mcuxpresso/startup_jn5189.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/mcuxpresso/startup_jn5189.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/mcuxpresso/startup_jn5189.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/mcuxpresso/startup_jn5189.cpp -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/board.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/board.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/clock_config.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/clock_config.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/peripherals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/peripherals.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/peripherals.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/project_template/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/system_JN5189.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/system_JN5189.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/system_JN5189.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/system_JN5189.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/utilities/fsl_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/utilities/fsl_assert.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/utilities/str/fsl_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/utilities/str/fsl_str.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/JN5189/utilities/str/fsl_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/JN5189/utilities/str/fsl_str.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/devices/K32W061/drivers/psector_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/devices/K32W061/drivers/psector_api.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/docs/DK6-UG-3127-Production-Flash-Programmer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/docs/DK6-UG-3127-Production-Flash-Programmer.pdf -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/docs/Getting Started with MCUXpresso SDK for JN5189.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/docs/Getting Started with MCUXpresso SDK for JN5189.pdf -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/docs/MCUXpresso SDK API Reference Manual_JN5189.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/docs/MCUXpresso SDK API Reference Manual_JN5189.pdf -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/docs/MCUXpresso SDK Change Logs_JN5189.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/docs/MCUXpresso SDK Change Logs_JN5189.pdf -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/docs/MCUXpresso SDK Release Notes Supporting JN5189.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/docs/MCUXpresso SDK Release Notes Supporting JN5189.pdf -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/docs/images/JN5189DK6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/docs/images/JN5189DK6.gif -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/docs/images/device.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/docs/images/device.jpg -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/docs/wireless/Zigbee/JN-UG-3130-Zigbee3-Stack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/docs/wireless/Zigbee/JN-UG-3130-Zigbee3-Stack.pdf -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/docs/wireless/Zigbee/JN-UG-3131-ZigBee3-Devices.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/docs/wireless/Zigbee/JN-UG-3131-ZigBee3-Devices.pdf -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/docs/wireless/Zigbee/JN-UG-3133-Core-Utilities.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/docs/wireless/Zigbee/JN-UG-3133-Core-Utilities.pdf -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/docs/wireless/Zigbee/JN-UG-3134-Zigbee3-Green-Power.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/docs/wireless/Zigbee/JN-UG-3134-Zigbee3-Green-Power.pdf -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/docs/wireless/Zigbee/JN-UG-3135-Encyption-Tool.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/docs/wireless/Zigbee/JN-UG-3135-Encyption-Tool.pdf -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/EmbeddedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/EmbeddedTypes.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/Heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/Heap.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/Heap.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/MicroInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/MicroInt.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/MicroInt_arm_sdk2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/MicroInt_arm_sdk2.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/MicroSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/MicroSpecific.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/dbg.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/jendefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Common/jendefs.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/DebugFifo/Include/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/DebugFifo/Include/Debug.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/DebugFifo/Source/Debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/DebugFifo/Source/Debug.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/FunctionLib/FunctionLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/FunctionLib/FunctionLib.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/FunctionLib/FunctionLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/FunctionLib/FunctionLib.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/GPIO/GPIO_Adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/GPIO/GPIO_Adapter.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/GPIO/GPIO_Adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/GPIO/GPIO_Adapter.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Keyboard/Source/Keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Keyboard/Source/Keyboard.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/LED/Interface/LED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/LED/Interface/LED.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/LED/Source/LED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/LED/Source/LED.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Lists/GenericList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Lists/GenericList.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Lists/GenericList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Lists/GenericList.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/ModuleInfo/ModuleInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/ModuleInfo/ModuleInfo.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/ModuleInfo/ModuleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/ModuleInfo/ModuleInfo.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDM/Include/PDM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDM/Include/PDM.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDM/Library/libPDM.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDM/Library/libPDM.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDM/PDM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDM/PDM.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDM/pdm_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDM/pdm_port.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDUM/Include/pdum_apl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDUM/Include/pdum_apl.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDUM/Include/pdum_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDUM/Include/pdum_common.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDUM/Include/pdum_nwk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDUM/Include/pdum_nwk.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDUM/Library/libPDUM.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PDUM/Library/libPDUM.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PWRM/Include/pwrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PWRM/Include/pwrm.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PWRM/Library/libPWRM.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/PWRM/Library/libPWRM.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Panic/Interface/Panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Panic/Interface/Panic.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Panic/Source/Panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Panic/Source/Panic.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/RNG/Interface/rnd_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/RNG/Interface/rnd_pub.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/RNG/Source/RNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/RNG/Source/RNG.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Reset/Reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/Reset/Reset.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/SecLib/SecLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/SecLib/SecLib.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/SecLib/SecLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/SecLib/SecLib.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/SecLib/aessw_ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/SecLib/aessw_ccm.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/SecLib/lib_crypto_m4.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/SecLib/lib_crypto_m4.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/SelectiveOTA/blob_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/SelectiveOTA/blob_utils.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/SelectiveOTA/blob_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/SelectiveOTA/blob_utils.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/XCVR/DK6/fsl_xcvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/XCVR/DK6/fsl_xcvr.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/XCVR/DK6/fsl_xcvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/XCVR/DK6/fsl_xcvr.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/XCVR/DK6/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/XCVR/DK6/radio.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/framework/XCVR/lib/libRadio.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/framework/XCVR/lib/libRadio.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/Include/AppApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/Include/AppApi.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/Include/mac_pib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/Include/mac_pib.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/Include/mac_sap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/Include/mac_sap.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/Include/tsv_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/Include/tsv_pub.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/lib/libMiniMac.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/lib/libMiniMac.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/lib/libMiniMac_IPN.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/lib/libMiniMac_IPN.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/mMac/Include/MiniMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/mMac/Include/MiniMac.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/uMac/Include/MMAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/ieee-802.15.4/uMac/Include/MMAC.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Build/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Build/config.mk -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Include/bdb_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Include/bdb_api.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Source/Common/bdb_fr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Source/Common/bdb_fr.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Source/Common/bdb_fr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Source/Common/bdb_fr.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Source/Common/bdb_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Source/Common/bdb_start.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Source/Common/bdb_start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Source/Common/bdb_start.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Source/TouchLink/bdb_tl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/BDB/Source/TouchLink/bdb_tl.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libATJParser.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libATJParser.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSAPL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSAPL.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSAPL_LEGACY.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSAPL_LEGACY.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSAPL_ZCP-GU.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSAPL_ZCP-GU.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSGP.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSGP.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSGP_ZED.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSGP_ZED.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSIPAN.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSIPAN.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSIPAN_ZED.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSIPAN_ZED.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSMAC_Mini_SOC.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSMAC_Mini_SOC.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSNWK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSNWK.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSNWK_ZCP-GU.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSNWK_ZCP-GU.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSNWK_ZED.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSNWK_ZED.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSTSV.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/Library/libZPSTSV.a -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Include/dlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Include/dlist.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Include/zcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Include/zcl.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Include/zcl_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Include/zcl_heap.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/dlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/dlist.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_attribute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_attribute.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_buffer.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_command.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_common.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_common.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_event.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_heap.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_internal.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_reportMaths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_reportMaths.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_search.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_timer.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_transmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCIF/Source/zcl_transmit.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCL/Clusters/OTA/Source/OTA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCL/Clusters/OTA/Source/OTA.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCL/Devices/ZGP/Include/gp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCL/Devices/ZGP/Include/gp.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCL/Devices/ZGP/Source/gp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZCL/Devices/ZGP/Source/gp.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSAPL/Include/zps_apl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSAPL/Include/zps_apl.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSAPL/Include/zps_apl_af.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSAPL/Include/zps_apl_af.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSAPL/Include/zps_apl_aib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSAPL/Include/zps_apl_aib.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSAPL/Include/zps_apl_aps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSAPL/Include/zps_apl_aps.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSAPL/Include/zps_apl_zdo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSAPL/Include/zps_apl_zdo.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSAPL/Include/zps_apl_zdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSAPL/Include/zps_apl_zdp.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSMAC/Include/mac_vs_sap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSMAC/Include/mac_vs_sap.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSMAC/Include/zps_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSMAC/Include/zps_mac.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSMAC/Include/zps_mac_prv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSMAC/Include/zps_mac_prv.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSNWK/Include/zps_nwk_nib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSNWK/Include/zps_nwk_nib.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSNWK/Include/zps_nwk_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSNWK/Include/zps_nwk_pub.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSNWK/Include/zps_nwk_sap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSNWK/Include/zps_nwk_sap.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSNWK/Include/zps_nwk_sec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSNWK/Include/zps_nwk_sec.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSTSV/Include/zps_tsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZPSTSV/Include/zps_tsv.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZigbeeCommon/Include/ZQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZigbeeCommon/Include/ZQueue.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZigbeeCommon/Include/ZTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZigbeeCommon/Include/ZTimer.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZigbeeCommon/Source/ZQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZigbeeCommon/Source/ZQueue.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZigbeeCommon/Source/ZTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/ZigbeeCommon/Source/ZTimer.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/board/dk6/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/board/dk6/app.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/board/dk6/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/board/dk6/pin_mux.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/board/dk6/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/board/dk6/pin_mux.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/zb_common/PDM_IDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/zb_common/PDM_IDs.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/zb_common/app_leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/zb_common/app_leds.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/zb_common/app_leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/zb_common/app_leds.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/zb_common/app_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/zb_common/app_uart.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/zb_common/app_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/zb_common/app_uart.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/examples/zigbee_ota_build/configOTA_LinkKey.txt: -------------------------------------------------------------------------------- 1 | # This is a sample configuration file 2 | 3 | LinkKey_Zigbee09.txt,01b0,16 4 | 5 | 6 | -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/tools/Eclipse_plugins/Source/com.jennic.OSConfigDiagramEditor.diagram/plugin_customization.ini: -------------------------------------------------------------------------------- 1 | org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP = true 2 | -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/tools/JET/win/JET.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/tools/JET/win/JET.exe -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/tools/JET/win/MSVCR71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/tools/JET/win/MSVCR71.dll -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/tools/JET/win/w9xpopen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/tools/JET/win/w9xpopen.exe -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/tools/Zigbee3ConfigEditor/configuration/org.eclipse.core.runtime/.manager/.fileTableLock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/tools/Zigbee3ConfigEditor/configuration/org.eclipse.equinox.app/.manager/.fileTableLock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/tools/Zigbee3ConfigEditor/configuration/org.eclipse.osgi/.manager/.fileTableLock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/middleware/wireless/zigbee/tools/Zigbee3ConfigEditor/workspace/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/CHANGELOG.md -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/ChangeLogKSDK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/ChangeLogKSDK.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/LICENSE -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/README.md -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/directories.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/event_groups.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/list.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/portable/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/portable/readme.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/queue.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/stream_buffer.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/tasks.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/FreeRTOS/timers.c -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/directories.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/errno.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/fcntl.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/mqueue.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/sched.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/signal.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/time.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/unistd.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/FreeRTOS_POSIX/utils.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/event_groups.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/message_buffer.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/private/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/private/list.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/private/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/private/mpu_wrappers.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/private/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/private/portable.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/private/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/private/projdefs.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/private/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/private/stack_macros.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/private/threading_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/private/threading_alt.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/queue.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/semphr.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/stream_buffer.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/task.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/rtos/amazon-freertos/lib/include/timers.h -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/cmake_toolchain_files/armgcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/cmake_toolchain_files/armgcc.cmake -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/cmake_toolchain_files/armgcc_force_cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/cmake_toolchain_files/armgcc_force_cpp.cmake -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/cmake_toolchain_files/xcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/cmake_toolchain_files/xcc.cmake -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/imagetool/add_padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/imagetool/add_padding.py -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/imagetool/certif_es2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/imagetool/certif_es2 -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/imagetool/create_certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/imagetool/create_certificate.py -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/imagetool/create_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/imagetool/create_key.py -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/imagetool/dk6_iarpostbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/imagetool/dk6_iarpostbuild.bat -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/imagetool/dk6_iarpostbuild_ssbl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/imagetool/dk6_iarpostbuild_ssbl.bat -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/imagetool/dk6_image_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/imagetool/dk6_image_tool.py -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/imagetool/test_es2_sign/cert.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/imagetool/test_es2_sign/cert.bin -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/imagetool/test_es2_sign/priv_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/imagetool/test_es2_sign/priv_key.pem -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/imagetool/testkey_es2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/imagetool/testkey_es2.pem -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/sniffer/Sniffer READ_ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/sniffer/Sniffer READ_ME.txt -------------------------------------------------------------------------------- /SDK_2.6.1_JN5189DK6/tools/sniffer/Sniffer_1000000baud_8N1_NoFlowControl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/SDK_2.6.1_JN5189DK6/tools/sniffer/Sniffer_1000000baud_8N1_NoFlowControl.bin -------------------------------------------------------------------------------- /src/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/.project -------------------------------------------------------------------------------- /src/Common/Awk/JN518x_RETAIN.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Awk/JN518x_RETAIN.awk -------------------------------------------------------------------------------- /src/Common/Awk/JN51xx_MAP.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Awk/JN51xx_MAP.awk -------------------------------------------------------------------------------- /src/Common/Source/PDM_IDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/PDM_IDs.h -------------------------------------------------------------------------------- /src/Common/Source/app.zpscfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/app.zpscfg -------------------------------------------------------------------------------- /src/Common/Source/app_buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/app_buttons.c -------------------------------------------------------------------------------- /src/Common/Source/app_buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/app_buttons.h -------------------------------------------------------------------------------- /src/Common/Source/app_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/app_common.h -------------------------------------------------------------------------------- /src/Common/Source/app_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/app_events.h -------------------------------------------------------------------------------- /src/Common/Source/app_ntag_icode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/app_ntag_icode.c -------------------------------------------------------------------------------- /src/Common/Source/app_ntag_icode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/app_ntag_icode.h -------------------------------------------------------------------------------- /src/Common/Source/app_ota_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/app_ota_client.c -------------------------------------------------------------------------------- /src/Common/Source/app_ota_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/app_ota_client.h -------------------------------------------------------------------------------- /src/Common/Source/app_pdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/app_pdm.c -------------------------------------------------------------------------------- /src/Common/Source/app_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/app_pdm.h -------------------------------------------------------------------------------- /src/Common/Source/board/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/board/app.h -------------------------------------------------------------------------------- /src/Common/Source/board/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/board/board.c -------------------------------------------------------------------------------- /src/Common/Source/board/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/board/board.h -------------------------------------------------------------------------------- /src/Common/Source/board/board_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/board/board_utility.c -------------------------------------------------------------------------------- /src/Common/Source/board/board_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/board/board_utility.h -------------------------------------------------------------------------------- /src/Common/Source/board/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/board/clock_config.c -------------------------------------------------------------------------------- /src/Common/Source/board/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/board/clock_config.h -------------------------------------------------------------------------------- /src/Common/Source/board/hardware_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/board/hardware_init.c -------------------------------------------------------------------------------- /src/Common/Source/board/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/board/pin_mux.c -------------------------------------------------------------------------------- /src/Common/Source/board/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/board/pin_mux.h -------------------------------------------------------------------------------- /src/Common/Source/board/temp_sensor_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/board/temp_sensor_drv.c -------------------------------------------------------------------------------- /src/Common/Source/board/temp_sensor_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/board/temp_sensor_drv.h -------------------------------------------------------------------------------- /src/Common/Source/eventStrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/eventStrings.c -------------------------------------------------------------------------------- /src/Common/Source/eventStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common/Source/eventStrings.h -------------------------------------------------------------------------------- /src/Common_Switch/Build/mcux/DimmerSwitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common_Switch/Build/mcux/DimmerSwitch.json -------------------------------------------------------------------------------- /src/Common_Switch/Build/mcux/LinkKey_HA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common_Switch/Build/mcux/LinkKey_HA.txt -------------------------------------------------------------------------------- /src/Common_Switch/Build/mcux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common_Switch/Build/mcux/Makefile -------------------------------------------------------------------------------- /src/Common_Switch/Build/mcux/configOTA_Cer_Keys_HA.txt: -------------------------------------------------------------------------------- 1 | # This is a sample configuration file 2 | 3 | LinkKey_HA.txt,01b0,16 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Common_Switch/Source/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common_Switch/Source/app_main.c -------------------------------------------------------------------------------- /src/Common_Switch/Source/app_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common_Switch/Source/app_main.h -------------------------------------------------------------------------------- /src/Common_Switch/Source/app_start_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common_Switch/Source/app_start_switch.c -------------------------------------------------------------------------------- /src/Common_Switch/Source/app_switch_state_machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common_Switch/Source/app_switch_state_machine.c -------------------------------------------------------------------------------- /src/Common_Switch/Source/app_switch_state_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common_Switch/Source/app_switch_state_machine.h -------------------------------------------------------------------------------- /src/Common_Switch/Source/app_zcl_switch_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common_Switch/Source/app_zcl_switch_task.c -------------------------------------------------------------------------------- /src/Common_Switch/Source/app_zcl_switch_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common_Switch/Source/app_zcl_switch_task.h -------------------------------------------------------------------------------- /src/Common_Switch/Source/app_zlo_switch_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common_Switch/Source/app_zlo_switch_node.c -------------------------------------------------------------------------------- /src/Common_Switch/Source/app_zlo_switch_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Common_Switch/Source/app_zlo_switch_node.h -------------------------------------------------------------------------------- /src/DimmerSwitch/Source/App_DimmerSwitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/DimmerSwitch/Source/App_DimmerSwitch.c -------------------------------------------------------------------------------- /src/DimmerSwitch/Source/App_DimmerSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/DimmerSwitch/Source/App_DimmerSwitch.h -------------------------------------------------------------------------------- /src/DimmerSwitch/Source/bdb_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/DimmerSwitch/Source/bdb_options.h -------------------------------------------------------------------------------- /src/DimmerSwitch/Source/zcl_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/DimmerSwitch/Source/zcl_options.h -------------------------------------------------------------------------------- /src/Doc/EULA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Doc/EULA.txt -------------------------------------------------------------------------------- /src/Doc/JN-AN-1245-Release-Notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Doc/JN-AN-1245-Release-Notes.pdf -------------------------------------------------------------------------------- /src/Doc/JN-AN-1245-Software-Content-Register.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Doc/JN-AN-1245-Software-Content-Register.txt -------------------------------------------------------------------------------- /src/Doc/JN-AN-1245-Zigbee-3-0-Controller-and-Switch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Doc/JN-AN-1245-Zigbee-3-0-Controller-and-Switch.pdf -------------------------------------------------------------------------------- /src/Doc/NFC.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Doc/NFC.chm -------------------------------------------------------------------------------- /src/Doc/size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/Doc/size.txt -------------------------------------------------------------------------------- /src/Version.txt: -------------------------------------------------------------------------------- 1 | 2002 2 | -------------------------------------------------------------------------------- /src/mcux/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/mcux/.cproject -------------------------------------------------------------------------------- /src/mcux/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/mcux/.project -------------------------------------------------------------------------------- /src/mcux/Build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schischu/aqara-opple/HEAD/src/mcux/Build/Makefile --------------------------------------------------------------------------------