- Messaggi: 21
- Ringraziamenti ricevuti 0
problema RX USART
9 Anni 11 Mesi fa #1
da Taglia
problema RX USART è stato creato da Taglia
Ciao a tutti,
dopo un bel po' di tempo ho ripreso la programmazione dei pic tramite mplabx.
Sto provando il modulo UART con PIC18F4620
Fatto il programma compilato lo carico, tutto ok!
Lo provo attraverso il programma realterm, la ricezione su pc è corretta mentre quando mando un carattere da seriale sul pic non ricevo il valore mandato... cosa può essere? sicuramente è un cavolata... ma non capisco dove sbaglio.
Per comodità metto il programma, è semplicissimo, ho tenuto solo la parte di ricezione seriale
#include <stdio.h>
#include <stdlib.h>
#include <xc.h>
#include <plib.h>
#define _XTAL_FREQ 20000000
// CONFIG1H
// CONFIG1H
#pragma config OSC = HS // Oscillator Selection bits (HS oscillator)
#pragma config FCMEN = OFF // Fail-Safe Clock Monitor Enable bit (Fail-Safe Clock Monitor disabled)
#pragma config IESO = OFF // Internal/External Oscillator Switchover bit (Oscillator Switchover mode disabled)
// CONFIG2L
#pragma config PWRT = OFF // Power-up Timer Enable bit (PWRT disabled)
#pragma config BOREN = SBORDIS // Brown-out Reset Enable bits (Brown-out Reset enabled in hardware only (SBOREN is disabled))
#pragma config BORV = 3 // Brown Out Reset Voltage bits (Minimum setting)
// CONFIG2H
#pragma config WDT = OFF // Watchdog Timer Enable bit (WDT disabled (control is placed on the SWDTEN bit))
#pragma config WDTPS = 32768 // Watchdog Timer Postscale Select bits (1:32768)
// CONFIG3H
#pragma config CCP2MX = PORTC // CCP2 MUX bit (CCP2 input/output is multiplexed with RC1)
#pragma config PBADEN = OFF // PORTB A/D Enable bit (PORTB<4:0> pins are configured as digital I/O on Reset)
#pragma config LPT1OSC = OFF // Low-Power Timer1 Oscillator Enable bit (Timer1 configured for higher power operation)
#pragma config MCLRE = ON // MCLR Pin Enable bit (MCLR pin enabled; RE3 input pin disabled)
// CONFIG4L
#pragma config STVREN = OFF // Stack Full/Underflow Reset Enable bit (Stack full/underflow will not cause Reset)
#pragma config LVP = OFF // Single-Supply ICSP Enable bit (Single-Supply ICSP disabled)
#pragma config XINST = OFF // Extended Instruction Set Enable bit (Instruction set extension and Indexed Addressing mode disabled (Legacy mode))
// CONFIG5L
#pragma config CP0 = OFF // Code Protection bit (Block 0 (000800-003FFFh) not code-protected)
#pragma config CP1 = OFF // Code Protection bit (Block 1 (004000-007FFFh) not code-protected)
#pragma config CP2 = OFF // Code Protection bit (Block 2 (008000-00BFFFh) not code-protected)
#pragma config CP3 = OFF // Code Protection bit (Block 3 (00C000-00FFFFh) not code-protected)
// CONFIG5H
#pragma config CPB = OFF // Boot Block Code Protection bit (Boot block (000000-0007FFh) not code-protected)
#pragma config CPD = OFF // Data EEPROM Code Protection bit (Data EEPROM not code-protected)
// CONFIG6L
#pragma config WRT0 = OFF // Write Protection bit (Block 0 (000800-003FFFh) not write-protected)
#pragma config WRT1 = OFF // Write Protection bit (Block 1 (004000-007FFFh) not write-protected)
#pragma config WRT2 = OFF // Write Protection bit (Block 2 (008000-00BFFFh) not write-protected)
#pragma config WRT3 = OFF // Write Protection bit (Block 3 (00C000-00FFFFh) not write-protected)
// CONFIG6H
#pragma config WRTC = OFF // Configuration Register Write Protection bit (Configuration registers (300000-3000FFh) not write-protected)
#pragma config WRTB = OFF // Boot Block Write Protection bit (Boot Block (000000-0007FFh) not write-protected)
#pragma config WRTD = OFF // Data EEPROM Write Protection bit (Data EEPROM not write-protected)
// CONFIG7L
#pragma config EBTR0 = OFF // Table Read Protection bit (Block 0 (000800-003FFFh) not protected from table reads executed in other blocks)
#pragma config EBTR1 = OFF // Table Read Protection bit (Block 1 (004000-007FFFh) not protected from table reads executed in other blocks)
#pragma config EBTR2 = OFF // Table Read Protection bit (Block 2 (008000-00BFFFh) not protected from table reads executed in other blocks)
#pragma config EBTR3 = OFF // Table Read Protection bit (Block 3 (00C000-00FFFFh) not protected from table reads executed in other blocks)
// CONFIG7H
#pragma config EBTRB = OFF // Boot Block Table Read Protection bit (Boot Block (000000-0007FFh) not protected from table reads executed in other blocks)
#define LCD_DEFAULT
// Librerie Laurtec
#include "LCD_44780.h"
#include "LCD_44780.c"
#include "delay.h"
#include "delay.c"
void main(void) {
unsigned char var;
var= 0;
ADCON1 =0x0F; //ADC OFF
PORTA = 0;
TRISA = 0x3F;
PORTB = 0;
TRISB = 0;
PORTC = 0;
TRISC = 0b11000000;
PORTD = 0;
TRISD = 0XFF;
PORTE = 0;
TRISE = 0;
OpenUSART( USART_TX_INT_OFF &
USART_RX_INT_ON &
USART_ASYNCH_MODE &
USART_EIGHT_BIT &
USART_CONT_RX &
USART_BRGH_HIGH,
64 );
OpenLCD(20);
ClearLCD();
CursorLCD(TURN_OFF_CURSOR,BLINKING_OFF);
BacklightLCD (TURN_ON_LED_LCD);
WriteStringLCD("Hello!!!");
putrsUSART("esempio!!!");
while (1) {
if(DataRdyUSART() == 1)
{
var = ReadUSART();
while (BusyUSART());
putcUSART(var);
}
}
}
dopo un bel po' di tempo ho ripreso la programmazione dei pic tramite mplabx.
Sto provando il modulo UART con PIC18F4620
Fatto il programma compilato lo carico, tutto ok!
Lo provo attraverso il programma realterm, la ricezione su pc è corretta mentre quando mando un carattere da seriale sul pic non ricevo il valore mandato... cosa può essere? sicuramente è un cavolata... ma non capisco dove sbaglio.
Per comodità metto il programma, è semplicissimo, ho tenuto solo la parte di ricezione seriale
#include <stdio.h>
#include <stdlib.h>
#include <xc.h>
#include <plib.h>
#define _XTAL_FREQ 20000000
// CONFIG1H
// CONFIG1H
#pragma config OSC = HS // Oscillator Selection bits (HS oscillator)
#pragma config FCMEN = OFF // Fail-Safe Clock Monitor Enable bit (Fail-Safe Clock Monitor disabled)
#pragma config IESO = OFF // Internal/External Oscillator Switchover bit (Oscillator Switchover mode disabled)
// CONFIG2L
#pragma config PWRT = OFF // Power-up Timer Enable bit (PWRT disabled)
#pragma config BOREN = SBORDIS // Brown-out Reset Enable bits (Brown-out Reset enabled in hardware only (SBOREN is disabled))
#pragma config BORV = 3 // Brown Out Reset Voltage bits (Minimum setting)
// CONFIG2H
#pragma config WDT = OFF // Watchdog Timer Enable bit (WDT disabled (control is placed on the SWDTEN bit))
#pragma config WDTPS = 32768 // Watchdog Timer Postscale Select bits (1:32768)
// CONFIG3H
#pragma config CCP2MX = PORTC // CCP2 MUX bit (CCP2 input/output is multiplexed with RC1)
#pragma config PBADEN = OFF // PORTB A/D Enable bit (PORTB<4:0> pins are configured as digital I/O on Reset)
#pragma config LPT1OSC = OFF // Low-Power Timer1 Oscillator Enable bit (Timer1 configured for higher power operation)
#pragma config MCLRE = ON // MCLR Pin Enable bit (MCLR pin enabled; RE3 input pin disabled)
// CONFIG4L
#pragma config STVREN = OFF // Stack Full/Underflow Reset Enable bit (Stack full/underflow will not cause Reset)
#pragma config LVP = OFF // Single-Supply ICSP Enable bit (Single-Supply ICSP disabled)
#pragma config XINST = OFF // Extended Instruction Set Enable bit (Instruction set extension and Indexed Addressing mode disabled (Legacy mode))
// CONFIG5L
#pragma config CP0 = OFF // Code Protection bit (Block 0 (000800-003FFFh) not code-protected)
#pragma config CP1 = OFF // Code Protection bit (Block 1 (004000-007FFFh) not code-protected)
#pragma config CP2 = OFF // Code Protection bit (Block 2 (008000-00BFFFh) not code-protected)
#pragma config CP3 = OFF // Code Protection bit (Block 3 (00C000-00FFFFh) not code-protected)
// CONFIG5H
#pragma config CPB = OFF // Boot Block Code Protection bit (Boot block (000000-0007FFh) not code-protected)
#pragma config CPD = OFF // Data EEPROM Code Protection bit (Data EEPROM not code-protected)
// CONFIG6L
#pragma config WRT0 = OFF // Write Protection bit (Block 0 (000800-003FFFh) not write-protected)
#pragma config WRT1 = OFF // Write Protection bit (Block 1 (004000-007FFFh) not write-protected)
#pragma config WRT2 = OFF // Write Protection bit (Block 2 (008000-00BFFFh) not write-protected)
#pragma config WRT3 = OFF // Write Protection bit (Block 3 (00C000-00FFFFh) not write-protected)
// CONFIG6H
#pragma config WRTC = OFF // Configuration Register Write Protection bit (Configuration registers (300000-3000FFh) not write-protected)
#pragma config WRTB = OFF // Boot Block Write Protection bit (Boot Block (000000-0007FFh) not write-protected)
#pragma config WRTD = OFF // Data EEPROM Write Protection bit (Data EEPROM not write-protected)
// CONFIG7L
#pragma config EBTR0 = OFF // Table Read Protection bit (Block 0 (000800-003FFFh) not protected from table reads executed in other blocks)
#pragma config EBTR1 = OFF // Table Read Protection bit (Block 1 (004000-007FFFh) not protected from table reads executed in other blocks)
#pragma config EBTR2 = OFF // Table Read Protection bit (Block 2 (008000-00BFFFh) not protected from table reads executed in other blocks)
#pragma config EBTR3 = OFF // Table Read Protection bit (Block 3 (00C000-00FFFFh) not protected from table reads executed in other blocks)
// CONFIG7H
#pragma config EBTRB = OFF // Boot Block Table Read Protection bit (Boot Block (000000-0007FFh) not protected from table reads executed in other blocks)
#define LCD_DEFAULT
// Librerie Laurtec
#include "LCD_44780.h"
#include "LCD_44780.c"
#include "delay.h"
#include "delay.c"
void main(void) {
unsigned char var;
var= 0;
ADCON1 =0x0F; //ADC OFF
PORTA = 0;
TRISA = 0x3F;
PORTB = 0;
TRISB = 0;
PORTC = 0;
TRISC = 0b11000000;
PORTD = 0;
TRISD = 0XFF;
PORTE = 0;
TRISE = 0;
OpenUSART( USART_TX_INT_OFF &
USART_RX_INT_ON &
USART_ASYNCH_MODE &
USART_EIGHT_BIT &
USART_CONT_RX &
USART_BRGH_HIGH,
64 );
OpenLCD(20);
ClearLCD();
CursorLCD(TURN_OFF_CURSOR,BLINKING_OFF);
BacklightLCD (TURN_ON_LED_LCD);
WriteStringLCD("Hello!!!");
putrsUSART("esempio!!!");
while (1) {
if(DataRdyUSART() == 1)
{
var = ReadUSART();
while (BusyUSART());
putcUSART(var);
}
}
}
Si prega Accedi o Crea un account a partecipare alla conversazione.
- Taglia
- Autore della discussione
- Junior Member
Riduci
Di più
9 Anni 11 Mesi fa #2
da StefA
..avevano magari fatto lo sgambetto al ka, ma il sangue restava sempre più denso dell'acqua.. [cit.]
Risposta da StefA al topic problema RX USART
se hai un oscilloscopio verifica che scrivendo da pc sul pin del micro arrivi effettivamente il dato.
Ricontrolla collegamenti e settaggio delle porte del micro.
Vedo che setti USART_RX_INT_ON, ma poi hai scritto la routine di interrupt? Hai impostato gli interrupt?
Però dal programma sembrerebbe che la controlli in polling.. prova a settarla USART_RX_INT_OFF.
Ste
Ricontrolla collegamenti e settaggio delle porte del micro.
Vedo che setti USART_RX_INT_ON, ma poi hai scritto la routine di interrupt? Hai impostato gli interrupt?
Però dal programma sembrerebbe che la controlli in polling.. prova a settarla USART_RX_INT_OFF.
Ste
..avevano magari fatto lo sgambetto al ka, ma il sangue restava sempre più denso dell'acqua.. [cit.]
Si prega Accedi o Crea un account a partecipare alla conversazione.
- StefA
- Moderator
Riduci
Di più
- Messaggi: 1222
- Ringraziamenti ricevuti 104
9 Anni 11 Mesi fa #3
da Taglia
Risposta da Taglia al topic problema RX USART
Ciao SteFA,
avevo settato USART_RX_INT_ON,
Mi sono dimenticato di sistemarlo nel momento in cui ho copiato il programma con il controllo in polling (avevo provato anche con il controllo in interrupt) nel forum.
Mi è arrivato il nuovo convertitore USB-RS232 e tutto funziona alla perfezione , quanto tempo perso per niente!!!
comunque Grazie.
Ciao
avevo settato USART_RX_INT_ON,
Mi sono dimenticato di sistemarlo nel momento in cui ho copiato il programma con il controllo in polling (avevo provato anche con il controllo in interrupt) nel forum.
Mi è arrivato il nuovo convertitore USB-RS232 e tutto funziona alla perfezione , quanto tempo perso per niente!!!
comunque Grazie.
Ciao
Si prega Accedi o Crea un account a partecipare alla conversazione.
- Taglia
- Autore della discussione
- Junior Member
Riduci
Di più
- Messaggi: 21
- Ringraziamenti ricevuti 0
9 Anni 11 Mesi fa #4
da StefA
..avevano magari fatto lo sgambetto al ka, ma il sangue restava sempre più denso dell'acqua.. [cit.]
Risposta da StefA al topic problema RX USART
il tempo "perso" fa esperienza..
Quindi il problema era che era rimasto attivo USART_RX_INT_ON?
Ste
Quindi il problema era che era rimasto attivo USART_RX_INT_ON?
Ste
..avevano magari fatto lo sgambetto al ka, ma il sangue restava sempre più denso dell'acqua.. [cit.]
Si prega Accedi o Crea un account a partecipare alla conversazione.
- StefA
- Moderator
Riduci
Di più
- Messaggi: 1222
- Ringraziamenti ricevuti 104
9 Anni 11 Mesi fa #5
da Taglia
Risposta da Taglia al topic problema RX USART
Ciao, no il problema era che non funzionava più, non so per quale motivo il convertitore USB-RS232.
Si prega Accedi o Crea un account a partecipare alla conversazione.
- Taglia
- Autore della discussione
- Junior Member
Riduci
Di più
- Messaggi: 21
- Ringraziamenti ricevuti 0
Moderatori: Mauro Laurenti, Pinna, StefA, Matteo Garia
Registrati al sito
Accedi a tutte le risorse e articoli non visibili pubblicamente, puoi registrarti con pochi passi.