blob: 9ed286f8d88674b0b05d6714d3c85876aac7b61b [file] [log] [blame]
jerrymf1579332013-02-07 01:56:28 +00001/*----------------------------------------------------------------------------*/
2/* Copyright (c) FIRST 2008. All Rights Reserved. */
3/* Open Source Software - may be modified and shared by FRC teams. The code */
4/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
5/*----------------------------------------------------------------------------*/
6
7#ifndef __WPI_ERRORS_H__
8#define __WPI_ERRORS_H__
9
10#ifdef WPI_ERRORS_DEFINE_STRINGS
11#define S(label, offset, message) const char *wpi_error_s_##label = message ;
12#else
13#define S(label, offset, message) extern const char *wpi_error_s_##label;
14#endif
15
16/*
17 * Fatal errors
18 */
19S(ModuleIndexOutOfRange, -1, "Allocating module that is out of range or not found");
20S(ChannelIndexOutOfRange, -1, "Allocating channel that is out of range");
21S(NotAllocated, -2, "Attempting to free unallocated resource");
22S(ResourceAlreadyAllocated, -3, "Attempted to reuse an allocated resource");
23S(NoAvailableResources, -4, "No available resources to allocate");
24S(NullParameter, -5, "A pointer parameter to a method is NULL");
25S(Timeout, -6, "A timeout has been exceeded");
26S(CompassManufacturerError, -7, "Compass manufacturer doesn't match HiTechnic");
27S(CompassTypeError, -8, "Compass type doesn't match expected type for HiTechnic compass");
28S(IncompatibleMode, -9, "The object is in an incompatible mode");
29S(AnalogTriggerLimitOrderError, -10, "AnalogTrigger limits error. Lower limit > Upper Limit");
30S(AnalogTriggerPulseOutputError, -11, "Attempted to read AnalogTrigger pulse output.");
31S(TaskError, -12, "Task can't be started");
32S(TaskIDError, -13, "Task error: Invalid ID.");
33S(TaskDeletedError, -14, "Task error: Task already deleted.");
34S(TaskOptionsError, -15, "Task error: Invalid options.");
35S(TaskMemoryError, -16, "Task can't be started due to insufficient memory.");
36S(TaskPriorityError, -17, "Task error: Invalid priority [1-255].");
37S(DriveUninitialized, -18, "RobotDrive not initialized for the C interface");
38S(CompressorNonMatching, -19, "Compressor slot/channel doesn't match previous instance");
39S(CompressorAlreadyDefined, -20, "Creating a second compressor instance");
40S(CompressorUndefined, -21, "Using compressor functions without defining compressor");
41S(InconsistentArrayValueAdded, -22, "When packing data into an array to the dashboard, not all values added were of the same type.");
42S(MismatchedComplexTypeClose, -23, "When packing data to the dashboard, a Close for a complex type was called without a matching Open.");
43S(DashboardDataOverflow, -24, "When packing data to the dashboard, too much data was packed and the buffer overflowed.");
44S(DashboardDataCollision, -25, "The same buffer was used for packing data and for printing.");
45S(EnhancedIOMissing, -26, "IO is not attached or Enhanced IO is not enabled.");
46S(LineNotOutput, -27, "Cannot SetDigitalOutput for a line not configured for output.");
47S(ParameterOutOfRange, -28, "A parameter is out of range.");
48S(SPIClockRateTooLow, -29, "SPI clock rate was below the minimum supported");
49S(JaguarVersionError, -30, "Jaguar firmware version error");
50S(NetworkTablesReadError, -40, "Error reading NetworkTables socket");
51S(NetworkTablesBufferFull, -41, "Buffer full writing to NetworkTables socket");
52S(NetworkTablesWrongType, -42, "The wrong type was read from the NetworkTables entry");
53S(NetworkTablesCorrupt, -43, "NetworkTables data stream is corrupt");
54S(SmartDashboardMissingKey, -43, "SmartDashboard data does not exist");
55S(CommandIllegalUse, -50, "Illegal use of Command");
56
57/*
58 * Warnings
59 */
60S(SampleRateTooHigh, 1, "Analog module sample rate is too high");
61S(VoltageOutOfRange, 2, "Voltage to convert to raw value is out of range [-10; 10]");
62S(CompressorTaskError, 3, "Compressor task won't start");
63S(LoopTimingError, 4, "Digital module loop timing is not the expected value");
64S(NonBinaryDigitalValue, 5, "Digital output value is not 0 or 1");
65S(IncorrectBatteryChannel, 6, "Battery measurement channel is not correct value");
66S(BadJoystickIndex, 7, "Joystick index is out of range, should be 1-4");
67S(BadJoystickAxis, 8, "Joystick axis is out of range");
68S(InvalidMotorIndex, 9, "Motor index is out of range, should be 0-3");
69S(DriverStationTaskError, 10, "Driver Station task won't start");
70S(EnhancedIOPWMPeriodOutOfRange, 11, "Driver Station Enhanced IO PWM Output period out of range.");
71S(SPIWriteNoMOSI, 12, "Cannot write to SPI port with no MOSI output");
72S(SPIReadNoMISO, 13, "Cannot read from SPI port with no MISO input");
73S(SPIReadNoData, 14, "No data available to read from SPI");
74S(IncompatibleState, 15, "Incompatible State: The operation cannot be completed");
75
76#undef S
77
78#endif // __WPI_ERRORS_H__