blob: afa691a101c232797b49334bd361a2641e1c398d [file] [log] [blame]
Brian Silvermanf7f267a2017-02-04 16:16:08 -08001/*----------------------------------------------------------------------------*/
2/* Copyright (c) FIRST 2016-2017. All Rights Reserved. */
3/* Open Source Software - may be modified and shared by FRC teams. The code */
4/* must be accompanied by the FIRST BSD license file in the root directory of */
5/* the project. */
6/*----------------------------------------------------------------------------*/
7
8#pragma once
9
10#include <stdint.h>
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16int32_t HAL_GetNumAccumulators(void);
17int32_t HAL_GetNumAnalogTriggers(void);
18int32_t HAL_GetNumAnalogInputs(void);
19int32_t HAL_GetNumAnalogOutputs(void);
20int32_t HAL_GetNumCounters(void);
21int32_t HAL_GetNumDigitalHeaders(void);
22int32_t HAL_GetNumPWMHeaders(void);
23int32_t HAL_GetNumDigitalChannels(void);
24int32_t HAL_GetNumPWMChannels(void);
25int32_t HAL_GetNumDigitalPWMOutputs(void);
26int32_t HAL_GetNumEncoders(void);
27int32_t HAL_GetNumInterrupts(void);
28int32_t HAL_GetNumRelayChannels(void);
29int32_t HAL_GetNumRelayHeaders(void);
30int32_t HAL_GetNumPCMModules(void);
31int32_t HAL_GetNumSolenoidChannels(void);
32int32_t HAL_GetNumPDPModules(void);
33int32_t HAL_GetNumPDPChannels(void);
34#ifdef __cplusplus
35}
36#endif