npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ml-mt7687-config

v3.3.8

Published

The mt7687 config package for Microlattice.js

Downloads

6

Readme

如何創建 Microlattice.js for MT7687 專案

windows 開發者必做幾個項目

update-core
  • 安裝 uzip 和 make
pacman -S tar unzip
pacman -S make
pacman -S git
pacman -S wget

Linux/Mac 開發者直接進行以下項目

步驟

  • 請先具備好 Node.js (0.10.32 ~ 4.2.2)環境
  • npm install microlattice -g
  • 創建一個新的資料夾並進去: mkdir testSDK && cd testSDK
  • ml create
  • 編輯 featureConfig.json:
{
  "IC_CONFIG": "mt7687",
  "BOARD_CONFIG": "mt7687_hdk"
}
  • npm install ml-mt7687-config --save
  • ml init:mt7687
  • npm i

至 MTK 官網下載 SDK

  • 請先去下載 3.3.1 SDK : 點我
  • 把下載好的 LinkIt_SDK_V3.3.1_public.tar.gz,放入此專案的 ./sdk folder 之中
  • (windows 使用者請多做此步驟) 至此 下載 gcc 並把檔案改名為 gcc-arm-none-eabi.zip 並丟到 ./sdk
  • copy cache file : cp ./node_modules/ml-mt7687-config/templates/v3.3.1_out.zip ./sdk (注意 v3.3.1 記得改為您的 sdk version)
  • npm run installEnv
  • (windows 使用者請多做此步驟) 至 ./sdk 把 gcc-arm-none-eabi.zip 底下四個資料夾強制覆蓋 ./sdk/tools/gcc/gcc-arm-none-eabi/ 下的四個資料夾,若發生當案衝突請將原來四個資料夾全刪除再覆蓋.
  • (windows 使用者請多做此步驟) 請安裝這個 mbed driver
  • (windows 使用者請多做此步驟) 至 project 根目錄輸入 ./windows.sh

完成環境安裝後,來啟動 Hello world 吧!

  • 編輯 index.js 中的內容為下:
print('Hello world!');
  • 接下來,把 7687 與您的電腦連接,再輸入: npm run build
  • 過一會即可以看到 Hello world !
  • ps. 若出現一些錯誤請再做一次 npm run build 即可。