Jump to content

H8S/2638: Difference between revisions

From HW wiki
No edit summary
Line 16: Line 16:
== Software ==
== Software ==


* [[h8300-boot]] - basic development environment for h8300 microcontrollers. It contains makefiles for building your applications and code for booting the pocessor. You can see actual state of the project using darcs [http://rtime.felk.cvut.cz/darcs/darcsweb.cgi?r=h8300-boot;a=summary web interface].
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

Development tools

  1. Download gcc-h8300-coff-3.4.3-bin
  2. 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.