Navigation

    全志在线开发者论坛

    • Register
    • Login
    • Search
    • Categories
    • Tags
    • 在线文档
    • 社区主页
    1. Home
    2. Popular
    Log in to post
    • All categories
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All Time
    • Day
    • Week
    • Month

    • 公告
    • 芯片
    •          T Series
    •          A Series
    •          V Series
    •          MR Series
    •          H/F/TV Series
    •          Wireless & Analog Series
    • Special
    •          创龙科技专区
    •          飞凌嵌入式专区
    •          爱搞机专区
    • Technical topics
    •          RTOS
    •          Linux
    •          GUI
    • Others
    •          代码下载问题专区
    •          编译和烧写问题专区
    •          其它全志芯片讨论区
    •          灌水区
    • V

      T113 接IP101 PHY时, T113无25M时钟输出
      T Series • Posted at • HUGO

      0 Votes
      1 Replies
      1656 Views

      K Replied at

      @vecare_yu 请问解决了吗?

      1
    • X

      uboot
      MR Series • Posted at • x_17866824910

      0 Votes
      1 Replies
      1201 Views

      W Replied at

      @x_17866824910
      我也是同样的问题,有答案了踹我一脚啊!

      1
    • B

      T507显示分辨率自适应问题
      飞凌嵌入式专区 • Posted at • bsxing

      0 Votes
      1 Replies
      1581 Views

      Y Replied at

      hdmi的分辨率可以指定,也可以使用fb1、fb0双显

      1
    • C

      T113 如何同时输出开机log 到lcd和串口?
      其它全志芯片讨论区 • Posted at • captain

      0 Votes
      1 Replies
      1758 Views

      H Replied at

      @captain D1咋把控制台弄到hdmi上呢?
      https://bbs.aw-ol.com/topic/1320/share/4 参照这个设置好menuconfig

      1
    • A

      D1-H 有哪些CSR 地址是怎么分布的?
      MR Series • Posted at • AdrianYu

      0 Votes
      1 Replies
      1464 Views

      Y Replied at

      MXSTATUS 是机器模式扩展状态寄存器
      64ba4f58-fe96-40b4-9d79-9d26ed7b1769-image.png

      地址定义:
      490a6343-234e-4b41-a2ce-3a42045ef849-image.png

      其设置方法如下:

      (0:1) CACHE_SEL=2’b11时,选中指令和数据高速缓存
      (4) INV=1时高速缓存进行无效化
      (16) BHT_INV=1时分支历史表内的数据进行无效化
      (17) TB_INV=1时分支目标缓冲器内的数据进行无效化
      csr_write(CSR_MCOR, 0x70013);

      (0) IE=1时Icache打开
      (1) DE=1时Dcache打开
      (2) WA=1时数据高速缓存为write allocate模式 (c906不支持)
      (3) WB=1时数据高速缓存为写回模式 (c906固定为1)
      (4) RS=1时返回栈开启
      (5) BPE=1时预测跳转开启
      (6) BTB=1时分支目标预测开启
      (8) WBR=1时支持写突发传输写 (c906固定为1)
      (12) L0BTB=1时第一级分支目标预测开启
      csr_write(CSR_MHCR, 0x11ff);

      (15) MM为1时支持非对齐访问,硬件处理非对齐访问
      (16) UCME为1时,用户模式可以执行扩展的cache操作指令
      (17) CLINTEE为1时,CLINT发起的超级用户软件中断和计时器中断可以被响应
      (21) MAEE为1时MMU的pte中扩展地址属性位,用户可以配置页面的地址属性
      (22) THEADISAEE为1时可以使用C906扩展指令集
      csr_set(CSR_MXSTATUS, 0x638000);

      (2) DPLD=1,dcache预取开启
      (3,4,5,6,7) AMR=1,时,在出现连续3条缓存行的存储操作时后续连续地址的存储操作不再写入L1Cache
      (8) IPLD=1ICACHE预取开启
      (9) LPE=1循环加速开启
      (13,14) DPLD为2时,预取8条缓存行
      csr_write(CSR_MHINT, 0x16e30c);

      这些C906核心的寄存器资料均位于《Xuantie_C906_R1S0_User_Manual.pdf》 文档中,可以前往平头哥开源芯片平台下载。

      1
    • Y

      H618?Android 12 电视盒?
      H/F/TV Series • Posted at • giao

      0 Votes
      1 Replies
      4830 Views

      Y Replied at

      H616 有三个版本,A、B、C,C版本叫 H618 了

      区分版本的方法看左下方那一行,倒数第二个字母就是版本(其他芯片也适用)

      0cf3d7f9-bb11-4ac8-a2e4-95f310f73d09-image.png

      1
    • G

      ubus.git not found
      A Series • Posted at • gelao_xiao

      0 Votes
      1 Replies
      1137 Views

      YuzukiTsuru Replied at

      去找ubus下载一下源码文件,丢dl文件夹里

      1
    • T

      我有很多很多问号【DH-H Tina】
      MR Series • Posted at • The_Qiang

      0 Votes
      1 Replies
      1313 Views

      Y Replied at

      1.在Tina SDK make kernel_menuconfig 点击save后保存应用均为自动操作,save了就可以了
      2.生成ko文件makefile里吧obj-y改为obj-m。
      3.驱动编写教程参考:https://v853.docs.aw-ol.com/soft/dev_gpio/#led
      4.APP不能调用kernel层的操作,需要Port一些操作,可以是用户层接口,也可以是VFS
      5.设备树相关:https://v853.docs.aw-ol.com/soft/dev_gpio/#pinctrl
      6.iio接口的驱动应该是其他平台使用的,哪吒板子没有IIO接口

      针对哪吒板子,PerfXLab 提供了多个demo可供使用,可以参照:https://github.com/rvboards/d1_demo

      1
    • how0723

      请问基于T113-S3的MQ-Dual的RTL8189模块如何适配
      MR Series • Posted at • how0723

      0 Votes
      1 Replies
      1552 Views

      whycan Replied at

      @how0723

      芒果派麻雀到手试玩
      https://bbs.aw-ol.com/topic/791/share/23

      1
    • bayche

      如何用100元制作一块V853 AI 开发板
      V Series • Posted at • bayche

      0 Votes
      1 Replies
      1899 Views

      aozima Replied at

      焊得真不错,和楼主同款加热台!

      你这个抽风的,电机那边是吸入式的吗?

      1
    • how0723

      Tina-Linux 分区名称的问题
      MR Series • Posted at • how0723

      0 Votes
      1 Replies
      1084 Views

      YuzukiTsuru Replied at

      是bug,删了重复的

      1
    • Z

      XR32F429待机电流是多少?
      Wireless & Analog Series • Posted at • zenghc

      0 Votes
      1 Replies
      1020 Views

      YuzukiTsuru Replied at

      DTIM10 200uA@3.6V
      Deepsleep 10uA@3.6V

      1
    • T

      R329 支持gstreamer音频硬解码吗?
      A Series • Posted at • tdzh00

      0 Votes
      1 Replies
      859 Views

      C Replied at

      @tdzh00 不支持

      1
    • Q

      usb驱动安装
      MR Series • Posted at • qiao_sh_pudong

      0 Votes
      1 Replies
      1502 Views

      whycan Replied at

      @qiao_sh_pudong 在 usb驱动安装 中说:

      phoenixsuit (或打开phoenixsuit连接usb) 都是无设备连接

      建议先换台电脑试一试,确定板子是否正常.

      1
    • S

      f1c200 的 nand-flash怎么分开烧录 uboot dtb kernel
      Linux • Posted at • s45123456789

      0 Votes
      1 Replies
      1034 Views

      whycan Replied at

      board/allwinner/suniv-f1c100s/genimage-nand.cfg

      flash nand-128M { pebsize = 128K numpebs = 1024 minimum-io-unit-size = 2048 } image sysimage-nand.img { flash { } flashtype = "nand-128M" partition u-boot { image = "u-boot-sunxi-with-nand-spl.bin" size = 512K } partition dtb { offset = 0x80000 image = "devicetree.dtb" size = 128K } partition kernel { offset = 0x100000 image = "zImage" size = 7M } partition rom { offset = 0x800000 image = "rootfs.squashfs" } }
      1
    • N

      Can you help me? Where are these patch? Thank you
      MR Series • Posted at • nabui

      0 Votes
      1 Replies
      1065 Views

      xiaowenge Replied at

      These patch is base D1_Tina_Open V1.0.
      Now, official have been update to D1_Tina_Open V2.0.
      V2.0 include these patch. Don`t need patch additional.

      1
    • L

      D1H DDR控制器支持写入均衡(Write leveling)吗
      MR Series • Posted at • lgkgkfg

      0 Votes
      1 Replies
      1092 Views

      Y Replied at

      只支持T扩,fly-by没那么多控制线。而且D1-H最大支持2G内存,T扩2片DDR3就满了

      1
    • L

      F133屏幕旋转
      MR Series • Posted at • Lts52341314

      0 Votes
      1 Replies
      1365 Views

      T Replied at

      @lts52341314
      可以,使用g2d

      1
    • A

      R11 根文件系统挂载错误,似乎是因为镜像格式问题?
      A Series • Posted at • Ab135

      0 Votes
      1 Replies
      585 Views

      YuzukiTsuru Replied at

      nand的驱动没有

      1
    • L

      外部中断问题
      MR Series • Posted at • Lts52341314

      0 Votes
      1 Replies
      990 Views

      L Replied at

      @lts52341314 后面一句打错了,是“一直处在高电平时也会产生中断”

      1
    • Q

      哪吒开发板如何使用向量指令
      MR Series • Posted at • qiao_sh_pudong

      0 Votes
      1 Replies
      1240 Views

      aozima Replied at

      https://whycan.com/t_7592.html

      探索麻雀D1s上的RVV
      关键点在于设置VS标志位
      VS位于MSTATUS寄存器的23到24位。但是需要注意的是,当使用RVV时,需要开启浮点寄存器(FS),不然会报错。

      1
    • M

      XR806 有没有实现类似ESP-NOW那种通讯方式
      Wireless & Analog Series • Posted at • memory

      0 Votes
      1 Replies
      1568 Views

      M Replied at

      https://search.bilibili.com/all?keyword=espnow

      https://search.bilibili.com/all?keyword=esp-now

      https://www.bilibili.com/video/BV1qT411L7WX

      https://www.bilibili.com/video/BV1sB4y1e799

      1
    • F

      XR806烧录失败
      Wireless & Analog Series • Posted at • flyeagle

      0 Votes
      1 Replies
      1418 Views

      D Replied at

      @flyeagle
      这个错误提示,指的是握手失败,即串口通讯失败,建议按照如下几步排查:

      检查电脑的串口号是否选对。 检查线序,TX\RX\GND 是否正确。 检查供电,XR806 的 VBAT 供电是否正常。 检查复位,XR806 的复位引脚,低复位,烧录时需为高电平。
      1
    • whycan

      基于Qt 网页服务器/网关
      MR Series • qt 网页服务器 • Posted at • whycan晕哥

      0 Votes
      1 Replies
      1097 Views

      whycan Replied at

      0db19f3b-636f-40b2-9fa4-ef74be9c09b2-a7ae78a61b4071debb29750f6749e05.png

      网关逻辑代码修改此处即可.

      1
    • W

      f1c100s tina的nfc(ws1850s)驱动有人弄过吗
      Linux • Posted at • waterworld

      0 Votes
      1 Replies
      972 Views

      whycan Replied at

      看了一下手册,与f1c100s基本没关系,通过 uart/spi/uart 把这个rfid基站芯片调试成功就可以了.

      1
    • Y

      gcc: error: unrecognized command line option '-mfloat-abi=soft' 编译软件包报错
      其它全志芯片讨论区 • Posted at • yuwei

      0 Votes
      1 Replies
      1313 Views

      whycan Replied at

      @yuwei
      f1c tina 建议用 ubuntu14.04 编译

      1
    • BedRock

      aw什么时候引入社区版本的yocto
      其它全志芯片讨论区 • Posted at • BedRock

      0 Votes
      1 Replies
      978 Views

      xiaowenge Replied at

      yocto之前搞过,虽然上手了很好用,但是上手太难了,怕太多开发者死在成功前的晚上,就先不放出来了,还是先把openwrt和buildroot的坑填完吧(填不完

      1
    • T

      T113 Longan,Nand镜像编译出来之后,kernel跑到ubi0: attaching mtd3时出错
      其它全志芯片讨论区 • Posted at • teddyzheng

      0 Votes
      1 Replies
      1031 Views

      L Replied at

      请问找到原因了吗?我T113S3 SPINAND启动也是这个问题

      1
    • V

      问题求助触摸屏的问题
      V Series • Posted at • v582hett

      0 Votes
      1 Replies
      1245 Views

      YuzukiTsuru Replied at

      是触摸屏没反应还是没有触摸?

      1
    • S

      R329工作温度范围?
      A Series • Posted at • sinba

      0 Votes
      1 Replies
      1105 Views

      Y Replied at

      -20℃~ 110℃

      参考数据手册:
      56e87c4f-5536-43ee-a7c6-19da8b8b1343-image.png

      1
    • H

      t507编译报错 是什么原因呀
      Linux • Posted at • hyg1688

      0 Votes
      1 Replies
      998 Views

      whycan Replied at

      @hyg1688

      log太少了,麻烦多粘贴一些

      1
    • I

      struct sensor_win_size结构体中参数问题
      其它全志芯片讨论区 • Posted at • inomec

      0 Votes
      1 Replies
      916 Views

      I Replied at

      自己顶一下,希望有人回答一下

      1
    • bayche

      D1哪吒Debian系统内核驱动模块编译和使用(以CP210x USB to Serial 为例)
      MR Series • Posted at • bayche

      0 Votes
      1 Replies
      1407 Views

      W Replied at

      @bayche 在 D1哪吒Debian系统内核驱动模块编译和使用(以CP210x USB to Serial 为例) 中说:

      云的工具链压缩包文件。解压工

      您好,大佬,我想请问驱动有了,指导对应的pwn和rst引脚,如何在设备树中给设备节点使能上电呢?

      1
    • C

      wifi和以太网同时连接时,其中一个无法ping 通
      其它全志芯片讨论区 • Posted at • captain

      0 Votes
      1 Replies
      1508 Views

      C Replied at

      @captain 你wifi的ip和eth的ip都不是同一个网段,也没设置掩码,先ping局域网,再做DNS

      1
    • I

      MIPI有信号输出了,cmerademo读数据读不上来
      其它全志芯片讨论区 • Posted at • inomec

      0 Votes
      1 Replies
      1381 Views

      I Replied at

      @inomec
      log 如下

      root@inomec:/home/jamo# ./camerademo [CAMERA]********************************************************** [ 1983.710648] [MT9J003]sensor_power [CAMERA]* * [CAMERA]* this is camera test. [ 1983.719571] [MT9J003]PWR_ON! * [CAMERA]* * [CAMERA]********************************************[ 1983.740686] [MT9J003]sensor_init ************** [CAMERA]********************************************************** [CAMERA] open /dev/video1! [CAMERA]********[ 1983.748619] [MT9J003]sensor_detect ************************************************** [CAMERA]********************************************************** [CAMERA][ 1983.764284] [MT9J003]MT9J003 ID is detect:0x2c01 The path to data saving is /tmp. [CAMERA] The number of captured photos is 5. [CAMERA] save bmp format [CAMERA] do not use w[ 1983.780345] [VIN_ERR]vin is not support this pixelformat:12307 atermarks [ 1983.797592] [VIN_ERR]vin is not support this pixelformat:12307 [ 1983.805089] [VIN_ERR]vin is not support this pixelformat:12307 [ 1983.811761] [VIN_ERR]vin is not support this pixelformat:12307 [ 1983.818410] [VIN_ERR]vin is not support this pixelformat:12307 [ 1983.825078] [VIN_ERR]vin is not support this pixelformat:12307 [ 1983.831772] [VIN_ERR]vin is not support this pixelformat:12307 [ 1983.838439] [VIN_ERR]vin is not support this pixelformat:12307 [ 1983.845109] [VIN_ERR]vin is not support this pixelformat:12307 [ 1983.851781] [VIN_ERR]vin is not support this pixelformat:12307 [ 1983.858444] [VIN_ERR]vin is not support this pixelformat:12307 [ 1983.865116] [VIN_ERR]vin is not support this pixelformat:12307 [ 1983.871789] [VIN_ERR]vin is not support this pixelformat:12307 [ 1983.878437] [VIN_ERR]vin is not support this pixelformat:12307 [ 1983.885107] [VIN_ERR]vin is not support this pixelformat:12307 [CAMERA]**********************************************************[ 1983.892256] [MT9J003]sensor_g_mbus_config [CAMERA] Using format parameters SGBRG8. [CAMERA] camera pixelformat: SGBRG8 [CAMERA] Resolution size : 906 * 640 [CAMERA] [ 1983.902306] [MT9J003]sensor_ioctl The photo save path is /tmp. [CAMERA] The number of photos taken is 5. [CAMERA] Camera capture framerate is 10/1 [ 1983.918023] alloc_contig_range: [59120, 591af) PFNs busy [CAMERA] VIDIOC_S_FMT succeed [CAMERA] fmt.type = 9 [CAMERA] fmt.fmt.pix_mp.width = 906 [ 1983.933571] alloc_contig_range: [59120, 591bf) PFNs busy [CAMERA] fmt.fmt.pix_mp.pixelformat = SGBRG8 [CAMERA] fmt.fmt.pix_mp.field = 1 [ 1983.950637] alloc_contig_range: [59140, 591cf) PFNs busy [ 1983.963666] alloc_contig_range: [59140, 591df) PFNs busy [ 1983.970041] alloc_contig_range: [59140, 591ef) PFNs busy [ 1983.976437] alloc_contig_range: [59140, 591ff) PFNs busy [ 1983.982835] alloc_contig_range: [59180, 5920f) PFNs busy [ 1983.989208] alloc_contig_range: [59180, 5921f) PFNs busy [ 1983.995623] alloc_contig_range: [591a0, 5922f) PFNs busy [ 1984.002767] alloc_contig_range: [59120, 591af) PFNs busy [ 1984.010749] [MT9J003]sensor_g_mbus_config [ 1984.015263] [VIN]__sensor_get_parameter, flags=8, mbus_code=12307 [ 1984.022358] [MT9J003]sensor_s_stream on = 1, 906*640 fps: 10 code: 3013 [ 1984.029790] [MT9J003]sensor_reg_init [ 1984.073994] [MT9J003]sensor_reg_init [ 1984.091222] [MT9J003]0x3040 = 0x41 [ 1984.095141] [MT9J003]0x202 = 0xb8 [ 1984.098961] [MT9J003]0x104 = 0x1 [ 1984.102717] [MT9J003]0x3002 = 0x72a [ 1984.106731] [MT9J003]0x3004 = 0x5d0 [ 1984.110768] [MT9J003]0x34e = 0x280 [ 1984.114686] [MT9J003]0x3006 = 0x9a9 [ 1984.118702] [MT9J003]0x34c = 0x38a [ 1984.122642] [MT9J003]0x3008 = 0x959 [ 1984.126657] [MT9J003]0x340 = 0x310 [ 1984.130592] [MT9J003]0x104 = 0x0 [ 1984.134315] [MT9J003]sensor_s_exp_gain [ 1984.138526] [MT9J003]sensor_set_gain exp = 637, 12544 Done! [ 1984.144803] [MT9J003]s_fmt set width = 906, height = 640 [CAMERA] stream on succeed [ISP]video device name is vin_video1 [ 1984.156722] [MT9J003]sensor_ioctl cutils:D/AWIspApi: F:awIspGetIspId, L:48, video1 --> isp0 >>>>>>>>>>>>>>>>>>>> ISP VERSION INFO <<<<<<<<<<<<<<<<<<< [ISP]version:V1.00 [ISP]tag : isp-500-520-v2.00 [ISP]branch: a50_merge [ISP]commit: 924456a4a4b18b614a8273f282b25ad4ee59f417 [ISP]date : Tue Feb 12 17:03:31 2019 +0800 [ISP]author: zhengjiangwei -------------------------------------------------------- [ISP]register sensor entity is MT9J003 [ISP]open isp device[0] success! [ISP_WARN]open /mnt/isp0_ctx_saved.bin success!!! [ISP_WARN]cannot find MT9J003_906_640_10_0 isp config, use default!!! [ISP_ERR] func: __AwbBuildLightCurve, line: 437,__AwbBuildLightCurve error temp_low = 0, temp_high = 0! [ISP_ERR] func: __AwbBuildLightCurve, line: 437,__AwbBuildLightCurve error temp_low = 0, temp_high = 0! [ISP_ERR] func: __AwbBuildLightCurve, line: 437,__AwbBuildLightCurve error temp_low = 0, temp_high = 0! [ISP_ERR] func: __AwbBuildLightCurve, line: 437,__AwbBuildLightCurve error temp_low = 0, temp_high = 0! [ISP_ERR] func: __AwbBuildLightCurve, line: 437,__AwbBuildLightCurve error temp_low = 0, temp_high = 0! [ISP]create isp0 server thread! [CAMERA] capture num is [0] [CAMERA_ERR] select timeout,end capture thread![ 1986.175172] [MT9J003]sensor_s_stream on = 0, 906*640 fps: 10 code: 3013 [CAMERA] Capture thread finish [ISP_ERR] func: events_loop, line: 162,isp0 event select timeout [ISP_WARN]open /mnt/isp0_ctx_saved.bin success!!! [ 1987.182439] [MT9J003]sensor_power [CAMERA] close /dev/video1 [ 1987.190003] [MT9J003]PWR_OFF! [CAMERA_ERR] capture_photo return error
      1
    • F

      请教各位大佬怎么让Tina 5.0怎么支持T113?
      其它全志芯片讨论区 • Posted at • fffffff

      0 Votes
      1 Replies
      958 Views

      xiaowenge Replied at

      官方已经有适配T113的Tina5.0版本,如果您是企业用户,可以找对应的代理商/商务获取

      1
    • L

      D1s鸿蒙
      MR Series • Posted at • Lts52341314

      0 Votes
      1 Replies
      1375 Views

      xiaowenge Replied at

      这个D1的鸿蒙,应该是L3级别的,在D1-H哪吒(1G/2G DDR)上跑可以,但是D1s 内置的64M DDR,差得略多了,可能要大改才能跑起来

      1
    • B

      sipeed的maixsense在arecord里看不到音频设备是什么原因呢
      A Series • Posted at • bigfly

      0 Votes
      1 Replies
      1338 Views

      q1215200171 Replied at

      权限不够 sudo一下

      1
    • X

      请问一下我照着文档下载sdk到这一步怎么这样,那个username是全志服务平台的账户名吗
      V Series • Posted at • xuweiween914

      0 Votes
      1 Replies
      855 Views

      YuzukiTsuru Replied at

      @xuweiween914 4 输入yes,username是用户名,参考教程 https://v853.docs.aw-ol.com/study/study_3getsdk/

      1
    • H

      D1 DOCK PRO buildroot编译的内核烧录之后上电
      MR Series • Posted at • haaland

      0 Votes
      1 Replies
      925 Views

      Y Replied at

      udhcpc一直在尝试获取ip,可以关了udhcpc或者启用wlan/net

      1
    • Y

      求一份V853芯片手册资料
      V Series • Posted at • y1178427557

      0 Votes
      1 Replies
      936 Views

      N Replied at

      参考这个:
      【资料】V853 物料 Support List
      https://bbs.aw-ol.com/topic/1997/share/1

      1
    • D

      【小白入手xr806】helloworld踩坑”月“记
      Wireless & Analog Series • Posted at • Deadpersimmon

      3 Votes
      1 Replies
      1474 Views

      aldfaaa Replied at

      桃花潭水深千尺, 不及小弟赠我情

      1
    • W

      f1c100s tina系统,修改bootlogo分区大小,打包的时候报错
      Linux • Posted at • waterworld

      0 Votes
      1 Replies
      1459 Views

      W Replied at

      @waterworld

      iot@server-211:~/jkangli/f1c100s/tina$ pack No kernel param, parse it from c200s copying tools file copying configs file image/arisc.fex image/aultls32.fex image/aultools.fex image/bootlogo.fex image/boot_package.cfg image/boot_package.fex image/boot_package_nor.cfg image/cardscript.fex image/cardscript_secure.fex image/cardtool.fex image/diskfs.fex image/env-3.10.cfg image/env_burn.cfg image/esm.fex image/image_crashdump.cfg renamed 'image/image_linux.cfg' -> 'image/image.cfg' image/image_nor.cfg image/split_xxxx.fex image/sunxi.fex image/sw-subimgs-ab.cfg image/sw-subimgs.cfg image/sw-subimgs-secure.cfg image/sys_config.fex image/sys_partition_dump.fex image/sys_partition.fex image/sys_partition_nor.fex image/sys_partition_private.fex image/toc0.fex image/toc1.fex image/usbtool_crash.fex image/usbtool.fex image/usbtool_test.fex image/writable.fex /home/iot/jkangli/f1c100s/tina storage_type value is 5 rm /home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/sys_partition_nor.fex rm /home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/image_nor.cfg copying boot resource LZMA 4.65 : Igor Pavlov : Public domain : 2009-02-03 copying boot file make user resource for : /home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/sys_partition.fex handle partition user-res no user resource partitions unable to find key partition_start ERROR: update mbr file fail no app resource partitions /home/iot/jkangli/f1c100s/tina unable to find key partition_start ERROR: update mbr file fail /home/iot/jkangli/f1c100s/tina/scripts/pack_img.sh: line 722: let: DATA_PART_SIZE_IN_K=/2: syntax error: operand expected (error token is "/2") DATA_PART_DOWNLOAD_FILE = /home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/data.fex Need size of filesystem /home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/data.fex is not ext4 img /home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/data.fex: cannot open `/home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/data.fex' (No such file or directory) /home/iot/jkangli/f1c100s/tina unable to find key partition_start ERROR: update mbr file fail sys_config exist Multiconfig num:0 copying tools file copying configs file image/arisc.fex image/aultls32.fex image/aultools.fex image/boot0_nand.fex image/boot0_sdcard.fex image/boot0_spinor.fex image/bootlogo.fex image/boot_package.cfg image/boot_package.fex image/boot_package_nor.cfg image/cardscript.fex image/cardscript_secure.fex image/cardtool.fex image/diskfs.fex image/env-3.10.cfg image/env_bk.cfg image/env_burn.cfg image/env.cfg image/esm.fex image/fes1.fex image/image.cfg image/image_crashdump.cfg renamed 'image/image_linux.cfg' -> 'image/image.cfg' image/image_nor.cfg image/split_xxxx.fex image/sunxi.fex image/sw-subimgs-ab.cfg image/sw-subimgs.cfg image/sw-subimgs-secure.cfg image/sys_config.fex image/sys_partition_dump.fex image/sys_partition.fex image/sys_partition_nor.fex image/sys_partition_private.fex image/sys_partition_tmp_app.fex image/sys_partition_tmp_data.fex image/toc0.fex image/toc1.fex image/u-boot.fex image/u-boot-spinor.fex image/usbtool_crash.fex image/usbtool.fex image/usbtool_test.fex image/writable.fex /home/iot/jkangli/f1c100s/tina storage_type value is 5 rm /home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/sys_partition_nor.fex rm /home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/image_nor.cfg copying boot resource LZMA 4.65 : Igor Pavlov : Public domain : 2009-02-03 copying boot file make user resource for : /home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/sys_partition.fex handle partition user-res no user resource partitions unable to find key partition_start ERROR: update mbr file fail no app resource partitions /home/iot/jkangli/f1c100s/tina unable to find key partition_start ERROR: update mbr file fail /home/iot/jkangli/f1c100s/tina/scripts/pack_img.sh: line 722: let: DATA_PART_SIZE_IN_K=/2: syntax error: operand expected (error token is "/2") DATA_PART_DOWNLOAD_FILE = /home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/data.fex Need size of filesystem /home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/data.fex is not ext4 img /home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/data.fex: cannot open `/home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/data.fex' (No such file or directory) /home/iot/jkangli/f1c100s/tina unable to find key partition_start ERROR: update mbr file fail p=soc c=product state=0 p=soc c=platform state=0 p=soc c=target state=0 p=soc c=norflash state=0 p=soc c=power_sply state=0 p=soc c=pwr_ctrl state=0 p=soc c=card_boot state=0 p=soc c=pm_para state=0 p=soc c=card0_boot_para state=0 p=soc c=card2_boot_para state=0 p=soc c=card1_boot_para state=0 p=soc c=twi_para state=0 p=soc c=uart_para state=0 p=soc c=jtag_para state=0 p=soc c=dram state=0 p=soc c=twi0 state=0 p=soc c=twi1 state=0 p=soc c=twi2 state=0 p=soc c=uart0 state=0 p=soc c=uart1 state=0 p=soc c=uart2 state=0 p=soc c=spi0 state=0 p=soc c=spi1 state=0 p=soc c=rtp_para state=0 p=soc c=ctp state=0 p=twi0 c=goodix_ts state=0 p=soc c=tkey_para state=0 p=soc c=motor_para state=0 p=soc c=nand0 state=0 p=soc c=disp state=0 p=soc c=lcd0 state=0 p=soc c=pwm0_para state=0 p=soc c=pwm1_para state=0 p=soc c=vip0 state=0 p=soc c=tvout_para state=0 p=soc c=tvin_para state=0 p=soc c=di state=0 p=soc c=sdc0 state=0 p=soc c=sdc1 state=0 p=soc c=smc state=0 p=soc c=usbc0 state=0 p=soc c=gsensor_para state=0 p=soc c=gps_para state=0 p=soc c=wlan state=0 p=soc c=gy_para state=0 p=soc c=ls_para state=0 p=soc c=compass_para state=0 p=soc c=bt_para state=0 p=soc c=audiospdif state=0 p=soc c=spdif_machine state=0 p=soc c=audiohdmi state=0 p=soc c=hdmi_machine state=0 p=soc c=pmu0 state=0 p=soc c=pmu0_regu state=0 p=soc c=dvfs_table state=0 p=soc c=Vdevice state=0 p=soc c=fel_key state=0 p=soc c=partitions state=0 Conver script to dts ok. pack boot package GetPrivateProfileSection read to end content_count=3 toc1 file Path=/home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/boot_package.fex script file Path=/home/iot/jkangli/f1c100s/tina/out/c200s-F1C200s/image/sys_config.bin cant get board_id_enable script update toc1 ok packing for tina linux normal unable to find key partition_start ERROR: update mbr file fail ERROR: update_mbr failed
      1
    • B

      启动Kernel失败问题求助
      编译和烧写问题专区 • Posted at • beiyi

      0 Votes
      1 Replies
      963 Views

      YuzukiTsuru Replied at

      全局搜索cd-gpio看看有没有probe fail

      1
    • L

      全志图像识别选哪颗芯片好?
      其它全志芯片讨论区 • 图像识别 • Posted at • lyc437049837

      0 Votes
      1 Replies
      825 Views

      YuzukiTsuru Replied at

      V853 (那不然呢

      1
    • H

      V853 openWrt编译SDK报错
      V Series • Posted at • haaland

      0 Votes
      1 Replies
      1047 Views

      bayche Replied at

      @haaland

      1.你选了uImage但是没有选上kernel

      QQ图片20220913142948.png

      2.qt5的libcpp依赖不完整

      QQ图片20220913142951.png

      1
    • T

      哪吒运行QT5比较卡
      MR Series • Posted at • ttg2577

      0 Votes
      1 Replies
      876 Views

      YuzukiTsuru Replied at

      开双缓,并且disp驱动开启手段刷刷缓存

      1
    • I

      CMOS使用外部晶振,代码中如何设置
      其它全志芯片讨论区 • Posted at • inomec

      0 Votes
      1 Replies
      1480 Views

      C Replied at

      @inomec 不需要啦

      1
    • C

      全志V853编译出现问题
      V Series • Posted at • caochenxin

      0 Votes
      1 Replies
      944 Views

      Y Replied at

      缺少一个命令,需要安装uboot-tools包

      1
    • chinazhangdj

      Tina开机一大片Bad block日志怎么禁用?
      Linux • Posted at • gouer

      0 Votes
      1 Replies
      1052 Views

      YuzukiTsuru Replied at

      换一片,有坏块,NAND 有坏块

      1
    • W

      f1c100s的tina,添加了一些头文件在tina\lichee\linux-3.10\include\linux\目录下,编译报错
      Linux • Posted at • waterworld

      0 Votes
      1 Replies
      834 Views

      YuzukiTsuru Replied at

      ld记得链接linux/gpio

      1
    • Z

      V3S 5.4.180内核怎么使用RGB屏
      其它全志芯片讨论区 • Posted at • zoneben

      0 Votes
      1 Replies
      1210 Views

      L Replied at

      @zoneben 开启设备树

      1
    • A

      D1-H 屏幕显示分屏
      MR Series • Posted at • awwwwa

      0 Votes
      1 Replies
      1049 Views

      YuzukiTsuru Replied at

      dclk太高了,改低就行了

      1
    • C

      怎么编译yolov5模型验证程序
      V Series • Posted at • caochenxin

      0 Votes
      1 Replies
      1135 Views

      T Replied at

      @caochenxin
      sudo apt install libopencv-dev
      然后执行
      g++ --std=c++11 -Wfatal-errors -O3 xxx.cpp -o yyy $(pkg-config --cflags --libs opencv4)
      其中xxx是上面的源码,yyy是输出的文件名。
      在ubuntu20.04系统上使用g++9.4版本编译通过。

      1
    • YuzukiTsuru

      自制 D1-H 小板子运行NES模拟器
      MR Series • Posted at • 柚木 鉉

      3 Votes
      1 Replies
      1061 Views

      H Replied at

      👍 支持方向+AB键同时操作吗

      1
    • jinxiangwzh

      ISP报错
      其它全志芯片讨论区 • Posted at • jinxiangwzh

      0 Votes
      1 Replies
      1096 Views

      kanken6174 Replied at

      我目前在使用 V851S 时遇到了类似的问题,您找到根本原因了吗?

      1
    • YuzukiTsuru

      XR806+TinyMaix,在XR806上实现ML推理
      Wireless & Analog Series • Posted at • 柚木 鉉

      0 Votes
      1 Replies
      1620 Views

      D Replied at

      @yuzukitsuru 666,找个时间试试。

      1
    • DAIZEBIN

      提取DRAM的数据
      MR Series • Posted at • DAIZEBIN

      1 Votes
      1 Replies
      1070 Views

      No one has replied

      1
    • Z

      kgdb调试内核模块无法进入断点
      编译和烧写问题专区 • Posted at • zjbxzf

      0 Votes
      1 Replies
      1204 Views

      Z Replied at

      @zjbxzf 问题解决把初始化函数前的__init去掉就行了

      1
    • zhongtao1701

      T113加载wifi驱动8189fs.so,但却没有触发sdc2的操作,求助!
      MR Series • Posted at • 钟工

      0 Votes
      1 Replies
      1444 Views

      zhongtao1701 Replied at

      上面的描述有一个错误, 不是sdc2,wifi接在sdc1上面

      1
    • S

      有谁移植过t113或者f133的裸机G2D部分吗,我愿意出400元,有这方面经验的朋友可以私信我,谢谢
      其它全志芯片讨论区 • Posted at • smiletiger

      0 Votes
      1 Replies
      1154 Views

      S Replied at

      认识一个老外搞了,但是他出全套代码,600欧
      04b73c40-90fb-4dc5-b8e7-1f7c4fa9edad-image.png

      1
    • D

      Tina下 DNS配置好后 重启消失问题
      MR Series • Posted at • ddrddr

      0 Votes
      1 Replies
      1470 Views

      YuzukiTsuru Replied at

      @ddrddr etc分区在overlayfs是处于保护状态的,修改也是不保存的

      1
    • H

      audiocodec配置设备失败啦 not found
      MR Series • Posted at • haaland

      0 Votes
      1 Replies
      947 Views

      zznzzn Replied at

      用id控制,numid,好像驱动有个bug有几个字符串匹配有问题

      参考这里 https://d1s.docs.aw-ol.com/hard/hard_3boarduse/#_7

      amixer -D hw:audiocodec cset numid=15 30 && \ amixer -D hw:audiocodec cset numid=14 30 && \ amixer -D hw:audiocodec cset numid=23 0 && \ amixer -D hw:audiocodec cset numid=25 1 && \ arecord -D hw:audiocodec -f S16_LE -t wav -r 16000 -d 3 t.wav
      1
    • W

      请教longsn PMU选择
      其它全志芯片讨论区 • Posted at • wupaul2001

      0 Votes
      1 Replies
      852 Views

      YuzukiTsuru Replied at

      @wupaul2001 AXP2202

      1
    • W

      下载sdk报错
      MR Series • Posted at • WB15779898961

      0 Votes
      1 Replies
      859 Views

      walker2048 Replied at

      删除Tina目录下的.repo目录,再重新执行 repo init 这条命令

      1
    • J

      D1-H是否支持PCIE
      MR Series • Posted at • jxzhb

      0 Votes
      1 Replies
      841 Views

      xiaowenge Replied at

      不支持 没有那么高速的接口

      1
    • H

      寻清晰版的D1-H pin map
      MR Series • Posted at • htjgdw

      0 Votes
      1 Replies
      1040 Views

      H Replied at

      从论坛下载D1-H_Datasheet_V1.1.pdf pin map就看清楚了。

      1
    • S

      全志T3如何设置lvds信号支持1024*768分辨率
      其它全志芯片讨论区 • Posted at • s1810808

      0 Votes
      1 Replies
      1042 Views

      S Replied at

      @s1810808 更正一下系统默认支持1280*720

      1
    • H

      buildroot编译Tina libgpg-error的报错
      V Series • Posted at • haaland

      0 Votes
      1 Replies
      1053 Views

      D Replied at

      1、在V853 sdk中查找这几个文件:

      cl/mkerrcodes.awk、 src/mkerrcodes.awk、 src/mkerrcodes1.awk、 src/mkerrcodes2.awk、 src/mkerrnos.awk、 src/mkstetable.awk

      并将这些文件中的:header{ sub(/#.+/, "") 改成header{ sub(/#.+/, "")。也就算是最新的gawk能够识别到#符号,不需要使用转义字符\的帮助了。

      2、在V853 sdk中查找这几个文件:

      src/Makefile src/Makefile.am src/Makefile.in src/Makefile.awk

      并将以上文件中的的所有namespace替换成pkg-namespace。

      然后重新执行./build.sh 就可以继续编译了。

      转自:http://bbs.eeworld.com.cn/thread-1219312-1-1.html

      1
    • L

      D1H设备树疑问
      Linux • Posted at • lgkgkfg

      0 Votes
      1 Replies
      1136 Views

      YuzukiTsuru Replied at

      @lgkgkfg https://v853.docs.aw-ol.com/soft/dev_gpio/

      1
    • Y

      h616 有tina 的使用资料吗?
      H/F/TV Series • Posted at • yuwei

      1 Votes
      1 Replies
      1253 Views

      Y Replied at

      @yuwei 请联系代理商 获取sdk bruce@easitek.cc

      1
    • q1215200171

      基于D1哪吒的 自动寻路小车-附源码
      MR Series • Posted at • budbool

      0 Votes
      1 Replies
      1163 Views

      N Replied at

      做得不错,就是视频有点费脖子

      1
    • Y

      在编译蓝牙示例时会出现宏未定义
      Wireless & Analog Series • Posted at • yjx199973

      0 Votes
      1 Replies
      1070 Views

      Y Replied at

      @yjx199973 2a1510e0-008a-413c-85ec-511a3d07a5c6-image.png 这里也没有BT_CONN那个选项,然后发现在Kconfig里面这个没有定义名字我就自己加了8acf6902-8597-4c72-8f1b-226ae5eab4b7-image.png 就有了2cfd2f2f-ee95-4f4b-b59b-dd5b320b7283-image.png 但是编译会出现这个fec4f5f4-6d68-44cb-9bea-54f0cf3d0308-image.png 问题请问该怎么解决呀!

      1
    • H

      LonganSDK如何配置mipi屏幕驱动
      其它全志芯片讨论区 • Posted at • huanian

      0 Votes
      1 Replies
      1363 Views

      YuzukiTsuru Replied at

      @huanian 上一层没有打开

      1
    • Y

      t113使用tina里面的add-rootfs-demo功能导致无法找到根文件系统
      MR Series • Posted at • yy_fly

      0 Votes
      1 Replies
      833 Views

      M Replied at

      @yy_fly 看看压缩的格式是否一致,你这个是xz的

      1
    • W

      cat ...usbc0@0/usb_device为什么能开启usb_device模式
      MR Series • Posted at • wonderxue

      0 Votes
      1 Replies
      738 Views

      whycan Replied at

      在这个目录下面 lichee/linux-5.4/drivers/usb/sunxi_usb

      用命令: grep "usb_host" -r . 搜索代码可以看到实现过程的。

      1
    • X

      T113 mangopi SDK 增加ntpd或ntpdate时关于'CMAC_CTX'类型未定义问题
      MR Series • Posted at • xiaobo

      0 Votes
      1 Replies
      1521 Views

      X Replied at

      这个问题是openssl版本问题,因为我不是按照建议的ubuntu14.04而是wsl2 ubuntu20.04环境编译的,所以遇到的这个问题可能大家一般不会遇到,后来各种搜索资料解决了,这里说一下方法了结这个问题。
      查看openssl版本,通过apt降级到1.1.0版本(SDK里是1.1.0.i),之后手动删除out目录下之前openssl的编译输出,然后重新编译就好了。
      3cadb9fe-ed9f-4590-96e9-cca7a001dd8b-image.png

      1
    • Steve

      全志h3到h5系列CPU方案的板子使用5.10以上版本内核HDMI无声怎么解决
      Linux • Posted at • Steve

      0 Votes
      1 Replies
      893 Views

      YuzukiTsuru Replied at

      @steve 主线的hdmi似乎需要播放一段预加载音频初始化snd设备才能使用,具体可以搜索一下github上的issue

      1
    • L

      WSL1 Ubuntu-16.04下编译成功,pack时提示dragon无法运行
      编译和烧写问题专区 • Posted at • lyscut

      0 Votes
      1 Replies
      902 Views

      Q Replied at

      wsl1 不支持运行 32 位的二进制文件,升级成 wsl2 就可以了。

      # 查看名称和版本号 wsl -l -v

      比如:

      NAME STATE VERSION * Ubuntu Running 1 Ubuntu-18.04 Stopped 2

      设置版本:

      wsl --set-version Ubuntu 2

      等个几分钟就可以了。

      1
    • D

      在哪吒D1上适配移远EC20,实现4G上网
      MR Series • Posted at • ddrddr

      0 Votes
      1 Replies
      1880 Views

      W Replied at

      您好,请问如何在DTS中给ttyUSB设备使能上电重置呢?

      1
    • D

      buildroot和kernel的配置文件谁能分享一份?配置废掉了。。。
      V Series • Posted at • dql2016

      0 Votes
      1 Replies
      766 Views

      YuzukiTsuru Replied at

      source build/envsetup.sh cconfig git stash
      1
    • q1215200171

      【大赛报名】V853芯片免费体验!华秋电子X全志在线开源硬件设计大赛
      V Series • Posted at • budbool

      0 Votes
      1 Replies
      1306 Views

      q1215200171 Replied at

      大赛海报.jpg

      1
    • N

      D1-H如何修改SD卡的/dev/mmcblk0p1分区的大小
      MR Series • Posted at • nikola

      0 Votes
      1 Replies
      1036 Views

      N Replied at

      @nikola 分区boot-resource的大小改了之后还是8M大小

      1
    • L

      T113烧录SPI NAND的镜像卡在这里这什么在做怪呢?
      MR Series • Posted at • linsen

      0 Votes
      1 Replies
      1592 Views

      L Replied at

      @lansecd 晶振在作怪,跳线成无源晶振直接就刷进去了。。。。。。。。。。。。。。。。

      1c1ff613-c035-4c10-b94e-d03debff2a45-image.png

      1
    • A

      adb shell 这是啥原因啊?求大佬解答!!
      V Series • Posted at • Ajian

      0 Votes
      1 Replies
      925 Views

      YuzukiTsuru Replied at

      adb是插入usb的

      1
    • S

      求助,D1s开启热点失败
      MR Series • Posted at • siguadao

      0 Votes
      1 Replies
      1491 Views

      A Replied at

      @siguadao 请问下,楼主最终成功了吗

      1
    • M

      A40I AP问题
      飞凌嵌入式专区 • Posted at • MasterLu

      0 Votes
      1 Replies
      1322 Views

      M Replied at

      @masterlu
      random: Trying to read entropy from /dev/random
      Configuration file: /etc/hostapd.conf
      nl80211: Supported cipher 00-0f-ac:1
      nl80211: Supported cipher 00-0f-ac:5
      nl80211: Supported cipher 00-0f-ac:2
      nl80211: Supported cipher 00-0f-ac:4
      nl80211: Using driver-based off-channel TX
      nl80211: key_mgmt=0xd0f enc=0xf auth=0x7 flags=0x800d8c0 rrm_flags=0x0 probe_resp_offloads=0x0 max_stations=0 max_remain_on_chan=5000 max_scan_ssids=9
      nl80211: interface wlan0 in phy phy0
      nl80211: Set mode ifindex 7 iftype 3 (AP)
      nl80211: Setup AP(wlan0) - device_ap_sme=1 use_monitor=0
      nl80211: Subscribe to mgmt frames with AP handle 0x1dfbdd0 (device SME)
      nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1dfbdd0 match=04 multicast=0
      nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1dfbdd0 match=0501 multicast=0
      nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1dfbdd0 match=0503 multicast=0
      nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1dfbdd0 match=0504 multicast=0
      nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1dfbdd0 match=06 multicast=0
      nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1dfbdd0 match=08 multicast=0
      nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1dfbdd0 match=09 multicast=0
      nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1dfbdd0 match=0a multicast=0
      nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1dfbdd0 match=11 multicast=0
      nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1dfbdd0 match=7f multicast=0
      nl80211: Register frame type=0xb0 (WLAN_FC_STYPE_AUTH) nl_handle=0x1dfbdd0 match= multicast=0
      nl80211: Enable Probe Request reporting nl_preq=0x1e00ea0
      nl80211: Register frame type=0x40 (WLAN_FC_STYPE_PROBE_REQ) nl_handle=0x1e00ea0 match= multicast=0
      rfkill: Cannot open RFKILL control device
      nl80211: RFKILL status not available
      nl80211: Add own interface ifindex 7 (ifidx_reason -1)
      nl80211: if_indices[16]: 7(-1)
      phy: phy0
      BSS count 1, BSSID mask 00:00:00:00:00:00 (0 bits)
      nl80211: No channel number found for frequency 5920 MHz
      nl80211: No channel number found for frequency 5940 MHz
      nl80211: Regulatory information - country=00
      nl80211: 2402-2472 @ 40 MHz 20 mBm
      nl80211: 2457-2482 @ 40 MHz 20 mBm (no IR)
      nl80211: 2474-2494 @ 20 MHz 20 mBm (no OFDM) (no IR)
      nl80211: 5170-5250 @ 80 MHz 20 mBm (no IR)
      nl80211: 5735-5835 @ 80 MHz 20 mBm (no IR)
      nl80211: 57240-63720 @ 2160 MHz 0 mBm
      nl80211: Added 802.11b mode based on 802.11g information
      nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[NO_IR] 2472[NO_IR] 2484[DISABLED]
      nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180[DISABLED] 5190[DISABLED] 5200[DISABLED] 5210[DISABLED] 5220[DISABLED] 5230[DISABLED] 5240[DISABLED] 5260[DISABLED] 5280[DISABLED] 5300[DISABLED] 5320[DISABLED] 5500[DISABLED]
      nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[NO_IR] 2472[NO_IR] 2484[DISABLED]
      Allowed channel: mode=1 chan=1 freq=2412 MHz max_tx_power=20 dBm
      Allowed channel: mode=1 chan=2 freq=2417 MHz max_tx_power=20 dBm
      Allowed channel: mode=1 chan=3 freq=2422 MHz max_tx_power=20 dBm
      Allowed channel: mode=1 chan=4 freq=2427 MHz max_tx_power=20 dBm
      Allowed channel: mode=1 chan=5 freq=2432 MHz max_tx_power=20 dBm
      Allowed channel: mode=1 chan=6 freq=2437 MHz max_tx_power=20 dBm
      Allowed channel: mode=1 chan=7 freq=2442 MHz max_tx_power=20 dBm
      Allowed channel: mode=1 chan=8 freq=2447 MHz max_tx_power=20 dBm
      Allowed channel: mode=1 chan=9 freq=2452 MHz max_tx_power=20 dBm
      Allowed channel: mode=1 chan=10 freq=2457 MHz max_tx_power=20 dBm
      Allowed channel: mode=1 chan=11 freq=2462 MHz max_tx_power=20 dBm
      Allowed channel: mode=0 chan=1 freq=2412 MHz max_tx_power=20 dBm
      Allowed channel: mode=0 chan=2 freq=2417 MHz max_tx_power=20 dBm
      Allowed channel: mode=0 chan=3 freq=2422 MHz max_tx_power=20 dBm
      Allowed channel: mode=0 chan=4 freq=2427 MHz max_tx_power=20 dBm
      Allowed channel: mode=0 chan=5 freq=2432 MHz max_tx_power=20 dBm
      Allowed channel: mode=0 chan=6 freq=2437 MHz max_tx_power=20 dBm
      Allowed channel: mode=0 chan=7 freq=2442 MHz max_tx_power=20 dBm
      Allowed channel: mode=0 chan=8 freq=2447 MHz max_tx_power=20 dBm
      Allowed channel: mode=0 chan=9 freq=2452 MHz max_tx_power=20 dBm
      Allowed channel: mode=0 chan=10 freq=2457 MHz max_tx_power=20 dBm
      Allowed channel: mode=0 chan=11 freq=2462 MHz max_tx_power=20 dBm
      Completing interface initialization
      Mode: IEEE 802.11g Channel: 3 Frequency: 2422 MHz
      DFS 0 channels required radar detection
      nl80211: Set freq 2422 (ht_enabled=0, vht_enabled=0, he_enabled=0, bandwidth=20 MHz, cf1=2422 MHz, cf2=0 MHz)

      freq=2422 he_enabled=0 vht_enabled=0 ht_enabled=0 channel_type=0
      RATE[0] rate=10 flags=0x1
      RATE[1] rate=20 flags=0x1
      RATE[2] rate=55 flags=0x1
      RATE[3] rate=110 flags=0x1
      RATE[4] rate=60 flags=0x0
      RATE[5] rate=90 flags=0x0
      RATE[6] rate=120 flags=0x0
      RATE[7] rate=180 flags=0x0
      RATE[8] rate=240 flags=0x0
      RATE[9] rate=360 flags=0x0
      RATE[10] rate=480 flags=0x0
      RATE[11] rate=540 flags=0x0
      hostapd_setup_bss(hapd=0x1dfb060 (wlan0), first=1)
      nl80211: flush -> DEL_STATION wlan0 (all)
      Using interface wlan0 with hwaddr f0:c8:14:7b:5a:4b and ssid "hostapd_test"
      Deriving WPA PSK based on passphrase
      SSID - hexdump_ascii(len=12):
      68 6f 73 74 61 70 64 5f 74 65 73 74 hostapd_test
      PSK (ASCII passphrase) - hexdump_ascii(len=8): [REMOVED]
      PSK (from passphrase) - hexdump(len=32): [REMOVED]
      random: Got 20/20 random bytes
      Get randomness: len=32 entropy=0
      GMK - hexdump(len=32): [REMOVED]
      Get randomness: len=32 entropy=0
      Key Counter - hexdump(len=32): [REMOVED]
      WPA: Delay group state machine start until Beacon frames have been configured
      nl80211: Set beacon (beacon_set=0)
      nl80211: Beacon head - hexdump(len=63): 80 00 00 00 ff ff ff ff ff ff f0 c8 14 7b 5a 4b f0 c8 14 7b 5a 4b 00 00 00 00 00 00 00 00 00 00 64 00 11 04 00 0c 68 6f 73 74 61 70 64 5f 74 65 73 74 01 08 82 84 8b 96 0c 12 18 24 03 01 03
      nl80211: Beacon tail - hexdump(len=35): 2a 01 04 32 04 30 48 60 6c 30 18 01 00 00 0f ac 02 02 00 00 0f ac 04 00 0f ac 02 01 00 00 0f ac 02 00 00
      nl80211: ifindex=7
      nl80211: beacon_int=100
      nl80211: beacon_rate=0
      nl80211: rate_type=0
      nl80211: dtim_period=2
      nl80211: ssid=hostapd_test beacon_int=100 dtim_period=2
      nl80211: hidden SSID not in use
      nl80211: privacy=2
      nl80211: auth_algs=0x3
      nl80211: wpa_version=0x2
      nl80211: key_mgmt_suites=0x2
      nl80211: pairwise_ciphers=0x18
      nl80211: group_cipher=0x8
      wlan0: Deauthenticate all stations at BSS start
      nl80211: sta_remove -> DEL_STATION wlan0 ff:ff:ff:ff:ff:ff --> -22 (Invalid argument)
      WPA: Start group state machine to set initial keys
      WPA: group state machine entering state GTK_INIT (VLAN-ID 0)
      Get randomness: len=32 entropy=0
      GTK - hexdump(len=32): [REMOVED]
      WPA: group state machine entering state SETKEYSDONE (VLAN-ID 0)
      wpa_driver_nl80211_set_key: ifindex=7 (wlan0) alg=2 addr=0x8560c key_idx=1 set_tx=1 seq_len=0 key_len=32 key_flag=0x1a
      nl80211: NEW_KEY
      nl80211: KEY_DATA - hexdump(len=32): [REMOVED]
      broadcast key
      nl80211: NL80211_CMD_SET_KEY - default key
      nl80211: Set wlan0 operstate 0->1 (UP)
      netlink: Operstate: ifindex=7 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
      nl80211: TX queue param set: queue=0 aifs=1 cw_min=3 cw_max=7 burst_time=15 --> res=-95
      Failed to set TX queue parameters for queue 0.
      nl80211: TX queue param set: queue=1 aifs=1 cw_min=7 cw_max=15 burst_time=30 --> res=-95
      Failed to set TX queue parameters for queue 1.
      nl80211: TX queue param set: queue=2 aifs=3 cw_min=15 cw_max=63 burst_time=0 --> res=-95
      Failed to set TX queue parameters for queue 2.
      nl80211: TX queue param set: queue=3 aifs=7 cw_min=15 cw_max=1023 burst_time=0 --> res=-95
      Failed to set TX queue parameters for queue 3.
      wlan0: interface state UNINITIALIZED->ENABLED
      wlan0: AP-ENABLED
      wlan0: Setup of interface done.
      ctrl_iface not configured!
      RTM_NEWLINK: ifi_index=7 ifname=wlan0 operstate=6 linkmode=0 ifi_family=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
      nl80211: Event message available
      nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
      nl80211: New station 78:62:56:c1:26:31
      nl80211: Assoc Req IEs - hexdump(len=0): [NULL]
      wlan0: Event ASSOC (0) received
      wlan0: STA 78:62:56:c1:26:31 IEEE 802.11: associated
      STA did not include WPS/RSN/WPA IE in (Re)AssocReq
      New STA
      ap_sta_add: register ap_handle_timer timeout for 78:62:56:c1:26:31 (300 seconds - ap_max_inactivity)
      No WPA/RSN IE from STA
      nl80211: sta_remove -> DEL_STATION wlan0 78:62:56:c1:26:31 --> 0 (Success)
      nl80211: Set STA flags - ifname=wlan0 addr=78:62:56:c1:26:31 total_flags=0x0 flags_or=0x0 flags_and=0xfffffff1 authorized=0
      nl80211: sta_remove -> DEL_STATION wlan0 78:62:56:c1:26:31 --> 0 (Success)
      ap_free_sta: cancel ap_handle_timer for 78:62:56:c1:26:31
      nl80211: Event message available
      nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
      nl80211: Delete station 78:62:56:c1:26:31
      wlan0: Event DISASSOC (1) received
      wlan0: STA 78:62:56:c1:26:31 IEEE 802.11: disassociated
      Disassociation notification for unknown STA 78:62:56:c1:26:31
      nl80211: Event message available
      nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
      nl80211: New station 78:62:56:c1:26:31
      nl80211: Assoc Req IEs - hexdump(len=0): [NULL]
      wlan0: Event ASSOC (0) received
      wlan0: STA 78:62:56:c1:26:31 IEEE 802.11: associated
      STA did not include WPS/RSN/WPA IE in (Re)AssocReq
      New STA
      ap_sta_add: register ap_handle_timer timeout for 78:62:56:c1:26:31 (300 seconds - ap_max_inactivity)
      No WPA/RSN IE from STA
      nl80211: sta_remove -> DEL_STATION wlan0 78:62:56:c1:26:31 --> 0 (Success)
      nl80211: Set STA flags - ifname=wlan0 addr=78:62:56:c1:26:31 total_flags=0x0 flags_or=0x0 flags_and=0xfffffff1 authorized=0
      nl80211: sta_remove -> DEL_STATION wlan0 78:62:56:c1:26:31 --> 0 (Success)
      ap_free_sta: cancel ap_handle_timer for 78:62:56:c1:26:31
      nl80211: Event message available
      nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
      nl80211: Delete station 78:62:56:c1:26:31
      wlan0: Event DISASSOC (1) received
      wlan0: STA 78:62:56:c1:26:31 IEEE 802.11: disassociated
      Disassociation notification for unknown STA 78:62:56:c1:26:31
      nl80211: Event message available
      nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
      nl80211: New station 78:62:56:c1:26:31
      nl80211: Assoc Req IEs - hexdump(len=0): [NULL]
      wlan0: Event ASSOC (0) received
      wlan0: STA 78:62:56:c1:26:31 IEEE 802.11: associated
      STA did not include WPS/RSN/WPA IE in (Re)AssocReq
      New STA
      ap_sta_add: register ap_handle_timer timeout for 78:62:56:c1:26:31 (300 seconds - ap_max_inactivity)
      No WPA/RSN IE from STA
      nl80211: sta_remove -> DEL_STATION wlan0 78:62:56:c1:26:31 --> 0 (Success)
      nl80211: Set STA flags - ifname=wlan0 addr=78:62:56:c1:26:31 total_flags=0x0 flags_or=0x0 flags_and=0xfffffff1 authorized=0
      nl80211: sta_remove -> DEL_STATION wlan0 78:62:56:c1:26:31 --> 0 (Success)
      ap_free_sta: cancel ap_handle_timer for 78:62:56:c1:26:31
      nl80211: Event message available
      nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
      nl80211: Delete station 78:62:56:c1:26:31
      wlan0: Event DISASSOC (1) received
      wlan0: STA 78:62:56:c1:26:31 IEEE 802.11: disassociated
      Disassociation notification for unknown STA 78:62:56:c1:26:31
      nl80211: Event message available
      nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
      nl80211: New station 78:62:56:c1:26:31
      nl80211: Assoc Req IEs - hexdump(len=0): [NULL]
      wlan0: Event ASSOC (0) received
      wlan0: STA 78:62:56:c1:26:31 IEEE 802.11: associated
      STA did not include WPS/RSN/WPA IE in (Re)AssocReq
      New STA
      ap_sta_add: register ap_handle_timer timeout for 78:62:56:c1:26:31 (300 seconds - ap_max_inactivity)
      No WPA/RSN IE from STA
      nl80211: sta_remove -> DEL_STATION wlan0 78:62:56:c1:26:31 --> 0 (Success)
      nl80211: Set STA flags - ifname=wlan0 addr=78:62:56:c1:26:31 total_flags=0x0 flags_or=0x0 flags_and=0xfffffff1 authorized=0
      nl80211: sta_remove -> DEL_STATION wlan0 78:62:56:c1:26:31 --> 0 (Success)
      ap_free_sta: cancel ap_handle_timer for 78:62:56:c1:26:31
      nl80211: Event message available
      nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
      nl80211: Delete station 78:62:56:c1:26:31
      wlan0: Event DISASSOC (1) received
      wlan0: STA 78:62:56:c1:26:31 IEEE 802.11: disassociated
      Disassociation notification for unknown STA 78:62:56:c1:26:31
      1
    • C

      V853的NPURuntime有资料提供吗
      V Series • Posted at • caochenxin

      0 Votes
      1 Replies
      872 Views

      YuzukiTsuru Replied at

      【资料】V853 NPU 相关手册
      https://bbs.aw-ol.com/topic/2328/share/1

      1
    • M

      linux-sunxi.org访问不了了?
      Linux • Posted at • mycmos

      0 Votes
      1 Replies
      971 Views

      M Replied at

      现在好了,可以访问了。

      1
    • YuzukiTsuru

      H616 Tina 适配Qt
      H/F/TV Series • Posted at • 柚木 鉉

      1 Votes
      1 Replies
      1938 Views

      K Replied at

      @yuzukitsuru 你支持H616的tina,在哪里下载的阿?

      1
    • N

      V833 H264 CODEC
      其它全志芯片讨论区 • v833 • Posted at • nimadibaj

      0 Votes
      1 Replies
      949 Views

      YuzukiTsuru Replied at

      @nimadibaj 以数据手册为准

      1
    • L

      H616基于SD卡怎么启动
      H/F/TV Series • Posted at • leohua

      0 Votes
      1 Replies
      1446 Views

      Y Replied at

      @leohua 哪里拿到的代码?如果使用全志的代码编译出来的固件是有工具做SD卡启动卡的 工具名称 :PhonenixCrad-v4.2.3,如果是orangepi 他们有专门的dd命令做卡。

      1
    • C

      能通过sample_venc只编码一帧YUV成jpeg么
      V Series • Posted at • cruise33

      1 Votes
      1 Replies
      1223 Views

      C Replied at

      有没有只编一帧YUV成jpeg的demo啊😲

      1
    • q1215200171

      【FAQ】全志V853芯片 Tina SDK LCD小分辨率DCLK设置问题
      其它全志芯片讨论区 • v853 faq 技术支持 • Posted at • budbool

      2 Votes
      1 Replies
      2167 Views

      D Replied at

      @q1215200171 赞,学习学习。

      1
    • M

      T507buildroot编译时配置host-libxml-parser-perl 2.44失败
      Linux • buildroot t507 • Posted at • migu_

      0 Votes
      1 Replies
      1035 Views

      X Replied at

      @migu_ 大佬,虽然你这个我不知道
      但是还是想请教一下,编译ubuntu后,烧写成功后,板子依旧进入的是forlink桌面,没有进入到ubuntu

      1
    • M

      同一个固件,同一个板子,左边NAND FLASH有一个bad block,就炸了,是不是因为坏块在rootfs分区?
      MR Series • nand • Posted at • memory

      0 Votes
      1 Replies
      851 Views

      YuzukiTsuru Replied at

      是,rootfs挂了

      1
    • Y

      d1s 有csi外设配置的参考文档吗?
      MR Series • Posted at • yuwei

      0 Votes
      1 Replies
      947 Views

      YuzukiTsuru Replied at

      d1s没有mipi csi,只有mipi csi的文档

      1
    • Y

      芒果派麻雀T113如何把控制台信息打印到屏幕上?按照教程无法找到VGA text console这个选项
      MR Series • Posted at • yunchawaishi

      0 Votes
      1 Replies
      1190 Views

      X Replied at

      @yunchawaishi 看 Depends on: ... VGA_CONSOLE 这个,[=n] 就是没打开,要先打开才显示选项

      1
    • M

      RTL8723bu模块AP模式的问题
      Linux • Posted at • MasterLu

      0 Votes
      1 Replies
      1452 Views

      M Replied at

      @masterlu 目前发现单独编译出来的8723bu.ko文件安装上去能够正常使用ap,整体编译内核输出在output/lib/modules/3.10.65下的8723bu.ko文件无法使用ap,会报No WPA/RSN IE from STA的错误。

      1
    • livpo

      在MQ-R(F133)上 进行全志Melis-4.0(rt-thread内核)环境搭建与初步编译介绍
      MR Series • Posted at • livpo

      0 Votes
      1 Replies
      1485 Views

      S Replied at

      @livpo 已经编译成功,但是usb键盘没有反应,触摸屏也没反应。这个sdk默认支持的是什么输入,或是可以支持什么输入~

      1

    精华推荐

    • 【水经验混下载权限专用贴】如何升级LV2拉取SDK
    • T113/D1-H (MQ-Pro)驱动 OV5640 摄像头(内含驱动源码)
    • 全志在线开源芯片 新 SDK 平台下载方法汇总
    • 新 SDK 平台下载 D1-H/D1s SDK
    • 新 SDK 平台下载 V853 SDK
    • 新 SDK 平台下载 R329 SDK
    • 新 SDK 平台下载 MR813 SDK
    • 新 SDK 平台下载 XR806 SDK
    • D1s 哪吒开发板,电阻屏的配置方法
    • V85x E907 小核开发与使用
    • [哪吒开发板]Tina Linux SPI主从通信验证实录
    • T113-S3入门资料汇总(避坑指南)一
    • 【加精】D1 tina Docker 编译环境制作和使用
    • Tina Linux 存储介质切换:eMMC,SPI NAND,SPI NOR,SD Card,SD NAND
    • 【资料】V853&&V851 硬件参考设计
    换一批

    随便看看

    • h616sunxi-fel测试uboot出现连接超时
    • 百问网t113 sdk,wifimanager-v2.0配网教程
    • V853工作温度是多少啊?
    • 开发板购买
    • 鸿蒙OS下 XR806 I2C操作
    • F133-A/D1S芒果派MQ-R在tina-sdk2.0下无法识别电阻触摸屏
    • R128 mad 能否实时读取音频能量大小
    • PLIC在写入complete寄存器后立马会触发下一次中断
    • 在D1-H上跑用Rust重新实现的FreeRTOS
    • T3 SPI转CAM-mcp2525发送一帧数据中断一直拉低问题
    • T113 USB设计问题
    • f1c200s tina 驱动里面加了几行炸了 ...
    • 如何在D1s Tina linux 环境下使用lvgl创建独立应用程序UI
    • xfel烧录到t113的0x20000sram失败是怎么回事
    • 【分析笔记】全志平台 gpio_wdt 驱动应用和 stack crash 解决
    • 1
    • 2
    • 30
    • 31
    • 32
    • 33
    • 34
    • 60
    • 61
    • 32 / 61

    精华推荐

    • 【水经验混下载权限专用贴】如何升级LV2拉取SDK
    • T113/D1-H (MQ-Pro)驱动 OV5640 摄像头(内含驱动源码)
    • 全志在线开源芯片 新 SDK 平台下载方法汇总
    • 新 SDK 平台下载 D1-H/D1s SDK
    • 新 SDK 平台下载 V853 SDK
    • 新 SDK 平台下载 R329 SDK
    • 新 SDK 平台下载 MR813 SDK
    • 新 SDK 平台下载 XR806 SDK
    • D1s 哪吒开发板,电阻屏的配置方法
    • V85x E907 小核开发与使用
    • [哪吒开发板]Tina Linux SPI主从通信验证实录
    • T113-S3入门资料汇总(避坑指南)一
    • 【加精】D1 tina Docker 编译环境制作和使用
    • Tina Linux 存储介质切换:eMMC,SPI NAND,SPI NOR,SD Card,SD NAND
    • 【资料】V853&&V851 硬件参考设计
    换一批

    随便看看

    • h616sunxi-fel测试uboot出现连接超时
    • 百问网t113 sdk,wifimanager-v2.0配网教程
    • V853工作温度是多少啊?
    • 开发板购买
    • 鸿蒙OS下 XR806 I2C操作
    • F133-A/D1S芒果派MQ-R在tina-sdk2.0下无法识别电阻触摸屏
    • R128 mad 能否实时读取音频能量大小
    • PLIC在写入complete寄存器后立马会触发下一次中断
    • 在D1-H上跑用Rust重新实现的FreeRTOS
    • T3 SPI转CAM-mcp2525发送一帧数据中断一直拉低问题
    • T113 USB设计问题
    • f1c200s tina 驱动里面加了几行炸了 ...
    • 如何在D1s Tina linux 环境下使用lvgl创建独立应用程序UI
    • xfel烧录到t113的0x20000sram失败是怎么回事
    • 【分析笔记】全志平台 gpio_wdt 驱动应用和 stack crash 解决