Okay, so my card is now an AR5008 atheros card.
Would the correct command to put it into monitor mode be:
Code:
Atheros cards, using MadWiFi drivers:
(If using the Aircrack Suite, their documentation states that Atheros based cards ought to be put into pure "b" mode first:
root@pc# iwpriv ath0 mode 2 <-------------this command puts card into pure "B" only mode
root@pc# iwconfig ath0 mode monitor channel XX <--------insert your channel here
root@pc# ifconfig ath0 up
Would that be it? Except it's called wifi0 in BT3 so I'd change that accordingly?
And would this be the right thing to add to Kismet.conf?
Code:
source= madwifi_ag,wifi0,madwifi
I appreciate the help!
Bumping this up 
Okay, thanks to I-Hacked's article, the Kismet.conf is correct, but the monitor mode is different. Here's how it looks based on the article:
Code:
airmon-ng stop ath0;airmon-ng start wifi0
Then this to put it back:
Code:
airmon-ng stop ath0
wlanconfig ath create wlandev wifi0
ifconfig ath0 up
Which one might be right?