You've already forked meshtastic-device-ui
mirror of
https://github.com/m5stack/meshtastic-device-ui.git
synced 2026-05-20 11:51:03 -07:00
14 lines
248 B
C++
14 lines
248 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
class LinuxHelper
|
|
{
|
|
public:
|
|
static uint32_t getAvailableMem(void);
|
|
static uint32_t getFreeMem(void);
|
|
static uint32_t getTotalMem(void);
|
|
|
|
protected:
|
|
static uint32_t getMem(const char *entry);
|
|
}; |