From 9e6010339c47f62446c38a1f7deded8bc2647703 Mon Sep 17 00:00:00 2001 From: Perry Hung Date: Mon, 19 Apr 2010 22:13:21 -0400 Subject: Removed USB device instantiation in example while the new CDC device gets written, cleaned it up a bit --- main.cpp.example | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) (limited to 'main.cpp.example') diff --git a/main.cpp.example b/main.cpp.example index 04af8a2..6152687 100644 --- a/main.cpp.example +++ b/main.cpp.example @@ -25,27 +25,17 @@ /** * @file example_main.cpp * - * @brief Sample main.cpp file. Blinks an LED, sends a message out USART2 and - * the USB virtual COM port, and turns on PWM on pin 2 + * @brief Sample main.cpp file. Blinks an LED, sends a message out USART2 + * and turns on PWM on pin 2 */ -#ifndef _EXAMPLE_MAIN_H_ -#define _EXAMPLE_MAIN_H_ - -#endif #include "wiring.h" #include "HardwareSerial.h" -#include "HardwareUsb.h" #include "math.h" -#include "usb.h" - -uint8_t bytes_in; #define LED_PIN 13 #define PWM_PIN 2 -HardwareUsb Usb; - void setup() { /* Set up the LED to blink */ @@ -58,9 +48,6 @@ void setup() /* Turn on PWM on pin PWM_PIN */ pinMode(PWM_PIN, PWM); pwmWrite(PWM_PIN, 0x8000); - - /* Send a message out the USB virtual com port */ - Usb.println("Hello world!"); } int toggle = 0; -- cgit v1.2.3