ara icon indicating copy to clipboard operation
ara copied to clipboard

Any User Specific C program on ARA

Open Tanishqgithub opened this issue 1 year ago • 3 comments

I want to try and run any other different C programs on ARA for example the Binary sort in program

What is the process to achieve this? Is it just to replace any main.c file in ara/apps/ for example just replacing main.c file in apps/hello_world ?

I sense some other way of writing a code to enable ARA processing or else it will just execute in ARIANE itself, Am I am thinking correctly?

If yes please guide me writing any user defined C code to be executed in ARA

Tanishqgithub avatar Jul 26 '24 12:07 Tanishqgithub

Hello, have you found a solution? I want to do that too.

grigohas avatar Jul 29 '24 08:07 grigohas

@grigohas No i haven't The authors have to give some idea regarding this

Tanishqgithub avatar Jul 29 '24 09:07 Tanishqgithub

Hello. I add my own programs in the following way.

  1. Create a folder in 'app/', such as 'sort'.
  2. Make sure that 'main.c' is in the root of 'sort/' and other '.c' and '.h' files in 'sort/kernel/'. Just like other apps.
  3. Then run 'make sort'. The program is compiled to folder 'bin/'.

0rd1narY1 avatar May 01 '25 10:05 0rd1narY1