mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
Real-time LF sampling mode on armsrc
This commit is contained in:
parent
e1dc17df1a
commit
b4cc7c02cd
6 changed files with 166 additions and 5 deletions
|
@ -305,3 +305,11 @@ bool data_available(void) {
|
|||
return usb_poll_validate_length();
|
||||
#endif
|
||||
}
|
||||
|
||||
bool data_available_fast(void) {
|
||||
#ifdef WITH_FPC_USART_HOST
|
||||
return usb_available_length() || (usart_rxdata_available() > 0);
|
||||
#else
|
||||
return usb_available_length();
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue