001// Copyright (c) FIRST and other WPILib contributors. 002// Open Source Software; you can modify and/or share it under the terms of 003// the WPILib BSD license file in the root directory of this project. 004 005package edu.wpi.first.hal.communication; 006 007public class NIRioStatus { 008 public static final int kRioStatusOffset = -63000; 009 010 public static final int kRioStatusSuccess = 0; 011 public static final int kRIOStatusBufferInvalidSize = kRioStatusOffset - 80; 012 public static final int kRIOStatusOperationTimedOut = -52007; 013 public static final int kRIOStatusFeatureNotSupported = kRioStatusOffset - 193; 014 public static final int kRIOStatusResourceNotInitialized = -52010; 015}