Difference between revisions of "MINGW Development Package(MAC OS)"

From Embedded Systems Learning Academy
Jump to: navigation, search
(Program the Hex file into SJOne board)
(Program the Hex file into SJOne board)
Line 64: Line 64:
 
{|
 
{|
 
|
 
|
'''1.'''  Open Eclipse.
+
'''1.'''  Find USB path
 
<br/>&nbsp;&nbsp; Always open the bash file  
 
<br/>&nbsp;&nbsp; Always open the bash file  
 
<br/>&nbsp;&nbsp; since it sets up environment variables for you.
 
<br/>&nbsp;&nbsp; since it sets up environment variables for you.

Revision as of 18:48, 25 December 2016

This tutorial shows you how to compile a C/C++ program in Mac OS using Eclipse. Remember that GNU is the linux-based compiler and hence if we want to use it for Mac OS, we have to have certain executable(s) to be running in Mac OS.

Development Package

You can get the same development package as the one we promote for ARM processors.


Required Package

You might need to get and install the following package:

  • Command Line Tools


Open Eclipse and Create New Project

1. Open Eclipse.
   Always open the bash file
   since it sets up environment variables for you.

Open bash file in your development package directory

2. Open lpc1758_freertos Project

  • Right click on the lpc1758_freertos project
  • Choose Open Project
Create New Eclipse C++ Project


3. Write your source code
   Copy the simple source code on the right.

#include <stdio.h>

int main(void)
{
    /* Without this, printf() will not work */
    setvbuf(stdout, 0, _IONBF, 0);
    setvbuf(stdin,  0, _IONBF, 0);

    /* Write rest of your code here */
    printf("Hello World\n");
    return 0;
}

4. Run your program

  • Click on the the harmmer button and start building your code
  • build_with_dbc option will also generate the dbc file in _can_dbc directory
Run your project

Program the Hex file into SJOne board

1. Find USB path
   Always open the bash file
   since it sets up environment variables for you.

Open bash file in your development package directory

2. Open lpc1758_freertos Project

  • Right click on the lpc1758_freertos project
  • Choose Open Project
Create New Eclipse C++ Project


3. Write your source code
   Copy the simple source code on the right.

#include <stdio.h>

int main(void)
{
    /* Without this, printf() will not work */
    setvbuf(stdout, 0, _IONBF, 0);
    setvbuf(stdin,  0, _IONBF, 0);

    /* Write rest of your code here */
    printf("Hello World\n");
    return 0;
}

4. Run your program

  • Click on the the harmmer button and start building your code
  • build_with_dbc option will also generate the dbc file in _can_dbc directory
Run your project