📄 support.c
字号:
/*------------------------------------------------------------------------- support.c - startup for PIC16 regression tests with gpsim Copyright (c) 2006 Borut Razem This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. In other words, you are welcome to use, share and improve this program. You are forbidden to forbid anyone else to use, share and improve what you give them. Help stamp out software-hoarding!-------------------------------------------------------------------------*/#pragma preproc_asm -#pragma stack 0x200 255 /* set stack size to 255 bytes */#include <pic18f452.h>void_putchar(char c){ while (!PIR1bits.TXIF) ; TXREG = c;}void_initEmu(void){ /* load and configure the libgpsim_modules module */ _asm ;; Set frequency to 20MHz .direct "e", ".frequency=20e6" ;; Load the USART library and module .direct "e", "module library libgpsim_modules" .direct "e", "module load usart U1" ;; Define a node .direct "e", "node PIC_tx" ;; Tie the USART module to the PIC .direct "e", "attach PIC_tx portc6 U1.RXPIN" ;; Set the USART module's Baud Rate .direct "e", "U1.rxbaud = 9600" ;; Display the received character on terminal .direct "e", "U1.console = true" _endasm; /* USART initialization */ PORTCbits.TX = 1; // Set TX pin to 1 TRISCbits.TRISC6 = 0; // TX pin is output TXSTA = 0; // Reset USART registers to POR state RCSTA = 0; //1. Initialize the SPBRG register for the appropriate // baud rate. If a high speed baud rate is desired, // set bit BRGH (Section 16.1). TXSTAbits.BRGH = 1; SPBRG = 129; //2. Enable the asynchronous serial port by clearing // bit SYNC and setting bit SPEN. RCSTAbits.SPEN = 1; //3. If interrupts are desired, set enable bit TXIE. //4. If 9-bit transmission is desired, set transmit bit // TX9. Can be used as address/data bit. //5. Enable the transmission by setting bit TXEN, // which will also set bit TXIF. TXSTAbits.TXEN = 1; //6. If 9-bit transmission is selected, the ninth bit // should be loaded in bit TX9D. //7. Load data to the TXREG register (starts // transmission).}void_exitEmu(void){ /* wait until the transmit buffer is empty */ while (!TXSTAbits.TRMT) ; /* set the breakpoint */ _asm .direct "a", "\"\"" _endasm;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -