blob: 5c2242bced546e0fad3348366e95e92459050dcf [file] [log] [blame]
Brian Silverman8fce7482020-01-05 13:18:21 -08001/*----------------------------------------------------------------------------*/
Austin Schuh1e69f942020-11-14 15:06:14 -08002/* Copyright (c) 2018-2020 FIRST. All Rights Reserved. */
Brian Silverman8fce7482020-01-05 13:18:21 -08003/* 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#include "HALInitializer.h"
9
Austin Schuh1e69f942020-11-14 15:06:14 -080010#include "hal/HALBase.h"
Brian Silverman8fce7482020-01-05 13:18:21 -080011
12namespace hal {
13namespace init {
14std::atomic_bool HAL_IsInitialized{false};
15void RunInitialize() { HAL_Initialize(500, 0); }
16} // namespace init
17} // namespace hal