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]
posted on 2014/11/14 08:42:23 AM CET
posted on 2014/11/10 01:37:04 AM CET
Using USBHost_dsPIC Library and some of the following code, My USB MODEM ENUMERATES...
Could someone help me setup Call Backs to Send AT Commands to Modem?
I have done this with Microchips Generic Host using C Library...
Trying to transition to MikroBasic for this and other functionality.
Thanks
sub procedure USB1Interrupt() iv IVT_ADDR_USB1INTERRUPT
USBHost_IntHandler()
end sub
sub procedure EventHandler(dim event as byte)
select case(event)
case _USB_HOST_EVENT_DEVICE_ADDRESSED
UART2_Write_Text("Host Addressed")
UART2_Write(13)
UART2_Write(10)
case _USB_HOST_EVENT_DEVICE_CONNECTED
UART2_Write_Text("Host Connected")
UART2_Write(13)
UART2_Write(10)
case _USB_HOST_EVENT_DEVICE_DISCONNECTED
UART2_Write_Text("DisConnected")
UART2_Write(13)
UART2_Write(10)
case _USB_HOST_EVENT_DEVICE_ENUMERATED
UART2_Write_Text("Device Enumerated")
UART2_Write(13)
UART2_Write(10)
speed=11
speed = USBHost_GetDeviceSpeed()
USBHost_InitEp(0x02)
if speed = _USB_HOST_SPEED_LOW then
Uart2_Write_Text("The Device is Low Speed")
UART2_Write(13)
UART2_Write(10)
end if
if speed = _USB_HOST_SPEED_FULL then
Uart2_Write_Text("The Device is FULL Speed")
UART2_Write(13)
UART2_Write(10 )
end if
case _USB_HOST_EVENT_HOST_ERROR
UART2_Write_Text("Error")
end select
end sub
USB1IE_bit = 1 ''important set USB interupt bit
USBHost_RegisterDeviceEventHandler(@EventHandler)
USBHost_Init()
while TRUE
' LATB.15 = not LATB.15 ' Invert PORTB value
USBHost_Main(
wend
posted on 2014/11/05 05:18:30 PM CET
Hi,
I am doing a project where I have to connect 2 different bluetooth devices to a PIC. I am going to use the bluetooth click 2 board from Mikroelectronika for prototyping. Could someone point me in the right direction for handling 2 modules. Thank you.
posted on 2014/11/02 06:44:23 PM CET
because in board Easymx PRO v7 for stm32, the MCU_VREF is equal 1.8 Volts; when in stm32f107vc manual say: "VREF+ Positive reference voltage: 2.4 -VDDA. Volts".
I have problems understanding this concept because when i connect one thermistor which is not working reference voltage.
Thanks for your help.
posted on 2014/10/26 07:38:00 AM CET
I am facing a problem to measure power, i would be very thankful if anyone send me a code for it as i m new to programming.