summaryrefslogtreecommitdiff
path: root/lib/ultralib/src/io/pigetcmdq.c
blob: 4724301d0d434a39160139560a8a210fa07b7b67 (plain)
1
2
3
4
5
6
7
8
9
10
#include "PR/os_internal.h"
#include "piint.h"

OSMesgQueue* osPiGetCmdQueue(void) {
    if (!__osPiDevMgr.active) {
        return NULL;
    } else {
        return __osPiDevMgr.cmdQueue;
    }
}