Why not create chips with flash inside?

Just a simple question, why not create chips that already have flash inside as a standard feature?
Thanks.

bhanu005 wrote:
Just for clarification.... when say on board... is it on board or on single chip...
  If you're talking about the Spartan 3AN, then it looks like a single chip.  i.e. the flash die is in the same package as the FPGA die, so from the outside the package looks the same as the Spartan 3A which does not have flash.  All other Xilinx FPGA's require a flash device on board, or some other means of programming.
  Other means could include using the existing system memory (flash or disks) to program the FPGA via a microprocessor.  Some of the boards my company produces have embedded microprocessors on them that can read the host system (For example a desktop PC) disk files and then directly use that to program the FPGAs without using any additional storage device for the FPGA.

Similar Messages

  • Why not create a command

    why not create a command that shows you how many miles the paket travel to distination . that way you can figure out your lentency right there base on the distance..
    show distance x.x.x.x
    it will show you the distance from b/w the interface you are seating on to the interface you are requesting
    hehe lol :-) haha bzzzzzzzz!!!!!

    Hi,
    Select>Color Range is only in photoshop (i.e photoshop cs6 or cc 2014 as examples) and not in photoshop elements.
    You could double click on the layer thumbnail in the layers panel to unlock the layer.
    Select the background with the Magic Wand Tool.
    Then Edit>Cut and that should make everything but the actual logo transparent.
    Then save as a png, tif or psd file.
    There is also a photoshop elements forum
    (you posted in the photoshop forum)
    https://forums.adobe.com/community/photoshop_elements

  • Why hasn't apple created its own USB or USB adapter for their products.? Since an iPhone or iPad make traveling and doing school work or on the job work, why not create a USB to make transferring information easier too.?

    Why hasn't apple created its own USB or USB adapter for their products.? Since an iPhone or iPad make traveling and doing school work or on the job work, why not create a USB to make transferring information easier too.?

    In some folks' version of the world, you have plenty of ways. YOu have the aforementioned services, you have iCloud, all you need is an internet connection and you're good to go. And that works perfectly...if you always have the internet.
    If you want more non-internet dependant ways, then the best way to let Apple know is to send them feedback. They don't monitor or respond to this forum (Beyond removing rule breaking posts) but they do at least log feedback. However, the lack of a file manager will always be an obstacle. There are some apps out there that have at least a pseudo file manager - as in the ability to move documents into multiple other apps. I have Readdle Docs which I can use to download and move things around with, but again, back to the internet or wireless.

  • Why not create a Indesign Javascripts web library ?

    Hi all,
    I see a lot of scripts passing by in this forum. I thought it would be very helpful to gather them in a library. It could look like a web site like this one for applescript
    http://olivier.berquin.free.fr/indesign/indesign_cs2.html
    We could have a "menu" frame on the left side with common principles (open, create, loop, for, whatever...)
    We could have too a Index on a page with script names associated with general terms like
    Page
    addPages.jsx
    removePages.jsx
    (Don't look at them, they are fake names)
    Maybe it already exists and I would be pleased to hear it (and know how to reach it :-)). But if not, this kind of library would be a very interesting resource.
    The idea is to have a look on existing scripts and aggregate bricks for new one. With time, the library is growing more & more.
    Maybe another Utopia, but I drop the idea.
    BTW, I don't know how to create a site but I guess it could be a very simple one.
    What do you think ?
    Loic

    Welcome on board, I will have a look at 12/13h00 on wiki, come back with news asap.
    Loic
    De :
    xbytor <[email protected]>
    Ã :
    [email protected]
    Envoyé le :
    Mercredi, 19 Novembre 2008, 5h02mn 46s
    Objet :
    Re: Why not create a Indesign Javascripts web library ?
    A new message was posted by xbytor in
    InDesign Scripting --
    Why not create a Indesign
    Javascripts web library ?
    > loic_aigon X yahoo.fr (X is what you know)
    Moi?
    -X
    View/reply at <
    http://www.adobeforums.com/webx?13@@.59b70ae3/7>
    Replies by email are OK.
    Use the unsubscribe form at <
    http://www.adobeforums.com/webx?280@@.59b70ae3!folder=.eea52bc> to cancel your email subscription.

  • "Could not create renderer with alias..." after deploying ResourceRenderer

    Hello everybody
    I've developed a custom ResourceRenderer class that looks like this:
    package no.expert.portal.km.relateddocs;
    import com.sapportals.htmlb.Component;
    import com.sapportals.htmlb.Link;
    import com.sapportals.wcm.WcmException;
    import com.sapportals.wcm.rendering.resource.cm.ResourceRenderer;
    import com.sapportals.wcm.repository.IResource;
    public class RelatedDocsNamePropertyRenderer extends ResourceRenderer
         protected Component renderContentLink(com.sapportals.htmlb.Component comp) throws WcmException
              Link result = (Link) super.renderContentLink(comp);
              result.setTarget("");
              return result;
         protected Component renderContentLink(IResource resource, com.sapportals.htmlb.Component comp) throws WcmException
              Link result = (Link)super.renderContentLink(resource, comp);
              result.setTarget("");
              return result;
    All it does, really, is preventing links to documents in KM to open in a new window. At least that's what I'm hoping it will do, as it's based on ideas in <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=20316">this post</a>.
    I've added all the necessary .jar files, and implemented a wrapper portal service as described here: <a href="http://media.sdn.sap.com/html/submitted_docs/nw_kmc/ide/projects/Setting%20Up%20a%20KMC%20Project.html">http://media.sdn.sap.com/html/submitted_docs/nw_kmc/ide/projects/Setting%20Up%20a%20KMC%20Project.html</a>.
    I've created an alias for the class in <i>Content Management -> User Interface -> Mapping</i>, and assigned this to the resource renderer settings that I use.
    OK, here is where the trouble starts. When viewing the layout set with debugging on, I check <i>Rendering Information</i>. It informs me that <i>"The given configuration was not used, because the alias is not defined or points to an invalid java class"</i>. Looking in the log, this is the error message:
    Could not create renderer with alias ZRelatedDocsNameResourceRender and classname no.expert.portal.km.relateddocs.RelatedDocsNamePropertyRenderer:java.lang.NoClassDefFoundError: com/sapportals/wcm/rendering/resource/cm/ResourceRenderer
    ------------------------- Loader Info -------------------------
    ClassLoader name: [com.sapportals.portal.prt.util.ApplicationClassLoader@6b247b]
    Parent loader name: [com.sapportals.portal.prt.util.ApplicationClassLoader@4e82c4]
    References:
       not registered!
    Resources:
       C:usrsapEPUJC00j2eeclusterserver0appssap.comirjservlet_jspirjrootWEB-INFportalportalappsno.expert.portal.km.relateddocs.RelatedDocsNamePropertyRendererprivatelibno.expert.portal.km.relateddocs.RelatedDocsNamePropertyRenderercore.jar
    The error occurred while trying to load "no.expert.portal.km.relateddocs.RelatedDocsNamePropertyRenderer".
         at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:389)
    I have a suspicion this might have something to do with the SharingRefernce in portalapp.xml, but after experimenting with different values, I'm no nearer a solution. Any ideas, anyone? Any help greatly appreciated.
    -martin
    Yes, and here is my portalapp.xml:
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="SharingReference" value="com.sap.netweaver.bc.crt,knowledgemanagement"/>
        <property name="PrivateSharingReference" value="com.sap.km.cm.ui.flex"/>
      </application-config>
      <components>
        <component name="RelatedDocsNamePropertyRenderer">
          <component-config>
            <property name="ClassName" value="no.expert.portal.km.relateddocs.RelatedDocsNamePropertyRenderer"/>
          </component-config>
          <component-profile/>
        </component>
      </components>
      <services>
        <service name="BootStrapNamePropertyRender">
          <service-config>
            <property name="className" value="no.expert.portal.km.relateddocs.BootStrapNamePropertyRender"/>
            <property name="startup" value="true"/>
          </service-config>
        </service>
      </services>
    </application>

    Hi Gourab,
    Double check the the page.xml has referring to the correct CO. Open the page.xml and see which controller is attached to it.
    Also attach the extended controller through personalization to the page/Region.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Creating Portfolios with Flash Builder 4.6 and the 4.1a SDK

    I've been following the instructions and tutorials on the creation of Navigators for Acrobat with Flash Builder but it seems to be missing a few steps along the way.
    http://blogs.adobe.com/pdfdevjunkie/ax-portfoliosdk_intro/ax-portfoliosdk1
    Symptoms:
    - When I run the navigator (run as navigator) I get an error "Error: Error #2067: The ExternalInterface is not available in this container. ExternalInterface requires Internet Explorer ActiveX, Firefox, Mozilla 1.7.5 and greater, or other browsers that support NPRuntime."
    - Once dismissed the "for the best experience" message is displayed with a prompt to download the latest Reader.
    Correct SDK's are being used.

    Solved it.  Just added the following in the <InfoAdditions> tag for iPhone in my app descriptor XML file:
      <key>UIRequiredDeviceCapabilities</key>
    <array>
    <string>wifi</string>
    <string>armv6</string>
    <string>armv7</string>
    </array>

  • Delivery shouold not create only with Materail A

    Hi All,
    My requiment is:
    I have created one Sales Order with Four Materails (A,B,C,D).
    Now I want to create delivery - here the delivery should not be created only with Materail A. that means to create a delivery i have to enter materail B or C or D with A (with single materail A delivery should not create)
    The materail is not a BOM item or solution is not related to Delivery group.
    Can any one kindly suggest me how can i made setting such that i cannot create Delivery only with Materail A.
    << Moderator message - Please do not offer points >>
    Best Regars
    Amjathpasha
    Edited by: Rob Burbank on Nov 25, 2010 3:49 PM

    hi amjad,
    this is to inform you that you cannot achieve this in standard configuration.
    but with technical person you can achieve the same.
    I have created one Sales Order with Four Materails (A,B,C,D) - ok
    Now I want to create delivery - here the delivery should not be created only with Materail A - ok.
    that means to create a delivery i have to enter materail B or C or D with A (with single materail A delivery should not create) - ok
    this is copy control routine from sales document to delivery document.
    logic for the same is:
    read VBAP-POSNR 10,20,30 & 40 & VBAP-MATNR that is MATERIAL A,B,C,& D.
    check if when ever VBAP-POSNR 10 - material -A is coming into the delivery whether the associated VBAP - POSNR's (any one). is there or not.
    if it is there with any one of the POSNR's then process it other wise "E" message with "No Associated Materials Exist for Material A"
    note : for this process please copy and create a new sales order to delivery to billing documents.
    hope this helps.
    please check with your abaper and update the forum.
    regards,
    balajia

  • Creating "robot" with Flash possible?

    Is it possible to do this with Flash projector(exe) files:
    -Capture screenshot of some area of the desktop fast.
    -Move mouse position anywhere on a screen fast.
    -Click mouse fast.
    -Execute other applications.
    -Open new flash "child" windows, maybe moving them
    -File system functions, like opening, editing and saving
    files possible?
    I'm doing some of this with Director MX now, which is very
    slow app, it crashes, leaks memory, etc. so bad app.
    With an xtra that can capture screen image, seems to be
    extremely slow +other xtras.
    And then calling "AutoIt" program to actually move or click
    the mouse because there's no other way, which is fine but dumb.
    In flash(or director) graphics or GUIs are very easy to
    handle, I have no idea how to do this using eg. c++, java or VB
    Theres not even such thing as graphics on C++. Ok maybe some
    opelgl, but seems too complicated comparing flash.
    Any ideas?

    The short answer. No.
    The long answer. Flash was never really built for the
    desktop. Macromedia, and now Adobe gives the ability to make
    projectors, but the type of desktop interaction you describe is WAY
    outside the security sandbox for a web app, which is the sandbox
    that flash apps fall into.
    An alternative, which allows you to use Flash to build, is to
    use AIR (Adobe Integrated Runtime), which is now in its third beta
    form. AIR will give you a closer approximation to the types of
    interactions you describe, though it still cannot execute other
    applications, or take screenshots. You can, however build a
    full-screen application that is invisible, so that it looks like
    the desktop is your background. You should be able to figure out a
    way to move the mouse around.......and maybe even click it. You can
    definately open child windows, and move them, as well as have full
    capabilities with the file system - even native drag/drop.
    The short of it, look into AIR and you may be able to do much
    of your list, and perhaps the rest in future versions.

  • Videos load slowly or not at all with Flash 10!

    Well here we go. I'm working on IE 8 128-bit for Windows XP SP3 32-bit. Flash Player 10.1.102.64.
    Two days ago I noticed that video playback on sites like Youtube, Veoh, Magavideo etc the load time was real choppy. A video say two or three minuted longs would take more than 3 min, to buffer and then the video would start, then buffer somemore. Start , stop, repeat. For longer videos the flash player wouldn't buffer at all. Now I just give up on watching videos until this problem is solved. I tried one suggestion that said on the adobe hardware settings disable hardware acceleration. Did that, but didn't fix the problem. I've tried unistalling and reinstalling FP 10.1.102.64 once, but that didn't work.
    In my "Currently Loaded Add ons" section Shockwave Flash Object is enabled. Version 10.1.102.64 that is.
    The files in my system32/Macromed/Flash/ folder are as followed
    A folder with 'Flash Player Trust' it contains a filed name rpconverter.cfg
    Flash10l.ocx
    a text document with FlashInstall
    flashplayer.xpt
    FlashUtil10l_ActiveX
    FlashUtil10l_ActiveX.dll
    genuinst
    KB923789
    NPSWF32.dll
    I just want to watch videos online again. I need help.
    I have Avast anti-virus
    Malwarebytes Anti-Malware
    Smart Defrag
    Any help anybody.

    Step by step what should my Java script setting be? I don't think any quicktime addons are conflicting with it. The First time I had this problem, I had to simply had to turn off the SmartFilter and all my videos buffered smoothly through. I don't know whats wrong THIS time.
    When trying to watch a veoh video on this website a error message is found of the page. I click on the little yellow triangle in the corner.
    da is undefined
    scripts_27.js
    code:0
    Line:1
    Char:8824
    URI:http://www.animeseason.com/js/scripts_27.js

  • Can not create WebService with java.util.Locale object why?

    I am unable to create a WebService which contains a Locale Object in the request.  I assume its because the java.util.Locale object is not Serializable.  Can anyone tell me if there is a work around for this?

    Hi,
    Make sure your strings for Locale follow these rules...
    The language string should be lower-case, two-letter codes as defined by ISO-639.
    http://www.ics.uci.edu/pub/ietf/http/related/iso639.txt
    The country string should be upper-case, two-letter codes as defined by ISO-3166.
    http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html
    Or try with some constant Locales like
    Locale.CANADA
    Locale.US
    regards,
    Uma

  • Why not "Web Dynpro *with* ABAP"?

    As a newbie I found "Web Dynpro for ABAP" to be confusing.  Any ideas why its worded that way?  Just curious.

    Hi,
    because it's a programming <u>model</u> created <u>for</u> abap programming.
    If you look at the true content of webdynpro you come out at:
    declarative programming of all the navigation, ui, datadisplay and gathering, without
    writing the code, but letting the code to be generated.
    so it's a concept build for abap,
    not with abap (although the classes and interfaces are)
    grtz,
    Koen

  • Why not create a separate mod for

    Suggestion. Create a a new forum and move all mod related driver and question threads there. The fact is that it is only the most advanced users that play with these drivers and these drivers?does not come with support from Creative. It's hard for the average joe as well as for the forum moderators to have the modded driver among the usual forums. These forums?are primarily?for discussing the original drivers found on Creative download sites and retail CD. Mixing these only confuse many users.

    Because Apple has decided that the 3G is at the end of it's life.  Just like they made the decision that the original iPhone would not get iOS 4.
    Anything more is speculation which is not permitted here via the Terms of Use.

  • Can not create printer with my own ppd file

    I have a printer model that is not covered in Solaris Print Manager.
    I downloaded a foomatic-PPD file. Followed the steps (from Solaris 10 administration guide) to add printer. (lpfilter -f $ name -F $ filter didn't succeed, so I manually did lpfilter -f foomatic -F foomatic.fd)
    After printer is added, and it's idle, I tried to print a job, but it says:
    UX:lp: ERROR: The LP print service could not read your request file
    To fix: see if the spooling file system is full.
    I have also tried to add a new entry in /usr/lib/lp/model/ppd/ppdcache and the new entry points to my ppd file.
    Add printer through Soloaris print manager, I got the exact same message.
    Any tips?
    # lpadmin -p paper -v /dev/printers/0 (1)
    # lpadmin -p paper -I postscript (2)
    # lpadmin -p paper -m standard_footmatic (3)
    # lpadmin -p paper -n /path/Lexmark-Optra_E312-Postscript.ppd.gzmake(4)
    # lpadmin -p paper -D "Color printer on third floor, rm 3003" (5)
    # cd /etc/lp/fd
    # for filter in *.fd;do
    > name=`basename $ filter .fd`
    > lpfilter -f $ name -F $ filter
    > done (6)
    # accept paper
         destination �paper� now accepting requests
    # enable paper     (7)
    printer �paper� now enabled
    # lpstat -p paper (8)
    printer paper is idle. enabled since Feb 28 11:21 2004...

    I haven't played with this myself, but from looking at the documentation and what you have done:
    1. is this a locally attached printer (serial port , usb, etc.) or a network printer? You are using standard_foomatic that is for locally attached printers, but your description seems to indicate that the printer is on the network. If it's a network printer, then the netstandard_foomatic script should be used.
    2. Is the content type of postscript appropriate for this printer? The docs use that but that may not be correct. Is the Optra E312 a postscript printer?
    3. althought the built-in ppd files are in the .gz format (and unzipped as needed), the docs indicate that the "home brewed" ppds should be just plain .ppd.
    Not sure if any of this is relevant, but that's my 2 cents.

  • I want to know why I have problems with Flash Player

    I have a lot of trouble with Adobe Flash Player in that it stops my games, gives me a blank page with just a large gray exclamation point and refuses to do anything.  I have to redownload the application about every three or four days.  I am very tired of this.  I want some kind of action from Adobe to correct this problem so I can play my games on Facebook without a lot of problems.

    http://forums.adobe.com/thread/1195540

  • Can not create table with the CLOB type VARRAY, ORA-02348: cannot create VA

    CREATE OR REPLACE TYPE Project AS OBJECT (
    project_no NUMBER(2),
    title VARCHAR2(35),
    cost CLOB );
    CREATE OR REPLACE TYPE ProjectList AS VARRAY(50) OF Project;
    CREATE TABLE department (
    dept_id NUMBER(2),
    name VARCHAR2(15),
    budget NUMBER(11,2),
    projects ProjectList );
    The table creatation always with the error :
    ORA-02348: cannot create VARRAY column with embedded LOB
    Can anybody help ???

    Hi Peng,
    It seems you have hit a limitation of the Oracle version, which you don't post.
    Limitations are sometimes also called a 'feature'.
    You would need to find out whether this restriction has been lifted in a subsequent release or redesign your application.
    Sybrand Bakker
    Senior Oracle DBA

Maybe you are looking for