Got mbed working on Mac Book Pro (OSX 10.6.8) and thought I'd share a few notes.
1. Find the proper device name by opening Terminal.app and typing 'ls /dev' compare the output of this unix command with mbed plugged in and out to find the correct one to configure in the serial terminal. In my case it is: /dev/tty.usbmodem412
2. I had trouble connecting mbed to my keyboard USB connector, apparently due to power limitations. Several times my copies of files hung and did not complete. Connecting the mbed directly to the USB connector on the laptop worked.
3. Online recommended trick for using the screen program within the OSX Terminal.app to talk to mbed did not work with USB device. Download CoolTerm (serial terminal), it works: http://freeware.the-meiers.org/ Turn on local echo, and change to line feed, save config.
4. Every time I plugin the mbed OSX tells me it has detected a new network interface, and asks if I want to configure the new interface. I just cancel and ignore it.
5. Use the OSX terminal app to delete images from mbed, NOT the Finder! The finder adds Trash and other files and folders that will always have a later mod date. Your program will not run and you will be confused. In Terminal.app, type the command 'df' to find your mbed. You will see "/Volumes/MBED" Type 'cd /Volumes/MBED' to change directories, and then type 'ls -al' to see all hidden files. I had to issue these commands to clean up: 'rm ._.Trashes ._Bootcamp-*' and 'rm -fr .Trashes/ .fseventsd/'
Got mbed working on Mac Book Pro (OSX 10.6.8) and thought I'd share a few notes.
1. Find the proper device name by opening Terminal.app and typing 'ls /dev' compare the output of this unix command with mbed plugged in and out to find the correct one to configure in the serial terminal. In my case it is: /dev/tty.usbmodem412
2. I had trouble connecting mbed to my keyboard USB connector, apparently due to power limitations. Several times my copies of files hung and did not complete. Connecting the mbed directly to the USB connector on the laptop worked.
3. Online recommended trick for using the screen program within the OSX Terminal.app to talk to mbed did not work with USB device. Download CoolTerm (serial terminal), it works: http://freeware.the-meiers.org/ Turn on local echo, and change to line feed, save config.
4. Every time I plugin the mbed OSX tells me it has detected a new network interface, and asks if I want to configure the new interface. I just cancel and ignore it.
5. Use the OSX terminal app to delete images from mbed, NOT the Finder! The finder adds Trash and other files and folders that will always have a later mod date. Your program will not run and you will be confused. In Terminal.app, type the command 'df' to find your mbed. You will see "/Volumes/MBED" Type 'cd /Volumes/MBED' to change directories, and then type 'ls -al' to see all hidden files. I had to issue these commands to clean up: 'rm ._.Trashes ._Bootcamp-*' and 'rm -fr .Trashes/ .fseventsd/'