2
votes
1answer
59 views

lpc1788 cortex m3 interrupt handling with uclinux

I am newbie for the uclinux device drivers please guide me how to do this.. suppose I have connected a switch to one of the cortex m3 controller pin and whenever the switched is press the LED ...
2
votes
1answer
107 views

Linux driver for embedded Linux

I'm looking to attach some USB devices to my embedded Linux board. It is an TI-ARM processor running embedded Linux, but I guess it could be any embedded Linux board. If I purchase an USB device ...
1
vote
2answers
163 views

COM port detection in Linux

Please let me know if there is any API, system call, function (in Linux) which I can use my C program to detect a COM port dynamically, i.e., whenever a USB modem dongle is inserted in the port I will ...
1
vote
1answer
127 views

USB to USB communication

I have an ARM embedded machine with USB OTG controller and two other (Intel) embedded machines without USB OTG (standard type A connectors only). I want to configure the ARM machine as host and the ...
0
votes
1answer
106 views

What prevents mtd from being read?

I have a small program which I'm using to attempt to read out the details of the MTDs on my embedded Linux platform. I'm running into problems where most blocks can't be read and I'm not 100% sure why ...
1
vote
1answer
104 views

What is the dataflow of using touchscreen with tslib?

I don't understand how tslib works. Let's say I have a serial touchscreen, in my understanding the data flows in the following way: ts press -> serial port -> ts driver -> tslib -> device ...
-1
votes
1answer
245 views

How to write an Hello world driver for linux [closed]

Recently I'm much excited about linux. I would like to learn how to write simple linux drivers.I know C and python . I'm using ubuntu 11.10 (3.0.0-12-generic kernal). My Doubts What are the ...
0
votes
0answers
60 views

communicate with local network device

I have a embedded device with a NIC, and its connected to my local network with an local IP. I need to write a program to allow communication between the device and linux computer. At first I ...
0
votes
1answer
165 views

turning on GPIO wired LEDs in Linux

I'm hoping to find a generic mechanism in Linux to toggle LEDs that are wired up to a GPIO controller in an embedded application. I'm able to use either JTAG or my bootloader (setting the registers ...
1
vote
1answer
106 views

let me know the following regarding USB Modem plugin & plug out notification handler APIs or system calls in Linux

Please let me know the following regarding USB Modem plugin & plug out notification handler APIs or system calls in Linux : In my application I have to write a function which will receive ...
2
votes
1answer
1k views

Interrupts in Beaglebone

I am reading a hall sensor output in beaglebone gpio pin, for every rising edge the interrupt service routine needs to execute. So, how to use external interrupt in beaglebone? and is there any ...
0
votes
1answer
239 views

8 byte aligned free contiguous page list in kernel

can any body please tell me if there is any linux kernel API that can give me free contiguous page list that the starting page address is 8byte aligned. I need to get contiguous physical memory but ...
1
vote
0answers
807 views

Accessing i2c in linux: /dev/ vs /sys/class [closed]

Hello I'm a novice embedded linux engineer still learning the ropes. I have previously worked on a project where I had to use the i2c bus to access a peripheral. I did so simply by using the ...
0
votes
0answers
243 views

how linux kernel detects power over ethernet (PoE)

I want to capture a signal in kernel when it detects power over ethernet is connected. I don't have gpios to do this business. I am working on the atheros chipset based access point.it has realtek ...
1
vote
2answers
204 views

What does “binary” means in device driver?

I am very much new to Device driver programming. I was going through below website. http://www.codeproject.com/KB/system/driverdev.aspx I was just confused with the word "binary". The particular ...
3
votes
3answers
715 views

How to start with your first Device Driver

I have intermediate proficiency in C. I have worked extensively with AVR microcontrollers and am quite good in hardware. I want to move slightly towards the software side of embedded systems (device ...
0
votes
2answers
632 views

Embedded System USB to Android Device

I am writing an Android 2.1 application that needs to get data from a USB device. The USB device is an embedded system i created. The embedded system has no OS. Also, the android device does not send ...
6
votes
2answers
617 views

Embedded device drivers development notes

I want to develop some HAL (Hardware Abstraction Layers) to use in PIC32 and some ARM. Basically I want to make some code that's usually available on a OS, like generic pin access, communication ...
1
vote
7answers
2k views

Embedded Linux and device driver development

I plan to learn embedded linux and writing linux device drivers. I need a dev board where I can, Build and boot it with a linux distribution. Write drivers for peripherals in the board. (In future) ...
2
votes
2answers
741 views

Embedded Linux Read and Write Video from a USB port

I've got an embedded Linux project where I need to read video in through a USB port, make some modifications to that video (such as compression), and then send it back to the host via preferably the ...