2013-08-26 00:25 gbraad has quit [Ping timeout: 256 seconds] 2013-08-26 00:50 Luke-Jr has quit [Ping timeout: 245 seconds] 2013-08-26 00:53 rz2k has quit [] 2013-08-26 01:02 Luke-Jr has joined #qi-hardware 2013-08-26 01:56 pcercuei has quit [Read error: Operation timed out] 2013-08-26 02:06 compcube has quit [Quit: Leaving] 2013-08-26 02:23 Freemor has quit [Remote host closed the connection] 2013-08-26 02:27 lol! 2013-08-26 02:28 >> [2013-08-25 19:56:06] bounce: But to be honest, these dongles are just fine for radio astronomy, provided you have adequate filtering in front of them, and some low-noise gain. Which you always need anyway 2013-08-26 02:28 >> [2013-08-25 19:56:33] bounce: I'm using a plethora of dongles on the SBRAC dish 2013-08-26 02:29 lol indeed 2013-08-26 02:30 the dongle: http://sdr.osmocom.org/trac/wiki/rtl-sdr The dish: http://www.sbrac.org 2013-08-26 02:38 and thus SETI (Summoning of ExtraTerrestrIals) enters an entirely new phase ... 2013-08-26 02:57 apelete has quit [Read error: Operation timed out] 2013-08-26 03:02 xiangfu has joined #qi-hardware 2013-08-26 03:06 Freemor has joined #qi-hardware 2013-08-26 04:58 wolfspraul has joined #qi-hardware 2013-08-26 05:12 panda|x201 has quit [Ping timeout: 264 seconds] 2013-08-26 05:54 apelete has joined #qi-hardware 2013-08-26 06:01 apelete has quit [Ping timeout: 268 seconds] 2013-08-26 06:09 panda|x201 has joined #qi-hardware 2013-08-26 07:03 apelete has joined #qi-hardware 2013-08-26 07:05 viric_ has joined #qi-hardware 2013-08-26 07:07 viric has quit [Ping timeout: 240 seconds] 2013-08-26 07:07 viric_ is now known as viric 2013-08-26 07:27 DocScrutinizer05 :) 2013-08-26 07:57 lekernel has joined #qi-hardware 2013-08-26 08:08 viric has quit [Ping timeout: 240 seconds] 2013-08-26 08:13 viric has joined #qi-hardware 2013-08-26 08:37 panda|x201 has quit [Ping timeout: 268 seconds] 2013-08-26 08:52 pcercuei has joined #qi-hardware 2013-08-26 08:52 gbraad has joined #qi-hardware 2013-08-26 08:52 gbraad has joined #qi-hardware 2013-08-26 08:54 panda|x201 has joined #qi-hardware 2013-08-26 09:36 uwe__ is now known as uwe_ 2013-08-26 10:30 porchao has joined #qi-hardware 2013-08-26 10:47 ffio has joined #qi-hardware 2013-08-26 10:54 apelete has quit [Ping timeout: 260 seconds] 2013-08-26 11:21 lekernel has quit [Ping timeout: 264 seconds] 2013-08-26 11:22 panda|x201 has quit [Ping timeout: 240 seconds] 2013-08-26 11:23 FDCX has joined #qi-hardware 2013-08-26 11:34 lekernel has joined #qi-hardware 2013-08-26 11:38 apelete has joined #qi-hardware 2013-08-26 12:16 ffio has quit [Ping timeout: 260 seconds] 2013-08-26 12:36 ffio has joined #qi-hardware 2013-08-26 12:41 rz2k has joined #qi-hardware 2013-08-26 14:25 wej has quit [Ping timeout: 260 seconds] 2013-08-26 14:27 wej has joined #qi-hardware 2013-08-26 14:27 xiangfu has quit [Ping timeout: 276 seconds] 2013-08-26 14:28 xiangfu has joined #qi-hardware 2013-08-26 15:34 xiangfu has quit [Remote host closed the connection] 2013-08-26 15:55 panda|x201 has joined #qi-hardware 2013-08-26 16:23 wej has quit [Ping timeout: 264 seconds] 2013-08-26 16:36 paul_boddie has joined #qi-hardware 2013-08-26 16:37 Hello! Does anyone have any opinions/experiences with the nanosleep system call on the NanoNote? 2013-08-26 16:37 wej has joined #qi-hardware 2013-08-26 16:39 It doesn't seem very "nano", but I wonder if the NanoNote is fast enough to notice any intervals at that level. 2013-08-26 16:40 nano is GHz 2013-08-26 16:41 Indeed. 2013-08-26 16:41 Even hundreds of nano - tenths of micro - are probably asking a bit much from the poor Ben. 2013-08-26 16:42 I think the call itself is probably expensive enough to burn up any delay of that order. 2013-08-26 16:42 kilae has joined #qi-hardware 2013-08-26 16:42 yes 2013-08-26 16:43 So I guess I should ask what the best way is to put delays into NanoNote programs. 2013-08-26 16:43 i = 100; while(--i); 2013-08-26 16:43 ;) 2013-08-26 16:43 I've been doing I2C stuff, and without any delay I manage to race ahead of the slave unless I do an empty for loop. :-) 2013-08-26 16:44 I'd let the kernel handle I2C stuff 2013-08-26 16:44 I haven't really had this problem with SPI stuff before now. 2013-08-26 16:44 Can the kernel coordinate I2C stuff over the 8:10/MMC port? 2013-08-26 16:45 I saw that wpwrak had done some SPI drivers which I should perhaps be looking at for my SPI experiments. (Or maybe I misremember.) 2013-08-26 16:45 if you configure the pins as plain GPIO pins, you should be able to use the i2c-gpio driver with them 2013-08-26 16:46 configure -> making sure no MMC driver claims them is probably enough 2013-08-26 16:46 Thanks, mth! I suppose the only disadvantage that I can think of is that I'm then forced into "driver space". 2013-08-26 16:46 you can send I2C messages from user space 2013-08-26 16:47 with only the bitbanging done in kernel 2013-08-26 16:47 see the i2c-tools package 2013-08-26 16:48 Useful to know, thanks! If I ever get to the point of wanting to migrate some of this into a driver, it'd be a nice first step. 2013-08-26 16:50 I guess it is this: http://www.lm-sensors.org/wiki/I2CTools 2013-08-26 16:50 And this: http://elinux.org/Interfacing_with_I2C_Devices 2013-08-26 16:51 yes 2013-08-26 16:54 here is an example of the configuration of the kernel side: http://projects.qi-hardware.com/index.php/p/qi-kernel/source/tree/jz-3.9/arch/mips/jz4740/board-a320.c 2013-08-26 16:54 search for "i2c" 2013-08-26 16:54 specifically, for CONFIG_I2C_GPIO 2013-08-26 16:55 Is this a recent kernel thing? 2013-08-26 16:57 no, it has been there a few years at least 2013-08-26 16:59 Maybe I have to dig a bit more in my kernel sources. 2013-08-26 16:59 Ah, I see it now! 2013-08-26 17:16 Thanks for the help once again! :-) 2013-08-26 17:43 Jay7 has quit [Ping timeout: 245 seconds] 2013-08-26 18:00 paul_boddie has left #qi-hardware ["Konversation terminated!"] 2013-08-26 18:01 ffio has quit [Ping timeout: 240 seconds] 2013-08-26 18:03 whitequa1k has joined #qi-hardware 2013-08-26 18:05 whitequark has quit [Remote host closed the connection] 2013-08-26 18:17 ffio has joined #qi-hardware 2013-08-26 18:34 ffio has quit [Quit: WeeChat 0.4.1] 2013-08-26 18:44 Jay7 has joined #qi-hardware 2013-08-26 18:49 Jay7 has quit [Ping timeout: 240 seconds] 2013-08-26 18:49 Ornotermes has quit [Quit: leaving] 2013-08-26 18:53 Ornotermes has joined #qi-hardware 2013-08-26 18:55 Jay7 has joined #qi-hardware 2013-08-26 19:00 Jay7 has quit [Ping timeout: 256 seconds] 2013-08-26 19:11 wej has quit [Ping timeout: 260 seconds] 2013-08-26 19:14 wej has joined #qi-hardware 2013-08-26 19:26 wej has quit [Ping timeout: 264 seconds] 2013-08-26 19:29 wej has joined #qi-hardware 2013-08-26 20:03 kilae has quit [Quit: ChatZilla 0.9.90.1 [Firefox 23.0.1/20130814063812]] 2013-08-26 20:36 arossdotme has joined #qi-hardware 2013-08-26 21:12 porchao has quit [Quit: Leaving...] 2013-08-26 21:45 wej has quit [Ping timeout: 245 seconds] 2013-08-26 21:47 wej has joined #qi-hardware 2013-08-26 21:53 lekernel has quit [Quit: Leaving] 2013-08-26 21:58 wej has quit [Ping timeout: 260 seconds] 2013-08-26 21:59 wolfspraul has quit [Quit: leaving] 2013-08-26 22:05 wej has joined #qi-hardware 2013-08-26 22:19 gbraad has quit [Ping timeout: 245 seconds] 2013-08-26 22:25 porchao has joined #qi-hardware 2013-08-26 22:31 kristianpaul has quit [Remote host closed the connection] 2013-08-26 23:01 arossdotme has quit [Ping timeout: 256 seconds] 2013-08-26 23:16 rz2k has quit []