mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +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
|
|
}
|