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

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