Sanguino firmware from Linux 64? January 26, 2015 02:53PM |
Registered: 10 years ago Posts: 24 |
Re: Sanguino firmware from Linux 64? January 26, 2015 06:56PM |
Registered: 9 years ago Posts: 31 |
Quote
...
#if defined(USART1_RX_vect)
void serialEvent1() __attribute__((weak));
void serialEvent1() {}
#define serialEvent1_implemented
SIGNAL(USART1_RX_vect)
{
unsigned char c = UDR1;
store_char(c, &rx_buffer1);
}
//#elif defined(SIG_USART1_RECV)
// #error SIG_USART1_RECV
#endif
#if defined(USART2_RX_vect) && defined(UDR2)
...
Re: Sanguino firmware from Linux 64? January 27, 2015 04:56AM |
Registered: 14 years ago Posts: 7,616 |
Quote
docdawning
After I commented out those two lines, #132 and #133, I could compile the Sanguino bootloader just fine. In my case, I was building it for use on my RepRap Gen3 motherboard, as rambled about here
Generation 7 Electronics | Teacup Firmware | RepRap DIY |
Re: Sanguino firmware from Linux 64? January 27, 2015 05:41PM |
Registered: 10 years ago Posts: 24 |
Re: Sanguino firmware from Linux 64? January 28, 2015 06:00AM |
Registered: 14 years ago Posts: 7,616 |
Quote
prof braino
Unfortunately, it does not make the endstops work.
Generation 7 Electronics | Teacup Firmware | RepRap DIY |
Re: Sanguino firmware from Linux 64? February 17, 2015 01:36PM |
Registered: 10 years ago Posts: 24 |