blob: 7017a9bab6f91ac9f2107ff773dc2eb3c6b50d3e [file] [log] [blame]
Delphine CC Chiuccd7db02023-02-09 14:48:53 +08001
2#pragma once
Delphine CC Chiu15c60e22024-04-12 13:01:32 -05003#include "config.hpp"
Delphine CC Chiuccd7db02023-02-09 14:48:53 +08004
5#include <cstdint>
6#include <string>
7
8struct ButtonConfig;
9
10struct CpldInfo
11{
12 std::string registerName;
13 uint32_t i2cAddress;
14 uint32_t i2cBus;
15 int cpldMappedFd; // io fd mapped with the cpld
16};
17
18int configCpld(ButtonConfig& buttonCfg);