Jump to content
43oh

Leaderboard

Popular Content

Showing content with the highest reputation on 08/28/2012 in all areas

  1. Here is a video of the music player in action: The code has the following functionality: Initilise the FAT16 filesystem from an SD card in a single command - ThinFAT_Init(); Open Files on an SD card and allow you to test each filename with a callback Index Files by useing the same command as to open them with a callback returns data on if the filestream is active returns data on how far the file has been read through callback for when end of the file is reached Open Folders on an SD card - Untested and limitations: uses 54 bytes of ram approx dosen't support fragmented files reads file end
    1 point
  2. username

    AR Drone Control V2

    Howdy all, Got another video with my AR Drone. This time the MSP430 was used for alittle bit more then just acting as a remote. With the MSP430G2553, the W5200, and a wireless switch, I was able to control it from an isolated embedded system. Once I have abit more time i'll implement a pair of joysticks to control the drone. As for how it works, the MSP430 sends SPI data to the W5200, then the W5200 sends UDP commands to the drone. Took abit of time to figure out how to fly the thing. Constant communication must occur with the drone or else its crashes (gotta love darn WDTs). Theres also
    1 point
  3. Hi all, This code is from Daniel Huber and posted here with permission. Enjoy!.. /* Samples pin 1.3 and averages values until a change is detected. * Then continues to measure , stores the values in buffer of size 32int, * writes full buffer to flash memory. * If flash memory full, stops measuring and repeatedly transmits content of flash. */ #include "msp430g2231.h" #include "stdbool.h" #include "stdlib.h" #define TXD BIT1 // TXD on P1.1 #define Bit_time 104 // 9600 Baud, SMCLK=1MHz (1MHz/9600)=104 #define LEDR BIT0
    1 point
×
×
  • Create New...