ST7FLITE39F2M3 STMicroelectronics, ST7FLITE39F2M3 Datasheet - Page 218

IC MCU 8BIT 8K FLASH 20SOIC

ST7FLITE39F2M3

Manufacturer Part Number
ST7FLITE39F2M3
Description
IC MCU 8BIT 8K FLASH 20SOIC
Manufacturer
STMicroelectronics
Series
ST7r
Datasheets

Specifications of ST7FLITE39F2M3

Core Processor
ST7
Core Size
8-Bit
Speed
16MHz
Connectivity
LINSCI, SPI
Peripherals
LVD, POR, PWM, WDT
Number Of I /o
15
Program Memory Size
8KB (8K x 8)
Program Memory Type
FLASH
Eeprom Size
256 x 8
Ram Size
384 x 8
Voltage - Supply (vcc/vdd)
2.7 V ~ 5.5 V
Data Converters
A/D 7x10b
Oscillator Type
Internal
Operating Temperature
-40°C ~ 125°C
Package / Case
20-SOIC (7.5mm Width)
Processor Series
ST7FLITE3x
Core
ST7
Data Bus Width
8 bit
Data Ram Size
384 B
Interface Type
LINSCI, SPI
Maximum Clock Frequency
8 MHz
Number Of Programmable I/os
15
Number Of Timers
4
Maximum Operating Temperature
+ 125 C
Mounting Style
SMD/SMT
Development Tools By Supplier
ST7FLITE-SK/RAIS, ST7MDT10-DVP3, ST7MDT10-EMU3, STX-RLINK
Minimum Operating Temperature
- 40 C
On-chip Adc
10 bit, 7 Channel
For Use With
497-8406 - BOARD STF20NM50FD/STF7LITE39BF2497-8403 - BOARD DEMO STCC08 AC SW DETECTOR497-6398 - BOARD EVAL ST7FLITE39/STM1403497-5858 - EVAL BOARD PLAYBACK ST7FLITE497-5514 - EVAL BOARD THERMO CONTROL REFRIG497-5049 - KIT STARTER RAISONANCE ST7FLITE
Lead Free Status / RoHS Status
Lead free / RoHS Compliant

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
ST7FLITE39F2M3
Manufacturer:
ST
0
Part Number:
ST7FLITE39F2M3TR
Manufacturer:
ST
0
Part Number:
ST7FLITE39F2M3TR
Manufacturer:
ST
Quantity:
20 000
Function Descriptions
Example
The following C program shows the uses of the EEPROM functions for the Lite0 device.
Program Description:
This program writes 5 data bytes in EEPROM memory from one user buffer, Temp1. Then
data bytes are read from the same EEPROM memory and stored in another buffer, Temp2.
The written data and data read from the two buffers are then compared.
/*============================================================*/
/* Program Start */
#include "ST7lib_Config.h"
#ifdef _HIWARE_
unsigned char ptr_address @ 0x1000;
#endif
#ifdef _COSMIC_
@near unsigned char ptr_address @ 0x1000;
#endif
void main(void);
void main (void)
{
}
/*Program Stop */
/*============================================================*/
218/235
int i;
unsigned char NoofBytes = 5;
unsigned char Temp1[5] = {0x55,0xAA,0x7F,0x18,0x4C};
unsigned char Temp2[5] = {0x00,0x00,0x00,0x00,0x00};
/*@far unsigned char * ptr_write;
@far unsigned char * ptr_read;
ptr_read = &ptr_address;
ptr_write = &ptr_address;*/
EEPROM_Init ();
EEPROM_Write (Temp1,NoofBytes,&ptr_address);
/* Data written from buffer Temp1 to EEPROM memory address 1000h */
/* EEPROM_Write (Temp1,5,(unsigned char * far )0x1000); */
while (EEPROM_Programming () != EEPROM_PROG_COMPLETE);
EEPROM_Read (Temp2,NoofBytes,&ptr_address);
for (i = 0; i<5;i++)
{
}
is called in this way for hiware compiler, when small memory model is used */
/* Waiting till all data bytes programmed from latch to EEPROM cells */
/* Reads data from EEPROM address 1000h and stores it in buffer Temp2 */
/* EEPROM_Read (Temp2,5,(unsigned char * far) 0x1000); */
is called in this way for hiware compiler, when small memory model is used */
if ((*(Temp1+i)) != (*(Temp2+i)))
{
}
while (1);
/* All EEPROM registers initialised to reset value */
/* Mismatch between written data and data read */
/* Comparison of written data and data read */
/* File for user to select device as lite0 */
/* Write function
/* Read function

Related parts for ST7FLITE39F2M3