Advertisement
Guest User

biscotti build log

a guest
Jul 12th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 KB | None | 0 0
  1. avr-gcc -Wall -Winline -g -Os -mmcu=attiny13 -c -std=gnu11 -DATTINY=13 -I.. -I../.. -I../../.. -o biscotti.o -c biscotti.c
  2. biscotti.c:61:0: warning: "FAST" redefined
  3. #define FAST 0xA3 // fast PWM both channels
  4.  
  5. In file included from biscotti.c:51:0:
  6. ../../tk-attiny.h:143:0: note: this is the location of the previous definition
  7. #define FAST 0x23 // fast PWM channel 1 only
  8.  
  9. biscotti.c:62:0: warning: "PHASE" redefined
  10. #define PHASE 0xA1 // phase-correct PWM both channels
  11.  
  12. In file included from biscotti.c:51:0:
  13. ../../tk-attiny.h:144:0: note: this is the location of the previous definition
  14. #define PHASE 0x21 // phase-correct PWM channel 1 only
  15.  
  16. biscotti.c: In function 'restore_state':
  17. biscotti.c:265:20: warning: inlining failed in call to 'reset_state': call is unlikely and code size would grow [-Winline]
  18. extern inline void reset_state() {
  19. ^~~~~~~~~~~
  20. biscotti.c:303:9: note: called from here
  21. reset_state();
  22. ^~~~~~~~~~~~~
  23. biscotti.c:265:20: warning: inlining failed in call to 'reset_state': call is unlikely and code size would grow [-Winline]
  24. extern inline void reset_state() {
  25. ^~~~~~~~~~~
  26. biscotti.c:327:38: note: called from here
  27. if (modegroup >= NUM_MODEGROUPS) reset_state();
  28. ^~~~~~~~~~~~~
  29. biscotti.c: In function 'main':
  30. biscotti.c:331:20: warning: inlining failed in call to 'next_mode': call is unlikely and code size would grow [-Winline]
  31. extern inline void next_mode() {
  32. ^~~~~~~~~
  33. biscotti.c:645:13: note: called from here
  34. next_mode(); // Will handle wrap arounds
  35. ^~~~~~~~~~~
  36. In file included from biscotti.c:149:0:
  37. ../../tk-voltage.h:41:20: warning: inlining failed in call to 'ADC_on': call is unlikely and code size would grow [-Winline]
  38. extern inline void ADC_on() {
  39. ^~~~~~
  40. biscotti.c:679:5: note: called from here
  41. ADC_on();
  42. ^~~~~~~~
  43. biscotti.c:514:20: warning: inlining failed in call to 'strobe': call is unlikely and code size would grow [-Winline]
  44. extern inline void strobe(uint8_t ontime, uint8_t offtime) {
  45. ^~~~~~
  46. biscotti.c:749:13: note: called from here
  47. strobe(33,67);
  48. ^~~~~~~~~~~~~
  49. biscotti.c:526:20: warning: inlining failed in call to 'SOS_mode': call is unlikely and code size would grow [-Winline]
  50. extern inline void SOS_mode() {
  51. ^~~~~~~~
  52. biscotti.c:798:35: note: called from here
  53. else if (output == SOS) { SOS_mode(); }
  54. ^~~~~~~~~~
  55. In file included from biscotti.c:149:0:
  56. ../../tk-voltage.h:152:23: warning: inlining failed in call to 'battcheck': call is unlikely and code size would grow [-Winline]
  57. extern inline uint8_t battcheck() {
  58. ^~~~~~~~~
  59. biscotti.c:828:13: note: called from here
  60. blink(battcheck(), BLINK_SPEED/4);
  61. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  62. avr-gcc -Wall -g -Os -mmcu=attiny13 -o biscotti.elf biscotti.o
  63. avr-objcopy --set-section-flags=.eeprom=alloc,load --change-section-lma .eeprom=0 --no-change-warnings -O ihex biscotti.elf biscotti.hex
  64. Program: 1078 bytes (105.3% Full)
  65. Data: 16 bytes (25.0% Full)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement