aboutsummaryrefslogtreecommitdiffstats
path: root/Projects
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-06-03 03:58:57 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-06-03 03:58:57 +0000
commit008e0e2e0a13e64e03f27f1c9a008ef201560878 (patch)
tree53e4c17848b5a295484c00d5df6864956bfc7e0a /Projects
parent5144ea76f646cd9f649de16e3d67dfead2d3c2bf (diff)
downloadlufa-008e0e2e0a13e64e03f27f1c9a008ef201560878.tar.gz
lufa-008e0e2e0a13e64e03f27f1c9a008ef201560878.tar.bz2
lufa-008e0e2e0a13e64e03f27f1c9a008ef201560878.zip
Add start of RFCOMM service layer to the incomplete BluetoothHost demo.
Reduce the size of the attribute search list from 15 ranges to 8 to save RAM.
Diffstat (limited to 'Projects')
-rw-r--r--Projects/AVRISP-MKII/AVRISP.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/AVRISP-MKII/AVRISP.c b/Projects/AVRISP-MKII/AVRISP.c
index 81c1385c9..0766025c1 100644
--- a/Projects/AVRISP-MKII/AVRISP.c
+++ b/Projects/AVRISP-MKII/AVRISP.c
@@ -91,7 +91,7 @@ void EVENT_USB_Device_ConfigurationChanged(void)
/* Setup AVRISP data Endpoints */
if (!(Endpoint_ConfigureEndpoint(AVRISP_DATA_OUT_EPNUM, EP_TYPE_BULK,
- ENDPOINT_DIR_OUT, AVRISP_DATA_EPSIZE,
+ ENDPOINT_DIR_OUT, AVRISP_DATA_EPSIZE,
ENDPOINT_BANK_SINGLE)))
{
LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
@@ -99,7 +99,7 @@ void EVENT_USB_Device_ConfigurationChanged(void)
#if defined(LIBUSB_DRIVER_COMPAT)
if (!(Endpoint_ConfigureEndpoint(AVRISP_DATA_IN_EPNUM, EP_TYPE_BULK,
- ENDPOINT_DIR_IN, AVRISP_DATA_EPSIZE,
+ ENDPOINT_DIR_IN, AVRISP_DATA_EPSIZE,
ENDPOINT_BANK_SINGLE)))
{
LEDs_SetAllLEDs(LEDMASK_USB_ERROR);