1 Star 0 Fork 9

kiwi995868145 / KiCadOpenSourceProjectCollection

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
dvk-mx8m-bsb @ 84337f3
Loading...
README
MIT

KiCadOpenSourceProjectCollection

介绍

KiCad 开源项目合集

软件架构

本仓库使用 git submodule 方式收集 KiCad 开源项目合集

安装教程

  1. 克隆本仓库
git clone https://gitee.com/KiCAD-CN/KiCadOpenSourceProjectCollection.git
  1. 使用子模块仓库
// 初始化子模块仓库
git submodule init 

// 更新子模块仓库
git submodule update

或:

// 初始化和更新子模块仓库组合命令
git submodule update --init --recursive

使用说明

  1. dvk-mx8m-bsb 仓库地址:https://source.puri.sm/Librem5/dvk-mx8m-bsb

dvk-mx8m-bsb

Librem 5 Developer Kit using EmCraft's i.MX 8M System-on-Module.

KiCad v5.0.0 has been used to create this design.

License

dvk-mx8m-bsb is licensed under the GNU GPLv3+.

  1. usbarmory 仓库地址:https://github.com/f-secure-foundry/usbarmory/

usbarmory

Introduction

USB armory | https://github.com/f-secure-foundry/usbarmory
Copyright (c) F-Secure Corporation

The USB armory from F-Secure Foundry is an open source hardware design, implementing a flash drive sized computer.

This repository is aimed towards developers, if you wish to purchase a USB armory board please see the USB armory project page.

Authors

Andrea Barisani
andrea.barisani@f-secure.com | andrea@inversepath.com

Andrej Rosano
andrej.rosano@f-secure.com | andrej@inversepath.com

Daniele Bianco
daniele.bianco@f-secure.com | daniele@inversepath.com

Documentation

The main documentation can be found on the project wiki.

Board revisions

Mk II Top Mk II Bottom

  • USB armory Mk I: first production release.

USB armory Mk I

License

USB armory | https://github.com/f-secure-foundry/usbarmory
Copyright (c) F-Secure Corporation

This is an open hardware design licensed under the terms of the CERN Open Hardware Licence (OHL) v1.2.

You may redistribute and modify this documentation under the terms of the CERN OHL v.1.2 (http://ohwr.org/cernohl). This documentation is distributed WITHOUT ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING OF MERCHANTABILITY, SATISFACTORY QUALITY AND FITNESS FOR A PARTICULAR PURPOSE. Please see the CERN OHL v.1.2 for applicable conditions.

  1. H7PI 仓库地址:https://gitee.com/htctek/H7PI

H7PI

简介

H7PI基于STM32H750VBT6, 设计初衷是为了做一个通用平台,在这个设计上,按照一个场景一个 应用的模式扩展出其他扩展功能,同时实现如代码复用一般的硬件复用。板载8M QSPI Flash程序空间,8M SPI Flasn文件空间,支持扩展SD卡,支持扩展LCD.参考说明

KiCad v5.1.5 has been used to create this design.

H7PI

license

H7PI is licensed under the BSD 3-Clause.

  1. ESP32PI 仓库地址:https://gitee.com/htctek/ESP32PI

H7PI

简介

ESP32PI基于ESP32-PICO-D4, 为快速开发wifi,ble应用提供方案验证的可能

  • 板载CP2102,可通过USB转串口直接更新固件,无需手动按按键
  • 板载Micro SD Card接口,扩展文件系统
  • 板载天线,可直接链接WiFi和蓝牙,无需额外购买天线
  • 板载PSRAM,增加应用内存空间
  • 所有IO引出,方便复用,可扩展多种功能 参考说明

KiCad v5.1.5 has been used to create this design.

ESP32PI

license

ESP32PI is licensed under the BSD 3-Clause.

参与贡献

  1. Fork 本仓库

  2. 新建 Feat_xxx 分支

  3. 添加新的子模块仓库

// `URL` 为子模块的路径,`PATH` 为该子模块存储的目录路径
git submodule add [URL] [PATH]

例如:

// 仓库后缀的 `.git` 可加可不加
git submodule add https://source.puri.sm/Librem5/dvk-mx8m-bsb
  1. 从子模块的远端仓库更新并合并到本仓库
// 从子模块远端仓库更新并合并
git submodule update --remote --merge
  1. 提交子模块的更改
// 提交修改
// -s : 在提交日志消息的末尾添加提交人签名行。
// 签约的含义取决于项目,但它通常证明提交者有权在相同的许可证下提交此作品,
// 并同意开发者原产地证书(有关更多信息,请参阅 http://developercertificate.org/)

git commit -sa 

修改本仓库的 README 自述文件,增加对新增子模块仓库的描述。

// 使用文本编辑器编辑 `README.md`, 如:
// vim notepad gedit notepad++ nano emacs ...
vim README.md
// vim 批量处理 markdown(md) 语法引用操作 >
// 在 vim 编辑界面下,如给 usbarmory 批量添加引用符号 >
// : 编辑模式 54 开始行号 110 结束行号 s 搜索 ^ 行首 > 替换内容 g 替换
:54,110 s/^/> /g
// 修改完后记得保存退出,并清理文本编辑的缓存文件。
// 或者将缓存文件的格式添加到 `.gitignore` 文件中。


// 提交 README.md 修改 
git commit -am "此次修改的描述"
// 例如:
git commit -am "Add dvk-mx8m-bsb"
git commit -am "新增 dvk-mx8m-bsb"
git commit -am "Update dvk-mx8m-bsb"
git commit -am "更新 dvk-mx8m-bsb"
git commit -am "Delete dvk-mx8m-bsb"
git commit -am "删除 dvk-mx8m-bsb"

推送到自己的仓库

git push 
  1. 新建 Pull Request

码云特技

  1. 使用 Readme_XXX.md 来支持不同的语言,例如 Readme_en.md, Readme_zh.md
  2. 码云官方博客 blog.gitee.com
  3. 你可以 https://gitee.com/explore 这个地址来了解码云上的优秀开源项目
  4. GVP 全称是码云最有价值开源项目,是码云综合评定出的优秀开源项目
  5. 码云官方提供的使用手册 https://gitee.com/help
  6. 码云封面人物是一档用来展示码云会员风采的栏目 https://gitee.com/gitee-stars/
MIT License Copyright (c) 2019 taotieren Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

KiCad 开源项目合集 展开 收起
其他
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
其他
1
https://gitee.com/kiwigiteehome/KiCadOpenSourceProjectCollection.git
git@gitee.com:kiwigiteehome/KiCadOpenSourceProjectCollection.git
kiwigiteehome
KiCadOpenSourceProjectCollection
KiCadOpenSourceProjectCollection
master

搜索帮助