Xem lại lý thuyết về EEPROM ở BÀI 14 !
Và mục đích của bài này là chúng ta sẽ lưu giá trị đếm được vào địa chỉ 0 của bộ nhớ và khi dừng chương trình lại và mở lên thì giá trị đếm của chúng ta sẽ được lưu lại ! Ví dụ khi chạy chương trình giá trị đếm là 4 thì khi dừng và chạy lại thị giá trị đếm vẫn là 4 ! Ở đây mình dùng Protues 7.7 bản không cần cài đặt ! Các phiên bản 8 có thể không hỗ trợ cái này nên khi chạy nó sẽ không lưu lại đâu nha !
- Đây là ảnh mô phỏng protues.
- Đây là code chương trình.
- Đây là ảnh mô phỏng protues.
- Đây là code chương trình.
#include <xc.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// CONFIG
#pragma config FOSC = HS // Oscillator Selection bits (HS oscillator)
#pragma config WDTE = OFF // Watchdog Timer Enable bit (WDT disabled)
#pragma config PWRTE = OFF // Power-up Timer Enable bit (PWRT disabled)
#pragma config BOREN = OFF // Brown-out Reset Enable bit (BOR disabled)
#pragma config LVP = OFF // Low-Voltage (Single-Supply) In-Circuit Serial Programming Enable bit (RB3 is digital I/O, HV on MCLR must be used for programming)
#pragma config CPD = OFF // Data EEPROM Memory Code Protection bit (Data EEPROM code protection off)
#pragma config WRT = OFF // Flash Program Memory Write Enable bits (Write protection off; all program memory may be written to by EECON control)
#pragma config CP = OFF // Flash Program Memory Code Protection bit (Code protection off)
#define _XTAL_FREQ 20000000
void main(void)
{
TRISB = 0X00;
PORTB = eeprom_read(0);
TRISAbits.TRISA0 = 1;
ADCON1 = 0x07;
while(1)
{
if(PORTAbits.RA0 == 0)
{
PORTB++;
eeprom_write(0,PORTB);
while(PORTAbits.RA0 == 0);
}
}
}
- Link download project Click here#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// CONFIG
#pragma config FOSC = HS // Oscillator Selection bits (HS oscillator)
#pragma config WDTE = OFF // Watchdog Timer Enable bit (WDT disabled)
#pragma config PWRTE = OFF // Power-up Timer Enable bit (PWRT disabled)
#pragma config BOREN = OFF // Brown-out Reset Enable bit (BOR disabled)
#pragma config LVP = OFF // Low-Voltage (Single-Supply) In-Circuit Serial Programming Enable bit (RB3 is digital I/O, HV on MCLR must be used for programming)
#pragma config CPD = OFF // Data EEPROM Memory Code Protection bit (Data EEPROM code protection off)
#pragma config WRT = OFF // Flash Program Memory Write Enable bits (Write protection off; all program memory may be written to by EECON control)
#pragma config CP = OFF // Flash Program Memory Code Protection bit (Code protection off)
#define _XTAL_FREQ 20000000
void main(void)
{
TRISB = 0X00;
PORTB = eeprom_read(0);
TRISAbits.TRISA0 = 1;
ADCON1 = 0x07;
while(1)
{
if(PORTAbits.RA0 == 0)
{
PORTB++;
eeprom_write(0,PORTB);
while(PORTAbits.RA0 == 0);
}
}
}
2 nhận xét
Write nhận xétad giải thích kĩ được không hay có ví dụ đơn giản không ạ ??
ReplyBạn đọc datasheet phần eeprom trước đã ! còn bài này thì chỉ lưu giá trị đếm vào bộ nhớ eeprom thôi ! cụ thể là đọc giá trị từ PORTB sau đó nó lưu vào địa chỉ 0 của bộ nhớ thôi !:D
ReplyEmoticonEmoticon