001/*----------------------------------------------------------------------------*/ 002/* Copyright (c) FIRST 2016-2017. All Rights Reserved. */ 003/* Open Source Software - may be modified and shared by FRC teams. The code */ 004/* must be accompanied by the FIRST BSD license file in the root directory of */ 005/* the project. */ 006/*----------------------------------------------------------------------------*/ 007 008package edu.wpi.first.wpilibj.communication; 009 010public class NIRioStatus { 011 // TODO: Should this file be auto-generated? 012 public static final int kRioStatusOffset = -63000; 013 014 public static final int kRioStatusSuccess = 0; 015 public static final int kRIOStatusBufferInvalidSize = kRioStatusOffset - 80; 016 public static final int kRIOStatusOperationTimedOut = -52007; 017 public static final int kRIOStatusFeatureNotSupported = kRioStatusOffset - 193; 018 public static final int kRIOStatusResourceNotInitialized = -52010; 019}