mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-19 19:38:52 +08:00
chg: and wrap FPC code with defines..
This commit is contained in:
parent
a32052b5e6
commit
9571cf1d13
1 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,6 @@
|
|||
#include "i2c.h"
|
||||
#endif
|
||||
|
||||
|
||||
//=============================================================================
|
||||
// A buffer where we can queue things up to be sent through the FPGA, for
|
||||
// any purpose (fake tag, as reader, whatever). We go MSB first, since that
|
||||
|
@ -1296,11 +1295,12 @@ void UsbPacketReceived(uint8_t *packet, int len) {
|
|||
break;
|
||||
case CMD_PING:
|
||||
cmd_send(CMD_ACK,0,0,0,0,0);
|
||||
|
||||
|
||||
#ifdef WITH_FPC
|
||||
char header[] = {"*** Iceman Usart ***"};
|
||||
uint32_t res = usart_writebuffer((uint8_t *)header, sizeof(header), 100000);
|
||||
Dbprintf("after sending FPC [%x]", res);
|
||||
|
||||
#endif
|
||||
break;
|
||||
#ifdef WITH_LCD
|
||||
case CMD_LCD_RESET:
|
||||
|
|
Loading…
Add table
Reference in a new issue