forcing device into host mode requires a full config - which we will do in opendevice...
[AROS.git] / rom / usb / shellapps / DRadioTool.h
blob056b3019ddfc5314fbac6109b2874605dae19cee
1 #ifndef DRADIOTOOL_H
2 #define DRADIOTOOL_H
4 /* dradio vendor specific requests */
6 #define CMDID_GETSTEREO 0
7 #define CMDID_SETFREQ 1
8 #define CMDID_POWER 2
10 #define PLLFREQ 10700000
11 #define PLLSTEP 12500
12 #define MIN_FREQ 60000
13 #define MAX_FREQ 160000
15 struct NepClassDRadio
17 struct Node nch_Node; /* Node linkage */
18 struct PsdDevice *nch_Device; /* Up linkage */
19 struct PsdConfig *nch_Config; /* Up linkage */
20 struct PsdInterface *nch_Interface; /* Up linkage */
21 struct PsdPipe *nch_EP0Pipe; /* Endpoint 0 pipe */
22 struct Hook nch_ReleaseHook; /* Hook for release function */
23 struct Task *nch_Task; /* this task */
24 struct MsgPort *nch_TaskMsgPort; /* io message port */
25 UBYTE nch_Buf[8]; /* receive buffer */
28 #endif /* DRADIOTOOL_H */