This project is a firmware embedded systems task's objective is to implement a simple non-volatile settings manager using EEPROM emulation in RAM. The project involves storing and retrieving configuration settings (e.g., brightness level), simulating power-off by clearing RAM, and ensuring settings persist after reset.
- Project Overview
- Skills Tested
- Task Details
- Files Description
- How to Use
- Prerequisites
- Building the Project
- Apparatus
- Uploading to the Microcontroller
- Usage
- Troubleshooting
- Error Handling
- Conclusion
- ✅ EEPROM-like data storage in RAM
- ✅ Memory read/write operations
- ✅ Use of MPLAB X Watch Window for testing
- ✅ Basic error handling (corrupt data detection)
- Create a configuration struct to store user settings (brightness, mode).
- Store settings in EEPROM.
- Allow modification of settings and simulate power reset.
- Verify settings are restored correctly after simulated power-off.
- main.c: Contains the main logic for the settings manager.
- eeprom.c: Implements EEPROM emulation functions.
- eeprom.h: Header file for EEPROM emulation functions.
- settings.c: Implements functions to manage settings.
- settings.h: Header file for settings management functions.
- Makefile: Build script for the project.
- README.md: Project documentation.
- Build the project using the provided Makefile.
- Run the project in MPLAB X IDE.
- Use the MPLAB X Watch Window to test and verify the settings manager functionality.
- Simulate power-off by clearing RAM and ensure settings persist after reset.
- MPLAB X IDE
- XC8 Compiler
- PIC16F877A Microcontroller
- Open the project in MPLAB X IDE.
- Ensure the XC8 compiler is selected.
- Build the project to generate the
.hex
or.cof
file. - Alternatively, you can build the project using Visual Studio Code with the MPLAB extension. Set the project output file path, name, and extension using
Ctrl+Shift+P
and selecting "Edit Project Properties".
Necessary components that can't be changed:
- PIC16F877A microcontroller: To run the program.
- Quartz Crystal and 2 1nF non-polarized capacitors.
Optional components depending on your circuit:
- 3 Buttons
- 3 BCD 7-segment displays.
- 3 Resistors.
After building the project, upload the generated .hex
or .cof
file to the PIC16F877A microcontroller using a suitable programmer. The file can be found in either of the following paths:
- In case of using MPLAB X IDE: dist\default\debug\Simple_EEPROM_settings_manager.X.debug.cof
- In case of using Visual Studio Code (if the file name was set as default): out\PIC_Clock\default.hex
- Connect the microcontroller and the necessary components as per the circuit diagram.
- Power on the system.
- Ensure all connections are secure and correct.
- Verify the microcontroller is programmed with the correct
.hex
or.cof
file. - Check the power supply to the microcontroller and other components.
The project includes basic error handling to detect and manage corrupt data in the EEPROM.
This project demonstrates the implementation of a simple non-volatile settings manager using EEPROM emulation in RAM, with a focus on memory management, data persistence, and error handling.