2021-03-04 18:29:28 +01:00
|
|
|
#ifndef LINUX_GPIO_GPIOCOOKIE_H_
|
|
|
|
#define LINUX_GPIO_GPIOCOOKIE_H_
|
2021-01-23 17:22:40 +01:00
|
|
|
|
|
|
|
#include <fsfw/devicehandlers/CookieIF.h>
|
2021-01-28 14:55:21 +01:00
|
|
|
#include <fsfw/returnvalues/HasReturnvaluesIF.h>
|
2021-01-23 17:22:40 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
#include "GpioIF.h"
|
|
|
|
#include "gpioDefinitions.h"
|
|
|
|
|
2021-01-23 17:22:40 +01:00
|
|
|
/**
|
|
|
|
* @brief Cookie for the GpioIF. Allows the GpioIF to determine which
|
|
|
|
* GPIOs to initialize and whether they should be configured as in- or
|
|
|
|
* output.
|
|
|
|
* @details One GpioCookie can hold multiple GPIO configurations. To add a new
|
|
|
|
* GPIO configuration to a GpioCookie use the GpioCookie::addGpio
|
|
|
|
* function.
|
|
|
|
*
|
|
|
|
* @author J. Meier
|
|
|
|
*/
|
2022-01-17 15:58:27 +01:00
|
|
|
class GpioCookie : public CookieIF {
|
|
|
|
public:
|
|
|
|
GpioCookie();
|
2021-01-23 17:22:40 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
virtual ~GpioCookie();
|
2021-01-23 17:22:40 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
ReturnValue_t addGpio(gpioId_t gpioId, GpioBase* gpioConfig);
|
|
|
|
/**
|
|
|
|
* @brief Get map with registered GPIOs.
|
|
|
|
*/
|
|
|
|
GpioMap getGpioMap() const;
|
2021-01-23 17:22:40 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* Returns a copy of the internal GPIO map.
|
|
|
|
*/
|
|
|
|
GpioMap gpioMap;
|
2021-01-23 17:22:40 +01:00
|
|
|
};
|
|
|
|
|
2021-03-04 18:29:28 +01:00
|
|
|
#endif /* LINUX_GPIO_GPIOCOOKIE_H_ */
|