Discussion Title | Created date |
---|---|
program compiles when i include .c file but doesn't when i include .h files /* * nec decoder.c * * Created: 11-05-2020 20:13:54 * Author : jeet */ #define F_CPU 16000000UL #include <avr/io.h> #include <stdio.h> #include <stdbool.h... |
Saturday, 4 July 2020 - 13:45 |
unable to split/modularize my project here is my main file /* * nec decoder.c * * Created: 11-05-2020 20:13:54 * Author : jeet */ #define F_CPU 16000000UL #include <avr/io.h> #include <stdio.h> #... |
Saturday, 4 July 2020 - 13:26 |
compilation error please take a look at this 5 file I can't figure out what the error is atmel studio gives me an error conflicting types for lfsr. guys pleaseeeee help me out this is lfsr.h... |
Thursday, 2 July 2020 - 14:28 |
adc not working on atmega328p hi, guys can someone take a look at my code and help me understand what's wrong. void ADC_Initialize() { ADCSRA = (ADEN) | (ADSC) | (ADATE) | (ADIE) | (ADPS2) | (ADPS1) | (... |
Wednesday, 1 July 2020 - 11:26 |
help building self balancing robot the processors seems to be getting stuck the essential code for filter and pid is attached below #include "complementary_filter.h" uint8_t MPU6050_RawData[12]; volatile... |
Friday, 31 January 2020 - 16:58 |
help building pid controller #include "complementary_filter.h" uint8_t MPU6050_data[12]; volatile int acx,gyy,acx_lut_index,gyy_lut_index,acx_deg,gyy_deg,anglex; void COMPFILT_Initialize() { TCCR2A = (... |
Saturday, 18 January 2020 - 10:45 |
help with pid code How to limit integral sum error? |
Friday, 17 January 2020 - 12:44 |
help building complementary filter i'm using a 8.8 fixed format for building a complementary filter for self balancing robot, i get correct angle for positive values but it doesn't work for negative values of the... |
Tuesday, 31 December 2019 - 14:15 |
How to calculate inverse sin ? How do i calculate inverse sine on atmega32? I dont need floating point , the calculation should be fast. |
Friday, 20 December 2019 - 10:04 |