arduino mini & analong pins 6 & 7

yep! that's the one. also, make sure the end of the file looks like the below (that { PC, 6 }, and { PC, 7 }, are included, etc.

best,
willie

pin_t *analog_out_pin_to_port = analog_out_pin_to_port_array;
*/
pin_t analog_in_pin_to_port_array[NUM_ANALOG_IN_PINS] = {
      { PC, 0 },
      { PC, 1 },
      { PC, 2 },
      { PC, 3 },
      { PC, 4 },
      { PC, 5 },
      { PC, 6 },
      { PC, 7 },
#if defined(__AVR_ATmega168__)
  { NOT_A_PIN, 6 },
  { NOT_A_PIN, 7 },
#endif
};

pin_t *analog_in_pin_to_port = analog_in_pin_to_port_array;