EasyC

From Wikipedia, the free encyclopedia

Screenshot of EasyC 2.0
Screenshot of EasyC 2.0

EasyC is an integrated development environment by Intelitek for Microsoft Windows designed to employ a simple drag-and-drop interface similar to that used in Lego Mindstorms to assist new programmers in creating on-robot software for the FIRST robotics competition. It uses the WPIlib to allow programmers to send debug data from the robot to the integrated on-screen terminal, control actuators, and read sensor data. EasyC allows access to most of the standard C constructs. The program also includes a hex loader, which is used to send the program to the microcontroller over a 9-pin serial connection, but it lacks conventional tools like version control, refactoring, regression testing, and tracing.

Prior to EasyC Pro, Intelitek released two distinct EasyC versions for the FIRST Robotics Competition, and another for the Vex competition. As of 2007, the most recent version of EasyC is EasyC Pro. The previous version, 2.0, allowed programmers to create their own custom functions.

Although EasyC contains a variety of constructs from the C language, the standard C library is not used. For instance, the printf function has been replaced by the comparable PrintToScreen function, which is used to send debug information to those testing the software. Additionally, while not all the C constructs (such as switch-case) are exposed by the menu interface, the User Code block allows programmers to drag and drop lines of custom code one by one.

EasyC utilizes Microchip's MPLAB compiler and linker to build the PIC binaries it transfers to the controller.

[edit] EasyC Pro

Intelitek released EasyC Pro to teams for the 2007 FRC competition. This version targets both Vex and FRC controllers, allows better C integration, and includes a "graphic display" which can be used to create form-like representations of debug data.

[edit] External Links

Intelitek Official Website easyC Pro Download

In other languages