Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.19 KB

README.md

File metadata and controls

31 lines (23 loc) · 1.19 KB

Pong for MSP430G2

This is a simple pong game I've made for my computer organization class.

Features include:

  • Smooth graphics due to using interrupts for logic (Hence, no bottleneck caused by graphics).
  • A scoreboard.
  • Avoidance of the S2 input button (because it acted weird on many MSP Launchpad boards).

Interested in this project? Fork it and make it better!

Demo

msp_pong_pic

Check out this video from my YouTube channel: https://youtu.be/WTMFzDpH8JE?si=mcIu0uIiT4K9P9I9

Installation

  • Install required C development packages (Linux only)
  • Open root directory
  • make
  • cd ./pong
  • Connect your "MSP430G2 Launchpad" board through USB
  • make load
  • Press your MSP's reset button
  • Start playing!

Acknowledgements

Credits to my professor, Eric Freudenthal for the platform-specific low-level libraries and configurations.