hi, I got this IPC P5E - 486/TFT screen ,which the connectors on the photo, from a friend, and i was wondering if i can connect it to the RPI.
is it possible to do so? if yes, how can it be done?
hi,
I'm working on a bare-metal project that recieves data from serial port and saves it in file. but i don't know if it's necessary to implement a file system in the RPI before creating and manipulating files.
I'm using Windows 7 - 64bits operating system, compiling for a raspberry pi 1 model b. i' using YAGARTO as a cross compiler. this is the makefile i'm using: ARMGNU ?= arm-none-eabi INCLUDEPATH ?= "./h" COPS = -Wall -O2 -nostdlib -nostartfiles -ffreestanding -mcpu=arm1176jzf-s -I $(INCLUDEPATH) gcc :...
hi, i want to run this c code "world.c" on Raspberry: #include <stdio.h> int main(void) { printf("Hello world!\n"); return 0; } but whenever i try to compile it, it keep giving this error: world.o: In function `main': hello_world/world.c:34: undefined reference to `puts' i think that there is some l...