Navigation

    Kendryte Logo

    KENDRYTE

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Groups
    1. Home
    2. Recent
    • All categories
    • Announcements
    • K210 Creativity
    • General Discussion
    • SDK
    • IDE
    • HDK
    • Bug Report / Bug 上报
    •      IDE Issue
    •      SDK Issue
    •      Toolchains Issue
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics

    • H

      Help me,Who can give me a detailed instruction
      General Discussion • help instruction mewho detailed • • hbdlmjw

      1
      0
      Votes
      1
      Posts
      41
      Views

      No one has replied

    • R

      Datasheet with register definitions?
      General Discussion • datasheet register definitions • • raykj

      27
      2
      Votes
      27
      Posts
      7473
      Views

      U

      @latyas @nathan After responding here and writing two emails to salesai@canaan-creative.com, as far back as 16 days ago, I've heard nothing back from anyone. This is poor support. I would be grateful if someone would reach out to me either here or at b2b@humanenginuity.com with register documentation for the K210, something which @MangoGeek has stated they already have. Thank you in advance for your help, U007D
    • A

      boot failed with exit code 233
      General Discussion • failed boot code exit 233 • • audioman

      2
      0
      Votes
      2
      Posts
      94
      Views

      N

      @audioman Which board are you using? You can try to reset the board while pulling IO16 low to enter ISP manually. Then try again with K-Flash.
    • W

      kendryte IDE 怎样设置C++ 标准库?
      IDE • kendryte ide 怎样设置c 标准库? • • wingwu

      1
      0
      Votes
      1
      Posts
      109
      Views

      No one has replied

    • M

      K210 Bluetooth Support
      General Discussion • k210 support bluetooth • • MyAmigo

      1
      0
      Votes
      1
      Posts
      68
      Views

      No one has replied

    • M

      Unsolved freeRTOS i2c read problem
      SDK Issue • freertos problem i2c read • • micro-pi.ru

      2
      0
      Votes
      2
      Posts
      101
      Views

      M

      I figured it out myself: #include <FreeRTOS.h> #include <devices.h> #include <fpioa.h> #include <pin_cfg.h> #include <stdio.h> #include <task.h> #define SDA (31) #define SCL (30) #define DEVICE_ADDRESS 0x68 void vI2cTaskCore1(void *arg) { const TickType_t xFrequency = 1000; TickType_t xLastWakeTime; /* Initialise the xLastWakeTime variable with the current time. */ xLastWakeTime = xTaskGetTickCount(); handle_t i2c0 = io_open("/dev/i2c0"); uint8_t sda = SDA; uint8_t scl = SCL; fpioa_set_function(sda, FUNC_I2C0_SDA); fpioa_set_function(scl, FUNC_I2C0_SCLK); uint8_t writeBuffer[2]; uint8_t readBuffer[2]; handle_t device= i2c_get_device(i2c0, DEVICE_ADDRESS, 7); while (1) { writeBuffer[0] = 0x01; /* Register */ io_write(device, writeBuffer, 1); io_read(device, readBuffer, 2); printf("Values %d, %d\r\n", readBuffer[0], readBuffer[1]); /* Wait for the next cycle. */ vTaskDelayUntil(&xLastWakeTime, pdMS_TO_TICKS(xFrequency)); } } int main() { BaseType_t xReturn; xReturn = xTaskCreateAtProcessor(CORE_1, &vI2cTaskCore1, "vI2cTaskCore1", 512, NULL, 2, NULL); if (xReturn != pdPASS) { printf("Task %s run problem\r\n", "vI2cTaskCore1"); } for (;;) { } }
    • Kendryte K210 debugging on Mac
      SDK • k210 kendryte mac debugging • • Carl van Heezik

      2
      0
      Votes
      2
      Posts
      134
      Views

      You can look at my blog for more info about K210 development on the Mac.
    • D

      windows IDE启动失败报错
      IDE • windows ide启动失败报错 • • davion

      1
      0
      Votes
      1
      Posts
      162
      Views

      No one has replied

    • L

      GPIO and GPIOHS - how fast are they really?
      SDK • gpiohs are gpio fast really • • laubzega

      1
      0
      Votes
      1
      Posts
      104
      Views

      No one has replied

    • M

      K210 ISP Programming
      HDK • k210 isp programming • • mark

      1
      0
      Votes
      1
      Posts
      143
      Views

      No one has replied

    • L

      Why is this "atomic_read" and "atomic_write" only use "volatile" in SDK
      SDK • sdk why atomicread atomicwrite volatile • • lizhirui

      1
      0
      Votes
      1
      Posts
      98
      Views

      No one has replied

    • L

      some question about kendryte.ld in SDK
      SDK • sdk question kendryte.ld • • lizhirui

      1
      0
      Votes
      1
      Posts
      72
      Views

      No one has replied

    • Y

      Voice recognition may not work (voice_control_led_en)
      IDE • voice recognition may • • yochan

      1
      0
      Votes
      1
      Posts
      103
      Views

      No one has replied

    • I

      外接USB芯片支持UVC视频输出
      General Discussion • • itsxm

      2
      0
      Votes
      2
      Posts
      200
      Views

      F

      @itsxm 好像没有
    • M

      Is anyone interested in collaborating to develop OTA capability?
      General Discussion • anyone interested collaborating develop ota • • MyAmigo

      3
      0
      Votes
      3
      Posts
      354
      Views

      M

      @loboris that's great! I'm looking forward to what you've put together.
    • N

      K210 Over-the-Air or In-App-Programming (Flashing) Example?
      General Discussion • k210 example over-the-air flashing • • northerntrend

      4
      0
      Votes
      4
      Posts
      1136
      Views

      N

      Just a quick update for anyone looking for OTA/IAP information: @loboris is working on a second stage bootloader that will support OTA and other firmware boot sources. Check out his post over here: https://forum.kendryte.com/topic/409/is-anyone-interested-in-collaborating-to-develop-ota-capability
    • Y

      the good and bad of k210 in my view
      General Discussion • k210 bad view • • yan211

      1
      0
      Votes
      1
      Posts
      171
      Views

      No one has replied

    • L

      谁能传上来一份RISCV特权指令集1.9版本的手册?
      K210 Creativity • • lizhirui

      6
      0
      Votes
      6
      Posts
      662
      Views

      L

      @loboris oh thanks
    • Z

      Can the K210 support softmax processing to classify objects and output the probability of response?
      General Discussion • k210 support softmax processing classify • • zhang

      1
      0
      Votes
      1
      Posts
      118
      Views

      No one has replied

    • S

      如何修改DVP的DMA大小端
      General Discussion • 如何修改dvp的dma大小端 • • scat02

      1
      0
      Votes
      1
      Posts
      195
      Views

      No one has replied