Libstock prefers package manager

Package Manager

We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]

Sort By

USER REQUESTS

first | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 last
vando ngo
giftlife

posted on 2013/07/30 01:45:01 PM CEST

Other Codes

help soft uart for arm

i want to use orther pin in soft Uart code.but not work.this code:



char i, error, byte_read; // Auxiliary variables

void main(){
UART1_Init(9600);
error = Soft_UART_Init(&GPIOA_ODR, 7, 6, 9600, 0); // Initialize Soft UART at 56000 bps
if (error > 0) {
GPIOD_ODR = error; // Signalize Init error
while(1); // Stop program
}
Delay_ms(100);




while(1)
{ // Endless loop
// Send bytes from 'z' downto 'A'
Soft_UART_Write('a');
Delay_ms(100);

byte_read = Soft_UART_Read(&error); // Read byte, then test error flag
if (error) // If error was detected
GPIOD_ODR = error; // signal it on PORTD
else
//Soft_UART_Write(byte_read); // If error was not detected, return byte read
UART1_Write(byte_read);
}
}


Uart1 is hard uart.

Claude Gagner
cgagner

posted on 2013/07/30 08:42:30 AM CEST

Timers (Real time clock)

PIC18F46J11family internal RTC

A library to use these Pic family internal RTC would be very useful. I use MikroBasic.
Thanks

Jose Pita
josempita

posted on 2013/07/25 04:32:54 AM CEST

Graphics & LCD

connectEVE examples for Atmega32

Hi,
Looking for examples for ConnectEVE TFT screen and ATmega32, I have an easyAVR development board but havent been able to find code samples for atmega32, have only found for xmega controllers

Thanks

Ruud Kerstens
Resistorman

posted on 2013/07/24 02:20:07 PM CEST

Communication

ethernet click-board AVR example

Hi,

I see many examples for the ethernet-clickboard, but nothing for the AVR (mikropascal), anybody have some simple example?

Thanks!

Ruud

Todd Kim
Todd

posted on 2013/07/24 03:56:22 AM CEST

Internal MCU modules

STM32F373 SDADC Library !!

I use STM32F373 with mikroC for ARM.

I need to use SDADC in STM32F373.

but I can not work it.
please help...OTL

first | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 last