Go Embedded!

This CDROM contains all necessary software and documentation to get you started with Embedded Systems programming using KSET Embedded Systems Development Board. You will need following software on your PC to use programs included for working with this board:

Before you start writing programs, all the essential software included on this CDROM must be installed on your PC. Detailed installation procedure can be found in INSTALLATION.PDF or Appendix B included in this book. The steps to be followed are briefly explained below:

Cygwin - Click to install
WinAVR tools - Click to install
Setup Build Environment - Click to setup

Your first program (after installing the tools)

  1. Double click on cygwin icon and type
      cd C:/myprograms; newproject hello
    followed by ENTER key to create a project called hello. A directory hello containing files hello.c, hello.h and makefile will be created in C:/myprograms.
  2. Type cd hello followed by ENTER key in cygwin window.
  3. Type make followed by ENTER key.
  4. Compilation and linking will be done and obj/hello.exe is created.
  5. Just type obj/hello.exe to see the output of Hello World program.

That's it! If you have a problem, make sure that you go through the installation instructions in INSTALLATION.PDF once again.