Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by gamegurus

  1. gamegurus

    how to interface 8051 micro controller to gsm module and then connect it to cloud

    Better to use WIFI Module ESP8266 instead of GSM for this application.
  2. gamegurus

    load cell amplification using 741 to interface with pic

    Use HX711, its low cost and works great, you get direct digital data without messing with analog amplifiers. https://www.sunrom.com/195 sbit AD_DATA_PIN = P1^5; // Pin mapping of microcontroller sbit AD_SCK_PIN = P0^0; // Pin mapping of microcontroller unsigned long ReadCount(void) {...
  3. gamegurus

    which Led Mtrixdriver IC i can use ?

    This way its most cost effective method use 74HC595 https://embedded-lab.com/blog/lab-15-scrolling-text-message-on-an-led-dot-matrix-display/
  4. gamegurus

    MCP2200 configuration tool not working

    Good to see your results, I then ended up using CP2102 in my production run instead of microchip MCP2200. Good that i was able to caught such issue in my development boards, so i was able to revise my design.
  5. gamegurus

    [SOLVED] Multi tasking with PIC controller for stepper motors

    create a timer interrupt which calls below function runMotor1()
  6. gamegurus

    [SOLVED] Multi tasking with PIC controller for stepper motors

    That is why every one uses RTOS like https://www.freertos.org/ To handle multiple things at once inside microcontrollers in a elegant manner.
  7. gamegurus

    [ARM] How can I work with header file keil without library cmsis or other?

    Re: How i can work with header file keil only without library cmsis or other? see https://www.keil.com/gsg its for MDK5 getting started guide. you dont have to use any library except device files.
  8. gamegurus

    Defining in-function Local Variables RS485

    How about disabling interrupt when reading and enabling it again? disable_interrupts(the interrupt that writes to global); temp=myglobalvar; enable_interrupts(the interrupt that writes to global);
  9. gamegurus

    Bitmap for LED 8 x 8 Matrix

    You can adapt the shifting method shown on below article. https://extremeelectronics.co.in/avr-projects/led-moving-message-display/
  10. gamegurus

    Interfacing GPS module mt3333 with 8051

    you need to understand GPS signals are not strong as GSM. GPS usually was made to work on open sky and not indoor buildings. If you really need to make indoor then consider using active antenna with good gain.
  11. gamegurus

    [SOLVED] why when i uses CMSIS library for keil!it has lock image in library's files??

    lock has nothing to do with license. lock means the file is read only or located where it is shared by all system. my project looks like below, see the shared file is locked and the other files created on the project folder path is not locked.
  12. gamegurus

    Defining in-function Local Variables RS485

    So i always use int8 or int16 or int32 as declaration so avoid such problems. and i use make8, make16 and make32 functions to convert low bit variables to high bit values. This is what CSS compiler says about variable declaration.
  13. gamegurus

    [SOLVED] AVR code for M590 neoway (initializing and sending text message)

    You are missing the enter key code \n or 0x13 after sending AT command. My code looks like below, instead of writing own puts, its better to use built in printf functions. **broken link removed**
  14. gamegurus

    Bitmap for LED 8 x 8 Matrix

    you have selected output to be in binary, you can instead select HEX format output array, so B00000000 will become 0x00 instead.
  15. gamegurus

    MCP2200 configuration tool not working

    I was in similar situation some time ago. this is latest version https://ww1.microchip.com/downloads/en/DeviceDoc/MCP2200%20Configuration%20Utility%20v1.3.1.zip from https://www.microchip.com/wwwproducts/devices.aspx?dDocName=en546923 Software has problem connecting to MCP2200 under wine in...

Part and Inventory Search

Back
Top