Advertisement
Guest User

Untitled

a guest
May 25th, 2022
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. How to make?
  2. 1. If you want to buid the Linux AP code, set the "MODE = AP" in Makefile
  3. and chose the TARGET to Linux by set "TARGET = LINUX"
  4.  
  5. 2. If you want to build the Linux STA code, set the "MODE = STA" in Makefile
  6. and chose the TARGET to Linux by set "TARGET = LINUX"
  7.  
  8. 3. If you want to buid the uCOS AP code, set the "MODE = AP" in Makefile
  9. and chose the TARGET to UCOS by set "TARGET = UCOS"
  10.  
  11. 4. If you want to build the uCOS STA code, set the "MODE = STA" in Makefile
  12. and chose the TARGET to uCOS by set "TARGET = UCOS"
  13.  
  14. 5. If you wnat to clean the tree, just "make clean" it will clean the target and mode you set
  15.  
  16. 6. In os/linux/config.mk
  17. define the GCC and LD of the target machine
  18. define the compiler flags CFLAGS
  19. define the linux kernel source include file path LINUX_SRC
  20. modify to meet your need.
  21.  
  22. 7. For the Linux port, please read /include/rt_linux.h, os/linux/rt_linux.c and os/linux/rt_main_dev.c
  23.  
  24. 8. For the uCOS port, please read /include/rt_ucos.h, os/linux/rt_ucos.c and os/ucos/rt_main_dev.c
  25.  
  26. 9. For the Linux Station port, please add the Makefile section in os/linux/Makefile.
  27.  
  28. 10. Currently, you can build and run on your 2.4.x Linux kernel, 2.6.x not sure and not try yet.
  29.  
  30. 11. In tools/bin2h.c will convert the 8051 firmware from common/rt2860.bin into include/firmware.h.
  31. Which will be used by rtmp_init.c to include in the firmware image in an array.
  32.  
  33.  
  34. Branch:B20070129
  35.  
  36. Support:
  37. 1. Support MBSS
  38. 2. Support LoadFirmware
  39. 3. Access BBP by way of 8051 Firmware
  40. 4. Temperature conpensation for Tx Power
  41. 5. Using Management ring by Mac Version
  42. 6. BBP setting by Mac Version
  43.  
  44. Branch: B20070202
  45. Support:
  46. 1. Add Ralink proprietary Aggregation/PiggyBack support
  47. 2. Modify some Big-Endian swap code for Action frame
  48. 3. Add WDS support
  49. 4. Remove unused variables and modify wrong statments to reduce compiler warning msg.
  50. 5. Add STA encryption/decryption code by Albert
  51.  
  52. Branch: B20070209
  53. Support:
  54. 1. Add fast rate switch from Windows code
  55. 2. Tune BBP R66, R62, R63, R64, R86 by bandwidth and G/A band different value
  56. 3. Modify release to DPA and DPB
  57. 4. Modify fast rate switch timer from periodic to trigger by condition, same with Windows
  58. 5. Fix UAPSD bugs for null frame was drop
  59. 6. Fix management queue pass qos null frame ...
  60. 7. Code freeze for Wi-Fi
  61. 8. Fix 5vt packet set to 0 to clear cb[22]
  62.  
  63. Branch: not define yet
  64. Support:
  65. 1. Merge code from Plugfest #6
  66. 2. Add "iwpriv ra0 show driverinfo" to show the driver version
  67. 3. Fix rt_config.h tag of Support station with tab
  68. 4. Merge ATE code request by Gemtek
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement