2016-07-08 00:08:07 -07:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2017-08-23 22:06:13 -07:00
|
|
|
/* Copyright (c) 2016-2017 FIRST. All Rights Reserved. */
|
2016-07-08 00:08:07 -07:00
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
2017-08-18 21:35:53 -07:00
|
|
|
#include "AnalogInternal.h"
|
2016-07-08 00:08:07 -07:00
|
|
|
|
2017-08-18 21:35:53 -07:00
|
|
|
#include "HAL/AnalogInput.h"
|
|
|
|
|
#include "PortsInternal.h"
|
2016-07-08 00:08:07 -07:00
|
|
|
|
|
|
|
|
namespace hal {
|
2017-08-18 21:35:53 -07:00
|
|
|
IndexedHandleResource<HAL_AnalogInputHandle, hal::AnalogPort, kNumAnalogInputs,
|
|
|
|
|
HAL_HandleEnum::AnalogInput>
|
|
|
|
|
analogInputHandles;
|
2016-07-08 00:08:07 -07:00
|
|
|
}
|