Search found 137 matches

by Carmelo
Sat Feb 07, 2026 12:46 pm
Forum: General
Topic: Update project to F10
Replies: 15
Views: 1617

Re: Update project to F10

Thanks for the response. Now a problem has arisen that I have been observing for a long time and that in this project has occurred again and I don't know why it occurs: When I have a switch activated at a low level, many times when starting to run the program, in siulation, the first time the state ...
by Carmelo
Fri Feb 06, 2026 6:30 pm
Forum: General
Topic: Update project to F10
Replies: 15
Views: 1617

Re: Update project to F10

Downloaded, stolen and working OK.

I have 2 additional questions:

1st.- Can version 10 and version 7 be installed at the same time?

2º.- Where can I download version 7?

C.
by Carmelo
Fri Feb 06, 2026 6:33 am
Forum: General
Topic: Update project to F10
Replies: 15
Views: 1617

Re: Update project to F10

chipfryer27 wrote:
Thu Feb 05, 2026 10:24 pm
Hi

Opened then saved in v7.

This can now be opened in later versions. As Martin mentions above, you will need to check components etc to ensure things are as they should be.

Regards
Muchas gracias, esta tarde lo descargo y verifico.

C.
by Carmelo
Thu Feb 05, 2026 9:41 pm
Forum: General
Topic: Update project to F10
Replies: 15
Views: 1617

Re: Update project to F10

I attach the project here and tell me if it is better privately
by Carmelo
Thu Feb 05, 2026 9:01 pm
Forum: General
Topic: Update project to F10
Replies: 15
Views: 1617

Update project to F10

I currently have version 10.
But I have an old project generated with version 5 of Flowcode that I need to modify
Obviously, with F10 I can't open it.
Is there any way or system to do some type of work so that I can open the file with F10?
Thank you so much
by Carmelo
Sun Jul 27, 2025 6:41 pm
Forum: General
Topic: Error/Warning in the compilation
Replies: 2
Views: 893

Re: Error/Warning in the compilation

OK,
muchas gracias por tan pronta respuesta.

C.
by Carmelo
Sun Jul 27, 2025 6:34 pm
Forum: General
Topic: Error/Warning in the compilation
Replies: 2
Views: 893

Error/Warning in the compilation

Hola, During compilation the following warning appears: T1_4.c: 5589: #warning "This interrupt has previously been enabled, so the macro <INT_TMR0_Tiempo> may never get called." ^ (162) #warning: "This interrupt has previously been enabled, so the macro <INT_TMR0_Tiempo> may never get...
by Carmelo
Sun Jul 27, 2025 6:28 pm
Forum: General
Topic: Pull-up internas como activarlas?
Replies: 6
Views: 1537

Re: Pull-up internas como activarlas?

Hola,
Bueno al final con la sentencia: OPTION_REGbits.RBPU = 0;
Daba error al compilar

Lo cambie por: OPTION_REG = 0b00000000;
Y ahora va bien.

C.
by Carmelo
Sun Jul 27, 2025 12:04 am
Forum: General
Topic: Pull-up internas como activarlas?
Replies: 6
Views: 1537

Re: Pull-up internas como activarlas?

Grcacias por la respuesta.
me equivoque al escribir el codigo del registro WPUB.
En concreto las lineas a insertar serian:

OPTION_REGbits.RBPU = 0;
WPUB=0b11110000;
by Carmelo
Sat Jul 26, 2025 11:28 pm
Forum: General
Topic: Pull-up internas como activarlas?
Replies: 6
Views: 1537

Re: Pull-up internas como activarlas?

Gracias por la respuesta.
Entonces entiendo que en el bloque C habría que escribir lo siguiente:
OPTION_REGbits.RBPU = 0;
Para habilitar de forma general las pull-up y después:
WPUB=0b11110000;
Para habilitar de forma individual las resistencias de la pines RB4 a RB7

C.