alexa999 Posted November 6, 2005 Share Posted November 6, 2005 Do you have progress on the TCP/IP protcol ?<{POST_SNAPBACK}> I was wondering the same thing, its been a week since an update! Link to comment Share on other sites More sharing options...
MasterKevosavi Posted November 7, 2005 Share Posted November 7, 2005 Do you have progress on the TCP/IP protcol ?<{POST_SNAPBACK}> I was wondering the same thing, its been a week since an update! <{POST_SNAPBACK}> Just wondering that to! Link to comment Share on other sites More sharing options...
sgstair Posted November 7, 2005 Author Share Posted November 7, 2005 Of course I'm making progress... just wait, something big is about to happen... -Stephen Link to comment Share on other sites More sharing options...
thoduv Posted November 8, 2005 Share Posted November 8, 2005 Ha haven't all understant in your last news... Is the project paused ? Will it be late ? About 1 week, 2 week, or undermined ? (Sorry but I've a bad english...) Link to comment Share on other sites More sharing options...
Lockwood Posted November 8, 2005 Share Posted November 8, 2005 He is not feeling very well he's sick do you mean that? Link to comment Share on other sites More sharing options...
thoduv Posted November 19, 2005 Share Posted November 19, 2005 12 days without an update ! Have you progressed ? Link to comment Share on other sites More sharing options...
alexa999 Posted November 23, 2005 Share Posted November 23, 2005 Update Update Update! But no change in percentages... Link to comment Share on other sites More sharing options...
bafio Posted November 24, 2005 Share Posted November 24, 2005 (edited) Of course I'm making progress... just wait, something big is about to happen... -Stephen<{POST_SNAPBACK}> Updates updates updates..... It's all MKDS fault!? (meaning that you are all playing that all the time) Any news with the tcp stack? Edited November 25, 2005 by bafio Link to comment Share on other sites More sharing options...
Lockwood Posted December 13, 2005 Share Posted December 13, 2005 (edited) Hey Stephen,Can you make a little update for backlight off when closing nds and a ''zoeff'' signal for getting a signal?My nds can hold for only 2 hours with your tool! Edited December 13, 2005 by Lockwood Link to comment Share on other sites More sharing options...
yorel Posted March 6, 2006 Share Posted March 6, 2006 Hello, I have some stupid (?) questions. Could you answer me ? What are exactly the BaseBand and the RF chips ? What are spinlock and WIFI_AUTHLEVEL ? ( wifi_shared.h ) I know what is SSID but BSSID ? RSSI ? I read somewhere that only the ARM7 was able to use Wifi's registers but i see the file wifi_arm9.h and wifi_arm9.c. So, i'm a little disappointed. There is a great function in wifi_arm7.c : Wifi_ProcessReceivedFrame. Is-it possible to have more explanation about the code ? what is for ? Link to comment Share on other sites More sharing options...
sgstair Posted March 6, 2006 Author Share Posted March 6, 2006 Hello, I have some stupid (?) questions. Could you answer me ? What are exactly the BaseBand and the RF chips ? What are spinlock and WIFI_AUTHLEVEL ? ( wifi_shared.h ) I know what is SSID but BSSID ? RSSI ? I read somewhere that only the ARM7 was able to use Wifi's registers but i see the file wifi_arm9.h and wifi_arm9.c. So, i'm a little disappointed. There is a great function in wifi_arm7.c : Wifi_ProcessReceivedFrame. Is-it possible to have more explanation about the code ? what is for ?<{POST_SNAPBACK}> The baseband & RF chips make up the chipset that does most of the work involved in sending and receiving data. Specificly the RF chip is composed of a Phase Locked Loop translating a reference frequency into a specific transmit frequency, and a mixer, which "moves" a data signal into the RF domain. The baseband chip talks to the RF chip, and controls when to send and receive data, as well as handling buffering of the sending and receiving processes. a spinlock is a type of locking mechanism used in multithreaded interprocess communication, to ensure atomic data access.WIFI_AUTHLEVEL is an arbitrary specifier used to track the process of authenticating and then associating to an access point.BSSID is the base station SSID, or group SSID in the case of an ad-hoc networkRSSI is Received Signal Strength Indicator Yes; the wifi hardware can *only* be used from the arm7. The reason I have a lot of code on the arm9 side is that I've written a transport interface that allows the arm9 to command the arm7, and tell it what to do basicly, and the data is transferred between the processors automaticly. Wifi_ProcessReceivedFrame is called whenever a frame is received; it's purpose is to detect certain types of frames (specificly: beacons, and authentication and associacion related packets) and to change the local state or local data store based on them. The function itself is large, but it's premise and layout is very simple. -Stephen Link to comment Share on other sites More sharing options...
Recommended Posts