mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-08 05:31:25 +00:00
![Thomas Göttgens](/assets/img/avatar_default.png)
- 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
|