BBB PRU example project creating and Compiling

Hi All,

I would like to say my problem, I would like to write some code for PRU units for that reason I enabled PRU on BBB and I run prepared examples on BBB.

But I don’t know how can I create a project and compile.

for example there is a software below but I don’t know how can I complie it and how can I run it?

#define GPIO1 0x4804c000 #define GPIO_CLEARDATAOUT 0x190 #define GPIO_SETDATAOUT 0x194 MOV r1, 10 BLINK: MOV r2, 7<<22 MOV r3, GPIO1 | GPIO_SETDATAOUT SBBO r2, r3, 0, 4 MOV r0, 0x00a00000 DELAY: SUB r0, r0, 1 QBNE DELAY, r0, 0 MOV r2, 7<<22 MOV r3, GPIO1 | GPIO_CLEARDATAOUT SBBO r2, r3, 0, 4 MOV r0, 0x00a00000 DELAY2: SUB r0, r0, 1 QBNE DELAY2, r0, 0 SUB r1, r1, 1 QBNE BLINK, r1, 0

It is possible could you give some information about it?

Best Regards,
Eren Basturk

Does someone have an idea about it?

18 Nisan 2014 Cuma 09:15:39 UTC+3 tarihinde Eren Basturk yazdı: