Assembly Language Programming: Difference between revisions

From Class Wiki
Jump to navigation Jump to search
Line 118: Line 118:
**[https://en.wikipedia.org/wiki/Newline Newline Characters, CR or CR+LF?] It is important to know what the computer you are communicating with uses. Linux and Unix use LF (\n or 0x0a ). Windows uses CR+LF (\r \n or 0x0d0a). Others use different combinations!
**[https://en.wikipedia.org/wiki/Newline Newline Characters, CR or CR+LF?] It is important to know what the computer you are communicating with uses. Linux and Unix use LF (\n or 0x0a ). Windows uses CR+LF (\r \n or 0x0d0a). Others use different combinations!
*[https://github.com/Nurgak/Android-Bluetooth-Remote-Control Blueberry Android Bluetooth Remote Control App]
*[https://github.com/Nurgak/Android-Bluetooth-Remote-Control Blueberry Android Bluetooth Remote Control App]
*[http://www.hyzt.com/manager/upimg/hy301%E2%80%9407A.pdf HF301-07A Photo Interrupter Datasheet]
*[http://www.hyzt.com/manager/upimg/hy301%E2%80%9407A.pdf HY301-07A Photo Interrupter Datasheet]


===Other Miscellaneous Interesting Reading===
===Other Miscellaneous Interesting Reading===

Revision as of 10:10, 6 August 2015

Useful Links for the Assembly Language Programming Class

ARM7 Links

Raspberry Pi

Depending on the version, your pi may use ARM6 or ARM7. There is actually quite a lot of good assembly language information for programming the raspberry pi.

TI MSP430 Links

Toolchain

$ unset JAVA_TOOL_OPTIONS 

before running the installer. There is some more information for Linux installs here. I also found out that installing Grace from the App Center makes the App Center blank thereafter, unless you reinstall CCSV6.1.

  • Assembly Language Tools This manual also has some good data on the linker, including the section "Using Linker Symbols in C/C++ Applications".
  • Kernighan and Ritchie's Famous C Book This is probably the best short text for learning C.
  • MSP430 Optimizing C/C++ Compiler (See Section 6.5 and following for how to mix C/C++ and Assembly. It is really best to read the entire chapter though, as it is all pertinent to mixing C and Assembly. It will also help you if you want to program in C, as it tells how the C compiler uses the memory, the stack, the registers, etc., and once you understand the processor as you learn to do when you learn its assembly language, it is very interesting to see how that all works in C.)
  • TI Cloud Tools This includes CCS Cloud which allows you to compile and flash, but not debug. This is a partial solution to the problem that Code Composer Studio is not available natively on OS X.
  • OS X Native Toolchain Installer
GCC Compiler

Evaluation Board Data

CC3100 SimpleLink Wi-Fi Family

2014 Robot Information

  • HSR-1425CR Continuous Rotation Servo Datasheet
  • Schematics These are rather crude schematics of the robot circuit board. There are two cuts and jumps that are not reflected, at least on the last one. The effect is to change the photo transistors from a common emitter to a common collector configuration. You can see the change scratched in just below the word Fairchild on the hand drawn schematic. Basically the resistor and photo transistor are reversed in order. I believe both photo transistors are swapped to common collector configuration.

2015 Robot Information

Other Miscellaneous Interesting Reading