![]() |
2012-09-14
, 06:48
|
Community Council |
Posts: 4,920 |
Thanked: 12,867 times |
Joined on May 2012
@ Southerrn Finland
|
#22
|
The Following User Says Thank You to juiceme For This Useful Post: | ||
![]() |
2012-09-20
, 07:00
|
|
Posts: 6,436 |
Thanked: 12,701 times |
Joined on Nov 2011
@ Ängelholm, Sweden
|
#23
|
![]() |
2012-09-20
, 15:33
|
Community Council |
Posts: 4,920 |
Thanked: 12,867 times |
Joined on May 2012
@ Southerrn Finland
|
#24
|
int initialize_samples(int fp, int effect) { struct ff_effect new; new.type = FF_PERIODIC; new.id = -1; new.direction = 0; new.u.periodic.waveform = FF_CUSTOM; new.u.periodic.period = 6; new.u.periodic.magnitude = 0; new.u.periodic.offset = 0; new.u.periodic.phase = 0; new.u.periodic.envelope.attack_length = 0; new.u.periodic.envelope.attack_level = 0; new.u.periodic.envelope.fade_length = 0; new.u.periodic.envelope.fade_level = 0; new.u.periodic.custom_len = 306; new.u.periodic.custom_data = (void *) initstring[effect]; if(ioctl(fp, EVIOCSFF, &new) < 0) { perror("ioctl"); } return ret; }
The Following User Says Thank You to juiceme For This Useful Post: | ||
![]() |
2012-09-21
, 09:18
|
|
Posts: 6,436 |
Thanked: 12,701 times |
Joined on Nov 2011
@ Ängelholm, Sweden
|
#25
|
![]() |
2012-09-21
, 17:33
|
Community Council |
Posts: 4,920 |
Thanked: 12,867 times |
Joined on May 2012
@ Southerrn Finland
|
#26
|
The Following User Says Thank You to juiceme For This Useful Post: | ||
![]() |
2012-10-24
, 20:52
|
Posts: 52 |
Thanked: 33 times |
Joined on Oct 2011
@ Poland, Tricity
|
#27
|
OK, I have bee struggling with the vibration device for some time, as it was extremely annoying why I could not make it work.
I did quite a lot of searching, before it hit home that the device actually needs to be initialized with a set of waveform samples before it is usable. I kind of thought it is enough to write a set of input_event structures to it to make it work, but turns out those events only trigger the internal works to play out a pre-loaded sample on the vibrator device.
[...]
![]() |
2012-10-25
, 10:10
|
Posts: 52 |
Thanked: 33 times |
Joined on Oct 2011
@ Poland, Tricity
|
#28
|
ALSA lib pulse.c:229:(pulse_connect) PulseAudio: Unable to connect: Connection refused
echo -ne '\007' echo -ne '\007' > /dev/tty echo -ne '\007' > /dev/console
event4 crw------- 1 root root 13, 68
event4 crw-rw---- 1 root input 13, 68 vibra -> event4 lrwxrwxrwx 1 root root 6
![]() |
2012-10-27
, 09:42
|
Community Council |
Posts: 4,920 |
Thanked: 12,867 times |
Joined on May 2012
@ Southerrn Finland
|
#29
|
The Following User Says Thank You to juiceme For This Useful Post: | ||
![]() |
2012-10-29
, 03:05
|
Posts: 52 |
Thanked: 33 times |
Joined on Oct 2011
@ Poland, Tricity
|
#30
|
I did quite a lot of searching, before it hit home that the device actually needs to be initialized with a set of waveform samples before it is usable. I kind of thought it is enough to write a set of input_event structures to it to make it work, but turns out those events only trigger the internal works to play out a pre-loaded sample on the vibrator device.
There is some user-space utility that initializes the vifrator device with the waveform samples in init phase, and that was the reason I could not tickle it in pre-init phase.
So, I added some debug code to vibra_spi.c, recompiled the module and was actually able to capture the data needed to initialize it. It turns out there are 36 different sample sequences, each 612 bytes long, that need to be fed to the device.
Here is one sample aas seen on kernel log:
meegofeedbackd_0.10.7-5+0m6.tar
meegofeedback-reactionmaps_0.15.1-3+0m8.tar