blob: 316777091940cfbb14989e38fe0c8b3ae6db9f4b [file] [log] [blame]
Daniel Petti1f448512013-10-19 19:35:55 +00001#include "stdio.h"
2
3#include "aos/common/control_loop/Timing.h"
4#include "aos/common/time.h"
5#include "aos/common/util/trapezoid_profile.h"
6#include "aos/common/messages/RobotState.q.h"
7#include "aos/common/logging/logging.h"
8
9#include "bot3/autonomous/auto.q.h"
10#include "bot3/control_loops/drivetrain/drivetrain.q.h"
11#include "frc971/constants.h"
12
13using ::aos::time::Time;
14
15namespace bot3 {
16namespace autonomous {
17
18// start with N discs in the indexer
19void HandleAuto() {
20 // TODO (danielp): Do something in auto.
21 // (That's why I left all the includes.)
22 LOG(INFO, "Auto mode is not currently implemented on this robot.\n");
23}
24
25} // namespace autonomous
26} // namespace bot3