There is no useful port in mac Big sur 11.6 for arduino

Please help me out from this issue, I've installed Arduino 1.8.15 in mac Big sur 11.6 but I can't use serial monitor because there is no useful port available.

1 Like

Please follow the advice below and see if they fix the issue:

  • Try a new USB cable making sure it is a DATA USB one and not a charging one.

  • In the case you are using a USB-A to USB-C dongle try another one(preferable offical apple); Also try flipping the dongle upside down in different orientations as this can make a difference at times.

  • Try another port on the Mac see if it has the same behaviour

  • Make sure the board is directly connected to the USB port without USB hub in between.

  • Make sure AVR core is up to date on Arduino IDE > Tools > Boards > Board Manager: search for Arduino UNO and update/install the AVR core, that is, the latest version.

  • Connect the board to a different computer and check if it has the same behaviour.

1 Like

You might need to install new drivers on your Mac for the serial device to be found.

@engrnazmulkhan Install the package core for your board, see https://www.arduino.cc/en/Guide/Cores

Rest assured that I'm using both an official Arduino UNO (MEGA8u2 for Serial) and an UNO clone (CH340G for Serial) on Mac OS X 11.6.

same problem here... did you ever solve this?

I'm having the same issue with an Arduino MKR1000.

I plug it in and see the green led light up, but the device does not show up in the Arduino IDE or my Mac's System Report. I only see the Bluetooth port in the IDE. I've tried two Macbook Pros running MacOS 12.0.1 and 11.6.1 and both have the exact same issue.

Here's a list of what I've tried with no success:

  • Two Macbooks running different versions of macOS
  • Multiple USB hubs, USB ports, and USB cables
  • Multiple versions of Arduino IDE (previous, current, nightly, 2.0 beta)
  • Multiple versions of Arduino IDE board manager packages
  • Manually resetting Arduino board (double pressing reset button)
  • Installing all possible drivers I've seen online

Starting to think it may be a defective board, as I've read reports that the LED can still light up despite the rest of the board being defective :confused:

After you do that, does the "L" LED next to the 5V pin start to pulse?

No, I tried a few different suggestions for resetting but never saw any feedback from the onboard LED.

I tried:

  • Quickly double-pressing the reset button
  • Holding the reset button for 30 seconds
  • Holding the reset button while unplugging the MKR1000
  • Holding the reset button while plugging in the MKR1000

This is the only technique that does anything special. When you do the double reset the board goes into a state where it remains persistently running the bootloader program, which is indicated by a pulsing "L" LED. That can be used to recover the board from a state where a normal upload is not possible due to interference from the sketch program.

All the other reset operations you described have no special significance and are equivalent to just pressing the reset button once, which restarts the sketch program.


If you don't get a pulsing "L" LED after doing a double reset, it indicates one of two things:

  • There is physical damage to the board that is causing the bootloader to not run
  • The bootloader program is missing or corrupted

In the case of physical damage, it can be difficult to identify which components are damaged, and even after identification it may require special equipment and soldering skills to replace those components. For most people, this means that all but the most simple damage puts the board beyond economically feasible repair and the best thing is to replace the board.


In the case of a missing or corrupted bootloader, the board can be preserved by re-flashing the bootloader. I'll share instructions for doing that in case you want to give it a try:

Note: alternative methods are described at the end of the post.

Using an Arduino board as the programmer

You'll need

  • An extra Arduino board that runs at 3.3 V to use as the programmer.
    • Any of the SAMD architecture boards (e.g., MKR boards, Nano 33 IoT, Zero) will work fine.
    • The sketch is too large for the AVR architecture boards (e.g., Mega), so they can't be used.
    • The sketch doesn't compile for the Nano 33 BLE, so it can't be used.
  • A way to make the connections to the SWD pins on your target Arduino board.
    On the MKR1000, it is a 0.05" pitch 2x5 male header on the top of the board, which you will need an adapter and cable for.

Instructions

  1. Select Sketch > Include Library > Manage Libraries... from the Arduino IDE's menus.

  2. Wait for the download to finish.

  3. In the "Filter your search..." field, type "Adafruit DAP library".

  4. Press Enter.

  5. Click on "Adafruit DAP library by Adafruit".

  6. Click the Install button.

  7. Wait for the installation to finish.

  8. Click the Close button.

  9. Select File > Examples > Adafruit DAP library > samd21 > flash_MKR_bootloaders from the Arduino IDE's menus.
    (despite the "MKR" in the sketch name, this also supports the Nano 33 IoT)

  10. Select your programmer Arduino board from the Tools > Board from the Arduino IDE's menus.

  11. Select the port of the programmer Arduino board from the Tools > Port from the Arduino IDE's menus.

  12. Select Sketch > Upload from the Arduino IDE's menus.

  13. Wait for the upload to finish successfully.

  14. Unplug the programmer Arduino board from your computer.

  15. Connect the programmer Arduino board to the target Arduino board as follows:

    Programmer Target
    VCC +3V3
    1 SWDIO
    2 SWCLK
    GND GND
    0 RESETN

    MKR1000 SWD header pinout:

  16. Plug the USB cable of the programmer Arduino board into your computer.

  17. Select Tools > Serial Monitor from the Arduino IDE's menus.

  18. Select "No line ending" from the dropdown menu near the bottom right corner of the Serial Monitor window.

  19. You should see some instructions for using the sketch in the Serial Monitor output field.
    This includes a menu of the boards supported by the sketch:

    Select Arduino MKR board to erase and flash with bootloader:
    
    Z     -> Arduino Zero (6504 bytes)
    MZ    -> Arduino MKR Zero (6408 bytes)
    1000  -> Arduino MKR 1000 WIFI (6408 bytes)
    1010  -> Arduino MKR WIFI 1010 (7984 bytes)
    
    [...]
    

    Find your target Arduino board on the list and note the code written to the left of it on the list.

  20. Type the code for the target Arduino board in the Serial Monitor's input field.

  21. Click the Send button to the right of the Serial Monitor input field.

  22. The Serial Monitor output field should now show the board you selected and the progress of flashing the bootloader to the target Arduino board.
    Wait for it to show "Done!"

  23. Unplug the programmer Arduino board from your computer.

  24. Disconnect the programmer Arduino board from the target Arduino board.


Alternatives

These are some alternatives to the "Adafruit DAP" method I described above. I'll share one here:

Using a CMSIS-DAP debug probe as the programmer

If you have a CMSIS-DAP compliant debug probe, you can just do this instead:

  1. Connect the debug probe to your Arduino board.
  2. Select Tools > Programmer > Atmel EDBG from the Arduino IDE's menus.
  3. Select Tools > Burn Bootloader from the Arduino IDE's menus.

The "Burn Bootloader" process should now finish successfully.

I use this little open source debugger.

1 Like

Thanks so much for the detailed info!

Just to update: I ended up exchanging the MKR1000 board and the new board is working perfectly. It showed up right away in the Arduino IDE.

So the main giveaway that the original board was defective was that the "L" LED did not light up when I did a reset (by double-pressing the reset button)

I'm glad to hear you now have a working Arduino. Enjoy!

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.