H8S/2638: Difference between revisions
Appearance
No edit summary |
|||
Line 16: | Line 16: | ||
== Software == | == Software == | ||
Basic development environment for h8300 microcontrollers. It contains [http://rtime.felk.cvut.cz/omk/ makefiles] for building your applications and code for booting the processor. | |||
=== Getting the software === | |||
Actual source code can be downloaded using a [[Git]] tool: | |||
git clone git://rtime.felk.cvut.cz/sysless-h8300.git | |||
If you have an acount on the ''rtime'' server, you can use ''ssh''-based access to the repository. If an administrator gave you the right for writing to the repository, you can not only read (pull) repository but also write (push) changes to the repository: | |||
git clone <login>@rtime.felk.cvut.cz:/var/git/sysless-h8300.git | |||
For the proper work you need to download and configure additional common files: | |||
cd sysless-h8300 | |||
git submodule init | |||
git submodule update | |||
common/linkarch | |||
Later you can update your repository using the command: | |||
git pull | |||
Browsing of project sources is also possible via [http://rtime.felk.cvut.cz/gitweb/sysless-h8300.git GIT web interface]. |
Revision as of 16:58, 21 March 2008
Documentation
Boards
- CAN<->USB Converter: Board with 1 MB RAM suitable for application development -- Jiří Zemánek.
- Soccer robot control board -- Petr Kováik
Development tools
- Download gcc-h8300-coff-3.4.3-bin
- Unpack this to the root direcotry
tar -C / -xvzf gcc-h8300-coff-3.4.3-bin.tar.gz
Software
Basic development environment for h8300 microcontrollers. It contains makefiles for building your applications and code for booting the processor.
Getting the software
Actual source code can be downloaded using a Git tool:
git clone git://rtime.felk.cvut.cz/sysless-h8300.git
If you have an acount on the rtime server, you can use ssh-based access to the repository. If an administrator gave you the right for writing to the repository, you can not only read (pull) repository but also write (push) changes to the repository:
git clone <login>@rtime.felk.cvut.cz:/var/git/sysless-h8300.git
For the proper work you need to download and configure additional common files:
cd sysless-h8300 git submodule init git submodule update common/linkarch
Later you can update your repository using the command:
git pull
Browsing of project sources is also possible via GIT web interface.