Trinket bootloading problem

Hello, fisrts of all is that I am Spanish, so my english could be quite poor.

My problem is that I can't upload my codes to my Adafruit Trinket 5V. I have installed all the drivers from Adafruit but is impossible, t gives me error mensage, and the same when I try to repair it ussing my Genuino Uno Board.

Has someone had the same problems, what am I doing bad?

Thanks.

The erros Message:

Arduino:1.8.2 (Windows 10), Tarjeta:"Adafruit Trinket 8MHz"

D:_Programas Instalados_\ARDUINO\libraries\Servo\src\avr\Servo.cpp: In function 'void __vector_3()':

D:_Programas Instalados_\ARDUINO\libraries\Servo\src\avr\Servo.cpp:82:44: error: cannot convert 'volatile uint8_t* {aka volatile unsigned char*}' to 'volatile uint16_t* {aka volatile unsigned int*}' for argument '2' to 'void handle_interrupts(timer16_Sequence_t, volatile uint16_t*, volatile uint16_t*)'

handle_interrupts(_timer1, &TCNT1, &OCR1A);

^

D:_Programas Instalados_\ARDUINO\libraries\Servo\src\avr\Servo.cpp: In function 'void initISR(timer16_Sequence_t)':

D:_Programas Instalados_\ARDUINO\libraries\Servo\src\avr\Servo.cpp:129:5: error: 'TCCR1B' was not declared in this scope

TCCR1B = _BV(CS11); // set prescaler of 8

^

D:_Programas Instalados_\ARDUINO\libraries\Servo\src\avr\Servo.cpp:136:5: error: 'TIFR1' was not declared in this scope

TIFR1 |= _BV(OCF1A); // clear any pending interrupts;

^

D:_Programas Instalados_\ARDUINO\libraries\Servo\src\avr\Servo.cpp:137:5: error: 'TIMSK1' was not declared in this scope

TIMSK1 |= _BV(OCIE1A) ; // enable the output compare interrupt

^

exit status 1
Error compilando para la tarjeta Adafruit Trinket 8MHz.

Este reporte podría tener más información con
"Mostrar salida detallada durante la compilación"
opción habilitada en Archivo -> Preferencias.

Those aren't "upload" errors, those are code compiling errors.
Something with your Servo.h library is not working correctly, you need to fix that.
Post your whole code using the </> button. Make sure have the Servo library in the correct place.

Ok thanks, but the code works on the Genuino UNO.

#include <Servo.h>

Servo servo;

void setup() {
  // put your setup code here, to run once:
servo.attach (1);
servo.write (0);
delay (50);
}

void loop() {
  // put your main code here, to run repeatedly:
servo.write (120);
delay (50);
servo.write (0);
delay(5000);

}

You should read this

There are two types of Adafruit Trinket. There are the "Trinket Pro" boards, which have an ATmega328p chip are are "very compatible" with an Arduino Uno, and there are the "Trinket Mini" boards, which have an ATtiny85 chip, and thus are much less compatible...