把下列程序改成stc89c52rc单片机的c语言程序“#include "stm8s.h" #include "stdlib.h" #define LED_GPIO_PORT (GPIOC) #define LED_GPIO_PINS (GPIO_PIN_7) #define UART_GPIO_PORT (GPIOD) #define UART_GPIO_PINS (GPIO_PIN_4) //485控制脚 #define UARTTX_GPIO_PINS (GPIO_
时间: 2023-08-29 22:08:07 浏览: 105
把下列程序改成stc89c52rc单片机的c语言程序:
```
#include "stc89c52.h"
#include <stdlib.h>
#define LED_GPIO_PORT P2
#define LED_GPIO_PINS 0x01
#define UART_GPIO_PORT P1
#define UART_GPIO_PINS 0x10
#define UARTTX_GPIO_PINS 0x20
void delay(unsigned int n)
{
unsigned int i;
for(i = 0; i < n; i++);
}
void InitUART()
{
TMOD |= 0x20;
SCON = 0x50;
TH1 = 0xfd;
TL1 = 0xfd;
PCON = 0x00;
TR1 = 1;
}
void UARTSendChar(unsigned char ch)
{
SBUF = ch;
while(!TI);
TI = 0;
}
void main()
{
InitUART();
LED_GPIO_PORT = 0x00;
while(1)
{
UARTSendChar('H');
delay(50000);
UARTSendChar('e');
delay(50000);
UARTSendChar('l');
delay(50000);
UARTSendChar('l');
delay(50000);
UARTSendChar('o');
delay(50000);
UARTSendChar('\n');
LED_GPIO_PORT ^= LED_GPIO_PINS;
}
}
```
阅读全文