Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Bob's minimus pinout diagram
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  9 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Alan Burlison  
View profile  
 More options Sep 29 2012, 2:13 pm
From: Alan Burlison <alan.burli...@gmail.com>
Date: Sat, 29 Sep 2012 19:13:32 +0100
Local: Sat, Sep 29 2012 2:13 pm
Subject: Bob's minimus pinout diagram
Hi Bob,

As far as I can tell, you have the ports for the red/blue LEDs
switched - Red is D6, Blue is D5.  See also the schematic at
http://www.talpa.dk/Electronics/minimus32/minimus32/minimus32.pdf

--
Alan Burlison
--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bob Clough  
View profile  
 More options Sep 29 2012, 7:24 pm
From: Bob Clough <para...@ivixor.net>
Date: Sun, 30 Sep 2012 00:24:45 +0100
Local: Sat, Sep 29 2012 7:24 pm
Subject: Re: [HACMan] Bob's minimus pinout diagram

Yeah, it has been pointed out to me.

Will fix it on monday.
On Sep 29, 2012 7:13 PM, "Alan Burlison" <alan.burli...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alan Burlison  
View profile  
 More options Sep 29 2012, 8:26 pm
From: Alan Burlison <alan.burli...@gmail.com>
Date: Sun, 30 Sep 2012 01:26:30 +0100
Local: Sat, Sep 29 2012 8:26 pm
Subject: Re: [HACMan] Bob's minimus pinout diagram

> Yeah, it has been pointed out to me.

> Will fix it on monday.

No worries, thanks for the diagram, I found it very useful :-)  Got
both stdio and an accurate timer working now, next thing is the USB
gubbins :-)  Eventual plan is to get avr-libc running over USB as
well.

--
Alan Burlison
--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kimball Johnson  
View profile  
 More options Sep 30 2012, 8:02 am
From: Kimball Johnson <kimb...@bowerham.net>
Date: Sun, 30 Sep 2012 13:02:06 +0100
Local: Sun, Sep 30 2012 8:02 am
Subject: Re: [HACMan] Bob's minimus pinout diagram
If you look at the rfid code, I am using the USB-CDC bits in there,
and it is extremely simple.

The code here is a little out of date (it's using a old version of the
lib) but should give you a bit of a idea.
https://github.com/drrk/minimus-weigand/tree/test

Kimball

On 30 September 2012 01:26, Alan Burlison <alan.burli...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alan Burlison  
View profile  
 More options Sep 30 2012, 9:46 am
From: Alan Burlison <alan.burli...@gmail.com>
Date: Sun, 30 Sep 2012 14:46:20 +0100
Local: Sun, Sep 30 2012 9:46 am
Subject: Re: [HACMan] Bob's minimus pinout diagram

> If you look at the rfid code, I am using the USB-CDC bits in there,
> and it is extremely simple.

> The code here is a little out of date (it's using a old version of the
> lib) but should give you a bit of a idea.
> https://github.com/drrk/minimus-weigand/tree/test

Yes, looks simple enough, but the USART stdio stuff is entirely
interrupt-driven so you don't have to have a driving loop to run it.
It doesn't appear to be possible to make LUFA interrupt-driven, it
seems to force a poll loop onto your application.

--
Alan Burlison
--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kimball Johnson  
View profile  
 More options Sep 30 2012, 10:11 am
From: Kimball Johnson <kimb...@bowerham.net>
Date: Sun, 30 Sep 2012 15:11:40 +0100
Local: Sun, Sep 30 2012 10:11 am
Subject: Re: [HACMan] Bob's minimus pinout diagram
Put the poll in a timer interrupt ;)

On 30 September 2012 14:46, Alan Burlison <alan.burli...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alan Burlison  
View profile  
 More options Sep 30 2012, 11:38 am
From: Alan Burlison <alan.burli...@gmail.com>
Date: Sun, 30 Sep 2012 16:37:59 +0100
Local: Sun, Sep 30 2012 11:37 am
Subject: Re: [HACMan] Bob's minimus pinout diagram

> Put the poll in a timer interrupt ;)

Actually, I'll probably just do it in the lowest-priority task in my
scheduler - but it's still in effect polling, wherever possible I try
to avoid doing that ;-)

--
Alan Burlison
--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kimball Johnson  
View profile  
 More options Sep 30 2012, 12:03 pm
From: Kimball Johnson <kimb...@bowerham.net>
Date: Sun, 30 Sep 2012 17:03:54 +0100
Local: Sun, Sep 30 2012 12:03 pm
Subject: Re: [HACMan] Bob's minimus pinout diagram
I know.  I do wonder why it is like that - as the SB is interrupt
driven itself.  Maybe ask on to forums on avrfreaks, Dean is often on
there.

On 30 September 2012 16:37, Alan Burlison <alan.burli...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alan Burlison  
View profile  
 More options Sep 30 2012, 12:40 pm
From: Alan Burlison <alan.burli...@gmail.com>
Date: Sun, 30 Sep 2012 17:40:12 +0100
Local: Sun, Sep 30 2012 12:40 pm
Subject: Re: [HACMan] Bob's minimus pinout diagram

> I know.  I do wonder why it is like that - as the SB is interrupt
> driven itself.  Maybe ask on to forums on avrfreaks, Dean is often on
> there.

From digging around it seems like there used to be an ISR-driven
interface, but at some point it was removed, no idea why.  Also the
Atmel datasheet for the 32U2 says that "CONTROL endpoints should not
be managed by interrupts, but only by polling the status bits"
(section 21.12), perhaps that is the reason.

In addition, it appears that the framework allocates buffers for 16
endpoints whereas the 32U2 only has 4, resulting in a significant
waste of memory.  I think part of the problem is that he's trying to
support the 8-bit Atmels, the Xmegas and the 32-bit parts all in the
same library, but they have significantly different USB hardware.
Splitting the library into family-specific variants might be easier
than trying to do it all-in -one.

There's a google group that seems to be where most of the questions
are asked - https://groups.google.com/forum/?fromgroups=#!forum/lufa-support
- I'll ask over there.

--
Alan Burlison
--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »