mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-01 18:29:56 +00:00
4967a16abe
- Fix a bug with debug mqtt - nrf52 needs more love, there's a strange error while linking. Help appreciated
19 lines
251 B
C++
19 lines
251 B
C++
#pragma once
|
|
#ifndef _MT_MEMGET_H
|
|
#define _MT_MEMGET_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
class MemGet
|
|
{
|
|
public:
|
|
uint32_t getFreeHeap();
|
|
uint32_t getHeapSize();
|
|
uint32_t getFreePsram();
|
|
uint32_t getPsramSize();
|
|
};
|
|
|
|
extern MemGet memGet;
|
|
|
|
#endif
|