Difference between revisions of "Projets:Perso:2013:PlatineAvrUSB"
From Electrolab
(→Schemas et Typons) |
|||
(10 intermediate revisions by one user not shown) | |||
Line 18: | Line 18: | ||
Le projet Avr Usb permet de créer des périphériques USB a partir d'un microcontrolleur AVR. Il est aussi possible de faire tourner le firware sur un arduino. | Le projet Avr Usb permet de créer des périphériques USB a partir d'un microcontrolleur AVR. Il est aussi possible de faire tourner le firware sur un arduino. | ||
Documentation sur [[http://www.obdev.at/products/vusb/index.html]] | Documentation sur [[http://www.obdev.at/products/vusb/index.html]] | ||
− | + | ==Hardware== | |
− | ==Solution choisie== | + | ===Solution choisie=== |
J'ai opté pour le montage qui utilise des diodes Zener a l'envers pour abaisser la tension du bus usb a 3.3v. | J'ai opté pour le montage qui utilise des diodes Zener a l'envers pour abaisser la tension du bus usb a 3.3v. | ||
+ | {{Quote box | ||
+ | |quote = Instead of reducing the AVR's power supply, we can limit the output voltage on D+ and D- with Zener diodes. We recommend 3.6 V low power types, those that look like 1N4148 (usually 500 mW or less). Low power types are required because they have less capacitance and thus cause less distortion on the data lines. And 3.6 V is better than 3.3 V because 3.3 V diodes yield only ca. 2.7 V in conjunction with an 1.5 kΩ (or more exactly 10 kΩ) pull-up resistor. With 3.3 V diodes, the device may not be detected reliably. | ||
+ | |source = [[http://vusb.wikidot.com/hardware]] | ||
+ | |quoted = 1 | ||
+ | }} | ||
− | |||
− | + | Il vous faut deux diodes zener 3.6v 0.5W | |
− | + | Le microC est un ATMEGA328P (ou PU). | |
+ | ===Schemas et Typons=== | ||
+ | Le schemas et les typons ont été réalisés avec Kicad et Inkscape | ||
+ | |||
+ | [[File:Avrusbproto.PNG|400px|thumb|center|Schema du montage]] | ||
[[File:AvrusbprotoKicad.jpg|400px|thumb|center|PCB sous kicad]] | [[File:AvrusbprotoKicad.jpg|400px|thumb|center|PCB sous kicad]] | ||
+ | |||
+ | [[File:AVRUSB_1.5_Typons.svg|400px|thumb|center|Typons top et bottom]] | ||
+ | |||
+ | ==Firmware== | ||
+ | |||
+ | Pour [http://www.obdev.at/products/vusb/download.html télécharger la dernière version] du Firmware v-usb. | ||
+ | Si vous voulez utiliser un Crystal a 20Mhz vous devez prendre une des versions les plus récentes. | ||
+ | |||
+ | !!Todo!! | ||
+ | #Ajouter les liens vers un firmware propre (souris qui gigotte) | ||
+ | |||
+ | A changer dans le main afin que les ports utilisés soient les bons: | ||
+ | <blockquote> | ||
+ | |||
+ | #define LED_PORT_DDR DDRB | ||
+ | #define LED_PORT_OUTPUT PORTB | ||
+ | |||
+ | #define PWM_PORT_OUTPUT PORTD | ||
+ | #define PWM_PORT_DDR DDRD | ||
+ | |||
+ | #define ONBOARDLED_BIT 5 | ||
+ | |||
+ | #define LEDRED_BIT 4 | ||
+ | #define LEDGREEN_BIT 2 | ||
+ | #define LEDBLUE_BIT 3 | ||
+ | |||
+ | #define LEDRED_PWM 5 | ||
+ | #define LEDGREEN_PWM 6 | ||
+ | #define LEDBLUE_PWM 3 | ||
+ | </blockquote> |
Latest revision as of 17:26, 9 April 2013
Platine de test AVRUSB | |
---|---|
Auteur | Jnat |
Date de proposition | 20/02/2012 |
Tags du projet | usbhid; |
Lieu d'utilisation final | @Work/Home |
Utilisateur final | Tout le monde |
Type de projet
Projet personnel de Jnat |
|
Platine AVRUSB
Vue d'ensemble
Le projet Avr Usb permet de créer des périphériques USB a partir d'un microcontrolleur AVR. Il est aussi possible de faire tourner le firware sur un arduino. Documentation sur [[1]]
Hardware
Solution choisie
J'ai opté pour le montage qui utilise des diodes Zener a l'envers pour abaisser la tension du bus usb a 3.3v. Template:Quote box
Il vous faut deux diodes zener 3.6v 0.5W
Le microC est un ATMEGA328P (ou PU).
Schemas et Typons
Le schemas et les typons ont été réalisés avec Kicad et Inkscape
Firmware
Pour télécharger la dernière version du Firmware v-usb. Si vous voulez utiliser un Crystal a 20Mhz vous devez prendre une des versions les plus récentes.
!!Todo!!
- Ajouter les liens vers un firmware propre (souris qui gigotte)
A changer dans le main afin que les ports utilisés soient les bons:
- define LED_PORT_DDR DDRB
- define LED_PORT_OUTPUT PORTB
- define PWM_PORT_OUTPUT PORTD
- define PWM_PORT_DDR DDRD
- define ONBOARDLED_BIT 5
- define LEDRED_BIT 4
- define LEDGREEN_BIT 2
- define LEDBLUE_BIT 3
- define LEDRED_PWM 5
- define LEDGREEN_PWM 6
- define LEDBLUE_PWM 3