BCM-32F7611-G01 Development Kit Application Note

Size: px
Start display at page:

Download "BCM-32F7611-G01 Development Kit Application Note"

Transcription

1 BCM-32F7611-G01 Development Kit Application Note D/N: AN0479E Introduction This application note is provided to assist users to develop the BCM-32F7611-G01 quickly. The following content will introduce how to insert the patch code and how to use it by software. Part One: Hardware Architecture Part Two: Setting and Operation Part Three: How to Replace the Patch Code Part Four: Bluetooth Device Address Part Five: Demo Code Software Architecture Part Six: Transmission/Reception Part Seven: Sleep Mode Part Eight: Considerations BCM-32F7611-G01 (Demo Board) AN0479E V / 13 January 25, 2018

2 Hardware Architecture 1. BCM-32F7611-G PIN for BLE Control DIP Switch 3. 3 KEY/3 LED DIP Switch 4. USB Bridge UART DIP Switch 5. KEY 3/LED 3 6. Reset Button 7. BCM-32F7611-G01 Download PIN 8. I/O PIN 9. USB to UART Bridge IC (HT42B534) 10. Power Support AN0479E V / 13 January 25, 2018

3 Setting and Operation 3 Pin for BLE Control There are three important pins for transmission and reception, nrst, EXTINT and WAKEUP. These pins can be respectively controlled by the PB4, PB12 and PB9 in the EVB. If these functions are not required, switch the corresponding DIP switch to OFF. nrst Pin Before the BC32F7611 is used, it must first be reset by hardware, the following are steps to achieve this: 1. Setup the nrst pin and the power down pin which is known as PDN and controlled by the PB8 in the IC, to an output low state. 2. Pull the PDN high first, and then pull the BRES high after 100μs delay. It is not recommended to use a hardware reset circuit, which may result in abnormal operation in the IC due to the incomplete reset condition. EXTINT Pin When the BLE IC has any command or event, this indicates that there is data to be transmitted to the master MCU, the EXTINT pin will be pulled low to inform the master MCU to read data. After the TX FIFO is empty, the EXTINT pin will be pulled high automatically. WAKEUP Pin The STATE pin, controlled by the PB5 in the IC, is used to indicate the chip state of the BLE IC, either the work mode or sleep mode. 1. Wake the BLE IC up to the work mode. If the WAKEUP pin keeps high, the BLE IC will always be in the work mode. 2. If the master MCU wants to transmit a command or data, the WAKEUP pin should be pulled high. Note that the transmission operation should be executed after 3ms delay. After the completion of the transmission, the WAKEUP pin should be pulled low to reduce power consumption. AN0479E V / 13 January 25, 2018

4 CHIP_STATE WAKE_UP The Mater MCU transmits data or CMD to the BLE IC WAKEUP Delay Sleep Delay 3 KEY/3 LED The EVB provides three keys and three LEDs, which can be controlled by the PA0, PA1, PA2, PA3, PA4 and PA5 respectively. If these functions are not required, switch the corresponding DIP switch to OFF. USB Bridge UART The EVB can send command and receive event using the USB port to UART method through computer terminal software. This is implemented using the PB1 and PB0 pins which correspond to the UTXD and URXD functions. If these functions are not required, switch the corresponding DIP switch to OFF. Power Support There are two power supply methods. 1. Use the USB port: plus in a Jump, then a 3.3V voltage source will be supplied. AN0479E V / 13 January 25, 2018

5 2. External power supply: Connect the external positive DC power supply (VINmax = 3.6V) to the VDD pin and the external DC GND to the GND pin. The following circuit diagram is provided for reference. BCE-32F7611-G01 Schematic How to Replace the Patch Code The user desired parameters can be setup using the BLE Configuration Setting Tool. Refer to the BLE Configuration Setting User s Guide for more details. AN0479E V / 13 January 25, 2018

6 When the Generate icon is pressed, the BC76xx_Patch.c and BC76xx_Patch.h files will be generated in the location where the Bin file is stored. Replace the two files above with those in the Demo Code (\Source). Then click the ReBuild icon. Bluetooth Device Address There is a default Bluetooth Device Address in the BC 32F7611.The address can be setup by the Flash address registers CIDR0 and CIDR1. There are two parts. 1. CIDR1 (4 Bytes): High nibble is BLE Verification ID. If the value is 0xF0 0x5A,the default BDA is valid. Low nibble is the higher 2 bytes of Bluetooth Device Address. AN0479E V / 13 January 25, 2018

7 2. CIDR0 (4 Bytes): is the lower 4 bytes of Bluetooth Device Address. Register Offset Description Reset Value FMC Base Address = 0x4008_0000 TADR 0x000 Flash Target Address Register 0x0000_0000 WRDR 0x004 Flash Write Data Register 0x0000_0000 OCMR 0x00C Flash Operation Command Register 0x0000_0000 CIDR0 0x31 0 Custom ID Register 0 0xXXXX_XXXX CIDR1 0x314 Custom ID Register 1 0xXXXX_XXXX CIDR2 0x318 Custom ID Register 2 0xXXXX_XXXX CIDR3 0x31C Custom ID Register 3 0xXXXX_XXXX Table1 FMC Register List In Demo Code, it is determined whether the BLE Verification ID is valid. If the ID is valid, use the default BDA directly, otherwise, the BDA setting in Patch Code will be used (BC: 20:18:01:10:11). Please refer to the previous section for the relevant Patch Code parameters setting. Demo Code Software System Architecture The software system architecture is divided into three layers, Physical Layer, Protocol Layer and Application Layer. Code System Architecture AN0479E V / 13 January 25, 2018

8 This section will illustrate the functionality and programs of each layer in detail Radio Mode Control Patch Demo Code List Physical Layer Writing software/firmware is like building a building, the better programming the bottom layer, the more stable the software/firmware. First introduce the SPI, and then describe the processing programs of UART, Timer, Library, Button and GPIO, finally illustrate the Patch processing program. 1. SPI Processing Program The Command/Event transmission between the BC32F7611 internal MCU and RF is carried out via the SPI interface. Therefore, it is a very important function. Even the RF initialization is also implemented using the SPI. 2. UART Processing Program The Development Kit can be connected to the Host computer through the HT42B534 via the USB port. Then the BC32F7611 transmission can be monitored by the Toolkit via the COM port of the computer. 3. Timer Processing Program The BFTM0 Timer can generate an interrupt every 1ms. AN0479E V / 13 January 25, 2018

9 4. Library Processing Program The contents of the BC32F7611 official library are as follows. 5. Button Processing Program This is the button related processing program. 6. GPIO Processing Program This is the GPIO related setting program. 7. Patch Code Processing Program This program can be subdivided into two parts: 1. patchcode.c: used to sequentially write patch into the BC32F7611 according to the specified rules via the SPI interface 2. BC76xx_Patch.c: this is Raw Data generated by the BLE Configuration Setting Tool. Protocol Layer This layer is mainly divided into two parts: 1. Radio, 2. Mode Control. 1. Radio Processing Program (bc76xx.c/bleprocess.c) This is used for the BLE process, including BLE Power Up, BLE FW Download and BLE Transceiver. 2. Mode Control Processing Program (systemstate.c) This is used for the power mode control of the MCU and the BLE. AN0479E V / 13 January 25, 2018

10 Application Layer This layer is almost closest to the End User. It is important to make the user comfortable to use. The main.c is mainly divided into four parts: 1. Initialization; 2. Timer applications; 3. BLE process/mode control; 4. User applications AN0479E V / 13 January 25, 2018

11 Transmission/Reception A transmission command or reception event can be sent to the BC32F7611 by using functions in the bc76xx.c. The following table shows the function list. Function Name BC76xx_send_hci_cmd_pkg BC76xx_send_ctrl_cmd_pkg BC76xx_rcv_packet_parser BC76xxSPI_read_register BC76xxSPI_write_register BC76xxSPI_read_fifo BC76xxSPI_write_fifo BC76xx_send_data_pkg BC76xx_send_read_phy_pkg BC76xx_send_write_phy_pkg Description Send HCI command Send ACI command Read ACI packet Read SPI Register Write SPI Register Read SPI FIFO Write SPI FIFO Send Payload Packet Command Read physical address command Write physical address command Transceiver Function List Example: After the match is successful, when the Demo Board Key is pressed, call the BC76xx_send_data_pkg function to send the desired data to the host. When the BC32F7611 has received data, the EXTINT will response the corresponding action, then the data can be read by calling the BC76xx_rcv_packet_parser function. AN0479E V / 13 January 25, 2018

12 Sleep Mode This is divided into two kinds, MCU Sleep Mode and BLE Sleep Mode, which can be setup in the defineglobal.h #50. Parameter Name blepwr _CM0_PWR Description =_BLE_PWR_NONE: BLE enters Normal Mode =_BLE_PWR_Sleep: BLE enters Sleep Mode =_BLE_PWR_PD_: BLE enters Power down Mode =_CM0_PWR_NONE_: MCU enters Normal Mode =_CM0_PWR_DEEPSLEEP_1_: MCU enters Deep Sleep1 =_CM0_PWR_DEEPSLEEP_2_: MCU enters Deep Sleep2 Mode Control Parameter Note: When the MCU enters the Deep Sleep2 Mode, it can only be woken up by the PB12. When the BLE enters the Power Down Mode, the EXTINT pin will not response any action regardless of whether any data has been received. Considerations 1. This Demo Code was written using uvision V4.7 and the BCE-32F7611-G01 Demo Board. 2. When to reset to different Sleep modes, but the Demo Code cannot be programmed because the current of the previously setting sleep mode is too small for the e-link32 to program, press the Reset pin to program again within 500ms. Conclusion The BCE-32F7611-G01 Demo Board function is introduced in this application note, and users can also obtain simple Demo Code by using program editor from the Sheng tong company. AN0479E V / 13 January 25, 2018

13 Reference Files Refer to the BC32F7611 DataSheet. For more information, refer to the Holtek s official website Version and Modify Information Date Author Issue and Revision Harry Hsu( 徐鸿文 ) First Version Disclaimer All information, trademarks, logos, graphics, videos, audio clips, links and other items appearing on this website ('Information') are for reference only and is subject to change at any time without prior notice and at the discretion of Holtek Semiconductor Inc. (hereinafter 'Holtek', 'the company', 'us', 'we' or 'our'). Whilst Holtek endeavors to ensure the accuracy of the Information on this website, no express or implied warranty is given by Holtek to the accuracy of the Information. Holtek shall bear no responsibility for any incorrectness or leakage. Holtek shall not be liable for any damages (including but not limited to computer virus, system problems or data loss) whatsoever arising in using or in connection with the use of this website by any party. There may be links in this area, which allow you to visit the websites of other companies. These websites are not controlled by Holtek. Holtek will bear no responsibility and no guarantee to whatsoever Information displayed at such sites. Hyperlinks to other websites are at your own risk. Limitation of Liability In no event shall Holtek Limited be liable to any other party for any loss or damage whatsoever or howsoever caused directly or indirectly in connection with your access to or use of this website, the content thereon or any goods, materials or services. Governing Law The Disclaimer contained in the website shall be governed by and interpreted in accordance with the laws of the Republic of China. Users will submit to the non-exclusive jurisdiction of the Republic of China courts. Update of Disclaimer Holtek reserves the right to update the Disclaimer at any time with or without prior notice, all changes are effective immediately upon posting to the website. AN0479E V / 13 January 25, 2018

I/O Emulated UART Baud Rate Calibration Application Note

I/O Emulated UART Baud Rate Calibration Application Note I/O Emulated UART Baud Rate Calibration Application Note D/N: AN0475E Introduction Not every HOLTEK MCU contains a Universal Asynchronous Receiver/Transmitter function, otherwise known as a UART. If this

More information

HT66FB574 Single Colour Independent Light Streamer USB Keyboard Application Note

HT66FB574 Single Colour Independent Light Streamer USB Keyboard Application Note HT66FB574 Single Colour Independent Light Streamer D/: A0490E Introduction The video gaming industry is seeing continual increasing demand for multi-feature keyboards. These can include features such as

More information

HT66F43x0 Smart Card Reader MCU Integrated ISO Application Guidelines

HT66F43x0 Smart Card Reader MCU Integrated ISO Application Guidelines HT66F43x0 Smart Card Reader MCU Integrated ISO7816-3 Application Guidelines D/N: AN0447E Introduction The Holtek 8-bit Smart Card Reader Flash MCUs, the HT66F43x0 device series, include an ISO7816-3 smart

More information

Ai-Thinker. ESP-01F Datasheet. Version V1 Copyright Copyright 2018 Shenzhen Ai-Thinker Technology Co., Ltd All Rights Reserved

Ai-Thinker. ESP-01F Datasheet. Version V1 Copyright Copyright 2018 Shenzhen Ai-Thinker Technology Co., Ltd All Rights Reserved Copyright 2018 Shenzhen Technology Co., Ltd All Rights Reserved ESP-01F Datasheet Version V1 Copyright 2018 Disclaimer and Copyright Notice Copyright 2018 Shenzhen Technology Co., Ltd All Rights Reserved

More information

Ai-Thinker. ESP-12S Datasheet. Version V0. Copyright 2018 ESP-12S WIFI MODULE V0. Shenzhen Ai-Thinker Technology Co., Ltd All Rights Reserved

Ai-Thinker. ESP-12S Datasheet. Version V0. Copyright 2018 ESP-12S WIFI MODULE V0. Shenzhen Ai-Thinker Technology Co., Ltd All Rights Reserved Copyright 2018 Shenzhen Technology Co., Ltd All Rights Reserved ESP-12S Datasheet Version V0 Copyright 2018 Disclaimer and Copyright Notice Information in this document, including URL references, is subject

More information

HT16D35A Single Colour Matrix LED Display Application Example

HT16D35A Single Colour Matrix LED Display Application Example HT6DA Single Colour Matrix LED Display Application Example D/N: AN0E Introduction The Holtek HT6DA is an LED driver IC which includes an integrated display data memory. It communicates with MCUs via a

More information

GPS Evaluation Kit EVA2035-H

GPS Evaluation Kit EVA2035-H GPS Evaluation Kit EVA2035-H A Description of the Evaluation Board for Maestro s GPS Antenna Receiver Module A2035-H User s Manual Version 0.3 Revision History Rev. Date Description 0.1 07-08-11 Initial

More information

Product Datasheet: DWM1001-DEV DWM1001 Module Development Board. Key Features and Benefits

Product Datasheet: DWM1001-DEV DWM1001 Module Development Board. Key Features and Benefits Product Datasheet: DWM1001-DEV DWM1001 Module Development Board Plug-and-Play Development Board for evaluating the performance of the Decawave DWM1001 module Easily assemble a fully wireless RTLS system,

More information

Accessing Different Banks of Data Memory Using Extended Instructions

Accessing Different Banks of Data Memory Using Extended Instructions HT8 MCU Extended Instruction Set Applications D/N: AN0407E Introduction The Holtek Flash MCU extended instruction set is used to address the full data memory area. The extended instructions can directly

More information

e-link Emulation/Programming Adapter Cable (ESTD-206) User s Guide

e-link Emulation/Programming Adapter Cable (ESTD-206) User s Guide Cable (ESTD-206) User s Guide Revision: V1.00 Date: December 12, 2018 Table of Contents e-link Emulation/Programming Adapter Cable (ESTD-206) Introduction... 3 For the e-link On-Chip Debug Function OCDS...

More information

QN908x. DK User s Guide. Document information. QN9080-DK, QN9080, QN9083, BLE, USB Dongle This document is an introduction to the QN908x DK V1.

QN908x. DK User s Guide. Document information. QN9080-DK, QN9080, QN9083, BLE, USB Dongle This document is an introduction to the QN908x DK V1. Rev. 1.2 April 2018 Info Keywords Abstract Document information Content QN9080-DK, QN9080, QN9083, BLE, USB Dongle This document is an introduction to the DK V1.2 board Rev Date Description 0.1 20160818

More information

UM0401 User manual. User manual for eight bit port expander STMPE801 demonstration board. Introduction

UM0401 User manual. User manual for eight bit port expander STMPE801 demonstration board. Introduction User manual User manual for eight bit port expander STMPE801 demonstration board Introduction This document explains the functioning of the demo board for the port expander Chip STMPE801 with a PC GUI

More information

AppNote-US2400-EVB Low Power 2.4GHz Transceiver

AppNote-US2400-EVB Low Power 2.4GHz Transceiver US2400-EVB for IEEE 802.15.4 Standard Revision History Hardware Revision Date Description of Changes V01 / V02 Sep. 2011 Initial release V03 Dec 2011 Addition 4.1 Evaluation Board Variants and 5.3 Connector

More information

Product Overview: DWM1001-DEV DWM1001 Module Development Board. Key Features and Benefits

Product Overview: DWM1001-DEV DWM1001 Module Development Board. Key Features and Benefits Product Overview: DWM1001-DEV DWM1001 Module Development Board Plug-and-Play Development Board for evaluating the performance of the Decawave DWM1001 module Easily assemble a fully wireless RTLS system,

More information

Nuvoton 4T 8051-based Microcontroller NuTiny-SDK-N78E715 User Manual

Nuvoton 4T 8051-based Microcontroller NuTiny-SDK-N78E715 User Manual 4T 8051 8-bit Microcontroller Nuvoton 4T 8051-based Microcontroller NuTiny-SDK-N78E715 User Manual The information described in this document is the exclusive intellectual property of Nuvoton Technology

More information

Multifunction Serial Interface (PDL_MFS) Features. General Description. When to Use a PDL_MFS Component. Quick Start 1.0

Multifunction Serial Interface (PDL_MFS) Features. General Description. When to Use a PDL_MFS Component. Quick Start 1.0 1.0 Features Configures the Multi-Function Serial (MFS) Interface to one of the following modes: UART (Asynchronous normal serial interface) Clock synchronous serial interface (SPI and I 2 S can be supported)

More information

AN Sleep programming for NXP bridge ICs. Document information

AN Sleep programming for NXP bridge ICs. Document information Rev. 01 5 January 2007 Application note Document information Info Keywords Abstract Content SC16IS750, Bridge IC, Sleep programming The sleep programming of NXP Bridge ICs such as SC16IS750 (I 2 C-bus/SPI

More information

This Application Note demonstrates an SPI-LIN slave bridge using a PSoC device. Demonstration projects are included.

This Application Note demonstrates an SPI-LIN slave bridge using a PSoC device. Demonstration projects are included. Communication - SPI-LIN Slave Bridge Application Note Abstract AN0 Author: Valeriy Kyrynyuk Associated Project: Yes Associated Part Family: CY8C7 GET FREE SAMPLES HERE Software Version: PSoC Designer.

More information

Nuvoton 1T 8051-based Microcontroller NuTiny-SDK-N76E885 User Manual

Nuvoton 1T 8051-based Microcontroller NuTiny-SDK-N76E885 User Manual NUTINY-SDK- USER MANUAL 1T 8051 8-bit Microcontroller Nuvoton 1T 8051-based Microcontroller NuTiny-SDK- User Manual The information described in this document is the exclusive intellectual property of

More information

How to configure the BlueNRG-1 and BlueNRG-2 devices in network coprocessor mode. Main components Bluetooth Low Energy wireless system-on-chip

How to configure the BlueNRG-1 and BlueNRG-2 devices in network coprocessor mode. Main components Bluetooth Low Energy wireless system-on-chip DT0109 Design tip How to configure the BlueNRG-1 and BlueNRG-2 devices in network coprocessor mode Main components BlueNRG-1 BlueNRG-2 Bluetooth Low Energy wireless system-on-chip Bluetooth Low Energy

More information

GPS Evaluation Kit A1080

GPS Evaluation Kit A1080 GPS Evaluation Kit A1080 A description of an evaluation system for Vincotech s GPS Receiver Module A1080-A/-B User s Manual Version 4.0 Hardware Revision 02 Revision History Rev. Date Description 1.0 12-05-06

More information

CE PSoC 4: Time-Stamped ADC Data Transfer Using DMA

CE PSoC 4: Time-Stamped ADC Data Transfer Using DMA CE97091- PSoC 4: Time-Stamped ADC Data Transfer Using DMA Objective This code example uses a DMA channel with two descriptors to implement a time-stamped ADC data transfer. It uses the Watch Dog Timer

More information

GPS Evaluation Kit EVA2135-H

GPS Evaluation Kit EVA2135-H GPS Evaluation Kit EVA2135-H A Description of the Evaluation Board for Maestro s GPS Receiver / Smart Antenna Module A2135-H User s Manual Version 0.1 Revision History Rev. Date Description 0.1 06-23-14

More information

Bluetooth Low Energy (BLE) Transparent Transmission Controller Programming User Guide BC7601/BC7602/BC32F7611

Bluetooth Low Energy (BLE) Transparent Transmission Controller Programming User Guide BC7601/BC7602/BC32F7611 Bluetooth Low Energy (BLE) Transparent Transmission Revision: V0.00 Date: July 19, 2017 Table of Contents Introduction.. 3 Overview3 Pin Description3 Pin Functional Description4 BLE Device Command / Event

More information

ELET114A Bluetooth Module DATASHEET. Website:http://www.elinketone.com / 7

ELET114A Bluetooth Module DATASHEET. Website:http://www.elinketone.com / 7 Bluetooth Module DATASHEET Website:http://www.elinketone.com 2013 06 09 1 / 7 A. Overview Bluetooth Module is designed by ShenZhen ElinkEtone Technology Company for intelligent wireless transmission, with

More information

PSoC 4 Low Power Comparator (LPComp) Features. General Description. When to Use a LPComp 2.0. Low input offset. User controlled offset calibration

PSoC 4 Low Power Comparator (LPComp) Features. General Description. When to Use a LPComp 2.0. Low input offset. User controlled offset calibration 2.0 Features Low input offset User controlled offset calibration Multiple speed modes Low-power mode Wake from low power modes Multiple interrupt and output modes General Description The Low Power Comparator

More information

F2MC MB90385 series Evaluation Board Documentation. Revision Date Comment V New document

F2MC MB90385 series Evaluation Board Documentation. Revision Date Comment V New document F2MC MB90385 series Evaluation Board Documentation Revision Date Comment V1.0 08.25.02 New document 1 Warranty and Disclaimer To the maximum extent permitted by applicable law, Fujitsu Microelectronics

More information

AL361A-EVB-A1. Multi-channel Video Processor EVB. Datasheet. (HDMI/AHD-to-HDMI) 2017 by AverLogic Technologies, Corp. Version 1.0

AL361A-EVB-A1. Multi-channel Video Processor EVB. Datasheet. (HDMI/AHD-to-HDMI) 2017 by AverLogic Technologies, Corp. Version 1.0 AL361A-EVB-A1 Multi-channel Video Processor EVB (HDMI/AHD-to-HDMI) Datasheet Version 1.0 INFORMATION FURNISHED BY AVERLOGIC IS BELIEVED TO BE ACCURATE AND RELIABLE. HOWEVER, NO RESPONSIBILITY IS ASSUMED

More information

Brief Specifications of Bluetooth Low Energy Module. Model No.: HM-BT4501

Brief Specifications of Bluetooth Low Energy Module. Model No.: HM-BT4501 Brief Specifications of Bluetooth Low Energy Module Model No.: HM-BT4501 Version Number: V1.0 1 / 6 www.hoperf.com 1. General Description HM-BT4501 is a module of wireless data transceiver that based on

More information

STEVAL-SPBT4ATV3. USB dongle for the Bluetooth class 1 SPBT2632C1A.AT2 module. Features. Description

STEVAL-SPBT4ATV3. USB dongle for the Bluetooth class 1 SPBT2632C1A.AT2 module. Features. Description USB dongle for the Bluetooth class 1 SPBT2632C1A.AT2 module Features Based on V3.0 Bluetooth class 1 module, SPBT2632C1A.AT2 USB interface and power supply Supported reprogrammability via USB interface

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK LIN DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent damage

More information

AN4820 Application note

AN4820 Application note Application note BlueNRG-1 and BlueNRG-2 low power modes Introduction The BlueNRG-1 and BlueNRG-2 are very low power Bluetooth low energy (BLE) single-mode systemson-chip, compliant with Bluetooth specification.

More information

HT42B534-x USB to UART Bridge IC

HT42B534-x USB to UART Bridge IC USB to UART Bridge IC Features Operating Voltage (): 3.3V~5.5V UART pin Voltage (IO): 1.8V~ (Less than voltage) Power down and wake-up functions to reduce power consumption Fully integrated 12MHz oscillator

More information

Hints and tips when using RC1xx0 RF Modules

Hints and tips when using RC1xx0 RF Modules AN001 : HI NTSANDTI PS WHENUSI NGRC1 XX0RFMODULES WeMakeEmbeddedWi r el ess Easyt ouse Hints and tips when using RC1xx0 RF Modules By H.Moholdt Keywords Interfacing to RS232/RS485/RS422 level shifters

More information

UM PCAL6524 demonstration board OM Document information

UM PCAL6524 demonstration board OM Document information Rev. 1 23 September 2015 User manual Document information Info Content Keywords OM13320 Fm+ development kit, OM13260 Fm+ I2C bus development board, OM13303 GPIO target board Abstract Installation guide

More information

ESP8266 Application Note Firmware Download Protocol

ESP8266 Application Note Firmware Download Protocol ESP8266 Application Note Firmware Download Protocol Version 1.0 Copyright 2016 About This Guide This document introduces ESP8266 firmware download protocol with a structure as follows. Chapter Title Subject

More information

Optional Pause Pulse for constant frame length of 282 clock ticks

Optional Pause Pulse for constant frame length of 282 clock ticks PSoC Creator Component Datasheet Single Edge Nibble Transmission (SENT_TX) 1.0 Features Compliant with SAE J2716 APR2016 (Issued 2007-04, Revised 2016-04) without any serial message formats Selectable

More information

VENUS_ Driving Board and 39.6 Prism Display

VENUS_ Driving Board and 39.6 Prism Display VENUS_ Driving Board and 39.6 Prism Display Table of Contents 1 Hardware Requirements... 1 (1) PACKAGE CONTENTS... 1 (2) VENUS Specification... 2 (3) Prism product Specification... 3 2 Hardware Guide...

More information

Ethernet1 Xplained Pro

Ethernet1 Xplained Pro Ethernet1 Xplained Pro Part Number: ATETHERNET1-XPRO The Atmel Ethernet1 Xplained Pro is an extension board to the Atmel Xplained Pro evaluation platform. The board enables the user to experiment with

More information

Version: C Issued Date: 2018/11/08. User Guide ( 簡易使用手冊 ) Demo Board for MDBT42Q-AT / PAT. 韌體版本 (FW Revision): 1.3

Version: C Issued Date: 2018/11/08. User Guide ( 簡易使用手冊 ) Demo Board for MDBT42Q-AT / PAT. 韌體版本 (FW Revision): 1.3 Version: C Issued Date: 2018/11/08 User Guide ( 簡易使用手冊 ) 產品名稱 (Product): 產品型號 (Model No.): Demo Board for MDBT42Q-AT / PAT MDBT42Q AT UART S 韌體版本 (FW Revision): 1.3 Index 1. Introduction... 3 1.1. Contents

More information

AN QN902x Quick Start Guide. Document information

AN QN902x Quick Start Guide. Document information Rev. 3 17 April 2018 Application note Document information Info Keywords Abstract Content mini DK, SDK, installation, working mode, download, NVDS configuration, connect, GPIO configuration This application

More information

USER GUIDE. Wireless Production Test Reference Protocol Specification Document. Atmel MCU Wireless. Description

USER GUIDE. Wireless Production Test Reference Protocol Specification Document. Atmel MCU Wireless. Description USER GUIDE Wireless Production Test Reference Protocol Specification Document Atmel MCU Wireless Description This document explains the serial protocol used for communication between various blocks of

More information

Challenge. Hardware Circuit Details. Solution. Result. Features and Functions. Z8 Encore! MC

Challenge. Hardware Circuit Details. Solution. Result. Features and Functions. Z8 Encore! MC Implementation of SMBus Master/Slave Protocol Application Brief Challenge The System Management Bus (SMBus) interface is used by Smart Batteries to pass Smart Battery Data (SBD) to external devices and

More information

UnRegistered MB39C602 LED LIGHTING SYSTEM BULB 9W ZIGBEE CONTROL USER MANUAL. Fujitsu Semiconductor Design (Chengdu) Co. Ltd.

UnRegistered MB39C602 LED LIGHTING SYSTEM BULB 9W ZIGBEE CONTROL USER MANUAL. Fujitsu Semiconductor Design (Chengdu) Co. Ltd. Fujitsu Semiconductor Design (Chengdu) Co. Ltd. User Manual ANA-UM-500001-E-10 MB39C602 LED LIGHTING SYSTEM BULB 9W ZIGBEE CONTROL USER MANUAL MB39C601 LED LIGHTING SYSTEM BULB 9W ZIGBEE CONTROL Revision

More information

UM0792 User manual. Demonstration firmware for the DMX-512 communication protocol transmitter based on the STM32F103Zx.

UM0792 User manual. Demonstration firmware for the DMX-512 communication protocol transmitter based on the STM32F103Zx. User manual Demonstration firmware for the DMX-512 communication protocol transmitter based on the STM32F103Zx Introduction This document describes how to use the demonstration firmware for the DMX-512

More information

BLE Bluetooth Low Energy Modules SBC2112-B. Preliminary Specification. Version 1.0

BLE Bluetooth Low Energy Modules SBC2112-B. Preliminary Specification. Version 1.0 BLE Bluetooth Low Energy Modules SBC2112-B Preliminary Specification Version 1.0 23-JUN.-2014 Content 1. Description...3 2. Features...3 3. Block Diagram...3 4. Radio Characteristics...4 5. Electrical

More information

STLC2500D. Bluetooth V2.1 "Lisbon" + EDR. Features. Description

STLC2500D. Bluetooth V2.1 Lisbon + EDR. Features. Description Bluetooth V2.1 "Lisbon" + EDR Data Brief Features Based on Ericsson Technology Licensing Baseband Core (EBC) Bluetooth specification compliance: V2.1 ( Lisbon ) + EDR HW support for packet types ACL, SCO,

More information

F²MC-8L FAMILY MB89201 SERIES FLASH PROGRAMMING 8-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

F²MC-8L FAMILY MB89201 SERIES FLASH PROGRAMMING 8-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note MCU-AN-300001-E-V10 F²MC-8L FAMILY 8-BIT MICROCONTROLLER MB89201 SERIES FLASH PROGRAMMING APPLICATION NOTE Revision History Revision History Date 2005-02-09

More information

[Type here] M907. Bluetooth 4.2 Low Energy/Zigbee/RF4CE/Thread SiP Module with MCU and integrated antenna

[Type here] M907. Bluetooth 4.2 Low Energy/Zigbee/RF4CE/Thread SiP Module with MCU and integrated antenna [Type here] M907 Bluetooth 4.2 Low Energy/Zigbee/RF4CE/Thread SiP Module with MCU and integrated antenna Preliminary DATASHEET 19 th April, 2018 Table of Contents 1 Product Brief... 1 2 Features and Applications...

More information

CB-1 Peripheral Board Technical Manual

CB-1 Peripheral Board Technical Manual CB-1 Peripheral Board Technical Manual Date: 13 May 2007 Document Revision: 1.02 BiPOM Electronics 16301 Blue Ridge Road, Missouri City, Texas 77489 Telephone: 1-713-283-9970. Fax: 1-281-416-2806 E-mail:

More information

QuickLogic TAG-N System User Manual

QuickLogic TAG-N System User Manual QuickLogic TAG-N System User Manual Introduction This document explains how implement the connection and use of the TAG-N system. The TAG-N system provides system designers: A known-good sensor hub hardware

More information

AL362B-EVB-A1. AHD-to-HDMI Quad Box Development Kit by AverLogic Technologies, Corp. Version 1.0

AL362B-EVB-A1. AHD-to-HDMI Quad Box Development Kit by AverLogic Technologies, Corp. Version 1.0 AL362B-EVB-A1 AHD-to-HDMI Quad Box Development Kit Version 1.0 INFORMATION FURNISHED BY AVERLOGIC IS BELIEVED TO BE ACCURATE AND RELIABLE. HOWEVER, NO RESPONSIBILITY IS ASSUMED BY AVERLOGIC FOR ITS USE,

More information

ECO and Workarounds for Bugs in ESP32

ECO and Workarounds for Bugs in ESP32 ECO and Workarounds for Bugs in ESP32 Version 1.6 Copyright 2018 About This Guide This document details hardware errata and workarounds in the ESP32. Release Notes Date Version Release notes 2016-11 V1.0

More information

LMX9838 Cable Replacement

LMX9838 Cable Replacement LMX9838 Cable Replacement 1.0 Introduction Bluetooth technology offers a wide range of features and profiles in order to support many different applications. Even though Bluetooth is very flexible, it

More information

SH1030 Rev Introduction. Ultra low power DASH7 Arduino Shield Modem. Applications. Description. 868 MHz. Features

SH1030 Rev Introduction. Ultra low power DASH7 Arduino Shield Modem. Applications. Description. 868 MHz. Features SH1030 Rev. 1.2 Applications Wireless sensor network Data acquisition equipment Security systems Industrial monitor and control Internet of things (IoT) Ultra low power DASH7 Arduino Shield Modem 868 MHz

More information

RF4431 wireless transceiver module

RF4431 wireless transceiver module RF4431 wireless transceiver module 1. Description RF4431 adopts Silicon Labs Si4431 RF chip, which is a highly integrated wireless ISM band transceiver chip. Extremely high receive sensitivity (-121 dbm)

More information

LAN9303 Evaluation Board User Manual

LAN9303 Evaluation Board User Manual Copyright 2009 SMSC or its subsidiaries. All rights reserved. Circuit diagrams and other information relating to SMSC products are included as a means of illustrating typical applications. Consequently,

More information

Wireless-Tag WT51822-S4AT

Wireless-Tag WT51822-S4AT Description: WT51822-S4AT is a high performance,low power radio transmit and receive system module use Nordic BLE 4.1 nrf51822 as the controller chips. It has the smallest volume package in the industry,

More information

Dual Serial Shield User Manual

Dual Serial Shield User Manual Dual Serial Shield User Manual PN: 2050 Berkshire Products, Inc. Phone: 770-271-0088 http://www.bkp-store.com/ Rev: 1.00 Copyright 2013 Table of Contents 1 Introduction... 2 1.1 XB compatibility... 2 2

More information

USB Debug Adapter. Power USB DEBUG ADAPTER. Silicon Laboratories. Stop. Run. Figure 1. Hardware Setup using a USB Debug Adapter

USB Debug Adapter. Power USB DEBUG ADAPTER. Silicon Laboratories. Stop. Run. Figure 1. Hardware Setup using a USB Debug Adapter C8051F38X DEVELOPMENT KIT USER S GUIDE 1. Kit Contents The C8051F38x Development Kit contains the following items: C8051F380 Target Board C8051Fxxx Development Kit Quick-start Guide Silicon Laboratories

More information

HY16F Series ISP Bootloader Instruction Manual

HY16F Series ISP Bootloader Instruction Manual Table of Contents 1 INTRODUCTION 4 2 ISP BOOTLOADER INTRODUCTION 5 21 Software Introduction 5 22 Software Installation 7 23 Uninstall 10 24 Software Operation 11 25 Hardware Description 14 3 UART BOOTLOADER

More information

Sub-1G + Bluetooth LE Module

Sub-1G + Bluetooth LE Module Doc. Name : BSG-01-Rev0.1.01.doc Date : 2017-09-19 Revision : 0.1.01 Copyright, 2017 by Engineering Department, Valence Semiconductor Design Limited. All rights reserved. No part of this document may be

More information

CEL MeshConnect ZICM35x Test Tool User Guide

CEL MeshConnect ZICM35x Test Tool User Guide User Guide 0011-00-17-02-000 CEL MeshConnect ZICM35x Test Tool User Guide CEL MeshConnect ZICM35x Test Tool User Guide Introduction CEL s MeshConnect EM357 Mini Modules combine high performance RF solutions

More information

RN0046 Release note. 1 Introduction. SimpleMAC library for STM32W108xx kits. About this release note

RN0046 Release note. 1 Introduction. SimpleMAC library for STM32W108xx kits. About this release note Release note SimpleMAC library for STM32W108xx kits 1 Introduction About this release note This release note is related to the SimpleMAC library which supports all the available STM32W108xx kits. This

More information

APPLICATION NOTE. How to Securely Switch Atmel s LIN Transceiver ATA6662/ATA6662C to Sleep Mode ATA6662/ATA6662C. Concerning Atmel ATA6662

APPLICATION NOTE. How to Securely Switch Atmel s LIN Transceiver ATA6662/ATA6662C to Sleep Mode ATA6662/ATA6662C. Concerning Atmel ATA6662 APPLICATION NOTE How to Securely Switch Atmel s LIN Transceiver ATA6662/ATA6662C to Sleep Mode ATA6662/ATA6662C Concerning Atmel ATA6662 The goal of this document is to describe how to switch the Atmel

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK C8051F560 DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

More information

1. General Description

1. General Description 1. General Description HPTZ01X (HPTZ01-TTL,HPTZ01P-TTL)Serial ZigBee module is development designed by Ember ZigBee chip EM35x. It is a module base on IEEE 802.15.4-2003 standard for the 2.4G ISM band.

More information

UM LPC54114 Audio and Voice Recognition Kit. Rev February Document information. Keywords

UM LPC54114 Audio and Voice Recognition Kit. Rev February Document information. Keywords Rev. 1.1 25 February 2016 User manual Document information Info Content Keywords LPCXpresso54114, LPC54110, LPC5411x, Voice Abstract LPC54114 audio and voice recognition kit User Manual Revision history

More information

USER GUIDE EDBG. Description

USER GUIDE EDBG. Description USER GUIDE EDBG Description The Atmel Embedded Debugger (EDBG) is an onboard debugger for integration into development kits with Atmel MCUs. In addition to programming and debugging support through Atmel

More information

Chipset Evaluation and Development Loadboard Version 2

Chipset Evaluation and Development Loadboard Version 2 IA MSC-UGLB2 Chipset Evaluation and Development Loadboard Version 2 User Guide Revision 1.0r IA MSC-UGLB2 rev 1.0r 0907 2007, Silicon Laboratories, Inc. Silicon Labs, Inc. 400 West Cesar Chavez Austin,

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK UNIVERSITY DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

More information

UM1084 User manual. CR95HF development software user guide. Introduction. Reference documents

UM1084 User manual. CR95HF development software user guide. Introduction. Reference documents User manual CR95HF development software user guide Introduction The CR95HF development software is a PC software which allows to configure, evaluate, and communicate with ST CR95HF 13.56 MHz multiprotocol

More information

UG0850 User Guide PolarFire FPGA Video Solution

UG0850 User Guide PolarFire FPGA Video Solution UG0850 User Guide PolarFire FPGA Video Solution Microsemi Headquarters One Enterprise, Aliso Viejo, CA 92656 USA Within the USA: +1 (800) 713-4113 Outside the USA: +1 (949) 380-6100 Sales: +1 (949) 380-6136

More information

UM LPCXpresso Rev th November Document information. LPCXpresso54102, LPC54100 LPCXpresso54102 User Manual

UM LPCXpresso Rev th November Document information. LPCXpresso54102, LPC54100 LPCXpresso54102 User Manual LPCXpresso54102 Rev. 1.0 4th November 2014 User manual Document information Info Content Keywords LPCXpresso54102, LPC54100 Abstract LPCXpresso54102 User Manual Revision history Rev Date Description 1.0

More information

AN4440 Application note

AN4440 Application note Application note RFFE HVDAC control Pascal Paillet Introduction The purpose of this application note is to familiarize mobile phone designers with RFFE HVDAC control. Common tasks are explained and more

More information

Emulating Dual SPI Using FlexIO

Emulating Dual SPI Using FlexIO Freescale Semiconductor, Inc. Document Number: AN5242 Application Note Rev. 0, 01/2016 Emulating Dual SPI Using FlexIO 1. Introduction This application note discusses one example of how to use FlexIO module

More information

This section describes the various input and output connections for the SysInt Component.

This section describes the various input and output connections for the SysInt Component. 1.0 Features Generating interrupts from hardware signals Assigning interrupts to a CPU core Configuring interrupt priority Interrupt vectoring and control General Description The Component is a graphical

More information

AN5123 Application note

AN5123 Application note Application note STSPIN32F0A - bootloader and USART protocol Introduction Cristiana Scaramel The STSPIN32F0A is a system-in-package providing an integrated solution suitable for driving three-phase BLDC

More information

AN10955 Full-duplex software UART for LPC111x and LPC13xx

AN10955 Full-duplex software UART for LPC111x and LPC13xx Rev. 1 13 July 2010 Application note Document information Info Content Keywords LPC111X, LPC13XX, UART, software Abstract This application note illustrates how software running on an LPC111X or LPC13XX

More information

BIG8051. Development system. User manual

BIG8051. Development system. User manual BIG8051 User manual All s development systems represent irreplaceable tools for programming and developing microcontroller-based devices. Carefully chosen components and the use of machines of the last

More information

HZX N03 Bluetooth 4.0 Low Energy Module Datasheet

HZX N03 Bluetooth 4.0 Low Energy Module Datasheet HZX-51822-16N03 Bluetooth 4.0 Low Energy Module Datasheet SHEN ZHEN HUAZHIXIN TECHNOLOGY LTD 2017.7 NAME : Bluetooth 4.0 Low Energy Module MODEL NO. : HZX-51822-16N03 VERSION : V1.0 1.Revision History

More information

APPLICATION NOTE. Atmel AT02260: Driving AT42QT1085. Atmel QTouch. Features. Description

APPLICATION NOTE. Atmel AT02260: Driving AT42QT1085. Atmel QTouch. Features. Description APPLICATION NOTE Atmel AT02260: Driving AT42QT1085 Atmel QTouch Features Overview of Atmel AT42QT1085 Circuit configuration with Host MCU SPI communication Demonstration program Description This application

More information

AN4515 Application note

AN4515 Application note Application note Using Batch Acquisition Mode (BAM) to maximize power efficiency on STM32F410/411/412 microcontroller lines Introduction The STM32F410, STM32F411 and STM32F412 lines are part of the STM32

More information

ZSSC4151 Evaluation Kit Hardware Manual

ZSSC4151 Evaluation Kit Hardware Manual Important Notes Restrictions in Use IDT s ZSSC4151 SSC Evaluation Kit, consisting of the SSC Communication Board (SSC CB), ZSSC415x/6x/7x Evaluation Board (SSC EB), Sensor Replacement Board (SSC RB), and

More information

Preliminary File System User Manual

Preliminary File System User Manual GHI Electronics, LLC 501 E. Whitcomb Ave. Madison Heights, Michigan 48071 Phone: (248) 397-8856 Fax: (248) 397-8890 www.ghielectronics.com Preliminary File System User Manual Where Hardware Meets Software

More information

GW-USB-05. User's Guide. FW v1.07. IQRF USB Gateway MICRORISC s.r.o. User_Guide_GW-USB-05_ Page 1

GW-USB-05. User's Guide. FW v1.07. IQRF USB Gateway MICRORISC s.r.o.   User_Guide_GW-USB-05_ Page 1 FW v1.07 IQRF USB Gateway User's Guide 2016 MICRORISC s.r.o. www.iqrf.org User_Guide 160405 Page 1 Description is an IQRF gateway with USB connectivity. It is intended as an interface between IQRF network

More information

Embedded Navigation Solutions VN 100, VN 200 & VN 300 Development Board User Manual

Embedded Navigation Solutions VN 100, VN 200 & VN 300 Development Board User Manual Embedded Navigation Solutions VN 100, VN 200 & VN 300 Development Board User Manual VectorNav Technologies Contact Info 10501 Markison Road Phone +1 512 772 3615 Dallas, Texas 75238 Email support@vectornav.com

More information

Hello, and welcome to this presentation of the STM32L4 power controller. The STM32L4 s power management functions and all power modes will also be

Hello, and welcome to this presentation of the STM32L4 power controller. The STM32L4 s power management functions and all power modes will also be Hello, and welcome to this presentation of the STM32L4 power controller. The STM32L4 s power management functions and all power modes will also be covered in this presentation. 1 Please note that this

More information

SH69P21 EVB. Application Note for SH69P21 EVB SH69P21 EVB SH69P21

SH69P21 EVB. Application Note for SH69P21 EVB SH69P21 EVB SH69P21 SH69P21 EVB Application Note for SH69P21 EVB The SH69P21 EVB is used to evaluate the SH69P21 chip's function for the development of application program. It contains of a SH69V21 chip to evaluate the functions

More information

WM1030 Rev Introduction. Ultra low power DASH7 Modem. Applications. Description. 868 / 915 MHz. Features. WIZZILAB Technical datasheet 1/10

WM1030 Rev Introduction. Ultra low power DASH7 Modem. Applications. Description. 868 / 915 MHz. Features. WIZZILAB Technical datasheet 1/10 WM1030 Rev. 1.2 Applications Wireless sensor network Data acquisition equipment Security systems Industrial monitor and control Internet of things (IoT) Ultra low power DASH7 Modem 868 / 915 MHz 1 Introduction

More information

FM3. MB9B500 Series 32-BIT MICROCONTROLLER FSS MB9BF506R EV-BOARD USER MANUAL APPLICATION NOTE FUJITSU SEMICONDUCTOR (SHANGHAI) LIMITED

FM3. MB9B500 Series 32-BIT MICROCONTROLLER FSS MB9BF506R EV-BOARD USER MANUAL APPLICATION NOTE FUJITSU SEMICONDUCTOR (SHANGHAI) LIMITED MCU-AN-510014-E-10 FM3 32-BIT MICROCONTROLLER MB9B500 Series FSS MB9BF506R EV-BOARD USER MANUAL APPLICATION NOTE For more information for the FM3 microcontroller, visit the web site at: http://www.fujitsu.com/global/services/microelectronics/product/micom/roadmap/industrial/fm3/

More information

AVR- M16 development board Users Manual

AVR- M16 development board Users Manual AVR- M16 development board Users Manual All boards produced by Olimex are ROHS compliant Rev. C, January 2005 Copyright(c) 2009, OLIMEX Ltd, All rights reserved Page1 INTRODUCTION AVR-M16 is header board

More information

ECO and Workarounds for Bugs in ESP32

ECO and Workarounds for Bugs in ESP32 ECO and Workarounds for Bugs in ESP32 Version 1.5 Copyright 2018 About This Guide This document details the bugs in the ESP32. The structure is as follows: Chapter Title Content Chapter 1 Chip Revision

More information

PICado Alpha Development Board V1.0

PICado Alpha Development Board V1.0 V1.0 Bluetooth Transceiver Module HC-05 Four onboard FET power output stage 34 freely assignable I/O pins ICSP interface 2015 Jan Ritschard, All rights reserved. V1.0 Table of Contents 1. Introduction...

More information

MV-65 sends MIDI Bank Select and Program Change messages in 16 banks of 8 program each.

MV-65 sends MIDI Bank Select and Program Change messages in 16 banks of 8 program each. MIDI Program Change and Bank Select chip MV-65 Chip MV-65 PedalSync MIDI Program Change and Bank Select chip MV-65 is designed to add additional functionality to the PedalSync Master Control Dev. Board

More information

Product Brief. Model: TLM922S-P01A. Ver.1.0

Product Brief. Model: TLM922S-P01A. Ver.1.0 Product Brief Model: TLM922S-P01A Ver.1.0 1 Index 1. Overview... 3 2. Product Features... 3 3. Application... 4 4. Product Specifications... 4 5. PIN Definition... 6 6. PCB Dimension... 7 7. Pin Configuration...

More information

ESP-01 WiFi Module Version1.0

ESP-01 WiFi Module Version1.0 ESP-01 WiFi Module Version1.0 sherry@aithinker.com Disclaimer and Copyright Notice. Information in this document, including URL references, is subject to change without notice. THIS DOCUMENT IS PROVIDED

More information

AND9407/D Low Power Techniques of LC Series for Audio Applications

AND9407/D Low Power Techniques of LC Series for Audio Applications Low Power Techniques of LC823450 Series for Audio Applications Introduction This application note describes low power techniques to enable customers to control the power consumption to meet their operation

More information

SH69P48A EVB. Application Notes for SH69P48A EVB SH69V48A JP2 J4(ICE_J4) S1 IDD TEST JP1 74HC273 JP4 JP3 74HC273 JP6 STKOVE JP7 SW1 J5(ICE_J5)

SH69P48A EVB. Application Notes for SH69P48A EVB SH69V48A JP2 J4(ICE_J4) S1 IDD TEST JP1 74HC273 JP4 JP3 74HC273 JP6 STKOVE JP7 SW1 J5(ICE_J5) SH69P48A EVB Application Notes for SH69P48A EVB The SH69P48A EVB is used to evaluate the SH69P48A chip's function for the development of application program. It contains of a SH69V48A chip to evaluate

More information

ED1021 I/O Expander with UART interface & analog inputs

ED1021 I/O Expander with UART interface & analog inputs Preliminary Highlights 2.7V 5V power supply range. 12 GPIOs. Up to 40mA maximum current in each output except GPIO8 (up to a total device current of 175mA). Most GPIOs can be an input to a 10bit ADC. Simple

More information