Skip to content

Commit

Permalink
added CDC examples
Browse files Browse the repository at this point in the history
  • Loading branch information
nvitya committed Nov 20, 2021
1 parent b52efd5 commit 2e826ad
Show file tree
Hide file tree
Showing 28 changed files with 2,497 additions and 0 deletions.
139 changes: 139 additions & 0 deletions usb_cdc_echo/.cproject

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions usb_cdc_echo/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/BOARD_MIBO64_ATSAM4S/
/.settings/
34 changes: 34 additions & 0 deletions usb_cdc_echo/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>usb_cdc_echo</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
<triggers>clean,full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.cdt.core.cnature</nature>
<nature>org.eclipse.cdt.core.ccnature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
</natures>
<linkedResources>
<link>
<name>vihal</name>
<type>2</type>
<locationURI>$%7BPARENT-1-PROJECT_LOC%7D/vihal</locationURI>
</link>
</linkedResources>
</projectDescription>
15 changes: 15 additions & 0 deletions usb_cdc_echo/src/board.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/*
* file: board.h
* brief: Board / MCU definition
* created: 2021-11-18
* authors: nvitya
* notes:
* the platform.h includes this very early, it must at least define the used MCU
*/

#ifndef BOARD_H_
#define BOARD_H_

#include "boards_builtin.h"

#endif /* BOARD_H_ */
Loading

0 comments on commit 2e826ad

Please sign in to comment.