Yahoo Groups archive

AVR-Chat

Index last updated: 2026-04-28 22:41 UTC

Thread

Rapidshare link from Michael Williams (was: Re:(no subject))

Rapidshare link from Michael Williams (was: Re:(no subject))

2010-04-02 by ecros_technology

--- In AVR-Chat@yahoogroups.com, "david Vanhorn" <microbrix@...> wrote:
>
> Definitely do not.  I pulled his plug.

I think we're all savvy enough not to follow the link, however ...

I don't think he did this deliberately, so you might consider putting his plug back in, if that's possible.  I received the link also via direct e-mail because Michael Williams is a customer of mine.  He followed up quite quickly with a message which read as follows:

"Hi All,
 
I apologize but I have apparently been spoofed. I did NOT send out an email early this morning. I don't know yet what is happening but under no circumstances should you click on the link in an email apparently sent to you by me with a blank subject."

Graham.

Re:(no subject)

2010-04-02 by Andrew Mathison

I personally feel that this file could be very dangerous, possibly a virus or a Rootkit.....

My recommendation is NOT to open it for any reason at all......till we know more.....

Greetings from

Andy Mathison

[Non-text portions of this message have been removed]

Re: [AVR-Chat] Re:(no subject)

2010-04-02 by david Vanhorn

Definitely do not. �I pulled his plug.



-- Sent from my Palm Pre
On Apr 2, 2010 11:27, Andrew Mathison <andrewdavid.mathison@freenet.de> wrote: 

I personally feel that this file could be very dangerous, possibly a virus or a Rootkit.....



My recommendation is NOT to open it for any reason at all......till we know more.....



Greetings from



Andy Mathison



[Non-text portions of this message have been removed]







------------------------------------



Yahoo! Groups Links



<*> To visit your group on the web, go to:

    http://groups.yahoo.com/group/AVR-Chat/



<*> Your email settings:

    Individual Email | Traditional



<*> To change settings online go to:

    http://groups.yahoo.com/group/AVR-Chat/join

    (Yahoo! ID required)



<*> To change settings via email:

    AVR-Chat-digest@yahoogroups.com 

    AVR-Chat-fullfeatured@yahoogroups.com



<*> To unsubscribe from this group, send an email to:

    AVR-Chat-unsubscribe@yahoogroups.com



<*> Your use of Yahoo! Groups is subject to:

    http://docs.yahoo.com/info/terms/






[Non-text portions of this message have been removed]

Re: [AVR-Chat] Rapidshare link from Michael Williams (was: Re:(no subject))

2010-04-02 by Zack Widup

The one I got was from someone named Francisco Silva.

I am always suspicious when I see such e-mails with no description of what
the file is, and sent to multiple groups.

Zack

On Fri, Apr 2, 2010 at 1:51 PM, ecros_technology
<Yahoo37849@ecrostech.com>wrote:

>
>
> --- In AVR-Chat@yahoogroups.com <AVR-Chat%40yahoogroups.com>, "david
> Vanhorn" <microbrix@...> wrote:
> >
> > Definitely do not. I pulled his plug.
>
> I think we're all savvy enough not to follow the link, however ...
>
> I don't think he did this deliberately, so you might consider putting his
> plug back in, if that's possible. I received the link also via direct e-mail
> because Michael Williams is a customer of mine. He followed up quite quickly
> with a message which read as follows:
>
> "Hi All,
>
> I apologize but I have apparently been spoofed. I did NOT send out an email
> early this morning. I don't know yet what is happening but under no
> circumstances should you click on the link in an email apparently sent to
> you by me with a blank subject."
>
> Graham.
>
> 
>


[Non-text portions of this message have been removed]

RE: [AVR-Chat] Re:(no subject)

2010-04-03 by Dave McLaughlin

I don't think it was him who posted it as I saw the exact same file on 2
other Yahoo groups from 2 different people.

 

A Google search throws up a ton of hits on other forums etc.

 

I emailed Rapidshare to get them to block the file too.

 

Dave.
Show quoted textHide quoted text
From: AVR-Chat@yahoogroups.com [mailto:AVR-Chat@yahoogroups.com] On Behalf
Of david Vanhorn
Sent: 03 April 2010 01:39
To: AVR-Chat@yahoogroups.com
Subject: Re: [AVR-Chat] Re:(no subject)

 

  

Definitely do not. �I pulled his plug.

-- Sent from my Palm Pre
On Apr 2, 2010 11:27, Andrew Mathison <andrewdavid.mathison@freenet.de
<mailto:andrewdavid.mathison%40freenet.de> > wrote: 

I personally feel that this file could be very dangerous, possibly a virus
or a Rootkit.....

My recommendation is NOT to open it for any reason at all......till we know
more.....

Greetings from

Andy Mathison






[Non-text portions of this message have been removed]

USB In System Programming

2010-04-03 by Kasmad Ariansyah Ariansyah

Hi All,

 



  









Could  you give me schematic of In System Programming for AVR with USB Interface
Thanks//


      

[Non-text portions of this message have been removed]

How to handle PCINT8-11 on ATMEGA644P

2010-04-10 by Антощенков Роман Викторович

Hello!
I build project on AVRStudio 4.16 and WinAVR.
I try handle  high level on PCINT8-11.

PORTB=0x00;
DDRB=0xF0;

EICRA=0x02;
EIMSK=0x01;
EIFR=0x01;
PCMSK1=0x0F;
PCICR=0x02;
PCIFR=0x02;

ISR(PCINT1_vect)
{
  unsigned char x = PORTB;
  if ((x & Bit(0)) == 1)
  {
     ...
  }
  if ((x & Bit(1)) == 1)
  {
    ...
  }
  if ((x & Bit(2)) == 1)
  {
    ...
  }
  if ((x & Bit(3)) == 0)
  {
     ...
  }
}

It doesn't work.
Any idea?

-- 
Best regards,
Roman Antoshchenkov
mailto:djantoxa@rambler.ru

Re: [AVR-Chat] How to handle PCINT8-11 on ATMEGA644P

2010-04-10 by BobGardner@aol.com

try if (x & bit(2)==bit(2)) because bit(2) is 2, not 1?
Show quoted textHide quoted text
-----Original Message-----
From: Антощенков Роман Викторович <djantoxa@rambler.ru>
To: AVR-Chat@yahoogroups.com
Sent: Sat, Apr 10, 2010 1:04 pm
Subject: [AVR-Chat] How to handle PCINT8-11 on ATMEGA644P


Hello!
 build project on AVRStudio 4.16 and WinAVR.
 try handle  high level on PCINT8-11.
PORTB=0x00;
DRB=0xF0;
EICRA=0x02;
IMSK=0x01;
IFR=0x01;
CMSK1=0x0F;
CICR=0x02;
CIFR=0x02;
ISR(PCINT1_vect)

 unsigned char x = PORTB;
 if ((x & Bit(0)) == 1)
 {
    ...
 }
 if ((x & Bit(1)) == 1)
 {
   ...
 }
 if ((x & Bit(2)) == 1)
 {
   ...
 }
 if ((x & Bit(3)) == 0)
 {
    ...
 }

It doesn't work.
ny idea?
-- 
est regards,
oman Antoshchenkov
ailto:djantoxa@rambler.ru

------------------------------------
Yahoo! Groups Links
   Individual Email | Traditional
   http://docs.yahoo.com/info/terms/



[Non-text portions of this message have been removed]

Re: [AVR-Chat] How to handle PCINT8-11 on ATMEGA644P

2010-04-10 by erikc

Àíòîùåíêîâ Ðîìàí Âèêòîðîâè÷ wrote:
> Hello!
> I build project on AVRStudio 4.16 and WinAVR.
> I try handle  high level on PCINT8-11.
> 
> PORTB=0x00;
> DDRB=0xF0;
> 
> EICRA=0x02;
> EIMSK=0x01;
> EIFR=0x01;
> PCMSK1=0x0F;
> PCICR=0x02;
> PCIFR=0x02;
> 
> ISR(PCINT1_vect)
> {
>   unsigned char x = PORTB;
>   if ((x & Bit(0)) == 1)
>   {
>      ...
>   }
>   if ((x & Bit(1)) == 1)
>   {
>     ...
>   }
>   if ((x & Bit(2)) == 1)
>   {
>     ...
>   }
>   if ((x & Bit(3)) == 0)
>   {
>      ...
>   }
> }
> 
> It doesn't work.
> Any idea?
> 


Fix your code like this:



  ISR(PCINT1_vect)
  {
    unsigned char x = PORTB;
    if (x & Bit(0))
    {
       ...
    }
    if (x & Bit(1))
    {
      ...
    }
    if (x & Bit(2))
    {
      ...
    }
    if (x & Bit(3))
    {
       ...
    }
  } /* ISR */

Should work.

erikc

RE: [AVR-Chat] How to handle PCINT8-11 on ATMEGA644P

2010-04-10 by Ivan Vernot

Hello Roman,

I think your problem is you need to use the PINB reg not the PORTB.
Try

unsigned char x = PINB;

Please let us know how you get on
Regards,

Ivan Vernot
Show quoted textHide quoted text
> -----Original Message-----
> From: AVR-Chat@yahoogroups.com [mailto:AVR-Chat@yahoogroups.com] On
> Behalf Of ?????????? ????? ??????????
> Sent: Sunday, 11 April 2010 3:04 AM
> To: AVR-Chat@yahoogroups.com
> Subject: [AVR-Chat] How to handle PCINT8-11 on ATMEGA644P
> 
> Hello!
> I build project on AVRStudio 4.16 and WinAVR.
> I try handle  high level on PCINT8-11.
> 
> PORTB=0x00;
> DDRB=0xF0;
> 
> EICRA=0x02;
> EIMSK=0x01;
> EIFR=0x01;
> PCMSK1=0x0F;
> PCICR=0x02;
> PCIFR=0x02;
> 
> ISR(PCINT1_vect)
> {
>   unsigned char x = PORTB;
>   if ((x & Bit(0)) == 1)
>   {
>      ...
>   }
>   if ((x & Bit(1)) == 1)
>   {
>     ...
>   }
>   if ((x & Bit(2)) == 1)
>   {
>     ...
>   }
>   if ((x & Bit(3)) == 0)
>   {
>      ...
>   }
> }
> 
> It doesn't work.
> Any idea?
> 
> --
> Best regards,
> Roman Antoshchenkov
> mailto:djantoxa@rambler.ru
> 
> 
> 
> ------------------------------------
> 
> Yahoo! Groups Links
> 
> 
>

Re: [AVR-Chat] How to handle PCINT8-11 on ATMEGA644P

2010-04-10 by Антощенков Роман Викторович

Hello :)

Problem solved

> ISR(PCINT1_vect)
> {
>   unsigned char x = PORTB;

Should be
       unsigned char x = PINB;

>   {
>      ...
>   }
>   if ((x & Bit(1)) == 1)
>   {
>     //it handle high level
>     ...
>   }
>   if ((x & Bit(2)) == 1)
>   {
>       //it handle high level
>     ...
>   }
>   if ((x & Bit(3)) == 0)
>   {
>   //it handle low level
>      ...
>   }
> }

-- 
Best regards,
Roman Antoshchenkov
mailto:djantoxa@rambler.ru

Re: [AVR-Chat] USB In System Programming

2010-04-28 by enkitec@gmail.com

Google for USBTINY and USBASP.
Show quoted textHide quoted text
On 03-Apr-10 00:07, Kasmad Ariansyah Ariansyah wrote:
> Hi All,
>
> Could  you give me schematic of In System Programming for AVR with USB Interface
> Thanks//
>

Move to quarantaine

This moves the raw source file on disk only. The archive index is not changed automatically, so you still need to run a manual refresh afterward.