导航

    全志在线开发者论坛

    • 注册
    • 登录
    • 搜索
    • 版块
    • 话题
    • 在线文档
    • 社区主页
    1. 主页
    2. cruise33
    C
    • 资料
    • 关注 0
    • 粉丝 2
    • 我的积分 4300
    • 主题 34
    • 帖子 77
    • 最佳 3
    • 群组 0

    cruise33LV 6

    @cruise33

    4300
    积分
    3
    声望
    23
    资料浏览
    77
    帖子
    2
    粉丝
    0
    关注
    注册时间 最后登录

    cruise33 取消关注 关注

    cruise33 发布的最佳帖子

    • 能通过sample_venc只编码一帧YUV成jpeg么

      大神们,能通过sample_venc只编码一帧YUV成jpeg么,conf文件应该怎么配?

      发布在 V Series
      C
      cruise33
    • 回复: 能在uboot阶段初始化pwm么?

      @lijinlin001 uboot的dts当时没太留意,功能开启是在uboot/common/main.c里配置的,大概是这样:

      #include <pwm.h>
      
      void pwm_init(void)
      {
      	int pwm1;
      	pwm1 = pwm_request(1, "pwm1");
          	pwm_config(pwm1, 500000, 500000);
          	pwm_set_polarity(pwm1, PWM_POLARITY_INVERSED);
          	pwm_enable(pwm1);
      }
      

      具体的接口函数用法看uboot的pwm.h

      发布在 其它全志芯片讨论区
      C
      cruise33
    • 回复: 能通过sample_venc只编码一帧YUV成jpeg么

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

      发布在 V Series
      C
      cruise33

    cruise33 发布的最新帖子

    • NBG version报错

      d02c9de0-5c1e-4673-a9fe-f1a5499d0116-image.png

      在v853 1.0版本的sdk生成的固件,加载模型报这个错误,是sdk版本低的问题吗?请问怎么解决 ?

      发布在 V Series
      C
      cruise33
    • 回复: 请教下rt-media的切换彩色/黑白模式

      这样就可以了

      int ISP_RGB_GREY(int chnID, int Grey)
      {
      	RTIspCtrlAttr isp_ctrl_attr;
      	if(Grey == 0){
      		isp_ctrl_attr.isp_attr_cfg.cfg_id = RT_ISP_CTRL_IR_STATUS;
      		isp_ctrl_attr.isp_attr_cfg.ir_status = 0;
      	}
      	else{
      		isp_ctrl_attr.isp_attr_cfg.cfg_id = RT_ISP_CTRL_IR_STATUS;
      		isp_ctrl_attr.isp_attr_cfg.ir_status = 1;
      	}
      	AWVideoInput_SetIspAttrCfg(chnID, &isp_ctrl_attr);
      	usleep(500*1000);
      	return 0;
      }
      
      发布在 V Series
      C
      cruise33
    • 请教下rt-media的切换彩色/黑白模式

      通过调用 AWVideoInput_SetIrParam 函数来切换黑白模式是正常的,但是再切回彩色模式,却不起作用,yuv仍然是黑白的,请问是哪里的问题呢?我看demo_video_in.c也是这么用的

      	/* 切换 彩色/黑白 模式 */
      	static RTIrParam pIrParam = {0};
      	if(res.faces->isLive == 0){
      		if(pIrParam.grey == 0){
      			printf("set IR\n");
      			pIrParam.grey = 1;
      			pIrParam.ir_on = 1;
      			pIrParam.ir_flash_on = 1;
      			int ret = AWVideoInput_SetIrParam(config->channelId, &pIrParam);
      			if(ret < 0)
      				printf("set IR error\n");
      		}
      	}else{
      		if(pIrParam.grey == 1 && frame_cnt == 50){
      			printf("set RGB\n");
      			pIrParam.grey = 0;
      			pIrParam.ir_on = 0;
      			pIrParam.ir_flash_on = 0;
      			int ret = AWVideoInput_SetIrParam(config->channelId, &pIrParam);
      			if(ret < 0)
      				printf("set RGB error\n");
      		}
      	}
      
      发布在 V Series
      C
      cruise33
    • 请问有配置QSPI屏幕相关配置教程么

      有个圆屏通过QSPI来通信的,请问有相关的配置教程么,看LCD开发指南,只有RGB接口、MIPI-DSI接口、I8080接口、LVDS接口

      发布在 V Series
      C
      cruise33
    • 请问V853的ai-sdk在哪下载?

      如题
      b68e15c1-51ac-48e3-9539-59629e458df2-image.png
      用的最新V1.2的SDK,但没找到这个ai-sdk

      发布在 V Series
      C
      cruise33
    • 请问v853有没自动进入烧录的功能

      用V831的时候,可以在sys_config.fex增加auto_fel = 1,用PhoenixSuit烧录时,插上USB就会弹出是否更新的提示, 用PhoenixUSBPro插上就能自动烧录,853好像不行了?

      发布在 V Series
      C
      cruise33
    • 请教下v831有加大音量的软件增益功能吗

      我看851上有AW_MPI_AO_SetSoftVolume的函数,可以通过软件增益加大音量的输出。但是在831上找不到这个接口,请问有类似的方法或加大音量的其他软件方式么。

      发布在 其它全志芯片讨论区
      C
      cruise33
    • 回复: 请教下v85x量产卡的问题

      f346082a-7550-4f94-9752-b144cc552af8-1704347226761.png

      卡烧录需要在uboot阶段完成,但是快启流程是BROM-BOOT0-Kernel,跳过了uboot阶段,所以USB烧录的时候需要通过物理的方式进入烧录,但卡烧录用同样的方式也不能进入烧录,所以要怎样操作呢?

      发布在 V Series
      C
      cruise33
    • 请教下v85x量产卡的问题

      SDK配置完sdc0相关,板子起来后能正常识别和挂载TF卡,但为啥用量产卡却不能卡烧录呢?直接进系统了,大神们能提供些debug的思路吗

      发布在 V Series
      C
      cruise33
    • 有V85x量化int16精度比较好的参数组合么

      如题

      我这有份参数精度一般的

      pegasus quantize --model 'xxx.json' --model-data 'xxx.data' --model-quantize 'xxx.quantize' --batch-size 1 --iterations 216 --with-input-meta 'xxx_inputmeta.yml' --quantizer 'dynamic_fixed_point' --qtype 'int16' --rebuild --algorithm 'kl_divergence' --divergence-first-quantize-bits 4  --compute-entropy
      
      发布在 V Series
      C
      cruise33