🚨 ERROR: cannot communicate with the Proxmark (on Mac OS)

I got :rotating_light: ERROR: cannot communicate with the Proxmark (3 easy)
I don’t know that to do, I flash it, and everything seems to be ok…
I tried almost everything, If anyone can help me…

ok so, context would be wonderful

  • what have you tried
  • what guide are you following
  • where in the process did this error occur

Are you using the cable that came with the device? if so, get rid of it and grab one you know works well. the ones shipped with proxmark tend to have a reputation for being shit

2 Likes

Thank you so much, curiously, it has been to find the solution and your message has jumped out at me.
I have used:
brew remove proxmark3
brew install --with-generic proxmark3
pm3-flash-all

Anyways, thank you so much for your time!!!

For the future do

pm3-flash-bootrom

then

pm3-flash-fullimage

the flash-all command can screw things up real bad sometimes.

I followed all the above and still getting Error cannot communicate with the Proxmark3

Hey man. Brew is not the way. I had more issues trying to update brew than just downloading fresh from Git. This is my own install process and it is copied very directly from Amal’s Getting Started Guide and the official OSX Guide from RFIDResearchGroup

  1. Lets install the dependencies first. In terminal run the following commands:
    brew Install Git
    brew install readline qt5 gd pkgconfig coreutils
    brew install recode
    brew install astyle
  2. Create yourself a Github Folder. I have mine in ~/github/
  3. In your folder run
    git clone https://github.com/RfidResearchGroup/proxmark3.git
  4. cd proxmark3
  5. cp Makefile.platform.sample Makefile.platform
  6. nano Makefile.platform
  7. Notice the lines;
PLATFORM=PM3RDV4
#PLATFORM=PM3GENERIC

You will want to swap the # to the top line to comment it out and remove it from the bottom line to enable.

#PLATFORM=PM3RDV4
PLATFORM=PM3GENERIC
  1. Command+X, Y, Enter to save and close Nano
  2. make clean && make -j8 all

The button Trick

With your Proxmark3 unplugged from your machine, press and hold the button on your Proxmark3 as you plug it into a USB port. You can release the button, two of the four LEDs should stay on. You’re in bootloader mode, ready for the next step. In case the two LEDs don’t stay on when you’re releasing the button, you’ve an old bootloader, start over and keep the button pressed during the whole flashing procedure.

  1. ./pm3-flash-bootrom
  2. ./pm3-flash-fullimage
  3. Run pm3
  4. Run hw tune

If these steps dont work or you see error messages along the way, screenshot and post and ill try to help you out.

3 Likes

In case it’s useful, thank you, @Hamspiced, for the info. I had to downgrade Python to get mine to work.

brew uninstall --ignore-dependencies python@3.12
brew reinstall python@3.11 

I eventually figured that out from this thread > Unable to install latest on Mac OSX v4.18218 · Issue #39 · RfidResearchGroup/homebrew-proxmark3 · GitHub

I’m glad that worked for you. Even when I downgraded it would update every time I tried to compile.

Glad you got yours running again

1 Like

Thanks, well for the time being, but you know what this is like :slight_smile:

2 Likes

@Hamspiced this make clean and make all won’t work for me…I’m not sure why. Any thoughts ? I attached a screen shot of the error…I’m pretty new to this so if it’s a stupid mistake I apologize!

Can you post your Makefile.platform file?

It looks to be erroring at line 3.

looking at mine you should have a blank line there. or you copied incorrectly

PLATFORM=PM3GENERIC

and forgot to comment out the line below it

#PLATFORM=PM3RDV4