- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Free Eclipse IDE and GNU toolchain for ColdFire (Set up instructio ns and example for 5282)
[ Edited ]
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
2007-02-02
04:08 PM
- last edited on
2008-10-30
07:59 PM
by
t.dowe
Message Edited by t.dowe on 2008-10-30 02:59 PM
Re: Free Eclipse IDE and GNU toolchain for ColdFire (Set up instructio ns and example for 5282)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
2007-02-08 08:40 PM
Re: Free Eclipse IDE and GNU toolchain for ColdFire (Set up instructio ns and example for 5282)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
2007-02-08 09:55 PM
Tim Shannon
NetBurner Inc.
www.netburner.com
Re: Free Eclipse IDE and GNU toolchain for ColdFire (Set up instructio ns and example for 5282)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
2007-02-09 09:28 AM
Re: Free Eclipse IDE and GNU toolchain for ColdFire: Linux?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
2007-03-06 03:00 PM
2. Is there any solution for loading the flash with Linux?
(using 52233 and 5282 parts with internal flash)
3. Can the USB BDM cable be used with Linux, or do you have to use a parallel cable?
Re: Free Eclipse IDE and GNU toolchain for ColdFire: Linux?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
2007-03-06 04:04 PM
Re: Free Eclipse IDE and GNU toolchain for ColdFire (Set up instructio ns and example for 5282)
[ Edited ]
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
2007-04-23 04:22 PM - last edited on 2007-04-23 04:22 PM
Just to add a small tip :
For the last step ("the icing of the cake" ), I tried to install the terminal, but it dont appaired in the windows views menu ( "show view" >> "other" ).
The solution was as follows :
Open a dos prompt command windows, and, after going in the eclipse directory, start eclipse with the dos command line : eclipse.exe -clean
thierry
Alban Edit: reformatting following user request.
Message Edited by Alban on 2007-04-23 04:36 PM
Re: Free Eclipse IDE and GNU toolchain for ColdFire (Set up instructio ns and example for 5282)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
2007-05-04 07:36 AM
great tutorial! Thanks a lot.
I just wanted to add a note to your example write() function. It has to return the length of the string written instead of 0. Otherwise printf's won't work.
int write(int file, char *ptr, int len)
{
int i;
for (i = 0; i < len; i++)
{
uart0_out_char(*ptr++);
}
return len;
}
Best regards
Nathan
Re: Free Eclipse IDE and GNU toolchain for ColdFire (Set up instructio ns and example for 5282)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
2007-05-04 09:12 AM
Re: Free Eclipse IDE and GNU toolchain for ColdFire (Set up instructio ns and example for 5282)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
2007-06-12 07:17 PM
I have just found another document which describes the tool chain. It seems as though they have a single download which installs all necessary components (from GCC through Zylin CDT to Java).
I haven't tried it (I was actually looking for something else) but it may give some new ideas??
Here's the link: http://download.ronetix.com/toolchain/m68k_cross_d
Regards
Mark
www.uTasker.com



