eenMadcat
Jun 6 2008, 08:15 PM
@
jalavoui
Thanks
for the feedback, so the main focus point is "getting a list of accesspoints"

i'll try to figure out if the card can be set to other channels, i think the 4965 card can scan the A,B,G and N range, there should be some API call to set it i guess.
i have tried the new version, and the first time it boots it gives a kernal panic, i don't see it in the logging.
after a hard reboot it booted fine, but when the system is shut down, it took a long time...screen scrolled very fast, i gave it a ctrl+C (abort) and did reboot
in my logging i can conferm that this one exists (it's my main network N and WPA 2 encrypted)
bssid=00:1b:63:2d:92:4c stabssid=00:00:00:00:00:00 ('<hidden>')darwin_iwi4965: Ethernet address 00:13:e8:9c:47:73
Jun 6 23:47:02 Laptop kernel[0]: bssid=00:1b:2f:56:c5:6e stabssid=00:00:00:00:00:00 ('<hidden>')
this one is not available with other logger like AP grapher
in the logfile i do not find my test accesspoint g-standard - no encryption (on 00:16:cb:be:22:84)
eenMadcat
Jun 6 2008, 08:56 PM
i can't get the "scan_complete" with the new driver/code.
i'm analysing these two logfiles right now
one is the new driver which is not able to get a scan_complete
and the other is a modified codebase of last week, which does give the scan_complete
do you have any idea what triggert the result?
@jalavoui do you have icq/msn/irc, we might be able to speed things up (got a working laptop here) and i got some time this weekend
jalavoui
Jun 6 2008, 08:57 PM
this should do it
eenMadcat, if not try to change the code in __ieee80211_rx()
iwi3945 rel 1151
iwi4965 rel 1152
maybe add a if in networkselector call helps getting a scan complete
the scan call should fail if already scanning
the driver seems to detect networks without the scan call...!?
after this is checked maybe trying to call the scan with a network ssid will work better
i've added
ieee80211_sta_start_scan(dev, ifsta->ssid, ifsta->ssid_len);//NULL, 0);
to svn tree
search for
IOLog("request scan!\n");
if you can find a way to make the user select from a network list (get if from __ieee80211_rx)
them you can try to call ieee80211_sta_req_scan(dev,ssid,ssid_len);
can you try this?
eenMadcat
Jun 6 2008, 09:10 PM
during boot i am able to get a scan_complete again, but not using the tool.
i'm transfering logfile in a minute
edit:
woops, false alarm. still not able to get a scan_complete result.. trying to receive it.
it is seeing my "debug access point" and iwl4965_rx_scan_results_notif are received... still do not beleive the "802.11a" value
also seeing a ghost AP ...00:1b:2f:56:c5:6e
somehow it locks to this adress, dunno why!
eenMadcat
Jun 6 2008, 09:27 PM
QUOTE(jalavoui @ Jun 6 2008, 10:57 PM)

this should do it
eenMadcat, if not try to change the code in __ieee80211_rx()
iwi3945 rel 1151
iwi4965 rel 1152
maybe add a if in networkselector call helps getting a scan complete
the scan call should fail if already scanning
the driver seems to detect networks without the scan call...!?
after this is checked maybe trying to call the scan with a network ssid will work better
i've added
ieee80211_sta_start_scan(dev, ifsta->ssid, ifsta->ssid_len);//NULL, 0);
to svn tree
during startup i scan is performed.. maybe some OSX call does this.
this scan call somehow gives a different result (better) as the scan call performed by the tool
jalavoui
Jun 6 2008, 09:30 PM
yep,
if this is right passing the right ssid might help
are you using a old release?
i've disable the 1st auto scan call in check_firstup()
ok - i'll wait for your code
if you like to commit to the svn tree pm me with a gmail account so i can add you to iwidarwin
eenMadcat
Jun 6 2008, 09:33 PM
QUOTE(jalavoui @ Jun 6 2008, 10:57 PM)

this should do iteenMadcat, if not try to change the code in __ieee80211_rx()iwi3945 rel 1151iwi4965 rel 1152maybe add a if in networkselector call helps getting a scan completethe scan call should fail if already scanningthe driver seems to detect networks without the scan call...!?after this is checked maybe trying to call the scan with a network ssid will work betteri've addedieee80211_sta_start_scan(dev, ifsta->ssid, ifsta->ssid_len);//NULL, 0);to svn treesearch forIOLog("request scan!\n");if you can find a way to make the user select from a network list (get if from __ieee80211_rx)them you can try to call ieee80211_sta_req_scan(dev,ssid,ssid_len);can you try this?
okey, ill try to receive the list from __ieee80211_rx first. or call the ieee80211_sta_req_scan from a known ssid
QUOTE(jalavoui @ Jun 6 2008, 11:30 PM)

yep,if this is right passing the right ssid might helpare you using a old release?i've disable the 1st auto scan call in check_firstup()
Ah, that makes sense why i do not get it anymore.. overall this scan was getting the best result
jalavoui
Jun 6 2008, 09:52 PM
if anyone wants to post logs
i've update the dmg
iwi3945 rel 1155
iwi4965 rel 1156
eenMadcat
Jun 6 2008, 10:11 PM
QUOTE(jalavoui @ Jun 6 2008, 11:52 PM)

if anyone wants to post logs
i've update the dmg
iwi3945 rel 1155
iwi4965 rel 1156
log for 4965
ps: ieee80211_sta_start_scan looks like an interesting function
jalavoui
Jun 6 2008, 10:15 PM
i just remembered that when this begins to work you'll get some kernel panics related with rx/tx code - we'll deal with it later
it will be nice that more people test the new releases and post logs
eenMadcat,
if this log is ok them the code with
printk("rxbssid=" MAC_FMT
in __ieee80211_rx()
is never called - sta is allways NULL ??
if you like to debug
set this in ieee80211_sta_start_scan()
/*if (!rc) {
local->sta_scanning = 1;
local->scan_dev = dev;
}
return rc;*/
this will force tx packets and give nice kp
but i think trying the scan with the right ssid should be the 1st thing to do
i have to go - good luck
eenMadcat
Jun 6 2008, 10:26 PM
QUOTE(jalavoui @ Jun 7 2008, 12:15 AM)

i just remembered that when this begins to work you'll get some kernel panics related with rx/tx code - we'll deal with it later
it will be nice that more people test the new releases and post logs
eenMadcat,
if this log is ok them the code with
printk("rxbssid=" MAC_FMT
in __ieee80211_rx()
is never called - sta is allways NULL ??
ill load your driver again (is switching back and forwards)

do you have icq/msn/gtalk/other IM ?
i can not find "rxb" in the logging, so if that's not printed maybe sta is in this configuration null
i loaded the driver and hit scan, in the "console" i use "all messages" to find the string
kazzi
Jun 7 2008, 12:50 AM
UberPrinnyBaal
Jun 7 2008, 08:52 AM
iwi4965 installs and boots ok on my machine (Dell XPS m1530, Intel Conroe T9300, 8600m GT, 3gb ram, running Kalyway 10.5.2), but networkSelector fails to find it.. looks like network stack isn't bound to anything. Any advice? I'd love to be able to contribute.
build r1156, system logs from most recent boot. Hope these are OK, else direct me.
jalavoui
Jun 7 2008, 02:27 PM
eenMadcat,
you're an iwidarwin admin
keep posts here. this is better than msn,etc cause it allows others to follow development news
i don't have new code to post - anyone to help?
jalavoui
Jun 7 2008, 04:38 PM
maybe this work
let the driver work for a minute before try to scan with networkselector
iwi3945 rel 1157
iwi4965 rel 1158
maybe you get a kp
eenMadcat
Jun 7 2008, 05:32 PM
QUOTE(jalavoui @ Jun 7 2008, 04:27 PM)

keep posts here. this is better than msn,etc cause it allows others to follow development news
oh well, how do you move data between the compatibilty,iwi4965, networktool ?
the structs like ieee80211_local are different, or am i forgetting something?
the new version lets the system hangs, no KP just hanging..
ps: in ieee80211_sta_req_scan shouldn't ieee80211_sta_start_scan be called when "sdata->type == IEEE80211_IF_TYPE_STA", instead of not equal?
jalavoui
Jun 7 2008, 06:17 PM
add scanned nets list to networkselector
the driver is expected to enter a scan-loop
iwi3945 rel 1159
iwi4965 rel 1160
this code might need some fixes - check the hack in ieee80211_rx_bss_add()
the loop condition only happens if you get a scan_complete
the driver as no code for
wireless_send_event(dev, SIOCGIWSCAN, &wrqu, NULL);
this code gets the scan results
so i'll try to do this by hacking some code
thomaske
Jun 7 2008, 06:33 PM
iwi3945 rel 1159
jalavoui
Jun 7 2008, 08:56 PM
very nice log

Jun 7 20:25:28 thomas-godons-mac-pro kernel[0]: request scan - networks found:\
Jun 7 20:25:28 thomas-godons-mac-pro kernel[0]: 1) 00:13:f7:35:a9:e2 ('Boven')\
Jun 7 20:25:28 thomas-godons-mac-pro kernel[0]: 2) 00:50:18:16:cb:38 ('Beneden')\
Jun 7 20:25:28 thomas-godons-mac-pro kernel[0]: 3) 00:1b:11:8d:24:1a ('FUPKE')\
this is the output of a scan - called by networkselector
is this correct (mac address and ssid)?
need others to post logs - i have 2/3 more releases to test
please post wich networks you can detect in windows/linux and wich ones are shown by iwi3945
maybe with this code eenMadcat or someone with the card can make the driver work
leo333,
i have no idea how much will a laptop cost
once i know it i'll post the value in iwidarwin
NoSTaBoNN
Jun 7 2008, 09:51 PM
iwi4965 - 1160
Click to view attachmentIt's the DMG we have to try, right?
Because I didn't saw any difference between previous.
Click to view attachmentDidn't give me any results until i closed network selector.
Suddenly all AP came out, they are the only near as far as windows can tell...
MAC's are correct

So seems nice
eenMadcat
Jun 7 2008, 10:35 PM
Don't see the AP's in the log, should there be an new option in the tool? don't think it's merged with 4965 yet.
but i do see the HW_Scan is started and completed! but it keeps in this state
jalavoui
Jun 7 2008, 10:44 PM
the code is ok for both cards
can you test with the dmg?
use option 2 of networkselector to get the scan list - can you check if networkselector as a bug in code?
nice

can you put back the hack in
ieee80211_rx_bss_add()
and check if this also gives the scan list?
another useful thing will be to make the scan list show other info (channel, security,etc)
can you change this and post a new release for testing?
the scan loop might not be a good idea
can you make the scan work manual and them output the scan list?
if this work you can them add a option to allow the user to associate to a network (see iwi2200)
i think if you call a scan with local->scan_dev set with the mac/ssid of the choosen net it could work - kp expected in tx code. this can be hard to debug - maybe make the driver associate to the 1st net it finds make it easier to debug the kp. there are so many ways to make this work - you just have to try a few to find the best way
i'll take to long posting releases to test all this stuff - hope you can write the code
if you feel inspired look at nsgui code and try to port it to iwi4965
i'll have to go - talk tomorrow
eenMadcat
Jun 7 2008, 10:49 PM
yes i used the dmg, i do see now that option 2 is a little modified

i'll try to reboot a few times, maybe that results in something...
edit:
W00t, result! gathering logfiles now.
Jun 8 02:50:05 Laptop kernel[0]: request scan - networks found:
Jun 8 02:50:05 Laptop kernel[0]: 1) 00:18:4d:52:3c:b4 ('UPC29958') <- valid
Jun 8 02:50:05 Laptop kernel[0]: 2) 00:18:39:a9:e7:38 ('May Di An Cuc Network') <- valid
Jun 8 02:50:05 Laptop kernel[0]: 3) 00:1b:63:2d:92:4c ('HomeNet') <- my network
Jun 8 02:50:05 Laptop kernel[0]: 4) 00:16:cb:be:22:84 ('HomeNet_GNet') <- my network / unsecure
Jun 8 02:50:05 Laptop kernel[0]: 5) 00:30:bd:9a:0a:02 ('home') <-valid
Jun 8 02:50:05 Laptop kernel[0]: 6) 00:18:f8:f1:b7:7f ('linksys') <- valid
Jun 8 02:50:05 Laptop kernel[0]: 7) 00:16:b6:2b:51:7a ('<hidden>') <- huh?
Jun 8 02:50:05 Laptop kernel[0]: 8) 00:11:50:5a:30:43 ('belkin54g') <- valid / unsecure
Jun 8 02:50:05 Laptop kernel[0]: 9) 00:1b:2f:56:c5:6e ('UPC11448') <-valid
Jun 8 02:50:05 Laptop kernel[0]: 10) 00:11:f5:4b:5a:3b ('SpeedTouch3698C2') <- valid
Jun 8 02:50:05 Laptop kernel[0]: 11) 00:1c:df:12:9c:ef ('home') <- deja vu? could be valid
ill check an other scanner now, results seems valid

i got the results without quiting the tool.
note: it did take 2 times hitting "start scan" until the results where shown
looks like the scanning part is working smooth as a baby, it's actually receiving more assumable valid accesspoints then windows.
ubermensch
Jun 7 2008, 11:30 PM
Scan is working for me on my 3945 card.
However, it looks like it's scanning many times when I choose scan only once...
Jun 7 18:15:49 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: iwl3945: U iwl3945_rx_handle r = 88, i = 87, REPLY_3945_RX, 0x1b
Jun 7 18:15:49 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: iwl3945: U iwl3945_rx_reply_rx Bad CRC or FIFO: 0x00000702.
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: quest scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba login[442]: DEAD_PROCESS: 442 ttys001
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: request scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: request scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: request scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: request scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: disconnect
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: equest scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba login[672]: DEAD_PROCESS: 672 ttys003
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: request scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: request scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: request scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: request scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: request scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: request scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: request scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: request scan - networks found:
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 1) 00:0d:72:e9:69:99 ('2WIRE875')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 2) 00:0f:b5:e8:1c:9c ('Home')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 3) 00:1d:5a:3e:2b:11 ('Home676')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 4) 00:1f:b3:3c:45:39 ('2WIRE608')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: 5) 00:1d:7e:fa:15:b0 ('linksys')
Jun 7 18:15:50 matt-crisantis-hp-pavilion-dv6000-rp287uaaba kernel[0]: disconnect
cookejarr
Jun 7 2008, 11:49 PM
scanning works for my 3945 as well
edit: does anybody have an idea why it KP's on unload? quite annoying.
thomaske
Jun 8 2008, 11:36 AM
QUOTE(jalavoui @ Jun 7 2008, 10:56 PM)

very nice log

Jun 7 20:25:28 thomas-godons-mac-pro kernel[0]: request scan - networks found:\
Jun 7 20:25:28 thomas-godons-mac-pro kernel[0]: 1) 00:13:f7:35:a9:e2 ('Boven')\
Jun 7 20:25:28 thomas-godons-mac-pro kernel[0]: 2) 00:50:18:16:cb:38 ('Beneden')\
Jun 7 20:25:28 thomas-godons-mac-pro kernel[0]: 3) 00:1b:11:8d:24:1a ('FUPKE')\
this is the output of a scan - called by networkselector
is this correct (mac address and ssid)?
need others to post logs - i have 2/3 more releases to test
please post wich networks you can detect in windows/linux and wich ones are shown by iwi3945
maybe with this code eenMadcat or someone with the card can make the driver work
leo333,
i have no idea how much will a laptop cost
once i know it i'll post the value in iwidarwin
yup these are my 3 networkds in rage + there mac adresses
jalavoui
Jun 8 2008, 12:22 PM
this code is a bit crazy
don't complain
also fix a n-band problem
iwi3945 rel 1162
iwi4965 rel 1164
frauhottelmann
Jun 8 2008, 01:22 PM
Hm I don't think it found something, anyway, no output by networkselector!
olvko
Jun 8 2008, 01:34 PM
Well, seems to find my network but didn't associate I belive.
rev. 1164
IW3495
Kalyway 10.5.3 vanilla
thomaske
Jun 8 2008, 02:35 PM
iwi3945 rel 1162
seems that he find all of my networks with there mac adresses and the channel (ch 6)
Jun 8 16:29:00 thomas-godons-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r 129 i 128 No handler needed for REPLY_TX_PWR_TABLE_CMD, 0x97\
Jun 8 16:29:00 thomas-godons-mac-pro kernel[0]: iwl3945: U iwl3945_send_cmd_sync Wait REPLY_TX_PWR_TABLE_CMD Condition: 49ms left\
Jun 8 16:29:00 thomas-godons-mac-pro kernel[0]: networks found:\
Jun 8 16:29:00 thomas-godons-mac-pro kernel[0]: 1) 00:13:f7:35:a9:e2 ('Boven') cap 431 hw 3 ch 6\
Jun 8 16:29:00 thomas-godons-mac-pro kernel[0]: 2) 00:1b:11:8d:24:1a ('FUPKE') cap 431 hw 3 ch 6\
Jun 8 16:29:00 thomas-godons-mac-pro kernel[0]: 3) 00:50:18:16:cb:38 ('Beneden') cap 11 hw 3 ch 6\
Jun 8 16:29:04 thomas-godons-mac-pro kernel[0]: sta_info_cleanup @ /var/root/svn/trunk/iwi3945_new-osx10.5/compatibility.cpp:5810\
Jun 8 16:29:29: --- last message repeated 2 times ---\
Sandiel
Jun 8 2008, 03:07 PM
Hello! It seems to be work on scanning! It find my network!
Log:
networks found:
Sun Jun 8 18:54:35 sandiels-hp-compaq-6710b-gb889eaakc kernel[0] <Debug>: 1) 00:13:f7:76:5e:47 ('SMC') cap 421 hw 3 ch 6
Sun Jun 8 18:54:35 sandiels-hp-compaq-6710b-gb889eaakc kernel[0] <Debug>: request scan
Sun Jun 8 18:54:35 sandiels-hp-compaq-6710b-gb889eaakc kernel[0] <Debug>: ieee80211_sta_req_scan @ /var/root/svn/trunk/iwi3945_new-osx10.5/compatibility.cpp:7546
Sun Jun 8 18:54:35 sandiels-hp-compaq-6710b-gb889eaakc kernel[0] <Debug>: networks found:
Sun Jun 8 18:54:35 sandiels-hp-compaq-6710b-gb889eaakc kernel[0] <Debug>: 1) 00:13:f7:76:5e:47 ('SMC') cap 421 hw 3 ch 6
Sun Jun 8 18:54:35 sandiels-hp-compaq-6710b-gb889eaakc kernel[0] <Debug>: disconnect
jalavoui
Jun 8 2008, 03:51 PM
after request the scan - and if you get no timeouts errors
see in system.log the network numbers
use networkselector option 3) to try to associate to unsecure nets
post system.log
222222
Jun 8 2008, 04:14 PM
hi! i've tested the last kext of iwi3945...
it recognize the card, but like an ethernet card, not an airport...
thomaske
Jun 8 2008, 04:42 PM
iwi3945 rel 1162first option 2 then tried option 3
QUOTE(222222 @ Jun 8 2008, 06:14 PM)

hi! i've tested the last kext of iwi3945...it recognize the card, but like an ethernet card, not an airport...
you have to use networkselecter (you can find it in the application folder) run it, and use option 2.then look into you system.log file (located at var/log/system.log) if you search for the map var, you'll find it.then if you don't see any timeouts in the system.log, try option 3 in networkselecter (see what number your network has in system.log) and post logs here

oh when you try option 3 you have to try an unsecure network
222222
Jun 8 2008, 04:56 PM
QUOTE(thomaske @ Jun 8 2008, 04:42 PM)

iwi3945 rel 1162first option 2 then tried option 3
you have to use networkselecter (you can find it in the application folder) run it, and use option 2.then look into you system.log file (located at var/log/system.log) if you search for the map var, you'll find it.then if you don't see any timeouts in the system.log, try option 3 in networkselecter (see what number your network has in system.log) and post logs here

oh when you try option 3 you have to try an unsecure network

thanks ,i will do
jalavoui
Jun 8 2008, 05:15 PM
try this - report if scan works
iwi3945 rel 1165
iwi4965 rel 1166
222222
Jun 8 2008, 05:28 PM
QUOTE(thomaske @ Jun 8 2008, 04:42 PM)

iwi3945 rel 1162first option 2 then tried option 3you have to use networkselecter (you can find it in the application folder) run it, and use option 2.then look into you system.log file (located at var/log/system.log) if you search for the map var, you'll find it.then if you don't see any timeouts in the system.log, try option 3 in networkselecter (see what number your network has in system.log) and post logs here

oh when you try option 3 you have to try an unsecure network

i am sorry!!my leopard's language is chinese..i can't find the networkselecter and the folder...my poor englishcan you show me some pictures????
QUOTE(222222 @ Jun 8 2008, 05:22 PM)

i am sorry!!my leopard's language is chinese..i can't find the networkselecter and the folder...my poor englishcan you show me some pictures????
and i can't open the system.txt in leopard ...........
NoSTaBoNN
Jun 8 2008, 04:38 PM
iwi4965 - 1166
Click to view attachmentIt doesn't find any networks anymore

And it seems as if it thinks the card is off
rwmanos
Jun 8 2008, 05:39 PM
It doesn't do nothing .
here is my logs
Click to view attachment
thomaske
Jun 8 2008, 05:52 PM
yeah, no networks anymore
iwi3945 rel 1165
rwmanos
Jun 8 2008, 05:56 PM
Jun 8 23:44:20: --- last message repeated 2 times ---
Jun 8 23:44:20 rwmanoss-mac-pro kernel[0]: sta_info_cleanup @ /var/root/svn/trunk/iwi3945_new-osx10.5/compatibility.cpp:5810
Jun 8 23:44:20 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_hw_reg_txpower_get_temperature Temperature: 142
Jun 8 23:44:20 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_enqueue_hcmd Sending command REPLY_TX_PWR_TABLE_CMD (#97), seq: 0x040B, 56 bytes at 11[11]:4
Jun 8 23:44:20 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r 14 i 13 No handler needed for REPLY_TX_PWR_TABLE_CMD, 0x97
Jun 8 23:44:20 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_send_cmd_sync Wait REPLY_TX_PWR_TABLE_CMD Condition: 49ms left
Jun 8 23:44:20 rwmanoss-mac-pro kernel[0]: timei 60000 timei2 1932868601
Jun 8 23:44:20 rwmanoss-mac-pro login[156]: USER_PROCESS: 156 ttys000
Jun 8 23:44:22 rwmanoss-mac-pro kernel[0]: connect
Jun 8 23:44:29 rwmanoss-mac-pro kernel[0]: sta_info_cleanup @ /var/root/svn/trunk/iwi3945_new-osx10.5/compatibility.cpp:5810
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: :04908BC4) - 0 elapsed=112668 usec (110ms since last)
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 68, i = 66, STATISTICS_NOTIFICATION, 0x9d
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_hw_rx_statistics Statistics notification received (240 vs 244).
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 68, i = 67, SCAN_START_NOTIFICATION, 0x82
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_start_notif Scan start: 40 [802.11a] (TSF: 0x00000000:04908F30) - 1 (beacon timer 3942658256)
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 69, i = 68, SCAN_RESULTS_NOTIFICATION, 0x83
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_results_notif Scan ch.res: 40 [802.11a] (TSF: 0x00000000:0490A3D9) - 0 elapsed=5289 usec (10ms since last)
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 71, i = 69, STATISTICS_NOTIFICATION, 0x9d
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_hw_rx_statistics Statistics notification received (240 vs 244).
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 71, i = 70, SCAN_START_NOTIFICATION, 0x82
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_start_notif Scan start: 42 [802.11a] (TSF: 0x00000000:0490A73A) - 1 (beacon timer 3942652102)
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 72, i = 71, SCAN_RESULTS_NOTIFICATION, 0x83
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_results_notif Scan ch.res: 42 [802.11a] (TSF: 0x00000000:04925F56) - 0 elapsed=112668 usec (110ms since last)
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 74, i = 72, STATISTICS_NOTIFICATION, 0x9d
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_hw_rx_statistics Statistics notification received (240 vs 244).
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 74, i = 73, SCAN_START_NOTIFICATION, 0x82
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_start_notif Scan start: 44 [802.11a] (TSF: 0x00000000:049262BB) - 1 (beacon timer 3976297797)
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 75, i = 74, SCAN_RESULTS_NOTIFICATION, 0x83
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_results_notif Scan ch.res: 44 [802.11a] (TSF: 0x00000000:04927763) - 0 elapsed=5288 usec (10ms since last)
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 77, i = 75, STATISTICS_NOTIFICATION, 0x9d
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_hw_rx_statistics Statistics notification received (240 vs 244).
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 77, i = 76, SCAN_START_NOTIFICATION, 0x82
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_start_notif Scan start: 46 [802.11a] (TSF: 0x00000000:04927AE9) - 1 (beacon timer 3976291607)
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 78, i = 77, SCAN_RESULTS_NOTIFICATION, 0x83
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_results_notif Scan ch.res: 46 [802.11a] (TSF: 0x00000000:04943305) - 0 elapsed=112668 usec (110ms since last)
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 80, i = 78, STATISTICS_NOTIFICATION, 0x9d
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_hw_rx_statistics Statistics notification received (240 vs 244).
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 80, i = 79, SCAN_START_NOTIFICATION, 0x82
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_start_notif Scan start: 48 [802.11a] (TSF: 0x00000000:0494367B) - 1 (beacon timer 3993057669)
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 81, i = 80, SCAN_RESULTS_NOTIFICATION, 0x83
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_results_notif Scan ch.res: 48 [802.11a] (TSF: 0x00000000:04944B24) - 0 elapsed=5289 usec (10ms since last)
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 83, i = 81, STATISTICS_NOTIFICATION, 0x9d
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_hw_rx_statistics Statistics notification received (240 vs 244).
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 83, i = 82, SCAN_START_NOTIFICATION, 0x82
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_start_notif Scan start: 52 [802.11a] (TSF: 0x00000000:04944E96) - 1 (beacon timer 3993051498)
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 84, i = 83, SCAN_RESULTS_NOTIFICATION, 0x83
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_results_notif Scan ch.res: 52 [802.11a] (TSF: 0x00000000:049606B2) - 0 elapsed=112668 usec (110ms since last)
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 86, i = 84, STATISTICS_NOTIFICATION, 0x9d
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_hw_rx_statistics Statistics notification received (240 vs 244).
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 86, i = 85, SCAN_START_NOTIFICATION, 0x82
Jun 8 23:44:38 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_start_notif Scan start: 56 [802.11a] (TSF: 0x00000000:04960A24) - 1 (beacon timer 4009817564)
Jun 8 23:44:39 rwmanoss-mac-pro kernel[0]: 5_rx_scan_results_notif Scan ch.res: 116 [802.11a] (TSF: 0x00000000:04A3E46D) - 0 elapsed=112668 usec (110ms since last)
Jun 8 23:44:39 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 110, i = 108, STATISTICS_NOTIFICATION, 0x9d
Jun 8 23:44:39 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_hw_rx_statistics Statistics notification received (240 vs 244).
Jun 8 23:44:39 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 110, i = 109, SCAN_START_NOTIFICATION, 0x82
Jun 8 23:44:39 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_start_notif Scan start: 120 [802.11a] (TSF: 0x00000000:04A3E7DC) - 1 (beacon timer 4160825380)
Jun 8 23:44:39 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 111, i = 110, SCAN_RESULTS_NOTIFICATION, 0x83
Jun 8 23:44:39 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_results_notif Scan ch.res: 120 [802.11a] (TSF: 0x00000000:04A59FF8) - 0 elapsed=112668 usec (110ms since last)
Jun 8 23:44:39 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 113, i = 111, STATISTICS_NOTIFICATION, 0x9d
Jun 8 23:44:39 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_hw_rx_statistics Statistics notification received (240 vs 244).
Jun 8 23:44:39 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 113, i = 112, SCAN_START_NOTIFICATION, 0x82
Jun 8 23:44:39 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_scan_start_notif Scan start: 124 [802.11a] (TSF: 0x00000000:04A5A36E) - 1 (beacon timer 4177591442)
Jun 8 23:44:39 rwmanoss-mac-pro kernel[0]: sta_info_cleanup @ /var/root/svn/trunk/iwi3945_new-osx10.5/compatibility.cpp:5810
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: 1 (plcp 20)*
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_set_rate Adding rate index 2 (plcp 55)
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_set_rate Adding rate index 3 (plcp 110)
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_set_rate Adding rate index 4 (plcp 13)*
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_set_rate Adding rate index 5 (plcp 15)
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_set_rate Adding rate index 6 (plcp 5)*
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_set_rate Adding rate index 7 (plcp 7)
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_set_rate Adding rate index 8 (plcp 9)*
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_set_rate Adding rate index 9 (plcp 11)
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_set_rate Adding rate index 10 (plcp 1)
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_set_rate Adding rate index 11 (plcp 3)
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_set_rate Set active_rate = fff, active_rate_basic = 153
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_mac_config No re-sending same RXON configuration.
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_mac_config leave
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: __ieee80211_if_config @ /var/root/svn/trunk/iwi3945_new-osx10.5/compatibility.cpp:6576
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_mac_config_interface enter: interface id 304889888
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_mac_config_interface bssid: 00:00:00:00:00:00
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_commit_rxon Sending RXON
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: * without RXON_FILTER_ASSOC_MSK
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: * channel = 1
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: * bssid = 00:00:00:00:00:00
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_enqueue_hcmd Sending command REPLY_RXON (#10), seq: 0x040E, 48 bytes at 14[14]:4
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r 128 i 127 No handler needed for REPLY_RXON, 0x10
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_send_cmd_sync Wait REPLY_RXON Condition: 49ms left
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_enqueue_hcmd Sending command REPLY_TX_PWR_TABLE_CMD (#97), seq: 0x040F, 56 bytes at 15[15]:4
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r 129 i 128 No handler needed for REPLY_TX_PWR_TABLE_CMD, 0x97
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_send_cmd_sync Wait REPLY_TX_PWR_TABLE_CMD Condition: 49ms left
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_add_station Add STA ID 24: ff:ff:ff:ff:ff:ff
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_enqueue_hcmd Sending command REPLY_ADD_STA (#18), seq: 0x0410, 68 bytes at 16[16]:4
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r = 130, i = 129, REPLY_ADD_STA, 0x18
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_reply_add_sta Received REPLY_ADD_STA: 0x01
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_send_cmd_sync Wait REPLY_ADD_STA Condition: 49ms left
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_send_add_station REPLY_ADD_STA PASSED
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_init_hw_rate_table Select G mode rate scale
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_enqueue_hcmd Sending command REPLY_RATE_SCALE (#47), seq: 0x0411, 56 bytes at 17[17]:4
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r 131 i 130 No handler needed for REPLY_RATE_SCALE, 0x47
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_send_cmd_sync Wait REPLY_RATE_SCALE Condition: 49ms left
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_enqueue_hcmd Sending command REPLY_RATE_SCALE (#47), seq: 0x0412, 56 bytes at 18[18]:4
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r 132 i 131 No handler needed for REPLY_RATE_SCALE, 0x47
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_send_cmd_sync Wait REPLY_RATE_SCALE Condition: 49ms left
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_mac_config_interface leave
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_enqueue_hcmd Sending command REPLY_TX_PWR_TABLE_CMD (#97), seq: 0x0413, 56 bytes at 19[19]:4
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_rx_handle r 133 i 132 No handler needed for REPLY_TX_PWR_TABLE_CMD, 0x97
Jun 8 23:44:40 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_send_cmd_sync Wait REPLY_TX_PWR_TABLE_CMD Condition: 49ms left
Jun 8 23:44:49 rwmanoss-mac-pro kernel[0]: sta_info_cleanup @ /var/root/svn/trunk/iwi3945_new-osx10.5/compatibility.cpp:5810
Jun 8 23:45:19: --- last message repeated 2 times ---
Jun 8 23:45:19 rwmanoss-mac-pro kernel[0]: sta_info_cleanup @ /var/root/svn/trunk/iwi3945_new-osx10.5/compatibility.cpp:5810
Jun 8 23:45:20 rwmanoss-mac-pro kernel[0]: iwl3945: U iwl3945_hw_reg_txpower_get_temperature Temperature: 145
Jun 8 23:45:20 rwmanoss-mac-pro kernel[0]: timei 60000 timei2 1803354164
Joeandmat
Jun 8 2008, 05:57 PM
can someone post kext or can jalavoui update code tree?
jalavoui
Jun 8 2008, 05:59 PM
ok - this will work better
goto iwidarwin and download the dmg - click on the svn link
install and test
the networkselector.app is in folder Applications
before i post a rel number here i always update the svn tree with code and with the .dmg installer
the installer removes previous versions before update...
iwi3945 rel 1167
iwi4965 rel 1168
222222
Jun 8 2008, 06:00 PM
it is also ethernet card no a airport...
it's my log
rwmanos
Jun 8 2008, 06:02 PM
Just a realy stupid question
to install the new .dmg must I uninstall the previus ?? If yes how?
(sorry for the bad english I'm from greece)
222222
Jun 8 2008, 06:12 PM
it's time to sleep in my timezone ...i will try tomorrw...good luck and best wish....my leopard is 10.53 .........
NoSTaBoNN
Jun 8 2008, 05:27 PM
iwi4965 - 1168
Click to view attachmentHaving dificulty with the driver showing me the found networks but it shows them.. tried connecting to network 4
Don't know what that did... I saw a clear amount of more debug messages afterwards
222222
Jun 8 2008, 06:37 PM
1167 can't slove my problem it is also recognized as eth............
why??/
i have find the network**(i forgot the word)....i chose 2.....nothing happen..
i chose 3..my pc is dead...
jalavoui
Jun 8 2008, 06:50 PM
if you select a network with option 3) and them request a scan the driver scans the current net
there are several ways to test this code:
- do a few scans
- do a few associate attempts
- mix both
run a few tests and post some comments
i don't have the card - don't know how to test it
if you get timeout errors reboot
i guess this code needs some changes to work ok
you might get lucky and make the driver randomly associate to a network
if you have iwi4965 you can try to associate to a N-band network - this code was fixed
i need a developer with the card to finish this
leo333
Jun 8 2008, 07:01 PM
QUOTE(jalavoui @ Jun 8 2008, 06:50 PM)

if you select a network with option 3) and them request a scan the driver scans the current net
there are several ways to test this code:
- do a few scans
- do a few associate attempts
- mix both
run a few tests and post some comments
i don't have the card - don't know how to test it
if you get timeout errors reboot
i guess this code needs some changes to work ok
you might get lucky and make the driver randomly associate to a network
i need a developer with the card to finish this
Does the driver still get KP? If not, someone could give VNC access to j. I can't, I dont have the card either.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here.