mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
16 lines
248 B
C++
16 lines
248 B
C++
|
|
#include "HAL/cpp/StackTrace.hpp"
|
|
|
|
#include "HAL/HAL.hpp"
|
|
#include "../ChipObject.h"
|
|
#include <stdio.h>
|
|
|
|
|
|
void printCurrentStackTrace() {
|
|
// TODO: Implement
|
|
}
|
|
|
|
bool getErrnoToName(int32_t errNo, char* name) {
|
|
return false; // TODO: Implement
|
|
}
|