Exploring STC 8051 Microcontrollers – Coding

General Purpose Input-Output (GPIO)

The very first thing to do with a new microcontroller is to play with its GPIOs and this is what we will begin with. STC micros are based on 8051 architecture and so it is no surprise that the GPIOs will have similarities with typical 8051s. GPIOs of STC micros are essentially same as those of Nuvoton N76E003. Those who have seen my past Nuvoton tutorials will find similarities.

BSP

//P00
#define P00_quasi_bidirectional_mode    do{bit_clr(P0M1, 0); bit_clr(P0M0, 0);}while(0) 
#define P00_push_pull_mode              do{P00_quasi_bidirectional_mode; bit_clr(P0M1, 0); bit_set(P0M0, 0);}while(0)
#define P00_input_mode                  do{P00_quasi_bidirectional_mode; bit_set(P0M1, 0); bit_clr(P0M0, 0);}while(0)
#define P00_open_drain_mode             do{P00_quasi_bidirectional_mode; bit_set(P0M1, 0); bit_set(P0M0, 0);}while(0)
 
#define P00_pull_up_enable              do{bit_set(P_SW2, 7); bit_set(P0PU, 0); bit_clr(P_SW2, 7);}while(0) 
#define P00_pull_up_disable             do{bit_set(P_SW2, 7); bit_clr(P0PU, 0); bit_clr(P_SW2, 7);}while(0) 
 
#define P00_schmitt_trigger_enable      do{bit_set(P_SW2, 7); bit_set(P0NCS, 0); bit_clr(P_SW2, 7);}while(0) 
#define P00_schmitt_trigger_disable     do{bit_set(P_SW2, 7); bit_clr(P0NCS, 0); bit_clr(P_SW2, 7);}while(0) 
 
#define P00_high                        bit_set(P0, 0)
#define P00_low                         bit_clr(P0, 0)
#define P00_toggle                      bit_tgl(P0, 0)
#define P00_get_input                   get_bit(P0, 0)

Code

 #include "STC8xxx.h"
#include "BSP.h"
 
void setup(void);
 
void main(void)
{   
    setup();
    
    while(1)
    {
        P55_toggle;
        
        if(P52_get_input == 0)
        {
            delay_ms(400);
        }
        
        delay_ms(200);
    };
}
 
void setup(void)
{
    P55_open_drain_mode;
    
    P52_input_mode;
    P52_pull_up_enable;
}

Schematic

Explanation

Like always this first example is a simple variable flash rate LED flasher. Onboard LED connected to P5.5 and onboard push button connected to P5.2 are used. The board’s schematic shows us that P5.2’s push button must have an internal pull-up to properly function because it is not tied to any external pull-up resistor and P5.5’s LED must be configured as an open-drain output. These are configured so in the setup function.

 void setup(void)
{
    P55_open_drain_mode;    
    P52_input_mode;
    P52_pull_up_enable;
}

In the main loop, P5.5’s LED state is toggled every 200ms. If P5.2’s push button is pressed, P5.2’s state changes and so additional 400ms delay is added, making the total toggling delay 600ms. 

 P55_toggle;        
if(P52_get_input == 0)
{
    delay_ms(400);
}        
delay_ms(200);

Note no clock settings are applied and the micro is running at default clock frequency of 24MHz.

Demo

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35

Related Posts

17 comments

  • hello.
    this is a very good effort to document all and still share with us. thank you very much.
    I have one doubt . which programming tool are you using ?

  • Hi, I am trying to understand the STC15w408as chip, and found this site after weeks of searching for something that sets the output of the GPIO pins to a different state. I have a the 28 pin stc15w and have connected it up with a FTDI board and can write to it using PlatformIO. The thing is, the GPIO ports if just switched on or do a reset they are in the HIGH state and I am trying to make them LOW when you do a reset.
    Is your BSP code doing this and for what port or GPIO pin is it setting? I could change your P52 and P55 in your SETUP to the GPIO pins on my development board but not under standing the BSP Code.
    Wonder if you get this post? but any help would be gratefully received.

  • Hi,
    How Purchase the development board. Please,give the purchase link for this Development board.

  • How To read and write string data using IAP into memory

    • void IAP_erase(unsigned int address)
      {
      IAP_CONTR = 0x80; //?? IAP
      IAP_TPS = 12;
      // IAP_CONTR = IAP_WT;
      IAP_CMD = IAP_erase_command;
      IAP_address(address);
      IAP_trigger;
      _nop_();
      _nop_();
      _nop_();
      IAP_clear;
      }

      void IAP_send_string(unsigned int uc_send_addr,unsigned char *uca_send_string,unsigned int uc_number_of_bytes)
      {
      unsigned int buff_cntr=0;
      do
      {
      IAP_CONTR = 0x80; //?? ISP/IAP ??
      IAP_TPS = (unsigned char)(11509200 / 1000000L); //??????
      IAP_CMD = IAP_write_command;

      // IAP_CMD = IAP_write_command;
      IAP_ADDRH = uc_send_addr / 256; //??????(??????????????)
      IAP_ADDRL = uc_send_addr % 256; //??????
      IAP_DATA = uca_send_string[buff_cntr]; //???? ISP_DATA,????????????
      IAP_trigger;//IAP_TRIG();
      _nop_();
      _nop_();
      _nop_();
      uc_send_addr++;
      // uca_send_string++;
      buff_cntr++;

      IAP_clear;
      delay_ms(8);
      }while(–uc_number_of_bytes);
      }

      void IAP_read_string(unsigned int uc_read_addr,unsigned char *data_read,unsigned int uc_number_of_bytes)
      {
      unsigned int buff_cntr=0;
      do{
      IAP_CONTR = 0x80; //?? ISP/IAP ??
      IAP_TPS = (unsigned char)(11059200 / 1000000L); //??????
      IAP_CMD = IAP_read_command;

      // IAP_CMD = IAP_read_command;
      IAP_ADDRH = uc_read_addr / 256; //??????(??????????????)
      IAP_ADDRL = uc_read_addr % 256; //??????
      IAP_trigger;//IAP_TRIG(); //?? 5AH,?? A5H ? ISP/IAP ?????,
      //???????
      //?? A5H ?, ISP/IAP ?????????
      //CPU ?? IAP ???,?????????
      _nop_();
      _nop_();
      _nop_();
      data_read[buff_cntr] = IAP_DATA; //???????
      uc_read_addr++;
      // data_read++;
      buff_cntr++;

      IAP_clear;
      delay_ms(8);
      }while(–uc_number_of_bytes);
      }

      stores only last byte to all bytes of flash memory sector… memory sector selected is 0xF600

  • Hi, I am using STC MCU since 10 years. Tech support is ZERO. but they are low cost, very stable. Now I have a problem when the chip that I used is obsolete. Now start to use STC8C2K64S4-28I-LQFP32 but no stc8Cxx.h file, I am using stc8Hxx.h file which compiles but in some stage freeze, the existing firmware. With stc8hxx.h file I can compile STC8F2K64S4-28I-LQFP32 and works not bad
    .
    I wrote them many times for the stc8Cxx.h file never got answer. Where Can I find that file?
    Thank you

  • Hi. Can you explain how to use I2C in the slave mode ?

    • I tried STC8G1K08A i2c in slave mode. Doesn’t work (no response). It does not enter interrupt, even on a start condition (everything according to the code in the documentation). I also tried master mode – it works.

  • Thanks for these tutorials. I’m getting back into STCmicro coding now, having left them alone for the past several years. Back then I only used the STC89C52RC (and C54RD) but this time I’m also using the more powerful STC15 and STC8 types. Your blogs provide a wealth of useful information.

  • Hello,

    You have done great job with all these tutorials. I am an electronics engineer trying to learn some new stuff. I am located in Greece , Europe and I would like to purchase the development board that you are using and download some datasheets in English if possible but I cannot find them anywhere. Could you please help me?

  • i always get excited when you release new tutorials ,you are really doing a great job i wish i could write code and develop libraries like you.

  • Well, this is very nice and thorough tutorial indeed, many thanks!
    Unfortunately I doubt there is good any reason to learn the STC platform beyond curiosity.
    The STC 8051, although pretty evolved from the original 8051 ISA, does not offer anything crucial to justify the relatively high price of these micros and development tools along with certain cumbersomeness of this ancient platform.
    They simply can not compete even with the legacy Cortex M0 in any way. I am even not aware about any affordable debugger/emulator for them.
    All in all, I would never recommend anybody to start learning/using any 8051 without some very good reason to do so.

Leave a Reply

Your email address will not be published. Required fields are marked *