mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
baudrate for usart: use define and limit to 115200 only for WITH_FPC_HOST
This commit is contained in:
parent
85f67006e4
commit
3cba736841
2 changed files with 5 additions and 3 deletions
|
@ -27,6 +27,7 @@
|
|||
#include "cmdhw.h"
|
||||
#include "whereami.h"
|
||||
#include "comms.h"
|
||||
#include "usart.h"
|
||||
|
||||
static void showBanner(void) {
|
||||
printf("\n\n");
|
||||
|
@ -422,8 +423,9 @@ int main(int argc, char *argv[]) {
|
|||
|
||||
// default speed for USB 460800, USART(FPC serial) 115200 baud
|
||||
if (speed == 0)
|
||||
#ifdef WITH_FPC
|
||||
speed = 115200;
|
||||
#ifdef WITH_FPC_HOST
|
||||
// Let's assume we're talking by default to pm3 over usart in this mode
|
||||
speed = AT91_BAUD_RATE;
|
||||
#else
|
||||
speed = 460800;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue