SONIX reserves the right to make change without further notice to any products herein to improve reliability, function or design. SONIX does not
assume any liability arising out of the application or use of any product or circuit described herein; neither does it convey any license under its patent
rights nor the rights of others. SONIX products are not designed, intended, or authorized for us as components in systems intended, for surgical
implant into the body, or other applications intended to support or sustain life, or for any other application in which the failure of the SONIX product
could create a situation where personal injury or death may occur. Should Buyer purchase or use SONIX products for any such unintended or
unauthorized application. Buyer shall indemnify and hold SONIX and its officers, employees, subsidiaries, affiliates and distributors harmless against
all claims, cost, damages, and expenses, and reasonable attorney fees arising out of, directly or indirectly, any claim of personal injury or death
associated with such unintended or unauthorized use even if such claim alleges that SONIX was negligent regarding the design or manufacture of
Page 1
SONIX products are not designed, intended, or authorized for us as components in systems intended, for surgical implant into the body, or other applications intended to support or sustain life, or for any other application in which the failure of the SONIX product could create a situation where personal injury or death may occur.
SN8P2711A 8-Bit Micro-Controller AMENDENT HISTORY Version Date Description VER 0.1 Jun. 2007 First issue. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 2...
SN8P2711A 8-Bit Micro-Controller PRODUCT OVERVIEW SN8P2711A is modified from SN8P2711. Good internal high RC frequency 16MHz±2%. Good high noisy protecting performance for household application. SN8P2711 is compatible to SN8P2711A. Better IHRC performance from 16MHz±5% to 16MHz±2%. Good brown out reset production.
Page 8
0xnnFF ROM address. 32KHz oscillator mode Not support. Support 32KHz mode. SN8P2711 SN8 file can program into SN8P2711A SN8 file (e.g. Re-compile SN8P2711A OTP directly by EZ/MP SN8P2711 source code with declaring Firmware comparison writer. S8P2711A, SN8P2711A new code... ) can't program into SN8P2711 OTP directly by EZ/MP writer.
Input Bus Output Output Bus Latch Int. Osc. Port 0.4 structure: Ext. Reset Code Option Int. Bus Int. Rst Port 0, 5 structure: Pull-Up PnM, PnUR Input Bus Output Output Bus Latch Version 0.1 SONiX TECHNOLOGY CO., LTD Page 12...
Page 13
Pull-Up P4CON PnM, PnUR EVHENB Input Bus Output Output Bus Latch GCHS Int. ADC Int. VERFH Port 4 structure: Pull-Up P4CON PnM, PnUR Input Bus Output Output Bus Latch GCHS Int. ADC Version 0.1 SONiX TECHNOLOGY CO., LTD Page 13...
Jump to user start address 0001H General purpose area 0007H 0008H User interrupt vector Interrupt vector 0009H User program 000FH 0010H 0011H General purpose area 03FCH End of user program 03FDH Reserved 03FEH 03FFH Version 0.1 SONiX TECHNOLOGY CO., LTD Page 14...
Example: Defining Reset Vector ; 0000H START ; Jump to user program address. … START: ; 0010H, The head of user program. … ; User program … ENDP ; End of program Version 0.1 SONiX TECHNOLOGY CO., LTD Page 15...
RETI ; End of interrupt service routine … START: ; The head of user program. … ; User program … START ; End of user program … ENDP ; End of program Version 0.1 SONiX TECHNOLOGY CO., LTD Page 16...
Page 17
ENDP ; End of program. Note: It is easy to understand the rules of SONIX program from demo programs given above. These points are as following: 1. The address 0000H is a “JMP” instruction to make the program starts from the beginning.
Y register must be added one. The following INC_YZ macro shows a simple method to process Y and Z registers automatically. Example: INC_YZ macro. INC_YZ MACRO INCMS ; Z+1 ; Not overflow INCMS ; Y+1 ; Not overflow ENDM Version 0.1 SONiX TECHNOLOGY CO., LTD Page 18...
Page 19
; To lookup data. If BUF = 0, data is 0x0035 ; If BUF = 1, data is 0x5105 ; If BUF = 2, data is 0x2012 … TABLE1: 0035H ; To define a word (16 bits) data. 5105H 2012H … Version 0.1 SONiX TECHNOLOGY CO., LTD Page 19...
; ACC = 3, jump to A3POINT SONIX provides a macro for safe jump table function. This macro will check the ROM boundary and move the jump table to the right position automatically. The side effect of this macro maybe wastes some ROM size.
Page 21
SN8P2711A 8-Bit Micro-Controller Example: “@JMP_A” application in SONIX macro file called “MACRO3.H”. B0MOV A, BUF0 ; “BUF0” is from 0 to 4. @JMP_A ; The number of the jump table listing is five. A0POINT ; ACC = 0, jump to A0POINT A1POINT ;...
; If Not jump to checksum calculate CHECKSUM_END ; If Yes checksum calculated is done. Y_ADD_1: INCMS ; Increase Y ; Jump to checksum calculate CHECKSUM_END: … … END_USER_CODE: ; Label of program end Version 0.1 SONiX TECHNOLOGY CO., LTD Page 22...
If users define watchdog as “Always_On”, assembler will Enable “Watch_Dog” automatically. Fcpu code option is only available for High Clock. Fcpu of slow mode is Fosc/4 (the Fosc is internal low clock). Version 0.1 SONiX TECHNOLOGY CO., LTD Page 23...
General purpose area “ “ “ 03Fh BANK 0 080h 080h~0FFh of Bank 0 store system registers (128 bytes). “ “ System register “ “ “ 0FFh End of bank 0 area Version 0.1 SONiX TECHNOLOGY CO., LTD Page 24...
2. All of register names had been declared in SN8ASM assembler. 3. One-bit name had been declared in SN8ASM assembler with “F” prefix code. 4. “b0bset”, “b0bclr”, ”bset”, ”bclr” instructions are only available to the “R/W” registers. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 26...
“PUSH”, “POP” save and load ACC, PFLAG data into buffers. Example: Protect ACC and working registers. INT_SERVICE: PUSH ; Save ACC and PFLAG to buffers. … … ; Load ACC and PFLAG from buffers. RETI ; Exit interrupt service vector Version 0.1 SONiX TECHNOLOGY CO., LTD Page 27...
1 = The result of an arithmetic/logic/branch operation is zero. 0 = The result of an arithmetic/logic/branch operation is not zero. Note: Refer to instruction set table for detailed information of C, DC and Z flags. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 28...
If the ACC is equal to the immediate data or memory, the PC will add 2 steps to skip next instruction. CMPRS A, #12H ; To skip, if ACC = 12H. C0STEP ; Else jump to C0STEP. … … C0STEP: Version 0.1 SONiX TECHNOLOGY CO., LTD Page 29...
Page 30
DECS BUF0 C0STEP ; Jump to C0STEP if ACC is not zero. … … C0STEP: DECMS instruction: DECMS BUF0 C0STEP ; Jump to C0STEP if BUF0 is not zero. … … C0STEP: Version 0.1 SONiX TECHNOLOGY CO., LTD Page 30...
Page 31
; If ACC = 0, jump to A0POINT A1POINT ; ACC = 1, jump to A1POINT A2POINT ; ACC = 2, jump to A2POINT A3POINT ; ACC = 3, jump to A3POINT … … Version 0.1 SONiX TECHNOLOGY CO., LTD Page 31...
; Clear @YZ to be zero DECMS ; Z – 1, if Z= 0, finish the routine CLR_YZ_BUF ; Not zero END_CLR: ; End of clear general purpose data memory area of bank 0 … Version 0.1 SONiX TECHNOLOGY CO., LTD Page 32...
Bit 3 Bit 2 Bit 1 Bit 0 RBIT7 RBIT6 RBIT5 RBIT4 RBIT3 RBIT2 RBIT1 RBIT0 Read/Write After reset Note: Please refer to the “LOOK-UP TABLE DESCRIPTION” about R register look-up table application. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 33...
; To clear Y register to access RAM bank 0. B0MOV Z, #12H ; To set an immediate data 12H into Z register. B0MOV A, @YZ ; Use data pointer @YZ reads a data from RAM location ; 012H into ACC. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 34...
(PC) to the program counter registers. The Stack-Restore operation is as the following table. STKP Register Stack Buffer Stack Level Description STKPB2 STKPB1 STKPB0 High Byte Low Byte STK3H STK3L STK2H STK2L STK1H STK1L STK0H STK0L Free Free Version 0.1 SONiX TECHNOLOGY CO., LTD Page 37...
High Detect Low Detect Watchdog Overflow Watchdog Normal Run Watchdog Reset Watchdog Stop System Normal Run System Status System Stop Power On External Watchdog Delay Time Reset Delay Reset Delay Time Time Version 0.1 SONiX TECHNOLOGY CO., LTD Page 38...
Clearing watchdog timer program is only at one part of the program. This way is the best structure to enhance the watchdog timer function. Note: Please refer to the “WATCHDOG TIMER” about watchdog timer detail information. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 39...
DC low battery condition. When turn off the AC power, the VDD drops slowly and through the dead-band for a while. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 40...
2. For AC power application and enhance EFT performance, the system clock is 4MHz/4 (1 mips) and use external reset (“ Zener diode reset circuit”, “Voltage bias reset circuit”, “External reset IC”). The structure can improve noise effective and get good EFT characteristic. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 41...
Page 42
Delay Time The LVD (low voltage detector) is built-in Sonix 8-bit MCU to be brown out reset protection. When the VDD drops and is below LVD detect voltage, the LVD would be triggered, and the system is reset. The LVD detect level is different by each MCU.
Page 43
IC”. These three reset structures use external reset signal and control to make sure the MCU be reset under power dropping and under dead-band. The external reset information is described in the next section. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 43...
The reset signal is slower than VDD power up timing, and system occurs a power on signal from the timing difference. Note: The reset circuit is no any protection against unusual power or brown out reset. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 44...
PNP transistor outputs high voltage and MCU operates normally. When VDD is below “Vz + 0.7V”, the C terminal of the PNP transistor outputs low voltage and MCU is in reset mode. Decide the reset detect voltage by zener specification. Select the right zener voltage to conform the application. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 45...
When power drops below the reset detect voltage, the system reset would be triggered, and then system executes reset sequence. That makes sure the system work well under unstable power situation. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 46...
The external reset circuit also use external reset IC to enhance MCU reset performance. This is a high cost and good effect solution. By different application and system requirement to select suitable reset IC. The reset circuit can improve all power variation. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 47...
Fcpu = Fhosc / N, N = 1 ~ 16, Select N by Fcpu code option. Slow Mode (Low Clock): Fcpu = Flosc/4. SONIX provides a “Noise Filter” controlled by code option. In high noisy situation, the noise filter can isolate noise outside and protect system works well. 4.2 CLOCK BLOCK DIAGRAM...
Example: When entering the power down mode (sleep mode), both high-speed oscillator and internal low-speed oscillator will be stopped. B0BSET FCPUM0 ; To stop external high-speed oscillator and internal low-speed ; oscillator called power down mode (sleep mode). Version 0.1 SONiX TECHNOLOGY CO., LTD Page 49...
High_Clk code option. The start up time of crystal/ceramic and RC type oscillator is different. RC type oscillator’s start-up time is very short, but the crystal’s is longer. The oscillator start-up time decides reset time length. 4MHz Crystal 32768Hz Crystal 4MHz Ceramic Version 0.1 SONiX TECHNOLOGY CO., LTD Page 50...
“R” value is to change frequency. 50P~100P is good value for “C”. XOUT pin is general purpose I/O pin. Note: Connect the R and C as near as possible to the VDD pin of micro-controller. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 51...
XIN pin. XOUT pin is general purpose I/O pin. External Clock Input XOUT Note: The GND of external oscillator circuit must be as near as possible to VSS pin of micro-controller. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 52...
; To stop external high-speed oscillator and internal low-speed ; oscillator called power down mode (sleep mode). Note: The internal low-speed clock can’t be turned off individually. It is controlled by CPUM0, CPUM1 (32K, watchdog disable) bits of OSCM register. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 53...
; Output Fcpu toggle signal in low-speed clock mode. B0BCLR P0.0 ; Measure the Fcpu frequency by oscilloscope. Note: Do not measure the RC frequency directly from XIN; the probe impendence will affect the RC frequency. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 54...
; Set CPUM1 = 1. Note: If TC0 timer wakeup function is disabled in the green mode, only the wakeup pin and reset pin can wakeup the system backs to the previous operation mode. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 57...
Page 58
Bit 4 Bit 3 Bit 2 Bit 1 Bit 0 TC1X8 TC0X8 TC0GN Read/Write After reset Bit 1 TC0GN: TC0 green mode wake-up function control bits. 0 = Disable. 1 = Enable. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 58...
The wakeup time is as the following. The wakeup time = 1/Fosc * 2048 = 0.512 ms (Fosc = 4MHz) The total wakeup time = 0.512ms + oscillator start-up time Version 0.1 SONiX TECHNOLOGY CO., LTD Page 59...
Interrupt Vector Address (0008H) TC0IRQ 5-Bit Enable TC0 Time Out TC1IRQ TC1 Time Out Global Interrupt Request Signal Latchs Gating ADCIRQ ADC Converting Successfully Note: The GIE bit must enable during all interrupt operation. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 60...
0 = Disable global interrupt. 1 = Enable global interrupt. Example: Set global interrupt control bit (GIE). B0BSET FGIE ; Enable GIE Note: The GIE bit must enable during all interrupt operation. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 63...
Example: Store ACC and PAFLG data by PUSH, POP instructions when interrupt service routine executed. START INT_SERVICE START: … INT_SERVICE: PUSH ; Save ACC and PFLAG to buffers. … … ; Load ACC and PFLAG from buffers. RETI ; Exit interrupt service vector … ENDP Version 0.1 SONiX TECHNOLOGY CO., LTD Page 64...
A, #74H B0MOV TC0C, A ; Reset TC0C. … ; TC0 interrupt service routine … EXIT_INT: … ; Pop routine to load ACC and PFLAG from buffers. RETI ; Exit interrupt vector Version 0.1 SONiX TECHNOLOGY CO., LTD Page 68...
A, #74H B0MOV TC1C, A ; Reset TC1C. … ; TC1 interrupt service routine … EXIT_INT: … ; Pop routine to load ACC and PFLAG from buffers. RETI ; Exit interrupt vector Version 0.1 SONiX TECHNOLOGY CO., LTD Page 69...
; Jump to exit of IRQ B0BTS0 FADCIRQ ; Check ADCIRQ INTADC ; Jump to ADC interrupt service routine INT_EXIT: … ; Pop routine to load ACC and PFLAG from buffers. RETI ; Exit interrupt vector Version 0.1 SONiX TECHNOLOGY CO., LTD Page 72...
; Set all ports to be output mode. B0MOV P0M, A B0MOV P4M,A B0MOV P5M, A B0BCLR P4M.0 ; Set P4.0 to be input mode. B0BSET P4M.0 ; Set P4.0 to be output mode. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 73...
Note: P0.4 is input only pin and without pull-up resister. The P0UR.4 keeps “1”. Example: I/O Pull up Register A, #0FFH ; Enable Port0, 4, 5 Pull-up register, B0MOV P0UR, A B0MOV P4UR,A B0MOV P5UR, A Version 0.1 SONiX TECHNOLOGY CO., LTD Page 74...
Example: Write one bit data to output port. B0BSET P4.0 ; Set P4.0 and P5.3 to be “1”. B0BSET P5.3 B0BCLR P4.0 ; Set P4.0 and P5.3 to be “0”. B0BCLR P5.3 Version 0.1 SONiX TECHNOLOGY CO., LTD Page 75...
Note: For P4.n general purpose I/O function, users should make sure of P4.n’s ADC channel is disabled, or P4.n is automatically set as ADC analog input when GCHS = 1 and CHS[2:0] point to P4.n. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 76...
Page 77
; Set P4.1 output buffer to avoid glitch. B0BSET P4.1 ; Set P4.1 buffer as “1”. ; or B0BCLR P4.1 ; Set P4.1 buffer as “0”. ; Enable P4.1 output mode. B0BSET P4M.1 ; Set P4.1 as input mode. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 77...
Page 78
;If CHS[2:0] don’t point to P4.0 (CHS[2:0] ≠ 000B), don’t care GCHS status. ; Clear P4CON. B0BCLR P4CON.0 ; Enable P4.0 digital function. ; Enable P4.0 input mode. B0BCLR P4M.0 ; Set P4.0 as input mode. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 78...
Page 79
; Set P4.0 output buffer to avoid glitch. B0BSET P4.0 ; Set P4.0 buffer as “1”. ; or B0BCLR P4.0 ; Set P4.0 buffer as “0”. ; Enable P4.0 output mode. B0BSET P4M.0 ; Set P4.0 as input mode. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 79...
Example: An operation of watchdog timer is as following. To clear the watchdog timer counter in the top of the main routine of the program. Main: A,#5AH ; Clear the watchdog timer. B0MOV WDTR,A … CALL SUB1 CALL SUB2 … … … MAIN Version 0.1 SONiX TECHNOLOGY CO., LTD Page 80...
Page 81
; I/O and RAM are correct. Clear watchdog timer and ; execute program. B0BSET FWDRST ; Only one clearing watchdog timer of whole program. … CALL SUB1 CALL SUB2 … … … MAIN Version 0.1 SONiX TECHNOLOGY CO., LTD Page 81...
0 = Disable TC0 timer. 1 = Enable TC0 timer. Note: When TC0CKS=1, TC0 became an external event counter and TC0RATE is useless. No more P0.0 interrupt request will be raised. (P0.0IRQ will be always 0). Version 0.1 SONiX TECHNOLOGY CO., LTD Page 84...
0x00~0xFF 00000000b~11111111b Overflow per 256 count (Fosc/1~ 0x00~0x3F xx000000b~xx111111b Overflow per 64 count Fosc/128) 0x00~0x1F xxx00000b~xxx11111b Overflow per 32 count 0x00~0x0F xxxx0000b~xxxx1111b Overflow per 16 count 0x00~0xFF 00000000b~11111111b Overflow per 256 count Version 0.1 SONiX TECHNOLOGY CO., LTD Page 85...
Page 86
2 us 62.5 ms 488.281 us Fosc/4 0.256 ms 1 us 31.25 ms 244.141 us Fosc/2 0.128 ms 0.5 us 15.625 ms 122.07 us Fosc/1 0.064 ms 0.25 us 7.813 ms 61.035 us Version 0.1 SONiX TECHNOLOGY CO., LTD Page 86...
; Enable TC0 output to P5.4 and disable P5.4 I/O function B0BSET FALOAD1 ; Enable TC0 auto-reload function B0BSET FTC0ENB ; Enable TC0 timer Note: Buzzer output is enable, and “PWM0OUT” must be “0”. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 88...
0 = TC1 internal clock source is Fcpu. TC1RATE is from Fcpu/2~Fcpu/256. 1 = TC1 internal clock source is Fosc. TC1RATE is from Fosc/1~Fosc/128. Note: Under TC1 event counter mode (TC1CKS=1), TC1X8 bit and TC1RATE are useless. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 92...
Page 94
2 us 62.5 ms 488.281 us Fosc/4 0.256 ms 1 us 31.25 ms 244.141 us Fosc/2 0.128 ms 0.5 us 15.625 ms 122.07 us Fosc/1 0.064 ms 0.25 us 7.813 ms 61.035 us Version 0.1 SONiX TECHNOLOGY CO., LTD Page 94...
; Enable TC1 output to P5.3 and disable P5.3 I/O function B0BSET FALOAD1 ; Enable TC1 auto-reload function B0BSET FTC1ENB ; Enable TC1 timer Note: Buzzer output is enable, and “PWM1OUT” must be “0”. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 96...
125K Overflow per 16 count The Output duty of PWM is with different TCnR. Duty range is from 0/256~255/256. …… …… …… …… TCn Clock TCnR=00H High TCnR=01H High TCnR=80H High TCnR=FFH Version 0.1 SONiX TECHNOLOGY CO., LTD Page 99...
2 and period 4, and the new duty is changed in next period. By the way, system can avoid the PWM not changing or H/L changing twice in the same cycle and will prevent the unexpected or error operation. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 101...
TC0R, A INCMS BUF0 ; Get the new TC0R value from the BUF0 buffer defined by ; programming. B0MOV A, BUF0 B0MOV TC0R, A Note: The PWM can work with interrupt request. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 102...
ADC circuit will set EOC bit to “1” and final 12-bits value output in ADB and ADR low-nibble registers. AIN0/P4.0 AIN1/P4.1 AIN2/P4.2 CONVERTER AIN3/P4.3 (ADC) 12-Bits AIN4/P4.4 AIN5 (Internal 1/4 VDD) Version 0.1 SONiX TECHNOLOGY CO., LTD Page 103...
Note: If ADENB = 1, users should set P4.n/AINn as input mode without pull-up. System doesn’t set automatically. If P4CON.n is set, the P4.n/AINn’s digital I/O function including pull-up is isolated. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 104...
1 = P4.n is pure analog input, can’t be a digital I/O pin. Note: When Port 4.n is general I/O port not ADC channel, P4CON.n must set to “0” or the Port 4.n digital I/O signal would be isolated. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 107...
; To get AIN0 input data bit11 ~ bit4 B0MOV Adc_Buf_Hi, A B0MOV A, ADR ; To get AIN0 input data bit3 ~ bit0 A, 0FH B0MOV Adc_Buf_Low, A End_ADC: B0BCLR FADENB ; Disable ADC circuit Version 0.1 SONiX TECHNOLOGY CO., LTD Page 110...
Page 111
; To get AIN0 input data bit11 ~ bit4 B0MOV Adc_Buf_Hi, A B0MOV A, ADR ; To get AIN0 input data bit3 ~ bit0 A, 0FH B0MOV Adc_Buf_Low, A B0BCLR FADENB ; Disable ADC circuit ADC_INT_EXIT: RETI Version 0.1 SONiX TECHNOLOGY CO., LTD Page 111...
Reference High Voltage Input 47uF 0.1uF ADC reference high voltage is from external voltage and AIN0/P4.0 is VERFH input. The capacitor (47uF) between VREFH and VSS is necessary to stable VERFH voltage. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 112...
Note: 1. “M” is system register or RAM. If “M” is system registers then “N” = 0, otherwise “N” = 1. 2. If branch condition is true then “S = 1”, otherwise “S = 0”. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 113...
OTP programming is controlled by ICE without firmware upgrade suffers. Please refer easy writer user manual for detailed information. In SN8P2711A OTP programming by Easy Writer, the crystal of ICE must be 16MHz. Connect Easy Writer to ICE through a 60-pin cable which shipping with Easy Writer.
12.4 SN8P2711 EV KIT 12.4.1 PCB DESCRIPTION SONIX provides SN8P2711 EV Kit Ver. A for function emulation. For Sn8P2711 ICE emulation, the EV kit provides ADC internal reference voltage and LVD 2.4V/3.6V selection circuits. CON1: I/O port and ADC reference input. Connect to SN8ICE 2K CON1.
Page 119
P4.0 VREFH R36, P37: R36=300K ohm, R37= 100K ohm. The bias voltage is equal to 1/4 VDD and emulates SN8P2711A internal 1/4 VDD voltage for low battery detector by ADC channel 5. C9~C14: Connect 47uF capacitors to AIN0~AIN5 input which are ADC channel 0~5 bypass capacitors.
The connection from SN8P2711 EV KIT to SN8ICE 2K is as following. The ADC reference voltage is supplied by SN8P2711 EV KIT. The AVREFH/VDD jump pin of SN8ICE 2K must be removed. Version 0.1 SONiX TECHNOLOGY CO., LTD Page 120...
12.5 TRANSITION BOARD FOR OTP PROGRAMMING 12.5.1 SN8P2711 V3 TRANSITION BOARD SN8P2711 V3 transition board is for SN8P2711A OTP programming including P-DIP 14 pin, SOP 14 pin and SSOP 16 pin sockets connection. JP2: Connect to EZ or EZ_MP writer.
SN8P2711A 8-Bit Micro-Controller 12.6.2 PROGRAMMING PIN MAPPING: Programming Information of SN8P2711A Series Chip Name SN8P2711AP,S SN8P2711AX EZ Writer OTP IC / JP3 Pin Assigment Connector Number Name Number Number P4.0 P4.0 P4.4 P4.4 P4.1 P4.1 ALSB/PDB P0.2 P0.2 Note:Use M2IDE V1.06 (or after version) to simulation.
Marking Definition 14.1 INTRODUCTION There are many different types in Sonix 8-bit MCU production line. This note listed the production definition of all 8-bit MCU for order or obtain information. This definition is only for Blank OTP MCU. 14.2 MARKING INDETIFICATION SYSTEM SN8 X PART No.
Need help?
Do you have a question about the SN8P2711A and is the answer not in the manual?
Questions and answers