Navigation

    全志在线开发者论坛

    • Register
    • Login
    • Search
    • Categories
    • Tags
    • 在线文档
    • 社区主页
    1. Home
    2. mstempin
    M
    • Profile
    • Following 2
    • Followers 0
    • my integral 920
    • Topics 1
    • Posts 21
    • Best 1
    • Groups 0

    mstempinLV 4

    @mstempin

    920
    integral
    2
    Reputation
    13
    Profile views
    21
    Posts
    0
    Followers
    2
    Following
    Joined Last Online

    mstempin Unfollow Follow

    Best posts made by mstempin

    • Reply: 全志引脚计算器 AllwinnerPin 小工具发布

      Here is a Shell version, no dependency:
      这是一个 Shell 版本,没有依赖关系:

      #!/bin/bash
      
      # Convert argument to uppercase
      arg=${1^^}
      
      if [[ "$arg" =~ ^[0-9]+$ ]]; then
      
          # Argument is numeric, each port is 32-bit wide
          let port_base=$arg/32
      
          # Convert port number to ASCII code ('A' is 65)
          let port=$port_base+65
          let bit=$arg%32
          printf "P%b%d\n" $(printf '\x%x\n' $port 2>/dev/null) $bit
      elif [[ "$arg" =~ ^P[A-Z][0-9]+$ ]]; then
      
          # Argument is a pin name, convert port name to number ('A' is 65)
          let port=$(printf "%d" "'${arg:1:1}")-65
      
          # Each port is 32-bit wide
          let port_base=$port*32
          let gpio=port_base+${arg:2}
          echo $gpio
      else
          >&2 echo "wrong argument"
      fi
      
      
      posted in 其它全志芯片讨论区
      M
      mstempin

    Latest posts made by mstempin

    • 用于 V3s/S3 芯片的 Tina Linux

      是否有用于 V3s/S3 芯片的 Tina Linux 版本?

      posted in 其它全志芯片讨论区
      M
      mstempin
    • Reply: 【资料汇总】V853资料汇总

      请问有人有V851S的引脚吗?

      posted in V Series
      M
      mstempin
    • Reply: 【开源】Yuzukilizard 基于 V851s 的迷你 AI 视觉开发板

      我在github上找不到

      posted in V Series
      M
      mstempin
    • Reply: 看图猜板,猜对的同学可以免费获得!

      @q1215200171 谢谢!!

      posted in V Series
      M
      mstempin
    • Reply: 看图猜板,猜对的同学可以免费获得!

      @xiaowenge 在 看图猜板,猜对的同学可以免费获得! 中说:

      看样子是QFN封装的片子吧
      V853是BGA的
      (by the way 还有个V851/V851S是QFN的
      78ef2467-6718-4ad7-9e8a-fafa041ae638-image.png

      可以分享一下 V851s 的文档吗?

      posted in V Series
      M
      mstempin
    • Reply: 有块V3s板子烧录时候检测不到DDR,即使一直插着电,V3s也不发热,冷冰冰的,是不是V3s坏了呢?

      似乎 SRAM 之前还有另一个问题:看起来 PMU 不工作,这可以解释为什么 DRAM 在没有电源的情况下不工作。

      posted in 其它全志芯片讨论区
      M
      mstempin
    • Reply: T113 Tina SDK、Longan SDK、开发资料下载

      @wxid_disxysjskla
      我没有百度,请问可以把它放在中国大陆以外的地方吗?

      posted in 其它全志芯片讨论区
      M
      mstempin
    • Reply: 麻雀 MQ-Dual (双核A7版本内置128M运存) ,准备测试

      有关 Aliexpress 上 MQ Dual 可用性的任何消息?

      posted in 其它全志芯片讨论区
      M
      mstempin
    • Reply: 全志引脚计算器 AllwinnerPin 小工具发布

      @miaoguoqiang 垃圾进垃圾出 ;-)
      很难检查边界,因为它们依赖于 SoC。

      posted in 其它全志芯片讨论区
      M
      mstempin
    • Reply: 麻雀 MQ-Dual (双核A7版本内置128M运存) ,准备测试

      @xiaowenge
      是的!淘宝买不到

      posted in 其它全志芯片讨论区
      M
      mstempin