Skip to content

This example demonstrates emulation of a supply control module, which controls power supply to a system through voltage regulator using the PIC microcontroller. Compatible PIC16F152xx family of MCUs are PIC16F15214,PIC16F15223,PIC16F15254,PIC16F15276

License

Notifications You must be signed in to change notification settings

microchip-pic-avr-examples/pic16f15244-cnano-system-power-supply-control-module-mplab-mcc

Repository files navigation

MCHP

System Power Supply Control Module Emulation Using PIC16F15244 Microcontroller

Introduction

Modern process computers, commonly based on high-end 32- or 64-bit microprocessors, provide developers with significant options in terms of operating system use. However, their high processing power is paid for with equally high-power demand, which can be a problem in battery-operated real-time applications. Using a simple low-power and cost-effective 8-bit PIC® microcontroller(MCU) as the secondary device provides a convenient and cost-effective means of controlling the system power state. This discussion will consider the use of PIC16F microcontrollers in that role.

This code example demonstrates the use of the PIC16F15244 microcontroller in system power supply control applications. For the demonstration, a reference application based on a Raspberry Pi© Single Board Computer (SBC) is used as the process computer (host) and a PIC16F15244 Curiosity Nano Evaluation Kit as a power supply control module (client). Additionally, the SBC functionality is also emulated with another PIC16F15244 microcontroller, as one of the use cases discussed in the code example.

For complete details of the application implementation, refer to the Using PIC16F15244 Microcontrollers for System Power Supply Control application note.

Related Documentation

Demo Description

For the demonstration of the supply control module application, two PIC16F15244 Curiosity Nano Evaluation Kits are used: one acts as host and the other as client. The host is represented by the process computer which emulates the Raspberry Pi based SBC functionality, whereas the power supply control module acts as client, turning the regulator ON or OFF. This is emulated by the on-board LED.

The process computer sends out a SLEEP() command to the power supply control module over an Inter-Integrated Circuit (I2C) bus to shut down the system power. This sleep command contains the duration for which the process computer is to be put in Low-Power mode. For simplicity, the on-board switch on the process computer (i.e., the PIC16F15244 Curiosity Nano Evaluation kit emulating the process computer) is used to trigger the sleep command.

After receiving the SLEEP() command, the supply control module waits for 30 seconds before turning OFF the regulator. This period provides sufficient time for the process computer to perform the shutdown housekeeping tasks that are required for Linux® OS-like operating systems (such as invoking the shutdown procedure). The supply control module device disables the emulated voltage regulator, then enters Sleep mode. The supply control module will automatically turn ON the voltage regulator after the power-down period expires or an external trigger is provided.

Software Used

Hardware Used

  • PIC16F15244 Curiosity Nano Evaluation Kit EV09Z19A

Supply Control Module Implementation

The Supply Control Module application firmware starts with the initialization of the system and required peripherals of the PIC16F15244 microcontroller. After initialization, it enters Power-Down mode. The microcontroller remains in Power-Down mode until it receives an I2C command from the process computer. To an I2C interrupt, the microcontroller wakes up from Sleep and verifies whether the received I2C command is valid. On reception of a valid Sleep command, the control module waits for a period of 30 seconds using a timer peripheral before turning OFF the regulator. Once the 30 second wait period is over, the application firmware disables the I2C peripheral and turns OFF the LED (voltage regulator), then goes into Low-Power mode by entering Sleep. This wait period can be configured by the user as per application requirement. The supply control device wakes up periodically from Sleep mode using the Watchdog Timer (WDT). After the total power-down duration is complete or if a valid switch press event is detected, the supply control module turns ON the LED.

Process Computer Module Implementation

Refer to the Process Computer Emulation using PIC16F15244 Microcontroller code example for more details about the process computer module implementation.

Demonstration Setup

Demo Operation

For the demonstration, two PIC16F15244 Curiosity Nano Evaluation kits are used: one board as supply control module and the other as process computer. Configure the hardware as shown in demo setup section. Flash the supply control module firmware and process computer module firmware to the respective Curiosity Nano Evaluation Kits. The functionality of the application is detailed below.

  1. After flashing the firmware, the supply control module enters Power-Down mode and continues to remain in it until it receives the I2C command from the process computer module.
  2. Press the on-board switch of the process computer (PIC16F15244 Curiosity Nano Evaluation Kit), which transmits the I2C command to the supply control module. The LED blink is used as an indication for the switch press event detection and I2C command transmission .
  3. Supply control module wakes up from Sleep as soon as it receives the I2C command from the process computer, indicated by LED blink.
  4. After receiving a valid SLEEP() command, the supply control module waits 30s before entering Sleep mode.
  5. Once the waiting period is over, the supply control module enters Sleep mode by turning OFF the LED. It remains in the Sleep mode for the sleep duration specified by the process computer.
  6. After the sleep duration is complete or by pressing the on-board switch, the supply control module wakes up from Sleep, as indicated by the LED blink.

System Power Supply Control for the Raspberry Pi Application

This section demonstrates a use case of system power supply control for use with a Raspberry Pi-based reference application. The application functionality is similar to the implementation based on the PIC16F15244 Curiosity Nano kit. The process computer implementation is switched to the Raspberry Pi board and supply control module implementation is moved to the dedicated hardware setup: a PIC16F15245 control board.

Refer to the System Power Supply Control Module using PIC16F15245 Microcontroller code example for more details about the implementation.

Conclusion

This code example presents developers with a brief overview of how an 8-bit microcontroller can be used to improve the power consumption of a process computer, such as an SBC. The proof-of-concept application presented here can be extended in various ways. For example, oscillator inaccuracies and start-up delays can be compensated for by monitoring the actual sleep time of the process computer itself. That way, the process computer can change the amount of time the system is expected to sleep. In addition, various real-time tasks can also be offloaded to the 8-bit PIC microcontroller.

About

This example demonstrates emulation of a supply control module, which controls power supply to a system through voltage regulator using the PIC microcontroller. Compatible PIC16F152xx family of MCUs are PIC16F15214,PIC16F15223,PIC16F15254,PIC16F15276

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published