2016-01-02 03:02:34 -08:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2018-04-29 13:29:07 -07:00
|
|
|
/* Copyright (c) 2018 FIRST. All Rights Reserved. */
|
2016-01-02 03:02:34 -08: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. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
2018-04-29 13:29:07 -07:00
|
|
|
#include <chrono>
|
|
|
|
|
#include <thread>
|
2014-08-06 11:29:15 -04:00
|
|
|
|
2018-07-20 00:03:45 -07:00
|
|
|
#include <hal/HAL.h>
|
2018-04-29 13:29:07 -07:00
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
HAL_Initialize(500, 0);
|
|
|
|
|
std::this_thread::sleep_for(std::chrono::seconds(2));
|
2014-08-06 11:29:15 -04:00
|
|
|
}
|