vxKernel/vxgos/bootloader/boards/raspi3b/src/console/keysc.c

14 lines
175 B
C

//---
// Public
//---
/* console_key_get() : small one-shot key waiter */
int console_key_get(void)
{
while(1) {
_asm__ volatile ("nop");
}
return -1;
}