包含标签 driver 的文章

MT7615 profile

./embedded/conf/RT2860.dat Default CountryRegion=5 // 2.4G国家区域,如果 eeprom 里面已经有了,此处不起作用。地区不同,使用的信道范围也不同,5:1-14 all active scan CountryRegionABand=7 // 5G 国家区域,36、40、4……

阅读全文

MT7615 datapath

# MT7615 datapath、发送、读 profile、Load MCU firmware module_init(rt_pci_init_module) rt_pci_init_module() pci_module_init(&rt_pci_driver); probe: rt_pci_probe, rt_pci_probe() /*PCIDevInit============================================== */ pci_enable_device() pci_set_dma_mask() pci_request_regions() pci_set_master() os_alloc_mem() /*NetDevInit============================================== */ RtmpPhyNetDevInit() // 主要对网络设备初始化,对设备的operation……

阅读全文

Linux内核驱动编写

# 前言 开发过单片机的小伙伴可以看一下我之前的一篇文章从单片机开发到linux内核驱动 ,以浅显易懂的方式带你敲开Linux驱动开发的大门。 # 正……

阅读全文