Tagged Questions

Hardware abstraction layer.

learn more… | top users | synonyms

5
votes
2answers
325 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 ...
4
votes
2answers
1k views

HAL - how to monitor audio output on a mac

There is an application called wiretap available at http://www.ambrosiasw.com/utilities/wiretap/ This application can record the system audio. I would like to be able to do the same in my program. ...
4
votes
1answer
393 views

When do hal properties get updated

I'm calling GetProperty on a org.freedesktop.Hal.Device from my handler during a PropertyNotified signal. I'm only calling GetProperty on properties that have been added or changed. When I call ...
3
votes
3answers
465 views

DirectX HAL specification

Where can one find the DirectX HAL specification? Taking this diagram to be correct Then all GPU vendors have to write their device drivers such that they speak to the HAL. Where is the HAL ...
3
votes
5answers
439 views

Creating a network driver

I'm pretty much a total idiot when it comes to writing hardware drivers, however I'm fairly decent at C/C++. I have a for fun project I want to work on that is attempting to use a device as a network ...
2
votes
1answer
161 views

What does a linux device need to be seen by Hal?

I'm trying to learn about device drivers on Linux Kernel, for that I've created three modules with: A bus type A device driver A fake device that does nothing now, only is registered Everything ...
2
votes
2answers
257 views

Find a HAL object based on /dev node path

I'm using python-dbus to interface with HAL, and I need to find a device's UDI based on it's path in the /dev hierarchy. So given a path such as /dev/sdb, I want to get a value back like ...
2
votes
2answers
220 views

Unit testing for D-Bus and HAL?

How does one test a method that does some interactions with the local D-Bus (accessing a HAL object)? Results of tests will differ depending on the system that the test is run on, so I don't know ...
1
vote
1answer
109 views

How can I find mount point of a device in C/C++?

I am using libhal to detect device events. I am able to detect a device added or removed but I can not detect device's mount point. The function libhal_volume_get_mount_point(volume) does not work. ...
1
vote
1answer
428 views

libudev advice needed

Sirs, Long time reader, first-time poster here. Okay I am embarking on a programming project that will need to confirm device identity of removable media (e.g. usb thumb drives) before it will go on ...
1
vote
1answer
174 views

Is it possible to install a HAL driver on Android device when it is on?

I think this task is easier for Android emulator. We just create new images and reboot emulator. Though it takes a long cycle to boot emulator, it is safe. But I am wondering, can we just upload ...
1
vote
2answers
693 views

Find out if USB device is connected. Ruby in Linux

I'm using Ruby 1.8 and linux (Ubuntu and SLAX), and i need to write a script in ruby which finds out if some specific usb device is connected to the system and on which USB port (0,1,2, etc). It was ...
1
vote
1answer
517 views

Disable GNOME's automount with Python

I need to stop GNOME/Nautilus from automagically mounting new devices and partitions as they appear to the system. How can I accomplish this in python?
1
vote
2answers
74 views

How to mark a device in a way that can be retrived by HAL but does not require mounting or changing the label

I'm trying to find a way to mark a USB flash device in a way that I can programmaticly test for without mounting it or changing the label. Are there any properties I can modify about a device that ...
0
votes
1answer
17 views

How can I compile HAL examples on Neatbeans?

I am trying to compile a HAL API example on Netbeans. Netbeans shows warning and error about some header files. But I am able to compile my sample codes using following command line: gcc ...
0
votes
1answer
105 views

Programming ARM in C from scratch

I have a LPC3141 developers kit from Embeded artists and i have sucessfully created free IDE based on eclipse that can sucesfully compile for ARM. I tested my IDE using included blinker example. I ...
0
votes
0answers
40 views

Design of 64 bit specific HAL?

I had a doubt regarding windows operating system, i have finished reading the Windows Internal 4th edition but they have not mentioned about HAL layer. i have bought 64 bit Machine and i'm able to ...
0
votes
1answer
237 views

auto permissions on udev'd device files?

This is a dupe from SuperUser.com . Folks over there weren't smart enough or willing to help me out; maybe it's more a programmer question than an administrator one: I have an app that reads input ...
0
votes
1answer
82 views

Handling HAL implementation: storage.cdrom.write_speeds

device.get('storage.cdrom.write_speeds') This returns HAL list of ints, like: [4284, 2342, 1202, 800] How should these be handled, to recieve writing speed? Or better, how does one retrieve ...