Previous day | Jump to hour: 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | Next day

Seconds: Show Hide | Joins: Show Hide | View raw
Font: Serif Sans-Serif Monospace | Size: Small Medium Large

Click in the nick column to highlight everything a person has said.
The Logo icon identifies that the person is a core developer (has commit access).

#rockbox log for 2019-04-22

00:00:32 Quit lebellium (Quit: Leaving)
00:39:58 Quit Acou_Bass (Ping timeout: 246 seconds)
00:40:06 Join Piece_Maker [0] (Acou_Bass@gateway/vpn/privateinternetaccess/acoubass/x-14649893)
00:40:35 Nick Piece_Maker is now known as Acou_Bass (Acou_Bass@gateway/vpn/privateinternetaccess/acoubass/x-14649893)
01:00
01:02:33 Quit Acou_Bass (Ping timeout: 268 seconds)
01:04:12 Join Acou_Bass [0] (~Acou_Bass@cpc97736-bolt17-2-0-cust152.10-3.cable.virginm.net)
01:19:08***Saving seen data "./dancer.seen"
01:33:19 Join Piece_Maker [0] (Acou_Bass@gateway/vpn/privateinternetaccess/acoubass/x-14649893)
01:34:10 Quit Acou_Bass (Ping timeout: 244 seconds)
01:34:10 Nick Piece_Maker is now known as Acou_Bass (Acou_Bass@gateway/vpn/privateinternetaccess/acoubass/x-14649893)
01:36:33 Join Piece_Maker [0] (~Acou_Bass@cpc97736-bolt17-2-0-cust152.10-3.cable.virginm.net)
01:38:49 Quit Acou_Bass (Ping timeout: 255 seconds)
01:41:23 Quit Piece_Maker (Ping timeout: 268 seconds)
01:42:18 Join Acou_Bass [0] (Acou_Bass@gateway/vpn/privateinternetaccess/acoubass/x-14649893)
01:48:18 Join Piece_Maker [0] (Acou_Bass@gateway/vpn/privateinternetaccess/acoubass/x-14649893)
01:48:41 Quit Acou_Bass (Ping timeout: 246 seconds)
01:52:05 Join Acou_Bass [0] (~Acou_Bass@cpc97736-bolt17-2-0-cust152.10-3.cable.virginm.net)
01:52:56 Quit Piece_Maker (Ping timeout: 245 seconds)
02:00
02:13:03 Quit Acou_Bass (Quit: byeeeeeeeeeeeeeee)
02:13:56 Join Acou_Bass [0] (~Acou_Bass@cpc97736-bolt17-2-0-cust152.10-3.cable.virginm.net)
02:40:21 Quit Rower- (Ping timeout: 250 seconds)
02:42:42 Join Rower [0] (~husvagn@m83-182-85-200.cust.tele2.se)
03:00
03:06:10 Quit Acou_Bass (Quit: byeeeeeeeeeeeeeee)
03:08:25 Join Acou_Bass [0] (~Acou_Bass@cpc97736-bolt17-2-0-cust152.10-3.cable.virginm.net)
03:15:26 Quit Strife89 (Ping timeout: 250 seconds)
03:15:52 Quit massive_H (Quit: Leaving)
03:17:13 Join massiveH [0] (~massiveH@ool-18e4e27c.dyn.optonline.net)
03:19:12***Saving seen data "./dancer.seen"
03:22:44 Join Strife89 [0] (~quassel@adsl-98-67-63-164.mcn.bellsouth.net)
03:30:48 Quit Acou_Bass (Quit: byeeeeeeeeeeeeeee)
03:31:42 Join Acou_Bass [0] (~Acou_Bass@cpc97736-bolt17-2-0-cust152.10-3.cable.virginm.net)
04:00
04:17:20 Join mendelmunkis [0] (~mendelmun@97-116-113-54.mpls.qwest.net)
05:00
05:19:16***Saving seen data "./dancer.seen"
05:30:35 Quit TheSeven (Ping timeout: 252 seconds)
05:30:53 Join [7] [0] (~quassel@rockbox/developer/TheSeven)
06:00
06:05:27 Quit massiveH (Quit: Leaving)
07:00
07:09:19 Join sazmap [0] (~sazmap@180-150-75-156.b4964b.syd.nbn.aussiebb.net)
07:15:42sazmapSo I found the main issue for why my ipod6g wasn't working with my car stereo.. It's actually strange - as far as I can tell this code should actually not ever work?
07:16:46sazmapIn apps/action.c:588: if (has_flag(cur->button, BUTTON_REMOTE))
07:17:01sazmapbut BUTTON_REMOTE is defined as an OR of all the remote buttons...
07:18:12sazmaphas_flag is defined as bool has_flag(uint value, uint flag) {return ((value & flag) == flag)}
07:18:39sazmapso if flag is all the remote buttons, won't that only return true if all the remote buttons are pressed..?
07:19:02mendelmunkisall or any?
07:19:17***Saving seen data "./dancer.seen"
07:20:06sazmapwell from firmware/target/arm/s5l8702/ipod6g/button-target.h
07:20:19sazmap#define BUTTON_REMOTE (BUTTON_RC_PLAY|BUTTON_RC_STOP|BUTTON_RC_LEFT|BUTTON_RC_RIGHT|BUTTON_RC_VOL_UP|BUTTON_RC_VOL_DOWN)
07:20:47sazmapbasically in the end it ends up as like 0x001f8000
07:21:09sazmapand for instance BUTTON_RC_PLAY is 0x00100000
07:22:10sazmapso 0x00100000 & 0x001f8000 is never going to equal 0x001f8000
07:26:19sazmapthe way I got it to work was to reverse the statement and unset the rel and repeat bits on the button press
07:26:35sazmapif (has_flag(BUTTON_REMOTE, cur->button & ~BUTTON_REL & ~BUTTON_REPEAT))
07:27:03sazmapI dunno.. maybe I'm misunderstanding
07:28:02sazmapI checked other definitions for BUTTON_REMOTE and it seems that almost all of them are either 0 or some form of combined flags
07:32:22sazmapso other than that, the only issue I'm having with my ipod6g is that my car stereo seems to be implemented poorly and doesn't 0-out the EXTON3 pin
07:32:29sazmapso it doesn't detect it as an accessory
07:33:01sazmapfor my own build I've just set it to always start the iap protocol but definitely doesn't seem to be the best solution
07:33:42sazmapI've had a bit of a dig into the USB firmware but seems like there's practically no difference in events or anything between plugging it into my car stereo and plugging it into the wall wart (if iap isn't forced on)
08:00
08:24:17 Join advcomp2019 [0] (~advcomp20@65-131-155-4.sxct.qwest.net)
08:24:17 Quit advcomp2019 (Changing host)
08:24:17 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019)
08:27:00 Quit advcomp2019_ (Ping timeout: 246 seconds)
08:31:54 Join deevious [0] (~Thunderbi@193.226.142.214)
08:47:26 Quit [7] (Ping timeout: 250 seconds)
08:49:10 Join TheSeven [0] (~quassel@rockbox/developer/TheSeven)
09:00
09:11:00 Join lebellium [0] (~lebellium@89-92-69-17.hfc.dyn.abo.bbox.fr)
09:19:21***Saving seen data "./dancer.seen"
09:35:44 Quit sazmap (Remote host closed the connection)
10:00
10:29:01 Quit GeekShadow (Ping timeout: 246 seconds)
10:30:09 Join GeekShadow [0] (~antoine@nzf.turmel.info)
10:30:09 Quit GeekShadow (Changing host)
10:30:09 Join GeekShadow [0] (~antoine@reactos/tester/GeekShadow)
11:00
11:14:13 Quit Acou_Bass (Quit: byeeeeeeeeeeeeeee)
11:19:22***Saving seen data "./dancer.seen"
11:21:49 Join Acou_Bass [0] (~Acou_Bass@cpc97736-bolt17-2-0-cust152.10-3.cable.virginm.net)
11:26:42 Quit deevious (Quit: deevious)
12:00
12:45:38Bilgussazmap Sounds logical to me, I rewrote the action subsystem a while ago and I have to leave for work atm but I can check later if it was an issue I introduced or one I propagated
12:47:04 Join deevious [0] (~Thunderbi@193.226.142.214)
12:47:24 Join ZincAlloy [0] (~Adium@ip5f5abff9.dynamic.kabel-deutschland.de)
13:00
13:19:25***Saving seen data "./dancer.seen"
14:00
14:31:25 Join speachy [0] (a2116e25@gateway/web/freenode/ip.162.17.110.37)
15:00
15:19:26***No seen item changed, no save performed.
15:44:23 Quit Rower (Ping timeout: 268 seconds)
15:47:53 Join Rower [0] (~husvagn@m83-182-85-200.cust.tele2.se)
17:00
17:19:27***Saving seen data "./dancer.seen"
19:00
19:09:56 Quit GeekShadow (Ping timeout: 246 seconds)
19:19:30***Saving seen data "./dancer.seen"
19:22:13 Join GeekShadow [0] (~antoine@nzf.turmel.info)
19:22:13 Quit GeekShadow (Changing host)
19:22:13 Join GeekShadow [0] (~antoine@reactos/tester/GeekShadow)
21:00
21:19:34***Saving seen data "./dancer.seen"
22:00
22:20:05 Quit ZincAlloy (Quit: Leaving.)
22:23:16 Quit lebellium (Quit: Leaving)
22:33:17 Quit Moarc (Quit: i znowu NADMUCHAƁ BALONA)
22:34:56 Join Rower- [0] (~husvagn@m83-182-85-200.cust.tele2.se)
22:36:34 Quit Rower (Ping timeout: 255 seconds)
22:39:46 Join Moarc [0] (~chujko@a105.net128.okay.pl)
22:57:42 Join MrZeus [0] (~MrZeus@2a02:c7f:70d4:cd00:74e7:b955:901e:38be)
23:00
23:19:38***Saving seen data "./dancer.seen"
23:38:00 Join Ruhan [0] (uid76353@gateway/web/irccloud.com/x-degdsazxiksdmojc)
23:49:26 Join pamaury [0] (~pamaury@rockbox/developer/pamaury)
23:57:59 Quit Jinx (Ping timeout: 246 seconds)
23:58:20 Quit fs-bluebot (Ping timeout: 246 seconds)
23:58:41 Quit asaba (Ping timeout: 246 seconds)

Previous day | Next day