background image

SN8P2501D 

8-Bit  Micro-Controller

 

SONiX TECHNOLOGY CO., LTD

                           

Page 57

                                                Version 1.5

 

 

6.7  T0 INTERRUPT OPERATION 

When  the  T0C  counter  occurs  overflow,  the  T0IRQ  will  be  set  to 

“1”  however  the  T0IEN  is  enable  or  disable.  If  the 

T0IEN = 1, the trigger event will make the T0IRQ to be 

“1” and the system enter interrupt vector. If the T0IEN = 0, the 

trigger  event  will  make  the  T0IRQ  to be 

“1” but the system will not enter interrupt vector. Users need to care  for the 

operation under multi-interrupt situation. 
 

 

Example: T0 interrupt request setup. Fcpu = 16MHz / 16. 

 
 

B0BCLR 

FT0IEN 

; Disable T0 interrupt service 

 

B0BCLR 

FT0ENB 

; Disable T0 timer 

 

MOV 

A, #20H 

 

B0MOV 

T0M, A 

; Set T0 clock = Fcpu / 64 

 

MOV 

A, #64H 

; Set T0C initial value = 64H   

 

B0MOV 

T0C, A 

; Set T0 interval = 10 ms 

 

 

 

 

 

B0BSET 

FT0IEN 

; Enable T0 interrupt service 

 

B0BCLR 

FT0IRQ 

; Clear T0 interrupt request flag 

 

B0BSET 

FT0ENB 

; Enable T0 timer 

 

 

 

 

 

B0BSET   

FGIE 

; Enable GIE 

 
 

Example: T0 interrupt service routine as no RTC function. 

 
 

ORG 

; Interrupt vector 

 

JMP   

INT_SERVICE 

 

INT_SERVICE:   

 

 

 

 

 

 

 

… 

 

; Push routine to save ACC and PFLAG to buffers. 

 

 

 

 

 

B0BTS1 

FT0IRQ 

; Check T0IRQ 

 

JMP 

EXIT_INT 

; T0IRQ = 0, exit interrupt vector 

 

 

 

 

 

B0BCLR 

FT0IRQ 

; Reset T0IRQ 

 

MOV 

A, #64H 

 

 

B0MOV 

T0C, A 

; Reset T0C. 

 

… 

 

; T0 interrupt service routine 

 

… 

 

 

EXIT_INT: 

 

 

 

 

… 

 

; Pop routine to load ACC and PFLAG from buffers. 

 

 

 

 

 

 

 

 

 

RETI 

 

; Exit interrupt vector 

 

Содержание SN8P25011D

Страница 1: ...rized 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 SON...

Страница 2: ...R 1 0 Nov 2013 First issue VER 1 1 Oct 2014 Modify system clock timing section VER 1 2 Mar 2015 Modify operating voltage VER 1 3 Jan 2016 Add SN8P2501D is compatible to SN8P2511 description VER 1 4 Ju...

Страница 3: ...TER DESCRIPTION 20 2 2 1 3 BIT DEFINITION of SYSTEM REGISTER 21 2 2 2 ACCUMULATOR 22 2 2 3 PROGRAM FLAG 23 2 2 4 PROGRAM COUNTER 24 2 2 5 Y Z REGISTERS 26 2 2 6 R REGISTER 26 2 3 ADDRESSING MODE 27 2...

Страница 4: ...SCM REGISTER 43 4 7 SYSTEM CLOCK MEASUREMENT 43 4 8 SYSTEM CLOCK TIMING 44 5 5 5 SYSTEM OPERATION MODE 47 5 1 OVERVIEW 47 5 2 NORMAL MODE 48 5 3 SLOW MODE 48 5 4 POWER DOWN MODE 48 5 5 GREEN MODE 49 5...

Страница 5: ...ATION PWM 78 8 3 9 TC0 TIMER OPERATION EXPLAME 80 9 9 9 INSTRUCTION TABLE 82 1 1 10 0 0 ELECTRICAL CHARACTERISTIC 83 10 1 ABSOLUTE MAXIMUM RATING 83 10 2 ELECTRICAL CHARACTERISTIC 83 10 3 CHARACTERIST...

Страница 6: ...Fosc 1 Fosc 2 Fosc 4 Fosc 8 Fosc 16 RAM size 48 8 bits One 8 bit basic timer with RTC 0 5Sec 4 levels stack buffer One 8 bit timer with external event counter Buzzer and PWM TC0 3 interrupt sources 2...

Страница 7: ...OUNTER P0 P5 P1 PWM BUZZER ALU PC FLAGS IR OTP ROM PWM0 BUZZER0 P2 1 3 PIN ASSIGNMENT SN8P2501DP P DIP 14 pins SN8P2501DS SOP 14 pins P2 2 1 U 14 P2 3 P2 1 2 13 P2 4 P2 0 3 12 P2 5 VDD 4 11 VSS P1 3 X...

Страница 8: ...icro Controller SONiX TECHNOLOGY CO LTD Page 8 Version 1 5 SN8P25011DP P DIP 8 pins SN8P25011DS SOP 8 pins VDD 1 U 8 VSS P1 3 XIN 2 7 P0 0 INT0 P1 2 XOUT 3 6 P1 0 P1 1 RST VPP 4 5 P5 4 BZ0 PWM0 SN8P25...

Страница 9: ...nput pin P1 0 I O P1 0 Bi direction pin Schmitt trigger structure as input mode Built in pull up resisters Level change wake up Programmable open drain structure P1 2 XOUT I O XOUT Oscillator output p...

Страница 10: ...Reset Oscillator shared pin structure Pull Up Resistor Output Latch Pin PnUR PnM I O Input Bus I O Output Bus PnM High_Clk Code Option Oscillator Driver GPIO structure Pull Up Resistor Output Latch P...

Страница 11: ...pt vector User interrupt vector 0009H General purpose area User program 000FH 0010H 0011H 03FCH End of user program 03FDH Reserved 03FEH 03FFH The ROM includes Reset vector Interrupt vector General pu...

Страница 12: ...ernal reset or watchdog timer overflow reset then the chip will restart the program from address 0000h and all system registers will be set as default values It is easy to know reset status from NT0 N...

Страница 13: ...ing example shows the way to define the interrupt vector in the program memory Note PUSH POP instructions save and load ACC PFLAG without NT0 NPD PUSH POP buffer is a unique buffer and only one level...

Страница 14: ...am User program JMP START End of user program MY_IRQ The head of interrupt service routine PUSH Save ACC and PFLAG register to buffers POP Load ACC and PFLAG register from buffers RETI End of interrup...

Страница 15: ...lookup table1 s low address MOVC To lookup data R 00H ACC 35H Increment the index address for next address INCMS Z Z 1 JMP F Z is not overflow INCMS Y Z overflow FFH 00 Y Y 1 NOP MOVC To lookup data R...

Страница 16: ...ord 16 bits data DW 5105H DW 2012H The other example of look up table is to add Y or Z index register by accumulator Please be careful if carry happen Example Increase Y and Z register by B0ADD ADD in...

Страница 17: ...ROM boundary B0ADD PCL A PCL PCL ACC PCH 1 when PCL overflow occurs JMP A0POINT ACC 0 jump to A0POINT JMP A1POINT ACC 1 jump to A1POINT JMP A2POINT ACC 2 jump to A2POINT JMP A3POINT ACC 3 jump to A3PO...

Страница 18: ...table listing is five 0X00FD JMP A0POINT ACC 0 jump to A0POINT 0X00FE JMP A1POINT ACC 1 jump to A1POINT 0X00FF JMP A2POINT ACC 2 jump to A2POINT 0X0100 JMP A3POINT ACC 3 jump to A3POINT 0X0101 JMP A4...

Страница 19: ...end_addr2 CLR Y Set Y to 00H CLR Z Set Z to 00H MOVC B0BSET FC Clear C flag ADD DATA1 A Add A to Data1 MOV A R ADC DATA2 A Add R to Data2 JMP END_CHECK Check if the YZ address the end of code AAA INC...

Страница 20: ...T0C TC0M TC0C STKP E P0UR P1UR P2UR P5UR YZ P1OC F STK3L STK3H STK2L STK2H STK1L STK1H STK0L STK0H 2 2 1 2 SYSTEM REGISTER DESCRIPTION R Working register and ROM look up data buffer Y Z Working YZ and...

Страница 21: ...R W P2 0D5H P54 R W P5 0D8H T0ENB T0rate2 T0rate1 T0rate0 T0TB R W T0M 0D9H T0C7 T0C6 T0C5 T0C4 T0C3 T0C2 T0C1 T0C0 R W T0C 0DAH TC0ENB TC0rate2 TC0rate1 TC0rate0 TC0CKS ALOAD0 TC0OUT PWM0OUT R W TC0M...

Страница 22: ...by B0MOV instruction during the instant addressing mode Example Read and write ACC value Read ACC data and store in BUF data memory MOV BUF A Write a immediate data into ACC MOV A 0FH Write ACC data f...

Страница 23: ...by external Reset Pin Bit 5 LVD36 LVD 3 6V operating flag and only support LVD code option is LVD_H 0 Inactive VDD 3 6V 1 Active VDD 3 6V Bit 4 LVD24 LVD 2 4V operating flag and only support LVD code...

Страница 24: ...ONE ADDRESS SKIPPING There are nine instructions CMPRS INCS INCMS DECS DECMS BTS0 BTS1 B0BTS0 B0BTS1 with one address skipping function If the result of these instructions is true the PC will add 2 s...

Страница 25: ...0ADD M A instructions for carry to PCH when PCL overflow automatically For jump table or others applications users can calculate PC value by the three instructions and don t care PCL overflow problem...

Страница 26: ...AM bank 0 for Y register B0MOV Z 25H To set location 25H for Z register B0MOV A YZ To read a data into ACC Example Uses the Y Z register as data pointer to clear the RAM data B0MOV Y 0 Y 0 bank 0 B0MO...

Страница 27: ...gister 2 3 2 DIRECTLY ADDRESSING MODE The directly addressing mode moves the content of RAM location in or out of ACC Example Move 0x12 RAM location data into ACC B0MOV A 12H To get a content of RAM l...

Страница 28: ...ary storage of stack addresses The two stack operations are writing to the top of the stack push and reading from the top of stack pop Push operation decrements the STKP and the pop operation incremen...

Страница 29: ...tores the program counter about the op code address The Stack Save operation is as the following table Stack Level STKP Register Stack Buffer Description STKPB1 STKPB0 High Byte Low Byte 0 1 1 Free Fr...

Страница 30: ...uction cycle is 16 oscillator clocks Reset_Pin Reset Enable External reset pin P11 Enable P1 1 input only without pull up resister Security Enable Enable ROM code Security function Disable Disable ROM...

Страница 31: ...ription 0 0 Watchdog reset Watchdog timer overflow 0 1 Reserved 1 0 Power on reset and LVD reset Power voltage is lower than LVD detecting level 1 1 External reset External reset pin detect low level...

Страница 32: ...em is reset After watchdog reset the system restarts and returns normal mode Watchdog reset sequence is as following Watchdog timer status System checks watchdog timer overflow status If watchdog time...

Страница 33: ...riving motor The loading operating induces noise and overlaps with the DC power VDD drops by the noise and the system works under unstable power situation The power on duration and power down duration...

Страница 34: ...voltage level For low battery detect application only checking LVD24 LVD36 status to be battery status This is a cheap and easy solution 086H Bit 7 Bit 6 Bit 5 Bit 4 Bit 3 Bit 2 Bit 1 Bit 0 PFLAG NT0...

Страница 35: ...until overflow occurrence The overflow signal of watchdog timer triggers the system to reset and the system return to normal mode after reset sequence This method also can improve brown out reset con...

Страница 36: ...ystem keeps reset status and waits external reset pin released System initialization All system registers is set as initial conditions and system is ready Oscillator warm up Oscillator operation is su...

Страница 37: ...Diode RC reset circuit is necessary to limit any current flowing into reset pin from external capacitor C in the event of reset pin breakdown due to Electrostatic Discharge ESD or Electrical Over str...

Страница 38: ...drops and the voltage lower than reset pin detect level the system would be reset If want to make the reset active earlier set the R2 R1 and the cap between VDD and C terminal voltage is larger than 0...

Страница 39: ...osc Fcpu Flosc 4 CPUM 1 0 XIN XOUT STPHX HOSC Fcpu Code Option Fosc Fosc CLKMD Fcpu HOSC High_Clk code option Fhosc External high speed clock Internal high speed RC clock Flosc Internal low speed RC c...

Страница 40: ...is external low cost RC type oscillator The RC oscillator circuit only connects to XIN pin and the XOUT pin is bi direction GPIO mode 32K X tal The system high speed clock source is external low speed...

Страница 41: ...Hz CRYSTAL CERAMIC 32KHz RC Type MCU VCC GND C 20pF XIN XOUT VDD VSS C 20pF CRYSTAL MCU VCC GND C 27pF XIN XOUT VDD VSS C 27pF CRYSTAL R MCU VCC GND XIN XOUT VDD VSS C Note Connect the Crystal Ceramic...

Страница 42: ...0 40 00 45 00 2 1 2 5 3 3 1 3 3 3 5 4 4 5 5 5 5 6 6 5 7 VDD V Freq KHz ILRC The internal low RC supports watchdog clock source and system slow mode controlled by CLKMD bit of OSCM register Flosc Inter...

Страница 43: ...ernal oscillator operations When STPHX 0 the external oscillator or internal high speed RC type oscillator active When STPHX 1 the external oscillator or internal high speed RC type oscillator are dis...

Страница 44: ...n reset LVD reset watchdog reset external reset pin active 64ms Fhosc 32KHz 512us Fhosc 4MHz 128us Fhosc 16MHz Oscillator warm up time of power down mode wake up condition 2048 Fhosc Crystal resonator...

Страница 45: ...own Mode Wake up Timing Wake up Pin Rising Edge Oscillator Fcpu Instruction Cycle Tosp Tost Wake up Pin Falling Edge System inserts into power down mode Edge trigger system wake up Green Mode Wake up...

Страница 46: ...ime is depended on oscillator s material factory and architecture Normally the low speed oscillator s start up time is lower than high speed oscillator The RC type oscillator s start up time is faster...

Страница 47: ...l Block One of reset trigger sources actives One of reset trigger sources actives One of reset trigger sources actives Operating Mode Clock Control Table Operating Mode Normal Mode Slow Mode Green Mod...

Страница 48: ...and full functions are controllable The system rate is low speed Flosc 4 The internal low speed RC type oscillator actives and the high speed oscillator is controlled by STPHX 1 In slow mode to stop h...

Страница 49: ...into green mode After system wake up from green mode the CPUM1 bit is disabled zero status automatically The program stops executing and full functions are disabled Only the timer with wake up functi...

Страница 50: ...acro directly Example Switch slow mode to normal mode The external high speed oscillator stops Slow2Normal Declare Slow2Normal macro directly Example Switch normal slow mode to green mode GreenMode De...

Страница 51: ...ator clocks as the wakeup time to stable the oscillator circuit After the wakeup time the system goes into the normal mode Note Wakeup from green mode is no wakeup time because the clock doesn t stop...

Страница 52: ...evel changing When wake up pin occurs rising edge or falling edge the system is waked up by the trigger edge The Port 0 and Port 1 have wakeup function Port 0 wake up function always enables but the P...

Страница 53: ...Out TC0 Time Out Note The GIE bit must enable during all interrupt operation 6 2 INTEN INTERRUPT ENABLE REGISTER INTEN is the interrupt request control register including one internal interrupts one e...

Страница 54: ...INT0 request flag 0 None INT0 interrupt request 1 INT0 interrupt request Bit 4 T0IRQ T0 timer interrupt request flag 0 None T0 interrupt request 1 T0 interrupt request Bit 5 TC0IRQ TC0 timer interrup...

Страница 55: ...s save and load ACC PFLAG data into buffers and avoid main routine error after interrupt service routine finishing Note PUSH POP instructions save and load ACC PFLAG without NT0 NPD PUSH POP buffer is...

Страница 56: ...dge configuration the trigger edge will be latched and the system executes interrupt service routine fist after wake up 0BFH Bit 7 Bit 6 Bit 5 Bit 4 Bit 3 Bit 2 Bit 1 Bit 0 PEDGE P00G1 P00G0 Read Writ...

Страница 57: ...Hz 16 B0BCLR FT0IEN Disable T0 interrupt service B0BCLR FT0ENB Disable T0 timer MOV A 20H B0MOV T0M A Set T0 clock Fcpu 64 MOV A 64H Set T0C initial value 64H B0MOV T0C A Set T0 interval 10 ms B0BSET...

Страница 58: ...ion ORG 8 Interrupt vector JMP INT_SERVICE INT_SERVICE Push routine to save ACC and PFLAG to buffers B0BTS1 FT0IRQ Check T0IRQ JMP EXIT_INT T0IRQ 0 exit interrupt vector T0 interrupt service routine B...

Страница 59: ...LR FTC0IEN Disable TC0 interrupt service B0BCLR FTC0ENB Disable TC0 timer MOV A 20H B0MOV TC0M A Set TC0 clock Fcpu 64 MOV A 64H Set TC0C initial value 64H B0MOV TC0C A Set TC0 interval 10 ms B0BSET F...

Страница 60: ...ng care of One is to set the priority for these interrupt requests Two is using IEN and IRQ flags to decide which interrupt to be executed Users have to check interrupt control bit and interrupt reque...

Страница 61: ...is as following I O Pin Shared Pin Shared Pin Control Condition Name Type Name Type P0 0 I O INT0 DC P00IEN 1 P1 1 I RST DC Reset_Pin code option Reset VPP HV OTP Programming P1 2 I O XOUT AC High_CLK...

Страница 62: ...7 Bit 6 Bit 5 Bit 4 Bit 3 Bit 2 Bit 1 Bit 0 P2M P25M P24M P23M P22M P21M P20M Read Write R W R W R W R W R W R W After reset 0 0 0 0 0 0 0C5H Bit 7 Bit 6 Bit 5 Bit 4 Bit 3 Bit 2 Bit 1 Bit 0 P5M P54M R...

Страница 63: ...6 Bit 5 Bit 4 Bit 3 Bit 2 Bit 1 Bit 0 P0UR P00R Read Write W After reset 0 0E1H Bit 7 Bit 6 Bit 5 Bit 4 Bit 3 Bit 2 Bit 1 Bit 0 P1UR P13R P12R P10R Read Write W W W After reset 0 0 0 0E2H Bit 7 Bit 6...

Страница 64: ...s pin 0E9H Bit 7 Bit 6 Bit 5 Bit 4 Bit 3 Bit 2 Bit 1 Bit 0 P1OC P10OC Read Write W After reset 0 Bit 0 P10OC P1 0 open drain control bit 0 Disable open drain mode 1 Enable open drain mode Example Ena...

Страница 65: ...Read Write R W R W R W R W R W R W After reset 0 0 0 0 0 0 0D5H Bit 7 Bit 6 Bit 5 Bit 4 Bit 3 Bit 2 Bit 1 Bit 0 P5 P54 Read Write R W After reset 0 Note The P11 keeps 1 when external reset enable by c...

Страница 66: ...In power down mode and green mode the watchdog timer stops Always_On Enable watchdog timer function The watchdog timer actives and not stop in power down mode and green mode In high noisy environment...

Страница 67: ...chdog timer program is only at one part of the program This way is the best structure to enhance the watchdog timer function Example An operation of watchdog timer is as following To clear the watchdo...

Страница 68: ...t specific time intervals based on the selected clock frequency Interrupt function T0 timer function supports interrupt function When T0 timer occurs overflow the T0IRQ actives and the system points p...

Страница 69: ...Q by program is necessary in interrupt procedure T0 timer can works in normal mode slow mode and green mode In green mode T0 keeps counting set T0IRQ and wakes up system when T0 timer overflows 0x00 o...

Страница 70: ...R T0C is T0 8 bit counter When T0C overflow occurs the T0IRQ flag is set as 1 and cleared by program The T0C decides T0 interval time through below equation to calculate a correct value It is necessar...

Страница 71: ...register for T0 Interval time MOV A value B0MOV T0C A Clear T0IRQ B0BCLR FT0IRQ Enable T0 timer and interrupt function B0BSET FT0IEN Enable T0 interrupt function B0BSET FT0ENB Enable T0 timer T0 works...

Страница 72: ...ightness adjuster The main purposes of the TC0 timer are as following 8 bit programmable up counting timer Generate time out at specific time intervals based on the selected clock frequency Interrupt...

Страница 73: ...rupt procedure is system program counter points to interrupt vector ORG 8 and executes interrupt service routine after TC0 overflow occurrence Clear TC0IRQ by program is necessary in interrupt procedu...

Страница 74: ...ntrolled by TC0OUT ALOAD0 bits Bit 1 TC0OUT TC0 time out toggle signal output control bit Only valid when PWM0OUT 0 0 Disable P5 4 is I O function 1 Enable P5 4 is output TC0OUT signal Bit 2 ALOAD0 Au...

Страница 75: ...0C1 TC0C0 Read Write R W R W R W R W R W R W R W R W After reset 0 0 0 0 0 0 0 0 The equation of TC0C initial value is as following TC0C initial value N TC0 interrupt interval time TC0 clock rate N is...

Страница 76: ...DH Bit 7 Bit 6 Bit 5 Bit 4 Bit 3 Bit 2 Bit 1 Bit 0 TC0R TC0R7 TC0R6 TC0R5 TC0R4 TC0R3 TC0R2 TC0R1 TC0R0 Read Write W W W W W W W W After reset 0 0 0 0 0 0 0 0 The equation of TC0R initial value is as...

Страница 77: ...al continuous signal rate e g continuous pulse R C type oscillating signal These signal phase don t synchronize with MCU s main clock Use TC0 event to measure it and calculate the signal rate in progr...

Страница 78: ...M cycle in PWM mode The PWM0OUT bit must be 0 when buzzer output function works 8 3 8 PULSE WIDTH MODULATION PWM The PWM is duty cycle programmable design to offer various PWM signals When TC0 timer e...

Страница 79: ...00000000b 11111111b 0 1 64 0x00 0x3F xx000000b xx111111b 1 0 32 0x00 0x1F xxx00000b xxx11111b 1 1 16 0x00 0x0F xxxx0000b xxxx1111b 1 256 Duty 1 64 Duty 1 32 Duty 1 16 Duty The PWM output pin is shared...

Страница 80: ...Q B0BCLR FTC0IRQ Enable TC0 timer and interrupt function B0BSET FTC0IEN Enable TC0 interrupt function B0BSET FTC0ENB Enable TC0 timer TC0 EVENT COUNTER CONFIGURATION Reset TC0 timer MOV A 0x00 Clear T...

Страница 81: ...0R B0MOV TC0C A B0MOV TC0R A Enable TC0 timer and buzzer output function B0BSET FTC0ENB Enable TC0 timer B0BSET FTC0OUT Enable TC0 buzzer output function TC0 PWM CONFIGURATION Reset TC0 timer MOV A 0x...

Страница 82: ...or M 1 XOR M A M A xor M 1 N XOR A I A A xor I 1 SWAP M A b3 b0 b7 b4 M b7 b4 b3 b0 1 P SWAPM M M b3 b0 b7 b4 M b7 b4 b3 b0 1 N R RRC M A RRC M 1 O RRCM M M RRC M 1 N C RLC M A RLC M 1 E RLCM M M RLC...

Страница 83: ...Ilekg Pull up resistor disable Vin Vdd 2 uA I O port pull up resistor Rup Vin Vss Vdd 3V 100 200 300 K Vin Vss Vdd 5V 50 100 180 I O output source current IoH Vop Vdd 0 5V 8 15 mA sink current IoL Vop...

Страница 84: ...APHS The Graphs in this section are for design guidance not tested or guaranteed In some graphs the data presented are outside specified operating range This is for information only and devices are gu...

Страница 85: ...V KIT provides LVD configuration to emulation To emulate the function must be through EV KIT SN8P2501A B C EV KIT PCB Outline CON1 Connect to SN8ICE 2K Plus II CON1 includes GPIO EV KIT control signal...

Страница 86: ...I power switch must be turned off before you connect the SN8P2501D 2501A B C EV KIT to SN8ICE2K Plus II 2 Connect EV KIT JP6 CON1 to ICE JP3 CON1 3 Turn on SN8ICE2K Plus 2 power switch to start emulat...

Страница 87: ...OTPCLK 5 6 OE ShiftDat DIP 4 4 45 DIP45 D1 7 8 D0 DIP 5 5 44 DIP44 D3 9 10 D2 DIP 6 6 43 DIP43 D5 11 12 D4 DIP 7 7 42 DIP42 D7 13 14 D6 DIP 8 8 41 DIP41 VDD 15 16 VPP DIP 9 9 40 DIP40 HLS 17 18 RST DI...

Страница 88: ...3 VSS 28 29 3 CLK 10 P0 0 27 11 P0 0 27 4 CE 5 PGM 9 P1 0 26 10 P1 0 26 6 OE 8 P5 4 25 9 P5 4 25 7 D1 8 D0 9 D3 10 D2 11 D5 12 D4 13 D7 14 D6 15 VDD 16 VPP 7 RST 24 8 RST 24 17 HLS 18 RST 19 20 ALSB P...

Страница 89: ...ne This note listed the production definition of all 8 bit MCU for order or obtain information This definition is only for Blank OTP MCU 13 2 MARKING INDETIFICATION SYSTEM Title SONiX 8 bit MCU Produc...

Страница 90: ...5 Green Package SN8P25011DPG OTP 2501D DIP 20 85 Green Package SN8P25011DSG OTP 2501D SOP 20 85 Green Package PB Free Package Name ROM Type Device Package Temperature Material SN8P2501DPB OTP 2501D DI...

Страница 91: ...14 1 P DIP 14 PIN SYMBOLS MIN NOR MAX MIN NOR MAX inch mm A 0 210 5 334 A1 0 015 0 381 A2 0 125 0 130 0 135 3 175 3 302 3 429 D 0 735 0 75 0 775 18 669 19 05 19 685 E 0 300 7 62 E1 0 245 0 250 0 255...

Страница 92: ...A 0 058 0 064 0 068 1 4732 1 6256 1 7272 A1 0 004 0 010 0 1016 0 254 B 0 013 0 016 0 020 0 3302 0 4064 0 508 C 0 0075 0 008 0 0098 0 1905 0 2032 0 2490 D 0 336 0 341 0 344 8 5344 8 6614 8 7376 E 0 15...

Страница 93: ...mm A 0 053 0 069 1 3462 1 7526 A1 0 004 0 010 0 1016 0 254 A2 0 059 1 4986 b 0 008 0 012 0 2032 0 3048 b1 0 008 0 011 0 2032 0 2794 c 0 007 0 010 0 1778 0 254 c1 0 007 0 009 0 1778 0 2286 D 0 189 0 19...

Страница 94: ...PIN SYMBOLS MIN NOR MAX MIN NOR MAX inch mm A 0 210 5 334 A1 0 015 0 381 A2 0 125 0 130 0 135 3 175 3 302 3 429 D 0 355 0 365 0 400 9 017 9 271 10 16 E 0 300 7 62 E1 0 245 0 250 0 255 6 223 6 35 6 477...

Страница 95: ...e 95 Version 1 5 14 5 SOP 8 PIN SYMBOLS MIN NOR MAX MIN NOR MAX inch mm A 0 053 0 069 1 3462 1 7526 A1 0 004 0 010 0 1016 0 254 A2 0 059 1 4986 D 0 189 0 196 4 8006 4 9784 E 0 150 0 157 3 81 3 9878 H...

Страница 96: ...utors 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...

Отзывы: