19 lines
514 B
C
19 lines
514 B
C
/**
|
|
* @file bsp.h
|
|
* @brief This file contains the declarations and definitions for the BSP (Board Support Package) module.
|
|
*
|
|
* The BSP module provides functions and configurations specific to the hardware platform, such as initializing
|
|
* peripherals, configuring GPIO pins, and managing interrupts.
|
|
*
|
|
* @author xxx
|
|
* @date 2023-12-27 14:44:03
|
|
* @copyright Copyright (c) 2024 by xxx, All Rights Reserved.
|
|
*/
|
|
#ifndef __BSP_H__
|
|
#define __BSP_H__
|
|
|
|
#include "gpios.h"
|
|
#include "spis.h"
|
|
|
|
#endif ///< __BSP_H__
|