Electronics

STM 8 Development Board Minimum System Board Stm8s003f3p6

AED 14.70

1

Description

  • The development board using Micro USB cable supply, compatible with smartphone lines, data lines is simple and easy to get, but no line-powered Mini USB 
  • Low price, user-friendly design, a full set of data, allowing you to save money, save time, effort.
  • STM8S core board of the main features:
  • Use STM8S103F3P6 as the master IC
  • You can use 2.54 pin on the board or power supply pad, the pad when using a power supply, input voltage range 4.5V-15V can output to the outside through pin 3.3V
  • Note:5V pin's voltage is the input voltage of the module
  • Leads to all pins, the pins next to the pin marked the label, with a reset button, power LED, and the program demonstrates LED, small but perfectly formed
  • Support SWIM debug mode
  • Technical Information:
  • The core board schematics (PDF format) and tested source. Burned into the test program, LED flashes, allowing you to detect the core board is working properly
  • Provide at IAR and STVD two development environments register operation and routine operation of the library functions. Timer routine, UART transmit routine, UART receive routines, clock switching routines, AD routines and so on
  • STM8 Applications
  • STM8 package library
  • IAR development environment, STVP programming software
  • STM8S003F3P6 performance comparison:
  • STM8S003F3 chips only 128 bytes of EEPROM
  • STM8S003F3 chip FLASH erase only 100 times
  • Size:28mm*17mm*5mm/1.1*0.66*0.19"
  • Quantity:1 pc

Packing :

  • 1 x STM8 Development Board

Board Features:

  • SWIM Connector
  • Voltage Regulator [3V3 - AMS1117]
  • Micro USB connector to power the board over USB, SmartPhone charger
  • All Pin Outs
  • Power LED
  • USER LED, Connected to PB.5
  • RESET Switch
#include“stm8s.h”
void myDelay(void);
void myDelay()
{
int i, j;
for (i = 0; i < 1000; i++)
{
for (j = 0; j < 100; j++);
}
}
main()
{
GPIOB->DDR |= 0x20; // PB.5 as Output
GPIOB->CR1 |= 0x20; // PB.5 as Push Pull Type Output
while (1)
{
GPIOB->ODR |= 1 << 5; // PB.5 = 1
myDelay();
GPIOB->ODR &= ~(1 << 5); // PB.5 = 0
myDelay();
}
}

Download

STM8S103F3P6 Layout.png

STM8S103F3P6 Board Layout

 Download (63.38k)