mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
style
This commit is contained in:
parent
3b7f2be264
commit
e43f6804a1
5 changed files with 775 additions and 771 deletions
|
@ -956,8 +956,7 @@ static int CmdTimeout(const char *Cmd) {
|
||||||
// UART_USB_CLIENT_RX_TIMEOUT_MS is considered as the minimum required timeout.
|
// UART_USB_CLIENT_RX_TIMEOUT_MS is considered as the minimum required timeout.
|
||||||
if (newTimeout < UART_USB_CLIENT_RX_TIMEOUT_MS) {
|
if (newTimeout < UART_USB_CLIENT_RX_TIMEOUT_MS) {
|
||||||
PrintAndLogEx(WARNING, "Timeout less than %ums might cause errors.", UART_USB_CLIENT_RX_TIMEOUT_MS);
|
PrintAndLogEx(WARNING, "Timeout less than %ums might cause errors.", UART_USB_CLIENT_RX_TIMEOUT_MS);
|
||||||
}
|
} else if (newTimeout > 5000) {
|
||||||
else if(newTimeout > 5000) {
|
|
||||||
PrintAndLogEx(WARNING, "Timeout greater than 5000ms makes the client unresponsive.");
|
PrintAndLogEx(WARNING, "Timeout greater than 5000ms makes the client unresponsive.");
|
||||||
}
|
}
|
||||||
uart_reconfigure_timeouts(newTimeout);
|
uart_reconfigure_timeouts(newTimeout);
|
||||||
|
|
|
@ -213,9 +213,14 @@ clean:
|
||||||
|
|
||||||
help:
|
help:
|
||||||
@echo "################################################################"
|
@echo "################################################################"
|
||||||
@echo "# Valid targets are: $(TARGETS)"
|
@echo "#"
|
||||||
@echo "# <target> - Builds only one of the above listed targets"
|
@echo "# <target> - Builds only one of the above listed targets"
|
||||||
@echo "# all - Builds the FPGA bitstreams for all targets"
|
@echo "# all - Builds the FPGA bitstreams for all targets"
|
||||||
@echo "# clean - Keeps .bit files but cleans intermediate build files for all targets"
|
@echo "# clean - Keeps .bit files but cleans intermediate build files for all targets"
|
||||||
|
@echo "#"
|
||||||
|
@echo "#"
|
||||||
|
@echo "# Valid targets are:"
|
||||||
|
@echo "# $(TARGETS)"
|
||||||
|
@echo "#"
|
||||||
@echo "################################################################"
|
@echo "################################################################"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue